#
# 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,
  `name` varchar(55) NOT NULL,
  `image` varchar(100) DEFAULT 'no_image.png',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

INSERT INTO `tec_categories` (`id`, `code`, `name`, `image`) VALUES ('1', 'G01', 'SERVIÇOS RAPIDOS', 'bdbc68aa9847d3dad074112ca58a3d42.jpg');
INSERT INTO `tec_categories` (`id`, `code`, `name`, `image`) VALUES ('2', 'G02', 'GRÁFICA RAPIDA', 'e3c45122fa6a568f0a5a1e24f0c03968.jpg');
INSERT INTO `tec_categories` (`id`, `code`, `name`, `image`) VALUES ('3', '01', 'testeeeeeee', '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,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

INSERT INTO `tec_combo_items` (`id`, `product_id`, `item_code`, `quantity`, `price`, `cost`) VALUES ('5', '18', '03', '1.0000', NULL, NULL);
INSERT INTO `tec_combo_items` (`id`, `product_id`, `item_code`, `quantity`, `price`, `cost`) VALUES ('6', '18', '02', '1.0000', NULL, NULL);
INSERT INTO `tec_combo_items` (`id`, `product_id`, `item_code`, `quantity`, `price`, `cost`) VALUES ('7', '18', '0015', '1.0000', NULL, NULL);


#
# TABLE STRUCTURE FOR: tec_customers
#

DROP TABLE IF EXISTS `tec_customers`;

CREATE TABLE `tec_customers` (
  `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,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

INSERT INTO `tec_customers` (`id`, `name`, `cf1`, `cf2`, `phone`, `email`) VALUES ('1', 'Cliente Padrão', '9999999999', '99999999', '012345678', 'cliente@pdvparatodos.com.br');
INSERT INTO `tec_customers` (`id`, `name`, `cf1`, `cf2`, `phone`, `email`) VALUES ('2', 'Francisco', '', '', '', 'chico@gmail.com');
INSERT INTO `tec_customers` (`id`, `name`, `cf1`, `cf2`, `phone`, `email`) VALUES ('3', 'Aline', '', '', '', '');
INSERT INTO `tec_customers` (`id`, `name`, `cf1`, `cf2`, `phone`, `email`) VALUES ('4', 'teste01', '', '', '', '');


#
# 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,
  `note` varchar(1000) DEFAULT NULL,
  `created_by` varchar(55) NOT NULL,
  `attachment` varchar(55) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

#
# 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 AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

INSERT INTO `tec_gift_cards` (`id`, `date`, `card_no`, `value`, `customer_id`, `balance`, `expiry`, `created_by`) VALUES ('8', '2016-04-13 19:13:20', '3301 5200 7106 8984', '200.00', NULL, '200.00', NULL, '4');


#
# 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=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

INSERT INTO `tec_groups` (`id`, `name`, `description`) VALUES ('1', 'admin', 'Administrator');
INSERT INTO `tec_groups` (`id`, `name`, `description`) VALUES ('2', 'staff', 'Staff');


#
# 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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

#
# 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,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

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`) VALUES ('1', '2015-11-02 13:47:00', '1', '1', NULL, 'CC', '', '', '', '', '', 'Visa', '4.00', NULL, '1', NULL, '', '0.00', '0.00', '', '', 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`) VALUES ('2', '2015-11-03 12:43:13', '2', '1', NULL, 'cash', '', '', '', '', '', '', '16.00', NULL, '1', NULL, '', '20.00', '4.00', '', NULL, 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`) VALUES ('3', '2015-12-12 19:10:09', '4', '1', NULL, 'cash', '', '', '', '', '', '', '10.99', NULL, '2', NULL, '', '50.00', '39.01', '', NULL, 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`) VALUES ('4', '2015-12-12 19:13:40', '5', '1', NULL, 'cash', '', '', '', '', '', '', '32.97', NULL, '2', NULL, '', '70.00', '37.03', '', NULL, 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`) VALUES ('5', '2016-01-22 17:29:59', '6', '1', NULL, 'cash', '', '', '', '', '', '', '20.00', NULL, '1', NULL, '', '20.00', '0.00', '', NULL, 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`) VALUES ('6', '2016-01-25 23:15:47', '7', '1', NULL, 'cash', '', '', '', '', '', '', '4.00', NULL, '1', NULL, '', '10.00', '6.00', '', NULL, 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`) VALUES ('7', '2016-01-25 23:50:55', '8', '1', NULL, 'cash', '', '', '', '', '', '', '4.00', NULL, '1', NULL, '', '10.00', '6.00', '', NULL, 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`) VALUES ('8', '2016-01-25 23:54:16', '10', '1', NULL, 'cash', '', '', '', '', '', '', '6.00', NULL, '1', NULL, '', '50.00', '44.00', '', NULL, 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`) VALUES ('9', '2016-01-26 00:00:29', '11', '1', NULL, 'cash', '', '', '', '', '', '', '4.00', NULL, '1', NULL, '', '4.00', '6.00', '', NULL, 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`) VALUES ('10', '2016-01-26 00:02:46', '12', '1', NULL, 'cash', '', '', '', '', '', '', '7.00', NULL, '1', NULL, '', '10.00', '3.00', '', NULL, 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`) VALUES ('11', '2016-01-26 00:04:10', '13', '1', NULL, 'cash', '', '', '', '', '', '', '2.00', NULL, '1', NULL, '', '5.00', '3.00', '', NULL, 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`) VALUES ('12', '2016-01-26 00:04:47', '14', '1', NULL, 'cash', '', '', '', '', '', '', '8.00', NULL, '1', NULL, '', '10.00', '2.00', '', NULL, 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`) VALUES ('13', '2016-01-26 00:11:13', '15', '1', NULL, 'cash', '', '', '', '', '', '', '24.00', NULL, '1', NULL, '', '50.00', '26.00', '', NULL, 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`) VALUES ('14', '2016-03-05 15:17:18', '16', '1', NULL, 'cash', '', '', '', '', '', '', '4.00', NULL, '1', NULL, '', '10.00', '6.00', '', NULL, 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`) VALUES ('15', '2016-03-05 23:35:02', '13', '1', NULL, 'cash', '', '', '', '', '', '', '8.00', NULL, '2', NULL, '', '8.00', '0.00', '', NULL, 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`) VALUES ('16', '2016-03-05 23:37:09', '14', '1', NULL, 'cash', '', '', '', '', '', '', '12.00', NULL, '2', NULL, '', '50.00', '38.00', '', NULL, 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`) VALUES ('17', '2016-03-06 06:27:05', '16', '1', NULL, 'cash', '', '', '', '', '', '', '8.00', NULL, '3', NULL, '', '20.00', '12.00', '', NULL, 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`) VALUES ('18', '2016-03-08 19:35:11', '17', '1', NULL, 'cash', '', '', '', '', '', '', '5.00', NULL, '3', NULL, '', '20.00', '15.00', '', NULL, 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`) VALUES ('19', '2016-03-30 23:13:15', '18', '1', NULL, 'cash', '', '', '', '', '', 'MasterCard', '4.00', NULL, '4', NULL, '', '4.00', '0.00', '', NULL, 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`) VALUES ('20', '2016-03-31 00:02:11', '19', '1', NULL, 'cash', '', '', '', '', '', '', '10.00', NULL, '5', NULL, '', '20.00', '10.00', '', NULL, 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`) VALUES ('21', '2016-03-31 00:24:02', '20', '1', NULL, 'CC', '', '', '', '', '', 'Visa', '4.00', NULL, '5', NULL, '', '4.00', '0.00', '', NULL, 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`) VALUES ('22', '2016-03-31 00:43:17', '21', '1', NULL, 'cash', '', '', '', '', '', '', '2.00', NULL, '5', NULL, '', '20.00', '18.00', '', NULL, 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`) VALUES ('23', '2016-03-31 15:43:17', '22', '1', NULL, 'cash', '', '', '', '', '', '', '7.00', NULL, '5', NULL, '', '10.00', '3.00', '', NULL, 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`) VALUES ('24', '2016-03-31 20:15:29', '23', '1', NULL, 'cash', '', '', '', '', '', '', '2.00', NULL, '5', NULL, '', '2.00', '0.00', '', NULL, 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`) VALUES ('25', '2016-03-31 21:06:07', '25', '1', NULL, 'cash', '', '', '', '', '', '', '32.00', NULL, '5', NULL, '', '32.00', '0.00', '', NULL, 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`) VALUES ('26', '2016-03-31 23:59:48', '26', '1', NULL, 'cash', '', '', '', '', '', '', '10.00', NULL, '5', NULL, '', '100.00', '90.00', '', NULL, 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`) VALUES ('27', '2016-04-01 00:04:54', '27', '3', NULL, 'cash', '', '', '', '', '', '', '22.00', NULL, '5', NULL, '', '100.00', '78.00', '', NULL, 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`) VALUES ('28', '2016-04-01 00:06:03', '28', '3', NULL, 'cash', '', '', '', '', '', '', '20.00', NULL, '5', NULL, '', '20.00', '0.00', '', NULL, 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`) VALUES ('29', '2016-04-01 00:06:56', '29', '1', NULL, 'gift_card', '', '', '', '', '', '', '4.00', NULL, '5', NULL, '', '4.00', '0.00', '2020 2020 2020 2020', NULL, 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`) VALUES ('30', '2016-04-01 00:08:17', '30', '1', NULL, 'gift_card', '', '', '', '', '', '', '16.00', NULL, '5', NULL, '', '16.00', '-16.00', '2020 2020 2020 2020', NULL, 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`) VALUES ('31', '2016-04-01 02:52:53', '31', '1', NULL, 'cash', '', '', '', '', '', '', '0.25', NULL, '6', NULL, '', '1.00', '0.75', '', NULL, 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`) VALUES ('32', '2016-04-01 13:50:42', '32', '2', NULL, 'cash', '', '', '', '', '', '', '2.75', NULL, '5', NULL, '', '10.00', '7.25', '', NULL, 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`) VALUES ('33', '2016-04-10 13:49:45', '33', '1', NULL, 'cash', '', '', '', '', '', '', '0.75', NULL, '7', NULL, '', '0.75', '4.25', '', NULL, 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`) VALUES ('34', '2016-04-10 13:50:35', '34', '1', NULL, 'cash', '', '', '', '', '', '', '6.25', NULL, '7', NULL, '', '20.00', '13.75', '', NULL, 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`) VALUES ('35', '2016-04-10 14:26:48', '35', '1', NULL, 'cash', '', '', '', '', '', '', '5.25', NULL, '7', NULL, '', '10.00', '4.75', '', NULL, 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`) VALUES ('36', '2016-04-10 14:33:00', '36', '2', NULL, 'cash', '', '', '', '', '', 'Visa', '4.25', NULL, '7', NULL, '', '0.00', '0.00', '', '', 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`) VALUES ('37', '2026-05-12 21:25:03', '37', '2', NULL, 'cash', '', '', '', '', '', '', '2.00', NULL, '9', NULL, '', '2.00', '0.00', '', NULL, 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`) VALUES ('38', '2026-05-13 08:46:01', '38', '3', NULL, 'cash', '', '', '', '', '', '', '2.50', NULL, '9', NULL, '', '10.00', '7.50', '', NULL, 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`) VALUES ('39', '2026-05-13 08:46:32', '39', '3', NULL, 'cash', '', '', '', '', '', '', '4.50', NULL, '9', NULL, '', '4.50', '0.00', '', NULL, NULL, 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,
  `price` decimal(25,2) NOT NULL,
  `image` varchar(255) DEFAULT 'no_image.png',
  `tax` varchar(20) DEFAULT NULL,
  `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 DEFAULT NULL,
  `alert_quantity` decimal(10,2) DEFAULT 0.00,
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`) VALUES ('23', '02', 'IMPRESSÃO - P/B', '1', '0.50', '99ba15cb71eafc2bf6675c47eda93853.gif', '0', '0.10', '1', '-9.00', 'code39', 'standard', 'PRETO E BRANCO - A4', '0.00');
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`) VALUES ('24', '03', 'XEROX - COLORIDA', '1', '2.00', '1c485ac2a3a40d5065a8ff8736311008.gif', '0', '0.10', '1', '-11.00', 'code39', 'standard', 'A4', '0.00');


#
# 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,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

INSERT INTO `tec_purchase_items` (`id`, `purchase_id`, `product_id`, `quantity`, `cost`, `subtotal`) VALUES ('1', '1', '6', '10.00', '3.00', '30.00');
INSERT INTO `tec_purchase_items` (`id`, `purchase_id`, `product_id`, `quantity`, `cost`, `subtotal`) VALUES ('2', '2', '14', '10.00', '4.00', '40.00');
INSERT INTO `tec_purchase_items` (`id`, `purchase_id`, `product_id`, `quantity`, `cost`, `subtotal`) VALUES ('3', '3', '1', '10.00', '4.00', '40.00');
INSERT INTO `tec_purchase_items` (`id`, `purchase_id`, `product_id`, `quantity`, `cost`, `subtotal`) VALUES ('7', '5', '23', '1.00', '0.10', '0.10');


#
# 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(),
  `note` varchar(1000) NOT NULL,
  `total` decimal(25,2) NOT NULL,
  `attachment` varchar(255) DEFAULT NULL,
  `supplier_id` int(11) DEFAULT NULL,
  `received` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

INSERT INTO `tec_purchases` (`id`, `reference`, `date`, `note`, `total`, `attachment`, `supplier_id`, `received`) VALUES ('1', '', '2015-11-02 13:51:00', '', '30.00', NULL, NULL, NULL);
INSERT INTO `tec_purchases` (`id`, `reference`, `date`, `note`, `total`, `attachment`, `supplier_id`, `received`) VALUES ('2', '', '2016-01-25 23:19:00', '', '40.00', NULL, NULL, NULL);
INSERT INTO `tec_purchases` (`id`, `reference`, `date`, `note`, `total`, `attachment`, `supplier_id`, `received`) VALUES ('3', '', '2016-01-26 00:09:00', '', '40.00', NULL, NULL, NULL);
INSERT INTO `tec_purchases` (`id`, `reference`, `date`, `note`, `total`, `attachment`, `supplier_id`, `received`) VALUES ('5', '', '2016-04-13 11:38:00', '', '0.10', NULL, NULL, NULL);


#
# 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` int(11) DEFAULT NULL,
  `total_cc_slips` int(11) DEFAULT NULL,
  `total_cash_submitted` decimal(25,2) DEFAULT NULL,
  `total_cheques_submitted` int(11) DEFAULT NULL,
  `total_cc_slips_submitted` int(11) DEFAULT NULL,
  `note` text DEFAULT NULL,
  `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=20 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('1', '2015-11-02 12:39:22', '1', '0.00', 'close', '0.00', '0', '1', '0.00', '0', '1', '', '2015-11-02 13:49:29', NULL, '1');
INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('2', '2015-11-02 14:00:24', '1', '0.00', 'close', '36.00', '0', '0', '36.00', '0', '0', '', '2016-01-25 23:11:28', NULL, '1');
INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('3', '2015-12-12 18:59:48', '2', '50.00', 'close', '101.96', '0', '0', '101.96', '0', '0', '', '2016-03-05 23:36:08', NULL, '2');
INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('4', '2016-01-25 23:12:25', '1', '0.00', 'close', '2.00', '0', '0', '2.00', '0', '0', '', '2016-01-25 23:28:28', '0', '1');
INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('5', '2016-01-25 23:46:53', '1', '0.00', 'close', '0.00', '0', '0', '0.00', '0', '0', '', '2016-01-25 23:48:44', NULL, '1');
INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('6', '2016-01-25 23:50:22', '1', '100.00', 'close', '110.00', '0', '0', '110.00', '0', '0', '', '2016-01-25 23:56:02', NULL, '1');
INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('7', '2016-01-25 23:59:31', '1', '100.00', 'close', '104.00', '0', '0', '104.00', '0', '0', '', '2016-01-26 00:01:16', NULL, '1');
INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('8', '2016-01-26 00:01:58', '1', '100.00', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('9', '2016-03-05 23:36:43', '2', '200.00', 'close', '212.00', '0', '0', '212.00', '0', '0', '', '2016-03-08 01:40:06', NULL, '2');
INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('10', '2016-03-06 06:17:16', '3', '200.00', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('11', '2016-03-29 14:18:24', '4', '100.00', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('12', '2016-03-29 14:18:24', '4', '100.00', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('13', '2016-03-29 14:31:12', '5', '0.00', 'close', '19.00', '0', '1', '19.00', '0', '1', '', '2016-03-31 20:10:01', NULL, '5');
INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('14', '2016-03-31 20:14:17', '5', '100.00', 'close', '134.00', '0', '0', '134.00', '0', '0', '', '2016-03-31 21:07:22', NULL, '5');
INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('15', '2016-03-31 23:59:11', '5', '100.00', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('16', '2016-04-01 02:07:39', '6', '100.00', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('17', '2016-04-10 13:03:46', '7', '50.00', 'close', '57.00', '0', '0', '57.00', '0', '0', '', '2016-04-10 14:12:49', NULL, '7');
INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('18', '2016-04-10 14:22:29', '7', '50.00', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('19', '2026-05-12 21:24:29', '9', '10.00', 'open', 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) 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,
  `cost` decimal(25,2) DEFAULT 0.00,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=101 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('3', '1', '1', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('4', '1', '15', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('5', '2', '1', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('6', '2', '3', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '3.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('7', '2', '9', '2.00', '4.00', '4.00', '0', '0.00', '0', '0.00', '8.00', '4.00', '6.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('8', '2', '14', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('9', '2', '15', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('10', '3', '18', '1.00', '10.99', '10.47', '0', '0.00', '5', '0.52', '10.99', '10.99', '8.71');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('11', '4', '15', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('12', '4', '19', '1.00', '7.99', '7.99', '0', '0.00', '0', '0.00', '7.99', '7.99', '4.72');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('13', '4', '20', '1.00', '1.00', '1.00', '0', '0.00', '0', '0.00', '1.00', '1.00', '0.27');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('14', '5', '18', '3.00', '10.99', '10.47', '0', '0.00', '5', '1.56', '32.97', '10.99', '8.71');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('15', '6', '6', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '3.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('16', '6', '10', '1.00', '4.00', '4.00', '0', '0.00', '0', '0.00', '4.00', '4.00', '6.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('17', '6', '11', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '3.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('18', '6', '14', '2.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '4.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('19', '6', '15', '2.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '4.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('20', '6', '17', '1.00', '4.00', '4.00', '0', '0.00', '0', '0.00', '4.00', '4.00', '6.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('23', '8', '1', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('24', '8', '14', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('25', '9', '4', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '3.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('26', '9', '8', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('27', '9', '14', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('28', '10', '8', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('29', '10', '11', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '3.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('30', '10', '14', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('31', '11', '3', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '3.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('32', '11', '15', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('33', '12', '1', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('34', '12', '2', '1.00', '1.00', '1.00', '0', '0.00', '0', '0.00', '1.00', '1.00', '3.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('35', '12', '17', '1.00', '4.00', '4.00', '0', '0.00', '0', '0.00', '4.00', '4.00', '6.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('36', '13', '14', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('37', '14', '10', '1.00', '4.00', '4.00', '0', '0.00', '0', '0.00', '4.00', '4.00', '6.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('38', '14', '14', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('39', '14', '15', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('40', '15', '1', '12.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '24.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('41', '16', '14', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('42', '16', '15', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('43', '13', '4', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '3.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('44', '13', '10', '1.00', '4.00', '4.00', '0', '0.00', '0', '0.00', '4.00', '4.00', '6.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('45', '13', '11', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '3.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('46', '14', '14', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('47', '14', '15', '4.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '8.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('48', '14', '16', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '3.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('49', '15', '14', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('50', '15', '15', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('51', '15', '16', '2.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '4.00', '2.00', '3.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('52', '16', '14', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('53', '16', '15', '3.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '6.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('54', '17', '1', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('55', '17', '2', '1.00', '1.00', '1.00', '0', '0.00', '0', '0.00', '1.00', '1.00', '3.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('56', '17', '4', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '3.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('57', '18', '14', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('58', '18', '15', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('59', '19', '14', '2.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '4.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('60', '19', '16', '3.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '6.00', '2.00', '3.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('61', '20', '1', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('62', '20', '16', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '3.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('64', '22', '2', '1.00', '1.00', '1.00', '0', '0.00', '0', '0.00', '1.00', '1.00', '3.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('65', '22', '8', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('66', '22', '14', '2.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '4.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('78', '27', '14', '6.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '12.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('79', '27', '15', '5.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '10.00', '2.00', '4.00');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('83', '31', '22', '1.00', '0.25', '0.25', '0', '0.00', '0', '0.00', '0.25', '0.25', '0.10');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('84', '32', '22', '1.00', '0.25', '0.25', '0', '0.00', '0', '0.00', '0.25', '0.25', '0.10');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('85', '32', '23', '1.00', '0.50', '0.50', '0', '0.00', '0', '0.00', '0.50', '0.50', '0.10');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('86', '32', '24', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '0.10');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('87', '33', '22', '1.00', '0.25', '0.25', '0', '0.00', '0', '0.00', '0.25', '0.25', '0.10');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('88', '33', '23', '1.00', '0.50', '0.50', '0', '0.00', '0', '0.00', '0.50', '0.50', '0.10');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('89', '34', '22', '1.00', '0.25', '0.25', '0', '0.00', '0', '0.00', '0.25', '0.25', '0.10');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('90', '34', '24', '3.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '6.00', '2.00', '0.10');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('91', '35', '22', '1.00', '0.25', '0.25', '0', '0.00', '0', '0.00', '0.25', '0.25', '0.10');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('92', '35', '23', '2.00', '0.50', '0.50', '0', '0.00', '0', '0.00', '1.00', '0.50', '0.10');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('93', '35', '24', '2.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '4.00', '2.00', '0.10');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('96', '37', '24', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '0.10');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('97', '38', '23', '1.00', '0.50', '0.50', '0', '0.00', '0', '0.00', '0.50', '0.50', '0.10');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('98', '38', '24', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '0.10');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('99', '39', '23', '5.00', '0.50', '0.50', '0', '0.00', '0', '0.00', '2.50', '0.50', '0.10');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`, `cost`) VALUES ('100', '39', '24', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00', '0.10');


#
# 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,
  `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,
  `status` varchar(20) DEFAULT NULL,
  `rounding` decimal(8,2) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('1', '2015-11-02 11:42:47', '1', 'Cliente Padr?o', '4.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0.00', '0.00', '4.00', '2', '2.00', '4.00', '1', '1', '2015-11-02 11:47:25', '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('2', '2015-11-03 10:43:13', '1', 'Cliente Padr?o', '16.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '16.00', '5', '6.00', '16.00', '1', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('3', '2015-12-12 17:08:16', '1', 'Cliente Padr?o', '10.47', '0.00', NULL, '0.00', '0.00', '0.52', '0%', '0.00', '0.52', '10.99', '1', '1.00', '0.00', '2', NULL, NULL, '', 'due', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('4', '2015-12-12 17:10:09', '1', 'Cliente Padr?o', '10.99', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '10.99', '3', '3.00', '10.99', '2', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('5', '2015-12-12 17:13:40', '1', 'Cliente Padr?o', '31.41', '0.00', NULL, '0.00', '0.00', '1.56', '0%', '0.00', '1.56', '32.97', '1', '3.00', '32.97', '2', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('6', '2016-01-22 15:29:59', '1', 'Cliente Padr?o', '20.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '20.00', '6', '8.00', '20.00', '1', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('8', '2016-01-25 21:50:55', '1', 'Cliente Padr?o', '4.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '4.00', '2', '2.00', '4.00', '1', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('9', '2016-01-25 21:52:35', '1', 'Cliente Padr?o', '6.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '6.00', '3', '3.00', '6.00', '1', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('10', '2016-01-25 21:54:16', '1', 'Cliente Padr?o', '6.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '6.00', '3', '3.00', '6.00', '1', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('11', '2016-01-25 22:00:29', '1', 'Cliente Padr?o', '4.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '4.00', '2', '2.00', '4.00', '1', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('12', '2016-01-25 22:02:46', '1', 'Cliente Padr?o', '7.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '7.00', '3', '3.00', '7.00', '1', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('13', '2016-03-05 20:35:02', '1', 'Cliente Padr?o', '8.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '8.00', '3', '3.00', '8.00', '2', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('14', '2016-03-05 20:37:09', '1', 'Cliente Padr?o', '12.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '12.00', '3', '6.00', '12.00', '2', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('15', '2016-03-06 03:19:06', '1', 'Cliente Padr?o', '8.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '8.00', '3', '4.00', '0.00', '3', NULL, NULL, '', 'due', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('16', '2016-03-06 03:27:05', '1', 'Cliente Padr?o', '8.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '8.00', '2', '4.00', '8.00', '3', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('17', '2016-03-08 16:35:11', '1', 'Cliente Padr?o', '5.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '5.00', '3', '3.00', '5.00', '3', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('18', '2016-03-30 20:13:15', '1', 'Cliente Padr?o', '4.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '4.00', '2', '2.00', '4.00', '4', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('19', '2016-03-30 21:02:11', '1', 'Cliente Padr?o', '10.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '10.00', '2', '5.00', '10.00', '5', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('20', '2016-03-30 21:24:02', '1', 'Cliente Padr?o', '4.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '4.00', '2', '2.00', '4.00', '5', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('22', '2016-03-31 12:43:17', '1', 'Cliente Padr?o', '7.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '7.00', '3', '4.00', '7.00', '5', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('27', '2016-03-31 21:04:54', '3', 'Aline', '22.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '22.00', '2', '11.00', '22.00', '5', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('31', '2016-03-31 23:52:53', '1', 'Cliente Padrão', '0.25', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '0.25', '1', '1.00', '0.25', '6', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('32', '2016-04-01 10:50:42', '2', 'Francisco', '2.75', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '2.75', '3', '3.00', '2.75', '5', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('33', '2016-04-10 10:49:45', '1', 'Cliente Padrão', '0.75', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '0.75', '2', '2.00', '0.75', '7', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('34', '2016-04-10 10:50:35', '1', 'Cliente Padrão', '6.25', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '6.25', '2', '4.00', '6.25', '7', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('35', '2016-04-10 11:26:48', '1', 'Cliente Padrão', '5.25', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '5.25', '3', '5.00', '5.25', '7', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('37', '2026-05-12 21:25:03', '2', 'Francisco', '2.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '2.00', '1', '1.00', '2.00', '9', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('38', '2026-05-13 08:46:01', '3', 'Aline', '2.50', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '2.50', '2', '2.00', '2.50', '9', NULL, NULL, '', 'paid', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`) VALUES ('39', '2026-05-13 08:46:32', '3', 'Aline', '4.50', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '4.50', '2', '6.00', '4.50', '9', NULL, NULL, '', 'paid', '0.00');


#
# 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=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02brjhcn92uq9g1uqh0an4bou1', '45.172.198.232', '1778630500', '__ci_last_regenerate|i:1778630500;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04d2hok3v4s7l1m2vbu119vchd', '2a02:4780:13:c0de::b', '1778665809', '__ci_last_regenerate|i:1778665809;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07egacf469vo27igeh9dnqo3fn', '136.111.26.200', '1778850021', '__ci_last_regenerate|i:1778850021;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09r7269qu790usjvi6l3gs2nf4', '152.250.91.7', '1778672730', '__ci_last_regenerate|i:1778672730;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bsfoqmp0is9omhhd9ogshkjps', '152.250.91.7', '1778781507', '__ci_last_regenerate|i:1778781507;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;register_id|s:2:\"19\";cash_in_hand|s:5:\"10.00\";register_open_time|s:19:\"2026-05-12 21:24:29\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cvha3tk3apfvvnu35mrkv5tgs', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0mao77p1n735o8gvmsl4dq55mo', '195.96.139.161', '1778799393', '__ci_last_regenerate|i:1778799393;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0osi3jmcolhu878pnt512guf6m', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10ci9t0kv3ccf7ab12qtvbbldt', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a95vnobja36mqgu5bvc8fvug5', '45.172.198.232', '1778631538', '__ci_last_regenerate|i:1778631538;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";created_on|s:32:\"1212/0505/2026262626 08:46:47 PM\";old_last_login|s:10:\"1778631349\";last_ip|s:14:\"45.172.198.232\";avatar|N;gender|N;group_id|s:1:\"1\";message|s:42:\"<p>Logado com sucesso! Seja Bem Vindo!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ghcinc1os99klqj5f8u7i863e', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1igdc4qrf5s741o5mplragbh8m', '45.172.198.232', '1778631356', '__ci_last_regenerate|i:1778631356;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1m986l7qnj4r2fq9ajp20kh00s', '45.172.198.232', '1778629578', '__ci_last_regenerate|i:1778629578;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('200n07fs3ufthjd36aa4qdlsii', '45.172.198.232', '1778632127', '__ci_last_regenerate|i:1778632127;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20r57pbu0cqvkgqgg9o1sn6o8m', '2602:fa5d:1::a0', '1778757246', '__ci_last_regenerate|i:1778757246;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;register_id|s:2:\"19\";cash_in_hand|s:5:\"10.00\";register_open_time|s:19:\"2026-05-12 21:24:29\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('215153f3341e5d3f207eec80f3c33efccd91476e', '179.127.205.58', '1460574523', '__ci_last_regenerate|i:1460574223;identity|s:20:\"cadprojetos@live.com\";username|s:6:\"jrnext\";email|s:20:\"cadprojetos@live.com\";user_id|s:1:\"4\";first_name|s:6:\"Inacio\";last_name|s:6:\"Junior\";created_on|s:22:\"29/03/2016 10:52:18 AM\";old_last_login|s:10:\"1460553047\";last_ip|s:14:\"179.127.205.58\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";register_id|s:2:\"11\";cash_in_hand|s:6:\"100.00\";register_open_time|s:19:\"2016-03-29 11:18:24\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('283rcm2tuml3mme4ringfk3ph0', '2a02:4780:75:bcb3::1', '1778996847', '__ci_last_regenerate|i:1778996847;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a6n4bp59domde5d76gtdnadgd', '2a02:4780:75:bcb3::1', '1778996849', '__ci_last_regenerate|i:1778996849;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bef6v83m9pqfv665m8b9g16tr', '45.172.198.232', '1778631930', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2htfjg78ga9boe9ifammko22ho', '152.250.91.7', '1778673823', '__ci_last_regenerate|i:1778673823;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2kmp42q76r38kdfli728kvidcd', '45.172.198.232', '1778631714', '__ci_last_regenerate|i:1778631714;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2nj04hi7ka5okr4cum744df2ro', '35.186.145.71', '1778640836', '__ci_last_regenerate|i:1778640836;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2oj7r5ijth70176qtgmo1ug9b0', '45.172.198.232', '1778631530', '__ci_last_regenerate|i:1778631530;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2tjo8h41g2upj5d89ei2vfve0j', '45.172.198.232', '1778630500', '__ci_last_regenerate|i:1778630500;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32gp1on7ai3n2893hfaqr1nu4b', '45.172.198.232', '1778631073', '__ci_last_regenerate|i:1778631073;error|s:46:\"<p>Login falhou, por favor tente novamente</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35562gb5tis9tg1c7r9fatsc39', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47k7n5cof8pihojdhp97926tua', '45.172.198.232', '1778632092', '__ci_last_regenerate|i:1778632092;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dqkg0gtqhurjvkhf26gdrrqml', '2a02:4780:75:bcb3::1', '1778996860', '__ci_last_regenerate|i:1778996860;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;message|s:30:\"Usuário excluído com sucesso\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fqavgofjo60ls25totb9hofj2', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4hgfo43sqe31f3umvh455hcg97', '45.172.198.232', '1778631062', '__ci_last_regenerate|i:1778631062;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4mpgiv82c2ibh9d87n6k1nlm52', '45.172.198.232', '1778632242', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51qcl08ueouvvr2lak9i4ov8bt', '45.172.198.232', '1778629578', '__ci_last_regenerate|i:1778629578;error|s:46:\"<p>Login falhou, por favor tente novamente</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56eleku1oh2ovgrofa2mjeh7ht', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57onus8m8vh7kn4ek3u821gchb', '45.172.198.232', '1778632131', '__ci_last_regenerate|i:1778632131;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59b28dqveo4c96rsno00jqkqda', '45.172.198.232', '1778631079', '__ci_last_regenerate|i:1778631079;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b7167ldmemo5k9r9ps5mqo3op', '45.172.198.232', '1778631538', '__ci_last_regenerate|i:1778631538;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e113d1f21bc1ce2d5a866a128644313b7e660eb', '179.127.205.58', '1460574220', '__ci_last_regenerate|i:1460573921;identity|s:20:\"cadprojetos@live.com\";username|s:6:\"jrnext\";email|s:20:\"cadprojetos@live.com\";user_id|s:1:\"4\";first_name|s:6:\"Inacio\";last_name|s:6:\"Junior\";created_on|s:22:\"29/03/2016 10:52:18 AM\";old_last_login|s:10:\"1460553047\";last_ip|s:14:\"179.127.205.58\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";register_id|s:2:\"11\";cash_in_hand|s:6:\"100.00\";register_open_time|s:19:\"2016-03-29 11:18:24\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5nba2a4jrtkqbf1u5mklpevaqc', '2602:fa5d:1::a0', '1778757252', '__ci_last_regenerate|i:1778757252;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ak505e3dei5pe2e7ar4lpmk7n', '2602:fa5d:1::a0', '1778757251', '__ci_last_regenerate|i:1778757251;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bfraspho5go0opuil1qa5evm0', '152.250.91.7', '1778672737', '__ci_last_regenerate|i:1778672737;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;register_id|s:2:\"19\";cash_in_hand|s:5:\"10.00\";register_open_time|s:19:\"2026-05-12 21:24:29\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6da5006a22102b6e04fe56221e8588844737f848', '179.127.205.58', '1460574838', '__ci_last_regenerate|i:1460574546;identity|s:20:\"cadprojetos@live.com\";username|s:6:\"jrnext\";email|s:20:\"cadprojetos@live.com\";user_id|s:1:\"4\";first_name|s:6:\"Inacio\";last_name|s:6:\"Junior\";created_on|s:22:\"29/03/2016 10:52:18 AM\";old_last_login|s:10:\"1460553047\";last_ip|s:14:\"179.127.205.58\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";register_id|s:2:\"11\";cash_in_hand|s:6:\"100.00\";register_open_time|s:19:\"2016-03-29 11:18:24\";message|s:29:\"Despesa Excluída com sucesso\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e07e35e236aa27e692ba431e9d5f95e808bc0db', '179.127.205.58', '1460573618', '__ci_last_regenerate|i:1460573564;identity|s:20:\"cadprojetos@live.com\";username|s:6:\"jrnext\";email|s:20:\"cadprojetos@live.com\";user_id|s:1:\"4\";first_name|s:6:\"Inacio\";last_name|s:6:\"Junior\";created_on|s:22:\"29/03/2016 10:52:18 AM\";old_last_login|s:10:\"1460553047\";last_ip|s:14:\"179.127.205.58\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";register_id|s:2:\"11\";cash_in_hand|s:6:\"100.00\";register_open_time|s:19:\"2016-03-29 11:18:24\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6h97o25u5hgncd0a2nulsee1id', '45.172.198.232', '1778631342', '__ci_last_regenerate|i:1778631342;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6hccvfoge0r06ia0t6gscmmg48', '45.172.198.232', '1778630527', '__ci_last_regenerate|i:1778630527;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6io8g6vurnep35p457mb55kvmk', '152.250.91.7', '1778672811', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6k04qk41ipti546e29ld733pma', '45.172.198.232', '1778632158', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6m9finkhi0ktvhubmge46a0pl3', '45.172.198.232', '1778632176', '__ci_last_regenerate|i:1778632176;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;register_id|s:2:\"19\";cash_in_hand|s:5:\"10.00\";register_open_time|s:19:\"2026-05-12 21:24:29\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6p7iubjstd2in69k7o6odqqmi5', '45.172.198.232', '1778632213', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74f0tuvkg432sih34am9pm25i7', '2602:fa5d:1::a0', '1778757253', '__ci_last_regenerate|i:1778757253;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74v2v8de3oiac2puugcigbpib4', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('760vecq4gb7jk6dlc27hcigchs', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb29b98c434f82eee16377a4668398c9a39b8fc', '179.127.205.58', '1460575256', '__ci_last_regenerate|i:1460574990;identity|s:20:\"cadprojetos@live.com\";username|s:6:\"jrnext\";email|s:20:\"cadprojetos@live.com\";user_id|s:1:\"4\";first_name|s:6:\"Inacio\";last_name|s:6:\"Junior\";created_on|s:22:\"29/03/2016 10:52:18 AM\";old_last_login|s:10:\"1460553047\";last_ip|s:14:\"179.127.205.58\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";register_id|s:2:\"11\";cash_in_hand|s:6:\"100.00\";register_open_time|s:19:\"2016-03-29 11:18:24\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7idjegnaajoo35q7qb9e909btg', '2a02:4780:75:bcb3::1', '1778996847', '__ci_last_regenerate|i:1778996847;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7o3tluohadt22un8tb560h7ote', '149.57.180.49', '1778678054', '__ci_last_regenerate|i:1778678054;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7p2o3gs75e3pva5a00ece1bn2u', '45.172.198.232', '1778630539', '__ci_last_regenerate|i:1778630539;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7r191hv689et0fg127idqqafjb', '45.172.198.232', '1778630822', '__ci_last_regenerate|i:1778630822;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";created_on|s:32:\"1212/0505/2026262626 08:46:47 PM\";old_last_login|s:10:\"1778630634\";last_ip|s:14:\"45.172.198.232\";avatar|N;gender|N;group_id|s:1:\"1\";message|s:42:\"<p>Logado com sucesso! Seja Bem Vindo!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81e675fdf473629f2cabaa15450c2d6e22ed5366', '179.127.205.58', '1460575927', '__ci_last_regenerate|i:1460575927;identity|s:20:\"cadprojetos@live.com\";username|s:6:\"jrnext\";email|s:20:\"cadprojetos@live.com\";user_id|s:1:\"4\";first_name|s:6:\"Inacio\";last_name|s:6:\"Junior\";created_on|s:22:\"29/03/2016 10:52:18 AM\";old_last_login|s:10:\"1460553047\";last_ip|s:14:\"179.127.205.58\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";register_id|s:2:\"11\";cash_in_hand|s:6:\"100.00\";register_open_time|s:19:\"2016-03-29 11:18:24\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8329a922bee47c86cc33235acb9a3d9440b90411', '179.127.205.58', '1460575357', '__ci_last_regenerate|i:1460575342;identity|s:20:\"cadprojetos@live.com\";username|s:6:\"jrnext\";email|s:20:\"cadprojetos@live.com\";user_id|s:1:\"4\";first_name|s:6:\"Inacio\";last_name|s:6:\"Junior\";created_on|s:22:\"29/03/2016 10:52:18 AM\";old_last_login|s:10:\"1460553047\";last_ip|s:14:\"179.127.205.58\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";register_id|s:2:\"11\";cash_in_hand|s:6:\"100.00\";register_open_time|s:19:\"2016-03-29 11:18:24\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88q4vua9agtlho05c7f60k85nf', '45.172.198.232', '1778632006', '__ci_last_regenerate|i:1778632006;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8o96hj8hafvafea5hb3srnjl4r', '45.172.198.232', '1778631921', '__ci_last_regenerate|i:1778631921;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8pbfcu7iqrjucnsku9mr6mrk9t', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9au1b53lo1ife4j0b91mp6p28f', '45.172.198.232', '1778631835', '__ci_last_regenerate|i:1778631835;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;error|s:77:\"O Caixa não está aberto, por favor informe o valor do caixa para a abertura\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9lkhfrtrtndi1nevr2tfou13jv', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9r5fddv3gj91dd377shbm40i43', '45.172.198.232', '1778631908', '__ci_last_regenerate|i:1778631908;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;register_id|s:2:\"19\";cash_in_hand|s:5:\"10.00\";register_open_time|s:19:\"2026-05-12 21:24:29\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ajbub0f8jb8pmi5s224tbm5lbf', '45.172.198.232', '1778632133', '__ci_last_regenerate|i:1778632133;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;register_id|s:2:\"19\";cash_in_hand|s:5:\"10.00\";register_open_time|s:19:\"2026-05-12 21:24:29\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2u7b6iinblqsnckrtmm0jhsus', '45.172.198.232', '1778632128', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b81aup4bjh6fnln74pitgcgj8r', '45.172.198.232', '1778629625', '__ci_last_regenerate|i:1778629625;error|s:46:\"<p>Login falhou, por favor tente novamente</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd8o7hn118rjikkq2jj7kq1imp', '45.172.198.232', '1778631663', '__ci_last_regenerate|i:1778631663;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beoje1m4bh9142o2r2srg92l9o', '34.68.163.132', '1778768681', '__ci_last_regenerate|i:1778768681;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfqv95mvcqgp462fclaikapgqa', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bgehn4j6n8l5tt87cddd1m8mo0', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;csrfkey|s:8:\"7tA9OgpY\";__ci_vars|a:2:{s:7:\"csrfkey\";s:3:\"new\";s:9:\"csrfvalue\";s:3:\"new\";}csrfvalue|s:20:\"D7teCn2TpgBHM1xiGSNI\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bjq6l2o8v3kugd2gb9gun0batg', '45.172.198.232', '1778632196', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bljeeaardembvv4v5p00c75jib', '2a02:4780:75:bcb3::1', '1778996847', '__ci_last_regenerate|i:1778996847;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bnegiqhqdnotaktovq2ei8uk9a', '45.172.198.232', '1778632240', '__ci_last_regenerate|i:1778632240;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bs62eorbflrs1qmalo5q17p1bg', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bsj2slvne9619qk33m69k6ss19', '45.172.198.232', '1778631979', '__ci_last_regenerate|i:1778631979;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bue2kqvfoemvvotj506vuiekpt', '45.172.198.232', '1778630500', '__ci_last_regenerate|i:1778630500;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";created_on|s:32:\"1212/0505/2026262626 08:46:47 PM\";old_last_login|s:10:\"1778630385\";last_ip|s:14:\"45.172.198.232\";avatar|N;gender|N;group_id|s:1:\"1\";message|s:42:\"<p>Logado com sucesso! Seja Bem Vindo!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('buqk8sal8q24nv96iic7c6dtej', '45.172.198.232', '1778632171', '__ci_last_regenerate|i:1778632171;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0kk71pack99mvn4k14pp0o3ur', '45.172.198.232', '1778632213', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c114a686f9eed7caf8a0810f512ace3914c120cd', '179.127.205.58', '1460569304', '__ci_last_regenerate|i:1460569268;identity|s:20:\"cadprojetos@live.com\";username|s:6:\"jrnext\";email|s:20:\"cadprojetos@live.com\";user_id|s:1:\"4\";first_name|s:6:\"Inacio\";last_name|s:6:\"Junior\";created_on|s:22:\"29/03/2016 10:52:18 AM\";old_last_login|s:10:\"1460553047\";last_ip|s:14:\"179.127.205.58\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";register_id|s:2:\"11\";cash_in_hand|s:6:\"100.00\";register_open_time|s:19:\"2016-03-29 11:18:24\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3npdga8tqgn517jlq9cosbt1g', '23.27.145.213', '1778764346', '__ci_last_regenerate|i:1778764346;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfk44r8tv64m8b9aifnp8h578n', '45.172.198.232', '1778630527', '__ci_last_regenerate|i:1778630527;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cjnga317vos0nevnc5vo7h7081', '2602:fa87:1:34::a', '1778757254', '__ci_last_regenerate|i:1778757254;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;register_id|s:2:\"19\";cash_in_hand|s:5:\"10.00\";register_open_time|s:19:\"2026-05-12 21:24:29\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('co11lhg8gujagi6naclfnhffa6', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cs00k8m55305fuv7r7l5ovjvqj', '45.172.198.232', '1778631083', '__ci_last_regenerate|i:1778631083;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cul9dp60hp4hqivh0f6bteooc5', '2602:fa5d:1::a0', '1778757251', '__ci_last_regenerate|i:1778757251;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0rosti8mgeidqagj0at4s1c5q', '45.172.198.232', '1778631710', '__ci_last_regenerate|i:1778631710;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5lcgtpd111d4rckc65k9bd3li', '45.172.198.232', '1778632200', '__ci_last_regenerate|i:1778632200;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6f15i58t0lol1n1ugab5nd8d7', '195.96.139.29', '1778779134', '__ci_last_regenerate|i:1778779134;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd8uo0n78sktdjlonja91vmncl', '45.172.198.232', '1778631067', '__ci_last_regenerate|i:1778631067;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('diaruh64gd0amuodn6ff1f1gmc', '45.172.198.232', '1778630627', '__ci_last_regenerate|i:1778630627;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dluahnmd9pnf5nad2po0n1d4en', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dthhamnggnpv8sf9tkss1n5fo6', '2a02:4780:75:bcb3::1', '1778996860', '__ci_last_regenerate|i:1778996860;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;warning|s:70:\"Acesso negado! Você não tem direito de acessar a página solicitada.\";__ci_vars|a:1:{s:7:\"warning\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2a2jk78ia94eeh95slfjr4dg3', '45.172.198.232', '1778632178', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e70hpadecgjue1i8bkcn6reu2j', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8vn0lpmh387u7bgmusksq0n8v', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e981dq73tb56bqjvke6rtq23pr', '45.172.198.232', '1778630811', '__ci_last_regenerate|i:1778630811;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9g4cuho40tn5pgdkf100n699h', '152.250.91.7', '1778672792', '__ci_last_regenerate|i:1778672792;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebjui47f3hbfg85tbmeenff9h8', '2602:fa5d:1::a0', '1778757246', '__ci_last_regenerate|i:1778757246;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('egj3l32h6t1pr91jgl7eup9kjk', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('elfgjhfkr44ia9vgs1jovmcvjq', '45.172.198.232', '1778631979', '__ci_last_regenerate|i:1778631979;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;message|s:30:\"Usuário excluído com sucesso\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ep3n3mgade63lihu0diddq11bi', '45.172.198.232', '1778631663', '__ci_last_regenerate|i:1778631663;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";created_on|s:32:\"1212/0505/2026262626 08:46:47 PM\";old_last_login|s:10:\"1778631538\";last_ip|s:14:\"45.172.198.232\";avatar|N;gender|N;group_id|s:1:\"1\";message|s:42:\"<p>Logado com sucesso! Seja Bem Vindo!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eqasv761lkqiemv22s7sdkfa0h', '45.172.198.232', '1778631921', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ess7mbknbs4i0ugl3d1tc9piem', '45.172.198.232', '1778631835', '__ci_last_regenerate|i:1778631835;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ev9dg84efa4mdimsu334biij39', '45.172.198.232', '1778631903', '__ci_last_regenerate|i:1778631903;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;register_id|s:2:\"19\";cash_in_hand|s:5:\"10.00\";register_open_time|s:19:\"2026-05-12 21:24:29\";rmspos|i:1;message|s:26:\"Venda efetuada com sucesso\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1pa1bgs9nhd4h8srtnsp3ijmi', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9m9jlsr73bj7qd77u27bfolf6', '45.172.198.232', '1778631350', '__ci_last_regenerate|i:1778631350;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fam482shjhuf2236353a2bpe4b', '45.172.198.232', '1778630539', '__ci_last_regenerate|i:1778630539;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('famngfjgcgluh9uv36g1kpor30', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fhbtoup5qrgfnmobp3psvf0be5', '34.169.254.202', '1778684063', '__ci_last_regenerate|i:1778684063;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fujdg26btofn1n3ebpqobnkt7d', '45.172.198.232', '1778629625', '__ci_last_regenerate|i:1778629625;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('g45d00ft3phaphdf39jn25snhu', '45.172.198.232', '1778632162', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('g512gke3aa9bap8oahfe83j9pa', '45.172.198.232', '1778632196', '__ci_last_regenerate|i:1778632196;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('g7sgn87aoejqlqk4os6aq6f5ta', '45.172.198.232', '1778631083', '__ci_last_regenerate|i:1778631083;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('gm3k74hgjh9uin735pe41e4226', '2a02:4780:75:bcb3::1', '1778996850', '__ci_last_regenerate|i:1778996850;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('h4r4juvekojo9r3spohhddg086', '45.172.198.232', '1778630822', '__ci_last_regenerate|i:1778630822;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('h8d3ev4hlv4a0i31d1ioqb189g', '45.172.198.232', '1778632178', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('heaf4n5r7lhlm9djldq4b12ddt', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('heavb3dvcrr0sset0b7ih95n7i', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('hftsi7hu9g39gnprdkv46pqjqm', '45.172.198.232', '1778632243', '__ci_last_regenerate|i:1778632243;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('hmt7slpo7bnqg1t4cjm02h282t', '45.172.198.232', '1778632153', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('hoov9m791p2jfrlep9vv70rnjp', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('hragojq8a3kjnjiiuignqc18dc', '152.250.91.7', '1778672735', '__ci_last_regenerate|i:1778672735;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('huii8jqn919gsefv5a7t38n0dh', '45.172.198.232', '1778632200', '__ci_last_regenerate|i:1778632200;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('i08ckd14h11afml94bjouorjk9', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('i227g4mp7t0arhtd18kqhjcfh5', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('i515kkjikk98jtr46t5b06senf', '45.172.198.232', '1778631852', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ib195tpsq47olbcst80svibivb', '45.172.198.232', '1778632231', '__ci_last_regenerate|i:1778632231;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ifgrij0midvi9ffhaujqr0rm7d', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ifjkra6p65hvkhk2qgilchki90', '45.172.198.232', '1778631714', '__ci_last_regenerate|i:1778631714;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('iogm1f45l4l9elbgbt46uqj7qn', '45.172.198.232', '1778631930', '__ci_last_regenerate|i:1778631930;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('j1dijcfmet1oa4utlrmb1rgu40', '45.172.198.232', '1778631957', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('j7jdkogdvc2ialeh583ncjksld', '45.172.198.232', '1778632241', '__ci_last_regenerate|i:1778632241;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('jb95ua6vfds2c554hl6bldbpp1', '45.172.198.232', '1778631903', '__ci_last_regenerate|i:1778631903;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('jfq0snt14o61g4s1en5rrhep0e', '45.172.198.232', '1778631710', '__ci_last_regenerate|i:1778631710;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('jgevm3o18sqnk4comhmq5ntis0', '45.172.198.232', '1778631350', '__ci_last_regenerate|i:1778631350;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ji9vv57dpks0davkjs15ifui7m', '34.124.236.241', '1778906294', '__ci_last_regenerate|i:1778906294;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('jseingiccj64lsa9eq5ggk2rd2', '45.172.198.232', '1778630634', '__ci_last_regenerate|i:1778630634;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('jt5qs01tl130o4k1q4hdhk3cc4', '45.172.198.232', '1778631986', '__ci_last_regenerate|i:1778631986;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;message|s:30:\"Usuário excluído com sucesso\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('k0023ahhiskvhs2oqcqbe2dqtq', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('k1nc48vbctbp797tr5qap0h7hc', '45.172.198.232', '1778632015', '__ci_last_regenerate|i:1778632015;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('k5n15eg0ibbllso2bmu2iu83ej', '45.172.198.232', '1778631862', '__ci_last_regenerate|i:1778631862;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;error|s:77:\"O Caixa não está aberto, por favor informe o valor do caixa para a abertura\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('k93c33kp165qn9vsog3saf8thm', '209.38.44.49', '1778768610', '__ci_last_regenerate|i:1778768610;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('kdh4s4ubimqibcric4ae2urt7p', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('keuu09s4d0nsj3b35edrr4s36c', '45.172.198.232', '1778631079', '__ci_last_regenerate|i:1778631079;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('kiffcmc5mdn644aigml7d2abmg', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('kncn8h27hddhi9mctmag0s6k1p', '45.172.198.232', '1778632162', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('kordnrlb9v6grkuulgkhsshhnn', '152.250.91.7', '1778672792', '__ci_last_regenerate|i:1778672792;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;register_id|s:2:\"19\";cash_in_hand|s:5:\"10.00\";register_open_time|s:19:\"2026-05-12 21:24:29\";rmspos|i:1;message|s:26:\"Venda efetuada com sucesso\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ktggevlqlblr0eresh2pj2f63t', '45.172.198.232', '1778631865', '__ci_last_regenerate|i:1778631865;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ku6bphnqkumvpfanjkanulrvvh', '2602:fa5d:1::a0', '1778757248', '__ci_last_regenerate|i:1778757248;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('l804ki58urd3cgr1jos7916nvi', '159.203.5.4', '1778940069', '__ci_last_regenerate|i:1778940069;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('lbpe432s4ippb7ms83qhbtrhe3', '45.172.198.232', '1778631714', '__ci_last_regenerate|i:1778631714;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";created_on|s:32:\"1212/0505/2026262626 08:46:47 PM\";old_last_login|s:10:\"1778631663\";last_ip|s:14:\"45.172.198.232\";avatar|N;gender|N;group_id|s:1:\"1\";message|s:42:\"<p>Logado com sucesso! Seja Bem Vindo!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('lh8kr4qkbq4l0nah56gbpa2k6r', '2602:fa5d:1::a0', '1778757249', '__ci_last_regenerate|i:1778757249;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('lpsimfbjnlc1a85e7u4ulul1eo', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('lusjmm0i4eb4m4i09jvstlvn6c', '45.172.198.232', '1778631340', '__ci_last_regenerate|i:1778631340;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('m2coo4jrbvm56e62c75ao19via', '45.172.198.232', '1778630505', '__ci_last_regenerate|i:1778630505;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('m8q1q6j1qh9kkb7vhc5b3m0ija', '45.172.198.232', '1778632200', '__ci_last_regenerate|i:1778632200;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('mgfa7ui7v071nmrmkvrh5c9j2q', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('midq6g1fcm3817otuthf1137mb', '45.172.198.232', '1778631919', '__ci_last_regenerate|i:1778631919;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('mpl4je80rrebnjtp5qcc5p7r2l', '45.172.198.232', '1778631538', '__ci_last_regenerate|i:1778631538;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ms1t8t216dptfq4dqcj3sm4ddh', '45.172.198.232', '1778631657', '__ci_last_regenerate|i:1778631657;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('n3031is59gkdsj9e6jtlf31pib', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('n37oagsgm21bb4cm0stjrt2i7s', '2a02:4780:75:bcb3::1', '1778996860', '__ci_last_regenerate|i:1778996860;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;csrfkey|s:8:\"9zvwfxit\";__ci_vars|a:2:{s:7:\"csrfkey\";s:3:\"new\";s:9:\"csrfvalue\";s:3:\"new\";}csrfvalue|s:20:\"thfdp9XNamuZ0xv4Sjl8\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('nbb8c5llpcoffu2f37uegub0qu', '45.172.198.232', '1778631957', '__ci_last_regenerate|i:1778631957;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('nc5v5tvse8jljved1pr7l7ljgi', '2a02:4780:13:c0de::b', '1778907701', '__ci_last_regenerate|i:1778907701;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ndnfprmpu29fpe5qqa8o92jguq', '2a02:4780:75:bcb3::1', '1778996849', '__ci_last_regenerate|i:1778996849;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;register_id|s:2:\"19\";cash_in_hand|s:5:\"10.00\";register_open_time|s:19:\"2026-05-12 21:24:29\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('nfcug4nvlk4jblt6rg35d2gosv', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('nh3bqfllkbp2jipbmh6k7p2pju', '45.172.198.232', '1778630822', '__ci_last_regenerate|i:1778630822;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('nh6g9qgc9s5tl85vhhfdt1sfbr', '152.250.91.7', '1778672769', '__ci_last_regenerate|i:1778672769;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;register_id|s:2:\"19\";cash_in_hand|s:5:\"10.00\";register_open_time|s:19:\"2026-05-12 21:24:29\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('nog5bsugf4sv41g5p9iqlfqn37', '152.250.91.7', '1778672731', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('o2fg8kt6705c80ikauu4k5r7bo', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('oa61c3lri23br80cb6qtpeb7pt', '45.172.198.232', '1778630493', '__ci_last_regenerate|i:1778630493;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ob19ljd4h6101hk7h5neiufpbj', '45.172.198.232', '1778632173', '__ci_last_regenerate|i:1778632173;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('odl6damb41tmkmppsqcrqoftr4', '45.172.198.232', '1778631663', '__ci_last_regenerate|i:1778631663;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('odnd8pg0m1i3sk97j17nkvoh69', '45.172.198.232', '1778631869', '__ci_last_regenerate|i:1778631869;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;register_id|s:2:\"19\";cash_in_hand|s:5:\"10.00\";register_open_time|s:19:\"2026-05-12 21:24:29\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ohnj8vgjsmd56ja9iu1lgc7hop', '45.172.198.232', '1778629371', '__ci_last_regenerate|i:1778629371;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('p2c6l3it20ejpl9jqmqcp9m7ht', '45.172.198.232', '1778631946', '__ci_last_regenerate|i:1778631946;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('pl2giplsvk2clb89r3qdqim3qc', '152.250.91.7', '1778672761', '__ci_last_regenerate|i:1778672761;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('q7tedjg74j6jrauebacqdjf5fs', '45.172.198.232', '1778630634', '__ci_last_regenerate|i:1778630634;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";created_on|s:32:\"1212/0505/2026262626 08:46:47 PM\";old_last_login|s:10:\"1778630539\";last_ip|s:14:\"45.172.198.232\";avatar|N;gender|N;group_id|s:1:\"1\";message|s:42:\"<p>Logado com sucesso! Seja Bem Vindo!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('qcktlge6u3cicc5aeqs8qqej95', '2602:fa5d:1::a0', '1778757250', '__ci_last_regenerate|i:1778757250;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('qh4h6o071n9bmgf9s8d1f24bsj', '23.27.145.125', '1778987578', '__ci_last_regenerate|i:1778987578;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('qhg7a628mc792gj9rkgiajlabn', '2a02:4780:13:c0de::b', '1778814866', '__ci_last_regenerate|i:1778814866;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('qrlcqkk7qubho016l6edjiejdc', '45.172.198.232', '1778630634', '__ci_last_regenerate|i:1778630634;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('rgbnj93kue4hts3fg1qla4n3h8', '45.172.198.232', '1778630539', '__ci_last_regenerate|i:1778630539;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";created_on|s:32:\"1212/0505/2026262626 08:46:47 PM\";old_last_login|s:10:\"1778630500\";last_ip|s:14:\"45.172.198.232\";avatar|N;gender|N;group_id|s:1:\"1\";message|s:42:\"<p>Logado com sucesso! Seja Bem Vindo!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('rgmub4dp0eq4iaosogvafth8qs', '45.172.198.232', '1778631986', '__ci_last_regenerate|i:1778631986;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ridsvjuvn4lvi08lvkln6826hf', '45.172.198.232', '1778631349', '__ci_last_regenerate|i:1778631349;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";created_on|s:32:\"1212/0505/2026262626 08:46:47 PM\";old_last_login|s:10:\"1778630822\";last_ip|s:14:\"45.172.198.232\";avatar|N;gender|N;group_id|s:1:\"1\";message|s:42:\"<p>Logado com sucesso! Seja Bem Vindo!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('rmakb23bqifg6cbh77c0s0mvme', '45.172.198.232', '1778631946', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('rn4ei82rb0aqqodjcs9iu8u76m', '45.172.198.232', '1778631852', '__ci_last_regenerate|i:1778631851;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('rocfcrma0335hd4l582rvkkah9', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('rpd7fj81b8vulj5kr2rpmju5us', '152.250.91.7', '1778672761', '__ci_last_regenerate|i:1778672761;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;register_id|s:2:\"19\";cash_in_hand|s:5:\"10.00\";register_open_time|s:19:\"2026-05-12 21:24:29\";rmspos|i:1;message|s:26:\"Venda efetuada com sucesso\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('run0shbemrq373s1ml7itf9csh', '45.172.198.232', '1778631832', '__ci_last_regenerate|i:1778631832;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('s86cc27halkvqdv9nnjo5mi9hi', '45.172.198.232', '1778631926', '__ci_last_regenerate|i:1778631926;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('senrsulijck3fsp0jglsapbgu4', '45.172.198.232', '1778632184', '__ci_last_regenerate|i:1778632184;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;register_id|s:2:\"19\";cash_in_hand|s:5:\"10.00\";register_open_time|s:19:\"2026-05-12 21:24:29\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('sqhf141vhdpkchmnbjuvpvoto3', '45.172.198.232', '1778629371', '__ci_last_regenerate|i:1778629371;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('t1jdvv4k1jhnijki60kob4m3ue', '45.172.198.232', '1778631862', '__ci_last_regenerate|i:1778631862;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('t3fh7i4vspf1idiehbrpjchem4', '2a02:4780:13:c0de::b', '1778988388', '__ci_last_regenerate|i:1778988388;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('t5ta50fh7jtv4sh6pphgcmaaiv', '2602:fa5d:1::a0', '1778757247', '__ci_last_regenerate|i:1778757247;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('t6buno34ulfvbscmgmr5et2v6v', '45.172.198.232', '1778631964', '__ci_last_regenerate|i:1778631964;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('te8r0jvei1btm4ti7f6q5vavhn', '45.172.198.232', '1778632232', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('tiit02ifep563lo4tnpm72mcuu', '23.27.145.173', '1778641846', '__ci_last_regenerate|i:1778641846;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('tuej7uffcvro2da99d5tgp1ugh', '2a02:4780:13:c0de::b', '1778729035', '__ci_last_regenerate|i:1778729035;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('u0lo0ktfp84jicnu0kncjsn60d', '45.172.198.232', '1778631869', '__ci_last_regenerate|i:1778631869;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;message|s:14:\"welcome to pos\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('u5rbcqvs8itthhte5dnsnhu1pq', '45.172.198.232', '1778632209', '__ci_last_regenerate|i:1778632209;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;register_id|s:2:\"19\";cash_in_hand|s:5:\"10.00\";register_open_time|s:19:\"2026-05-12 21:24:29\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ubhcj4d23gjm5n1apk8pvokth3', '152.250.91.7', '1778672813', '__ci_last_regenerate|i:1778672813;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;register_id|s:2:\"19\";cash_in_hand|s:5:\"10.00\";register_open_time|s:19:\"2026-05-12 21:24:29\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ubijljor463r2qhus7tpujg7ub', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('uis2m1nk22574r0rqf85mhun8r', '2a02:4780:75:bcb3::1', '1778996852', '__ci_last_regenerate|i:1778996852;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ur32qi5r1nroib6s3io5eaput7', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('v3tg6emcnojeifrrcijqtvooaj', '2602:fa5d:1::a0', '1778757250', '__ci_last_regenerate|i:1778757250;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('v4i27d07t0ljkcmiefgiugn930', '45.172.198.232', '1778631969', '__ci_last_regenerate|i:1778631969;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('v6bqrf4nieshoh655fmtdgebv8', '45.172.198.232', '1778632202', '__ci_last_regenerate|i:1778632202;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('v77ihmlmin7tqnv9j9skbfpj47', '133.242.174.119', '1778635474', '__ci_last_regenerate|i:1778635474;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('v88rid9f9ls9o74t13j7m5p0ga', '2a02:4780:75:bcb3::1', '1778996853', '__ci_last_regenerate|i:1778996853;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('vabdvf1p40sa4oe1ubbpuovoq2', '45.172.198.232', '1778632182', '__ci_last_regenerate|i:1778632182;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('vdk9d43udpvdcatalkb3653ns9', '2602:fa5d:1::a0', '1778757248', '__ci_last_regenerate|i:1778757248;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('viuvsueh75rlt8nefl2274e4du', '45.172.198.232', '1778631073', '__ci_last_regenerate|i:1778631073;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('vko33jl5g5njukac7t8gbe4877', '45.172.198.232', '1778631887', 'identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('vm8lncqrpeumqiddd2hcqf8j4o', '2a02:4780:75:bcb3::1', '1778996850', '__ci_last_regenerate|i:1778996850;identity|s:19:\"v.d.l.k@hotmail.com\";username|s:10:\"ruan.diego\";email|s:19:\"v.d.l.k@hotmail.com\";user_id|s:1:\"9\";first_name|s:4:\"Ruan\";last_name|s:5:\"Diego\";group_id|s:1:\"1\";avatar|N;gender|N;');


#
# 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(5) 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,
  PRIMARY KEY (`setting_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

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`) VALUES ('1', 'logo11.png', 'CADPROJETOS', '89 99430-2106', 'dd/mm/Yyyy', 'h:i:s A', 'cadprojetos@live.com', 'portugues', '4.0', 'default', 'Amercia/Belem', 'mail', 'pop.gmail.com', 'geraldopatricio.melo@gmail.com', '', '25', '', '0', '0', NULL, 'R$ ', '1', '0%', '25', '30', '<h2>CADPROJETOS - PDV</h2>Rua Afonso Marques, 441 - Centro,<br>\r\n                                                                                              CEP 62.300-000 - Viçosa - CE<br>', 'Volte Sempre!\r\n<br>', '3', '0', '1', '0', '1', '', '100', '2', ',', '.', 'F7', 'ALT+F2', 'ALT+F10', 'F3', 'F2', 'F6', 'F4', 'F1', 'Ctrl+F1', 'F5', 'ALT+F7', '0', '', '', '', '42', '0', '1234', '1', 'sk_test_jHf4cEzAYtgcXvgWPCsQAn50', 'pk_test_beat8SWPORb0OVdF2H77A7uG', 'ff2400d9-f3aa-4db5-9dc5-4eee236c6254', 'patriciomelo');


#
# 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,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

INSERT INTO `tec_suppliers` (`id`, `name`, `cf1`, `cf2`, `phone`, `email`) VALUES ('2', 'thiago', '03184809307', '', '8899874257', 'thiagoeps@gmail.com');


#
# 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 AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

INSERT INTO `tec_suspended_items` (`id`, `suspend_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`) VALUES ('1', '1', '6', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00');
INSERT INTO `tec_suspended_items` (`id`, `suspend_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`) VALUES ('2', '1', '15', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00');
INSERT INTO `tec_suspended_items` (`id`, `suspend_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`) VALUES ('3', '1', '16', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00');
INSERT INTO `tec_suspended_items` (`id`, `suspend_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`) VALUES ('4', '2', '15', '3.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '6.00', '2.00');
INSERT INTO `tec_suspended_items` (`id`, `suspend_id`, `product_id`, `quantity`, `unit_price`, `net_unit_price`, `discount`, `item_discount`, `tax`, `item_tax`, `subtotal`, `real_unit_price`) VALUES ('5', '2', '16', '1.00', '2.00', '2.00', '0', '0.00', '0', '0.00', '2.00', '2.00');


#
# 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,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

INSERT INTO `tec_suspended_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `hold_ref`) VALUES ('1', '2016-03-08 16:37:01', '1', 'Cliente Padr?o', '6.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '6.00', '3', '3.00', '0.00', '3', NULL, NULL, '', '01');
INSERT INTO `tec_suspended_sales` (`id`, `date`, `customer_id`, `customer_name`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `hold_ref`) VALUES ('2', '2016-03-30 20:11:01', '1', 'Cliente Padr?o', '8.00', '0.00', NULL, '0.00', '0.00', '0.00', '0%', '0.00', '0.00', '8.00', '2', '4.00', '0.00', '4', NULL, NULL, '', 'teste');


#
# 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=104 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('1', '1', NULL, '::1', 'geraldopatricio.melo@gmail.com', '2015-11-02 12:33:39');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('2', '1', NULL, '::1', 'geraldopatricio.melo@gmail.com', '2015-11-02 12:53:18');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('3', '1', NULL, '::1', 'geraldopatricio.melo@gmail.com', '2015-11-02 13:15:21');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('4', '1', NULL, '::1', 'geraldopatricio.melo@gmail.com', '2015-11-02 13:15:30');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('5', '1', NULL, '191.207.159.177', 'geraldopatricio.melo@gmail.com', '2015-11-02 22:20:35');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('6', '1', NULL, '191.207.159.177', 'geraldopatricio.melo@gmail.com', '2015-11-02 22:30:36');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('7', '1', NULL, '191.207.159.177', 'geraldopatricio.melo@gmail.com', '2015-11-02 22:31:22');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('8', '1', NULL, '189.89.250.194', 'geraldopatricio.melo@gmail.com', '2015-11-03 12:34:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('9', '1', NULL, '177.145.5.115', 'geraldopatricio.melo@gmail.com', '2015-11-11 20:38:46');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('10', '1', NULL, '200.222.21.138', 'geraldopatricio.melo@gmail.com', '2015-11-25 10:45:05');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('11', '1', NULL, '187.116.231.121', 'geraldopatricio.melo@gmail.com', '2015-12-12 03:37:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('12', '2', NULL, '187.114.90.84', 'pdv@pdvparatodos.com.br', '2015-12-12 19:59:25');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('13', '1', NULL, '189.89.250.194', 'geraldopatricio.melo@gmail.com', '2016-01-16 13:56:15');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('14', '1', NULL, '189.89.250.194', 'geraldopatricio.melo@gmail.com', '2016-01-21 16:22:16');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('15', '1', NULL, '189.89.250.194', 'geraldopatricio.melo@gmail.com', '2016-01-21 19:06:56');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('16', '1', NULL, '189.89.250.194', 'geraldopatricio.melo@gmail.com', '2016-01-22 14:44:26');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('17', '1', NULL, '177.172.16.222', 'geraldopatricio.melo@gmail.com', '2016-01-22 15:06:16');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('18', '1', NULL, '189.89.250.194', 'geraldopatricio.melo@gmail.com', '2016-01-22 18:29:43');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('19', '1', NULL, '177.172.16.222', 'geraldopatricio.melo@gmail.com', '2016-01-22 22:51:12');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('20', '1', NULL, '191.195.250.33', 'geraldopatricio.melo@gmail.com', '2016-01-25 23:15:36');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('21', '1', NULL, '179.100.136.77', 'geraldopatricio.melo@gmail.com', '2016-01-26 00:11:10');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('22', '1', NULL, '179.100.136.77', 'geraldopatricio.melo@gmail.com', '2016-01-26 00:11:52');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('23', '1', NULL, '179.100.136.77', 'geraldopatricio.melo@gmail.com', '2016-01-26 00:49:37');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('24', '1', NULL, '179.100.136.77', 'geraldopatricio.melo@gmail.com', '2016-01-26 00:49:56');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('25', '1', NULL, '179.100.136.77', 'geraldopatricio.melo@gmail.com', '2016-01-26 00:59:18');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('26', '1', NULL, '179.100.136.77', 'geraldopatricio.melo@gmail.com', '2016-01-26 01:01:39');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('27', '1', NULL, '::1', 'geraldopatricio.melo@gmail.com', '2016-03-05 15:12:12');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('28', '1', NULL, '::1', 'geraldopatricio.melo@gmail.com', '2016-03-05 15:12:12');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('29', '1', NULL, '::1', 'geraldopatricio.melo@gmail.com', '2016-03-05 15:43:30');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('30', '3', NULL, '::1', 'contato@scriptcerto.com.br', '2016-03-05 15:48:06');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('31', '3', NULL, '::1', 'contato@scriptcerto.com.br', '2016-03-05 22:20:49');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('32', '2', NULL, '::1', 'pdv@pdvparatodos.com.br', '2016-03-05 23:32:51');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('33', '3', NULL, '::1', 'contato@scriptcerto.com.br', '2016-03-06 06:15:29');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('34', '2', NULL, '::1', 'pdv@pdvparatodos.com.br', '2016-03-07 21:56:57');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('35', '2', NULL, '::1', 'pdv@pdvparatodos.com.br', '2016-03-08 01:39:04');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('36', '3', NULL, '::1', 'contato@scriptcerto.com.br', '2016-03-08 19:34:35');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('37', '3', NULL, '::1', 'contato@scriptcerto.com.br', '2016-03-09 01:08:22');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('38', '3', NULL, '168.90.88.42', 'contato@scriptcerto.com.br', '2016-03-29 13:47:27');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('39', '4', NULL, '168.90.88.42', 'jrnext@outlook.com', '2016-03-29 14:18:08');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('40', '5', NULL, '168.90.88.42', 'admin@admin.com', '2016-03-29 14:30:35');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('41', '4', NULL, '187.41.196.116', 'jrnext@outlook.com', '2016-03-29 18:22:52');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('42', '4', NULL, '187.62.159.66', 'jrnext@outlook.com', '2016-03-30 02:05:45');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('43', '4', NULL, '187.14.237.68', 'jrnext@outlook.com', '2016-03-30 10:20:10');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('44', '4', NULL, '187.62.159.66', 'jrnext@outlook.com', '2016-03-30 10:31:41');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('45', '4', NULL, '177.183.234.213', 'jrnext@outlook.com', '2016-03-30 10:55:00');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('46', '4', NULL, '177.55.241.207', 'jrnext@outlook.com', '2016-03-30 11:14:20');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('47', '4', NULL, '177.207.237.53', 'jrnext@outlook.com', '2016-03-30 13:04:31');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('48', '5', NULL, '187.62.159.66', 'admin@admin.com', '2016-03-30 13:09:01');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('49', '4', NULL, '177.55.241.207', 'jrnext@outlook.com', '2016-03-30 22:24:31');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('50', '4', NULL, '177.55.241.207', 'jrnext@outlook.com', '2016-03-30 23:10:05');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('51', '5', NULL, '179.125.51.250', 'admin@admin.com', '2016-03-31 00:00:32');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('52', '5', NULL, '179.125.51.250', 'admin@admin.com', '2016-03-31 00:42:32');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('53', '4', NULL, '168.90.88.42', 'jrnext@outlook.com', '2016-03-31 14:27:20');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('54', '5', NULL, '189.12.239.59', 'admin@admin.com', '2016-03-31 15:04:56');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('55', '5', NULL, '187.123.173.207', 'admin@admin.com', '2016-03-31 20:09:36');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('56', '5', NULL, '187.123.173.207', 'admin@admin.com', '2016-03-31 20:50:27');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('57', '5', NULL, '179.183.173.33', 'admin@admin.com', '2016-03-31 23:59:01');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('58', '4', NULL, '179.197.222.146', 'jrnext@outlook.com', '2016-04-01 00:18:22');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('59', '5', NULL, '201.1.70.75', 'admin@admin.com', '2016-04-01 01:58:38');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('60', '6', NULL, '201.1.70.75', 'lojadecriacao@hotmail.com', '2016-04-01 02:01:20');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('61', '5', NULL, '187.123.173.207', 'admin@admin.com', '2016-04-01 02:06:27');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('62', '6', NULL, '201.1.70.75', 'lojadecriacao@hotmail.com', '2016-04-01 02:06:55');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('63', '5', NULL, '201.1.70.75', 'admin@admin.com', '2016-04-01 02:55:29');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('64', '5', NULL, '187.41.205.116', 'admin@admin.com', '2016-04-01 13:49:52');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('65', '4', NULL, '187.62.159.66', 'jrnext@outlook.com', '2016-04-01 16:37:38');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('66', '4', NULL, '187.62.159.66', 'jrnext@outlook.com', '2016-04-01 17:09:28');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('67', '4', NULL, '179.127.200.18', 'cadprojetos@live.com', '2016-04-01 19:55:27');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('68', '4', NULL, '179.127.200.18', 'cadprojetos@live.com', '2016-04-02 13:55:13');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('69', '4', NULL, '179.127.200.18', 'cadprojetos@live.com', '2016-04-04 20:54:14');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('70', '4', NULL, '179.127.200.18', 'cadprojetos@live.com', '2016-04-07 12:25:54');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('71', '4', NULL, '179.127.205.58', 'cadprojetos@live.com', '2016-04-10 13:00:50');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('72', '7', NULL, '107.167.112.72', 'teste@teste.com', '2016-04-10 13:03:28');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('73', '7', NULL, '177.125.120.42', 'teste@teste.com', '2016-04-10 13:41:34');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('74', '7', NULL, '177.125.120.42', 'teste@teste.com', '2016-04-10 14:08:40');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('75', '7', NULL, '177.125.120.42', 'teste@teste.com', '2016-04-10 14:20:51');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('76', '7', NULL, '177.125.120.42', 'teste@teste.com', '2016-04-10 14:21:26');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('77', '7', NULL, '177.125.120.42', 'teste@teste.com', '2016-04-10 14:22:02');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('78', '7', NULL, '177.125.120.42', 'teste@teste.com', '2016-04-10 14:29:48');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('79', '4', NULL, '179.127.205.58', 'cadprojetos@live.com', '2016-04-11 16:57:18');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('80', '7', NULL, '177.125.120.42', 'teste@teste.com', '2016-04-12 18:46:02');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('81', '4', NULL, '179.127.205.58', 'cadprojetos@live.com', '2016-04-12 23:42:19');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('82', '4', NULL, '179.127.205.58', 'cadprojetos@live.com', '2016-04-13 01:26:13');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('83', '4', NULL, '179.127.205.58', 'cadprojetos@live.com', '2016-04-13 11:28:10');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('84', '4', NULL, '179.127.205.58', 'cadprojetos@live.com', '2016-04-13 11:45:36');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('85', '4', NULL, '187.62.159.66', 'cadprojetos@live.com', '2016-04-13 11:51:16');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('86', '4', NULL, '179.127.205.58', 'cadprojetos@live.com', '2016-04-13 13:11:01');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('87', '4', NULL, '179.127.205.58', 'cadprojetos@live.com', '2016-04-13 17:41:11');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('88', '8', NULL, '45.172.198.232', 'v.d.l.k@hotmail.com', '2026-05-12 23:50:11');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('89', '9', NULL, '45.172.198.232', 'v.d.l.k@hotmail.com', '2026-05-12 23:52:59');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('90', '9', NULL, '45.172.198.232', 'v.d.l.k@hotmail.com', '2026-05-12 23:53:43');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('91', '9', NULL, '45.172.198.232', 'v.d.l.k@hotmail.com', '2026-05-12 23:53:56');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('92', '4', NULL, '45.172.198.232', 'cadprojetos@live.com', '2026-05-12 23:56:19');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('93', '9', NULL, '45.172.198.232', 'v.d.l.k@hotmail.com', '2026-05-12 23:57:04');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('94', '9', NULL, '45.172.198.232', 'v.d.l.k@hotmail.com', '2026-05-12 23:57:54');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('95', '9', NULL, '45.172.198.232', 'v.d.l.k@hotmail.com', '2026-05-12 23:59:45');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('96', '9', NULL, '45.172.198.232', 'v.d.l.k@hotmail.com', '2026-05-13 00:01:40');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('97', '9', NULL, '45.172.198.232', 'v.d.l.k@hotmail.com', '2026-05-13 00:02:19');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('98', '9', NULL, '45.172.198.232', 'v.d.l.k@hotmail.com', '2026-05-13 00:03:54');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('99', '9', NULL, '45.172.198.232', 'v.d.l.k@hotmail.com', '2026-05-13 00:07:02');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('100', '9', NULL, '45.172.198.232', 'v.d.l.k@hotmail.com', '2026-05-13 00:15:49');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('101', '9', NULL, '45.172.198.232', 'v.d.l.k@hotmail.com', '2026-05-13 00:18:58');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('102', '9', NULL, '45.172.198.232', 'v.d.l.k@hotmail.com', '2026-05-13 00:21:03');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('103', '9', NULL, '45.172.198.232', 'v.d.l.k@hotmail.com', '2026-05-13 00:21:54');


#
# 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=10 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;

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 ('9', '45.172.198.232', '127.0.0.1', 'ruan.diego', '168873b3a152aa828db4b0ae15f1d91f05968f73', NULL, 'v.d.l.k@hotmail.com', NULL, NULL, NULL, NULL, '1778629607', '1778631714', '1', 'Ruan', 'Diego', NULL, NULL, NULL, NULL, '1');


