sql stringlengths 6 1.05M |
|---|
CREATE TABLE Manufacturers(
ManufacturerID INT NOT NULL,
[Name] NVARCHAR(20) NOT NULL,
EstablishedOn DATETIME2 NOT NULL,
CONSTRAINT PK_ManufacturerID PRIMARY KEY (ManufacturerID)
)
CREATE TABLE Models(
ModelID INT NOT NULL,
[Name] NVARCHAR(20) NOT NULL,
ManufacturerID INT NOT NULL,
CONSTRAINT PK_ModelID PRIMARY KEY (ModelID),
CONSTRAINT FK_ManufacturerID_Manufacturers
FOREIGN KEY(ManufacturerID) REFERENCES Manufacturers (ManufacturerID)
)
INSERT INTO Manufacturers VALUES
(1, 'BMW', '07/03/1916'),
(2, 'Tesla', '01/01/2003'),
(3, 'Lada', '01/05/1966')
INSERT INTO Models VALUES
(101, 'X1', 1),
(102, 'i6', 1),
(103, 'Model S', 2),
(104, 'Model X', 2),
(105, 'Model 3', 2),
(106, 'Nova', 3) |
create table country_boundary (
ctry18cd character (9),
ctry18nm character varying(200),
ctry18nmw character varying(200),
st_areasha numeric,
st_lengths numeric
);
select AddGeometryColumn ('public', 'country_boundary', 'geom', 27700, 'MULTIPOLYGON', 2);
select AddGeometryColumn ('public', 'country_boundary', 'bbox', 3857, 'POLYGON', 2);
create unique index idx_countryboundary_ctry18cd on country_boundary (ctry18cd);
cluster country_boundary using idx_countryboundary_ctry18cd;
create index idx_countryboundary_geom on country_boundary using gist (geom);
create index idx_countryboundary_bbox on country_boundary using gist (bbox); |
select COUNT(*) from data where col7 <= 8; |
WITH temp AS
(SELECT CandidateId, COUNT(*) AS votes
FROM Vote
GROUP BY CandidateId
)
SELECT Name
FROM Candidate
LEFT JOIN temp
ON Candidate.Id = temp.CandidateId
ORDER BY votes DESC LIMIT 1 |
<filename>RealtyTrac/sql/temp_assessments_tagged_with_2000_block_groups.sql
-- Assessments summarized by year and 2000 block group
SELECT bg.bkgpidfp00 AS FIPS, asm.*
INTO _temp_assessments_tagged_with_2000_block_groups_
FROM assessments_parcel_characteristics_geocoded AS asm, census2000_block_groups AS bg
WHERE ST_Intersects(bg.geom, asm.geom); |
-- file:numeric.sql ln:255 expect:true
INSERT INTO num_exp_div VALUES (5,7,'-.00019748690453643710')
|
{%- macro type_of_arr_change(arr, previous_arr, row_number) -%}
CASE
WHEN {{ row_number }} = 1
THEN 'New'
WHEN {{ arr }} = 0 AND {{ previous_arr }} > 0
THEN 'Churn'
WHEN {{ arr }} < {{ previous_arr }} AND {{ arr }} > 0
THEN 'Contraction'
WHEN {{ arr }} > {{ previous_arr }} AND {{ row_number }} > 1
THEN 'Expansion'
WHEN {{ arr }} = {{ previous_arr }}
THEN 'No Impact'
ELSE NULL
END AS type_of_arr_change
{%- endmacro -%}
|
CREATE OR REPLACE VIEW gv_surveys AS
SELECT s.id, s.title, s.description, w.title AS website, s.deleted, s.website_id
FROM surveys s
LEFT JOIN websites w ON s.website_id = w.id AND w.deleted = false
WHERE s.deleted = false;
|
CREATE TABLE OFFICE (
ID BIGINT GENERATED BY DEFAULT AS IDENTITY,
NAME VARCHAR(255),
ADDRESS_ID BIGINT,
DEPARTMENT_ID BIGINT,
PRIMARY KEY (ID)
);
ALTER TABLE OFFICE ADD CONSTRAINT OFFICE_ADDRESS FOREIGN KEY (ADDRESS_ID) REFERENCES ADDRESS; |
drop database if exists pcr_mpi;
create database pcr_mpi;
use pcr_mpi;
DROP TABLE IF EXISTS person_record;
DROP TABLE IF EXISTS patient_person_link;
DROP TABLE IF EXISTS patient_person_link_history;
DROP TABLE IF EXISTS organisation_person_routing;
DROP TABLE IF EXISTS patient_search_local_identifier;
DROP TABLE IF EXISTS patient_search_episode;
DROP TABLE IF EXISTS patient_search;
CREATE TABLE person_record
(
person_id int NOT NULL AUTO_INCREMENT COMMENT 'auto-generated ID for this person',
nhs_number character(10) NOT NULL COMMENT 'NHS number for this person',
date_of_birth date COMMENT 'DoB for this person - if DoB will not be used to match, then this should be removed',
publisher_pcr_database_name varchar(255) NOT NULL COMMENT 'name of the publisher pcr_patient DB that this person record is stored on',
gp_practice_ods_code varchar(10) COMMENT 'ODS code of the registered GP practice - not used for matching, but detecting if a person needs moving to a different DB',
CONSTRAINT pk_person_record PRIMARY KEY (person_id)
) COMMENT 'defines the person ID and attributes used to match to it';
CREATE UNIQUE INDEX ix_nhs_number ON person_record (nhs_number);
CREATE TABLE patient_person_link
(
patient_id int NOT NULL COMMENT 'refers to patient.id in pcr_patient databases',
service_id character(36) NOT NULL COMMENT 'refers to admin.service table',
person_id int NOT NULL COMMENT 'refers to person_record table',
CONSTRAINT pk_patient_person_link PRIMARY KEY (patient_id)
) COMMENT 'defines the current linkage between patient records and their person ID';
CREATE INDEX ix_person_id ON patient_person_link (person_id);
CREATE TABLE patient_person_link_history
(
patient_id int NOT NULL,
service_id character(36) NOT NULL,
updated timestamp NOT NULL,
new_person_id int NOT NULL,
previous_person_id int,
CONSTRAINT pk_patient_person_link_history PRIMARY KEY (patient_id, updated)
) COMMENT 'stores the history of matched person ID for a patient ID';
CREATE INDEX ix_updated ON patient_person_link_history (updated);
CREATE TABLE organisation_person_routing (
gp_practice_ods_code varchar(10) NOT NULL COMMENT 'ODS code of a GP practice',
publisher_pcr_database_name varchar(255) NOT NULL COMMENT 'name of the publisher pcr_patient DB that persons registered at this pracitce should be stored on',
CONSTRAINT pk_organisation_person_routing PRIMARY KEY (gp_practice_ods_code)
) COMMENT 'stores the routing of which pcr_patient database person records should be stored on';
CREATE TABLE patient_search
(
service_id char(36) NOT NULL,
nhs_number varchar(10),
forenames varchar(500),
surname varchar(500),
date_of_birth date,
date_of_death date,
address_line_1 VARCHAR(255),
address_line_2 VARCHAR(255),
address_line_3 VARCHAR(255),
city VARCHAR(255),
district VARCHAR(255),
postcode varchar(8),
gender varchar(7),
patient_id int NOT NULL,
last_updated timestamp NOT NULL,
registered_practice_ods_code VARCHAR(50),
dt_deleted datetime,
CONSTRAINT pk_patient_search PRIMARY KEY (service_id, patient_id)
);
CREATE INDEX ix_patient
ON patient_search (patient_id);
-- duplicate of primary key (clusterd index) so removed
/*CREATE INDEX ix_service_patient
ON patient_search (service_id, patient_id);*/
CREATE INDEX ix_service_date_of_birth
ON patient_search (service_id, date_of_birth, dt_deleted);
-- swap index to be NHS Number first, since that's more selective than a long list of service IDs
/*CREATE INDEX ix_service_nhs_number
ON patient_search (service_id, nhs_number);*/
CREATE INDEX ix_service_nhs_number_2
ON patient_search (nhs_number, service_id, dt_deleted);
CREATE INDEX ix_service_surname_forenames
ON patient_search (service_id, surname, forenames, dt_deleted);
CREATE TABLE patient_search_episode
(
service_id char(36) NOT NULL,
patient_id int NOT NULL,
episode_id int NOT NULL,
registration_start date,
registration_end date,
care_mananger VARCHAR(255),
organisation_name VARCHAR(255),
organisation_type_code varchar(10),
registration_type_code varchar(10),
last_updated timestamp NOT NULL,
registration_status_code varchar(10),
dt_deleted datetime,
CONSTRAINT pk_patient_search_episode PRIMARY KEY (service_id, patient_id, episode_id)
);
-- unique index required so patient merges trigger a change in patient_id
CREATE UNIQUE INDEX uix_patient_search_episode_id
ON patient_search_episode (episode_id);
CREATE TABLE patient_search_local_identifier
(
service_id char(36) NOT NULL,
local_id varchar(1000),
local_id_system varchar(1000),
patient_id int NOT NULL,
last_updated timestamp NOT NULL,
dt_deleted datetime,
CONSTRAINT pk_patient_search_local_identifier PRIMARY KEY (service_id, patient_id, local_id_system, local_id)
);
-- index so patient search by local ID works in timely fashion
CREATE INDEX ix_patient_search_local_identifier_id_service_patient
ON patient_search_local_identifier (local_id, service_id, patient_id, dt_deleted);
|
CREATE EXTENSION IF NOT EXISTS postgis schema "public";
-- CreateTable
CREATE TABLE "Location" (
"id" SERIAL NOT NULL,
"name" TEXT NOT NULL,
"location" "public".geography,
PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "User" (
"id" SERIAL NOT NULL,
"name" TEXT NOT NULL,
"location" "public".geography,
PRIMARY KEY ("id")
);
CREATE FUNCTION "locations_near_user" (
user_id INT,
distance INT
) returns TABLE (id INT, name TEXT) as $$
select l.id, l.name from "Location" l
where "public"."st_distance"(
l.location,
(select location from "User" u where u.id = user_id)
) / 1000 <= distance
$$ language 'sql' stable; |
<reponame>zmbush/noted
CREATE TABLE notes (
id SERIAL PRIMARY KEY,
title VARCHAR NOT NULL UNIQUE,
body TEXT NOT NULL
);
|
<filename>software/cabio-database/scripts/sql_loader/no_longer_used/constraints/bio_pathways_tv.disable.sql
/*L
Copyright SAIC
Distributed under the OSI-approved BSD 3-Clause License.
See http://ncip.github.com/cabio/LICENSE.txt for details.
L*/
alter table BIO_PATHWAYS_TV disable constraint SYS_C0016533;
alter table BIO_PATHWAYS_TV disable constraint PATHWAYS_UNIQ;
alter table BIO_PATHWAYS_TV disable constraint SYS_C004318;
alter table BIO_PATHWAYS_TV disable constraint SYS_C004319;
alter table BIO_PATHWAYS_TV disable constraint SYS_C004320;
alter table BIO_PATHWAYS_TV disable constraint SYS_C004321;
alter table BIO_PATHWAYS_TV disable constraint BPTBIGID;
alter table BIO_PATHWAYS_TV disable primary key;
--EXIT;
|
--replace into a table with a primary key and a unique index.
--trigger: 1) before insert 2) after insert 3) before delete 4) after delete
--trigger action: insert into 1 table.
CREATE TABLE with_trigger(a int primary key, b char(10), c int unique);
INSERT INTO with_trigger VALUES (1, 'AAA', 1), (2, 'BBB', 2), (3, 'CCC', 3);
SELECT * FROM with_trigger order by 1;
CREATE TABLE trigger_actions(id int auto_increment, a int, b char(20));
CREATE TRIGGER trig_bef_del BEFORE DELETE ON with_trigger EXECUTE
INSERT INTO trigger_actions(a, b) VALUES (1, 'BEFORE DELETE');
CREATE TRIGGER trig_aft_del AFTER DELETE ON with_trigger EXECUTE
INSERT INTO trigger_actions(a, b) VALUES (2, 'AFTER DELETE');
CREATE TRIGGER trig_bef_ins BEFORE INSERT ON with_trigger EXECUTE
INSERT INTO trigger_actions(a, b) VALUES (3, 'BEFORE INSERT');
CREATE TRIGGER trig_aft_ins AFTER INSERT ON with_trigger EXECUTE
INSERT INTO trigger_actions(a, b) VALUES (4, 'AFTER INSERT');
CREATE TRIGGER trig_bef_st_ins BEFORE STATEMENT INSERT ON with_trigger EXECUTE
INSERT INTO trigger_actions (a, b) VALUES (5, 'BEFORE ST INSERT');
CREATE TRIGGER trig_aft_st_ins AFTER STATEMENT INSERT ON with_trigger EXECUTE
INSERT INTO trigger_actions (a, b) VALUES (6, 'AFTER ST INSERT');
REPLACE INTO with_trigger VALUES (4, 'DDD', 4);
SELECT * FROM trigger_actions order by 1;
SELECT * FROM with_trigger order by 1;
REPLACE INTO with_trigger VALUES (4, 'FFF', 4);
SELECT * FROM trigger_actions order by 1;
SELECT * FROM with_trigger order by 1;
REPLACE INTO with_trigger VALUES (4, 'GGG', 5);
SELECT * FROM trigger_actions order by 1;
SELECT * FROM with_trigger order by 1;
DROP TRIGGER trig_bef_del;
DROP TRIGGER trig_aft_del;
DROP TRIGGER trig_bef_ins;
DROP TRIGGER trig_aft_ins;
DROP TRIGGER trig_bef_st_ins;
DROP TRIGGER trig_aft_st_ins;
DROP TABLE trigger_actions;
DROP TABLE with_trigger;
|
<filename>openGaussBase/testcase/KEYWORDS/rule/Opengauss_Function_Keyword_Rule_Case0034.sql
-- @testpoint: opengauss关键字rule(非保留),作为游标名,部分测试点合理报错
--前置条件
drop table if exists explain_test cascade;
create table explain_test(cid int,fid int);
--关键字不带引号-成功
start transaction;
cursor rule for select * from explain_test order by 1;
close rule;
end;
--关键字带双引号-成功
start transaction;
cursor "rule" for select * from explain_test order by 1;
close "rule";
end;
--关键字带单引号-合理报错
start transaction;
cursor 'rule' for select * from explain_test order by 1;
close 'rule';
end;
--关键字带反引号-合理报错
start transaction;
cursor `rule` for select * from explain_test order by 1;
close `rule`;
end;
drop table if exists explain_test cascade; |
/*
SQLyog Ultimate v11.11 (32 bit)
MySQL - 5.6.31-0ubuntu0.15.10.1 : Database - ithuse
*********************************************************************
*/
/*!40101 SET NAMES utf8 */;
/*!40101 SET SQL_MODE=''*/;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
CREATE DATABASE /*!32312 IF NOT EXISTS*/`ithuse` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `ithuse`;
/*Table structure for table `categorys` */
DROP TABLE IF EXISTS `categorys`;
CREATE TABLE `categorys` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`category_name` varchar(225) DEFAULT NULL,
`is_active` int(1) DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
/*Data for the table `categorys` */
insert into `categorys`(`id`,`category_name`,`is_active`) values (1,'Office of the Director',1),(2,'Student Governance',1),(3,'Student Counselling',1),(4,'Student Health',1),(5,'Disability Unit',1),(6,'Student Development',1),(7,'Orientation',1);
/*Table structure for table `document_lists` */
DROP TABLE IF EXISTS `document_lists`;
CREATE TABLE `document_lists` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`title` varchar(225) DEFAULT NULL,
`category_id` int(10) DEFAULT NULL,
`sub_category_id` int(10) DEFAULT NULL,
`updation_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`is_active` int(10) DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=latin1;
/*Data for the table `document_lists` */
insert into `document_lists`(`id`,`title`,`category_id`,`sub_category_id`,`updation_date`,`is_active`) values (17,'Updated Title',5,9,'2017-01-12 21:17:50',0),(18,'rthgtghb',6,11,'2017-01-12 21:20:05',0),(19,'tyuhb',1,1,'2017-01-12 21:19:15',0),(20,'fghn',3,6,'2017-01-13 13:14:20',1),(21,'weddcc',7,14,'2017-01-13 13:20:12',1),(22,'Like it',3,5,'2017-01-12 21:20:55',0),(23,'Title Good',2,4,'2017-01-12 21:20:47',0),(24,'new doc',5,9,'2017-01-13 12:05:28',0),(25,'Title',3,5,'2017-01-12 21:21:26',1),(26,'ihbiujn',1,1,'2017-01-13 13:38:45',1),(27,'ftghnb',1,2,'2017-01-13 13:53:35',1),(28,'rythb',5,10,'2017-01-16 13:56:30',0),(29,'dxfv',7,13,'2017-01-13 17:00:41',1),(30,'refdc',5,9,'2017-01-16 13:56:23',0),(31,'dtrghb',2,3,'2017-01-13 16:58:35',1),(32,'dxfv',2,4,'2017-01-13 17:00:55',1);
/*Table structure for table `events` */
DROP TABLE IF EXISTS `events`;
CREATE TABLE `events` (
`event_id` int(10) NOT NULL AUTO_INCREMENT,
`title` varchar(200) COLLATE utf8_bin DEFAULT NULL,
`description` text COLLATE utf8_bin,
`event_venue` varchar(225) COLLATE utf8_bin DEFAULT NULL,
`event_date` date DEFAULT NULL,
`event_time` time DEFAULT NULL,
`status` enum('complete','pending') COLLATE utf8_bin DEFAULT 'pending',
`is_active` int(10) DEFAULT '1',
PRIMARY KEY (`event_id`)
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*Data for the table `events` */
insert into `events`(`event_id`,`title`,`description`,`event_venue`,`event_date`,`event_time`,`status`,`is_active`) values (24,'Team Meeting','Discussion about project.','Meeting Room','2017-01-16',NULL,'pending',0),(25,'Team Meeting','Discussion about project.','','2017-01-16',NULL,'pending',0),(26,'5e','etrgh','','2017-01-13',NULL,'pending',0),(27,'raqewdf','qwef weaf weaf ew f ew rf fr rwfe','qwef','2017-01-13',NULL,'pending',0),(28,'Team party','NYE Party plddll lplspdlk retge getr gtre g.','xyz place','2017-01-11','10:05:00','complete',1),(29,'Title Changed','rtfgvtrgv rtg rth r gr hyyhr hryhbgr','rtghb','2017-01-27','10:05:00','pending',1),(30,'ghnbgfnb','dib id v hruirui h uihuihuihuihurhuh buhriub','retbgv','2017-01-28',NULL,'pending',0),(31,'redf','e e g rtgrtgrtgtgrggfgdfgdfgdfgdfgdfg','dfgdfg','2017-01-28','06:15:00','pending',0),(32,'ertgv e gteg etg','eg etgrbrbrggggvfgbfgbgbrgbrgb','erf','2017-01-28','22:20:00','pending',1),(33,'efrgvvc','eg etgrbrbrggggvfgbfgbgbrgbrgb','erfgefrvc','2017-01-28',NULL,'pending',0),(34,'werdfvcrefvc','eg etgrbrbrggggvfgbfgbgbrgbrgb','erfgvrefvcrefvce','2017-01-28',NULL,'pending',0),(35,'Title','Its a Long Description for the event.','Venue','2017-01-20','06:00:00','pending',1),(36,'Title Added 1','This error occurs when expression the ngModel directive is bound to is a non-assignable expression.\n\nExamples using assignable expressions include:','Venue decisedds','2017-01-26','06:00:00','pending',1),(37,'fsregv','rtsegtregb try htyhthtdhnbghnb ghnbfgnbf','hdfghnbfgh','2017-01-28','06:10:00','pending',0);
/*Table structure for table `login_histories` */
DROP TABLE IF EXISTS `login_histories`;
CREATE TABLE `login_histories` (
`id` int(20) unsigned NOT NULL AUTO_INCREMENT,
`login_user_id` int(10) unsigned DEFAULT NULL,
`login_time` datetime DEFAULT NULL,
`logout_time` datetime DEFAULT NULL,
`ip_address` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`user_agent` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_active` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=103 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*Data for the table `login_histories` */
insert into `login_histories`(`id`,`login_user_id`,`login_time`,`logout_time`,`ip_address`,`user_agent`,`is_active`) values (76,1,'2017-01-06 13:27:03','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(77,1,'2017-01-06 13:29:19','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(78,1,'2017-01-06 13:47:09','2017-01-16 16:52:16','1192.168.127.12','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(79,1,'2017-01-06 13:47:28','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(80,1,'2017-01-06 13:48:52','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(81,1,'2017-01-06 14:12:45','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(82,1,'2017-01-06 16:20:35','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(83,1,'2017-01-09 11:37:32','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(84,1,'2017-01-09 18:56:40','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(85,1,'2017-01-09 19:03:40','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(86,1,'2017-01-09 19:32:53','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(87,1,'2017-01-09 19:35:29','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(88,1,'2017-01-09 19:36:00','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(89,1,'2017-01-09 20:03:15','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(90,1,'2017-01-10 12:07:25','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(91,1,'2017-01-10 12:47:27','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(92,1,'2017-01-10 19:13:31','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(93,1,'2017-01-10 19:44:51','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(94,1,'2017-01-11 12:30:12','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(95,1,'2017-01-12 11:46:11','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(96,1,'2017-01-12 17:17:55','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(97,1,'2017-01-12 19:38:08','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(98,1,'2017-01-13 12:01:59','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(99,1,'2017-01-13 16:13:30','2017-01-16 16:52:16','192.168.1.117','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(100,1,'2017-01-16 11:55:18','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(101,1,'2017-01-16 15:41:08','2017-01-16 16:52:16','127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',0),(102,1,'2017-01-16 16:52:19',NULL,'127.0.0.1','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1',1);
/*Table structure for table `migrations` */
DROP TABLE IF EXISTS `migrations`;
CREATE TABLE `migrations` (
`migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*Data for the table `migrations` */
insert into `migrations`(`migration`,`batch`) values ('2014_10_12_000000_create_users_table',1),('2014_10_12_100000_create_password_resets_table',1);
/*Table structure for table `mobile_details` */
DROP TABLE IF EXISTS `mobile_details`;
CREATE TABLE `mobile_details` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`imei` int(50) DEFAULT NULL,
`date` datetime DEFAULT NULL,
`document_id` int(10) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=latin1;
/*Data for the table `mobile_details` */
insert into `mobile_details`(`id`,`imei`,`date`,`document_id`) values (1,123456789,'2017-01-12 17:00:35',1),(2,123456789,'2017-01-12 17:11:02',1),(3,123456789,'2017-01-12 17:23:58',1),(4,456465,'2017-01-12 17:27:57',1),(5,456465,'2017-01-12 18:31:45',1),(6,456465,'2017-01-12 18:36:29',1),(7,456465,'2017-01-12 18:36:32',1),(8,456465,'2017-01-12 18:37:08',1),(9,2147483647,'2017-01-12 18:51:59',1),(10,2147483647,'2017-01-12 18:58:13',1),(11,2147483647,'2017-01-12 19:04:43',1),(12,2147483647,'2017-01-12 19:04:53',1),(13,2147483647,'2017-01-12 19:05:06',1),(14,2147483647,'2017-01-12 19:05:11',1),(15,2147483647,'2017-01-12 19:05:14',1),(16,2147483647,'2017-01-12 19:05:20',1),(17,2147483647,'2017-01-12 19:16:02',1),(18,2147483647,'2017-01-12 19:16:17',1),(19,2147483647,'2017-01-12 19:16:20',1),(20,2147483647,'2017-01-12 19:16:50',1),(21,2147483647,'2017-01-12 19:18:31',9),(22,2147483647,'2017-01-12 19:18:37',9),(23,2147483647,'2017-01-12 19:19:00',9),(24,2147483647,'2017-01-12 19:21:14',1),(25,2147483647,'2017-01-12 19:21:24',1),(26,2147483647,'2017-01-12 19:36:10',1),(27,2147483647,'2017-01-12 19:39:31',1),(28,2147483647,'2017-01-12 19:58:51',1),(29,2147483647,'2017-01-12 19:59:02',1),(30,2147483647,'2017-01-12 19:59:28',1),(31,2147483647,'2017-01-12 19:59:43',1),(32,2147483647,'2017-01-12 20:00:05',1),(33,2147483647,'2017-01-13 15:20:18',1),(34,2147483647,'2017-01-16 12:53:38',1),(35,2147483647,'2017-01-16 12:57:10',1);
/*Table structure for table `password_resets` */
DROP TABLE IF EXISTS `password_resets`;
CREATE TABLE `password_resets` (
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`token` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
KEY `password_resets_email_index` (`email`),
KEY `password_resets_token_index` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*Data for the table `password_resets` */
/*Table structure for table `pdf_reports` */
DROP TABLE IF EXISTS `pdf_reports`;
CREATE TABLE `pdf_reports` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`pdf_name` varchar(225) DEFAULT NULL,
`uploading_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`document_id` int(10) DEFAULT NULL,
`is_active` int(10) DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=latin1;
/*Data for the table `pdf_reports` */
insert into `pdf_reports`(`id`,`pdf_name`,`uploading_date`,`document_id`,`is_active`) values (9,'pdf_document/Student Development/Leadership development/document.pdf','2017-01-12 21:20:05',18,0),(10,'pdf_document/Office of the Director/Director’s Projects/document.pdf','2017-01-12 21:19:15',19,0),(17,'pdf_document/Disability Unit/Academic Support/document.pdf','2017-01-12 18:10:47',17,0),(18,'pdf_document/Disability Unit/Academic Support/document.pdf','2017-01-12 18:13:05',17,0),(19,'pdf_document/Disability Unit/Academic Support/document.pdf','2017-01-12 18:14:10',17,0),(20,'pdf_document/Disability Unit/Academic Support/document.pdf','2017-01-12 21:17:50',17,0),(21,'pdf_document/Student Counselling/Learning, development and career counselling/document.pdf','2017-01-12 19:57:34',20,0),(22,'pdf_document/Orientation/Orientation Programme/document.pdf','2017-01-13 13:20:12',21,0),(23,'pdf_document/Student Counselling/Emotional Support/document.pdf','2017-01-12 19:57:57',20,0),(24,'pdf_document/Student Counselling/Emotional Support/document.pdf','2017-01-12 20:00:44',20,0),(25,'pdf_document/Student Counselling/Emotional Support/document.pdf','2017-01-13 13:14:20',20,0),(26,'pdf_document/Student Counselling/Emotional Support/document.pdf','2017-01-12 21:20:55',22,0),(27,'pdf_document/Student Governance/Societies/document.pdf','2017-01-12 21:20:47',23,0),(28,'pdf_document/Disability Unit/Academic Support/document.pdf','2017-01-13 12:05:28',24,0),(29,'pdf_document/Student Counselling/Emotional Support/document.pdf','2017-01-12 21:21:26',25,1),(30,'pdf_document/Office of the Director/Director’s Projects/document.pdf','2017-01-13 12:51:30',26,0),(31,'pdf_document/Office of the Director/Director’s Projects/document.pdf','2017-01-13 13:25:58',26,0),(32,'pdf_document/Office of the Director/Director’s Projects/document.pdf','2017-01-13 13:34:45',26,0),(33,'pdf_document/Office of the Director/Director’s Projects/document.pdf','2017-01-13 13:38:45',26,0),(34,'pdf_document/Office of the Director/Director’s Projects/document.pdf','2017-01-13 13:38:45',26,1),(35,'pdf_document/Office of the Director/Policies/document.pdf','2017-01-13 13:53:35',27,1),(36,'pdf_document/Disability Unit/Test and academic development/document.pdf','2017-01-13 13:55:51',28,0),(37,'pdf_document/Orientation/New Students/document.pdf','2017-01-13 14:19:25',29,0),(38,'pdf_document/Disability Unit/Test and academic development/document.pdf','2017-01-16 13:56:30',28,0),(39,'pdf_document/Orientation/New Students/document.pdf','2017-01-13 17:00:41',29,0),(40,'pdf_document/Disability Unit/Academic Support/document.pdf','2017-01-13 16:52:11',30,0),(41,'pdf_document/Disability Unit/Academic Support/document.pdf','2017-01-13 16:53:04',30,0),(42,'pdf_document/Disability Unit/Academic Support/document.pdf','2017-01-13 16:54:12',30,0),(43,'pdf_document/Disability Unit/Academic Support/document.pdf','2017-01-13 16:55:16',30,0),(44,'pdf_document/Disability Unit/Academic Support/document.pdf','2017-01-13 16:59:05',30,0),(45,'pdf_document/Student Governance/Student Representative Council/document.pdf','2017-01-13 16:58:35',31,1),(46,'pdf_document/Disability Unit/Academic Support/document.pdf','2017-01-13 17:00:02',30,0),(47,'pdf_document/Disability Unit/Academic Support/document.pdf','2017-01-16 13:56:23',30,0),(48,'pdf_document/Orientation/New Students/document.pdf','2017-01-13 17:00:41',29,1),(49,'pdf_document/Student Governance/Societies/document.pdf','2017-01-13 17:00:55',32,1);
/*Table structure for table `sub_categorys` */
DROP TABLE IF EXISTS `sub_categorys`;
CREATE TABLE `sub_categorys` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`sub_category_name` varchar(225) DEFAULT NULL,
`category_id` int(10) DEFAULT NULL,
`is_active` int(10) DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=latin1;
/*Data for the table `sub_categorys` */
insert into `sub_categorys`(`id`,`sub_category_name`,`category_id`,`is_active`) values (1,'Director’s Projects',1,1),(2,'Policies',1,1),(3,'Student Representative Council',2,1),(4,'Societies',2,1),(5,'Emotional Support',3,1),(6,'Learning, development and career counselling',3,1),(7,'Our Services',4,1),(8,'Monthly Health Topics',4,1),(9,'Academic Support',5,1),(10,'Test and academic development',5,1),(11,'Leadership development',6,1),(12,'Student Life',6,1),(13,'New Students',7,1),(14,'Orientation Programme',7,1);
/*Table structure for table `users` */
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`last_login_time` timestamp NULL DEFAULT NULL,
`is_active` int(10) DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*Data for the table `users` */
insert into `users`(`id`,`name`,`email`,`password`,`remember_token`,`created_at`,`updated_at`,`last_login_time`,`is_active`) values (1,'Abhishek','<EMAIL>','$<PASSWORD>','<KEY>','2017-01-05 13:58:21','2017-01-16 16:52:19','2017-01-16 16:52:19',1);
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
<gh_stars>0
insert into "offer_participants_user" ("offerId", "userId") values (111107, 11143);
insert into "offer_participants_user" ("offerId", "userId") values (111108, 11142);
insert into "offer_participants_user" ("offerId", "userId") values (111108, 11141);
insert into "offer_participants_user" ("offerId", "userId") values (111108, 11140); |
-- +migrate Up
ALTER TABLE campaign ADD COLUMN location TEXT;
-- +migrate Down
ALTER TABLE campaign DROP COLUMN location; |
<reponame>mdshorifuli2355/news24
-- phpMyAdmin SQL Dump
-- version 4.8.5
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Aug 08, 2020 at 11:48 AM
-- Server version: 10.1.38-MariaDB
-- PHP Version: 7.3.3
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `news24`
--
-- --------------------------------------------------------
--
-- Table structure for table `categories`
--
CREATE TABLE `categories` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `categories`
--
INSERT INTO `categories` (`id`, `name`, `slug`, `image`, `created_at`, `updated_at`) VALUES
(2, 'খেলা', '', 'storage/images/category\\51629.jpg', '2020-08-05 07:16:59', '2020-08-05 07:16:59'),
(3, 'বিনোদন', '', 'storage/images/category\\27983.jpg', '2020-08-05 07:17:16', '2020-08-05 07:17:16'),
(4, 'ফিচার', '', 'storage/images/category\\34920.jpg', '2020-08-05 07:17:37', '2020-08-05 07:17:37'),
(5, 'শিক্ষা', '', 'storage/images/category\\93181.jpg', '2020-08-05 07:17:51', '2020-08-05 07:17:51'),
(6, 'আন্তর্জাতিক', '', 'storage/images/category\\95198.jpg', '2020-08-05 07:18:05', '2020-08-05 07:18:05'),
(7, 'বাংলাদেশ', '', 'storage/images/category\\41366.jpg', '2020-08-05 07:18:21', '2020-08-05 07:18:21');
-- --------------------------------------------------------
--
-- Table structure for table `category_post`
--
CREATE TABLE `category_post` (
`id` bigint(20) UNSIGNED NOT NULL,
`post_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `category_post`
--
INSERT INTO `category_post` (`id`, `post_id`, `category_id`, `created_at`, `updated_at`) VALUES
(2, 2, 4, '2020-08-05 07:25:24', '2020-08-05 07:25:24'),
(3, 3, 3, '2020-08-05 07:27:46', '2020-08-05 07:27:46'),
(4, 4, 3, '2020-08-05 07:30:43', '2020-08-05 07:30:43'),
(5, 5, 7, '2020-08-05 07:34:56', '2020-08-05 07:34:56'),
(6, 6, 2, '2020-08-05 07:38:29', '2020-08-05 07:38:29'),
(7, 7, 6, '2020-08-05 20:30:38', '2020-08-05 20:30:38'),
(8, 9, 6, '2020-08-05 20:33:21', '2020-08-05 20:33:21');
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 1),
(3, '2020_07_15_082520_create_roles_table', 1),
(4, '2020_07_15_113707_create_tags_table', 1),
(5, '2020_07_16_110902_create_categories_table', 1),
(6, '2020_07_16_181324_create_posts_table', 1),
(7, '2020_07_16_181506_create_category_post_table', 1),
(8, '2020_07_16_181557_create_post_tag_table', 1),
(9, '2020_08_04_132654_create_topposts_table', 2);
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `posts`
--
CREATE TABLE `posts` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default.png',
`image_title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`body` text COLLATE utf8mb4_unicode_ci NOT NULL,
`view_count` int(11) NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '0',
`is_approved` tinyint(1) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `posts`
--
INSERT INTO `posts` (`id`, `user_id`, `title`, `slug`, `image`, `image_title`, `body`, `view_count`, `status`, `is_approved`, `created_at`, `updated_at`) VALUES
(2, 2, 'এবার একটু হালকা খান', '', 'storage/images\\46875.webp', 'ঈদে একটানা ভারী খাবারের পর নিজেকে সুস্থ রাখতে এখন হালকা খাবার খেতে হবে। মডেল: সারাকা, ছবি: সুমন ইউসুফ ঈদে একটানা ভারী খাবারের পর নিজেকে সুস্থ রাখতে এখন হালকা খাবার খেতে হবে। মডেল: সারাকা', 'এই তো কদিন আগেই চলে গেল ঈদুল আজহা। ভারী খা বারের ছড়াছড়ি গেল এই কদিন। এই ঈদে খাবারের মূল আয়োজনে থাকে বিভিন্ন রকমের মাংস। গরু, খাসি, মহিষ, এমনকি উটও কোরবানি করেন অনেকে। না চাইলেও তাই এক-দুই টুকরা করে বেশ খানিকটা খাওয়া হয়ে যায়। তাই এখন খাদ্যসচেতনতা বেশি জরুরি। এখন খাবারের বিষয়ে চাই পরিমিতি জ্ঞান ও স্বাস্থ্যসচেতনতা।\r\n\r\nসমস্যা হলো তাঁদের, যাঁরা অনেক দিন ধরে বিভিন্ন রোগে ভুগছেন। যেমন যাঁদের পেটের সমস্যা, উচ্চ রক্তচাপ, ডায়াবেটিস বা হৃদ্রোগ, কিডনি বা লিভারের রোগ আছে কিংবা এসব রোগের প্রাথমিক লক্ষণ আছে। ঈদ উপলক্ষে সবার বাসায় কমবেশি নানা ধরনের মুখরোচক খাবারের আয়োজন ছিল। তাই এখন নজর দেওয়া দরকার আমরা কী খাচ্ছি, কতটুকু খাচ্ছি, বিভিন্ন খাবারের প্রতিক্রিয়া কী, সেসবের ওপর।', 0, 1, 1, '2020-08-05 07:25:23', '2020-08-05 07:25:23'),
(3, 2, 'বেস্টসেলার বই বড় পর্দায় আনছেন রিজ', '', 'storage/images\\57912.webp', 'রিজ উইদারস্পুন', 'রিজ উইদারস্পুন কি বইপাগল? এই প্রশ্নের উত্তরে অনেকেই মাথা কাত করবেন, মানে ‘হ্যাঁ’। হলিউড এই অভিনেত্রীর ইনস্টাগ্রাম অ্যাকাউন্ট থেকে ঘুরে এলে অবশ্য এর সত্যতা মেলে। তাঁর ইনস্টাগ্রামের বেশ কিছু পোস্টই থাকে বই নিয়ে। কোনোটা ছোটগল্প তো কোনোটা থাকে উপন্যাস নিয়ে। আছে বুক ক্লাবও। এবার নেমেছেন নতুন ছবির প্রযোজনায়। আর সেখানেও থাকছে বেস্টসেলার একটি বই।\r\n\r\nডালিয়া ওয়েনের প্রথম উপন্যাস দ্য ক্রড্যাডস সিং অবলম্বনে তৈরি হচ্ছে ছবিটি। পরিচালনা করবেন নেটফ্লিক্সের প্রযোজনা ফার্স্ট ম্যাচ–এর লেখক ও পরিচালক অলিভিয়া নিউম্যান। এই খবর জানিয়েছে মার্কিন সাময়িকী দ্য হলিউড রিপোর্টার।', 0, 1, 1, '2020-08-05 07:27:46', '2020-08-05 07:27:46'),
(4, 2, 'অবন্তীর সঙ্গে আট বছরের প্রেমের গল্প শোনাবেন সিয়াম', '', 'storage/images\\41803.webp', 'সিয়াম ও তাঁর স্ত্রী অবন্তী', 'শাকিব খান, আরিফিন শুভ থেকে শুরু করে চলচ্চিত্রের অনেক তারকারই নিজস্ব ইউটিউব চ্যানেল আছে। সেই তালিকায় এবার যুক্ত হলেন আরেক চলচ্চিত্র তারকা সিয়াম আহমেদ। পবিত্র ঈদুল আজহার দিন রাতে ‘সিয়াম আহমেদ’ নামে তাঁর নিজস্ব ইউটিউব চ্যানেলের যাত্রা শুরু হয়।\r\n\r\nসিয়াম বলেন, ‘করোনাভাইরাসের প্রকোপের আগেই ভক্তদের কাছে ইউটিউব চ্যানেলের চাহিদা ছিল। মহামারির সময় সে আগ্রহ আরও বেশি দেখা গেছে। আমার ব্যক্তিজীবন, কাজের পেছনের গল্পসহ নানা বিষয় নিয়ে ভক্তরা জানতে চান। কিন্তু সময়ের অভাবে কাজটি করা হচ্ছিল না। করোনাকালে দীর্ঘ সময় হাতে পেয়েছি। সুযোগটা কাজে লাগালাম।’', 0, 1, 1, '2020-08-05 07:30:43', '2020-08-05 07:30:43'),
(5, 5, 'করোনাকালে নিয়তিবাদ আমাদের কী শেখায়?', '', 'storage/images\\19518.webp', 'করোনার সময়ে বাজারে মানুষের ভিড়', 'মহামারির সঙ্গে নিয়তি কিংবা অদৃষ্টের ওপর নির্ভর করার প্রবণতা বিশ্বজুড়ে অনেক আগে থেকেই লক্ষণীয়। সাধারণ অর্থে মানুষ যখন তার জীবনের কোনো ঘটনাকে এমন কোনো বিষয় দ্বারা পরিচালিত হতে দেখে, যেখানে তার কোনো নিয়ন্ত্রণ থাকে না, বিশেষত সেই অবস্থায় ব্যক্তি যখন বৃহত্তর শক্তির ওপর আস্থা রাখে, তাকে অদৃষ্টবাদ বা নিয়তিবাদ বলা হয়।\r\n\r\nপ্রাচ্যের সমাজব্যবস্থার সঙ্গে মধ্যযুগের ইউরোপের বিভিন্ন সমাজেও মহামারির সময়ে মানুষের মধ্যে অদৃষ্টের ওপর বিশ্বাস করার ব্যাপক প্রবণতা ছিল। সে সময়ে মহামারিকে বিভিন্নভাবে ব্যাখ্যা এবং বিশ্লেষণ করা হতো। এর মধ্যে একটি অন্যতম ব্যাখ্যা ছিল, মহামারিকে কৃতকর্মের শাস্তি হিসেবে দেখা। পাশাপাশি যারা এই মহামারির শিকার হতো, তাদের দেখা হতো সমাজের ঘৃণিত বা নিকৃষ্ট মানুষ হিসেবে। এ ধরনের আচরণ নানাবিধ সংক্রামক ব্যাধির ক্ষেত্রে অধিক হারে দেখা যেত। এ ক্ষেত্রে আমরা প্লেগ, স্প্যানিশ ফ্লু কিংবা আমাদের এই অঞ্চলের কলেরা রোগের কথা উল্লেখ করতে পারি। যেসব সংক্রামক ব্যাধির দীর্ঘ সময় ধরে কোনো চিকিৎসাব্যবস্থা ছিল না, সেসব ক্ষেত্রেই মানুষের মধ্যে অদৃষ্টের বা ভাগ্যের ওপর অধিক হারে নির্ভর করার প্রবণতা ছিল।', 0, 1, 1, '2020-08-05 07:34:55', '2020-08-05 07:35:13'),
(6, 5, 'আইপিএল আয়োজনে এবার কেবল ক্ষতিই', '', 'storage/images\\47066.webp', 'আইপিএল', 'অবশেষে অনেক সমালোচনা আর বিতর্কের পর আইপিএল থেকে সরে দাঁড়াচ্ছে চীনা মোবাইল ফোন প্রস্তুতকারী প্রতিষ্ঠান—ভিভো। গালোয়ান সংঘর্ষের পর ভারত-চীন কূটনৈতিক সম্পর্কের যে অবনতি আর তার ফলশ্রুতিতে গোটা ভারতজুড়ে যে চীনবিরোধী মনোভাব, তারই জেরে সরে যেতে হচ্ছে ভিভোকে। আপাতত চীনের এই প্রতিষ্ঠান সরে যাওয়ায় ভারতজুড়ে স্বস্তির হাওয়া থাকলেও এটি আইপিএলকে বড় ধরনের ক্ষতির মুখে ফেলছে।\r\n\r\n২০১৮ সালে ভিভোর সঙ্গে ভারতীয় ক্রিকেট বোর্ডের (বিসিসিআই) চুক্তি হয়। সে চুক্তি অনুযায়ী বিশ্বের সবচেয়ে বড় ও অর্থকরী ফ্র্যাঞ্চাইজি টি-টোয়েন্টি টুর্নামেন্টের টাইটেল স্পনসর হয় তারা। পাঁচ বছরের চুক্তিটি ছিল ২ হাজার ১৯৯ কোটি রুপির। করোনার এ সময়ে সংযুক্ত আরব আমিরাতে অনুষ্ঠেয় আইপিএল থেকে ভিভো সরে দাঁড়ানোয় এ বছরের জন্য নির্দিষ্ট অর্থটা পাচ্ছে না বিসিসিআই, ফলে এতে কেবল বিসিসিআইয়ের কোষাগারেই টান পড়ছে না, ক্ষতির মুখে পড়ছে আইপিএলে অংশগ্রহণকারী ফ্র্যাঞ্চাইজিগুলোও। ভিভো চলে যাওয়ায় ফ্র্যাঞ্চাইজিগুলোও যে লাভের ভাগ পাচ্ছে না।', 0, 1, 1, '2020-08-05 07:38:29', '2020-08-05 07:38:44'),
(7, 3, 'আগামী বছরের আগে টিকা নয়: ডব্লিউএইচও', '', 'storage/images\\44604.webp', 'টিকা', 'বিশ্বজুড়ে করোনাভাইরাস মহামারি পরিস্থিতি দিনে দিনে আরও খারাপ হচ্ছে। এখন সবার প্রত্যাশা একটি কার্যকর টিকা। এ জন্য চিকিৎসাবিজ্ঞানীরা কাজ করছেন দিন–রাত। অগ্রগতিও বেশ ভালো। বেশ কিছু টিকা পরীক্ষা–নিরীক্ষার প্রায় শেষ পর্যায়ে পৌঁছে গেছে। আগামী দু–তিন মাসের মধ্যে টিকা মানুষের হাতে তুলে দেওয়া সম্ভব হতে পারে বলে ঘোষণা দিয়েছে দু–তিনটি কোম্পানি। কিন্তু এরপরও সতর্ক বিশ্ব স্বাস্থ্য সংস্থা (ডব্লিউএইচও)। সংস্থাটি বলেছে, আগামী বছরের শুরুর দিকেই হয়তো কোনো টিকা ব্যবহারের উপযোগী হতে পারে। তার আগে এমন প্রত্যাশা না করাই ভালো।\r\n\r\nসুইজারল্যান্ডের জেনেভায় গত বুধবার বিশ্ব স্বাস্থ্য সংস্থার জরুরি পরিষেবা কর্মসূচির প্রধান মাইক রায়ান এমন সতর্কতার কথা বলেন। এ সময় তিনি আরও বলেন, করোনাভাইরাসের নিরাপদ ও কার্যকর টিকা উদ্ভাবনের পর তা সমহারে বণ্টন নিশ্চিত করতে বিশ্ব স্বাস্থ্য সংস্থা কাজ করে যাচ্ছে। তবে সেই টিকা আসার আগ পর্যন্ত সবচেয়ে জরুরি কাজ হলো ভাইরাসের সংক্রমণের লাগাম টেনে ধরা।', 0, 1, 1, '2020-08-05 20:30:38', '2020-08-05 20:30:38'),
(9, 3, 'মানচিত্র এবার জাতিসংঘ ও গুগলকে পাঠাচ্ছে নেপাল', '', 'storage/images\\40564.webp', 'নেপালের প্রধানমন্ত্রী কেপি শর্মা ওলি।', 'ভারত ও নেপালের মধ্যকার সম্পর্কে তিক্ততা দিনকে দিন বাড়ছে। সেই তিক্ততা সহজে মিটছে না। কারণ কালাপানি, লিপুলেখ ও লিম্পিয়াধুরাকে নিজেদের দাবি করে যে মানচিত্র প্রকাশ করেছিল নেপাল, সেটির ইংরেজি সংস্করণ জাতিসংঘ ও গুগলের কাছে পাঠাচ্ছে দেশটি।\r\n\r\nনেপালের স্থানীয় সংবাদমাধ্যমের বরাত দিয়ে ভারতের ‘ইন্ডিয়া টুডে’র খবরে এসব কথা বলা হয়েছে।', 0, 1, 1, '2020-08-05 20:33:21', '2020-08-05 20:33:21');
-- --------------------------------------------------------
--
-- Table structure for table `post_tag`
--
CREATE TABLE `post_tag` (
`id` bigint(20) UNSIGNED NOT NULL,
`post_id` int(11) NOT NULL,
`tag_id` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `post_tag`
--
INSERT INTO `post_tag` (`id`, `post_id`, `tag_id`, `created_at`, `updated_at`) VALUES
(2, 2, 4, '2020-08-05 07:25:24', '2020-08-05 07:25:24'),
(3, 3, 3, '2020-08-05 07:27:46', '2020-08-05 07:27:46'),
(4, 4, 3, '2020-08-05 07:30:43', '2020-08-05 07:30:43'),
(5, 5, 7, '2020-08-05 07:34:56', '2020-08-05 07:34:56'),
(6, 6, 2, '2020-08-05 07:38:30', '2020-08-05 07:38:30'),
(7, 7, 6, '2020-08-05 20:30:38', '2020-08-05 20:30:38'),
(8, 9, 6, '2020-08-05 20:33:21', '2020-08-05 20:33:21');
-- --------------------------------------------------------
--
-- Table structure for table `roles`
--
CREATE TABLE `roles` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `roles`
--
INSERT INTO `roles` (`id`, `name`, `slug`, `created_at`, `updated_at`) VALUES
(1, 'admin', 'admin', NULL, NULL),
(2, 'author', 'author', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `tags`
--
CREATE TABLE `tags` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `tags`
--
INSERT INTO `tags` (`id`, `name`, `slug`, `created_at`, `updated_at`) VALUES
(2, 'খেলা', '', '2020-08-05 07:09:10', '2020-08-05 07:09:10'),
(3, 'বিনোদন', '', '2020-08-05 07:09:29', '2020-08-05 07:09:29'),
(4, 'ফিচার', '', '2020-08-05 07:10:41', '2020-08-05 07:10:41'),
(5, 'শিক্ষা', '', '2020-08-05 07:11:31', '2020-08-05 07:11:31'),
(6, 'আন্তর্জাতিক', '', '2020-08-05 07:11:51', '2020-08-05 07:11:51'),
(7, 'বাংলাদেশ', '', '2020-08-05 07:12:06', '2020-08-05 07:12:06');
-- --------------------------------------------------------
--
-- Table structure for table `topposts`
--
CREATE TABLE `topposts` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`tag_id` bigint(20) UNSIGNED NOT NULL,
`category_id` bigint(20) UNSIGNED NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default.png',
`image_title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`body` text COLLATE utf8mb4_unicode_ci NOT NULL,
`view_count` int(11) NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '0',
`is_approved` tinyint(1) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `topposts`
--
INSERT INTO `topposts` (`id`, `user_id`, `tag_id`, `category_id`, `title`, `slug`, `image`, `image_title`, `body`, `view_count`, `status`, `is_approved`, `created_at`, `updated_at`) VALUES
(8, 2, 2, 2, 'মেসিকে কেনা এত কঠিন ইন্টারের জন্য', '', 'storage/images\\27910.webp', 'মেসি', 'দুজনের বয়স হয়েছে। তবু বিষয়টি ভাবতেই কেমন রোমাঞ্চ জাগে। আবার মাঠের লড়াইয়ে ক্রিস্টিয়ানো রোনালদোর মুখোমুখি লিওনেল মেসি। স্পেনে দীর্ঘ সময় এ দ্বৈরথে দেখা গেছে দুজনকে। ইতালিতেও কি দেখা যাবে?\r\n\r\nইন্টার মিলান কোচ আন্তনিও কন্তে আগেও একবার সম্ভাবনাটা উড়িয়ে দিয়েছেন। আরও একবার বাস্তবতা বোঝালেন কন্তে। তাঁর মতে, বার্সেলোনা থেকে মেসিকে ইন্টারে উড়িয়ে আনা মিলানের ডুয়োমো গির্জা স্থানান্তরের চেয়েও কঠিন কাজ!', 0, 1, 1, '2020-08-05 07:42:35', '2020-08-05 07:42:35'),
(9, 2, 3, 3, 'যুক্তরাষ্ট্রে দৃশ্যায়ন হয়েছে তনিমার গানের', '', 'storage/images\\11767.webp', 'তনিমা হাদী।', '‘পথের সাথী’ শিরোনামে রোমান্টিক ঘরানার একটি গান গেয়েছেন জনপ্রিয় কণ্ঠশিল্পী সৈয়দ আব্দুল হাদীর মেয়ে তনিমা হাদী। সেই গানের ভিডিওতে মডেল হয়েছেন তাঁরই স্বামী রাকিব হোসেন। যুক্তরাষ্ট্রের নিউ জার্সির বিভিন্ন জায়গায় বেশ কয়েকটি মনোরম লোকেশনে গানটির ভিডিও ধারণ করা হয়েছে।\r\n\r\nস্বামীর সঙ্গে যুক্তরাষ্ট্রের নিউইয়র্কে থাকেন তনিমা হাদী। গান ও গানটির ভিডিও প্রসঙ্গে প্রথম আলোকে তিনি বলেন, ‘আমি প্রতিবছরই একবার বাংলাদেশে যাই। বছর দুয়েক আগে বাংলাদেশে থাকা অবস্থায় গানটিতে কণ্ঠ দিয়েছিলাম। এরপর গত বছর অক্টোবর মাসের দিকে নিউ জার্সির সুন্দর সুন্দর জায়গায় গানটির ভিডিওটি ধারণ করা হয়েছে।’', 0, 1, 1, '2020-08-05 07:44:26', '2020-08-05 07:44:26'),
(10, 2, 7, 7, 'লড়াকু পাখি কালিম', '', 'storage/images\\32069.webp', 'মাথা উঁচু করে দাপটের সঙ্গে হাঁটছে কালিম।', '১৫ জুলাই নরসিংদীর সরওয়ার পাঠান মুঠোফোনে জানালেন, চার–পাঁচটি বুনো কালিম চরে বেড়াচ্ছে ডুমরি ঝিলে। চমৎকার ওই ঝিলে বেশ আমি কয়েকবারই গিয়েছি। ঝিলটা পড়েছে নরসিংদীর পলাশ ইউনিয়নের একটি গ্রামে। সরওয়ার বাংলাদেশ ওয়াইল্ড লাইফ ক্লাবের একজন সদস্য। এককালে ওয়াইল্ড লাইফ ফটোগ্রাফার ছিলেন। তাঁর তোলা বহু ছবি আমার বিভিন্ন বইয়ে ছেপেছি। তাঁর সঙ্গে শিবপুরে গিয়ে গৃহপালিত কালিমও দেখেছি। ছানাপোনাসমেত কালিম। পুরুষ ও স্ত্রী পাখি ছানাদের নিয়ে দিব্যি চরে বেড়াচ্ছে। দেশের আরও ১০–১২টি জেলায় আমার চোখে পড়েছে গৃহপালিত কালিম। আশ্চর্য! এমন দাপুটে লড়াকু পাখি পোষ মেনে গেল!\r\n\r\nকালিম মূলত জলাভূমি, বিলঝিল আর হাওরের পাখি। দলে চলে, দলে চরে। বিপদের গন্ধ পেলে জলজ আগাছা, নলখাগড়া আর ঝোপঝাড়ে লুকিয়ে যায়। প্রয়োজনে ঊর্ধ্বলাফে ৯–১০ ফুট পর্যন্ত উঁচুতে উঠে যেতে পারে। অল্প পানিতে দাপটের সঙ্গে হাঁটে। বুকভরা সাহস এদের, চোখভরা রোষ। কোয়াক কোয়াক শব্দে ডাকাডাকি করে। লড়াইয়ের সময় এদের হাঁকাহাঁকি প্রবল।', 0, 1, 1, '2020-08-05 07:47:01', '2020-08-05 07:47:01');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`role_id` int(11) NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default.png',
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `role_id`, `name`, `email`, `email_verified_at`, `password`, `image`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 1, 'Md.admin', '<EMAIL>', NULL, '$2y$10$VvZL9iIhZk0OIZBMMPclPeJPDZz4CY1.XGwjv4MyeIKc4sEkQsapG', 'default.png', NULL, NULL, NULL),
(2, 1, 'Md.shoriful', '<EMAIL>', NULL, '$2y$10$P/8ENT19qKQDA9fpyHg6oOSpgvQPXEZoin6HcflPOVh1o9gQ9bYI.', 'default.png', NULL, NULL, NULL),
(3, 1, 'Md.Shojib', '<EMAIL>', NULL, '$2y$10$7WIV/n9Azt6Io83hsj91xOQJltrR74UUru0WRK7SH.m1VDYvuZAKi', 'default.png', NULL, NULL, NULL),
(4, 1, 'Md.Tamanna', '<EMAIL>', NULL, '$2y$10$6.TrA6Sm2X8zNYw9O3M9PuIf4yGYtR8C7A0OoGnOpF9iKZXeuOQ7q', 'default.png', NULL, NULL, NULL),
(5, 2, 'Md.author', '<EMAIL>', NULL, '$2y$10$MA11CQuxjTXXM0KdiAoVLOoZIF7r717gk4roPCBW5VspUqomU0E3m', 'default.png', NULL, NULL, NULL),
(6, 2, 'Md.robin', '<EMAIL>', NULL, '$2y$10$RQe/CpFq2fluyefhNrR/J.qyCVkzRMHGW9a694R19BjTPc6RERFXi', 'default.png', NULL, NULL, NULL),
(7, 2, 'Md.rony', '<EMAIL>', NULL, '$2y$10$5/gL6yXaWP3aI043Mc8CGu4bQpt18r4e5SL1X.0HT/sAhnIq8VMxe', 'default.png', NULL, NULL, NULL),
(8, 2, 'Md.rocky', '<EMAIL>', NULL, '$2y$10$9N2eLsoBeDsIfg7Far68luxe.8qYTkj5QYIc/SDoUZIHPL/RIXiHe', 'default.png', NULL, NULL, NULL);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `categories`
--
ALTER TABLE `categories`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `category_post`
--
ALTER TABLE `category_post`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indexes for table `posts`
--
ALTER TABLE `posts`
ADD PRIMARY KEY (`id`),
ADD KEY `posts_user_id_foreign` (`user_id`);
--
-- Indexes for table `post_tag`
--
ALTER TABLE `post_tag`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `roles`
--
ALTER TABLE `roles`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tags`
--
ALTER TABLE `tags`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `topposts`
--
ALTER TABLE `topposts`
ADD PRIMARY KEY (`id`),
ADD KEY `topposts_user_id_foreign` (`user_id`),
ADD KEY `topposts_tag_id_foreign` (`tag_id`),
ADD KEY `topposts_category_id_foreign` (`category_id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `categories`
--
ALTER TABLE `categories`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `category_post`
--
ALTER TABLE `category_post`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `posts`
--
ALTER TABLE `posts`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `post_tag`
--
ALTER TABLE `post_tag`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `roles`
--
ALTER TABLE `roles`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `tags`
--
ALTER TABLE `tags`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `topposts`
--
ALTER TABLE `topposts`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `posts`
--
ALTER TABLE `posts`
ADD CONSTRAINT `posts_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `topposts`
--
ALTER TABLE `topposts`
ADD CONSTRAINT `topposts_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `topposts_tag_id_foreign` FOREIGN KEY (`tag_id`) REFERENCES `tags` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `topposts_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
-- https://en.wikipedia.org/wiki/List_of_regions_of_the_United_States
-- https://www.usatoday.com/story/money/2019/08/01/economic-growth-by-state-gdp-fastest-growing-shrinking-economies/39822123/
--
-- UPDATE us_state set area_rank = 1, fed_area = 1, area_sq_mi = 570641 where state_name = 'Alaska';
-- UPDATE us_state set area_rank = 2, fed_area = 1, area_sq_mi = 261914 where state_name = 'Texas';
-- UPDATE us_state set area_rank = 3, fed_area = 12, area_sq_mi = 155973 where state_name = 'California';
-- UPDATE us_state set area_rank = 4, fed_area = 1, area_sq_mi = 145556 where state_name = 'Montana';
-- UPDATE us_state set area_rank = 5, fed_area = 1, area_sq_mi = 121365 where state_name = 'New Mexico';
-- UPDATE us_state set area_rank = 6, fed_area = 12, area_sq_mi = 113642 where state_name = 'Arizona';
-- UPDATE us_state set area_rank = 7, fed_area = 12, area_sq_mi = 109806 where state_name = 'Nevada';
-- UPDATE us_state set area_rank = 8, fed_area = 1, area_sq_mi = 103730 where state_name = 'Colorado';
-- UPDATE us_state set area_rank = 9, fed_area = 1, area_sq_mi = 97105 where state_name = 'Wyoming';
-- UPDATE us_state set area_rank = 10, fed_area = 12, area_sq_mi = 96003 where state_name = 'Oregon';
-- UPDATE us_state set area_rank = 11, fed_area = 12, area_sq_mi = 82751 where state_name = 'Idaho';
-- UPDATE us_state set area_rank = 12, fed_area = 12, area_sq_mi = 82168 where state_name = 'Utah';
-- UPDATE us_state set area_rank = 13, fed_area = 1, area_sq_mi = 81823 where state_name = 'Kansas';
-- UPDATE us_state set area_rank = 14, fed_area = 1, area_sq_mi = 79617 where state_name = 'Minnesota';
-- UPDATE us_state set area_rank = 15, fed_area = 1, area_sq_mi = 76878 where state_name = 'Nebraska';
-- UPDATE us_state set area_rank = 16, fed_area = 1, area_sq_mi = 75898 where state_name = 'South Dakota';
-- UPDATE us_state set area_rank = 17, fed_area = 1, area_sq_mi = 68994 where state_name = 'North Dakota';
-- UPDATE us_state set area_rank = 18, fed_area = 1, area_sq_mi = 68898 where state_name = 'Missouri';
-- UPDATE us_state set area_rank = 19, fed_area = 1, area_sq_mi = 68679 where state_name = 'Oklahoma';
-- UPDATE us_state set area_rank = 20, fed_area = 12, area_sq_mi = 66582 where state_name = 'Washington';
-- UPDATE us_state set area_rank = 21, fed_area = 1, area_sq_mi = 57919 where state_name = 'Georgia';
-- UPDATE us_state set area_rank = 22, fed_area = 1, area_sq_mi = 56539 where state_name = 'Michigan';
-- UPDATE us_state set area_rank = 23, fed_area = 1, area_sq_mi = 55875 where state_name = 'Iowa';
-- UPDATE us_state set area_rank = 24, fed_area = 1, area_sq_mi = 55593 where state_name = 'Illinois';
-- UPDATE us_state set area_rank = 25, fed_area = 1, area_sq_mi = 54314 where state_name = 'Wisconsin';
-- UPDATE us_state set area_rank = 26, fed_area = 1, area_sq_mi = 53997 where state_name = 'Florida';
-- UPDATE us_state set area_rank = 27, fed_area = 1, area_sq_mi = 52075 where state_name = 'Arkansas';
-- UPDATE us_state set area_rank = 28, fed_area = 1, area_sq_mi = 50750 where state_name = 'Alabama';
-- UPDATE us_state set area_rank = 29, fed_area = 1, area_sq_mi = 48718 where state_name = 'North Carolina';
-- UPDATE us_state set area_rank = 30, fed_area = 1, area_sq_mi = 47224 where state_name = 'New York';
-- UPDATE us_state set area_rank = 31, fed_area = 1, area_sq_mi = 46914 where state_name = 'Mississippi';
-- UPDATE us_state set area_rank = 32, fed_area = 1, area_sq_mi = 44820 where state_name = 'Pennsylvania';
-- UPDATE us_state set area_rank = 33, fed_area = 1, area_sq_mi = 43566 where state_name = 'Louisiana';
-- UPDATE us_state set area_rank = 34, fed_area = 1, area_sq_mi = 41220 where state_name = 'Tennessee';
-- UPDATE us_state set area_rank = 35, fed_area = 1, area_sq_mi = 40953 where state_name = 'Ohio';
-- UPDATE us_state set area_rank = 36, fed_area = 1, area_sq_mi = 39732 where state_name = 'Kentucky';
-- UPDATE us_state set area_rank = 37, fed_area = 1, area_sq_mi = 39598 where state_name = 'Virginia';
-- UPDATE us_state set area_rank = 38, fed_area = 1, area_sq_mi = 35870 where state_name = 'Indiana';
-- UPDATE us_state set area_rank = 39, fed_area = 1, area_sq_mi = 30865 where state_name = 'Maine';
-- UPDATE us_state set area_rank = 40, fed_area = 1, area_sq_mi = 30111 where state_name = 'South Carolina';
-- UPDATE us_state set area_rank = 41, fed_area = 1, area_sq_mi = 24087 where state_name = 'West Virginia';
-- UPDATE us_state set area_rank = 42, fed_area = 1, area_sq_mi = 9775 where state_name = 'Maryland';
-- UPDATE us_state set area_rank = 43, fed_area = 1, area_sq_mi = 9249 where state_name = 'Vermont';
-- UPDATE us_state set area_rank = 44, fed_area = 1, area_sq_mi = 8969 where state_name = 'New Hampshire';
-- UPDATE us_state set area_rank = 45, fed_area = 1, area_sq_mi = 7838 where state_name = 'Massachusetts';
-- UPDATE us_state set area_rank = 46, fed_area = 1, area_sq_mi = 7419 where state_name = 'New Jersey';
-- UPDATE us_state set area_rank = 47, fed_area = 1, area_sq_mi = 6423 where state_name = 'Hawaii';
-- UPDATE us_state set area_rank = 48, fed_area = 1, area_sq_mi = 4845 where state_name = 'Connecticut';
-- UPDATE us_state set area_rank = 49, fed_area = 1, area_sq_mi = 3515 where state_name = 'Puerto Rico';
-- UPDATE us_state set area_rank = 50, fed_area = 1, area_sq_mi = 1955 where state_name = 'Delaware';
-- UPDATE us_state set area_rank = 51, fed_area = 1, area_sq_mi = 1034 where state_name = 'Rhode Island';
-- UPDATE us_state set area_rank = 52, fed_area = 1, area_sq_mi = 137 where state_name = 'District of Columbia';
-- UPDATE us_state set area_rank = 53, fed_area = 1, area_sq_mi = 68 where state_name = 'Virgin Islands';
--
-- Rank State July 2019 Estimate Percent of Total
-- 1 California 39,512,223 11.91%
-- 2 Texas 28,995,881 8.74%
-- 3 Florida 21,477,737 6.47%
-- 4 New York 19,453,561 5.86%
-- 5 Illinois 12,671,821 3.86%
-- 6 Pennsylvania 12,801,989 3.82%
-- 7 Ohio 11,689,100 3.52%
-- 8 Georgia 10,617,423 3.20%
-- 9 North Carolina 10,488,084 3.16%
-- 10 Michigan 9,986,857 3.01%
-- 11 New Jersey 8,882,190 2.68%
-- 12 Virginia 8,535,519 2.57%
-- 13 Washington 7,614,893 2.29%
-- 14 Arizona 7,278,717 2.19%
-- 15 Massachusetts 6,949,503 2.09%
-- 16 Tennessee 6,833,174 2.06%
-- 17 Indiana 6,732,219 2.03%
-- 18 Missouri 6,137,428 1.85%
-- 19 Maryland 6,045,680 1.82%
-- 20 Wisconsin 5,822,434 1.75%
-- 21 Colorado 5,758,736 1.74%
-- 22 Minnesota 5,639,632 1.70%
-- 23 South Carolina 5,148,714 1.55%
-- 24 Alabama 4,903,185 1.48%
-- 25 Louisiana 4,648,794 1.40%
-- 26 Kentucky 4,467,673 1.35%
-- 27 Oregon 4,217,737 1.27%
-- 28 Oklahoma 3,956,971 1.19%
-- 29 Connecticut 3,565,287 1.07%
-- 30 Utah 3,205,958 0.97%
-- 31 Iowa 3,155,070 0.95%
-- 32 Nevada 3,080,156 0.93%
-- 33 Arkansas 3,017,825 0.91%
-- 34 Mississippi 2,976,149 0.90%
-- 35 Kansas 2,913,314 0.88%
-- 36 New Mexico 2,096,829 0.63%
-- 37 Nebraska 1,934,408 0.58%
-- 38 West Virginia 1,792,147 0.54%
-- 39 Idaho 1,787,065 0.54%
-- 40 Hawaii 1,415,872 0.43%
-- 41 New Hampshire 1,359,711 0.41%
-- 42 Maine 1,344,212 0.41%
-- 43 Montana 1,068,778 0.32%
-- 44 Rhode Island 1,059,361 0.32%
-- 45 Delaware 973,764 0.29%
-- 46 South Dakota 884,659 0.27%
-- 47 North Dakota 762,062 0.23%
-- 48 Alaska 731,545 0.22%
-- 49 DC 705,749 0.21%
-- 50 Vermont 623,989 0.19%
-- 51 Wyoming 578,759 0.17%
--
# Interactive - 44 - create rule
https://www.postgresql.org/docs/9.2/sql-createrule.html
| Operator | Description |
|:--------:|-------------------------------------------------------------------------------------------------------------------------------------|
| `->` | Get JSON array element (indexed from zero, negative integers count from the end) |
| `->` | Get JSON object field by key |
| `->>` | Get JSON array element as text |
| `->>` | Get JSON object field as text |
| `#>` | Get JSON object at the specified path |
| `#>>` | Get JSON object at the specified path as text |
| `@>` | Does the left JSON value contain the right JSON path/value entries at the top level? |
| `<@` | Are the left JSON path/value entries contained at the top level within the right JSON value? |
| `?` | Does the string exist as a top-level key within the JSON value? |
| `?|` | Do any of these array strings exist as top-level keys? |
| `?&` | Do all of these array strings exist as top-level keys? |
| `||` | Concatenate two JSONb values into a new JSONb value |
| `-` | Delete key/value pair or string element from left operand. Key/value pairs are matched based on their key value. |
| `-` | Delete multiple key/value pairs or string elements from left operand. Key/value pairs are matched based on their key value. |
| `-` | Delete the array element with specified index (Negative integers count from the end). Throws an error if top level container is not an array. |
| `#-` | Delete the field or element with specified path (for JSON arrays, negative integers count from the end) |
| `@?` | Does JSON path return any item for the specified JSON value? |
| `@@` | Returns the result of JSON path predicate check for the specified JSON value. Only the first item of the result is taken into account. If the result is not Boolean, then null is returned. |
-- fmt.Printf("insert into ct_val_homework ( val_id, lesson_name, val_type, val_data ) values ( '%s', %d, '%s', '%s' );\n", t1, nno, u[0], u[1])
DROP TABLE ct_val_homework ;
CREATE TABLE ct_val_homework (
val_id uuid not null primary key,
lesson_name int not null,
val_type text not null,
val_data text not null
);
-- fmt.Printf("insert into ct_file_list ( file_list_uuid, lesson_name, file_name ) values ( '%s', %d, '%s' );\n", t1, nno, u[0])
DROP TABLE ct_file_list ;
CREATE TABLE ct_file_list (
file_list_id uuid not null primary key,
lesson_name int not null,
file_name text not null
);
|
# update arrear_record
# natural join equipment
# set amount =
# if(year(edit_time) = year(curdate()),
# amount + datediff(now(), edit_time) * principal * if(category = "01", cast((select val
# from code
# where name = "normal_same") as decimal(
# 10, 6)), cast((select val
# from code
# where name =
# "normal_diff") as
# decimal(10, 6))),
# amount + datediff(now(), edit_time) * principal * if(category = "01", cast((select val
# from code
# where name = "company_same") as
# decimal(10, 6)), cast((select val
# from code
# where name =
# "company_diff")
# as decimal(10, 6)))),
# edit_time = now()
# where date(edit_time) != curdate() and datediff(now(), create_time) > 30 and amount !=0;
#
select *
from (select sum(arrear_record.amount) 应缴金额
from arrear_record
where arrear_record.amount > 0) inmoney natural join (select ifnull(sum(serial.amount), 0) 实缴金额
from serial
join payment_record record on serial.serial_id = record.serial_number
where
date(serial.time) = date(now()) and is_edit = 0) outmoney;
|
-- phpMyAdmin SQL Dump
-- version 4.8.3
-- https://www.phpmyadmin.net/
--
-- Host: 1192.168.3.11
-- Generation Time: Feb 23, 2019 at 09:26 AM
-- Server version: 10.1.36-MariaDB
-- PHP Version: 7.2.10
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `hasansutanto`
--
-- --------------------------------------------------------
--
-- Table structure for table `about`
--
CREATE TABLE `about` (
`id` int(11) NOT NULL,
`lang` varchar(2) NOT NULL,
`name` text NOT NULL,
`description` text NOT NULL,
`content` text NOT NULL,
`status` tinyint(4) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `about`
--
INSERT INTO `about` (`id`, `lang`, `name`, `description`, `content`, `status`) VALUES
(1, 'en', '<NAME>, D.Th', '<NAME> was a full-time lecturer at the Southeast Asia Bible Seminary in Malang, Indonesia, and at the Trinity Theological College, Singapore. Presently, in addition to research and writing, he also actively preaches at numerous churches. He was ordained as a pastor in 1987', '<NAME>, D.Th., is working to facilitate Christians in building their faith, ministries, and lives based on Biblical teachings. He is also passionate about providing Indonesian’s theological education with books written in their native language at affordable prices. ', 1),
(2, 'id', 'Pdt. <NAME>, D.Th', 'Pdt. <NAME> pernah mengajar sebagai dosen penuh waktu di Seminari Alkitab Asia Tenggara, Malang, Indonesia, dan Trinity Theological College, Singapura. Kini, selain tekun mengadakan riset dan menulis, Pdt. <NAME> juga meluangkan waktu untuk pelayanan berkhotbah. Beliau ditahbiskan menjadi pendeta pada tahun 1987.', 'Pdt. <NAME>, <NAME>., berbeban mengajak orang Kristen membangun iman, pelayanan dan kehidupan mereka berdasarkan ajaran Alkitab. Beliau juga berbeban meningkatkan mutu pendidikan teologis di Indonesia dengan cara menyediakan buku-buku yang ditulis dengan bahasa yang dikuasai pembaca dan dengan harga yang terjangkau', 1);
-- --------------------------------------------------------
--
-- Table structure for table `contactus`
--
CREATE TABLE `contactus` (
`id` int(11) NOT NULL,
`namatempat` varchar(110) NOT NULL,
`alamat` text NOT NULL,
`kabupaten` varchar(100) NOT NULL,
`kodepos` int(11) NOT NULL,
`telp` varchar(15) NOT NULL,
`fax` varchar(15) NOT NULL,
`email` varchar(100) NOT NULL,
`versi` int(11) NOT NULL,
`status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `contactus`
--
INSERT INTO `contactus` (`id`, `namatempat`, `alamat`, `kabupaten`, `kodepos`, `telp`, `fax`, `email`, `versi`, `status`) VALUES
(1, 'Departemen Literatur SAAT', 'Jln. Anggrek Merpati No. 12\r\n', 'Malang ', 65141, '0341-490750', '0341-494129', '<EMAIL>', 1, 1);
-- --------------------------------------------------------
--
-- Table structure for table `content`
--
CREATE TABLE `content` (
`id` int(11) NOT NULL,
`lang` varchar(2) NOT NULL,
`page` text NOT NULL,
`section` varchar(50) NOT NULL,
`elemen` varchar(50) NOT NULL,
`sequence` int(11) NOT NULL,
`content` text NOT NULL,
`status` tinyint(4) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `content`
--
INSERT INTO `content` (`id`, `lang`, `page`, `section`, `elemen`, `sequence`, `content`, `status`) VALUES
(1, 'en', 'home', 'banner', 'smallheader', 1, 'TIM IKHLAS MENGABDI', 1),
(2, 'en', 'home', 'banner', 'smallheader', 2, 'TIM is an informal fellowship formed by several laymen Christians, who shared Rev. <NAME>, D.Th.’s calling of ministering to Indonesian seminarians by providing reference books offered with subsidies.', 1),
(3, 'en', 'home', 'banner', 'header', 1, 'TIM', 1),
(5, 'en', 'home', 'support', 'header', 1, 'WHAT ARE WE DOING', 1),
(6, 'en', 'home', 'support', 'header', 2, 'facilitate Christians in building their faith, ministries, and lives based on Biblical teachings', 1),
(20, 'en', 'home', 'about-continue', 'header', 1, 'Academic Background', 1),
(21, 'en', 'home', 'about-continue', 'header', 2, 'Ministry Background', 1),
(22, 'en', 'home', 'about-continue', 'header', 3, 'Subjects Taught', 1),
(23, 'en', 'home', 'about-continue', 'header', 4, 'Research', 1),
(24, 'en', 'home', 'about-continue', 'header', 5, 'Publications in Indonesian', 1),
(25, 'en', 'home', 'about-continue', 'header', 6, 'Translations into Indonesian', 1),
(26, 'en', 'home', 'about-continue', 'header', 7, 'Language', 1),
(51, 'en', 'home', 'about-continue-detail', 'content', 1, '<NAME>, What Christ Thinks of the Church. Indonesian title: Bagaimana Pandangan Kristus akan Gereja? 1988, 142 pages.\r\n', 1),
(52, 'en', 'home', 'about-continue-detail', 'content', 2, 'Derek & <NAME>, Building with Bananas. Indonesian title: Membangun dengan Pisang:Masalah Antara Manusia dalam Gereja, 1989, 171 pages.', 1),
(59, 'en', 'footer', 'about-us', 'content', 1, 'Rev. <NAME>, D.Th., is working to facilitate Christians in building their faith, ministries, and lives based on Biblical teachings. He is also passionate about providing Indonesian’s theological education with books written in their native language at affordable prices. ', 1),
(60, 'en', 'distributions', 'distributions-content-section', 'content', 1, 'All Pdt. Hasan Sutanto, D.Th.\'s creations can be bought in stores spread in Indonesia. TIM also gives special prices student who is currently studying in seminary. Terms and condition can be read below. All the orders can be make through our email', 1),
(61, 'en', 'distributions', 'distributions-content-section', 'content', 2, '<EMAIL>', 1),
(68, 'id', 'home', 'banner', 'smallheader', 2, 'TIM adalah sebuah persekutuan informal yang dibentuk oleh beberapa orang Kristen yang mendukung pelayanan Pdt. Hasan Sutanto di bidang riset dan penulisan.<br/> Dukungan ini termasuk memberi subsidi kepada mahasiswa/i teologi, yang sedang studi di Indonesia, untuk memesan buku-buku beliau.', 1),
(69, 'id', 'home', 'banner', 'smallheader', 1, 'TIM IKHLAS MENGABDI', 1),
(70, 'id', 'home', 'banner', 'header', 1, 'TIM', 1),
(71, 'id', 'home', 'support', 'header', 1, 'YANG KAMI KERJAKAN', 1),
(72, 'id', 'home', 'support', 'header', 2, 'memfasilitasi Orang Kristen dalam membangun iman, pelayanan, dan kehidupan mereka berdasarkan pengajaran Alkitab', 1),
(73, 'id', 'distributions', 'distributions-content-section', 'content', 1, 'Buku-buku yang ditulis Pdt. Hasan Sutanto, D.Th. dapat dibeli di toko-toko buku di Indonesia. Selain diedarkan dengan harga biasa, TIM memberikan subsidi kepada mahasiswa/i teologi yang sedang studi di sekolah tinggi teologi, seminari, dan sekolah Alkitab.\r\nPemesanan edisi harga khusus ini perlu memenuhi persyaratan tertentu . (Silakan membaca persyaratan yang tercantum di bawah). <br/><br/> Pemesanan buku baik yang berharga biasa maupun yang berharga khusus dapat dilakukan langsung kepada TIM melalui email ', 1),
(74, 'id', 'distributions', 'distributions-content-section', 'content', 2, '<EMAIL>', 1),
(75, 'id', 'home', 'about-continue', 'header', 1, 'Latar Belakang Pendidikan', 1),
(76, 'id', 'home', 'about-continue', 'header', 2, 'Latar Belakang Pelayanan', 1),
(77, 'id', 'home', 'about-continue', 'header', 3, 'Materi yang Diajarkan', 1),
(78, 'id', 'home', 'about-continue', 'header', 4, 'Penelitian', 1),
(79, 'id', 'home', 'about-continue', 'header', 5, 'Publikasi dalam Bahasa Indonesia', 1),
(80, 'id', 'home', 'about-continue', 'header', 6, 'Terjemahan ke Indonesia', 1),
(82, 'id', 'home', 'about-continue', 'header', 7, 'Bahasa', 1);
-- --------------------------------------------------------
--
-- Table structure for table `education`
--
CREATE TABLE `education` (
`id` int(11) NOT NULL,
`lang` varchar(2) NOT NULL,
`degree` varchar(100) NOT NULL,
`university` text NOT NULL,
`start_year` int(11) NOT NULL,
`end_year` int(11) NOT NULL,
`status` tinyint(4) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `education`
--
INSERT INTO `education` (`id`, `lang`, `degree`, `university`, `start_year`, `end_year`, `status`) VALUES
(1, 'en', 'D. Th', 'South East Asia Graduate School of Theology', 2001, 2006, 1),
(2, 'en', '<NAME>', 'Princeton Theological Seminary', 1983, 1984, 1),
(3, 'en', '<NAME>', 'New Brunswick Theological Seminary', 1982, 1983, 1),
(4, 'id', '<NAME>', 'New Brunswick Theological Seminary', 1982, 1983, 1),
(5, 'id', '<NAME>', 'South East Asia Graduate School of Theology', 2001, 2006, 1),
(6, 'id', '<NAME>', 'Princeton Theological Seminary', 1983, 1984, 1),
(7, 'id', 'M.A. di bidang Agama', 'Azusa Pacific University', 1979, 1980, 1),
(8, 'en', 'M.A. in Religion', 'Azusa Pacific University', 1978, 1979, 1),
(9, 'en', 'M.A. in Religion', 'Azusa Pacific University', 1979, 1980, 1),
(10, 'id', '<NAME> bidang Agama', 'Azusa Pacific University', 1978, 1979, 1),
(11, 'id', '<NAME>', 'Seminari Alkitab Asia Tenggara', 1973, 1977, 1),
(12, 'en', '<NAME>', 'South East Asia Bible Seminary', 1973, 1977, 1);
-- --------------------------------------------------------
--
-- Table structure for table `faq`
--
CREATE TABLE `faq` (
`id` int(11) NOT NULL,
`page` varchar(100) NOT NULL,
`elemen` varchar(100) NOT NULL,
`sequence` int(11) NOT NULL,
`versi` int(11) NOT NULL,
`content` text NOT NULL,
`status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `faq`
--
INSERT INTO `faq` (`id`, `page`, `elemen`, `sequence`, `versi`, `content`, `status`) VALUES
(1, 'home', 'answer', 1, 1, 'For many of us, our very first experience of learning about the celestial bodies begins when we saw our first full moon in the sky. It is truly a magnificent view even to the naked eye. If the night is clear, you can see amazing detail of the lunar surface just star gazing on in your back yard.', 1),
(2, 'home', 'answer', 2, 1, 'For many of us, our very first experience of learning about the celestial bodies begins when we saw our first full moon in the sky. It is truly a magnificent view even to the naked eye. If the night is clear, you can see amazing detail of the lunar surface just star gazing on in your back yard.', 1),
(3, 'home', 'answer', 3, 1, 'For many of us, our very first experience of learning about the celestial bodies begins when we saw our first full moon in the sky. It is truly a magnificent view even to the naked eye. If the night is clear, you can see amazing detail of the lunar surface just star gazing on in your back yard.', 1),
(4, 'home', 'answer', 4, 1, 'For many of us, our very first experience of learning about the celestial bodies begins when we saw our first full moon in the sky. It is truly a magnificent view even to the naked eye. If the night is clear, you can see amazing detail of the lunar surface just star gazing on in your back yard.', 1);
-- --------------------------------------------------------
--
-- Table structure for table `language`
--
CREATE TABLE `language` (
`id` int(11) NOT NULL,
`lang` varchar(2) NOT NULL,
`bahasa` varchar(200) NOT NULL,
`status` tinyint(4) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `language`
--
INSERT INTO `language` (`id`, `lang`, `bahasa`, `status`) VALUES
(1, 'id', 'Bahasa Indonesia', 1),
(2, 'id', 'Tionghoa', 1),
(3, 'id', 'Inggris', 1),
(4, 'id', 'Hokian', 1),
(5, 'id', 'Hakka', 1),
(6, 'en', 'Indonesian', 1),
(7, 'en', 'Mandarin', 1),
(8, 'en', 'English', 1),
(9, 'en', 'Hokian', 1),
(10, 'en', 'Hakka', 1);
-- --------------------------------------------------------
--
-- Table structure for table `menu`
--
CREATE TABLE `menu` (
`id` int(11) NOT NULL,
`lang` varchar(2) NOT NULL,
`nama` varchar(100) NOT NULL,
`links` varchar(100) NOT NULL,
`status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `menu`
--
INSERT INTO `menu` (`id`, `lang`, `nama`, `links`, `status`) VALUES
(1, 'en', 'home', 'index', 1),
(2, 'en', 'cv', 'aboutus', 1),
(3, 'en', 'publications', 'projects', 1),
(4, 'en', 'distribution', 'distribution', 1),
(5, 'en', 'sermons', 'sermons', 1),
(6, 'en', 'contact us', 'contact', 1),
(7, 'id', 'beranda', 'index', 1),
(8, 'id', 'cv', 'aboutus', 1),
(9, 'id', '<NAME>', 'projects', 1),
(10, 'id', 'distribusi', 'distribution', 1),
(11, 'id', 'khotbah', 'sermons', 1),
(12, 'id', 'hubungi kami', 'contact', 1);
-- --------------------------------------------------------
--
-- Table structure for table `message`
--
CREATE TABLE `message` (
`id` int(11) NOT NULL,
`nama` varchar(200) NOT NULL,
`email` varchar(200) NOT NULL,
`notelp` varchar(200) NOT NULL,
`message` text NOT NULL,
`tglsubmit` date NOT NULL,
`status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `message`
--
INSERT INTO `message` (`id`, `nama`, `email`, `notelp`, `message`, `tglsubmit`, `status`) VALUES
(1, 'jn', '<EMAIL>', '1', 'eawfawef', '2018-10-20', 1),
(2, 'test23', '<EMAIL>', '12321', 'awefwaefa', '2018-10-20', 1),
(3, 'awefawef', '<EMAIL>', '324234234', 'aewfawefawefawef', '2018-10-20', 1);
-- --------------------------------------------------------
--
-- Table structure for table `ministry`
--
CREATE TABLE `ministry` (
`id` int(11) NOT NULL,
`lang` varchar(2) NOT NULL,
`job` text NOT NULL,
`place` text NOT NULL,
`city` varchar(200) NOT NULL,
`start_year` int(11) NOT NULL,
`end_year` int(11) NOT NULL,
`status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `ministry`
--
INSERT INTO `ministry` (`id`, `lang`, `job`, `place`, `city`, `start_year`, `end_year`, `status`) VALUES
(1, 'en', 'Lecturer', 'Trinity Theological College', 'Singapore', 2007, 2010, 1),
(2, 'id', 'Dosen purna waktu', 'Trinity Theological College', 'Singapore', 2007, 2010, 1),
(3, 'id', 'Dosen purna waktu', 'Seminari Alkitab Asia Tenggara', 'Malang', 1984, 1995, 1),
(5, 'en', 'Lecturer', 'South East Asia Bible Seminary', 'Malang', 1984, 1995, 1),
(6, 'en', 'Associate Pastor', 'the Jakarta Christian Church', 'Malang', 1980, 1980, 1),
(7, 'id', 'Guru Injil', 'Gereja Kristen Jakarta', 'Jakarta', 1980, 1981, 1),
(8, 'id', 'Guru Injil', 'Gereja Persekutuan Kristen', 'Pangkalpinang', 1977, 1978, 1),
(9, 'en', 'Associate Pastor', 'Christian Fellowship Church', 'Pangkalpinang', 1977, 1978, 1),
(10, 'en', 'Joint work with the Indonesian Bible Society in translating and compiling Interlinear Greek-Indonesian New Testament and New Testament Concordance (Vol. I, II), ', '', '', 1995, 2003, 1),
(11, 'id', 'Bekerja sama dengan Lembaga Alkitab Indonesia menerjemah dan menyusun Perjanjian Baru Interlinear Yunani-Indonesia dan Konkordansi Perjanjian Baru (PBIK), Vol. I, II ', '', '', 1995, 2003, 1),
(12, 'id', 'Perjanjian Baru Interlinear Yunani-Tionghoa dan Konkordansi Perjanjian Baru', '', '', 2010, 2017, 1),
(13, 'id', 'Chinese Evangelical Church Highland Park', 'New Jersey, USA', '', 1982, 1984, 1),
(15, 'en', 'Chinese Evangelical Church Highland Park', 'New Jersey, USA', '', 1982, 1984, 1),
(16, 'en', 'Interlinear Greek-Chinese New Testament and New Testament Concordance ', '', '', 2010, 2017, 1);
-- --------------------------------------------------------
--
-- Table structure for table `products`
--
CREATE TABLE `products` (
`id` int(11) NOT NULL,
`lang` varchar(2) NOT NULL,
`materi` varchar(100) NOT NULL,
`image` varchar(100) NOT NULL,
`judul` varchar(100) NOT NULL,
`desk_singkat` text NOT NULL,
`deskripsi` text NOT NULL,
`harga` int(11) NOT NULL,
`harga_promo` int(11) NOT NULL,
`status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `products`
--
INSERT INTO `products` (`id`, `lang`, `materi`, `image`, `judul`, `desk_singkat`, `deskripsi`, `harga`, `harga_promo`, `status`) VALUES
(1, 'en', 'Hermeneutic: Principles and Methods of Interpretation of the Bible', 'hermeneutik.jpg', 'Hermeneutic: Principles and Methods of Interpretation of the Bible', '', 'Christians must understand the Bible, which is the foundation of their faith, theology, moral and lives. Hence, they have to learn how to interpret the Bible. Hermeneutic: Principles and Methods of Interpretation of the Bible, which is written in Indonesian, include a variety of topics that are essential for an interpreter. This book is written in plain language, elaborated with detailed explanations, various examples, and a complemented with detailed footnotes. With a conservative stance and an open attitude to recent interpretation, this book is useful for any preachers, Sunday School teachers, students at seminaries, and also any Christians who long to know God’s word.', 66000, 37500, 1),
(2, 'en', 'Interlinear Greek-Indonesian New Testament and New Testament Concordance (PBIK-Indonesia)', 'pbikedited.jpg', 'Interlinear Greek-Indonesian New Testament and New Testament Concordance (Indonesia)', '', 'This version consists of two volumes. Every page of the first volume has seven sets of data. The first four sets of data have been arranged in four rows, namely the New Testament (NT) Greek (Fourth Revised Edition), an interlinear translation (word for word), concordance entry numbers, and abbreviations related to various grammatical fields. The other three sets of data are Indonesian New Translation (TB), Indonesian Daily Language Version (BIS), and The Holy Bible, New International Version (NIV). The second volume consists of entry number, entry, of its transliteration, frequency in the New Testament, meaning, and in some cases its brief information. Then, quotations are based on the Greek New Testament word from Indonesian New Translation. This two volume-book of Interlinear Greek-Indonesian New Testament and New Testament Concordance should be used together in studying the New Testament. A discussion on the benefits of using this version may be found in Chapter I, 6, in books Hermeneutic: Principles and Methods in Interpretation of the Bible (Revised Edition). It may provide information needed for the preparation of sermons or Sunday school materials. It is written for readers, both clergymen, and laymen, who may not be so familiar to Greek.', 485000, 385000, 1),
(3, 'en', 'Homiletics: Principles and Methods of Preaching', 'Homiletik.jpg', 'Homiletics: Principles and Methods of Preaching', '', 'This book emphasizes the importance of the personality of a preacher. It is he or she, who has a sincere dedication and good training, that may deliver a high-quality sermon. The sermon is not a speech. Sermons must be made based on in-depth interpretation. Without exploring the Bible in depth, a sermon will not be effective in reaching out to the heart and mind of the audience. A preacher also needs to pay attention to communication. Preaching is not just limited to a textual, expository, and topical sermon. There are countless types of sermons, and among them, a narrative preaching. This book gives clear and practical information for writing and delivering sermons. That’s why the book Homiletics: Principles and Methods of Preaching may be useful both for students who are studying at a seminary and layman who are called to serve God. And since the beginning, Hermeneutic; Interlinear Greek-Indonesian New Testament and New Testament Concordance, and Homiletics have been prepared as a unit to respond to the calling of the Lord to equip His people.', 54000, 32500, 1),
(4, 'en', 'The Epistle of James: A Reconciling Message that Deserves to be Heard', 'SY.jpg', 'The Epistle of James: A Reconciling Message that Deserves to be Heard\r\n\r\n', '', 'Through his letter, James, the brother of the Lord Jesus, delivered the message of peace to his readers at the time, Jewish Christians, who are consist of both the rich and the poor. Unfortunately, this reconciling message has not been understood properly as many interpreters have not fully appreciated the background of this epistle. The book of The Epistle of James: A Reconciling Message that Deserves to be Heard invites us to pay attention to the identity of the author of the book and the events of martyrdom, the social dynamics of first-century Jewish community which consist of the rich and the poor, as well as James’s communication patterns and his way of thinking. With a more objective approach, modern readers will be able to learn James’s reconciling message that remains relevant until today.', 48000, 27500, 1),
(5, 'en', 'Interlinear Greek-Chinese New Testament and New Testament Concordance (PBIK-Chinese)', 'pbikedited.jpg', 'Interlinear Greek-Chinese New Testament and New Testament Concordance (Tionghoa)', '', 'This version has a similar format to Interlinear Greek-Indonesian New Testament and New Testament Concordance. Except, the former version has adopted two Chinese version, namely Union Version, New Chinese Version, and English Standard Version (ESV)', 600000, 0, 1),
(7, 'id', 'Hermeneutik', 'hermeneutik.jpg', 'Hermeneutik: Prinsip dan Metode Penafsiran Alkitab ', 'Alkitab merupakan dasar iman, teologi, perbuatan, dan kehidupannya. Itu sebabnya orang Kristen harus mengenal penafsiran Alkitab', 'Alkitab merupakan dasar iman, teologi, perbuatan, dan kehidupannya. Itu sebabnya orang Kristen harus mengenal penafsiran Alkitab. Isi buku Hermeneutik: Prinsip dan Metode Penafsiran Alkitab mencakup berbagai hal yang perlu diketahui seorang penafsir. Pembahasan mengenai prinsip dan metode penafsiran Alkitab dalam buku ini didukung bermacam topik, di antaranya, persiapan penafsir, buku referensi yang dibutuhkan, pengenalan sejarah penafsiran, dan berbagai contoh. Buku ini ditulis dengan bahasa yang sederhana, penjelasan yang mendetail, dan catatan kaki yang lengkap. Dengan pendirian yang konservatif dan sikap yang terbuka terhadap perkembangan dunia penafsiran, buku ini berguna bagi pengkhotbah, guru Sekolah Minggu, mahasiswa/i yang sedang studi di seminari, dan juga orang Kristen yang rindu lebih mengenal firman Tuhan.', 66000, 37500, 1),
(8, 'id', 'PBIK-Indonesia', 'pbikedited.jpg', 'Perjanjian Baru Interlinear Yunani-Indonesia dan Konkordansi Perjanjian Baru (PBIK-Indonesia)', 'Jilid pertama buku ini terdiri atas PB bahasa Yunani, dan juga terjemahan kata per kata serta tiga terjemahan lain. Jilid kedua buku ini merupakan konkordansi yang menolong pembaca mengadakan studi kata. Itu sebabnya buku ini berguna untuk mempersiapkan khotbah, PA kelompok, dan studi biblikal.', 'Jilid pertama buku ini terdiri atas PB bahasa Yunani, dan juga terjemahan kata per kata serta tiga terjemahan lain. Jilid kedua buku ini merupakan konkordansi yang menolong pembaca mengadakan studi kata. Itu sebabnya buku ini berguna untuk mempersiapkan khotbah, PA kelompok, dan studi biblikal.', 485000, 385000, 1),
(9, 'id', 'Homiletik', 'Homiletik.jpg', 'Homiletik: Prinsip dan Metode Berkhotbah ', 'Buku ini menekankan pentingnya personalitas pengkhotbah. Khotbah harus berdasrkan penafsiran yang baik. Pengkhotbah harus memperhatikan unsur komunikasi. ', 'Buku ini menekankan pentingnya personalitas pengkhotbah. Pengkhotbah yang berbobot menyampaikan khotbah yang berkualitas. Khotbah tidak sama dengan pidato. Khotbah harus dibuat berdasarkan penafsiran yang bermutu. Tanpa menggali kekayaan Alkitab, isi khotbah akan menjadi dangkal. Selain unsur penafsiran dan pesan, pengkhotbah juga perlu memperhatikan komunikasi. Khotbah tidak hanya terbatas pada khotbah tekstual, ekspositori, dan topikal. Ada banyak macam khotbah, di antaranya, khotbah naratif. Buku ini dilengkapi dengan langkah-langkah praktis menulis dan menyampaikan khotbah. Itu sebabnya buku Homiletik: Prinsip dan Metode Berkhotbah berguna baik bagi mahasiswa/i yang sedang studi di seminari maupun kaum awam yang terpanggil melayani Tuhan.', 54000, 32500, 1),
(10, 'id', 'Surat Yakobus', 'SY.jpg', 'Surat Yakobus: Berita Perdamaian yang Patut didengar ', 'Melalui suratnya, Yakobus, saudara Tuhan Yesus, menyampaikan berita perdamaian kepada pembacanya yang terdiri atas orang Kristen Yahudi yang kaya dan yang miskin.', 'Melalui suratnya, Yakobus, saudara Tuhan Yesus, menyampaikan berita perdamaian kepada pembacanya yang terdiri atas orang Kristen Yahudi yang kaya dan yang miskin. Sayang, berita ini belum diperhatikan dengan baik, karena penafsir kitab ini belum menggunakan pendekatan yang memadai. Buku Surat Yakobus: Berita Perdamaian yang Patut Didengar mengajak pembaca menaruh perhatian kepada identitas penulis kitab dan peristiwa mati syahidnya, dinamika sosial masyarakat orang Yahudi abad pertama, serta pola komunikasi dan jalan pikiran kitab ini. Dengan pendekatan yang lebih objektif, diharapkan pembaca modern dapat menemukan berita perdamaian Surat Yakobus yang masih tetap relavan sampai sekarang.', 48000, 27500, 1),
(11, 'id', 'PBIK-Tionghoa', 'pbikedited.jpg', 'Perjanjian Baru Interlinear Yunani-Tionghoa dan Konkordansi Perjanjian Baru (PBIK Tionghoa) ', 'Isi versi ini sama dengan PBIK-Indonesia. ', 'Jilid pertama buku ini terdiri atas PB bahasa Yunani, dan juga terjemahan kata per kata serta tiga terjemahan lain. Jilid kedua buku ini merupakan konkordansi yang menolong pembaca mengadakan studi kata. Itu sebabnya buku ini berguna untuk mempersiapkan khotbah, PA kelompok, dan studi biblikal.', 600000, 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `research`
--
CREATE TABLE `research` (
`id` int(11) NOT NULL,
`lang` varchar(2) NOT NULL,
`job` text NOT NULL,
`place` text NOT NULL,
`month_start` varchar(100) NOT NULL,
`year_start` int(11) NOT NULL,
`month_end` varchar(100) NOT NULL,
`year_end` int(11) NOT NULL,
`status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `research`
--
INSERT INTO `research` (`id`, `lang`, `job`, `place`, `month_start`, `year_start`, `month_end`, `year_end`, `status`) VALUES
(1, 'id', '<NAME>', 'Princeton Theological Seminary', 'Mei', 2014, 'Desember', 2014, 1),
(2, 'id', '<NAME>', 'Princeton Theological Seminary', 'September', 2011, 'November', 2011, 1),
(3, 'id', '<NAME>', 'Princeton Theological Seminary', 'Mei', 2005, 'Oktober', 2005, 1),
(4, 'id', '<NAME>', 'Princeton Theological Seminary', 'Maret', 2001, 'Agustus', 2002, 1),
(5, 'en', 'Visiting Scholar', 'Princeton Theological Seminary', 'May', 2014, 'December', 2014, 1),
(6, 'en', 'Visiting Scholar', 'Princeton Theological Seminary', 'September', 2011, 'November', 2011, 1),
(7, 'en', 'Visiting Scholar', 'Princeton Theological Seminary', 'May', 2005, 'October', 2005, 1),
(8, 'en', 'Visiting Scholar', 'Princeton Theological Seminary', 'March', 2001, 'August', 2002, 1);
-- --------------------------------------------------------
--
-- Table structure for table `subject`
--
CREATE TABLE `subject` (
`id` int(11) NOT NULL,
`lang` varchar(2) NOT NULL,
`nama` text NOT NULL,
`status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `subject`
--
INSERT INTO `subject` (`id`, `lang`, `nama`, `status`) VALUES
(1, 'id', 'Homiletik', 1),
(2, 'id', 'Hermeneutik', 1),
(3, 'id', '<NAME>', 1),
(4, 'id', 'Surat-<NAME>', 1),
(5, 'id', 'Introduksi <NAME>', 1),
(6, 'en', 'Homiletics', 1),
(7, 'en', 'Hermeneutics', 1),
(8, 'en', 'The Epistle of James', 1),
(9, 'en', 'Pauline Epistles', 1),
(10, 'en', 'Introductory Courses to New Testament', 1);
-- --------------------------------------------------------
--
-- Table structure for table `terms`
--
CREATE TABLE `terms` (
`id` int(11) NOT NULL,
`lang` varchar(2) NOT NULL,
`terms` text NOT NULL,
`status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `terms`
--
INSERT INTO `terms` (`id`, `lang`, `terms`, `status`) VALUES
(1, 'id', 'Penawaran ini berlaku selama persediaan masih ada', 1),
(2, 'id', 'Penawaran ini hanya ditujukan kepada mahasiswa/i yang sedang studi di sekolah tinggi teologi, seminari, atau sekolah Alkitab di Indonesia', 1),
(3, 'id', 'Pemesan harus melampirkan fotokopi kartu mahasiswa/i, yang kemudian dibubuhi dengan tanda tangan mahasiswa/i yang bersangkutan, tanda tangan dekan mahasiswa/i serta cap lembaga pendidikan yang bersangkutan', 1),
(4, 'id', 'Setiap mahasiswa/i hanya dapat membeli satu set atau satu eksemplar buku-buku yang disubsidi ini', 1),
(5, 'id', 'Sangat dianjurkan pemesanan secara kolektif.', 1),
(10, 'en', 'This offer is valid while the stock is available', 1),
(11, 'en', 'This offer is made for students, who presently studies at a seminary or a Bible school in Indonesia', 1),
(12, 'en', 'The order should be sent together with a photocopy of the student ID card, which has the signatures of the student and the dean of students, and also the official stamp of the seminary', 1),
(13, 'en', 'Each student is limited to one set/one copy for each title at subsidized prices', 1),
(14, 'en', 'A collective order is highly recommended.', 1);
-- --------------------------------------------------------
--
-- Table structure for table `translate`
--
CREATE TABLE `translate` (
`id` int(11) NOT NULL,
`lang` varchar(2) NOT NULL,
`pengarang` text NOT NULL,
`tahun` int(11) NOT NULL,
`tahun_revisi` varchar(200) NOT NULL,
`halaman` int(11) NOT NULL,
`content` text NOT NULL,
`tipe` varchar(10) NOT NULL,
`status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `translate`
--
INSERT INTO `translate` (`id`, `lang`, `pengarang`, `tahun`, `tahun_revisi`, `halaman`, `content`, `tipe`, `status`) VALUES
(1, 'en', '<NAME>', 1988, '', 142, ' What Christ Thinks of the Church. Indonesian title: Bagaimana Pandangan Kristus akan Gereja?\r\n', 'translate', 1),
(2, 'en', 'Derek & <NAME>', 1989, '', 171, 'Building with Bananas. Indonesian title: Membangun dengan Pisang:Masalah Antara Manusia dalam Gereja.', 'translate', 1),
(62, 'id', '<NAME>', 1988, '', 142, 'Bagaimana Pandangan Kristus akan Gereja? ', 'translate', 1),
(63, 'id', 'Derek & <NAME>', 1989, '', 171, 'Membangun dengan Pisang: Masalah Antara Manusia dalam Gereja.', 'translate', 1),
(64, 'id', '<NAME>', 1986, '2007, 2011, 2015, 2016', 457, 'Hermeneutik: Prinsip dan Metode Penafsiran Alkitab', 'publikasi', 1),
(65, 'en', '<NAME>', 1986, '2007, 2011, 2015, 2016', 457, 'Hermeneutics: Principles and Methodologies of Biblical Interpretation', 'publikasi', 1),
(66, 'id', '<NAME>', 2003, '2004, 2006, 2009, 2014, 2019', 2145, 'Perjanjian Baru Interlinear Yunani-Indonesia dan Konkordansi Perjanjian Baru (PBIK-Indonesia) (Vol. I, II)', 'publikasi', 1),
(67, 'en', '<NAME>', 2003, '2004, 2006, 2009, 2014, 2019', 2145, 'Interlinear Greek-Indonesian New Testament and New Testament Concordance (Vol. I, II)', 'publikasi', 1),
(68, 'en', '<NAME>', 2004, '2007, 2012, 2017', 397, 'Homiletics: Principles and Methodologies of Preaching', 'publikasi', 1),
(69, 'id', '<NAME>', 2004, '2007, 2012, 2017', 397, 'Homiletik: Prinsip dan Metode Berkhotbah', 'publikasi', 1),
(70, 'id', '<NAME>', 2006, '2008', 345, 'Surat Yakobus: Berita Perdamaian yang Patut Didengar', 'publikasi', 1),
(71, 'en', '<NAME>', 2006, '2008', 345, 'The Epistle of James: A Reconciling Message that Deserves to be Heard', 'publikasi', 1),
(72, 'id', '<NAME>', 2017, '', 2170, 'Perjanjian Baru Interlinear Yunani-Tionghoa dan Konkordansi Perjanjian Baru (PBIK-Tionghoa) (Vol. I, II)', 'publikasi', 1),
(73, 'en', '<NAME>', 2017, '', 2170, 'Interlinear Greek-Chinese New Testament and New Testament Concordance (Vol. I, II)', 'publikasi', 1);
-- --------------------------------------------------------
--
-- Table structure for table `videos`
--
CREATE TABLE `videos` (
`id` int(11) NOT NULL,
`judul` varchar(100) NOT NULL,
`link` varchar(100) NOT NULL,
`tanggal` date NOT NULL,
`status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `videos`
--
INSERT INTO `videos` (`id`, `judul`, `link`, `tanggal`, `status`) VALUES
(2, 'Pdt Hasan Sutanto Diotrefes Yang Melawan Kebenaran', 'https://www.youtube.com/embed/h5UMhpsVWD4', '2017-11-26', 1),
(3, 'Pdt Hasan Sutanto KU1 Jehovah Nissi – Tuhan Panjiku', 'https://www.youtube.com/embed/dFqB2pVuk_s', '2018-10-20', 1),
(4, '\"Berani Hidup Dalam Anugerah\" - Pdt. Hasan Sutanto - GKBJ Kelapa Gading', 'https://www.youtube.com/embed/2NsNxUif4F0', '2016-08-21', 1),
(5, '\"Epifani Memberi Kehidupan\" Markus 1:4-11 Pdt Hasan Susanto', 'https://www.youtube.com/embed/9vGChIVsrIM', '2018-01-07', 1);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `about`
--
ALTER TABLE `about`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `contactus`
--
ALTER TABLE `contactus`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `content`
--
ALTER TABLE `content`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `education`
--
ALTER TABLE `education`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `faq`
--
ALTER TABLE `faq`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `language`
--
ALTER TABLE `language`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `menu`
--
ALTER TABLE `menu`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `message`
--
ALTER TABLE `message`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `ministry`
--
ALTER TABLE `ministry`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `products`
--
ALTER TABLE `products`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `research`
--
ALTER TABLE `research`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `subject`
--
ALTER TABLE `subject`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `terms`
--
ALTER TABLE `terms`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `translate`
--
ALTER TABLE `translate`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `videos`
--
ALTER TABLE `videos`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `about`
--
ALTER TABLE `about`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `contactus`
--
ALTER TABLE `contactus`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `content`
--
ALTER TABLE `content`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=93;
--
-- AUTO_INCREMENT for table `education`
--
ALTER TABLE `education`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT for table `faq`
--
ALTER TABLE `faq`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `language`
--
ALTER TABLE `language`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `menu`
--
ALTER TABLE `menu`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT for table `message`
--
ALTER TABLE `message`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `ministry`
--
ALTER TABLE `ministry`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;
--
-- AUTO_INCREMENT for table `products`
--
ALTER TABLE `products`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT for table `research`
--
ALTER TABLE `research`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `subject`
--
ALTER TABLE `subject`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `terms`
--
ALTER TABLE `terms`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;
--
-- AUTO_INCREMENT for table `translate`
--
ALTER TABLE `translate`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=74;
--
-- AUTO_INCREMENT for table `videos`
--
ALTER TABLE `videos`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
select plugin_name,name,description from commits |
<filename>Java DB/Exams/21 October 2018/extract_all_planets_and_their_journey_count.sql<gh_stars>0
SELECT p.name AS planet_name,COUNT(j.id) AS journeys_count FROM planets AS p
JOIN spaceports AS sp ON sp.planet_id = p.id
JOIN journeys AS j ON j.destination_spaceport_id = sp.id
GROUP BY p.name
ORDER BY journeys_count DESC, p.name ASC |
<reponame>steder/goose<filename>goose/testmigrations/bad.sql
insert into track (trackId) values (7);
-- The following syntax error should cause this transaction to fail
-- This file is just a test that a failing transaction does the
-- right thing. Basically, this migration should not be aplied
-- but any other migrations before this should be applied.
-- Of course, SQLite isn't able to rollback DDL so migrations
-- containing create table statements that later have syntax errors
-- will not be rolledback.
SELECT * FRO Track; |
WITH source AS (
SELECT *
FROM {{ source('sheetload', 'marketing_core_users_from_docs_gitlab_com') }}
), renamed as (
SELECT
"Company_Name"::VARCHAR AS company_name,
"Total_Page_Count"::NUMBER AS total_page_count
FROM source
)
SELECT *
FROM renamed
|
<filename>src/test/resources/sql/alter_table/03cfee9e.sql
-- file:alter_table.sql ln:914 expect:true
alter table atacc1 alter a set not null
|
-- file:create_function_3.sql ln:216 expect:true
TABLE sometable
|
-- file:combocid.sql ln:45 expect:true
INSERT INTO combocidtest VALUES (333)
|
<reponame>CoryAMoore/Insight-Quest-Examples<gh_stars>10-100
SELECT
S.[session_id]
, CASE S.[app_name]
WHEN 'Microsoft SQL Server Management Studio' THEN 'SSMS'
WHEN 'Microsoft SQL Server Management Studio - Query' THEN 'SSMS'
ELSE S.[app_name]
END AS [Application]
, S.[status] as [Session Status]
, S.[request_id] as [Latest Request ID]
, S.client_id
--, S.sql_spid
--, S.[Security_id]
, S.[login_name] as [User]
, S.query_count as [Count of Queries]
, DATEADD(hour,-4,CAST(S.Login_Time as datetime2(0))) as [Login Time]
, CASE
WHEN S.[status] = 'Active' THEN
DATEDIFF(minute,CAST(S.login_Time as datetime2(0)),CAST(CURRENT_TIMESTAMP as datetime2(0)))
ELSE
NULL
END AS [Session Minutes]
FROM
sys.dm_pdw_exec_sessions AS S
WHERE session_id <> session_id() AND
CAST(DATEADD(HOUR,-4,s.login_time) AS date) = CAST(DATEADD(HOUR,-4,CURRENT_TIMESTAMP) AS date) |
<filename>sql/9823.sql
/*
Common Letters
https://platform.stratascratch.com/coding/9823-common-letters?python=
Difficulty: Hard
Find the top 3 most common letters across all the words from both the tables. Output the letter along with the number of occurrences and order records in descending order based on the number of occurrences.
Tables:
<google_file_store>
filename varchar
contents varchar
<google_word_lists>
words1 varchar
words2 varchar
*/
-- objective:
-- for all letter that appears, we want to count their occurences
-- and find the top 3
-- asssumption:
-- only look at contents, words1, words2
-- logic:
-- string_to_array and unnest() to get words in each row individually
-- union all words1, words2, words3, DO NOT REMOVE DUPLICATES
-- regext_split_string_to_array() to extract letters
-- unnest() to get letters to each row individually
-- groupby() letters and count(*)
-- order by count(*) DESC
-- groupby each letters and count(*)
SELECT letters,
COUNT(*)
FROM (
-- extracting letters and unnest to individual letters
SELECT words,
UNNEST(REGEXP_SPLIT_TO_ARRAY(words, E'\\W*')) AS letters
FROM (
-- extracting words and unnest to individual rows
SELECT UNNEST(STRING_TO_ARRAY(LOWER(contents), ' ')) AS words
FROM google_file_store
-- union all ensures all duplicates remains
UNION ALL
SELECT UNNEST(STRING_TO_ARRAY(words1, ',')) AS words
FROM google_word_lists
UNION ALL
SELECT UNNEST(STRING_TO_ARRAY(words2, ',')) AS words
FROM google_word_lists
) AS all_words
) all_letters
-- there is an issue with extracting totally excluding punctuations
WHERE letters <> ''
GROUP BY 1
ORDER BY 2 DESC
LIMIT 3
|
<reponame>dram/metasfresh
drop function if exists get_db_columns_string();
create or replace function get_db_columns_string()
returns TABLE (
TableName varchar(2000),
Record_ID integer,
ColumnName varchar(2000),
ColumnValue text
)
AS
$$
/**
* Functions retrieves all columns from application dictionary which are of type varchar/string/text etc.
*
* This function is used to search for a particular string in all tables in all columns.
* e.g. select * from get_db_columns_string() where lower(columnValue) like '%mytext%'
*/
DECLARE
v_sql text := '';
rec record;
BEGIN
for rec in (select t.tableName, c.columnName
, 'select '
-- TableName
|| ''''||t.TableName||'''::varchar AS TableName'
-- Record_ID
|| ', '|| COALESCE(
(select max(k.ColumnName) from AD_Column k where k.AD_Table_ID=t.AD_Table_ID and k.IsKey='Y' and k.IsActive='Y' having count(1)=1)
, (select max(k.ColumnName) from AD_Column k where k.AD_Table_ID=t.AD_Table_ID and k.IsParent='Y' and k.IsActive='Y' having count(1)=1)
, 'NULL'
)
||'::integer AS Record_ID'
-- ColumnName
|| ', '''||c.ColumnName||'''::varchar AS ColumnName'
-- Column Value
|| ', '||c.ColumnName||'::text AS ColumnVale'
--
|| ' FROM '||t.TableName
|| '' AS sqltext
from AD_Table t
inner join AD_Column c on (c.AD_Table_ID=t.AD_Table_ID)
where true
and t.IsView='N'
and t.IsActive='Y' and c.IsActive='Y'
and c.ColumnSQL is null
and c.AD_Reference_ID in (
10 -- String
, 14 -- Text
, 34 -- Memo
, 36 -- Text long
, 38 -- File path
, 39 -- File name
, 40 -- URL
, 42 -- Printer Name
)
-- Skip views which were forgot to be marked as views
and not (t.TableName like 'RV%')
order by t.tableName, c.ColumnName
) loop
if (v_sql <> '') then
v_sql := v_sql || ' union all ';
end if;
v_sql := v_sql || rec.sqltext;
end loop;
v_sql := 'SELECT * FROM ('||v_sql||') t';
return query execute v_sql;
END;
$$ LANGUAGE plpgsql;
|
-- Feb 15, 2017 1:15 PM
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process SET Classname='de.metas.ui.web.handlingunits.process.WEBUI_M_ReceiptSchedule_GeneratePlanningHUs_UsingConfig', Description='Receive HUs using custom configuration', EntityType='de.metas.ui.web', Value='WEBUI_M_ReceiptSchedule_GeneratePlanningHUs_UsingConfig',Updated=TO_TIMESTAMP('2017-02-15 13:15:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=540753
;
-- Feb 15, 2017 1:15 PM
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Trl SET IsTranslated='N' WHERE AD_Process_ID=540753
;
-- Feb 15, 2017 1:16 PM
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Para SET EntityType='de.metas.ui.web',Updated=TO_TIMESTAMP('2017-02-15 13:16:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=541135
;
-- Feb 15, 2017 1:16 PM
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Para SET EntityType='de.metas.ui.web',Updated=TO_TIMESTAMP('2017-02-15 13:16:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=541136
;
-- Feb 15, 2017 1:16 PM
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Para SET EntityType='de.metas.ui.web',Updated=TO_TIMESTAMP('2017-02-15 13:16:14','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=541137
;
-- Feb 15, 2017 1:16 PM
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Para SET EntityType='de.metas.ui.web',Updated=TO_TIMESTAMP('2017-02-15 13:16:18','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=541138
;
-- Feb 15, 2017 1:16 PM
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Para SET EntityType='de.metas.ui.web',Updated=TO_TIMESTAMP('2017-02-15 13:16:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=541139
;
-- Feb 15, 2017 1:16 PM
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Table_Process SET EntityType='de.metas.ui.web',Updated=TO_TIMESTAMP('2017-02-15 13:16:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=540753 AND AD_Table_ID=540524
;
-- Feb 15, 2017 1:17 PM
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process SET Classname='de.metas.ui.web.handlingunits.process.WEBUI_M_ReceiptSchedule_GeneratePlanningHUs_UsingDefaults', Description='Receive HUs using default configuration', EntityType='de.metas.ui.web', Value='WEBUI_M_ReceiptSchedule_GeneratePlanningHUs_UsingDefaults',Updated=TO_TIMESTAMP('2017-02-15 13:17:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=540749
;
-- Feb 15, 2017 1:17 PM
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Trl SET IsTranslated='N' WHERE AD_Process_ID=540749
;
-- Feb 15, 2017 1:17 PM
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Table_Process SET EntityType='de.metas.ui.web',Updated=TO_TIMESTAMP('2017-02-15 13:17:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=540749 AND AD_Table_ID=540524
;
-- Feb 15, 2017 1:18 PM
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,543278,0,'IsSaveLUTUConfiguration',TO_TIMESTAMP('2017-02-15 13:18:46','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.ui.web','Y','Save configuration','Save configuration',TO_TIMESTAMP('2017-02-15 13:18:46','YYYY-MM-DD HH24:MI:SS'),100)
;
-- Feb 15, 2017 1:18 PM
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Element_ID, t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Element_ID=543278 AND NOT EXISTS (SELECT * FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID)
;
-- Feb 15, 2017 1:19 PM
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_Process_Para (AD_Client_ID,AD_Element_ID,AD_Org_ID,AD_Process_ID,AD_Process_Para_ID,AD_Reference_ID,ColumnName,Created,CreatedBy,DefaultValue,EntityType,FieldLength,IsActive,IsAutocomplete,IsCentrallyMaintained,IsEncrypted,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,543278,0,540753,541151,20,'IsSaveLUTUConfiguration',TO_TIMESTAMP('2017-02-15 13:19:26','YYYY-MM-DD HH24:MI:SS'),100,'N','de.metas.ui.web',0,'Y','N','Y','N','Y','N','Save configuration',5,TO_TIMESTAMP('2017-02-15 13:19:26','YYYY-MM-DD HH24:MI:SS'),100)
;
-- Feb 15, 2017 1:19 PM
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_Process_Para_Trl (AD_Language,AD_Process_Para_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Process_Para_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Process_Para_ID=541151 AND NOT EXISTS (SELECT * FROM AD_Process_Para_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_Para_ID=t.AD_Process_Para_ID)
;
-- Feb 15, 2017 6:35 PM
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Trl SET UpdatedBy=100,Updated=TO_TIMESTAMP('2017-02-15 18:35:40','YYYY-MM-DD HH24:MI:SS'),Description='Receive HUs using custom configuration' WHERE AD_Process_ID=540753 AND AD_Language='en_US'
;
-- Feb 15, 2017 6:35 PM
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Trl SET UpdatedBy=100,Updated=TO_TIMESTAMP('2017-02-15 18:35:49','YYYY-MM-DD HH24:MI:SS'),Description='Receive HUs using default configuration' WHERE AD_Process_ID=540749 AND AD_Language='en_US'
;
|
DECLARE
editversion varchar2(64) := 'BLDG_DOITT_EDIT';
featureclass varchar2(64) := 'building';
condotable varchar2(64) := 'condo';
psql varchar2(4000);
BEGIN
-- Run before nightly reconcile and post
sde.version_util.set_current_version(editversion);
sde.version_user_ddl.edit_version(editversion,1);
psql := 'update '
|| ' ' || featureclass || '_evw a '
|| 'set '
|| ' (a.mappluto_bbl, a.condo_flags) = '
|| ' (select '
|| ' b.condo_billing_bbl, :p1 '
|| ' from '
|| ' ' || condotable || ' b '
|| ' where '
|| ' a.base_bbl = b.condo_base_bbl '
|| ' and a.mappluto_bbl <> b.condo_billing_bbl) '
|| 'where exists '
|| ' (select 1 '
|| ' from '
|| ' ' || condotable || ' c '
|| ' where '
|| ' a.base_bbl = c.condo_base_bbl '
|| ' and a.mappluto_bbl <> c.condo_billing_bbl)';
execute immediate psql using 'Y';
-- click save
commit;
-- just in case a flag got flipped somewhere else
-- this should be impossible in daily edits due to constraint on A table
-- when base_bbl differs from mappluto_bbl, this is a condominium
psql := 'update '
|| ' ' || featureclass || '_evw a '
|| 'set '
|| ' a.condo_flags = :p1 '
|| 'where '
|| ' a.base_bbl <> a.mappluto_bbl '
|| 'and '
|| ' condo_flags <> :p2 ';
execute immediate psql using 'Y', 'Y';
commit;
-- when base_bbl and mappluto_bbl are the same, this is not a condominium
psql := 'update '
|| ' ' || featureclass || '_evw a '
|| 'set '
|| ' a.condo_flags = :p1 '
|| 'where '
|| ' a.base_bbl = a.mappluto_bbl '
|| 'and '
|| ' a.condo_flags = :p2 ';
execute immediate psql using 'N', 'Y';
commit;
-- stop editing
sde.version_user_ddl.edit_version(editversion,2);
END;
|
<reponame>smith750/kc
DELIMITER /
INSERT INTO IACUC_LOCATION_TYPE ( LOCATION_TYPE_CODE, LOCATION, UPDATE_TIMESTAMP, UPDATE_USER, OBJ_ID, VER_NBR )
VALUES ( 1, 'Proposal Organization', NOW(), 'admin', UUID(), 1 )
/
INSERT INTO IACUC_LOCATION_TYPE ( LOCATION_TYPE_CODE, LOCATION, UPDATE_TIMESTAMP, UPDATE_USER, OBJ_ID, VER_NBR )
VALUES ( 2, 'Performing Organization', NOW(), 'admin', UUID(), 1 )
/
INSERT INTO IACUC_LOCATION_TYPE ( LOCATION_TYPE_CODE, LOCATION, UPDATE_TIMESTAMP, UPDATE_USER, OBJ_ID, VER_NBR )
VALUES ( 3, 'Other Organization', NOW(), 'admin', UUID(), 1 )
/
INSERT INTO IACUC_LOCATION_TYPE ( LOCATION_TYPE_CODE, LOCATION, UPDATE_TIMESTAMP, UPDATE_USER, OBJ_ID, VER_NBR )
VALUES ( 4, 'Performance Site', NOW(), 'admin', UUID(), 1 )
/
DELIMITER ;
|
<filename>SQL/structure/01/00/09-Ressources.sql
#------------------------------------------------------------------------------
# Ressources : Item
#------------------------------------------------------------------------------
CREATE TABLE `game_ressource_item` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL,
`groupable` tinyint(1) NOT NULL,
`energy` double NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB ;
#------------------------------------------------------------------------------
# Ressources : City (natural and stocks)
#------------------------------------------------------------------------------
CREATE TABLE `game_ressource_natural` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item` int(11) NOT NULL,
`city` int(11) NOT NULL,
`coef` double NOT NULL,
PRIMARY KEY (`id`),
FOREIGN KEY (`item`) REFERENCES `game_ressource_item` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (`city`) REFERENCES `game_city` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB ;
CREATE TABLE `game_ressource_city` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`city` int(11) NOT NULL,
`item` int(11) NOT NULL,
`inside` tinyint(1) NOT NULL,
`amount` double NOT NULL,
PRIMARY KEY (`id`),
FOREIGN KEY (`city`) REFERENCES `game_city` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (`item`) REFERENCES `game_ressource_item` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB ;
#------------------------------------------------------------------------------
# Ressources : character : slots, equipable, inventory, ...
#------------------------------------------------------------------------------
CREATE TABLE `game_ressource_slot` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(16) NOT NULL,
`amount` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB ;
CREATE TABLE `game_ressource_equipable` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item` int(11) NOT NULL,
`slot` int(11) NOT NULL,
`amount` double NOT NULL,
`race` int(11) NULL,
`sex` int(11) NULL,
PRIMARY KEY (`id`),
FOREIGN KEY (`item`) REFERENCES `game_ressource_item` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (`slot`) REFERENCES `game_ressource_slot` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB ;
CREATE TABLE `game_ressource_inventory` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item` int(11) NOT NULL,
`character` int(11) NOT NULL,
`slot` int(11) NULL,
`amount` double NOT NULL,
PRIMARY KEY (`id`),
FOREIGN KEY (`item`) REFERENCES `game_ressource_item` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (`character`) REFERENCES `game_character` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (`slot`) REFERENCES `game_ressource_slot` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB ;
#------------------------------------------------------------------------------
# Ressources : ecosystem
#------------------------------------------------------------------------------
CREATE TABLE `game_ressource_ecosystem` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item` int(11) NOT NULL,
`biome` int(11) NOT NULL,
`min` double NOT NULL,
`max` double NOT NULL,
PRIMARY KEY (`id`),
FOREIGN KEY (`item`) REFERENCES `game_ressource_item` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (`biome`) REFERENCES `game_biome` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB ;
#------------------------------------------------------------------------------
# Ressources : Energy (eat, vitalize, burn)
#------------------------------------------------------------------------------
CREATE TABLE `game_ressource_eatable` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item` int(11) NOT NULL,
`energy` double NOT NULL,
`race` int(11) NULL,
PRIMARY KEY (`id`),
FOREIGN KEY (`item`) REFERENCES `game_ressource_item` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB ;
CREATE TABLE `game_ressource_drinkable` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item` int(11) NOT NULL,
`energy` double NOT NULL,
`hydration` double NOT NULL,
PRIMARY KEY (`id`),
FOREIGN KEY (`item`) REFERENCES `game_ressource_item` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB ; |
DROP DATABASE IF EXISTS employee_trackerDB;
CREATE database employee_trackerDB;
USE employee_trackerDB;
CREATE TABLE departments (
id INT NOT NULL AUTO_INCREMENT,
dept_name VARCHAR(30) NULL,
PRIMARY KEY (id)
);
CREATE TABLE roles (
id INT NOT NULL AUTO_INCREMENT,
title VARCHAR(30) NULL,
salary DECIMAL NULL,
department_id INT,
PRIMARY KEY (id),
FOREIGN KEY (department_id) REFERENCES departments(id)
);
CREATE TABLE employees (
id INT NOT NULL AUTO_INCREMENT,
first_name VARCHAR(30) NULL,
last_name VARCHAR(30) NULL,
role_id INT,
manager_id INT NULL,
PRIMARY KEY (id),
FOREIGN KEY (role_id) REFERENCES roles(id)
);
SELECT * FROM departments;
SELECT * FROM roles;
SELECT * FROM employees; |
-- SPDX-License-Identifier: Apache-2.0
-- Licensed to the Ed-Fi Alliance under one or more agreements.
-- The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0.
-- See the LICENSE and NOTICES files in the project root for more information.
PRINT N'Adding foreign keys to [edfi].[StudentVisa]'
GO
ALTER TABLE [edfi].[StudentVisa] ADD CONSTRAINT [FK_StudentVisa_Student] FOREIGN KEY ([StudentUSI]) REFERENCES [edfi].[Student] ([StudentUSI]) ON DELETE CASCADE
GO
ALTER TABLE [edfi].[StudentVisa] ADD CONSTRAINT [FK_StudentVisa_VisaDescriptor] FOREIGN KEY ([VisaDescriptorId]) REFERENCES [edfi].[VisaDescriptor] ([VisaDescriptorId])
GO
|
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES';
-- ----------------------------
-- Table structure for auth_assignment
-- ----------------------------
DROP TABLE IF EXISTS `auth_assignment`;
CREATE TABLE `auth_assignment` (
`item_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`user_id` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`created_at` int(11) DEFAULT NULL,
PRIMARY KEY (`item_name`,`user_id`),
KEY `auth_assignment_user_id_idx` (`user_id`),
CONSTRAINT `auth_assignment_ibfk_1` FOREIGN KEY (`item_name`) REFERENCES `auth_item` (`name`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Table structure for auth_item
-- ----------------------------
DROP TABLE IF EXISTS `auth_item`;
CREATE TABLE `auth_item` (
`name` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`type` smallint(6) NOT NULL,
`description` mediumtext COLLATE utf8_unicode_ci,
`rule_name` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`data` blob,
`created_at` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
PRIMARY KEY (`name`),
KEY `rule_name` (`rule_name`),
KEY `type` (`type`),
CONSTRAINT `auth_item_ibfk_1` FOREIGN KEY (`rule_name`) REFERENCES `auth_rule` (`name`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Table structure for auth_item_child
-- ----------------------------
DROP TABLE IF EXISTS `auth_item_child`;
CREATE TABLE `auth_item_child` (
`parent` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`child` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`parent`,`child`),
KEY `child` (`child`),
CONSTRAINT `auth_item_child_ibfk_1` FOREIGN KEY (`parent`) REFERENCES `auth_item` (`name`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `auth_item_child_ibfk_2` FOREIGN KEY (`child`) REFERENCES `auth_item` (`name`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Table structure for auth_rule
-- ----------------------------
DROP TABLE IF EXISTS `auth_rule`;
CREATE TABLE `auth_rule` (
`name` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`data` blob,
`created_at` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- -----------------------------------------------------
-- Table `address`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `address` ;
CREATE TABLE IF NOT EXISTS `address` (
`id` INT NOT NULL AUTO_INCREMENT,
`name` VARCHAR(45) NULL,
`address` VARCHAR(255) NULL,
`city` VARCHAR(45) NULL,
`state` VARCHAR(45) NULL,
`zipcode` VARCHAR(45) NULL,
`lat` DECIMAL(9,6) NULL,
`long` DECIMAL(9,6) NULL,
`created_at` int(11) DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
`is_deleted` int(11) DEFAULT '0',
PRIMARY KEY (`id`))
ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Table structure for file
-- ----------------------------
DROP TABLE IF EXISTS `file`;
CREATE TABLE `file` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`image_id` int(11) DEFAULT NULL,
`original_name` varchar(255) DEFAULT NULL,
`mime_type` varchar(45) DEFAULT NULL,
`storage_type` varchar(45) DEFAULT NULL,
`storage_key` varchar(255) DEFAULT NULL,
`size` int(11) DEFAULT NULL,
`created_at` int(11) DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
`is_deleted` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Table structure for icon
-- ----------------------------
DROP TABLE IF EXISTS `icon`;
CREATE TABLE `icon` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`code` varchar(255) DEFAULT NULL,
`group` varchar(45) DEFAULT NULL,
`type` varchar(45) DEFAULT NULL,
`is_active` tinyint(1) DEFAULT '1',
`created_at` int(11) DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Table structure for image
-- ----------------------------
DROP TABLE IF EXISTS `image`;
CREATE TABLE `image` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`original_name` varchar(255) NOT NULL,
`mime_type` varchar(45) NOT NULL,
`size` int(11) NOT NULL,
`storage_type` varchar(45) NOT NULL,
`storage_key` varchar(255) NOT NULL,
`height` int(11) DEFAULT NULL,
`width` int(11) DEFAULT NULL,
`created_at` int(11) DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
`is_deleted` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Table structure for image_thumb
-- ----------------------------
DROP TABLE IF EXISTS `image_thumb`;
CREATE TABLE `image_thumb` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`image_id` int(11) NOT NULL,
`spec_key` varchar(45) NOT NULL,
`storage_type` varchar(45) NOT NULL,
`storage_key` varchar(255) NOT NULL,
`created_at` int(11) DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
`is_deleted` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `fk_image_thumb_image_idx` (`image_id`),
CONSTRAINT `fk_image_thumb_image` FOREIGN KEY (`image_id`) REFERENCES `image` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- -----------------------------------------------------
-- Table `profile`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `profile` ;
CREATE TABLE IF NOT EXISTS `profile` (
`id` INT NOT NULL AUTO_INCREMENT,
`image_id` int(11) DEFAULT NULL,
`address_id` INT NULL,
`first_name` VARCHAR(45) NULL,
`last_name` VARCHAR(45) NULL,
`email` VARCHAR(255) NULL,
`phone` VARCHAR(45) NULL,
`status` varchar(45) DEFAULT NULL,
`created_at` int(11) DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
`is_deleted` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
INDEX `fk_profile_address1_idx` (`address_id` ASC),
KEY `fk_profile_image_idx` (`image_id`),
CONSTRAINT `fk_profile_image`
FOREIGN KEY (`image_id`)
REFERENCES `image` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_profile_address1`
FOREIGN KEY (`address_id`)
REFERENCES `address` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- -----------------------------------------------------
-- Table `exception`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `exception` ;
CREATE TABLE IF NOT EXISTS `exception` (
`id` INT NOT NULL AUTO_INCREMENT,
`model_id` INT NOT NULL,
`model_name` VARCHAR(45) NOT NULL,
`name` VARCHAR(45) NULL,
`message` TEXT NULL,
`status` VARCHAR(45) NOT NULL COMMENT 'handeled/in process/no need for handling',
`is_resolved` TINYINT NULL DEFAULT 0,
`created_at` int(11) DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
`is_deleted` int(11) DEFAULT '0',
PRIMARY KEY (`id`))
ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- -----------------------------------------------------
-- Table `user`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `user` ;
CREATE TABLE IF NOT EXISTS `user` (
`id` INT NOT NULL AUTO_INCREMENT,
`profile_id` INT DEFAULT NULL,
`email` varchar(45) DEFAULT NULL,
`username` varchar(45) DEFAULT NULL,
`password_hash` varchar(255) DEFAULT NULL,
`auth_key` varchar(255) DEFAULT NULL,
`password_reset_token` varchar(255) DEFAULT NULL,
`is_active` int(11) DEFAULT '1',
`created_at` int(11) DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
`is_deleted` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
INDEX `fk_user_profile1_idx` (`profile_id` ASC),
CONSTRAINT `fk_user_profile1`
FOREIGN KEY (`profile_id`)
REFERENCES `profile` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Table structure for note
-- ----------------------------
DROP TABLE IF EXISTS `note`;
CREATE TABLE `note` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`model_name` varchar(255) DEFAULT NULL,
`model_id` int(11) DEFAULT NULL,
`content` mediumtext DEFAULT NULL,
`created_at` int(11) DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
`is_deleted` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Table structure for note_file
-- ----------------------------
DROP TABLE IF EXISTS `note_file`;
CREATE TABLE `note_file` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`file_id` int(11) DEFAULT NULL,
`note_id` int(11) DEFAULT NULL,
`created_at` int(11) DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
`is_deleted` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `FK_note_file_note` (`note_id`),
KEY `FK_note_file_file` (`file_id`),
CONSTRAINT `FK_note_file_file` FOREIGN KEY (`file_id`) REFERENCES `file` (`id`),
CONSTRAINT `FK_note_file_note` FOREIGN KEY (`note_id`) REFERENCES `note` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Table structure for notification
-- ----------------------------
DROP TABLE IF EXISTS `notification`;
CREATE TABLE `notification` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`receiver_id` int(11) DEFAULT NULL,
`model_id` int(11) DEFAULT NULL,
`model_name` varchar(255) DEFAULT NULL,
`title` varchar(255) DEFAULT NULL,
`type` varchar(45) DEFAULT NULL,
`is_read` tinyint(1) DEFAULT '0',
`message` mediumtext COLLATE utf8_unicode_ci,
`created_at` int(11) DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
`is_deleted` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `fk_notification_user_idx` (`receiver_id`),
CONSTRAINT `fk_notification_user` FOREIGN KEY (`receiver_id`) REFERENCES `user` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Table structure for settings
-- ----------------------------
DROP TABLE IF EXISTS `settings`;
CREATE TABLE `settings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`key` varchar(255) NOT NULL,
`value` mediumtext,
`created_at` int(11) DEFAULT NULL,
`created_by` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
`is_deleted` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
SET SQL_MODE=@OLD_SQL_MODE;
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS; |
<gh_stars>0
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Version : 50548
Source Host : localhost:3306
Source Database : practice
Target Server Type : MYSQL
Target Server Version : 50548
File Encoding : 65001
Date: 2018-07-29 18:05:03
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for t_dept
-- ----------------------------
DROP TABLE IF EXISTS `t_dept`;
CREATE TABLE `t_dept` (
`Did` int(11) NOT NULL,
`Dname` varchar(255) COLLATE utf8_bin NOT NULL,
`Dnumber` int(11) DEFAULT NULL,
`Mid` int(11) DEFAULT NULL,
PRIMARY KEY (`Did`),
KEY `Mid` (`Mid`),
CONSTRAINT `Mid` FOREIGN KEY (`Mid`) REFERENCES `t_man` (`Mid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Records of t_dept
-- ----------------------------
INSERT INTO `t_dept` VALUES ('1', '外语系', '511', '8001');
INSERT INTO `t_dept` VALUES ('2', '会计系', '560', '8002');
INSERT INTO `t_dept` VALUES ('3', '计算机系', '676', '8004');
INSERT INTO `t_dept` VALUES ('4', '建筑系', '333', '8005');
INSERT INTO `t_dept` VALUES ('5', '中文系', '245', '8003');
INSERT INTO `t_dept` VALUES ('6', '机电系', null, null);
INSERT INTO `t_dept` VALUES ('7', 'abc', '100', '8003');
-- ----------------------------
-- Table structure for t_man
-- ----------------------------
DROP TABLE IF EXISTS `t_man`;
CREATE TABLE `t_man` (
`Mid` int(11) NOT NULL,
`Mname` varchar(20) DEFAULT NULL,
`Mphone` varchar(11) DEFAULT NULL,
`Mage` int(11) DEFAULT NULL,
`Msex` varchar(10) DEFAULT NULL,
PRIMARY KEY (`Mid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of t_man
-- ----------------------------
INSERT INTO `t_man` VALUES ('8001', '周杰伦', '18812345543', '30', '男');
INSERT INTO `t_man` VALUES ('8002', '王力宏', '18854321123', '31', '女');
INSERT INTO `t_man` VALUES ('8003', '吴尊', '18898765123', '32', '男');
INSERT INTO `t_man` VALUES ('8004', '韩庚', '18875315895', '33', '男');
INSERT INTO `t_man` VALUES ('8005', '张韶涵', '15598726793', '29', '女');
-- ----------------------------
-- Table structure for t_student
-- ----------------------------
DROP TABLE IF EXISTS `t_student`;
CREATE TABLE `t_student` (
`Sid` int(11) NOT NULL,
`Sname` varchar(10) CHARACTER SET utf8 COLLATE utf8_czech_ci NOT NULL,
`Ssex` varchar(2) COLLATE utf8_bin DEFAULT NULL,
`Sage` int(11) DEFAULT NULL,
`Sclass` int(11) DEFAULT NULL,
`Did` int(11) DEFAULT NULL,
`Sbir` date DEFAULT NULL,
`Sscore` int(11) DEFAULT '0',
`Sename` varchar(20) COLLATE utf8_bin DEFAULT NULL,
`Sphone` varchar(11) COLLATE utf8_bin DEFAULT NULL,
PRIMARY KEY (`Sid`),
KEY `Did` (`Did`),
CONSTRAINT `t_student_ibfk_1` FOREIGN KEY (`Did`) REFERENCES `t_dept` (`Did`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ----------------------------
-- Records of t_student
-- ----------------------------
INSERT INTO `t_student` VALUES ('1203', '余少波', '男', '100', '2', '4', '1991-01-05', '600', 'Orange', '13100888003');
INSERT INTO `t_student` VALUES ('1204', '魏德心', '女', '21', '1', '3', '1993-01-14', '490', 'Tomato', '13100777004');
INSERT INTO `t_student` VALUES ('1205', '董小刚', '女', '20', '1', '1', '1996-09-30', '210', 'Beer\\\\', '13100990005');
INSERT INTO `t_student` VALUES ('1206', '高雨琪', '男', '17', '1', '1', '1989-03-01', '410', 'Cold9', '15109990011');
INSERT INTO `t_student` VALUES ('1207', '金莹', '女', '21', '1', '2', '1989-03-01', '444', 'Coffee', '15101230012');
INSERT INTO `t_student` VALUES ('1209', '张威', '女', '22', '1', '3', '1990-03-01', '611', 'Ice', '15106670014');
INSERT INTO `t_student` VALUES ('1210', '王宇航', '女', '23', '2', '4', '1993-03-01', '0', 'Rice.', '15112330015');
INSERT INTO `t_student` VALUES ('1211', '陈康平', '男', '19', '3', '4', '1991-03-01', '589', 'Egg ', '18112340111');
INSERT INTO `t_student` VALUES ('1213', '张涵', '女', '19', '2', '1', '1990-03-01', '621', ' Butter', '18103333113');
INSERT INTO `t_student` VALUES ('1216', '张小兰', '女', '21', '1', '4', '1991-03-01', '666', ' Sweet', '13712345678');
INSERT INTO `t_student` VALUES ('1217', '徐娟', '男', '21', '3', '1', '1994-11-11', '589', 'City', '13198736478');
INSERT INTO `t_student` VALUES ('1218', '李轩', '男', '22', '2', '1', '1991-11-05', '487', 'Tree', '15156789345');
INSERT INTO `t_student` VALUES ('1219', '陈杨君子', '女', '19', '3', '1', '1992-05-06', '587', 'Style', '18136482443');
INSERT INTO `t_student` VALUES ('1221', '王丽娜', '女', '25', '2', '4', '2014-07-15', '234', 'Time', '13106666987');
INSERT INTO `t_student` VALUES ('1222', '柳慧敏', '男', '24', '3', '5', '2014-02-19', '387', 'Get', '13106666801');
INSERT INTO `t_student` VALUES ('1223', '龚俊悦', '女', '24', '3', '5', '2014-08-18', '587', 'Post', '13104566001');
INSERT INTO `t_student` VALUES ('1224', '汪鹏青', '女', '27', '1', '4', '2014-05-13', '456', 'Dream', '13134666001');
INSERT INTO `t_student` VALUES ('1225', '董航', '女', '37', '3', '3', '2014-03-12', '365', 'Eat', '13107456001');
INSERT INTO `t_student` VALUES ('1226', '尤枭', '女', '25', '1', '3', '2013-10-15', '476', 'App', '13192566001');
INSERT INTO `t_student` VALUES ('1227', '胡鑫鹏', '女', '29', '2', '4', '2014-01-12', '678', 'Book', '14506666001');
INSERT INTO `t_student` VALUES ('1228', '刘淇', '女', '30', '3', '2', '1988-09-06', '587', 'Pad', '13108236001');
INSERT INTO `t_student` VALUES ('1229', '何梦亭', '女', '19', '3', '2', '1986-02-05', '467', 'Web', '13106687001');
INSERT INTO `t_student` VALUES ('1230', '郑远涛', '女', '26', '1', '4', '1993-12-21', '482', 'Cat', '17656666001');
INSERT INTO `t_student` VALUES ('1231', '徐鑫', '男', '23', '1', '3', '1999-09-09', '467', 'Mat', '13765566001');
INSERT INTO `t_student` VALUES ('1232', '王定椿', '女', '20', '3', '2', '1993-03-06', '432', 'Mate', '13106669875');
INSERT INTO `t_student` VALUES ('1234', '李磊', '女', '18', '2', '3', '1994-09-30', '256', 'Say', '13106667561');
DROP TRIGGER IF EXISTS `t_a`;
DELIMITER ;;
CREATE TRIGGER `t_a` AFTER INSERT ON `t_student` FOR EACH ROW update t_dept set dnum=dnum+1 where did=new.did;
;;
DELIMITER ;
DROP TRIGGER IF EXISTS `tri_afterDeleteFromEmp`;
DELIMITER ;;
CREATE TRIGGER `tri_afterDeleteFromEmp` AFTER DELETE ON `t_student` FOR EACH ROW update t_dept set dnumber = dnumber+1 where did=old.did
;;
DELIMITER ;
|
-- CreateEnum
CREATE TYPE "Mood" AS ENUM ('HAPPY', 'SAD', 'ORDINARY', 'ANGRY', 'DISTRESSED');
-- CreateEnum
CREATE TYPE "Day" AS ENUM ('MONDAY', 'TUESDAY', 'WEDNESDAY', 'THURSDAY', 'FRIDAY', 'SATURDAY', 'SUNDAY');
-- CreateEnum
CREATE TYPE "RepeatEach" AS ENUM ('NEVER', 'DAILY', 'WEEKLY', 'MONTHLY');
-- CreateTable
CREATE TABLE "User" (
"id" TEXT NOT NULL,
"username" TEXT NOT NULL,
"email" TEXT NOT NULL,
"password" TEXT NOT NULL,
CONSTRAINT "User_pkey" PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "Journal" (
"id" TEXT NOT NULL,
"completed" BOOLEAN NOT NULL DEFAULT false,
"title" TEXT NOT NULL,
"description" TEXT,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"updatedAt" TIMESTAMP(3) NOT NULL,
"userId" TEXT NOT NULL,
CONSTRAINT "Journal_pkey" PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "ActivityLog" (
"id" SERIAL NOT NULL,
"startedAt" TIMESTAMP(3),
"finishedAt" TIMESTAMP(3),
"journalId" TEXT NOT NULL,
CONSTRAINT "ActivityLog_pkey" PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "MoodEntry" (
"id" SERIAL NOT NULL,
"on" DATE NOT NULL DEFAULT CURRENT_TIMESTAMP,
"mood" "Mood" NOT NULL DEFAULT E'ORDINARY',
"userId" TEXT NOT NULL,
CONSTRAINT "MoodEntry_pkey" PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "Schedule" (
"id" SERIAL NOT NULL,
"userId" TEXT NOT NULL,
"title" TEXT NOT NULL,
"note" TEXT,
"startTime" TIME NOT NULL,
"endTime" TIME NOT NULL,
"repeatEach" "RepeatEach" NOT NULL DEFAULT E'NEVER',
CONSTRAINT "Schedule_pkey" PRIMARY KEY ("id")
);
-- CreateIndex
CREATE UNIQUE INDEX "User_username_key" ON "User"("username");
-- CreateIndex
CREATE UNIQUE INDEX "User_email_key" ON "User"("email");
-- CreateIndex
CREATE UNIQUE INDEX "MoodEntry_userId_on_key" ON "MoodEntry"("userId", "on");
-- AddForeignKey
ALTER TABLE "Journal" ADD CONSTRAINT "Journal_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "ActivityLog" ADD CONSTRAINT "ActivityLog_journalId_fkey" FOREIGN KEY ("journalId") REFERENCES "Journal"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "MoodEntry" ADD CONSTRAINT "MoodEntry_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "Schedule" ADD CONSTRAINT "Schedule_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
|
-- UPA Database setup and seed script
-- Drop tables before setup
DROP TABLE categories CASCADE CONSTRAINTS;
DROP TABLE products CASCADE CONSTRAINTS;
DROP TABLE product_units CASCADE CONSTRAINTS;
DELETE FROM USER_SDO_GEOM_METADATA WHERE table_name = 'PRODUCTS' AND column_name = 'GEOMETRY';
DELETE FROM USER_SDO_GEOM_METADATA WHERE table_name = 'PRODUCT_UNITS' AND column_name = 'GEOMETRY';
DROP INDEX units_geometry_sidx;
-- Tables setup
-- Products and categories
CREATE TABLE categories (
id INTEGER GENERATED by default on null as IDENTITY PRIMARY KEY,
name VARCHAR(128),
parent INTEGER NULL,
CONSTRAINT FK_ParentCategory FOREIGN KEY (parent)
REFERENCES Categories(id)
);
CREATE TABLE products (
id INTEGER GENERATED by default on null as IDENTITY PRIMARY KEY,
category_id INTEGER,
name VARCHAR(128),
price DECIMAL(8,4),
image ORDSYS.ORDImage,
image_si ORDSYS.SI_StillImage,
image_ac ORDSYS.SI_AverageColor,
image_ch ORDSYS.SI_ColorHistogram,
image_pc ORDSYS.SI_PositionalColor,
image_tx ORDSYS.SI_Texture,
geometry SDO_GEOMETRY,
geometry_meta_type VARCHAR(255),
geometry_meta_radius binary_double NULL,
geometry_meta_width binary_double NULL,
geometry_meta_height binary_double NULL,
CONSTRAINT FK_Category FOREIGN KEY (category_id)
REFERENCES Categories(id)
);
INSERT INTO USER_SDO_GEOM_METADATA VALUES (
'products', 'geometry',
-- products geometry
-- max size is that of the warehouse
-- all products will start on [0,0]
SDO_DIM_ARRAY(
SDO_DIM_ELEMENT('X', 0, 100, 0.01),
SDO_DIM_ELEMENT('Y', 0, 50, 0.01)
),
NULL
);
CREATE TABLE product_units (
id INTEGER GENERATED by default on null as IDENTITY PRIMARY KEY,
product_id INTEGER,
checked_in DATE,
checked_out DATE NULL,
geometry SDO_GEOMETRY,
geometry_meta_x binary_double NULL,
geometry_meta_y binary_double NULL,
CONSTRAINT FK_Placement FOREIGN KEY (product_id)
REFERENCES products(id)
);
INSERT INTO USER_SDO_GEOM_METADATA VALUES (
'product_units', 'geometry',
-- warehouse 100x50 metres
SDO_DIM_ARRAY(
SDO_DIM_ELEMENT('X', 0, 100, 0.01),
SDO_DIM_ELEMENT('Y', 0, 50, 0.01)
),
NULL
);
CREATE INDEX units_geometry_sidx ON product_units(geometry) INDEXTYPE IS MDSYS.SPATIAL_INDEX;
-- Seeding
INSERT INTO categories (name, parent) VALUES ('uno', NULL);
INSERT INTO categories (name, parent) VALUES ('dos', NULL);
INSERT INTO categories (name, parent) VALUES ('tres', NULL);
INSERT INTO categories (name, parent) VALUES ('quatro', NULL);
INSERT INTO products (category_id, name, price, image) VALUES ('1', 'SuperProduct', 42, ordsys.ordimage.init());
INSERT INTO products (category_id, name, price, image) VALUES ('2', 'MegaProduct', 69, ordsys.ordimage.init());
INSERT INTO products (category_id, name, price, image) VALUES ('3', 'UltraProduct', 9, ordsys.ordimage.init());
INSERT INTO product_units (product_id, checked_in, checked_out) VALUES ('1', TO_DATE('2019-12-16 13:17:27', 'YYYY-MM-DD HH24:MI:SS'), NULL);
|
<filename>portfolio.sql
-- phpMyAdmin SQL Dump
-- version 4.7.9
-- https://www.phpmyadmin.net/
--
-- Hôte : 127.0.0.1
-- Généré le : lun. 11 juin 2018 à 19:18
-- Version du serveur : 10.1.31-MariaDB
-- Version de PHP : 7.2.3
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Base de données : `portfolio`
--
-- --------------------------------------------------------
--
-- Structure de la table `contact_information`
--
CREATE TABLE `contact_information` (
`id` int(11) NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`surname` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`mail` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`phone_number` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`pictures_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`rue` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`number` int(11) NOT NULL,
`locality` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`postal` int(11) NOT NULL,
`country` varchar(255) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `education_training`
--
CREATE TABLE `education_training` (
`id` int(11) NOT NULL,
`institute` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`subjects_studied` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`date_start` datetime NOT NULL,
`end_date` datetime NOT NULL,
`user_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `education_training`
--
INSERT INTO `education_training` (`id`, `institute`, `subjects_studied`, `date_start`, `end_date`, `user_id`) VALUES
(1, 'Technobel', 'Web Developpement', '2018-01-15 00:00:00', '2018-07-17 00:00:00', 3),
(2, ':lfjgdlfj', 'dskjhgsk', '2013-01-01 00:00:00', '2013-01-01 00:00:00', 4);
-- --------------------------------------------------------
--
-- Structure de la table `fosusers`
--
CREATE TABLE `fosusers` (
`id` int(11) NOT NULL,
`username` varchar(180) COLLATE utf8_unicode_ci NOT NULL,
`username_canonical` varchar(180) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(180) COLLATE utf8_unicode_ci NOT NULL,
`email_canonical` varchar(180) COLLATE utf8_unicode_ci NOT NULL,
`enabled` tinyint(1) NOT NULL,
`salt` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`last_login` datetime DEFAULT NULL,
`confirmation_token` varchar(180) COLLATE utf8_unicode_ci DEFAULT NULL,
`password_requested_at` datetime DEFAULT NULL,
`roles` longtext COLLATE utf8_unicode_ci NOT NULL COMMENT '(DC2Type:array)',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`picture` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`street` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`number` int(11) DEFAULT NULL,
`lacality` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`postal` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`country` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `fosusers`
--
INSERT INTO `fosusers` (`id`, `username`, `username_canonical`, `email`, `email_canonical`, `enabled`, `salt`, `password`, `last_login`, `confirmation_token`, `password_requested_at`, `roles`, `name`, `phone`, `picture`, `street`, `number`, `lacality`, `postal`, `country`) VALUES
(3, 'Lionel', 'lionel', '<EMAIL>', '<EMAIL>', 1, NULL, '$2y$13$yxw5bveIWt/wmKsjqRl2Sul1gRDuI09MeR7wUkNgBySAg0O3UglFm', '2018-06-11 17:44:36', NULL, NULL, 'a:0:{}', 'Dabee', '0473286699', '', 'rue du Roptay', 8, 'Bievre', '5555', 'Belgique'),
(4, 'test1', 'test1', '<EMAIL>', '<EMAIL>', 1, NULL, '$2y$13$MIqYX5ItuNmKKItuQvLem.XF620/2.WQ/3PUPy.JBd4.V.XEbkE26', '2018-06-11 18:58:16', NULL, NULL, 'a:0:{}', 'nametest', '45747647', NULL, 'fdghdsfh', 4, 'kjgjhgu', '54645', 'kjgkjgiyu');
-- --------------------------------------------------------
--
-- Structure de la table `hobbies`
--
CREATE TABLE `hobbies` (
`id` int(11) NOT NULL,
`entitled` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`descriptive` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`user_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `hobbies`
--
INSERT INTO `hobbies` (`id`, `entitled`, `descriptive`, `user_id`) VALUES
(1, 'Pratique du piano', 'blablabla', 3);
-- --------------------------------------------------------
--
-- Structure de la table `linguistic_knowledge`
--
CREATE TABLE `linguistic_knowledge` (
`id` int(11) NOT NULL,
`languages` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`level` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`user_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `linguistic_knowledge`
--
INSERT INTO `linguistic_knowledge` (`id`, `languages`, `level`, `user_id`) VALUES
(1, 'Anglais', 'Moyen', 3);
-- --------------------------------------------------------
--
-- Structure de la table `professional_activities`
--
CREATE TABLE `professional_activities` (
`id` int(11) NOT NULL,
`profession` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`employer` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`date_of_entry` datetime NOT NULL,
`end_date` datetime NOT NULL,
`tasks` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`user_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `professional_activities`
--
INSERT INTO `professional_activities` (`id`, `profession`, `employer`, `date_of_entry`, `end_date`, `tasks`, `user_id`) VALUES
(2, 'Manager', 'Sun7 Presse', '2014-11-20 00:00:00', '2017-04-15 00:00:00', 'blabla', 3);
-- --------------------------------------------------------
--
-- Structure de la table `skills`
--
CREATE TABLE `skills` (
`id` int(11) NOT NULL,
`entitled` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`descriptive` varchar(255) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Index pour les tables déchargées
--
--
-- Index pour la table `contact_information`
--
ALTER TABLE `contact_information`
ADD PRIMARY KEY (`id`);
--
-- Index pour la table `education_training`
--
ALTER TABLE `education_training`
ADD PRIMARY KEY (`id`),
ADD KEY `IDX_5D06F406A76ED395` (`user_id`);
--
-- Index pour la table `fosusers`
--
ALTER TABLE `fosusers`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `UNIQ_514F67C292FC23A8` (`username_canonical`),
ADD UNIQUE KEY `UNIQ_514F67C2A0D96FBF` (`email_canonical`),
ADD UNIQUE KEY `UNIQ_514F67C2C05FB297` (`confirmation_token`);
--
-- Index pour la table `hobbies`
--
ALTER TABLE `hobbies`
ADD PRIMARY KEY (`id`),
ADD KEY `IDX_38CA341DA76ED395` (`user_id`);
--
-- Index pour la table `linguistic_knowledge`
--
ALTER TABLE `linguistic_knowledge`
ADD PRIMARY KEY (`id`),
ADD KEY `IDX_DA555DDFA76ED395` (`user_id`);
--
-- Index pour la table `professional_activities`
--
ALTER TABLE `professional_activities`
ADD PRIMARY KEY (`id`),
ADD KEY `IDX_829CD75CA76ED395` (`user_id`);
--
-- Index pour la table `skills`
--
ALTER TABLE `skills`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT pour les tables déchargées
--
--
-- AUTO_INCREMENT pour la table `contact_information`
--
ALTER TABLE `contact_information`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT pour la table `education_training`
--
ALTER TABLE `education_training`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT pour la table `fosusers`
--
ALTER TABLE `fosusers`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT pour la table `hobbies`
--
ALTER TABLE `hobbies`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT pour la table `linguistic_knowledge`
--
ALTER TABLE `linguistic_knowledge`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT pour la table `professional_activities`
--
ALTER TABLE `professional_activities`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT pour la table `skills`
--
ALTER TABLE `skills`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- Contraintes pour les tables déchargées
--
--
-- Contraintes pour la table `education_training`
--
ALTER TABLE `education_training`
ADD CONSTRAINT `FK_5D06F406A76ED395` FOREIGN KEY (`user_id`) REFERENCES `fosusers` (`id`);
--
-- Contraintes pour la table `hobbies`
--
ALTER TABLE `hobbies`
ADD CONSTRAINT `FK_38CA341DA76ED395` FOREIGN KEY (`user_id`) REFERENCES `fosusers` (`id`);
--
-- Contraintes pour la table `linguistic_knowledge`
--
ALTER TABLE `linguistic_knowledge`
ADD CONSTRAINT `FK_DA555DDFA76ED395` FOREIGN KEY (`user_id`) REFERENCES `fosusers` (`id`);
--
-- Contraintes pour la table `professional_activities`
--
ALTER TABLE `professional_activities`
ADD CONSTRAINT `FK_829CD75CA76ED395` FOREIGN KEY (`user_id`) REFERENCES `fosusers` (`id`);
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
<filename>sigt.sql
-- phpMyAdmin SQL Dump
-- version 4.7.6
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: 13-Jun-2019 às 12:47
-- Versão do servidor: 10.1.29-MariaDB
-- PHP Version: 7.1.12
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `sigt`
--
-- --------------------------------------------------------
--
-- Estrutura da tabela `administracao`
--
CREATE TABLE `administracao` (
`id` int(11) NOT NULL,
`nome` varchar(100) NOT NULL,
`estado` int(11) NOT NULL,
`id_reparticao` int(11) NOT NULL,
`id_municipio` int(11) NOT NULL,
`id_utilizador` int(11) NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `administracao`
--
INSERT INTO `administracao` (`id`, `nome`, `estado`, `id_reparticao`, `id_municipio`, `id_utilizador`, `data_criacao`) VALUES
(1, 'ADMINISTRAÇÃO MUNICIPAL - BUNDAS', 1, 2, 51, 10, '2018-04-29 14:29:15'),
(2, 'ADMINISTRAÇÃO MUNICIPAL - AMBOÃM', 0, 1, 2, 11, '2018-04-28 17:11:41'),
(3, 'ADMINISTRAÇÃO MUNICIPAL - BUCO-ZAU', 0, 3, 28, 12, '2018-04-28 19:11:05'),
(4, 'ADMINISTRAÇÃO MUNICIPAL - SAURIMO', 0, 4, 89, 13, '2018-04-29 12:21:09'),
(5, 'ADMINISTRAÇÃO MUNICIPAL - UÃGE', 0, 1000, 127, 3, '2018-04-29 15:50:34');
-- --------------------------------------------------------
--
-- Estrutura da tabela `administracao_role`
--
CREATE TABLE `administracao_role` (
`id` int(11) NOT NULL,
`id_administracao` int(11) NOT NULL,
`id_role` int(11) NOT NULL,
`id_utilizador` int(11) NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `administracao_role`
--
INSERT INTO `administracao_role` (`id`, `id_administracao`, `id_role`, `id_utilizador`, `data_criacao`) VALUES
(1, 1, 5, 3, '2018-04-29 15:41:38');
-- --------------------------------------------------------
--
-- Estrutura da tabela `assunto`
--
CREATE TABLE `assunto` (
`id` int(11) NOT NULL,
`nome` varchar(50) NOT NULL,
`id_utilizador` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `assunto`
--
INSERT INTO `assunto` (`id`, `nome`, `id_utilizador`) VALUES
(1, 'Aquisição', 3),
(2, 'Legalização', 3);
-- --------------------------------------------------------
--
-- Estrutura da tabela `bairro`
--
CREATE TABLE `bairro` (
`id` int(11) NOT NULL,
`nome` varchar(40) NOT NULL,
`id_comuna` int(11) NOT NULL,
`estado` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `bairro`
--
INSERT INTO `bairro` (`id`, `nome`, `id_comuna`, `estado`) VALUES
(1, 'Boa Esperança', 22, 1),
(2, 'Paraíso', 22, 1),
(6, 'Vila Nova', 2, 0),
(7, 'Vila Cativa', 3, 0),
(8, '<NAME>', 3, 0),
(9, '<NAME>', 3, 0),
(10, '<NAME>', 3, 0),
(11, '<NAME>', 3, 0),
(12, '<NAME>', 21, 0),
(13, '<NAME>', 24, 0),
(14, '<NAME>', 24, 0),
(15, '<NAME>', 21, 0),
(16, '<NAME>', 24, 0),
(17, 'Quiminha', 21, 0);
-- --------------------------------------------------------
--
-- Estrutura da tabela `candidato`
--
CREATE TABLE `candidato` (
`id` int(11) NOT NULL,
`id_utente` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `candidato`
--
INSERT INTO `candidato` (`id`, `id_utente`) VALUES
(1, 12);
-- --------------------------------------------------------
--
-- Estrutura da tabela `candidatura`
--
CREATE TABLE `candidatura` (
`id` int(11) NOT NULL,
`id_candidato` int(11) NOT NULL,
`id_projecto` int(11) NOT NULL,
`id_combinacao_terreno` int(11) NOT NULL,
`data` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`estado` int(11) NOT NULL,
`numero` varchar(45) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `candidatura`
--
INSERT INTO `candidatura` (`id`, `id_candidato`, `id_projecto`, `id_combinacao_terreno`, `data`, `estado`, `numero`) VALUES
(1, 1, 1, 4, '2019-02-25 15:56:31', 1, '1');
-- --------------------------------------------------------
--
-- Estrutura da tabela `candidatura_documento`
--
CREATE TABLE `candidatura_documento` (
`id` int(10) UNSIGNED NOT NULL,
`id_candidatura` int(10) UNSIGNED NOT NULL,
`id_documento` int(10) UNSIGNED NOT NULL,
`caminho` varchar(150) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Extraindo dados da tabela `candidatura_documento`
--
INSERT INTO `candidatura_documento` (`id`, `id_candidatura`, `id_documento`, `caminho`) VALUES
(1, 1, 2, 'http://localhost/dhulka/uploaded_docs/dhulka-candidatura-fb968260b74987e2bcec81230cdfef4b.jpg'),
(2, 1, 3, 'http://localhost/dhulka/uploaded_docs/dhulka-candidatura-ce8a3230dfdf96143f8cb3b5d180e4a6.jpg'),
(3, 1, 4, 'http://localhost/dhulka/uploaded_docs/dhulka-candidatura-7410c47a6722fd6bf8360e27dcb9d7af.jpg'),
(4, 1, 6, 'http://localhost/dhulka/uploaded_docs/dhulka-candidatura-7c566a489a59e9ddd0e11fdbbc49b714.jpg'),
(5, 1, 7, 'http://localhost/dhulka/uploaded_docs/dhulka-candidatura-f89895f4df95c38dccd5a26c42e156a9.jpg');
-- --------------------------------------------------------
--
-- Estrutura da tabela `caracteristica_inicial_terreno`
--
CREATE TABLE `caracteristica_inicial_terreno` (
`id` int(11) NOT NULL,
`id_processo` int(11) DEFAULT NULL,
`id_bairro` int(11) DEFAULT NULL,
`quarteirao` varchar(50) DEFAULT NULL,
`rua` varchar(500) DEFAULT NULL,
`dimensao_terreno` varchar(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `caracteristica_inicial_terreno`
--
INSERT INTO `caracteristica_inicial_terreno` (`id`, `id_processo`, `id_bairro`, `quarteirao`, `rua`, `dimensao_terreno`) VALUES
(1, 1, 2, '9', '10', '30*20'),
(2, 2, 1, '10', '10', '25*20'),
(3, 3, 2, '10', '2', '30*20'),
(4, 4, 2, '12', '12', '60*40'),
(5, 5, 0, '', '', '*'),
(6, 6, 2, '12', '12', '30*20'),
(7, 1, 1, '10', '20', '30*20'),
(8, 2, 1, '10', '7', '30*20'),
(9, 1, 2, '10', '17', '30*20'),
(10, 2, 1, '8', '90', '30*20'),
(11, 3, 2, '7', '9', '20*20'),
(12, 9, NULL, NULL, NULL, 'undefined*undefined');
-- --------------------------------------------------------
--
-- Estrutura da tabela `caracteristica_terreno_projecto`
--
CREATE TABLE `caracteristica_terreno_projecto` (
`id` int(11) NOT NULL,
`id_projecto` int(11) NOT NULL,
`id_combinacao` int(11) NOT NULL,
`qtde_terreno` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `caracteristica_terreno_projecto`
--
INSERT INTO `caracteristica_terreno_projecto` (`id`, `id_projecto`, `id_combinacao`, `qtde_terreno`) VALUES
(1, 1, 1, 3),
(2, 1, 2, 3),
(3, 1, 3, 1),
(4, 1, 4, 2),
(5, 2, 1, 2),
(6, 2, 2, 2),
(7, 2, 3, 2),
(8, 2, 4, 2),
(9, 2, 5, 2),
(10, 3, 1, 10),
(11, 3, 2, 30),
(12, 3, 3, 40),
(13, 3, 4, 20),
(14, 3, 1, 10),
(15, 3, 2, 30),
(16, 3, 3, 40),
(17, 3, 4, 20);
-- --------------------------------------------------------
--
-- Estrutura da tabela `cidadao`
--
CREATE TABLE `cidadao` (
`id` int(11) NOT NULL,
`nome` varchar(80) NOT NULL,
`data_nascimento` date NOT NULL,
`tipo_doc` varchar(8) NOT NULL,
`numero_doc` varchar(20) NOT NULL,
`data_emissao_doc` date NOT NULL,
`id_pais` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `cidadao`
--
INSERT INTO `cidadao` (`id`, `nome`, `data_nascimento`, `tipo_doc`, `numero_doc`, `data_emissao_doc`, `id_pais`) VALUES
(1, '<NAME>', '1988-10-30', 'bi', '002831985KS039', '2014-05-15', 6),
(2, '<NAME>', '1993-06-16', 'pspt', '002387917LA012', '1970-01-01', 6),
(3, '<NAME>', '1992-05-18', 'pspt', '002387876LA012', '1970-01-01', 6),
(4, '<NAME>', '1984-06-12', 'pspt', '002998871LA011', '1970-01-01', 6),
(6, '<NAME> <NAME>', '1989-10-29', 'pspt', '002376091LA012', '1970-01-01', 6),
(18, '<NAME>', '1990-02-13', 'pspt', '008765234LA012', '1970-01-01', 6),
(22, '<NAME>', '1998-07-03', 'pspt', '003546765LA012', '1970-01-01', 6),
(23, '<NAME>', '1995-07-19', 'pspt', '002833976KN023', '1970-01-01', 6),
(33, '<NAME>', '1994-06-07', 'pspt', '009812098LA019', '2018-02-13', 6),
(34, '<NAME>', '1989-10-24', 'pspt', '009287981KS012', '2018-06-05', 6),
(35, '<NAME>', '1970-01-01', 'pspt', '00988700', '1970-01-01', 6),
(36, '<NAME>', '1970-01-01', 'pspt', '00123991LA012', '1970-01-01', 6),
(37, '<NAME>', '2018-12-04', 'pspt', '012837LA012', '1970-01-01', 6),
(38, '<NAME>', '1999-01-02', 'bi', '', '2019-02-01', 6),
(39, '<NAME>', '1999-01-02', 'bi', '', '2019-02-01', 6),
(40, '<NAME>', '1984-12-06', 'bi', '001834764ME858', '2018-10-07', 6),
(41, '<NAME>', '1970-01-01', 'bi', '002338394HO384', '1970-01-01', 6),
(42, '<NAME>', '1993-07-02', 'bi', '008273817KS373', '1970-01-01', 6),
(44, '<NAME>', '1999-12-01', 'bi', '008666676HA655', '1970-01-01', 6),
(45, '<NAME>', '1984-04-06', 'bi', '008878998LN087', '2018-01-01', 6),
(46, '<NAME>', '1970-01-01', 'bi', '003245678HO027', '1970-01-01', 6),
(47, '<NAME>', '1990-01-30', 'pspt', '093844398LA834', '2019-06-10', 6);
-- --------------------------------------------------------
--
-- Estrutura da tabela `combinacoes_terreno`
--
CREATE TABLE `combinacoes_terreno` (
`id` int(11) NOT NULL,
`combinacao` varchar(10) NOT NULL,
`estado` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `combinacoes_terreno`
--
INSERT INTO `combinacoes_terreno` (`id`, `combinacao`, `estado`) VALUES
(1, '15x20', 1),
(2, '20x15', 1),
(3, '20x20', 1),
(4, '20x30', 1),
(5, '30x20', 1);
-- --------------------------------------------------------
--
-- Estrutura da tabela `comuna`
--
CREATE TABLE `comuna` (
`id` int(11) NOT NULL,
`nome` varchar(80) NOT NULL,
`id_municipio` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `comuna`
--
INSERT INTO `comuna` (`id`, `nome`, `id_municipio`) VALUES
(1, '<NAME>', 1),
(2, 'Quenguela', 1),
(3, '<NAME>', 1),
(4, 'Ramiros', 1),
(5, '<NAME>', 1),
(6, 'Cabolombo', 1),
(7, 'Kilamba', 1),
(8, 'Ingombota', 5),
(9, 'Sambizanga', 5),
(10, 'Rangel', 5),
(11, 'Maianga', 5),
(12, 'Samba', 5),
(13, '<NAME>', 5),
(14, '<NAME>', 5),
(15, 'Cazenga', 3),
(16, '<NAME>', 3),
(17, '11 de Novembro', 3),
(18, '<NAME>', 3),
(19, '<NAME>', 3),
(20, 'Kalawenha', 3),
(21, 'Funda', 2),
(22, 'Kikolo', 2),
(23, '<NAME>', 2),
(24, 'Sequele', 2),
(25, 'Calumbo', 9),
(26, 'Viana', 9),
(27, 'Estalagem', 9),
(28, 'Kikuxi', 9),
(29, 'Baía', 9),
(30, 'Zango', 9),
(31, '<NAME>', 9),
(32, 'Cassoneca', 4),
(33, 'Catete', 4),
(34, '<NAME>', 4),
(35, 'Cabiri', 4),
(36, '<NAME>', 4),
(37, '<NAME>', 4),
(38, 'Quiminha', 4),
(39, 'Muxima', 8),
(40, '<NAME>', 8),
(41, 'Quixinge', 8),
(42, 'Mumbondo', 8),
(43, '<NAME>', 8),
(44, '<NAME>', 6),
(45, 'Golfe', 6),
(46, 'Sapú', 6),
(47, 'Palanca', 6),
(48, '<NAME>', 6),
(49, 'Mussulo', 7),
(50, 'Benfica', 7),
(51, '<NAME>', 7),
(52, '<NAME>', 7),
(53, 'Talatona', 7),
(54, 'Camama', 7),
(55, 'Cidade Universitária', 7),
(56, '<NAME>', 11),
(57, 'Caxito', 11),
(58, 'Mabubas', 11),
(59, 'Quicabo', 11),
(60, 'Úcua', 11),
(61, '<NAME>', 10),
(62, 'Ambriz', 10),
(63, 'Tabi', 10),
(64, 'Bula-Atumba', 13),
(65, 'Quiage', 13),
(66, 'Quibaxe', 12),
(67, 'Piri', 12),
(68, 'Paredes', 12),
(69, 'Coxe', 12),
(70, 'Canacassala', 14),
(71, 'Quicunzo', 14),
(72, 'Muxaluando ', 14),
(73, 'Quixico', 14),
(74, 'Gombe', 14),
(75, 'Cage-Mazumbo', 14),
(76, 'Zala', 14),
(77, 'Pango-Aluquém', 15),
(78, 'Cazuangongo', 15),
(79, 'Balombo ', 16),
(80, 'Chingongo', 16),
(81, 'Chindumbo', 16),
(82, 'Maca', 16),
(83, 'Monbolo', 16),
(84, '<NAME>', 17),
(85, '<NAME>', 17),
(86, 'Calohanga', 17),
(87, 'Equimina', 17),
(88, 'Benguela', 18),
(89, 'Bocoio ', 19),
(90, '<NAME>', 19),
(91, '<NAME>', 19),
(92, 'Chila', 19),
(93, 'Passe', 19),
(94, 'Caimbambo ', 20),
(95, 'Catengue', 20),
(96, 'Caiave', 20),
(97, 'Canhamela', 20),
(98, 'Viangombe', 20),
(99, 'Catumbela ', 21),
(100, 'Biópio', 21),
(101, 'Gama', 21),
(102, '<NAME>', 21),
(103, 'Chongorói ', 22),
(104, 'Bolongueira', 22),
(105, 'Camuine', 22),
(106, 'Capupa', 23),
(107, 'Cubal ', 23),
(108, 'Tumbulo', 23),
(109, 'Lambala', 23),
(110, 'Ganda ', 24),
(111, 'Ebanga', 24),
(112, 'Chicuma', 24),
(113, 'Babaera', 24),
(114, 'Casseque', 24),
(115, '<NAME>', 25),
(116, 'Lobito ', 25),
(117, 'Canata', 25),
(118, 'Canjala', 25),
(119, 'Andulo ', 26),
(120, 'Calucinga', 26),
(121, 'Chivaúlo', 26),
(122, 'Ringoma', 27),
(123, 'Camacupa ', 27),
(124, 'Muinha', 27),
(125, 'Umpulo', 27),
(126, 'Cuanza', 27),
(127, 'Catabola ', 28),
(128, 'Chipeta', 28),
(129, 'Caiuera', 28),
(130, 'Chiuca', 28),
(131, 'Sande', 28),
(132, 'Chinguar ', 29),
(133, 'Cutato', 29),
(134, 'Cangote', 29),
(135, 'Cachingues', 30),
(136, 'Chitembo ', 30),
(137, 'Mutumbo', 30),
(138, 'Mumbué', 30),
(139, 'Malengue', 30),
(140, '<NAME>', 30),
(141, 'Luando', 31),
(142, 'Munhango', 31),
(143, 'Cuemba ', 31),
(144, 'Sachinemuna', 31),
(145, '<NAME>', 32),
(146, 'Cunhinga', 32),
(147, 'Cuito', 33),
(148, 'Chicala', 33),
(149, 'Cunje', 33),
(150, 'Trumba', 33),
(151, 'Cambândua', 33),
(152, '\'harea', 34),
(153, 'Gamba', 34),
(154, 'Lúbia', 34),
(155, 'Caiei', 34),
(156, 'Dando', 34),
(157, 'Miconje', 35),
(158, 'Belize', 35),
(159, 'Luali', 35),
(160, '<NAME>', 36),
(161, 'Necuto', 36),
(162, 'Inhuca', 36),
(163, 'Cabinda ', 37),
(164, 'Malembo', 37),
(165, '<NAME>', 37),
(166, 'Cacongo', 38),
(167, 'Dinge', 38),
(168, 'Massabi', 38),
(169, 'Cahama ', 39),
(170, 'Otchinjau', 39),
(171, 'Ondjiva', 40),
(172, '<NAME>', 40),
(173, 'Evale', 40),
(174, '<NAME>', 40),
(175, 'Oncócua', 41),
(176, 'Chitado', 41),
(177, 'Mupa', 42),
(178, 'Mukolongodjo', 42),
(179, 'Calonga', 42),
(180, 'Cassueca', 42),
(181, 'Namacunde', 43),
(182, 'Chiede', 43),
(183, 'Humbe', 44),
(184, 'Mucope', 44),
(185, 'Naulila', 44),
(186, '<NAME>', 44),
(187, 'Xangongo ', 44),
(188, 'Bimbe', 45),
(189, 'Bailundo ', 45),
(190, 'Lunje', 45),
(191, 'Luvemba', 45),
(192, 'Hengue', 45),
(193, 'Chiumbo', 46),
(194, 'Chinhama', 46),
(195, 'Cachiungo ', 46),
(196, 'Caála', 47),
(197, 'Catata', 47),
(198, 'Calenga', 47),
(199, 'Cuima', 47),
(200, 'Quipeio', 48),
(201, 'Ecunha ', 48),
(202, 'Huambo ', 49),
(203, 'Calima', 49),
(204, 'Chipipa', 49),
(205, 'Londuimbali ', 50),
(206, 'Cumbira', 50),
(207, 'Galanga', 50),
(208, 'Ussoque', 50),
(209, '<NAME>', 50),
(210, 'Lépi', 51),
(211, '<NAME>', 51),
(212, 'Chilata', 51),
(213, 'Longonjo', 51),
(214, 'Mungo ', 52),
(215, 'Cambuengo', 52),
(216, 'Sambo', 53),
(217, 'Mbave', 53),
(218, '<NAME>', 53),
(219, 'Samboto', 53),
(220, 'Chinjenje ', 54),
(221, 'Chiaca', 54),
(222, 'Ucuma ', 55),
(223, 'Cacoma', 55),
(224, 'Mundundo', 55),
(225, 'Caconda ', 56),
(226, 'Gungui', 56),
(227, 'Uaba', 56),
(228, 'Cusse', 56),
(229, 'Chituto', 57),
(230, 'Vite-Vivali', 57),
(231, 'Cacula', 57),
(232, 'Tchicuaqueia', 57),
(233, 'Caluquembe', 58),
(234, 'Calépi', 58),
(235, 'Ngola', 58),
(236, 'Chimbemba', 59),
(237, 'Chiange', 59),
(238, 'Chibia ', 60),
(239, 'Jau', 60),
(240, '<NAME>', 60),
(241, 'Cavilongo', 60),
(242, 'Quihita', 60),
(243, 'Chicomba ', 61),
(244, 'Cutenda', 61),
(245, 'Bambi', 62),
(246, 'Chipindo', 62),
(247, 'Humpata ', 63),
(248, 'Dongo', 64),
(249, 'Cassinga', 64),
(250, 'Jamba ', 64),
(251, 'Cuvango', 65),
(252, 'Galangue', 65),
(253, 'Vicungo', 65),
(254, 'Lubango ', 66),
(255, 'Hoque', 66),
(256, 'Arimba', 66),
(257, 'Huíla', 66),
(258, 'Capelongo', 67),
(259, 'Matala ', 67),
(260, 'Mulondo', 67),
(261, 'Quilengues ', 68),
(262, 'Impulo', 68),
(263, 'Dinde', 68),
(264, 'Quipungo', 69),
(265, 'Maué', 70),
(266, 'Calai', 70),
(267, 'Mavengue', 70),
(268, 'Savate', 71),
(269, 'Caíla', 71),
(270, 'Cuangar ', 71),
(271, 'Cuchi', 72),
(272, 'Cutato', 72),
(273, 'Chinguanja', 72),
(274, 'Vissati', 72),
(275, 'Lupire', 73),
(276, '<NAME>', 73),
(277, 'Longa', 73),
(278, '<NAME>', 73),
(279, 'Dirico ', 74),
(280, 'Mucusso', 74),
(281, 'Xamavera', 74),
(282, 'Rito', 75),
(283, 'Nancova', 75),
(284, 'Mavinga ', 76),
(285, 'Cutuile', 76),
(286, 'Cunjamba', 76),
(287, 'Luengue', 76),
(288, 'Caiundo', 77),
(289, 'Menongue ', 77),
(290, 'Cueio', 77),
(291, 'Missombo', 77),
(292, 'Rivungo ', 78),
(293, 'Xipundo', 78),
(294, 'Luiana', 78),
(295, 'Camabatela', 79),
(296, 'Tango', 79),
(297, 'Maua', 79),
(298, 'Bindo', 79),
(299, 'Luinga', 79),
(300, 'Banga ', 80),
(301, '<NAME>', 80),
(302, '<NAME>', 80),
(303, 'Cariamba', 80),
(304, 'Bolongongo ', 81),
(305, 'Terreiro', 81),
(306, 'Quiquiemba', 81),
(307, 'Dondo ', 82),
(308, 'Massangano', 82),
(309, '<NAME>', 82),
(310, '<NAME>', 82),
(311, '<NAME>', 82),
(312, 'Ndalatando ', 83),
(313, 'Canhoca', 83),
(314, '<NAME>', 84),
(315, 'Cambondo', 84),
(316, 'Cêrca', 84),
(317, 'Quiluanje', 84),
(318, '<NAME>', 85),
(319, 'Camame', 85),
(320, 'Cavunga', 85),
(321, 'Lucala', 86),
(322, 'Quiangombe', 86),
(323, 'Quiculungo', 87),
(324, '<NAME>', 88),
(325, '<NAME>', 88),
(326, 'Gabela', 89),
(327, 'Assango', 89),
(328, 'Cassongue', 90),
(329, 'Pambangala', 90),
(330, 'Dumbi', 90),
(331, 'Atóme', 90),
(332, 'Conda', 91),
(333, 'Cunjo', 91),
(334, 'Ebo', 92),
(335, 'Condé', 92),
(336, 'Quissanje', 92),
(337, 'Calulo', 93),
(338, 'Munenga', 93),
(339, 'Cabuta', 93),
(340, 'Quissongo', 93),
(341, 'Mussende', 94),
(342, 'Quienha', 94),
(343, '<NAME>', 94),
(344, 'Capolo', 95),
(345, '<NAME>', 95),
(346, 'Quibala', 96),
(347, '<NAME>', 96),
(348, 'Cariango', 96),
(349, 'Lonhe', 96),
(350, 'Quilenda', 97),
(351, 'Quirimbo', 97),
(352, 'Seles', 98),
(353, 'Amboiva', 98),
(354, 'Botera', 98),
(355, 'Sumbe', 99),
(356, 'Gungo', 99),
(357, 'Gangula', 99),
(358, 'Quicombo', 99),
(359, 'Sanga', 100),
(360, '<NAME>', 100),
(361, '<NAME>', 100),
(362, 'Luia', 101),
(363, 'Cachimo', 101),
(364, 'Cuanzar', 101),
(365, 'Cambulo', 101),
(366, '<NAME>', 102),
(367, 'Xinge', 102),
(368, 'Camaxilo', 103),
(369, 'Caungula', 103),
(370, 'Chitato', 104),
(371, 'Luachimo', 104),
(372, 'Cuango', 105),
(373, 'Luremo', 105),
(374, 'Cuilo', 106),
(375, 'Caluango', 106),
(376, ' Lubalo', 107),
(377, 'Luangue', 107),
(378, 'Muvuluege', 107),
(379, 'Lucapa', 108),
(380, 'Capaia', 108),
(381, 'Camissombo', 108),
(382, '<NAME>', 108),
(383, '<NAME>', 109),
(384, 'Iongo', 109),
(385, '<NAME>', 109),
(386, 'Lóvua', 110),
(387, 'Xassengue', 111),
(388, 'Cacumbi', 111),
(389, '<NAME>', 111),
(390, 'Cacolo', 111),
(391, 'Dala', 112),
(392, '<NAME>', 112),
(393, 'Cazage', 112),
(394, 'Chiluage', 113),
(395, '<NAME>', 113),
(396, 'Muriege', 113),
(397, 'Muconda', 113),
(398, 'Saurimo', 114),
(399, '<NAME>', 114),
(400, 'Sombo', 114),
(401, 'Cacuso', 115),
(402, 'Lombe', 115),
(403, 'Quizenga', 115),
(404, '<NAME>', 115),
(405, 'Soqueco', 115),
(406, 'Calandula', 116),
(407, '<NAME>', 116),
(408, 'Cangola', 116),
(409, 'Cota', 116),
(410, 'Cuale', 116),
(411, 'Quinje', 116),
(412, 'Tala-Mungongo', 117),
(413, '<NAME>', 117),
(414, 'Quitapa', 117),
(415, '<NAME>', 117),
(416, 'Cangandala', 118),
(417, 'Bembo', 118),
(418, 'Culamagia', 118),
(419, 'Caribo', 118),
(420, '<NAME>', 119),
(421, 'Cahombo', 119),
(422, '<NAME>', 119),
(423, 'Micanda', 119),
(424, '<NAME>', 120),
(425, 'Mufuma', 120),
(426, 'Cunda-Dia-Baze', 121),
(427, 'Milando', 121),
(428, 'Lemba', 121),
(429, 'Quimbango', 122),
(430, 'Capunda', 122),
(431, '<NAME>', 122),
(432, 'Luquembo', 122),
(433, '<NAME>', 122),
(434, 'Rimba', 122),
(435, 'Malanje', 123),
(436, 'Ngola-Luiji', 123),
(437, 'Cambaxi', 123),
(438, 'Marimba', 124),
(439, 'Cabombo', 124),
(440, 'Tembo-Aluma', 124),
(441, 'Massango', 125),
(442, 'Quihuhu', 125),
(443, 'Quinguengue', 125),
(444, 'Catala', 126),
(445, 'Caculama', 126),
(446, 'Caxinga', 126),
(447, 'Muquixe', 126),
(448, 'Xandele', 127),
(449, 'Moma', 127),
(450, 'Bângalas', 127),
(451, 'Sautar', 128),
(452, 'Quirima', 128),
(453, '<NAME>', 129),
(454, '<NAME>', 129),
(455, 'Cazombo', 129),
(456, 'Macondo', 129),
(457, 'Caianda', 129),
(458, 'Calunda', 129),
(459, 'Lóvua', 129),
(460, 'Lutembo', 130),
(461, 'Chiume', 130),
(462, '<NAME> ', 130),
(463, 'Luvuei', 130),
(464, 'Ninda', 130),
(465, 'Mussuma', 130),
(466, 'Sessa', 130),
(467, 'Camanongue', 131),
(468, 'Lumege', 132),
(469, 'Luau', 133),
(470, 'Luacano', 134),
(471, '<NAME>', 134),
(472, 'Cangombe', 135),
(473, 'Cassamba', 135),
(474, 'Tempué ', 135),
(475, 'Cangamba', 135),
(476, 'Muié', 135),
(477, 'Léua', 136),
(478, 'Liangongo', 136),
(479, 'Lucusse', 137),
(480, 'Cangumbe', 137),
(481, 'Luena', 137),
(482, 'Muangai', 137),
(483, 'Bibala', 138),
(484, 'Caitou', 138),
(485, 'Capangombe', 138),
(486, 'Lola', 138),
(487, 'Camucuio', 139),
(488, 'Mamué', 139),
(489, 'Chingo', 139),
(490, 'Namibe', 140),
(491, 'Lucira', 140),
(492, 'Bentiaba', 140),
(493, 'Forte Santa Rita', 140),
(494, '<NAME>', 141),
(495, 'Iona', 141),
(496, 'Tômbua', 141),
(497, 'Virei', 142),
(498, 'Cainde', 142),
(499, 'Cangola', 143),
(500, 'Bengo', 143),
(501, 'Caiongo', 143),
(502, 'Nova Ambuíla', 144),
(503, 'Quipedro', 144),
(504, 'Bembe', 145),
(505, 'Lucunga', 145),
(506, 'Mabaia', 145),
(507, '<NAME>', 146),
(508, '<NAME>', 146),
(509, '<NAME>', 146),
(510, 'Bungo', 147),
(511, 'Damba', 148),
(512, 'Nsosso', 148),
(513, 'Camatambo', 148),
(514, 'Lêmboa', 148),
(515, 'Petecusso', 148),
(516, 'Macocola', 149),
(517, 'Macolo', 149),
(518, '<NAME> ', 149),
(519, 'Milunga', 149),
(520, 'Massau', 149),
(521, 'Mucaba', 150),
(522, '<NAME>', 150),
(523, 'Dimuca', 151),
(524, 'Quisseque', 151),
(525, 'Negage', 151),
(526, 'Puri', 152),
(527, 'Cuango', 153),
(528, 'Icoca', 153),
(529, 'Quimbele', 153),
(530, '<NAME>', 153),
(531, 'Quitexe', 154),
(532, '<NAME>', 154),
(533, 'Cambamba', 154),
(534, '<NAME>', 154),
(535, '<NAME>', 155),
(536, '<NAME>', 155),
(537, 'Uamba', 155),
(538, 'Alfândega', 155),
(539, 'Songo ', 156),
(540, 'Quinvuenga', 156),
(541, 'Uíge', 157),
(542, '<NAME>', 158),
(543, 'Quibocolo', 158),
(544, 'Béu', 158),
(545, 'Sacandica', 158),
(546, '<NAME>', 158),
(547, 'Cuimba', 159),
(548, 'Buela', 159),
(549, '<NAME>', 159),
(550, 'Luvaca', 159),
(551, '<NAME>', 160),
(552, 'Luvo', 160),
(553, 'Caluca', 160),
(554, 'Madimba', 160),
(555, 'Quiende', 160),
(556, 'Calambata', 160),
(557, 'Nóqui', 161),
(558, 'Lufico', 161),
(559, 'Mpala', 161),
(560, 'Nzetu', 162),
(561, 'Quindeje', 162),
(562, '<NAME>', 162),
(563, 'Soyo', 163),
(564, 'Sumba', 163),
(565, '<NAME>', 163),
(566, 'Quêlo', 163),
(567, '<NAME>', 163),
(568, 'Tomboco', 164),
(569, 'Quinsimba', 164),
(570, 'Quinzau', 164),
(571, 'Dundo', 165),
(572, 'Ingombota', 5);
-- --------------------------------------------------------
--
-- Estrutura da tabela `conta`
--
CREATE TABLE `conta` (
`id` int(11) NOT NULL,
`id_cidadao` int(11) NOT NULL,
`control_cred` int(11) NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`criador` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `conta`
--
INSERT INTO `conta` (`id`, `id_cidadao`, `control_cred`, `data_criacao`, `criador`) VALUES
(1, 1, 1, '2018-08-26 11:09:14', 0),
(2, 2, 1, '2018-11-16 13:51:11', 1),
(3, 3, 1, '2018-08-27 18:06:45', 1),
(4, 4, 1, '2018-11-15 10:38:21', 1),
(5, 6, 1, '2018-11-28 13:43:19', 6),
(6, 18, 1, '2018-09-08 14:06:05', 1),
(7, 22, 0, '2018-09-23 13:39:19', 6),
(8, 23, 1, '2018-12-06 15:07:49', 6),
(9, 36, 1, '2018-12-07 15:51:10', 6),
(10, 37, 0, '2018-12-07 16:54:43', 1);
-- --------------------------------------------------------
--
-- Estrutura da tabela `contacto`
--
CREATE TABLE `contacto` (
`id` int(11) NOT NULL,
`email` varchar(100) NOT NULL,
`telefone1` varchar(16) NOT NULL,
`telefone2` varchar(16) DEFAULT NULL,
`id_cidadao` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `contacto`
--
INSERT INTO `contacto` (`id`, `email`, `telefone1`, `telefone2`, `id_cidadao`) VALUES
(1, '<EMAIL>', '998 906 910', '923 839 208', 1),
(2, '<EMAIL>', '938 768 123', '919 180 406', 2),
(3, '<EMAIL>', '936 767 197', '993 098 192', 3),
(4, '<EMAIL>', '923 121 033', '916 150 918', 5),
(6, '<EMAIL>', '932 937 928', '994 092 192', 6),
(18, '<EMAIL>', '923 512 671', '912 732 183', 18),
(22, '<EMAIL>', '937 928 123', '912 543 234', 22),
(23, '<EMAIL>', '922 051 328', '912 374 134', 23),
(33, '<EMAIL>', '997 819 192', '926 531 162', 33),
(34, '<EMAIL>', '923 546 128', '912 737 182', 34),
(35, 'teste_2012gmail.com', '94565875das', '924mmhg', 35),
(36, '<EMAIL>', '912 817 102', '912 481 012', 36),
(37, '<EMAIL>', '912 871 816', '923 541 122', 37),
(38, '<EMAIL>', '+244 992 348 475', '+244 923 748 576', 38),
(39, '<EMAIL>', '992348475', '+244 923 748 576', 39),
(40, '<EMAIL>', '928374875', '+244 998 379 575', 40),
(41, '<EMAIL>', '+244 927 746 566', '+244 938 747 747', 41),
(42, '<EMAIL>', '+244 923 546 767', '+244 994 656 565', 42),
(43, '<EMAIL>', '+244 923 546 767', '+244 994 656 565', 43),
(44, '<EMAIL>', '+244 922 435 432', '+244 923 533 213', 44),
(45, '<EMAIL>', '+244 923 827 388', '+244 918 388 388', 45),
(46, '', '+244 923 456 789', '+244 990 987 689', 46),
(47, '<EMAIL>', '+244 938 475 887', '+244 928 374 764', 47);
-- --------------------------------------------------------
--
-- Estrutura da tabela `data_entrega_doc`
--
CREATE TABLE `data_entrega_doc` (
`id` int(11) NOT NULL,
`id_doc` int(11) NOT NULL,
`data_entrega` date NOT NULL,
`id_processo` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `data_entrega_doc`
--
INSERT INTO `data_entrega_doc` (`id`, `id_doc`, `data_entrega`, `id_processo`) VALUES
(1, 4, '2018-11-29', 1),
(2, 5, '2018-11-30', 3),
(3, 3, '2019-01-06', 1),
(4, 5, '2019-01-06', 1);
-- --------------------------------------------------------
--
-- Estrutura da tabela `destrito`
--
CREATE TABLE `destrito` (
`id` int(11) NOT NULL,
`id_outra_divisao` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Estrutura da tabela `documento`
--
CREATE TABLE `documento` (
`id` int(11) NOT NULL,
`nome` varchar(70) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`estado` int(11) NOT NULL,
`uso` varchar(5) NOT NULL,
`prioridade` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `documento`
--
INSERT INTO `documento` (`id`, `nome`, `estado`, `uso`, `prioridade`) VALUES
(2, 'Bilhete de Identidade', 1, 't', 0),
(3, 'Cartão de Contribuinte', 1, 't', 0),
(4, 'Requerimento', 1, 't', 0),
(5, 'Croquís de Localização', 1, 'l', 0),
(6, 'Extracto Bancário', 1, 'c', 5),
(7, 'Fotografia', 1, 'c', 3);
-- --------------------------------------------------------
--
-- Estrutura da tabela `entrada_saida`
--
CREATE TABLE `entrada_saida` (
`id` int(11) NOT NULL,
`id_saida` int(11) NOT NULL,
`id_entrada` int(11) NOT NULL,
`id_processo` int(11) NOT NULL,
`estado` int(11) NOT NULL,
`data_actividade` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `entrada_saida`
--
INSERT INTO `entrada_saida` (`id`, `id_saida`, `id_entrada`, `id_processo`, `estado`, `data_actividade`) VALUES
(1, 5, 0, 1, 1, '2018-11-24 14:44:58'),
(2, 5, 7, 1, 2, '2018-11-27 09:54:36'),
(3, 5, 0, 2, 1, '2018-11-27 10:35:00'),
(4, 5, 7, 2, 2, '2018-11-27 10:39:06'),
(5, 5, 0, 3, 1, '2018-11-27 10:42:06'),
(6, 5, 7, 3, 2, '2018-11-27 10:44:52'),
(7, 7, 4, 1, 3, '2018-11-28 13:44:21'),
(8, 4, 8, 1, 4, '2018-11-28 19:22:53'),
(9, 8, 10, 1, 5, '2018-12-06 15:02:29'),
(10, 10, 8, 1, -1, '2018-12-06 15:20:05'),
(11, 8, 4, 1, -2, '2018-12-06 15:48:10'),
(12, 7, 4, 2, 3, '2018-12-07 15:40:28'),
(13, 4, 8, 2, 4, '2018-12-07 15:41:32'),
(14, 8, 11, 2, 5, '2018-12-07 15:47:41'),
(16, 5, 0, 7, 1, '2019-02-18 22:08:55'),
(17, 5, 0, 8, 1, '2019-02-18 22:12:08'),
(18, 5, 7, 7, 2, '2019-02-18 22:14:35'),
(19, 5, 7, 8, 2, '2019-06-13 06:39:35'),
(20, 5, 0, 9, 1, '2019-06-13 06:48:34'),
(21, 5, 7, 9, 2, '2019-06-13 06:50:04'),
(22, 7, 4, 3, 3, '2019-06-13 06:53:41'),
(23, 5, 0, 10, 1, '2019-06-13 10:27:58');
-- --------------------------------------------------------
--
-- Estrutura da tabela `fisica`
--
CREATE TABLE `fisica` (
`id` int(11) NOT NULL,
`id_cidadao` int(11) NOT NULL,
`genero` varchar(2) NOT NULL,
`fotografia` varchar(50) NOT NULL,
`estado_civil` varchar(3) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `fisica`
--
INSERT INTO `fisica` (`id`, `id_cidadao`, `genero`, `fotografia`, `estado_civil`) VALUES
(1, 1, 'M', 'padrao.jpg', 'S'),
(2, 2, 'M', 'padrao.jpg', 'S'),
(3, 3, 'F', 'padrao.jpg', 'S'),
(4, 4, 'F', 'padrao.jpg', 'C'),
(6, 6, 'F', 'padrao.jpg', 'S'),
(18, 18, 'F', 'padrao.jpg', 'S'),
(22, 22, 'F', 'padrao.jpg', 'S'),
(23, 23, 'F', 'padrao.jpg', 'S'),
(33, 33, 'F', ' 5bc2184d781fe-dhulka.jpg', 'S'),
(34, 34, 'F', ' 5bc495b66b664-dhulka.jpg', 'C'),
(35, 35, 'F', ' 5be5b9ea2d9ef-dhulka.jpg', 'S'),
(36, 36, 'F', 'padrao.jpg', 'S'),
(37, 37, 'F', 'padrao.jpg', 'S'),
(38, 38, 'f', 'padrao.jpg', 'S'),
(39, 39, 'f', 'padrao.jpg', 'S'),
(40, 40, 'f', 'padrao.jpg', 'S'),
(41, 41, 'f', 'padrao.jpg', 'S'),
(42, 42, 'f', 'padrao.jpg', 'S'),
(43, 43, 'f', 'padrao.jpg', 'S'),
(44, 44, 'f', 'padrao.jpg', 'S'),
(45, 45, 'f', 'padrao.jpg', 'D'),
(46, 46, 'f', 'padrao.jpg', 'S'),
(47, 47, 'F', ' 5d01f090021cd-dhulka.jpg', 'S');
-- --------------------------------------------------------
--
-- Estrutura da tabela `foto_terreno`
--
CREATE TABLE `foto_terreno` (
`id` int(11) NOT NULL,
`id_terreno` int(11) NOT NULL,
`foto` varchar(120) COLLATE utf8_general_mysql500_ci NOT NULL,
`ordem` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci;
--
-- Extraindo dados da tabela `foto_terreno`
--
INSERT INTO `foto_terreno` (`id`, `id_terreno`, `foto`, `ordem`) VALUES
(1, 1, 'dhulka-land-cde77a608b4714cbb548fd4b4420eca6.jpg', 0),
(2, 1, 'dhulka-land-26e4bdd175df334e37633a1e6b7a6dab.jpg', 1),
(3, 1, 'dhulka-land-6b16cf3af7da6303b55a695411e8202b.jpg', 2),
(4, 1, 'dhulka-land-9bb9d31f641e1da44018dd2267aacf6b.jpg', 3),
(5, 1, 'dhulka-land-36d1c454443dbad0fe3872087f05e1fd.jpg', 4),
(6, 1, 'dhulka-land-af31e9aee56d4fc47d5f9b515909e056.jpg', 5),
(7, 1, 'dhulka-land-08bd120f00ffd69f5535a7653e6102dc.jpg', 6),
(8, 1, 'dhulka-land-a228e5dcfb18b4b310a0590981661f9f.jpg', 7),
(9, 2, 'dhulka-land-26c869da0d7fd3f660ee9ef627e2d5e2.jpg', 0),
(10, 2, 'dhulka-land-6b59830ef9296e72706924f22e30a063.jpg', 1),
(11, 2, 'dhulka-land-ad95fa39a1709d19e3a947786df60133.jpg', 2),
(12, 2, 'dhulka-land-d0c7790650cda26e33548290413578cd.jpg', 3),
(13, 2, 'dhulka-land-c3a18e2f733a50f2f22ca6bb43077427.jpg', 4),
(14, 2, 'dhulka-land-55fd39fb73f86a6984c7e95b14795e12.jpg', 5),
(15, 2, 'dhulka-land-1c54d7e85ea63c1243e3099cece5fae7.jpg', 6),
(16, 3, 'dhulka-land-77f8bbc7331f7b6e90ba459d6258cd7e.jpg', 0),
(17, 3, 'dhulka-land-94a389a71d6063ce7f360420f88e85cb.jpg', 1),
(18, 3, 'dhulka-land-28f85691bf08ee5cbc2960c4d0c94f38.jpg', 2),
(19, 3, 'dhulka-land-3f472cb5672e4c7016d3288ccc6bbbab.jpg', 3);
-- --------------------------------------------------------
--
-- Estrutura da tabela `galeria_projecto`
--
CREATE TABLE `galeria_projecto` (
`id` int(11) NOT NULL,
`id_projecto` int(11) NOT NULL,
`foto` varchar(80) NOT NULL,
`ordem` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `galeria_projecto`
--
INSERT INTO `galeria_projecto` (`id`, `id_projecto`, `foto`, `ordem`) VALUES
(1, 1, 'dhulka-ac22ecad2a23076c681540a131c02448.jpg', 0),
(2, 1, 'dhulka-e73286a6315047286a56313f8a08395d.jpg', 1),
(3, 1, 'dhulka-487c5bfa3870ff402df8eec474de79e1.jpg', 2),
(4, 1, 'dhulka-8166fd55224108be4e146f4856e9d047.jpg', 3),
(5, 1, 'dhulka-04921207d655633a996379b0e74f26fb.jpg', 4),
(6, 1, 'dhulka-1b552d1deca6515f7e9c7adaf4356cd9.jpg', 5),
(7, 2, 'dhulka-1eba484410199b44f007f2693ea89992.jpg', 0),
(8, 2, 'dhulka-86ee5d84947ccabf941d8cd8bb19f61a.jpg', 1),
(9, 2, 'dhulka-89352782501e08519cb2a3ed1d0008c9.jpg', 2),
(10, 2, 'dhulka-cd9d61f17b2d1ae2fd79f1391d03a773.jpg', 3),
(11, 2, 'dhulka-b431f2dfa4494415d09c05c25327ebd3.jpg', 4),
(12, 2, 'dhulka-77dc2569f6ae7ee21ec49114f74b073d.jpg', 5),
(13, 2, 'dhulka-f8ffc985b08a39932c17e0eafe947e9f.jpg', 6),
(14, 2, 'dhulka-48320189df00027656a5f1b65dec671b.jpg', 7),
(15, 2, 'dhulka-eb70a34603f36ecf97eb371c090df1f8.jpg', 8),
(16, 2, 'dhulka-67df2736c2c675a7e3c336325c101148.jpg', 9),
(17, 2, 'dhulka-d2ec34aff15592a1a5d3f0fc3c62e863.jpg', 10),
(18, 2, 'dhulka-2ce5472ecf9f7a6f0dfd6a545eb8c820.jpg', 11),
(19, 2, 'dhulka-aebd344fd4574bd0a90fd29ef8212935.jpg', 12),
(20, 2, 'dhulka-487438d03ef49b065dcf2de8c4ad3ea1.jpg', 13),
(21, 2, 'dhulka-5fc850fdaa6a570e1174d842d8d603c8.jpg', 0),
(22, 3, 'dhulka-eb72c5676a4ceef09c2713ffd67b7507.jpg', 0),
(23, 3, 'dhulka-39207942e6fa066a64e238e282c7ac7e.jpg', 1),
(24, 3, 'dhulka-3220b1b282a4fc33dd5ddb28fa8b6470.jpg', 2),
(25, 3, 'dhulka-245f422c0775943301cab6eb5048cb43.jpg', 3),
(26, 3, 'dhulka-3fcd2ca9fed02570411d356ee8b3ed84.jpg', 4),
(27, 3, 'dhulka-6c1eeee5112c10a8b959a0e3dd0401a9.jpg', 5),
(28, 3, 'dhulka-233c322ba75ebf9e834979612dfd5da3.jpg', 0),
(29, 3, 'dhulka-3c13299929a84d95bc8cd6f62f53c632.jpg', 1),
(30, 3, 'dhulka-3ff55d3af83dcc8b7fc0f18b041640c7.jpg', 2),
(31, 3, 'dhulka-afcd327aa43b4374449c98d760914ed6.jpg', 3),
(32, 3, 'dhulka-876ccd1727c88e373cc7aad6b64a0780.jpg', 4),
(33, 3, 'dhulka-e2af8d9671bb439a4c319ffd4c52227b.jpg', 5),
(34, 3, 'dhulka-47c7ff00e1a315a9b9efab702e3f2a49.jpg', 6),
(35, 3, 'dhulka-4b64bd5d701bdeeb03b3d2a033a5f4a4.jpg', 7);
-- --------------------------------------------------------
--
-- Estrutura da tabela `juridica`
--
CREATE TABLE `juridica` (
`id` int(11) NOT NULL,
`id_cidadao` int(11) NOT NULL,
`id_representante` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Estrutura da tabela `menu`
--
CREATE TABLE `menu` (
`id` int(11) NOT NULL,
`nome` varchar(30) NOT NULL,
`id_utilizador` int(11) NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `menu`
--
INSERT INTO `menu` (`id`, `nome`, `id_utilizador`, `data_criacao`) VALUES
(1, 'Utente', 1, '2018-04-25 11:10:17'),
(2, 'Utilizador', 1, '2018-04-25 11:10:32'),
(3, 'Grupo', 1, '2018-04-25 11:10:44'),
(4, 'Município', 1, '2019-02-19 10:01:54'),
(5, 'Bairro', 1, '2018-04-25 11:11:09'),
(6, 'Administração', 1, '2019-02-19 10:01:43'),
(7, 'Menu', 1, '2018-04-26 00:23:16'),
(8, 'Trespasse', 2, '2019-01-20 14:04:28'),
(9, 'Repartição', 1, '2019-02-19 10:02:00'),
(10, 'Sub Menu', 3, '2018-04-27 11:48:48'),
(11, 'Processo', 3, '2018-04-29 12:26:48'),
(12, 'Distrito', 3, '2018-08-13 06:50:18'),
(13, 'Projecto', 3, '2018-08-13 10:12:50'),
(14, 'Dashboard', 3, '2018-08-13 21:19:44'),
(15, 'Documento', 3, '2018-08-14 20:50:42'),
(16, 'Terreno', 1, '2018-09-25 14:32:17'),
(17, 'Jeremias', 1, '2018-11-30 17:07:45');
-- --------------------------------------------------------
--
-- Estrutura da tabela `menu_modulo`
--
CREATE TABLE `menu_modulo` (
`id` int(11) NOT NULL,
`Id_menu` int(11) NOT NULL,
`id_modulo` int(11) NOT NULL,
`id_utilizador` int(11) NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `menu_modulo`
--
INSERT INTO `menu_modulo` (`id`, `Id_menu`, `id_modulo`, `id_utilizador`, `data_criacao`) VALUES
(1, 1, 1, 1, '2018-04-08 15:40:42'),
(2, 2, 1, 1, '2018-04-08 15:40:42'),
(3, 1, 2, 1, '2018-04-08 15:41:35'),
(4, 2, 2, 1, '2018-04-08 15:40:42');
-- --------------------------------------------------------
--
-- Estrutura da tabela `menu_sub_menu`
--
CREATE TABLE `menu_sub_menu` (
`id` int(11) NOT NULL,
`id_menu` int(11) NOT NULL,
`id_sub_menu` int(11) NOT NULL,
`controlador` varchar(50) NOT NULL,
`accao` varchar(50) NOT NULL,
`modal` int(11) NOT NULL,
`id_utilizador` int(11) NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `menu_sub_menu`
--
INSERT INTO `menu_sub_menu` (`id`, `id_menu`, `id_sub_menu`, `controlador`, `accao`, `modal`, `id_utilizador`, `data_criacao`) VALUES
(1, 1, 1, 'utente', 'novo', 1, 1, '2018-08-13 20:55:56'),
(2, 1, 2, 'utente', 'listar', 0, 1, '2018-04-25 11:15:03'),
(3, 1, 3, 'utente', 'actualizar', 0, 1, '2018-04-25 11:15:03'),
(4, 1, 4, 'utente', 'eliminar', 1, 1, '2018-09-11 12:44:14'),
(5, 2, 1, 'utilizador', 'novo', 0, 1, '2018-04-25 11:16:57'),
(6, 2, 2, 'utilizador', 'listar', 0, 1, '2018-04-25 11:16:57'),
(7, 2, 3, 'utilizador', 'actualizar', 0, 1, '2018-04-25 11:16:57'),
(8, 2, 4, 'utilizador', 'eliminar', 1, 1, '2018-04-26 08:55:27'),
(9, 5, 1, 'bairro', 'novo', 1, 1, '2018-09-14 10:06:13'),
(10, 5, 2, 'bairro', 'listar', 1, 1, '2018-09-14 10:06:19'),
(11, 5, 3, 'bairro', 'actualizar', 1, 1, '2018-09-14 10:06:24'),
(12, 5, 4, 'bairro', 'eliminar', 0, 1, '2018-04-25 11:39:59'),
(13, 3, 1, 'grupo', 'novo', 1, 1, '2018-04-26 19:31:08'),
(14, 3, 2, 'grupo', 'listar', 0, 1, '2018-04-26 19:31:34'),
(15, 3, 3, 'grupo', 'actualizar', 1, 1, '2018-04-26 19:31:41'),
(16, 3, 4, 'grupo', 'eliminar', 1, 1, '2018-04-26 19:31:44'),
(17, 6, 1, 'administracao', 'novo', 1, 1, '2018-04-28 14:09:16'),
(18, 6, 2, 'administracao', 'listar', 0, 1, '2018-04-25 21:29:09'),
(19, 6, 3, 'administracao', 'actualizar', 0, 1, '2018-04-25 21:29:09'),
(20, 6, 4, 'administracao', 'eliminar', 0, 1, '2018-04-25 21:29:09'),
(21, 4, 1, 'municipio', 'novo', 1, 1, '2018-04-28 15:50:18'),
(22, 4, 2, 'municipio', 'listar', 0, 1, '2018-04-25 23:12:58'),
(25, 8, 1, 'traspasse', 'novo', 1, 2, '2019-01-19 08:02:03'),
(26, 8, 4, 'traspasse', 'eliminar', 1, 2, '2018-04-26 08:27:18'),
(27, 8, 3, 'traspasse', 'actualizar', 0, 2, '2018-04-26 08:27:18'),
(28, 9, 1, 'reparticao', 'novo', 1, 1, '2018-04-26 11:55:38'),
(29, 9, 2, 'reparticao', 'listar', 0, 1, '2018-04-26 11:55:38'),
(30, 9, 3, 'reparticao', 'actualizar', 1, 1, '2018-04-26 11:55:38'),
(31, 9, 4, 'reparticao', 'eliminar', 1, 1, '2018-04-26 11:55:38'),
(32, 8, 2, 'traspasse', 'listar', 0, 2, '2018-04-26 12:06:47'),
(33, 7, 1, 'menu', 'novo', 1, 3, '2018-04-26 12:11:20'),
(34, 7, 2, 'menu', 'listar', 0, 3, '2018-04-26 12:11:20'),
(35, 7, 3, 'menu', 'actualizar', 1, 3, '2018-04-26 12:11:20'),
(36, 7, 4, 'menu', 'eliminar', 1, 3, '2018-04-26 12:11:20'),
(37, 10, 1, 'sub_menu', 'novo', 1, 3, '2018-04-27 12:54:05'),
(38, 10, 2, 'sub_menu', 'listar', 0, 3, '2018-04-27 12:54:05'),
(39, 10, 3, 'sub_menu', 'actualizar', 1, 3, '2018-04-27 12:54:05'),
(40, 10, 4, 'sub_menu', 'eliminar', 1, 3, '2018-04-27 12:54:05'),
(42, 3, 5, 'grupo', 'add_privilegio', 0, 3, '2018-04-27 13:42:05'),
(43, 4, 3, 'municipio', 'actualizar', 1, 3, '2018-04-28 18:23:54'),
(44, 4, 4, 'municipio', 'eliminar', 1, 3, '2018-04-28 18:23:54'),
(45, 11, 4, 'processo', 'eliminar', 1, 3, '2018-04-29 12:27:29'),
(46, 11, 1, 'processo', 'novo', 1, 3, '2018-08-21 10:13:00'),
(47, 11, 2, 'processo', 'listar', 0, 3, '2018-04-29 12:27:29'),
(48, 11, 3, 'processo', 'actualizar', 0, 3, '2018-04-29 12:27:29'),
(49, 13, 1, 'projecto', 'novo', 1, 3, '2018-08-13 10:13:56'),
(50, 13, 2, 'projecto', 'listar', 0, 3, '2018-08-13 10:13:56'),
(51, 13, 3, 'projecto', 'actualizar', 1, 3, '2018-09-17 13:04:38'),
(52, 13, 4, 'projecto', 'eliminar', 1, 3, '2018-08-13 10:13:56'),
(53, 14, 6, 'dashboard', 'dashboard', 0, 3, '2018-08-13 21:21:34'),
(54, 1, 7, 'utente', 'fisica', 0, 3, '2018-08-13 21:27:49'),
(55, 1, 8, 'utente', 'juridica', 0, 3, '2018-08-13 21:27:49'),
(56, 15, 1, 'documento', 'novo', 1, 3, '2018-08-14 20:51:51'),
(57, 15, 2, 'documento', 'listar', 1, 3, '2018-08-14 20:56:17'),
(58, 15, 3, 'documento', 'actualizar', 0, 3, '2018-08-14 20:51:51'),
(59, 15, 4, 'documento', 'eliminar', 0, 3, '2018-08-14 20:51:51'),
(60, 1, 9, 'utente', 'detalhe', 1, 3, '2018-08-20 12:27:42'),
(61, 11, 9, 'processo', 'detalhe', 0, 3, '2018-09-23 19:14:32'),
(62, 11, 10, 'processo', 'enviar', 2, 3, '2018-08-26 16:40:20'),
(63, 2, 9, 'utilizador', 'detalhe', 0, 3, '2018-08-24 15:28:43'),
(64, 2, 11, 'utilizador', 'adicionar_conta', 1, 3, '2018-08-24 21:14:50'),
(65, 11, 12, 'processo', 'parecer', 3, 1, '2018-09-21 15:37:00'),
(66, 13, 13, 'projecto', 'coordenar', 0, 1, '2018-09-14 16:11:26'),
(67, 11, 14, 'processo', 'ver_parecer', 0, 1, '2018-09-22 13:39:09'),
(68, 11, 15, 'processo', 'projectar', 4, 1, '2018-09-23 18:31:46'),
(69, 16, 1, 'terreno', 'novo', 0, 1, '2018-09-25 14:33:03'),
(70, 16, 2, 'terreno', 'listar', 0, 1, '2018-09-25 14:33:03'),
(71, 16, 3, 'terreno', 'actualizar', 0, 1, '2018-09-25 14:33:03'),
(72, 16, 4, 'terreno', 'eliminar', 0, 1, '2018-09-25 14:33:03'),
(73, 1, 16, 'utente', 'servico', 0, 1, '2018-11-28 18:47:43'),
(74, 17, 1, 'jeremias', 'novo', 0, 1, '2018-11-30 17:10:30'),
(75, 11, 17, 'processo', 'aquisicao', 0, 1, '2019-02-12 18:28:37'),
(76, 13, 18, 'projecto', 'listar_terreno', 0, 1, '2019-02-22 15:44:03'),
(77, 13, 19, 'projecto', 'estatistica', 0, 1, '2019-02-22 17:43:06'),
(78, 16, 20, 'terreno', 'detalhe_terreno', 0, 1, '2019-02-25 16:44:45'),
(79, 13, 20, 'projecto', 'detalhe_terreno', 0, 1, '2019-02-25 16:47:00');
-- --------------------------------------------------------
--
-- Estrutura da tabela `modulo`
--
CREATE TABLE `modulo` (
`id` int(11) NOT NULL,
`nome` varchar(50) NOT NULL,
`id_utilizador` int(11) NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `modulo`
--
INSERT INTO `modulo` (`id`, `nome`, `id_utilizador`, `data_criacao`) VALUES
(1, 'Legalizacao', 1, '2018-04-08 15:33:54'),
(2, 'Aquisicao', 1, '2018-04-08 15:33:54');
-- --------------------------------------------------------
--
-- Estrutura da tabela `morada`
--
CREATE TABLE `morada` (
`id` int(11) NOT NULL,
`id_comuna` int(11) NOT NULL,
`id_cidadao` int(11) NOT NULL,
`bairro` int(11) NOT NULL,
`rua` varchar(30) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `morada`
--
INSERT INTO `morada` (`id`, `id_comuna`, `id_cidadao`, `bairro`, `rua`) VALUES
(1, 1, 1, 1, 'A36'),
(2, 1, 2, 1, 'A 21'),
(3, 2, 3, 1, 'Rua do Peixe'),
(4, 1, 4, 1, 'A 21'),
(6, 2, 6, 1, 'Rua das Catanas'),
(18, 1, 18, 1, '13'),
(22, 1, 22, 1, '12'),
(23, 1, 23, 1, '23'),
(33, 2, 33, 2, '12'),
(34, 2, 34, 2, '12'),
(35, 2, 35, 2, '12'),
(36, 2, 36, 2, '12'),
(37, 215, 37, 0, '12'),
(38, 305, 38, 0, '12'),
(39, 305, 39, 0, '12'),
(40, 230, 40, 0, '12'),
(41, 22, 41, 2, '12'),
(42, 22, 42, 2, '019'),
(43, 22, 43, 2, '019'),
(44, 22, 44, 1, '10'),
(45, 22, 45, 1, '10'),
(46, 22, 46, 1, '12'),
(47, 22, 47, 1, '12');
-- --------------------------------------------------------
--
-- Estrutura da tabela `municipio`
--
CREATE TABLE `municipio` (
`id` int(11) NOT NULL,
`nome` varchar(50) DEFAULT NULL,
`id_provincia` int(11) DEFAULT NULL,
`id_utilizador` int(11) NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Extraindo dados da tabela `municipio`
--
INSERT INTO `municipio` (`id`, `nome`, `id_provincia`, `id_utilizador`, `data_criacao`) VALUES
(1, 'Belas', 1, 3, '2018-04-28 17:56:09'),
(2, 'Cacuaco', 1, 3, '2018-04-28 16:56:09'),
(3, 'Cazenga', 1, 3, '2018-04-28 16:56:09'),
(4, 'Icolo e Bengo', 1, 3, '2018-04-28 16:56:09'),
(5, 'Luanda', 1, 3, '2018-04-28 16:56:09'),
(6, '<NAME>', 1, 3, '2018-04-28 16:56:09'),
(7, 'Talatona', 1, 3, '2018-04-28 16:56:09'),
(8, 'Quiçama', 1, 3, '2018-04-28 16:56:09'),
(9, 'Viana', 1, 3, '2018-04-28 16:56:09'),
(10, 'Ambriz', 2, 3, '2018-04-28 16:56:09'),
(11, 'Dande', 2, 3, '2018-04-28 16:56:09'),
(12, 'Dembos', 2, 3, '2018-04-28 16:56:09'),
(13, '<NAME>', 2, 3, '2018-04-28 16:56:09'),
(14, 'Nambuangongo', 2, 3, '2018-04-28 16:56:09'),
(15, '<NAME>', 2, 3, '2018-04-28 16:56:09'),
(16, 'Balombo', 3, 3, '2018-04-28 16:56:09'),
(17, '<NAME>', 3, 3, '2018-04-28 16:56:09'),
(18, 'Benguela', 3, 3, '2018-04-28 16:56:09'),
(19, 'Bocoio', 3, 3, '2018-04-28 16:56:09'),
(20, 'Caimbambo', 3, 3, '2018-04-28 16:56:09'),
(21, 'Catumbela', 3, 3, '2018-04-28 16:56:09'),
(22, 'Chongorói', 3, 3, '2018-04-28 16:56:09'),
(23, 'Cubal', 3, 3, '2018-04-28 16:56:09'),
(24, 'Ganda', 3, 3, '2018-04-28 16:56:09'),
(25, 'Lobito', 3, 3, '2018-04-28 16:56:09'),
(26, 'Andulo', 4, 3, '2018-04-28 16:56:09'),
(27, 'Camacupa', 4, 3, '2018-04-28 16:56:09'),
(28, 'Catabola', 4, 3, '2018-04-28 16:56:09'),
(29, 'Chinguar', 4, 3, '2018-04-28 16:56:09'),
(30, 'Chitembo', 4, 3, '2018-04-28 16:56:09'),
(31, 'Cuemba', 4, 3, '2018-04-28 16:56:09'),
(32, 'Cunhinga', 4, 3, '2018-04-28 16:56:09'),
(33, 'Cuito', 4, 3, '2018-04-28 16:56:09'),
(34, 'Nharêa', 4, 3, '2018-04-28 16:56:09'),
(35, 'Belize', 5, 3, '2018-04-28 16:56:09'),
(36, '<NAME>', 5, 3, '2018-04-28 16:56:09'),
(37, 'Cabinda', 5, 3, '2018-04-28 16:56:09'),
(38, 'Cacongo', 5, 3, '2018-04-28 16:56:09'),
(39, 'Cahama', 6, 3, '2018-04-28 16:56:09'),
(40, 'Cuanhama', 6, 3, '2018-04-28 16:56:09'),
(41, 'Curoca', 6, 3, '2018-04-28 16:56:09'),
(42, 'Cuvelai', 6, 3, '2018-04-28 16:56:09'),
(43, 'Namacunde', 6, 3, '2018-04-28 16:56:09'),
(44, 'Ombadja', 6, 3, '2018-04-28 16:56:09'),
(45, 'Bailundo', 10, 3, '2018-04-28 16:56:09'),
(46, 'Cachiungo', 10, 3, '2018-04-28 16:56:09'),
(47, 'Caála', 10, 3, '2018-04-28 16:56:09'),
(48, 'Ecunha', 10, 3, '2018-04-28 16:56:09'),
(49, 'Huambo', 10, 3, '2018-04-28 16:56:09'),
(50, 'Londuimbali', 10, 3, '2018-04-28 16:56:09'),
(51, 'Longonjo', 10, 3, '2018-04-28 16:56:09'),
(52, 'Mungo', 10, 3, '2018-04-28 16:56:09'),
(53, '<NAME>', 10, 3, '2018-04-28 16:56:09'),
(54, 'Chinjenje', 10, 3, '2018-04-28 16:56:09'),
(55, 'Ucuma', 10, 3, '2018-04-28 16:56:09'),
(56, 'Caconda', 11, 3, '2018-04-28 16:56:09'),
(57, 'Cacula', 11, 3, '2018-04-28 16:56:09'),
(58, 'Caluquembe', 11, 3, '2018-04-28 16:56:09'),
(59, 'Gambos', 11, 3, '2018-04-28 16:56:09'),
(60, 'Chibia', 11, 3, '2018-04-28 16:56:09'),
(61, 'Chicomba', 11, 3, '2018-04-28 16:56:09'),
(62, 'Chipindo', 11, 3, '2018-04-28 16:56:09'),
(63, 'Humpata', 11, 3, '2018-04-28 16:56:09'),
(64, 'Jamba', 11, 3, '2018-04-28 16:56:09'),
(65, 'Cuvango', 11, 3, '2018-04-28 16:56:09'),
(66, 'Lubango', 11, 3, '2018-04-28 16:56:09'),
(67, 'Matala', 11, 3, '2018-04-28 16:56:09'),
(68, 'Quilengues', 11, 3, '2018-04-28 16:56:09'),
(69, 'Quipungo', 11, 3, '2018-04-28 16:56:09'),
(70, 'Calai', 7, 3, '2018-04-28 16:56:09'),
(71, 'Cuangar', 7, 3, '2018-04-28 16:56:09'),
(72, 'Cuchi', 7, 3, '2018-04-28 16:56:09'),
(73, '<NAME>', 7, 3, '2018-04-28 16:56:09'),
(74, 'Dirico', 7, 3, '2018-04-28 16:56:09'),
(75, 'Nancova', 7, 3, '2018-04-28 16:56:09'),
(76, 'Mavinga', 7, 3, '2018-04-28 16:56:09'),
(77, 'Menongue', 7, 3, '2018-04-28 16:56:09'),
(78, 'Rivungo', 7, 3, '2018-04-28 16:56:09'),
(79, 'Ambaca', 8, 3, '2018-04-28 16:56:09'),
(80, 'Banga', 8, 3, '2018-04-28 16:56:09'),
(81, 'Bolongongo', 8, 3, '2018-04-28 16:56:09'),
(82, 'Cambambe', 8, 3, '2018-04-28 16:56:09'),
(83, 'Cazengo', 8, 3, '2018-04-28 16:56:09'),
(84, '<NAME>', 8, 3, '2018-04-28 16:56:09'),
(85, 'Ngonguembo', 8, 3, '2018-04-28 16:56:09'),
(86, 'Lucala', 8, 3, '2018-04-28 16:56:09'),
(87, 'Quiculungo', 8, 3, '2018-04-28 16:56:09'),
(88, '<NAME>', 8, 3, '2018-04-28 16:56:09'),
(89, 'Amboim', 9, 3, '2018-04-28 16:56:09'),
(90, 'Cassongue', 9, 3, '2018-04-28 16:56:09'),
(91, 'Conda', 9, 3, '2018-04-28 16:56:09'),
(92, 'Ebo', 9, 3, '2018-04-28 16:56:09'),
(93, 'Libolo', 9, 3, '2018-04-28 16:56:09'),
(94, 'Mussende', 9, 3, '2018-04-28 16:56:09'),
(95, '<NAME>', 9, 3, '2018-04-28 16:56:09'),
(96, 'Quibala', 9, 3, '2018-04-28 16:56:09'),
(97, 'Quilenda', 9, 3, '2018-04-28 16:56:09'),
(98, 'Seles', 9, 3, '2018-04-28 16:56:09'),
(99, 'Sumbe', 9, 3, '2018-04-28 16:56:09'),
(100, 'Cela', 9, 3, '2018-04-28 16:56:09'),
(101, 'Cambulo', 12, 3, '2018-04-28 16:56:09'),
(102, '<NAME>', 12, 3, '2018-04-28 16:56:09'),
(103, 'Caungula', 12, 3, '2018-04-28 16:56:09'),
(104, 'Chitato', 12, 3, '2018-04-28 16:56:09'),
(105, 'Cuango', 12, 3, '2018-04-28 16:56:09'),
(106, 'Cuilo', 12, 3, '2018-04-28 16:56:09'),
(107, 'Lubalo', 12, 3, '2018-04-28 16:56:09'),
(108, 'Lucapa', 12, 3, '2018-04-28 16:56:09'),
(109, '<NAME>', 12, 3, '2018-04-28 16:56:09'),
(110, 'Lóvua', 12, 3, '2018-04-28 16:56:09'),
(111, 'Cacolo', 13, 3, '2018-04-28 16:56:09'),
(112, 'Dala', 13, 3, '2018-04-28 16:56:09'),
(113, 'Muconda', 13, 3, '2018-04-28 16:56:09'),
(114, 'Saurimo', 13, 3, '2018-04-28 16:56:09'),
(115, 'Cacuso', 14, 3, '2018-04-28 16:56:09'),
(116, 'Calandula', 14, 3, '2018-04-28 16:56:09'),
(117, '<NAME>', 14, 3, '2018-04-28 16:56:09'),
(118, 'Cangandala', 14, 3, '2018-04-28 16:56:09'),
(119, 'Cahombo', 14, 3, '2018-04-28 16:56:09'),
(120, '<NAME>', 14, 3, '2018-04-28 16:56:09'),
(121, 'Cunda-Dia-Baze', 14, 3, '2018-04-28 16:56:09'),
(122, 'Luquembo', 14, 3, '2018-04-28 16:56:09'),
(123, 'Malanje', 14, 3, '2018-04-28 16:56:09'),
(124, 'Marimba', 14, 3, '2018-04-28 16:56:09'),
(125, 'Massango', 14, 3, '2018-04-28 16:56:09'),
(126, 'Caculama', 14, 3, '2018-04-28 16:56:09'),
(127, 'Quela', 14, 3, '2018-04-28 16:56:09'),
(128, 'Quirima', 14, 3, '2018-04-28 16:56:09'),
(129, '<NAME>', 15, 3, '2018-04-28 16:56:09'),
(130, 'Bundas', 15, 3, '2018-04-28 16:56:09'),
(131, 'Camanongue', 15, 3, '2018-04-28 16:56:09'),
(132, 'Cameia', 15, 3, '2018-04-28 16:56:09'),
(133, 'Luau', 15, 3, '2018-04-28 16:56:09'),
(134, 'Luacano', 15, 3, '2018-04-28 16:56:09'),
(135, 'Luchazes', 15, 3, '2018-04-28 16:56:09'),
(136, 'Léua', 15, 3, '2018-04-28 16:56:09'),
(137, 'Moxico', 15, 3, '2018-04-28 16:56:09'),
(138, 'Bibala', 16, 3, '2018-04-28 16:56:09'),
(139, 'Camacuio', 16, 3, '2018-04-28 16:56:09'),
(140, 'Moçâmedes', 16, 3, '2018-04-28 16:56:09'),
(141, 'Tômbwa', 16, 3, '2018-04-28 16:56:09'),
(142, 'Virei', 16, 3, '2018-04-28 16:56:09'),
(143, '<NAME>', 17, 3, '2018-04-28 16:56:09'),
(144, 'Ambuíla', 17, 3, '2018-04-28 16:56:09'),
(145, 'Bembe', 17, 3, '2018-04-28 16:56:09'),
(146, 'Buengas', 17, 3, '2018-04-28 16:56:09'),
(147, 'Bungo', 17, 3, '2018-04-28 16:56:09'),
(148, 'Damba', 17, 3, '2018-04-28 16:56:09'),
(149, 'Milunga', 17, 3, '2018-04-28 16:56:09'),
(150, 'Mucaba', 17, 3, '2018-04-28 16:56:09'),
(151, 'Negage', 17, 3, '2018-04-28 16:56:09'),
(152, 'Puri', 17, 3, '2018-04-28 16:56:09'),
(153, 'Quimbele', 17, 3, '2018-04-28 16:56:09'),
(154, '<NAME>', 17, 3, '2018-04-28 16:56:09'),
(155, 'Pombo', 17, 3, '2018-04-28 16:56:09'),
(156, 'Songo', 17, 3, '2018-04-28 16:56:09'),
(157, 'Uíge', 17, 3, '2018-04-28 16:56:09'),
(158, '<NAME>', 17, 3, '2018-04-28 16:56:09'),
(159, 'Cuimba', 18, 3, '2018-04-28 16:56:09'),
(160, '<NAME>', 18, 3, '2018-04-28 16:56:09'),
(161, 'Nóqui', 18, 3, '2018-04-28 16:56:09'),
(162, 'Nzeto', 18, 3, '2018-04-28 16:56:09'),
(163, 'Soyo', 18, 3, '2018-04-28 16:56:09'),
(164, 'Tomboco', 18, 3, '2018-04-28 16:56:09'),
(165, 'Dundo', 12, 3, '2018-04-28 16:56:09');
-- --------------------------------------------------------
--
-- Estrutura da tabela `pais`
--
CREATE TABLE `pais` (
`id` int(11) NOT NULL,
`sigla` varchar(3) NOT NULL,
`nome` varchar(150) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Extraindo dados da tabela `pais`
--
INSERT INTO `pais` (`id`, `sigla`, `nome`) VALUES
(1, 'AF', 'Afghanistan'),
(2, 'AL', 'Albania'),
(3, 'DZ', 'Algeria'),
(4, 'AS', 'American Samoa'),
(5, 'AD', 'Andorra'),
(6, 'AO', 'Angola'),
(7, 'AI', 'Anguilla'),
(8, 'AQ', 'Antarctica'),
(9, 'AG', 'Antigua And Barbuda'),
(10, 'AR', 'Argentina'),
(11, 'AM', 'Armenia'),
(12, 'AW', 'Aruba'),
(13, 'AU', 'Australia'),
(14, 'AT', 'Austria'),
(15, 'AZ', 'Azerbaijan'),
(16, 'BS', 'Bahamas The'),
(17, 'BH', 'Bahrain'),
(18, 'BD', 'Bangladesh'),
(19, 'BB', 'Barbados'),
(20, 'BY', 'Belarus'),
(21, 'BE', 'Belgium'),
(22, 'BZ', 'Belize'),
(23, 'BJ', 'Benin'),
(24, 'BM', 'Bermuda'),
(25, 'BT', 'Bhutan'),
(26, 'BO', 'Bolivia'),
(27, 'BA', 'Bosnia and Herzegovina'),
(28, 'BW', 'Botswana'),
(29, 'BV', 'Bouvet Island'),
(30, 'BR', 'Brazil'),
(31, 'IO', 'British Indian Ocean Territory'),
(32, 'BN', 'Brunei'),
(33, 'BG', 'Bulgaria'),
(34, 'BF', 'Burkina Faso'),
(35, 'BI', 'Burundi'),
(36, 'KH', 'Cambodia'),
(37, 'CM', 'Cameroon'),
(38, 'CA', 'Canada'),
(39, 'CV', 'Cape Verde'),
(40, 'KY', 'Cayman Islands'),
(41, 'CF', 'Central African Republic'),
(42, 'TD', 'Chad'),
(43, 'CL', 'Chile'),
(44, 'CN', 'China'),
(45, 'CX', 'Christmas Island'),
(46, 'CC', 'Cocos (Keeling) Islands'),
(47, 'CO', 'Colombia'),
(48, 'KM', 'Comoros'),
(49, 'CG', 'Congo'),
(50, 'CD', 'Congo The Democratic Republic Of The'),
(51, 'CK', 'Cook Islands'),
(52, 'CR', 'Costa Rica'),
(53, 'CI', 'Cote D\'Ivoire (Ivory Coast)'),
(54, 'HR', 'Croatia (Hrvatska)'),
(55, 'CU', 'Cuba'),
(56, 'CY', 'Cyprus'),
(57, 'CZ', 'Czech Republic'),
(58, 'DK', 'Denmark'),
(59, 'DJ', 'Djibouti'),
(60, 'DM', 'Dominica'),
(61, 'DO', 'Dominican Republic'),
(62, 'TP', 'East Timor'),
(63, 'EC', 'Ecuador'),
(64, 'EG', 'Egypt'),
(65, 'SV', 'El Salvador'),
(66, 'GQ', 'Equatorial Guinea'),
(67, 'ER', 'Eritrea'),
(68, 'EE', 'Estonia'),
(69, 'ET', 'Ethiopia'),
(70, 'XA', 'External Territories of Australia'),
(71, 'FK', 'Falkland Islands'),
(72, 'FO', 'Faroe Islands'),
(73, 'FJ', 'Fiji Islands'),
(74, 'FI', 'Finland'),
(75, 'FR', 'France'),
(76, 'GF', 'French Guiana'),
(77, 'PF', 'French Polynesia'),
(78, 'TF', 'French Southern Territories'),
(79, 'GA', 'Gabon'),
(80, 'GM', 'Gambia The'),
(81, 'GE', 'Georgia'),
(82, 'DE', 'Germany'),
(83, 'GH', 'Ghana'),
(84, 'GI', 'Gibraltar'),
(85, 'GR', 'Greece'),
(86, 'GL', 'Greenland'),
(87, 'GD', 'Grenada'),
(88, 'GP', 'Guadeloupe'),
(89, 'GU', 'Guam'),
(90, 'GT', 'Guatemala'),
(91, 'XU', 'Guernsey and Alderney'),
(92, 'GN', 'Guinea'),
(93, 'GW', 'Guinea-Bissau'),
(94, 'GY', 'Guyana'),
(95, 'HT', 'Haiti'),
(96, 'HM', 'Heard and McDonald Islands'),
(97, 'HN', 'Honduras'),
(98, 'HK', 'Hong Kong S.A.R.'),
(99, 'HU', 'Hungary'),
(100, 'IS', 'Iceland'),
(101, 'IN', 'India'),
(102, 'ID', 'Indonesia'),
(103, 'IR', 'Iran'),
(104, 'IQ', 'Iraq'),
(105, 'IE', 'Ireland'),
(106, 'IL', 'Israel'),
(107, 'IT', 'Italy'),
(108, 'JM', 'Jamaica'),
(109, 'JP', 'Japan'),
(110, 'XJ', 'Jersey'),
(111, 'JO', 'Jordan'),
(112, 'KZ', 'Kazakhstan'),
(113, 'KE', 'Kenya'),
(114, 'KI', 'Kiribati'),
(115, 'KP', 'Korea North'),
(116, 'KR', 'Korea South'),
(117, 'KW', 'Kuwait'),
(118, 'KG', 'Kyrgyzstan'),
(119, 'LA', 'Laos'),
(120, 'LV', 'Latvia'),
(121, 'LB', 'Lebanon'),
(122, 'LS', 'Lesotho'),
(123, 'LR', 'Liberia'),
(124, 'LY', 'Libya'),
(125, 'LI', 'Liechtenstein'),
(126, 'LT', 'Lithuania'),
(127, 'LU', 'Luxembourg'),
(128, 'MO', 'Macau S.A.R.'),
(129, 'MK', 'Macedonia'),
(130, 'MG', 'Madagascar'),
(131, 'MW', 'Malawi'),
(132, 'MY', 'Malaysia'),
(133, 'MV', 'Maldives'),
(134, 'ML', 'Mali'),
(135, 'MT', 'Malta'),
(136, 'XM', 'Man (Isle of)'),
(137, 'MH', 'Marshall Islands'),
(138, 'MQ', 'Martinique'),
(139, 'MR', 'Mauritania'),
(140, 'MU', 'Mauritius'),
(141, 'YT', 'Mayotte'),
(142, 'MX', 'Mexico'),
(143, 'FM', 'Micronesia'),
(144, 'MD', 'Moldova'),
(145, 'MC', 'Monaco'),
(146, 'MN', 'Mongolia'),
(147, 'MS', 'Montserrat'),
(148, 'MA', 'Morocco'),
(149, 'MZ', 'Mozambique'),
(150, 'MM', 'Myanmar'),
(151, 'NA', 'Namibia'),
(152, 'NR', 'Nauru'),
(153, 'NP', 'Nepal'),
(154, 'AN', 'Netherlands Antilles'),
(155, 'NL', 'Netherlands The'),
(156, 'NC', 'New Caledonia'),
(157, 'NZ', 'New Zealand'),
(158, 'NI', 'Nicaragua'),
(159, 'NE', 'Niger'),
(160, 'NG', 'Nigeria'),
(161, 'NU', 'Niue'),
(162, 'NF', 'Norfolk Island'),
(163, 'MP', 'Northern Mariana Islands'),
(164, 'NO', 'Norway'),
(165, 'OM', 'Oman'),
(166, 'PK', 'Pakistan'),
(167, 'PW', 'Palau'),
(168, 'PS', 'Palestinian Territory Occupied'),
(169, 'PA', 'Panama'),
(170, 'PG', 'Papua new Guinea'),
(171, 'PY', 'Paraguay'),
(172, 'PE', 'Peru'),
(173, 'PH', 'Philippines'),
(174, 'PN', 'Pitcairn Island'),
(175, 'PL', 'Poland'),
(176, 'PT', 'Portugal'),
(177, 'PR', 'Puerto Rico'),
(178, 'QA', 'Qatar'),
(179, 'RE', 'Reunion'),
(180, 'RO', 'Romania'),
(181, 'RU', 'Russia'),
(182, 'RW', 'Rwanda'),
(183, 'SH', 'Saint Helena'),
(184, 'KN', 'Saint Kitts And Nevis'),
(185, 'LC', 'Saint Lucia'),
(186, 'PM', 'Saint Pierre and Miquelon'),
(187, 'VC', 'Saint Vincent And The Grenadines'),
(188, 'WS', 'Samoa'),
(189, 'SM', 'San Marino'),
(190, 'ST', 'Sao Tome and Principe'),
(191, 'SA', 'Saudi Arabia'),
(192, 'SN', 'Senegal'),
(193, 'RS', 'Serbia'),
(194, 'SC', 'Seychelles'),
(195, 'SL', 'Sierra Leone'),
(196, 'SG', 'Singapore'),
(197, 'SK', 'Slovakia'),
(198, 'SI', 'Slovenia'),
(199, 'XG', 'Smaller Territories of the UK'),
(200, 'SB', 'Solomon Islands'),
(201, 'SO', 'Somalia'),
(202, 'ZA', 'South Africa'),
(203, 'GS', 'South Georgia'),
(204, 'SS', 'South Sudan'),
(205, 'ES', 'Spain'),
(206, 'LK', 'Sri Lanka'),
(207, 'SD', 'Sudan'),
(208, 'SR', 'Suriname'),
(209, 'SJ', 'Svalbard And Jan Mayen Islands'),
(210, 'SZ', 'Swaziland'),
(211, 'SE', 'Sweden'),
(212, 'CH', 'Switzerland'),
(213, 'SY', 'Syria'),
(214, 'TW', 'Taiwan'),
(215, 'TJ', 'Tajikistan'),
(216, 'TZ', 'Tanzania'),
(217, 'TH', 'Thailand'),
(218, 'TG', 'Togo'),
(219, 'TK', 'Tokelau'),
(220, 'TO', 'Tonga'),
(221, 'TT', 'Trinidad And Tobago'),
(222, 'TN', 'Tunisia'),
(223, 'TR', 'Turkey'),
(224, 'TM', 'Turkmenistan'),
(225, 'TC', 'Turks And Caicos Islands'),
(226, 'TV', 'Tuvalu'),
(227, 'UG', 'Uganda'),
(228, 'UA', 'Ukraine'),
(229, 'AE', 'United Arab Emirates'),
(230, 'GB', 'United Kingdom'),
(231, 'US', 'United States'),
(232, 'UM', 'United States Minor Outlying Islands'),
(233, 'UY', 'Uruguay'),
(234, 'UZ', 'Uzbekistan'),
(235, 'VU', 'Vanuatu'),
(236, 'VA', 'Vatican City State (Holy See)'),
(237, 'VE', 'Venezuela'),
(238, 'VN', 'Vietnam'),
(239, 'VG', 'Virgin Islands (British)'),
(240, 'VI', 'Virgin Islands (US)'),
(241, 'WF', 'Wallis And Futuna Islands'),
(242, 'EH', 'Western Sahara'),
(243, 'YE', 'Yemen'),
(244, 'YU', 'Yugoslavia'),
(245, 'ZM', 'Zambia'),
(246, 'ZW', 'Zimbabwe');
-- --------------------------------------------------------
--
-- Estrutura da tabela `parametro_estado_grupo`
--
CREATE TABLE `parametro_estado_grupo` (
`id` int(11) NOT NULL,
`estado_processo` int(11) NOT NULL,
`sigla_role` varchar(16) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `parametro_estado_grupo`
--
INSERT INTO `parametro_estado_grupo` (`id`, `estado_processo`, `sigla_role`) VALUES
(1, 1, 'secretaria'),
(2, 2, 'admin'),
(3, 3, 'dmguuc'),
(4, 4, 'cruc'),
(5, 5, 'TRUC'),
(6, -1, 'cruc'),
(7, -2, 'dmguuc');
-- --------------------------------------------------------
--
-- Estrutura da tabela `parecer`
--
CREATE TABLE `parecer` (
`id` int(11) NOT NULL,
`descricao` text NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`id_utilizador` int(11) NOT NULL,
`id_processo` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `parecer`
--
INSERT INTO `parecer` (`id`, `descricao`, `data_criacao`, `id_utilizador`, `id_processo`) VALUES
(1, 'Trate bem deste vaso.<br>', '2018-11-28 13:44:17', 7, 1),
(2, 'Tomei conhecimento.<br>', '2018-11-28 19:22:47', 4, 1),
(3, 'Cuide bem deste processo<br>', '2018-12-06 15:02:20', 8, 1),
(4, 'Tomei conhecimento.<br>', '2018-12-06 15:09:32', 10, 1),
(5, 'Está nos conformes.<br>', '2018-12-06 15:48:03', 8, 1),
(6, '<b></b>Teste de parecer...<br>', '2018-12-07 15:40:18', 7, 2),
(7, 'Cuide bem deste processo.<br>', '2018-12-07 15:41:29', 4, 2),
(8, 'Tomei conhecimento...<br>', '2018-12-07 15:43:23', 8, 2),
(9, 'Tomei conhecimento<br>', '2019-06-13 06:53:35', 7, 3);
-- --------------------------------------------------------
--
-- Estrutura da tabela `parecer_comun`
--
CREATE TABLE `parecer_comun` (
`id` int(11) NOT NULL,
`parecer` varchar(100) NOT NULL,
`estado` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `parecer_comun`
--
INSERT INTO `parecer_comun` (`id`, `parecer`, `estado`) VALUES
(1, 'T.C.', 1),
(2, 'T.C tem a minha aprovaçåo', 1),
(3, 'Processo aprovado', 1),
(4, 'Preciso de mais detalhes ', 1),
(5, 'T.C. ver o que se pode fazer', 1),
(6, 'T.C. cuidar deste processo, se puder vai ao terreno', 1),
(7, 'Processo reprovado', 1),
(8, 'T.C. cuidar deste processo, vai mesmo ao terreno', 1);
-- --------------------------------------------------------
--
-- Estrutura da tabela `poligono`
--
CREATE TABLE `poligono` (
`id` int(11) NOT NULL,
`id_zona` int(11) NOT NULL,
`id_terreno` int(11) NOT NULL,
`latitude` double NOT NULL,
`longitude` double NOT NULL,
`p_front` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `poligono`
--
INSERT INTO `poligono` (`id`, `id_zona`, `id_terreno`, `latitude`, `longitude`, `p_front`) VALUES
(1, 15, 1, 1212, 121212, 0),
(2, 15, 1, 12121, 12, 0),
(3, 15, 1, 22, 112, 0),
(4, 15, 1, 232, 23232, 0),
(5, 15, 2, 23232, 121212, 0),
(6, 15, 2, 232, 2323, 0),
(7, 15, 2, 4545, 2121, 0),
(8, 15, 2, 31, 323, 0),
(9, 15, 3, 4545, 6555, 0),
(10, 15, 3, 6434, 575, 0),
(11, 15, 3, 6434, 434343, 0),
(12, 15, 3, 6564, 434343, 0);
-- --------------------------------------------------------
--
-- Estrutura da tabela `ponto`
--
CREATE TABLE `ponto` (
`id` int(11) NOT NULL,
`latitude` double NOT NULL,
`longitude` double NOT NULL,
`id_terreno` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Estrutura da tabela `prioridade`
--
CREATE TABLE `prioridade` (
`id` int(11) NOT NULL,
`descricao` varchar(30) NOT NULL,
`estado` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `prioridade`
--
INSERT INTO `prioridade` (`id`, `descricao`, `estado`) VALUES
(1, 'Normal', 1),
(2, 'Urgente', 1),
(3, 'Muito Urgente', 1);
-- --------------------------------------------------------
--
-- Estrutura da tabela `processo`
--
CREATE TABLE `processo` (
`id` int(11) NOT NULL,
`id_assunto` int(11) NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`codigo` varchar(10) NOT NULL,
`id_utilizador` int(11) NOT NULL,
`id_utente` int(11) NOT NULL,
`estado` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `processo`
--
INSERT INTO `processo` (`id`, `id_assunto`, `data_criacao`, `codigo`, `id_utilizador`, `id_utente`, `estado`) VALUES
(1, 2, '2018-11-24 02:11:58', '001/LT/18', 5, 1, 1),
(2, 2, '2018-11-27 10:11:58', '002/LT/18', 5, 2, 1),
(3, 2, '2018-11-27 10:11:05', '003/LT/18', 5, 3, 1),
(7, 1, '2019-02-18 22:10:56', '004/AQ/18', 5, 10, 1),
(8, 1, '2019-02-18 10:02:07', '005/AQ/19', 5, 5, 1),
(9, 2, '2019-06-13 07:06:32', '006/LT/19', 5, 13, 1),
(10, 1, '2019-06-13 11:06:55', '007/AQ/19', 5, 8, 1);
-- --------------------------------------------------------
--
-- Estrutura da tabela `processo_administracao`
--
CREATE TABLE `processo_administracao` (
`id` int(11) NOT NULL,
`id_processo` int(11) NOT NULL,
`id_administracao` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Estrutura da tabela `processo_documento`
--
CREATE TABLE `processo_documento` (
`id` int(11) NOT NULL,
`id_processo` int(11) NOT NULL,
`id_documento` int(11) NOT NULL,
`foto` varchar(70) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `processo_documento`
--
INSERT INTO `processo_documento` (`id`, `id_processo`, `id_documento`, `foto`) VALUES
(1, 1, 2, 'dhulka-df356f8ee1604ba575d3938b68b02fbc.jpg'),
(2, 1, 3, 'dhulka-e82299084458b467180d106276c6a568.jpg'),
(3, 2, 2, 'dhulka-9ea0d7447a99c1a5b992b6dabdaaaa23.jpg'),
(4, 2, 3, 'dhulka-fd21f35befd46e61040ae5887a09dd9b.jpg'),
(5, 2, 4, 'dhulka-26ce1bb570fad7a30cbff124357f01c0.jpg'),
(6, 2, 5, 'dhulka-fbe66a087ffe653d0afc85c459353ab2.jpg'),
(7, 3, 2, 'dhulka-496bedc45620947393c93e7f1ffa6345.jpg'),
(8, 3, 3, 'dhulka-88e971aef2b2d52164a5c20fd8eb42cd.jpg'),
(9, 3, 4, 'dhulka-ca9b86ceea67413599f0d5ea77eddfea.jpg'),
(19, 7, 2, 'dhulka-candidatura-bf6816f97b702d1c7998aa9c654fb83a.jpg'),
(20, 7, 3, 'dhulka-candidatura-26b8b04da65139cbd4f9fca811c9510e.jpg'),
(21, 7, 4, 'dhulka-candidatura-524dda857413c1218ab31a09c3e28417.jpg'),
(22, 7, 6, 'dhulka-candidatura-bd946b063776d8ff11e54bb394b08a49.jpg'),
(23, 7, 7, 'dhulka-candidatura-f2e4c1e2451b40ef1b3fe45c5a841fc8.jpg'),
(24, 8, 2, 'dhulka-candidatura-43e668f9b350a784266b080e47add4e3.jpg'),
(25, 8, 4, 'dhulka-candidatura-64682941c5598e189ab7f38da0ce856d.jpg'),
(26, 8, 6, 'dhulka-candidatura-347f549d4627977c958c1ef9556a4a26.jpg'),
(27, 8, 7, 'dhulka-candidatura-9671a5461278c55fd12ffd1b90552f55.jpg'),
(28, 9, 2, 'dhulka-d883896aa55c355c54a2f731df6f02f1.jpg'),
(29, 9, 3, 'dhulka-1ad8ae6dbc41539d3320beecf25f30fc.jpg'),
(30, 9, 4, 'dhulka-ccb8817f5098b2919fed366c3c6ae311.jpg'),
(31, 9, 5, 'dhulka-52d2445ccc89ef15bfd2c2e65d9d1c64.jpg'),
(32, 9, 6, 'dhulka-f5a8e617eeaa272b3ba2398b9a4183ef.jpg');
-- --------------------------------------------------------
--
-- Estrutura da tabela `processo_tecnico`
--
CREATE TABLE `processo_tecnico` (
`id` int(11) NOT NULL,
`id_processo` int(11) NOT NULL,
`id_tecnico` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `processo_tecnico`
--
INSERT INTO `processo_tecnico` (`id`, `id_processo`, `id_tecnico`) VALUES
(1, 1, 10),
(2, 2, 11);
-- --------------------------------------------------------
--
-- Estrutura da tabela `projecto`
--
CREATE TABLE `projecto` (
`id` int(11) NOT NULL,
`id_bairro` int(11) NOT NULL,
`coordenador` int(11) NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`estado` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `projecto`
--
INSERT INTO `projecto` (`id`, `id_bairro`, `coordenador`, `data_criacao`, `estado`) VALUES
(1, 15, 3, '2019-02-24 18:12:09', 1),
(2, 16, 3, '2019-03-04 09:55:01', 1),
(3, 17, 2, '2019-03-04 23:55:57', 1);
-- --------------------------------------------------------
--
-- Estrutura da tabela `projecto_descricao`
--
CREATE TABLE `projecto_descricao` (
`id` int(11) NOT NULL,
`id_projecto` int(11) NOT NULL,
`descricao` text NOT NULL,
`qtde_terreno` int(11) NOT NULL,
`area_projecto` float NOT NULL,
`publico_alvo` varchar(200) NOT NULL,
`dist_terrenos` float NOT NULL,
`espaco_rua` float NOT NULL,
`data_limite_expo` date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `projecto_descricao`
--
INSERT INTO `projecto_descricao` (`id`, `id_projecto`, `descricao`, `qtde_terreno`, `area_projecto`, `publico_alvo`, `dist_terrenos`, `espaco_rua`, `data_limite_expo`) VALUES
(1, 1, '<h2><b>Lorem</b></h2><pre>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquid autem commodi esse eum ex facilis minima minus molestiae, molestias nobis non<br>, placeat quibusdam, saepe temporibus voluptatem? Culpa distinctio repudiandae soluta?<br></pre><br><br>', 10, 1000, 'Jardineiros, Vendedores ambulantes.', 1, 1, '2019-02-28'),
(2, 2, '<div><b>Teste</b><br></div><div>Teste, teste2, teste3, teste4, teste5, teste5, teste6, teste7, teste8, teste9, teste10, teste11, teste12, teste13, teste14, teste15, teste16</div><div>Teste17, teste18, teste19, teste20.<br></div>', 10, 1000, 'Teste, teste2, teste3', 1, 1, '2019-04-04'),
(3, 3, '<pre>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ab ad commodi, cupiditate, explicabo magnam maxime mollitia nam porro provident reprehenderit repudiandae sed tempora tenetur. Architecto distinctio laboriosam minima necessitatibus tempore!</pre><br>', 100, 1000, 'Vendedores, Estuantes', 1, 1, '2019-07-31'),
(4, 3, '<pre>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ab ad commodi, cupiditate, explicabo magnam maxime mollitia nam porro provident reprehenderit repudiandae sed tempora tenetur. Architecto distinctio laboriosam minima necessitatibus tempore!</pre><br>', 100, 1000, 'Vendedores, Estuantes', 1, 1, '2019-07-31');
-- --------------------------------------------------------
--
-- Estrutura da tabela `projecto_terreno`
--
CREATE TABLE `projecto_terreno` (
`id` int(11) NOT NULL,
`id_projecto` int(11) NOT NULL,
`id_terreno` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci;
--
-- Extraindo dados da tabela `projecto_terreno`
--
INSERT INTO `projecto_terreno` (`id`, `id_projecto`, `id_terreno`) VALUES
(1, 1, 1),
(2, 1, 2),
(3, 1, 3);
-- --------------------------------------------------------
--
-- Estrutura da tabela `provincia`
--
CREATE TABLE `provincia` (
`id` int(11) NOT NULL,
`nome` varchar(50) NOT NULL,
`sigla` varchar(2) NOT NULL,
`longitude` float NOT NULL,
`latitude` float NOT NULL,
`id_utilizador` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Extraindo dados da tabela `provincia`
--
INSERT INTO `provincia` (`id`, `nome`, `sigla`, `longitude`, `latitude`, `id_utilizador`) VALUES
(1, 'Luanda', 'LA', -8.1933, 13.1933, 0),
(2, 'Bengo', 'BO', -8.1933, 13.1933, 0),
(3, 'Benguela', 'BA', -8.1933, 13.1933, 0),
(4, 'Bié', 'BE', -8.1933, 13.1933, 0),
(5, 'Cabinda', 'CA', -8.1933, 13.1933, 0),
(6, 'Cunene', 'CE', -8.1933, 13.1933, 0),
(7, '<NAME>', 'KK', -8.1933, 13.1933, 0),
(8, '<NAME>', 'KN', -8.1933, 13.1933, 0),
(9, '<NAME>', 'KS', -8.1933, 13.1933, 0),
(10, 'Huambo', 'HO', -8.1933, 13.1933, 0),
(11, 'Huíla', 'HA', -8.1933, 13.1933, 0),
(12, '<NAME>', 'LN', -8.1933, 13.1933, 0),
(13, '<NAME>', 'LS', -8.1933, 13.1933, 0),
(14, 'Malanje', 'ME', -8.1933, 13.1933, 0),
(15, 'Moxico', 'MO', -8.1933, 13.1933, 0),
(16, 'Namibe', 'NE', -8.1933, 13.1933, 0),
(17, 'Uíge', 'UE', -8.1933, 13.1933, 0),
(18, 'Zaire', 'ZE', -8.1933, 13.1933, 0);
-- --------------------------------------------------------
--
-- Estrutura da tabela `reparticao`
--
CREATE TABLE `reparticao` (
`id` int(11) NOT NULL,
`nome` varchar(80) NOT NULL,
`estado` int(11) NOT NULL,
`id_provincia` int(11) NOT NULL,
`id_utilizador` int(11) NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `reparticao`
--
INSERT INTO `reparticao` (`id`, `nome`, `estado`, `id_provincia`, `id_utilizador`, `data_criacao`) VALUES
(1, 'REPARTIÇÃO PROVINCIAL - CUANZA SUL', 1, 2, 3, '2018-04-28 17:10:27'),
(2, 'REPARTIÇÃO PROVINCIAL - MOXICO', 1, 5, 3, '2018-04-28 14:05:58'),
(3, 'REPARTIÇÃO PROVINCIAL - CABINDA', 1, 13, 3, '2018-04-28 19:10:17'),
(4, 'REPARTIÇÃO PROVINCIAL - LUNDA SUL', 1, 9, 3, '2018-04-29 12:19:38');
-- --------------------------------------------------------
--
-- Estrutura da tabela `representante`
--
CREATE TABLE `representante` (
`id` int(11) NOT NULL,
`nome` varchar(80) NOT NULL,
`bi` varchar(16) NOT NULL,
`data_nascimento` date NOT NULL,
`genero` varchar(2) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Estrutura da tabela `representante_documento`
--
CREATE TABLE `representante_documento` (
`id` int(11) NOT NULL,
`id_representante` int(11) NOT NULL,
`id_documento` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Estrutura da tabela `role`
--
CREATE TABLE `role` (
`id` int(11) NOT NULL,
`nome` varchar(30) NOT NULL,
`sigla` varchar(10) NOT NULL,
`id_utilizador` int(11) NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `role`
--
INSERT INTO `role` (`id`, `nome`, `sigla`, `id_utilizador`, `data_criacao`) VALUES
(1, 'Administrador', 'admin', 1, '2018-08-26 17:06:04'),
(2, 'operador', 'secretaria', 1, '2018-08-26 12:18:15'),
(3, 'director', 'dmguuc', 1, '2018-04-10 17:03:50'),
(4, 'Admin TI', 'ATIA', 1, '2018-04-17 18:56:19'),
(5, 'Técnico de Campo', 'TRUC', 1, '2019-02-19 10:05:24'),
(6, 'Admin TI Repartição', 'ATIR', 1, '2019-02-19 10:05:32'),
(8, 'Master', 'MST', 2, '2018-04-26 12:04:08'),
(9, 'Testes', 'Ts', 1, '2018-08-12 19:51:47'),
(10, 'Che<NAME>', 'cruc', 1, '2018-09-08 14:01:38'),
(11, 'Técnico Administrativo', 'TRUCA', 1, '2019-02-19 10:05:40');
-- --------------------------------------------------------
--
-- Estrutura da tabela `role_menu_sub_menu`
--
CREATE TABLE `role_menu_sub_menu` (
`id` int(11) NOT NULL,
`id_role` int(11) NOT NULL,
`id_menu_sub_menu` int(11) NOT NULL,
`id_utilizador` int(11) NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `role_menu_sub_menu`
--
INSERT INTO `role_menu_sub_menu` (`id`, `id_role`, `id_menu_sub_menu`, `id_utilizador`, `data_criacao`) VALUES
(13, 1, 2, 1, '2018-04-26 00:18:09'),
(14, 1, 1, 1, '2018-04-26 00:18:09'),
(18, 2, 2, 1, '2018-04-26 00:28:43'),
(23, 2, 3, 1, '2018-04-26 06:51:13'),
(34, 8, 11, 2, '2018-04-26 12:09:13'),
(35, 8, 12, 2, '2018-04-26 12:09:13'),
(36, 8, 10, 2, '2018-04-26 12:09:13'),
(37, 8, 9, 2, '2018-04-26 12:09:13'),
(38, 8, 15, 2, '2018-04-26 12:09:13'),
(39, 8, 16, 2, '2018-04-26 12:09:13'),
(40, 8, 14, 2, '2018-04-26 12:09:13'),
(41, 8, 13, 2, '2018-04-26 12:09:13'),
(42, 8, 23, 2, '2018-04-26 12:09:13'),
(43, 8, 24, 2, '2018-04-26 12:09:13'),
(44, 8, 22, 2, '2018-04-26 12:09:13'),
(45, 8, 21, 2, '2018-04-26 12:09:13'),
(46, 8, 7, 2, '2018-04-26 12:09:13'),
(47, 8, 8, 2, '2018-04-26 12:09:13'),
(48, 8, 6, 2, '2018-04-26 12:09:13'),
(49, 8, 5, 2, '2018-04-26 12:09:13'),
(62, 3, 32, 3, '2018-04-26 18:59:05'),
(63, 3, 2, 3, '2018-04-26 18:59:06'),
(64, 8, 35, 3, '2018-04-26 19:19:00'),
(65, 8, 36, 3, '2018-04-26 19:19:00'),
(66, 8, 34, 3, '2018-04-26 19:19:00'),
(67, 8, 33, 3, '2018-04-26 19:19:00'),
(70, 8, 39, 3, '2018-04-27 12:58:33'),
(71, 8, 40, 3, '2018-04-27 12:58:33'),
(72, 8, 38, 3, '2018-04-27 12:58:33'),
(73, 8, 37, 3, '2018-04-27 12:58:33'),
(74, 5, 32, 3, '2018-04-27 13:09:22'),
(75, 5, 27, 3, '2018-04-27 13:09:22'),
(76, 5, 2, 3, '2018-04-27 13:09:22'),
(81, 8, 42, 3, '2018-04-27 13:48:06'),
(86, 6, 23, 3, '2018-04-28 15:49:18'),
(87, 6, 24, 3, '2018-04-28 15:49:19'),
(90, 8, 43, 3, '2018-04-28 18:24:34'),
(91, 8, 44, 3, '2018-04-28 18:24:34'),
(98, 2, 46, 3, '2018-04-29 12:28:35'),
(99, 2, 47, 3, '2018-04-29 12:28:35'),
(102, 4, 15, 3, '2018-04-29 14:34:50'),
(103, 4, 42, 3, '2018-04-29 14:34:50'),
(104, 4, 16, 3, '2018-04-29 14:34:50'),
(105, 4, 14, 3, '2018-04-29 14:34:50'),
(106, 4, 13, 3, '2018-04-29 14:34:50'),
(107, 4, 7, 3, '2018-04-29 14:34:50'),
(108, 4, 8, 3, '2018-04-29 14:34:50'),
(109, 4, 6, 3, '2018-04-29 14:34:50'),
(110, 4, 5, 3, '2018-04-29 14:34:50'),
(111, 9, 19, 3, '2018-08-12 19:53:10'),
(112, 9, 20, 3, '2018-08-12 19:53:10'),
(113, 9, 18, 3, '2018-08-12 19:53:10'),
(114, 9, 17, 3, '2018-08-12 19:53:10'),
(115, 9, 26, 3, '2018-08-12 19:53:42'),
(116, 9, 32, 3, '2018-08-12 19:53:42'),
(117, 3, 51, 3, '2018-08-13 10:15:48'),
(118, 3, 52, 3, '2018-08-13 10:15:48'),
(119, 3, 50, 3, '2018-08-13 10:15:48'),
(120, 3, 49, 3, '2018-08-13 10:15:48'),
(121, 2, 53, 3, '2018-08-13 21:22:20'),
(122, 2, 53, 3, '2018-08-13 21:22:40'),
(123, 2, 54, 3, '2018-08-13 21:29:01'),
(124, 2, 55, 3, '2018-08-13 21:29:01'),
(125, 8, 58, 3, '2018-08-14 20:52:36'),
(126, 8, 59, 3, '2018-08-14 20:52:36'),
(127, 8, 57, 3, '2018-08-14 20:52:36'),
(128, 8, 56, 3, '2018-08-14 20:52:36'),
(135, 8, 64, 3, '2018-08-24 15:30:30'),
(136, 8, 63, 3, '2018-08-24 15:30:30'),
(137, 4, 64, 6, '2018-08-25 16:26:58'),
(138, 4, 63, 6, '2018-08-25 16:26:58'),
(139, 2, 48, 1, '2018-08-26 12:24:03'),
(141, 2, 62, 1, '2018-08-26 12:24:04'),
(148, 2, 27, 1, '2018-08-26 14:51:25'),
(149, 2, 26, 1, '2018-08-26 14:51:25'),
(150, 2, 32, 1, '2018-08-26 14:51:25'),
(151, 2, 25, 1, '2018-08-26 14:51:25'),
(156, 4, 11, 6, '2018-08-26 14:57:37'),
(157, 4, 12, 6, '2018-08-26 14:57:37'),
(158, 4, 10, 6, '2018-08-26 14:57:37'),
(159, 4, 9, 6, '2018-08-26 14:57:37'),
(160, 4, 58, 6, '2018-08-26 14:57:37'),
(161, 4, 59, 6, '2018-08-26 14:57:37'),
(162, 4, 57, 6, '2018-08-26 14:57:37'),
(163, 4, 56, 6, '2018-08-26 14:57:37'),
(164, 4, 43, 6, '2018-08-26 14:57:37'),
(165, 4, 44, 6, '2018-08-26 14:57:37'),
(166, 4, 22, 6, '2018-08-26 14:57:37'),
(167, 4, 21, 6, '2018-08-26 14:57:37'),
(168, 1, 60, 1, '2018-08-26 15:08:35'),
(169, 1, 61, 1, '2018-08-26 15:09:52'),
(170, 1, 62, 1, '2018-08-26 15:09:52'),
(171, 1, 47, 1, '2018-08-26 15:09:52'),
(172, 2, 60, 6, '2018-08-26 15:31:16'),
(173, 2, 4, 6, '2018-08-26 15:31:16'),
(174, 4, 53, 6, '2018-09-05 14:57:59'),
(175, 3, 61, 1, '2018-09-08 12:22:23'),
(176, 3, 62, 1, '2018-09-08 12:22:23'),
(177, 3, 47, 1, '2018-09-08 12:22:24'),
(178, 10, 61, 1, '2018-09-08 14:02:41'),
(179, 10, 62, 1, '2018-09-08 14:02:41'),
(180, 10, 47, 1, '2018-09-08 14:02:41'),
(181, 1, 65, 1, '2018-09-08 14:19:26'),
(182, 10, 65, 1, '2018-09-08 14:19:44'),
(183, 3, 65, 1, '2018-09-08 14:20:05'),
(184, 10, 2, 1, '2018-09-14 10:07:46'),
(186, 3, 60, 6, '2018-09-14 12:49:58'),
(187, 3, 53, 6, '2018-09-14 12:51:06'),
(188, 3, 66, 1, '2018-09-14 16:12:27'),
(194, 10, 66, 1, '2018-09-17 12:32:36'),
(195, 10, 66, 1, '2018-09-17 12:32:58'),
(196, 10, 50, 1, '2018-09-17 12:32:58'),
(197, 1, 66, 1, '2018-09-17 13:10:14'),
(198, 1, 50, 1, '2018-09-17 13:10:14'),
(199, 2, 50, 1, '2018-09-18 09:07:05'),
(200, 2, 66, 1, '2018-09-18 09:07:05'),
(201, 1, 67, 1, '2018-09-22 13:39:43'),
(202, 3, 67, 1, '2018-09-22 13:40:06'),
(203, 10, 67, 1, '2018-09-22 13:40:59'),
(204, 5, 61, 1, '2018-09-23 13:43:39'),
(205, 5, 47, 1, '2018-09-23 13:43:39'),
(206, 5, 65, 1, '2018-09-23 13:43:40'),
(207, 5, 68, 1, '2018-09-23 18:19:26'),
(208, 5, 67, 6, '2018-09-23 19:08:37'),
(209, 5, 66, 1, '2018-09-24 11:45:23'),
(210, 5, 50, 1, '2018-09-24 11:45:23'),
(215, 5, 69, 1, '2018-09-25 15:50:44'),
(216, 5, 70, 1, '2018-09-25 15:50:44'),
(217, 5, 72, 1, '2018-09-25 15:50:44'),
(218, 5, 71, 1, '2018-09-25 15:50:44'),
(219, 2, 61, 1, '2018-09-28 16:58:48'),
(220, 2, 1, 1, '2018-09-28 17:05:19'),
(221, 8, 47, 1, '2018-11-28 08:39:06'),
(222, 8, 61, 1, '2018-11-28 08:39:06'),
(223, 2, 73, 1, '2018-11-28 18:48:33'),
(224, 2, 75, 1, '2019-02-12 18:29:36'),
(225, 1, 69, 1, '2019-02-19 10:10:44'),
(226, 1, 70, 1, '2019-02-19 10:10:44'),
(227, 1, 76, 1, '2019-02-22 15:39:11'),
(228, 2, 76, 1, '2019-02-22 19:27:58'),
(229, 2, 69, 1, '2019-02-22 19:27:59'),
(231, 2, 79, 1, '2019-02-25 16:47:28');
-- --------------------------------------------------------
--
-- Estrutura da tabela `sub_menu`
--
CREATE TABLE `sub_menu` (
`id` int(11) NOT NULL,
`nome` varchar(50) NOT NULL,
`icon` varchar(20) NOT NULL,
`id_utilizador` int(11) NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `sub_menu`
--
INSERT INTO `sub_menu` (`id`, `nome`, `icon`, `id_utilizador`, `data_criacao`) VALUES
(1, 'Novo', 'fa fa-plus', 1, '2018-04-26 01:17:44'),
(2, 'Listar', 'fa fa-list', 1, '2018-08-14 20:06:01'),
(3, 'Actualizar', 'fa fa-edit', 1, '2018-04-26 01:18:05'),
(4, 'Eliminar', 'fa fa-trash', 1, '2018-04-26 01:18:28'),
(5, 'add_privilegio', 'fa fa-settings', 3, '2018-04-27 13:36:18'),
(6, '', 'fa fa-home', 3, '2018-08-13 21:24:36'),
(7, 'Fisica', 'fa fa-user', 3, '2018-08-13 21:26:15'),
(8, 'Juridica', 'fa fa-users', 3, '2018-08-13 21:26:36'),
(9, 'detalhe', 'fa fa-eye', 3, '2018-08-20 12:26:53'),
(10, 'Enviar', 'fa fa-send-o', 3, '2018-09-21 17:37:47'),
(11, 'Adicionar Conta', 'fa fa-user-plus', 3, '2018-08-24 21:15:36'),
(12, 'Parecer', 'fa fa-edit', 1, '2018-09-08 14:16:05'),
(13, 'Coordenar', 'fa fa-wrench', 1, '2018-09-14 16:11:08'),
(14, 'Ver_parecer', 'fa fa-list', 1, '2018-09-22 13:38:29'),
(15, 'Projectar', 'fa fa-refresh', 1, '2018-09-23 18:18:38'),
(16, 'Servico', 'fa fa-exchange', 1, '2018-11-28 18:47:14'),
(17, 'aquisicao', 'fa fa-edit', 1, '2019-02-12 18:27:49'),
(18, 'Listar Tereno', 'fa fa-list', 1, '2019-02-22 15:37:43'),
(19, 'Estatística', 'fa fa-area-chart', 1, '2019-02-22 17:42:10'),
(20, 'detalhe terreno', 'fa fa-eye', 1, '2019-02-25 16:40:28');
-- --------------------------------------------------------
--
-- Estrutura da tabela `terreno`
--
CREATE TABLE `terreno` (
`id` int(11) NOT NULL,
`codigo` varchar(15) NOT NULL,
`area` float NOT NULL,
`largura` float NOT NULL,
`comprimento` float NOT NULL,
`bloco` varchar(11) NOT NULL,
`quarteirao` varchar(13) NOT NULL,
`lote` int(11) NOT NULL,
`num_vertice` int(11) NOT NULL,
`zona` int(11) NOT NULL,
`criador` int(11) NOT NULL,
`tipo` int(11) NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `terreno`
--
INSERT INTO `terreno` (`id`, `codigo`, `area`, `largura`, `comprimento`, `bloco`, `quarteirao`, `lote`, `num_vertice`, `zona`, `criador`, `tipo`, `data_criacao`) VALUES
(1, 'COCA00001', 600, 20, 30, '1', '1', 1, 4, 15, 5, 1, '2019-02-25 15:29:58'),
(2, 'COCA00002', 600, 20, 30, '1', '1', 2, 4, 15, 5, 1, '2019-02-25 16:22:02'),
(3, 'COCA00003', 300, 15, 20, '1', '1', 3, 4, 15, 5, 1, '2019-02-25 16:24:18');
-- --------------------------------------------------------
--
-- Estrutura da tabela `tipo_instituicao`
--
CREATE TABLE `tipo_instituicao` (
`id` int(11) NOT NULL,
`nome` varchar(40) NOT NULL,
`id_utilizador` int(11) NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `tipo_instituicao`
--
INSERT INTO `tipo_instituicao` (`id`, `nome`, `id_utilizador`, `data_criacao`) VALUES
(1, 'Igreja', 3, '2018-08-14 16:56:17'),
(2, 'Farmácia', 3, '2018-08-14 16:56:17'),
(3, 'Escola', 3, '2018-08-14 16:56:17'),
(4, 'Super Mercado', 3, '2018-08-14 16:56:17'),
(5, 'Outro', 3, '2018-08-14 16:56:17');
-- --------------------------------------------------------
--
-- Estrutura da tabela `user_teste`
--
CREATE TABLE `user_teste` (
`id` int(11) NOT NULL,
`id_cidadao` int(11) NOT NULL,
`user` varchar(30) NOT NULL,
`senha` varchar(100) NOT NULL,
`id_role` int(11) NOT NULL,
`fotografia` varchar(70) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `user_teste`
--
INSERT INTO `user_teste` (`id`, `id_cidadao`, `user`, `senha`, `id_role`, `fotografia`) VALUES
(1, 1, 'Hacker Xp', 'malaquias4', 8, '5b9154aff322b-1.jpg'),
(4, 2, 'joao.pereira', '123456', 3, '5ba0bfd68ce80-4.jpg'),
(5, 3, 'matondo.vicente', 'vicente1613', 2, '5ba78beaea8db-5.jpg'),
(6, 4, 'jorge.coelho', '123456', 4, '5b8fe85cab508-6.jpg'),
(7, 6, 'edson.viegas', '123456', 1, '5b9fb70ce6949-7.jpg'),
(8, 18, 'jeremias.capemba', '123456', 10, 'padrao.jpg'),
(9, 22, 'recio.sousa', 'sousa341', 5, 'padrao.jpg'),
(10, 23, 'francisco.sebastiao', '123456', 5, 'padrao.jpg'),
(11, 36, 'augusto.quarenta', '123456', 5, 'padrao.jpg');
-- --------------------------------------------------------
--
-- Estrutura da tabela `utente`
--
CREATE TABLE `utente` (
`id` int(11) NOT NULL,
`id_cidadao` int(11) NOT NULL,
`codigo` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `utente`
--
INSERT INTO `utente` (`id`, `id_cidadao`, `codigo`) VALUES
(1, 33, '001-FSC-18'),
(2, 34, '002-FSC-18'),
(3, 35, '003-FSC-18'),
(4, 38, '004-CAND-1'),
(5, 39, '005-CAND-1'),
(6, 40, '006-CAND-1'),
(7, 41, '007-CAND-1'),
(8, 42, '008-CAND-1'),
(10, 44, '009-CAND-1'),
(11, 45, '010-CAND-1'),
(12, 46, '011-CAND-1'),
(13, 47, '012-FSC-19');
-- --------------------------------------------------------
--
-- Estrutura da tabela `utente_terreno`
--
CREATE TABLE `utente_terreno` (
`id` int(11) NOT NULL,
`id_utente` int(11) NOT NULL,
`id_terreno` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `utente_terreno`
--
INSERT INTO `utente_terreno` (`id`, `id_utente`, `id_terreno`) VALUES
(1, 1, 1),
(2, 2, 2),
(3, 2, 3),
(4, 3, 4),
(5, 1, 1);
-- --------------------------------------------------------
--
-- Estrutura da tabela `utilizador`
--
CREATE TABLE `utilizador` (
`id` int(11) NOT NULL,
`id_cidadao` int(11) NOT NULL,
`id_administracao` int(11) NOT NULL,
`bi` varchar(16) NOT NULL,
`genero` varchar(2) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Estrutura da tabela `utilizador_administracao`
--
CREATE TABLE `utilizador_administracao` (
`id` int(11) NOT NULL,
`id_utilizador_func` int(11) NOT NULL,
`id_administracao` int(11) NOT NULL,
`id_utilizador` int(11) NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `utilizador_administracao`
--
INSERT INTO `utilizador_administracao` (`id`, `id_utilizador_func`, `id_administracao`, `id_utilizador`, `data_criacao`) VALUES
(1, 14, 1, 10, '2018-04-29 14:29:14');
-- --------------------------------------------------------
--
-- Estrutura da tabela `utilizador_reparticao`
--
CREATE TABLE `utilizador_reparticao` (
`id` int(11) NOT NULL,
`id_utilizador_func` int(11) NOT NULL,
`id_reparticao` int(11) NOT NULL,
`id_utilizador` int(11) NOT NULL,
`data_criacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Extraindo dados da tabela `utilizador_reparticao`
--
INSERT INTO `utilizador_reparticao` (`id`, `id_utilizador_func`, `id_reparticao`, `id_utilizador`, `data_criacao`) VALUES
(1, 10, 2, 3, '2018-04-28 14:05:58'),
(2, 11, 1, 3, '2018-04-28 17:10:26'),
(3, 12, 3, 3, '2018-04-28 19:10:17'),
(4, 13, 4, 3, '2018-04-29 12:19:38');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `administracao`
--
ALTER TABLE `administracao`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `administracao_role`
--
ALTER TABLE `administracao_role`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `assunto`
--
ALTER TABLE `assunto`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `bairro`
--
ALTER TABLE `bairro`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `candidato`
--
ALTER TABLE `candidato`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `candidatura`
--
ALTER TABLE `candidatura`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `candidatura_documento`
--
ALTER TABLE `candidatura_documento`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `caracteristica_inicial_terreno`
--
ALTER TABLE `caracteristica_inicial_terreno`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `caracteristica_terreno_projecto`
--
ALTER TABLE `caracteristica_terreno_projecto`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `cidadao`
--
ALTER TABLE `cidadao`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `combinacoes_terreno`
--
ALTER TABLE `combinacoes_terreno`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `comuna`
--
ALTER TABLE `comuna`
ADD PRIMARY KEY (`id`),
ADD KEY `fk_municipio` (`id_municipio`);
--
-- Indexes for table `conta`
--
ALTER TABLE `conta`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `conta_id_cidadao_uindex` (`id_cidadao`);
--
-- Indexes for table `contacto`
--
ALTER TABLE `contacto`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `data_entrega_doc`
--
ALTER TABLE `data_entrega_doc`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `destrito`
--
ALTER TABLE `destrito`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `documento`
--
ALTER TABLE `documento`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `entrada_saida`
--
ALTER TABLE `entrada_saida`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `fisica`
--
ALTER TABLE `fisica`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `foto_terreno`
--
ALTER TABLE `foto_terreno`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `galeria_projecto`
--
ALTER TABLE `galeria_projecto`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `juridica`
--
ALTER TABLE `juridica`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `menu`
--
ALTER TABLE `menu`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `menu_modulo`
--
ALTER TABLE `menu_modulo`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `menu_sub_menu`
--
ALTER TABLE `menu_sub_menu`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `modulo`
--
ALTER TABLE `modulo`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `morada`
--
ALTER TABLE `morada`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `municipio`
--
ALTER TABLE `municipio`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `pais`
--
ALTER TABLE `pais`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `parametro_estado_grupo`
--
ALTER TABLE `parametro_estado_grupo`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `parecer`
--
ALTER TABLE `parecer`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `parecer_comun`
--
ALTER TABLE `parecer_comun`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `poligono`
--
ALTER TABLE `poligono`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `ponto`
--
ALTER TABLE `ponto`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `prioridade`
--
ALTER TABLE `prioridade`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `processo`
--
ALTER TABLE `processo`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `processo_administracao`
--
ALTER TABLE `processo_administracao`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `processo_documento`
--
ALTER TABLE `processo_documento`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `processo_tecnico`
--
ALTER TABLE `processo_tecnico`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `projecto`
--
ALTER TABLE `projecto`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `projecto_descricao`
--
ALTER TABLE `projecto_descricao`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `projecto_terreno`
--
ALTER TABLE `projecto_terreno`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `provincia`
--
ALTER TABLE `provincia`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `reparticao`
--
ALTER TABLE `reparticao`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `representante`
--
ALTER TABLE `representante`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `representante_documento`
--
ALTER TABLE `representante_documento`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `role`
--
ALTER TABLE `role`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `role_menu_sub_menu`
--
ALTER TABLE `role_menu_sub_menu`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `sub_menu`
--
ALTER TABLE `sub_menu`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `terreno`
--
ALTER TABLE `terreno`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tipo_instituicao`
--
ALTER TABLE `tipo_instituicao`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `user_teste`
--
ALTER TABLE `user_teste`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `utente`
--
ALTER TABLE `utente`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `utente_terreno`
--
ALTER TABLE `utente_terreno`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `utilizador_administracao`
--
ALTER TABLE `utilizador_administracao`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `utilizador_reparticao`
--
ALTER TABLE `utilizador_reparticao`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `administracao`
--
ALTER TABLE `administracao`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `administracao_role`
--
ALTER TABLE `administracao_role`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `assunto`
--
ALTER TABLE `assunto`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `bairro`
--
ALTER TABLE `bairro`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
--
-- AUTO_INCREMENT for table `candidato`
--
ALTER TABLE `candidato`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `candidatura`
--
ALTER TABLE `candidatura`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `candidatura_documento`
--
ALTER TABLE `candidatura_documento`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `caracteristica_inicial_terreno`
--
ALTER TABLE `caracteristica_inicial_terreno`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT for table `caracteristica_terreno_projecto`
--
ALTER TABLE `caracteristica_terreno_projecto`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
--
-- AUTO_INCREMENT for table `cidadao`
--
ALTER TABLE `cidadao`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=48;
--
-- AUTO_INCREMENT for table `combinacoes_terreno`
--
ALTER TABLE `combinacoes_terreno`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `comuna`
--
ALTER TABLE `comuna`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=573;
--
-- AUTO_INCREMENT for table `conta`
--
ALTER TABLE `conta`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `contacto`
--
ALTER TABLE `contacto`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=48;
--
-- AUTO_INCREMENT for table `data_entrega_doc`
--
ALTER TABLE `data_entrega_doc`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `documento`
--
ALTER TABLE `documento`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `entrada_saida`
--
ALTER TABLE `entrada_saida`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24;
--
-- AUTO_INCREMENT for table `fisica`
--
ALTER TABLE `fisica`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=48;
--
-- AUTO_INCREMENT for table `foto_terreno`
--
ALTER TABLE `foto_terreno`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20;
--
-- AUTO_INCREMENT for table `galeria_projecto`
--
ALTER TABLE `galeria_projecto`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=36;
--
-- AUTO_INCREMENT for table `menu`
--
ALTER TABLE `menu`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
--
-- AUTO_INCREMENT for table `menu_modulo`
--
ALTER TABLE `menu_modulo`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `menu_sub_menu`
--
ALTER TABLE `menu_sub_menu`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=80;
--
-- AUTO_INCREMENT for table `modulo`
--
ALTER TABLE `modulo`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `morada`
--
ALTER TABLE `morada`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=48;
--
-- AUTO_INCREMENT for table `municipio`
--
ALTER TABLE `municipio`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=166;
--
-- AUTO_INCREMENT for table `pais`
--
ALTER TABLE `pais`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=247;
--
-- AUTO_INCREMENT for table `parametro_estado_grupo`
--
ALTER TABLE `parametro_estado_grupo`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `parecer`
--
ALTER TABLE `parecer`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `parecer_comun`
--
ALTER TABLE `parecer_comun`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `poligono`
--
ALTER TABLE `poligono`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT for table `prioridade`
--
ALTER TABLE `prioridade`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `processo`
--
ALTER TABLE `processo`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `processo_documento`
--
ALTER TABLE `processo_documento`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=33;
--
-- AUTO_INCREMENT for table `processo_tecnico`
--
ALTER TABLE `processo_tecnico`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `projecto`
--
ALTER TABLE `projecto`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `projecto_descricao`
--
ALTER TABLE `projecto_descricao`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `projecto_terreno`
--
ALTER TABLE `projecto_terreno`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `provincia`
--
ALTER TABLE `provincia`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;
--
-- AUTO_INCREMENT for table `reparticao`
--
ALTER TABLE `reparticao`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `role`
--
ALTER TABLE `role`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT for table `role_menu_sub_menu`
--
ALTER TABLE `role_menu_sub_menu`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=232;
--
-- AUTO_INCREMENT for table `sub_menu`
--
ALTER TABLE `sub_menu`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;
--
-- AUTO_INCREMENT for table `terreno`
--
ALTER TABLE `terreno`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `tipo_instituicao`
--
ALTER TABLE `tipo_instituicao`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `user_teste`
--
ALTER TABLE `user_teste`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT for table `utente`
--
ALTER TABLE `utente`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;
--
-- AUTO_INCREMENT for table `utente_terreno`
--
ALTER TABLE `utente_terreno`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `utilizador_administracao`
--
ALTER TABLE `utilizador_administracao`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `utilizador_reparticao`
--
ALTER TABLE `utilizador_reparticao`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- Constraints for dumped tables
--
--
-- Limitadores para a tabela `conta`
--
ALTER TABLE `conta`
ADD CONSTRAINT `conta___fk` FOREIGN KEY (`id_cidadao`) REFERENCES `cidadao` (`id`);
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
<reponame>eby8zevin/Progate
//e1
-- dapatkan nama dan jumlah penjualan unit untuk 5 barang dengan penjualan tertinggi
SELECT items.id, items.name, COUNT(*)
FROM sales_records
JOIN items
ON sales_records.item_id = items.id
GROUP BY items.id, items.name
ORDER BY COUNT(*) DESC
LIMIT 5;
//e2
-- dapatkan total penjualan dan total laba untuk seluruh site
SELECT SUM(items.price) AS "total penjualan", SUM(items.price - items.cost) AS "total laba"
FROM sales_records
JOIN items
ON sales_records.item_id = items.id;
|
<reponame>BaiMaoLi/Brian
-- phpMyAdmin SQL Dump
-- version 4.8.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Feb 07, 2019 at 10:59 PM
-- Server version: 10.1.37-MariaDB
-- PHP Version: 7.3.0
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `movingcompany`
--
-- --------------------------------------------------------
--
-- Table structure for table `employees`
--
CREATE TABLE `employees` (
`id` int(10) UNSIGNED NOT NULL,
`first_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`last_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`bonus` double NOT NULL DEFAULT '0',
`gender` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'male',
`pictureID` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`employeement_time` datetime NOT NULL,
`promotion_date` date DEFAULT NULL,
`state` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'activate',
`paid_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `employees`
--
INSERT INTO `employees` (`id`, `first_name`, `last_name`, `bonus`, `gender`, `pictureID`, `employeement_time`, `promotion_date`, `state`, `paid_method`, `created_at`, `updated_at`) VALUES
(2, 'Bai', 'MaoLi', 0, 'male', 'images.jpg', '2019-02-07 21:46:04', NULL, 'activate', 'cash', '2019-02-07 13:25:57', '2019-02-07 13:46:04');
-- --------------------------------------------------------
--
-- Table structure for table `employee_events`
--
CREATE TABLE `employee_events` (
`id` int(10) UNSIGNED NOT NULL,
`employee_id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `employee_jobs`
--
CREATE TABLE `employee_jobs` (
`id` int(10) UNSIGNED NOT NULL,
`employee_id` int(11) NOT NULL,
`job_id` int(11) NOT NULL,
`position_id` int(11) NOT NULL,
`employeement_state` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`hourly_pay` double NOT NULL,
`hourly_percent` double NOT NULL DEFAULT '0',
`flat_percent` double NOT NULL DEFAULT '0',
`extra_percent` double NOT NULL DEFAULT '0',
`packing_percent` double NOT NULL DEFAULT '0',
`service_percent` double NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `employee_jobs`
--
INSERT INTO `employee_jobs` (`id`, `employee_id`, `job_id`, `position_id`, `employeement_state`, `hourly_pay`, `hourly_percent`, `flat_percent`, `extra_percent`, `packing_percent`, `service_percent`, `created_at`, `updated_at`) VALUES
(4, 2, 4, 4, 'beginner', 25, 2, 2, 2, 1, 1, '2019-02-07 13:25:57', '2019-02-07 13:43:51'),
(5, 2, 3, 3, 'promote', 22, 1, 1, 1, 2, 1, '2019-02-07 13:25:57', '2019-02-07 13:44:02'),
(8, 2, 1, 4, 'promote', 16, 1, 1, 0, 1, 1, '2019-02-07 13:45:07', '2019-02-07 13:51:22');
-- --------------------------------------------------------
--
-- Table structure for table `employee_pays`
--
CREATE TABLE `employee_pays` (
`id` int(10) UNSIGNED NOT NULL,
`employee_id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`pay_amount` double NOT NULL,
`bonus` double NOT NULL DEFAULT '0',
`extra` double NOT NULL DEFAULT '0',
`packing` double NOT NULL DEFAULT '0',
`service` double NOT NULL DEFAULT '0',
`tips` double NOT NULL DEFAULT '0',
`non_profit` double NOT NULL DEFAULT '0',
`discount` double NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `events`
--
CREATE TABLE `events` (
`id` int(10) UNSIGNED NOT NULL,
`pick_address` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`drop_address` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`start_time` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`finish_time` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`labor_hours` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`travel_time` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`total_hours` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`discount` double NOT NULL DEFAULT '0',
`job_total` double NOT NULL,
`truck_license` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`comment` text COLLATE utf8mb4_unicode_ci NOT NULL,
`state` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`tips` double NOT NULL DEFAULT '0',
`bonus` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`attach_file` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`non_profit` double NOT NULL DEFAULT '0',
`job_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `jobs`
--
CREATE TABLE `jobs` (
`id` int(10) UNSIGNED NOT NULL,
`type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`variation` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`hourly_pay` double NOT NULL DEFAULT '0',
`hourly_percent` double NOT NULL DEFAULT '0',
`flat_percent` double NOT NULL DEFAULT '0',
`extra_percent` double NOT NULL DEFAULT '0',
`packing_percent` double NOT NULL DEFAULT '0',
`service_percent` double NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `jobs`
--
INSERT INTO `jobs` (`id`, `type`, `variation`, `hourly_pay`, `hourly_percent`, `flat_percent`, `extra_percent`, `packing_percent`, `service_percent`, `created_at`, `updated_at`) VALUES
(1, 'Hourly', NULL, 16, 1, 1, 1, 1, 1, '2019-02-07 11:38:31', '2019-02-07 11:39:07'),
(2, 'Hourly', 'Commerical', 20, 2, 1, 1, 1, 1, '2019-02-07 11:38:57', '2019-02-07 11:38:57'),
(3, 'Flat', NULL, 22, 1, 1, 1, 1, 1, '2019-02-07 11:42:28', '2019-02-07 11:42:28'),
(4, 'Flat', 'Professional', 25, 2, 2, 2, 1, 1, '2019-02-07 11:47:38', '2019-02-07 11:47:55');
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 1),
(6, '2019_01_30_012627_create_postions_table', 2),
(11, '2019_02_04_002319_create_events_table', 7),
(12, '2019_02_04_010203_create_employee_events_table', 7),
(13, '2019_02_04_090533_create_employee_pays_table', 7),
(14, '2019_01_30_000825_create_employees_table', 8),
(15, '2019_01_30_012544_create_jobs_table', 8),
(16, '2019_02_01_152149_create_employee_jobs_table', 8);
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `postions`
--
CREATE TABLE `postions` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `postions`
--
INSERT INTO `postions` (`id`, `name`, `created_at`, `updated_at`) VALUES
(3, 'Forman', '2019-01-30 07:25:06', '2019-02-01 01:04:15'),
(4, 'Driver', '2019-01-30 07:25:12', '2019-02-01 01:04:24'),
(5, 'Forman / Driver', '2019-02-01 01:04:41', '2019-02-01 01:04:41'),
(6, 'Helper', '2019-02-01 01:04:56', '2019-02-01 01:04:56'),
(7, 'Sales Person', '2019-02-01 01:05:08', '2019-02-01 01:05:08');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, '<NAME>', '<EMAIL>', NULL, '$2y$10$.LYa6lp1btAmpIEe/fTddOUhh5agDMQDdY9mekKyqkF3TDWfbxeVq', 'IiFXoql9GvJNMF3gv9HSMLnirdaseyUlXm0Ysiar4aFVImoh9TBtYJ0hhG3s', '2019-01-28 01:55:10', '2019-01-28 01:55:10'),
(2, '<NAME>', '<EMAIL>', NULL, '$2y$10$YgwpSh.NKXfcPAglcuNXFekTCQis57CYfy76RR7WK5mD75lmTTmz2', 'fKgIC8RtwLkeYtgKwnkBNhUvVhRBxXrIrlBBa8eJpgTZUXxvRC5FAqIrsiGO', '2019-01-29 01:19:16', '2019-01-29 01:19:16');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `employees`
--
ALTER TABLE `employees`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `employee_events`
--
ALTER TABLE `employee_events`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `employee_jobs`
--
ALTER TABLE `employee_jobs`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `employee_pays`
--
ALTER TABLE `employee_pays`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `events`
--
ALTER TABLE `events`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `jobs`
--
ALTER TABLE `jobs`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indexes for table `postions`
--
ALTER TABLE `postions`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `employees`
--
ALTER TABLE `employees`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `employee_events`
--
ALTER TABLE `employee_events`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `employee_jobs`
--
ALTER TABLE `employee_jobs`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `employee_pays`
--
ALTER TABLE `employee_pays`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `events`
--
ALTER TABLE `events`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `jobs`
--
ALTER TABLE `jobs`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;
--
-- AUTO_INCREMENT for table `postions`
--
ALTER TABLE `postions`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
<gh_stars>1-10
USE [VipunenTK]
GO
/****** Object: View [dbo].[v_f_tab_alueella_tyossakayvat_toimialoittain] Script Date: 15.11.2018 16:05:38 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER VIEW [dbo].[v_f_tab_alueella_tyossakayvat_toimialoittain] AS
SELECT [Tilastovuosi] = [tilv]
,[lkm]
,[Ammattiryhmä 1. taso] = d1.mitenna_ammattiryhma1
,[Ammattiryhmä 2. taso] = d1.mitenna_ammattiryhma2
,[Toimiala 1. taso] = d8.mitenna_toimiala1
,[Toimiala 2. taso] = d8.mitenna_toimiala2
,[Toimiala Tilastokeskus] = d2.toimiala1
,[Ikäryhmä] = d3.ika5v
,[Koulutusaste] = d4.koulutusaste2002
,[Koulutusaste, taso 1] = d6b.iscle2011
,[Koulutusaste, taso 2] = d6b.Koulutusaste_taso2
,[Koulutusala, taso 1] = d8b.iscfibroad2013
,[Koulutusala, taso 2] = d8b.iscfinarrow2013
,[Ammatillisen koulutuksen koulutuslaji] = d5.ammatillisen_koulutuksen_koulutuslaji
,[Opintoala] = d6.opintoala2002
,[Koulutusala] = d6.koulutusala2002
,[Työpaikan sijaintimaakunta] = d7.maakunta
--Ruotsi
,[Statistikår] = [tilv]
,[Yrkesgrupp, nivå 1] = d1.mitenna_ammattiryhma1_SV
,[Yrkesgrupp, nivå 2] = d1.mitenna_ammattiryhma2_SV
,[Bransch, nivå 1] = d8.mitenna_toimiala1_SV
,[Bransch, nivå 2] = d8.mitenna_toimiala2_SV
,[Bransch] = d2.toimiala1_SV
,[Åldersgrupp] = d3.ika5v_SV
,[Utbildningsnivå] = d4.koulutusaste2002_SV
,[Utbildningsnivå, nivå 1] = d6b.iscle2011_SV
,[Utbildningsnivå, nivå 2] = d6b.Koulutusaste_taso2_SV
,[Utbildningsområde, nivå 1] = d8b.iscfibroad2013_SV
,[Utbildningsområde, nivå 2] = d8b.iscfinarrow2013_SV
,[Utbildningsslag] = d5.ammatillisen_koulutuksen_koulutuslaji_SV
,[Studieområde] = d6.opintoala2002_SV
,[Utbildningsområde] = d6.koulutusala2002_SV
,[Arbetsplatsens landskap] = d7.maakunta_SV
--Englanti
,[Statistical year] = [tilv]
,[Profession group, level 1] = d1.mitenna_ammattiryhma1_EN
,[Profession group, level 2] = d1.mitenna_ammattiryhma2_EN
,[Industry, level 1] = d8.mitenna_toimiala1_EN
,[Industry, level 2] = d8.mitenna_toimiala2_EN
,[Industry] = d2.toimiala1_EN
,[Age group] = d3.ika5v_EN
,[Level of education] = d4.koulutusaste2002_EN
,[Level of education, tier 1] = d6b.iscle2011_EN
,[Level of education, tier 2] = d6b.Koulutusaste_taso2_EN
,[Field of education, tier 1] = d8b.iscfibroad2013_EN
,[Field of education, tier 2] = d8b.iscfinarrow2013_EN
,[Form of education and training] = d5.ammatillisen_koulutuksen_koulutuslaji_EN
,[Subfield of education] = d6.opintoala2002_EN
,[Field of education] = d6.koulutusala2002_EN
,[Region where the job is located] = d7.maakunta_EN
--koodimuuttujat
,d6.koulutusala2002_koodi as "Koodit Koulutusala"
,d6.opintoala2002_koodi as "Koodit Opintoala"
,d6.koulutusaste2002_koodi as "Koodit Koulutusaste"
,d7.maakunta_koodi as "Koodit Työpaikan maakunta"
,d6b.iscle2011_koodi as "Koodit Koulutusaste, taso 1"
,d6b.Koulutusaste_taso2_koodi as "Koodit Koulutusaste, taso 2"
,d8b.iscfibroad2013_koodi as "Koodit Koulutusala, taso 1"
,d8b.iscfinarrow2013_koodi as "Koodit Koulutusala, taso 2"
/*
--isced
,d6.iscle2011 as "Koulutusaste, taso 1"
,d6.Koulutusaste_taso2 as "Koulutusaste, taso 2"
,d6.iscfibroad2013 as "Koulutusala, taso 1"
,d6.iscfinarrow2013 as "Koulutusala, taso 2"
,d6.iscfi2013 as "Koulutusala, taso 3"
,d6.OKM_ohjauksen_ala as "OKM ohjauksen ala, korkeak."
,d6.iscle2011_SV as "Utbildn.nivå, nivå 1"
,d6.Koulutusaste_taso2_SV as "Utbildn.nivå, nivå 2"
,d6.iscfibroad2013_SV as "Utbildn.område, nivå 1"
,d6.iscfinarrow2013_SV as "Utbildn.område, nivå 2"
,d6.iscfi2013_SV as "Utbildn.område, nivå 3"
,d6.OKM_ohjauksen_ala_SV as "UKM-styrningsområde, högskolor"
,d6.iscle2011_EN as "Level of education, tier 1"
,d6.Koulutusaste_taso2_EN as "Level of education, tier 2"
,d6.iscfibroad2013_EN as "Field of education, tier 1"
,d6.iscfinarrow2013_EN as "Field of education, tier 2"
,d6.iscfi2013_EN as "Field of education, tier 3"
,d6.OKM_ohjauksen_ala_EN as "Field of ed., HE steering"
*/
--järjestyskentät
,[Ammattiryhmä 1. taso järj] = d1.jarjestys_ammattiryhma1
,[Ammattiryhmä 2. taso järj] = d1.jarjestys_ammattiryhma2
,[Toimiala 1. taso järj] = d8.jarjestys_mitenna_toimiala1
,[Toimiala 2. taso järj] = d8.jarjestys_mitenna_toimiala2
,[Toimiala Tilastokeskus järj] = d2.jarjestys_toimiala1
,[Ikäryhmä järj] = d3.jarjestys_ika5v
,[Koulutusaste järj] = d4.jarjestys_koulutusaste2002
,[Ammatillisen_koulutuksen_koulutuslaji järj] = d5.jarjestys
,[Opintoala järj] = d6.jarjestys_opintoala2002
,[Koulutusala järj] = d6.jarjestys_koulutusala2002
,[Työpaikan sijaintimaakunta järj] = d7.jarjestys_maakunta
,d6.jarjestys_iscle2011 as jarj_isced_koulast1
,d6.jarjestys_Koulutusaste_taso2 as jarj_isced_koulast2
,d6.jarjestys_iscfibroad2013 as jarj_isced_koulala1
,d6.jarjestys_iscfinarrow2013 as jarj_isced_koulala2
--,d6.jarjestys_iscfi2013 as jarj_isced_koulala3
--,d6.jarjestys_OKM_ohjauksen_ala as jarj_isced_okmohjaus1
FROM [VipunenTK].[dbo].[f_alueella_tyossakayvat_toimialoittain] f
LEFT JOIN dbo.d_mitenna_ammatti d1 on d1.id=f.mitenna_ammatti_id
LEFT JOIN dbo.d_toimiala_tk d2 on d2.id=f.tol2008_id
LEFT JOIN dbo.d_ika d3 on d3.id=f.ika_id
LEFT JOIN dbo.d_koulutusluokitus d4 on d4.id=f.koulutusaste_id
LEFT JOIN VipunenTK.dbo.d_koulutusluokitus d6b on d6b.id=f.koulutusaste_taso2_id
LEFT JOIN dbo.d_ammatillisen_koulutuksen_koulutuslaji d5 on d5.id=tutkintolaji_id
LEFT JOIN dbo.d_koulutusluokitus d6 on d6.id=opintoala_id
LEFT JOIN VipunenTK.dbo.d_koulutusluokitus d8b on d8b.id=f.koulutusala_taso2_id
LEFT JOIN dbo.d_alueluokitus d7 on d7.id=f.tyomaakunta_id
LEFT JOIN dbo.d_mitenna_toimiala d8 on d8.id=f.mitenna_toimiala_id
GO
USE [ANTERO] |
<gh_stars>10-100
CREATE TABLE `admin_shift_assign_log` (
`id_admin_shift_assign_log` int(11) unsigned NOT NULL AUTO_INCREMENT,
`id_community_shift` int(11) unsigned DEFAULT NULL,
`id_driver` int(11) unsigned DEFAULT NULL,
`id_admin` int(11) unsigned DEFAULT NULL,
`date` datetime DEFAULT NULL,
`assigned` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id_admin_shift_assign_log`),
KEY `admin_shift_assign_log_ibfk_1` (`id_community_shift`),
KEY `admin_shift_assign_log_ibfk_2` (`id_admin`),
KEY `admin_shift_assign_log_ibfk_3` (`id_driver`),
CONSTRAINT `admin_shift_assign_log_ibfk_1` FOREIGN KEY (`id_community_shift`) REFERENCES `community_shift` (`id_community_shift`) ON DELETE SET NULL ON UPDATE SET NULL,
CONSTRAINT `admin_shift_assign_log_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL,
CONSTRAINT `admin_shift_assign_log_ibfk_3` FOREIGN KEY (`id_driver`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; |
CREATE OR REPLACE FUNCTION tap_ema(_interval INT, _instrument_id BIGINT, _from DATE, _to DATE)
RETURNS TABLE("close_date" DATE, ema DOUBLE PRECISION)
LANGUAGE plpgsql
AS $$
DECLARE
BEGIN
RETURN QUERY
WITH RECURSIVE prices AS (
SELECT
aph.close_date dt,
aph.close_price closeprice
FROM tap_price_data_interval(_instrument_id, _from, _to) aph
ORDER BY aph.close_date
),
t AS (
SELECT
dt,
2.0 / (_interval + 1) AS alpha,
row_number()
OVER (),
closeprice
FROM prices
),
ema AS (
SELECT
*,
closeprice AS closeprice_ema
FROM t
WHERE row_number = 1
UNION ALL
SELECT
t2.dt,
t2.alpha,
t2.row_number,
t2.closeprice,
(t2.closeprice - ema.closeprice_ema) * t2.alpha + ema.closeprice_ema AS closeprice_ema
FROM ema
INNER JOIN t t2 ON ema.row_number = t2.row_number - 1
)
SELECT
dt close_date,
closeprice_ema ema
FROM ema
WHERE dt BETWEEN _from AND _to;
END;
$$; |
<reponame>G-Simeone/Learning_Tuscany_Tourism_Flows<filename>dev/SQL Scripts/create_edgelist.sql
create table tuscany.edgelist_comune_italy(
pro_com decimal,
new_pro_com decimal,
weight decimal
);
insert into tuscany.edgelist_comune_italy (
WITH addloc AS
(
select
vod.customer_id,
vod.time_stamp,
locs.pro_com
from tpt.tuscany.vodafone vod
left join
(select location_id, pro_com,region from tpt.tuscany.location_dictionary) locs
on locs.location_id=vod.location_id
),
edgelist AS
(
select pro_com,
LAG (pro_com,1) OVER (partition by customer_id ORDER BY time_stamp) AS new_pro_com
FROM addloc)
select pro_com, new_pro_com, count(*) as weight
from edgelist
GROUP BY pro_com, new_pro_com
);
delete from tuscany.edgelist_comune_italy
where pro_com is null or new_pro_com is null;
alter table tuscany.edgelist_comune_italy
add weight_filtered decimal default 0;
create temp table filtered_el as (
WITH addloc AS
(
select
vod.customer_id,
vod.time_stamp,
locs.pro_com
from tpt.tuscany.vodafone vod
left join
(select location_id, pro_com,region from tpt.tuscany.location_dictionary) locs
on locs.location_id=vod.location_id
where vod.customer_id not in (select customer_id from tuscany.excluded_customers)
),
edgelist AS
(
select pro_com,
LAG (pro_com,1) OVER (partition by customer_id ORDER BY time_stamp) AS new_pro_com
FROM addloc)
select pro_com, new_pro_com, count(*) as weight
from edgelist
GROUP BY pro_com, new_pro_com
);
begin transaction;
-- Update the target table using an inner join with the staging table
update tuscany.edgelist_comune_italy
set weight_filtered = filtered_el.weight
from filtered_el
where tuscany.edgelist_comune_italy.pro_com = filtered_el.pro_com
and tuscany.edgelist_comune_italy.new_pro_com = filtered_el.new_pro_com;
-- End transaction and commit
end transaction;
-- Drop the staging table
drop table time_in_tusc;
|
<reponame>Shuttl-Tech/antlr_psql
-- file:rowsecurity.sql ln:438 expect:true
SELECT * FROM part_document ORDER BY did
|
<reponame>scheltwort-it-services/common_schema<gh_stars>100-1000
--
-- Textual columns charsets & collations
--
CREATE OR REPLACE
ALGORITHM = MERGE
SQL SECURITY INVOKER
VIEW text_columns AS
SELECT
TABLE_SCHEMA,
TABLE_NAME,
COLUMN_NAME,
COLUMN_TYPE,
CHARACTER_SET_NAME,
COLLATION_NAME
FROM
INFORMATION_SCHEMA.COLUMNS
WHERE
TABLE_SCHEMA NOT IN ('mysql', 'INFORMATION_SCHEMA', 'performance_schema')
AND CHARACTER_SET_NAME IS NOT NULL
AND DATA_TYPE != 'enum'
AND DATA_TYPE != 'set'
;
|
<reponame>Rapid-Cyber-Defense/magic<filename>backend/files/etc/mysql/templates/meta-tables-row-count.sql
/*
* Counts number of record in your MNagic database.
*
* Change table_schema to some other database, to count records
* in other databases.
*/
select table_name, table_rows
from `information_schema`.`tables`
where `table_schema` = 'magic';
|
SET statement_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET search_path = ecmdb, pg_catalog;
CREATE OR REPLACE VIEW V_AUDIT_REPORT_PROVIDER AS
select p.*
from audit_report_provider p
inner join accreditamento a
ON p.provider_id = a.provider_id
AND p.data_inizio between coalesce(a.data_inizio_accreditamento, now()) and
coalesce(a.data_fine_accreditamento, now())
WHERE p.status in ('ACCREDITATO_PROVVISORIAMENTE', 'ACCREDITATO_STANDARD', 'VALIDATO');
|
<reponame>Shiam-Cse-Ru/B2C-E-Commerce-Online_Shopping_Cart
-- phpMyAdmin SQL Dump
-- version 3.2.0.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 26, 2015 at 11:28 AM
-- Server version: 5.1.36
-- PHP Version: 5.3.0
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `db_project`
--
-- --------------------------------------------------------
--
-- Table structure for table `messages`
--
CREATE TABLE IF NOT EXISTS `messages` (
`message_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(40) NOT NULL,
`Email` varchar(30) NOT NULL,
`message` varchar(1000) NOT NULL,
PRIMARY KEY (`message_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;
--
-- Dumping data for table `messages`
--
INSERT INTO `messages` (`message_id`, `name`, `Email`, `message`) VALUES
(4, '<NAME>', '<EMAIL>', 'asdkasdiu hairweopasodpj'),
(3, '<NAME>', '<EMAIL>', 'awsdasdkjasd'),
(5, 'Kenneth', '<EMAIL>', 'asdasdas'),
(6, 'Kenneth', '<EMAIL>', 'haha');
-- --------------------------------------------------------
--
-- Table structure for table `order`
--
CREATE TABLE IF NOT EXISTS `order` (
`order_id` int(11) NOT NULL AUTO_INCREMENT,
`memberID` int(11) NOT NULL,
`poruductID` int(11) NOT NULL,
`price` double(11,2) NOT NULL,
`total` double(11,2) NOT NULL,
`status` varchar(100) NOT NULL,
`payment_type` varchar(100) NOT NULL,
`transaction_code` varchar(100) NOT NULL,
PRIMARY KEY (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `order`
--
-- --------------------------------------------------------
--
-- Table structure for table `order_details`
--
CREATE TABLE IF NOT EXISTS `order_details` (
`orderid` int(11) NOT NULL AUTO_INCREMENT,
`memberID` int(11) NOT NULL,
`qty` int(5) NOT NULL,
`price` double(11,2) NOT NULL,
`productID` int(11) NOT NULL,
`total` double(11,2) NOT NULL,
`status` varchar(100) NOT NULL,
`modeofpayment` varchar(100) NOT NULL,
`transaction_code` varchar(200) NOT NULL,
PRIMARY KEY (`orderid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `order_details`
--
-- --------------------------------------------------------
--
-- Table structure for table `tb_member`
--
CREATE TABLE IF NOT EXISTS `tb_member` (
`memberID` int(25) NOT NULL AUTO_INCREMENT,
`Firstname` varchar(25) NOT NULL,
`Lastname` varchar(25) NOT NULL,
`Email` varchar(25) NOT NULL,
`Password` varchar(25) NOT NULL,
`Contact_Number` varchar(25) NOT NULL,
`address` varchar(200) NOT NULL,
PRIMARY KEY (`memberID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ;
--
-- Dumping data for table `tb_member`
--
INSERT INTO `tb_member` (`memberID`, `Firstname`, `Lastname`, `Email`, `Password`, `Contact_Number`, `address`) VALUES
(16, 'Shady', 'Red', '<EMAIL>', 'haha', '0916456826', 'Silay City'),
(14, 'KEnneth', 'Aboy', '<EMAIL>', 'ckenz0825', '09123456789', 'silay'),
(15, 'Anjo', 'Salmingo', '<EMAIL>', 'haha', '0919946623', 'Talisay City');
-- --------------------------------------------------------
--
-- Table structure for table `tb_products`
--
CREATE TABLE IF NOT EXISTS `tb_products` (
`productID` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(500) NOT NULL,
`description` varchar(500) NOT NULL,
`category` varchar(200) NOT NULL,
`originated` varchar(500) NOT NULL,
`price` double(11,2) NOT NULL,
`quantity` int(11) NOT NULL,
`location` varchar(500) NOT NULL,
PRIMARY KEY (`productID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ;
--
-- Dumping data for table `tb_products`
--
INSERT INTO `tb_products` (`productID`, `name`, `description`, `category`, `originated`, `price`, `quantity`, `location`) VALUES
(1, 'GX invaders', 'Electric Guitar Multi-Sound ', 'Guitar', 'Korea', 38500.00, 8, 'upload/g1.png'),
(8, '<NAME>', 'Block Base Drums', 'Drums', 'China', 12000.00, 10, 'upload/drumset.png'),
(9, 'Joker Flute', '8 Wind Hole Pipe Bamboo', 'Flute', 'Americ', 10000.00, 100, 'upload/Flute-icon.png');
-- --------------------------------------------------------
--
-- Table structure for table `tb_user`
--
CREATE TABLE IF NOT EXISTS `tb_user` (
`user_id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(100) NOT NULL,
`password` varchar(100) NOT NULL,
`firstname` varchar(100) NOT NULL,
`lastname` varchar(100) NOT NULL,
PRIMARY KEY (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ;
--
-- Dumping data for table `tb_user`
--
INSERT INTO `tb_user` (`user_id`, `username`, `password`, `firstname`, `lastname`) VALUES
(15, 'admin', 'admin', 'Kenneth', 'Aboy'),
(16, 'nose', 'nose', '<NAME> ', 'David');
|
<gh_stars>0
INSERT INTO [dbo].[PropertyTypes] ([Id], [Title], [IsValid], [ModifiedDateUtc], [AddedDateUtc], [PropertyTypeEnum]) VALUES ('d96cd702-d84d-43e7-807d-2193adb90591', N'Apartment', 1, '2017-10-17 12:49:22.113', '2017-10-17 12:49:22.113', N'Apartment')
|
CREATE UNIQUE INDEX worker_resource_caches_uniq
ON worker_resource_caches (resource_cache_id, worker_base_resource_type_id);
CREATE UNIQUE INDEX worker_task_caches_uniq
ON worker_task_caches (job_id, step_name, worker_name, path);
DELETE FROM worker_resource_config_check_sessions r1
USING worker_resource_config_check_sessions r2
WHERE r1.id < r2.id
AND r1.resource_config_check_session_id = r2.resource_config_check_session_id
AND r1.worker_base_resource_type_id = r2.worker_base_resource_type_id
AND r1.team_id = r2.team_id;
CREATE UNIQUE INDEX worker_resource_config_check_sessions_uniq
ON worker_resource_config_check_sessions (resource_config_check_session_id, worker_base_resource_type_id, team_id);
|
--
-- @created 2009-01-27 14:00:00
-- @modified 2013-06-24 17:00:00
-- @tags ddl schema_topology
-- @description MPP-5458
drop table if exists mpp5458_test;
create table mpp5458_test (i int, b bigserial);
alter table mpp5458_test drop column b;
insert into mpp5458_test values (1);
alter table mpp5458_test add column b bigserial;
drop table if exists mpp5458_t;
create table mpp5458_t as select j as a, 'abc' as i from
generate_series(1, 10) j;
alter table mpp5458_t alter i type int; -- error out
alter table mpp5458_t alter i type text;
--cursor
begin;
declare c1 cursor for select * from mpp5458_t;
-- start_ignore
fetch 1 from c1;
select * from mpp5458_test limit 10;
-- end_ignore
drop table if exists mpp5458_test1;
create table mpp5458_test1 (i int, b bigserial);
alter table mpp5458_test1 drop column b;
insert into mpp5458_test1 values (1);
alter table mpp5458_test1 add column b bigserial;
-- start_ignore
fetch 5 from c1;
fetch 5 from c1;
-- end_ignore
close c1;
end;
drop sequence if exists mpp5458_s1;
create sequence mpp5458_s1;
-- start_ignore
select *, nextval('mpp5458_s1') from mpp5458_t;
-- end_ignore
-- prepare
prepare mpp5458_stmt as select *, nextval('mpp5458_s1') from mpp5458_t;
-- start_ignore
execute mpp5458_stmt;
-- end_ignore
deallocate mpp5458_stmt;
--cursor
begin;
declare mpp5458_c1 cursor for select *, nextval('mpp5458_s1') from mpp5458_t;
-- start_ignore
fetch 1 from mpp5458_c1;
select * from mpp5458_test limit 10;
fetch 10 from mpp5458_c1;
fetch 1 from mpp5458_c1;
-- end_ignore
close mpp5458_c1;
end;
|
-- Sequence: public_transport_route_ways_id_seq
-- DROP SEQUENCE public_transport_route_ways_id_seq;
CREATE SEQUENCE public_transport_route_ways_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
ALTER TABLE public_transport_route_ways_id_seq
OWNER TO postgres;
-- Table: public_transport_route_ways
-- DROP TABLE public_transport_route_ways;
CREATE TABLE public_transport_route_ways
(
id integer NOT NULL DEFAULT nextval('public_transport_route_ways_id_seq'::regclass),
geom geometry(LineString,27700),
public_transport_route_id integer,
transport_mode character varying,
cost double precision,
reverse_cost double precision,
cost_time double precision,
reverse_cost_time double precision,
cost_met double precision,
reverse_cost_met double precision,
source integer,
target integer,
length_m double precision,
startaltitude double precision,
endaltitude double precision,
totalascent double precision,
totaldescent double precision,
curveindex double precision,
oneway character varying,
percentslope double precision,
reversepercentslope double precision,
angleslope double precision,
reverseangleslope double precision,
speed smallint,
terrain_index double precision,
import_file_id integer,
route_link_id character varying,
source_atco_code character varying,
target_atco_code character varying,
direction character varying,
CONSTRAINT public_transport_route_ways_pkey PRIMARY KEY (id),
CONSTRAINT public_transport_route_id_fkey FOREIGN KEY (public_transport_route_id)
REFERENCES public_transport_routes (id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE NO ACTION DEFERRABLE INITIALLY IMMEDIATE
)
WITH (
OIDS=FALSE
);
ALTER TABLE public_transport_route_ways
OWNER TO postgres;
-- Index: public_transport_route_ways_geom_gist
-- DROP INDEX public_transport_route_ways_geom_gist;
CREATE INDEX public_transport_route_ways_geom_gist
ON public_transport_route_ways
USING gist
(geom);
-- Index: public_transport_route_ways_source_idx
-- DROP INDEX public_transport_route_ways_source_idx;
CREATE INDEX public_transport_route_ways_source_idx
ON public_transport_route_ways
USING btree
(source);
-- Index: public_transport_route_ways_target_idx
-- DROP INDEX public_transport_route_ways_target_idx;
CREATE INDEX public_transport_route_ways_target_idx
ON public_transport_route_ways
USING btree
(target);
|
<reponame>jvanbruegge/adventofcode
CREATE TABLE data (line SERIAL PRIMARY KEY, movement text not null, num integer not null);
INSERT INTO data (movement, num) VALUES
('forward', 5),
('forward', 2),
('forward', 9),
('down', 2),
('forward', 9),
('forward', 3),
('forward', 2),
('down', 6),
('forward', 3),
('forward', 3),
('down', 3),
('down', 3),
('forward', 8),
('down', 5),
('forward', 7),
('forward', 9),
('forward', 9),
('forward', 6),
('forward', 9),
('forward', 3),
('forward', 3),
('forward', 1),
('forward', 7),
('down', 6),
('forward', 7),
('forward', 4),
('down', 3),
('down', 1),
('forward', 4),
('down', 7),
('down', 2),
('down', 8),
('forward', 9),
('down', 5),
('down', 2),
('forward', 6),
('up', 4),
('down', 3),
('down', 1),
('down', 6),
('down', 7),
('forward', 6),
('up', 2),
('forward', 2),
('down', 9),
('down', 3),
('forward', 7),
('up', 3),
('up', 7),
('forward', 8),
('forward', 7),
('down', 4),
('up', 8),
('up', 1),
('forward', 4),
('down', 6),
('forward', 9),
('forward', 3),
('down', 1),
('down', 1),
('forward', 2),
('forward', 4),
('forward', 3),
('up', 2),
('forward', 1),
('down', 8),
('forward', 4),
('down', 5),
('forward', 9),
('up', 1),
('forward', 3),
('forward', 6),
('up', 8),
('forward', 1),
('forward', 7),
('up', 9),
('down', 3),
('up', 7),
('down', 1),
('forward', 5),
('forward', 3),
('forward', 7),
('down', 5),
('down', 1),
('down', 2),
('down', 4),
('down', 5),
('down', 5),
('down', 8),
('up', 9),
('down', 7),
('down', 7),
('down', 6),
('forward', 3),
('forward', 5),
('forward', 1),
('forward', 8),
('up', 4),
('down', 8),
('down', 3),
('down', 1),
('down', 9),
('down', 3),
('down', 9),
('down', 8),
('down', 2),
('forward', 1),
('forward', 7),
('forward', 1),
('down', 3),
('down', 1),
('up', 3),
('down', 6),
('forward', 6),
('forward', 6),
('down', 8),
('forward', 3),
('down', 1),
('forward', 2),
('down', 4),
('down', 7),
('up', 8),
('forward', 4),
('down', 4),
('up', 1),
('forward', 6),
('down', 6),
('forward', 5),
('forward', 9),
('up', 5),
('down', 3),
('up', 9),
('down', 6),
('up', 3),
('down', 9),
('down', 4),
('down', 2),
('forward', 3),
('down', 6),
('down', 7),
('down', 9),
('forward', 7),
('forward', 2),
('forward', 5),
('up', 6),
('down', 8),
('forward', 1),
('down', 2),
('forward', 8),
('down', 5),
('down', 2),
('up', 4),
('forward', 9),
('up', 4),
('down', 4),
('down', 2),
('forward', 3),
('up', 2),
('down', 5),
('down', 9),
('up', 4),
('forward', 9),
('down', 5),
('down', 2),
('down', 2),
('forward', 9),
('up', 9),
('forward', 6),
('up', 7),
('down', 2),
('forward', 8),
('down', 1),
('forward', 2),
('down', 3),
('up', 6),
('down', 4),
('forward', 5),
('up', 4),
('forward', 5),
('forward', 9),
('forward', 9),
('forward', 5),
('down', 1),
('down', 7),
('forward', 6),
('forward', 9),
('forward', 3),
('forward', 4),
('up', 8),
('down', 1),
('up', 1),
('down', 3),
('up', 1),
('down', 5),
('forward', 6),
('up', 5),
('up', 6),
('down', 9),
('forward', 7),
('down', 7),
('forward', 1),
('forward', 2),
('up', 4),
('forward', 4),
('down', 9),
('up', 4),
('down', 6),
('forward', 1),
('up', 9),
('forward', 2),
('down', 8),
('forward', 6),
('forward', 6),
('down', 6),
('forward', 5),
('forward', 9),
('up', 8),
('down', 4),
('forward', 8),
('up', 6),
('down', 4),
('up', 9),
('forward', 2),
('down', 8),
('down', 6),
('forward', 2),
('down', 3),
('forward', 1),
('forward', 3),
('forward', 2),
('up', 4),
('down', 6),
('up', 6),
('down', 4),
('down', 2),
('forward', 1),
('up', 7),
('forward', 9),
('forward', 9),
('forward', 7),
('down', 1),
('down', 9),
('forward', 5),
('forward', 4),
('forward', 1),
('forward', 4),
('down', 5),
('forward', 6),
('forward', 8),
('down', 5),
('down', 7),
('up', 2),
('up', 1),
('forward', 5),
('down', 5),
('down', 1),
('down', 5),
('down', 8),
('down', 8),
('down', 5),
('forward', 7),
('down', 6),
('down', 2),
('forward', 9),
('forward', 1),
('forward', 3),
('forward', 4),
('up', 3),
('down', 4),
('up', 7),
('forward', 8),
('forward', 7),
('up', 4),
('down', 9),
('forward', 7),
('forward', 6),
('up', 1),
('down', 1),
('up', 6),
('down', 5),
('up', 1),
('forward', 2),
('down', 2),
('forward', 3),
('down', 6),
('up', 5),
('up', 4),
('down', 8),
('down', 5),
('down', 3),
('down', 4),
('up', 3),
('down', 3),
('down', 2),
('down', 7),
('up', 2),
('down', 8),
('forward', 5),
('up', 1),
('forward', 9),
('down', 6),
('down', 6),
('down', 8),
('up', 4),
('forward', 9),
('forward', 8),
('up', 7),
('down', 9),
('down', 4),
('forward', 9),
('forward', 9),
('up', 2),
('down', 1),
('forward', 1),
('forward', 4),
('forward', 2),
('forward', 9),
('down', 1),
('down', 3),
('down', 1),
('down', 3),
('up', 5),
('down', 2),
('forward', 4),
('down', 2),
('forward', 1),
('down', 6),
('up', 9),
('down', 3),
('forward', 1),
('forward', 5),
('forward', 8),
('down', 5),
('down', 6),
('down', 9),
('forward', 4),
('down', 7),
('up', 8),
('forward', 8),
('down', 9),
('forward', 6),
('down', 8),
('up', 3),
('forward', 4),
('up', 9),
('down', 7),
('up', 7),
('forward', 6),
('forward', 1),
('up', 9),
('down', 7),
('up', 7),
('down', 5),
('forward', 6),
('up', 7),
('down', 8),
('down', 8),
('forward', 4),
('up', 4),
('forward', 1),
('forward', 6),
('down', 4),
('up', 9),
('forward', 4),
('up', 1),
('up', 8),
('up', 6),
('forward', 9),
('forward', 4),
('forward', 7),
('up', 1),
('down', 5),
('up', 5),
('up', 5),
('forward', 4),
('down', 9),
('up', 8),
('down', 6),
('down', 3),
('down', 6),
('forward', 2),
('up', 1),
('forward', 3),
('up', 8),
('down', 1),
('forward', 5),
('down', 9),
('forward', 4),
('up', 5),
('forward', 3),
('forward', 2),
('down', 8),
('down', 9),
('up', 6),
('down', 9),
('down', 7),
('forward', 5),
('forward', 4),
('forward', 9),
('up', 8),
('forward', 3),
('down', 7),
('forward', 9),
('down', 8),
('forward', 4),
('forward', 8),
('up', 9),
('up', 9),
('down', 6),
('forward', 5),
('forward', 5),
('forward', 5),
('up', 2),
('up', 2),
('up', 1),
('down', 6),
('forward', 2),
('forward', 2),
('down', 8),
('down', 6),
('up', 2),
('forward', 1),
('down', 1),
('up', 5),
('forward', 7),
('down', 2),
('forward', 1),
('forward', 3),
('down', 5),
('down', 7),
('forward', 8),
('forward', 4),
('forward', 9),
('up', 1),
('up', 7),
('up', 9),
('forward', 3),
('up', 1),
('forward', 6),
('forward', 3),
('forward', 9),
('up', 9),
('down', 6),
('forward', 8),
('up', 6),
('down', 9),
('forward', 3),
('forward', 7),
('down', 9),
('forward', 4),
('forward', 5),
('forward', 7),
('down', 1),
('down', 4),
('down', 3),
('forward', 6),
('down', 3),
('forward', 7),
('forward', 8),
('down', 1),
('forward', 3),
('down', 4),
('up', 7),
('forward', 2),
('forward', 8),
('down', 6),
('up', 3),
('down', 2),
('forward', 9),
('forward', 5),
('forward', 7),
('up', 2),
('up', 6),
('down', 9),
('forward', 1),
('up', 5),
('forward', 1),
('up', 6),
('up', 2),
('up', 1),
('forward', 6),
('down', 8),
('forward', 7),
('down', 5),
('forward', 3),
('down', 9),
('down', 4),
('forward', 3),
('down', 1),
('up', 1),
('up', 7),
('forward', 4),
('down', 6),
('forward', 3),
('forward', 2),
('down', 8),
('forward', 9),
('forward', 6),
('up', 3),
('down', 3),
('down', 1),
('down', 7),
('up', 8),
('up', 2),
('up', 8),
('forward', 6),
('forward', 8),
('forward', 6),
('forward', 4),
('down', 6),
('forward', 6),
('forward', 6),
('forward', 1),
('down', 2),
('forward', 2),
('forward', 6),
('down', 1),
('up', 6),
('forward', 3),
('forward', 9),
('forward', 6),
('down', 2),
('forward', 2),
('up', 4),
('down', 2),
('up', 4),
('forward', 2),
('forward', 2),
('forward', 3),
('up', 1),
('forward', 8),
('forward', 3),
('forward', 3),
('forward', 1),
('down', 5),
('down', 9),
('forward', 4),
('down', 1),
('forward', 5),
('forward', 2),
('down', 5),
('forward', 6),
('forward', 3),
('up', 3),
('forward', 6),
('forward', 9),
('forward', 5),
('down', 2),
('down', 2),
('down', 7),
('forward', 8),
('down', 1),
('down', 5),
('down', 9),
('up', 3),
('up', 5),
('up', 4),
('forward', 3),
('down', 9),
('down', 2),
('down', 8),
('down', 5),
('down', 2),
('forward', 4),
('up', 3),
('down', 5),
('up', 3),
('down', 8),
('down', 7),
('up', 1),
('forward', 2),
('forward', 1),
('down', 2),
('up', 1),
('up', 5),
('down', 8),
('down', 3),
('up', 9),
('forward', 2),
('down', 8),
('down', 4),
('down', 3),
('forward', 3),
('forward', 7),
('up', 1),
('down', 9),
('forward', 1),
('down', 6),
('up', 3),
('up', 5),
('down', 6),
('up', 4),
('forward', 7),
('up', 4),
('forward', 9),
('up', 4),
('forward', 4),
('down', 7),
('down', 2),
('down', 8),
('up', 3),
('down', 7),
('down', 4),
('up', 5),
('forward', 8),
('down', 8),
('down', 1),
('forward', 7),
('up', 9),
('down', 5),
('up', 8),
('down', 1),
('up', 3),
('forward', 8),
('up', 4),
('down', 1),
('up', 1),
('up', 7),
('forward', 3),
('forward', 6),
('forward', 5),
('forward', 2),
('down', 4),
('forward', 2),
('down', 7),
('up', 7),
('up', 6),
('down', 4),
('forward', 4),
('forward', 9),
('forward', 7),
('down', 4),
('down', 6),
('forward', 5),
('down', 2),
('down', 6),
('down', 2),
('down', 2),
('forward', 9),
('up', 5),
('forward', 9),
('down', 3),
('down', 6),
('down', 1),
('forward', 5),
('down', 5),
('forward', 7),
('forward', 9),
('up', 8),
('forward', 6),
('down', 6),
('down', 2),
('forward', 8),
('forward', 5),
('up', 9),
('up', 4),
('forward', 1),
('forward', 2),
('forward', 2),
('up', 9),
('down', 6),
('forward', 6),
('forward', 8),
('up', 5),
('up', 7),
('forward', 4),
('down', 3),
('forward', 1),
('up', 6),
('up', 9),
('forward', 6),
('up', 8),
('forward', 5),
('down', 4),
('forward', 1),
('down', 3),
('forward', 1),
('forward', 6),
('forward', 2),
('up', 4),
('down', 6),
('forward', 9),
('down', 2),
('forward', 4),
('down', 4),
('forward', 3),
('down', 5),
('down', 2),
('forward', 2),
('forward', 2),
('up', 1),
('forward', 1),
('down', 7),
('down', 8),
('up', 6),
('forward', 8),
('forward', 5),
('forward', 8),
('down', 6),
('forward', 5),
('down', 3),
('up', 3),
('forward', 4),
('up', 9),
('forward', 8),
('forward', 4),
('down', 3),
('forward', 6),
('up', 6),
('down', 2),
('down', 7),
('down', 3),
('down', 2),
('down', 8),
('forward', 5),
('down', 9),
('up', 6),
('down', 6),
('forward', 8),
('down', 1),
('forward', 8),
('down', 1),
('down', 1),
('forward', 3),
('forward', 9),
('down', 6),
('forward', 7),
('down', 4),
('forward', 1),
('forward', 4),
('forward', 3),
('down', 6),
('forward', 5),
('down', 5),
('forward', 1),
('forward', 3),
('forward', 8),
('down', 9),
('up', 8),
('up', 6),
('up', 6),
('forward', 2),
('forward', 9),
('down', 4),
('down', 8),
('forward', 6),
('up', 1),
('down', 2),
('down', 6),
('forward', 6),
('forward', 2),
('up', 8),
('forward', 6),
('down', 9),
('down', 1),
('forward', 7),
('forward', 6),
('forward', 5),
('forward', 6),
('down', 6),
('up', 7),
('down', 9),
('forward', 9),
('forward', 3),
('forward', 5),
('down', 4),
('down', 1),
('down', 7),
('up', 3),
('up', 7),
('forward', 6),
('forward', 8),
('down', 7),
('down', 4),
('forward', 7),
('down', 6),
('up', 1),
('forward', 4),
('down', 2),
('forward', 4),
('forward', 3),
('forward', 4),
('forward', 4),
('up', 3),
('down', 8),
('down', 4),
('down', 1),
('down', 8),
('down', 3),
('up', 9),
('down', 4),
('forward', 7),
('down', 6),
('up', 2),
('down', 8),
('up', 9),
('down', 6),
('forward', 1),
('down', 3),
('forward', 9),
('down', 9),
('forward', 1),
('down', 5),
('up', 5),
('up', 1),
('forward', 8),
('down', 8),
('down', 9),
('down', 5),
('down', 2),
('down', 5),
('forward', 3),
('down', 9),
('forward', 4),
('forward', 4),
('up', 2),
('forward', 8),
('forward', 4),
('forward', 1),
('down', 5),
('forward', 5),
('down', 5),
('forward', 6),
('forward', 4),
('up', 5),
('down', 9),
('up', 3),
('up', 8),
('forward', 5),
('forward', 9),
('up', 6),
('forward', 6),
('down', 5),
('forward', 7),
('down', 8),
('down', 7),
('down', 9),
('forward', 4),
('down', 8),
('forward', 4),
('down', 5),
('forward', 6),
('forward', 4),
('down', 7),
('down', 5),
('forward', 4),
('down', 3),
('up', 4),
('forward', 3),
('up', 9),
('down', 8),
('forward', 9),
('forward', 6),
('forward', 9),
('down', 1),
('forward', 2),
('up', 5),
('down', 9),
('down', 2),
('down', 9),
('up', 8),
('forward', 7),
('forward', 8),
('forward', 4),
('down', 1),
('up', 8),
('forward', 8),
('down', 8),
('down', 4),
('forward', 9),
('down', 3),
('forward', 7),
('forward', 9),
('down', 5),
('forward', 7),
('forward', 1),
('forward', 5),
('forward', 2),
('down', 4),
('forward', 7),
('down', 6),
('forward', 3),
('down', 9),
('forward', 3),
('down', 5),
('up', 6),
('up', 3),
('forward', 1),
('up', 9),
('down', 1),
('forward', 2),
('down', 8),
('down', 7),
('up', 9),
('up', 2),
('down', 5),
('up', 9),
('forward', 9),
('forward', 9),
('down', 1),
('forward', 5),
('up', 5),
('forward', 1),
('up', 1),
('down', 3),
('forward', 3),
('down', 3),
('forward', 3),
('up', 5),
('up', 4),
('down', 7),
('down', 7),
('down', 4),
('forward', 7),
('down', 6),
('forward', 1),
('up', 1),
('down', 8),
('forward', 4),
('down', 3),
('forward', 9),
('up', 6),
('forward', 6),
('forward', 3),
('up', 9),
('down', 9),
('forward', 4),
('up', 5),
('down', 3),
('down', 8),
('down', 3),
('down', 3),
('forward', 4),
('forward', 6),
('forward', 4),
('up', 2),
('up', 3),
('up', 5),
('down', 5),
('down', 6),
('forward', 5),
('forward', 4),
('down', 1),
('down', 2),
('up', 8),
('down', 2),
('down', 1),
('up', 4),
('forward', 5),
('forward', 8),
('forward', 8),
('forward', 5),
('down', 3),
('forward', 4),
('up', 8),
('forward', 7),
('forward', 4),
('down', 9),
('down', 6),
('forward', 2),
('down', 7),
('forward', 6),
('up', 7),
('up', 1),
('up', 4),
('forward', 2),
('forward', 9),
('forward', 7),
('up', 5),
('forward', 2),
('up', 5),
('forward', 1),
('forward', 2),
('forward', 4),
('down', 6),
('forward', 2),
('up', 6),
('up', 7),
('forward', 3),
('forward', 2),
('forward', 6),
('forward', 4),
('forward', 9),
('forward', 6),
('up', 6),
('forward', 5),
('up', 7),
('up', 5),
('down', 6),
('down', 2),
('down', 1),
('forward', 7),
('down', 5),
('down', 1),
('down', 7),
('forward', 8),
('forward', 8),
('forward', 5),
('down', 9),
('forward', 6);
|
<reponame>mmcwhort/YmSamples<filename>premdb/queries/premdb_goals_per_season.sql
select t1.season_name, t1.winners, homegoals+awaygoals as total
from
(select season_name, winners, sum(substr(ftscore,1,1)::int) homegoals
from season, match
where season.seasonid=match.seasonid
group by season_name, winners) t1,
(select season_name, winners, sum(substr(ftscore,3,1)::int) awaygoals
from season, match
where season.seasonid=match.seasonid
group by season_name, winners) t2
where t1.season_name=t2.season_name
order by 1,2; |
/* get patient visit date*/
SELECT
patient_2.patient_id patient_2_id,
patient_2.patient_firstname patient_firstname,
patient_2.patient_lastname patient_lastname,
patient_2.patient_email,
patient_visit_2.patient_id patient_visit_2_id,
patient_visit_date
FROM
patient_2
INNER JOIN patient_visit_2 ON patient_visit_2.patient_id = patient_2.patient_id
ORDER BY patient_2.patient_id ASC;
/*
SELECT
patient_2.patient_id patient_2_id,
patient_2.patient_firstname patient_firstname,
patient_2.patient_lastname patient_lastname,
patient_2.patient_email,
patient_visit_2.patient_id patient_visit_2_id,
patient_visit_date
FROM
patient_2
INNER JOIN patient_visit_2 ON patient_visit_2.patient_id = patient_2.patient_id
ORDER BY patient_visit_2.patient_visit_date ASC;
SELECT
patient_2.patient_id patient_id,
patient_2.patient_firstname patient_firstname,
patient_2.patient_lastname patient_lastname,
patient_2.patient_email,
patient_visit_2.patient_id patient_visit,
patient_visit_date
FROM
patient_2
INNER JOIN patient_visit_2 ON patient_visit_2.patient_id = patient_2.patient_id
ORDER BY patient_visit_2.patient_visit_date ASC;
*/ |
-- Revert schemas/app_jobs/tables/jobs/indexes/jobs_locked_by_idx from pg
BEGIN;
DROP INDEX app_jobs.jobs_locked_by_idx;
COMMIT;
|
CREATE TABLE [dbo].[WordTree] (
[id] INT IDENTITY (1, 1) NOT NULL,
[Phrases] NVARCHAR (250) NULL,
CONSTRAINT [PK_WordTree] PRIMARY KEY CLUSTERED ([id] ASC)
);
SET IDENTITY_INSERT [dbo].[WordTree] ON
INSERT INTO [dbo].[WordTree] ([id], [Phrases]) VALUES (1, N'cats are better than dogs')
INSERT INTO [dbo].[WordTree] ([id], [Phrases]) VALUES (2, N'cats eat kibble')
INSERT INTO [dbo].[WordTree] ([id], [Phrases]) VALUES (3, N'cats are better than hamsters')
INSERT INTO [dbo].[WordTree] ([id], [Phrases]) VALUES (4, N'cats are awesome')
INSERT INTO [dbo].[WordTree] ([id], [Phrases]) VALUES (5, N'cats are people too')
INSERT INTO [dbo].[WordTree] ([id], [Phrases]) VALUES (6, N'cats eat mice')
INSERT INTO [dbo].[WordTree] ([id], [Phrases]) VALUES (7, N'cats meowing')
INSERT INTO [dbo].[WordTree] ([id], [Phrases]) VALUES (8, N'cats in the cradle')
INSERT INTO [dbo].[WordTree] ([id], [Phrases]) VALUES (9, N'cats eat mice')
INSERT INTO [dbo].[WordTree] ([id], [Phrases]) VALUES (10, N'cats in the cradle lyrics')
INSERT INTO [dbo].[WordTree] ([id], [Phrases]) VALUES (11, N'cats eat kibble')
INSERT INTO [dbo].[WordTree] ([id], [Phrases]) VALUES (12, N'cats for adoption')
INSERT INTO [dbo].[WordTree] ([id], [Phrases]) VALUES (13, N'cats are family')
INSERT INTO [dbo].[WordTree] ([id], [Phrases]) VALUES (14, N'cats eat mice')
INSERT INTO [dbo].[WordTree] ([id], [Phrases]) VALUES (15, N'cats are better than kittens')
INSERT INTO [dbo].[WordTree] ([id], [Phrases]) VALUES (16, N'cats are evil')
INSERT INTO [dbo].[WordTree] ([id], [Phrases]) VALUES (17, N'cats are weird')
INSERT INTO [dbo].[WordTree] ([id], [Phrases]) VALUES (18, N'cats eat mice')
SET IDENTITY_INSERT [dbo].[WordTree] OFF
|
UPDATE prosess_task_type SET cron_expression = '0 30 7 * * *' WHERE kode = 'retry.feilendeTasks';
|
<reponame>ContextLogic/zally
ALTER TABLE api_review ADD api_id TEXT;
|
ALTER table items DROP column starred; |
<filename>dev/SQL Scripts/german_aug_location_activity.sql
drop table tuscany.german_august_locs_features
create table tuscany.german_august_locs_features as
(
with cus_loc as (
select customer_id,time_stamp, location_id,lead(location_id,1) over (partition by customer_id order by time_stamp asc) as l2
from tuscany.german_august
order by customer_id, time_stamp asc
),
dist_loc_times as (
select customer_id, time_stamp,location_id,l2
from cus_loc
where location_id != l2 or l2 is null
),
lag_times as (
select customer_id,time_stamp,location_id, lead(time_stamp,1) over
(partition by customer_id order by time_stamp asc) as t2
from dist_loc_times
order by time_stamp asc
),
create_time_diff as (
select customer_id,time_stamp,location_id,datediff(minutes,time_stamp,t2) as diff
from lag_times
order by customer_id,time_stamp
)
select
times.customer_id,
sum(times.diff) as total_time,
sum(times.diff * locs.forest_area) as forest,
sum(times.diff * locs.water_area) as water,
sum(times.diff * locs.riverbank_area) as river,
sum(times.diff * locs.park_area) as park,
sum(times.diff * locs.arezzo) as arezzo,
sum(times.diff * locs.firenze) as florence,
sum(times.diff * locs.livorno) as livorno,
sum(times.diff * locs.lucca) as lucca,
sum(times.diff * locs.pisa) as pisa,
sum(times.diff * locs.pistoia) as pistoia,
sum(times.diff* locs.siena) as siena,
sum(times.diff* locs.coast) as coast,
sum(locs.num_attractions) as num_attrs,
sum(locs.num_town) as towns,
sum(times.diff * locs.num_island) as islands,
sum(times.diff * locs.num_suburb) as subrub
from create_time_diff times
left join tuscany.location_features as locs
on times.location_id = locs.location_id
where diff>20
group by times.customer_id
); |
-- delete2.test
--
-- db eval {
-- SELECT CASE WHEN c = 5 THEN b ELSE NULL END AS b, c, d FROM t1, t2
-- }
SELECT CASE WHEN c = 5 THEN b ELSE NULL END AS b, c, d FROM t1, t2 |
<gh_stars>10-100
-- file:psql.sql ln:399 expect:true
select 'still okay'
|
<filename>Instance/サーバー設定情報の取得.sql
SET NOCOUNT ON
GO
use [master]
GO
/*********************************************/
-- サーバーの設定情報の取得
/*********************************************/
sp_configure
GO
sp_configure 'show advanced options', 1
GO
RECONFIGURE
GO
sp_configure
GO
SELECT * FROM sys.configurations ORDER BY name
OPTION (RECOMPILE)
GO
/*********************************************/
-- サーバープロパティの取得
/*********************************************/
SELECT
GETDATE() AS DATE,
SERVERPROPERTY('BuildClrVersion') AS [BuildClrVersion],
SERVERPROPERTY('Collation') AS [Collation],
SERVERPROPERTY('CollationID') AS [CollationID],
SERVERPROPERTY('ComparisonStyle') AS [ComparisonStyle],
SERVERPROPERTY('ComputerNamePhysicalNetBIOS') AS [ComputerNamePhysicalNetBIOS],
SERVERPROPERTY('Edition') AS [Edition],
SERVERPROPERTY('EditionID') AS [EditionID],
SERVERPROPERTY('EngineEdition') AS [EngineEdition],
SERVERPROPERTY('HadrManagerStatus') AS [HadrManagerStatus], -- 2012 or later
SERVERPROPERTY('InstanceDefaultDataPath') AS [InstanceDefaultDataPath],
SERVERPROPERTY('InstanceDefaultLogPath') AS [InstanceDefaultLogPath],
SERVERPROPERTY('InstanceName') AS [InstanceName],
SERVERPROPERTY('IsClustered') AS [IsClustered],
SERVERPROPERTY('IsHadrEnabled') AS [IsHadrEnabled],
SERVERPROPERTY('IsFullTextInstalled') AS [IsFullTextInstalled],
SERVERPROPERTY('IsAdvancedAnalyticsInstalled') AS [IsAdvancedAnalyticsInstalled],
SERVERPROPERTY('IsFullTextInstalled') AS [IsFullTextInstalled],
SERVERPROPERTY('IsHadrEnabled') AS [IsHadrEnabled],
SERVERPROPERTY('IsIntegratedSecurityOnly') AS [IsIntegratedSecurityOnly],
SERVERPROPERTY('IsLocalDB') AS [IsLocalDB],
SERVERPROPERTY('IsPolybaseInstalled') AS [IsPolybaseInstalled],
SERVERPROPERTY('IsSingleUser') AS [IsSingleUser],
SERVERPROPERTY('IsXTPSupported') AS [IsXTPSupported],
SERVERPROPERTY('LCID') AS [LCID],
SERVERPROPERTY('LicenseType') AS [LicenseType],
SERVERPROPERTY('MachineName') AS [MachineName],
SERVERPROPERTY('NumLicenses') AS [NumLicenses],
SERVERPROPERTY('ProcessID') AS [ProcessID],
SERVERPROPERTY('ProductBuild') AS [ProductBuild],
SERVERPROPERTY('ProductBuildType') AS [ProductBuildType],
SERVERPROPERTY('ProductLevel') AS [ProductLevel],
SERVERPROPERTY('ProductMajorVersion') AS [ProductMajorVersion],
SERVERPROPERTY('ProductMinorVersion') AS [ProductMinorVersion],
SERVERPROPERTY('ProductUpdateLevel') AS [ProductUpdateLevel],
SERVERPROPERTY('ProductUpdateReference') AS [ProductUpdateReference],
SERVERPROPERTY('ProductVersion') AS [ProductVersion],
SERVERPROPERTY('ResourceLastUpdateDateTime') AS [ResourceLastUpdateDateTime],
SERVERPROPERTY('ResourceVersion') AS [ResourceVersion],
SERVERPROPERTY('ServerName') AS [ServerName],
SERVERPROPERTY('SqlCharSet') AS [SqlCharSet],
SERVERPROPERTY('SqlCharSetName') AS [SqlCharSetName],
SERVERPROPERTY('SqlSortOrder') AS [SqlSortOrder],
SERVERPROPERTY('SqlSortOrderName') AS [SqlSortOrderName],
SERVERPROPERTY('FilestreamShareName') AS [FilestreamShareName],
SERVERPROPERTY('FilestreamConfiguredLevel') AS [FilestreamConfiguredLevel],
SERVERPROPERTY('FilestreamEffectiveLevel') AS [FilestreamEffectiveLevel]
OPTION (RECOMPILE)
GO
/*********************************************/
-- OS の情報
/*********************************************/
-- Windows OS の情報
SELECT * FROM sys.dm_os_windows_info
OPTION (RECOMPILE)
-- SQL Server 2017 以降の Linux 対応
SELECT * FROM sys.dm_os_host_info
OPTION (RECOMPILE)
GO
/*********************************************/
-- リソース情報
-- OS のリソース情報の Memory Model から LPM の情報を取得可能
/*********************************************/
-- OS のリソース情報
SELECT GETDATE() AS DATE,* FROM sys.dm_os_sys_info
OPTION (RECOMPILE)
-- OS のメモリ情報
SELECT GETDATE() AS DATE, * FROM sys.dm_os_sys_memory
OPTION (RECOMPILE)
-- プロセスのメモリ情報
SELECT GETDATE() AS DATE, * FROM sys.dm_os_process_memory
OPTION (RECOMPILE)
GO
/*********************************************/
-- NUMA 情報
/*********************************************/
-- NUMA ノード スケジューラー情報
SELECT GETDATE() AS DATE, * FROM sys.dm_os_nodes
OPTION (RECOMPILE)
-- NUMA ノード メモリ情報
SELECT GETDATE() AS DATE, * FROM sys.dm_os_memory_nodes
OPTION (RECOMPILE)
GO
/*********************************************/
-- サービス情報
-- ファイルの瞬時初期化の設定についても取得可能
/*********************************************/
SELECT GETDATE() AS DATE, * FROM sys.dm_server_services
OPTION (RECOMPILE)
GO
/*********************************************/
-- レジストリ情報
/*********************************************/
SELECT GETDATE() AS DATE, * FROM sys.dm_server_registry
OPTION (RECOMPILE)
GO |
<reponame>Azure/Oracle-Workloads-for-Azure
REM ================================================================================
REM Name: busiest_awr.sql
REM Type: Oracle SQL script
REM Date: 27-April 2020
REM From: Americas Customer Engineering team (CET) - Microsoft
REM
REM Copyright and license:
REM
REM Licensed under the Apache License, Version 2.0 (the "License"); you may
REM not use this file except in compliance with the License.
REM
REM You may obtain a copy of the License at
REM
REM http://www.apache.org/licenses/LICENSE-2.0
REM
REM Unless required by applicable law or agreed to in writing, software
REM distributed under the License is distributed on an "AS IS" basis,
REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
REM
REM See the License for the specific language governing permissions and
REM limitations under the License.
REM
REM Copyright (c) 2020 by Microsoft. All rights reserved.
REM
REM Ownership and responsibility:
REM
REM This script is offered without warranty by Microsoft Customer Engineering.
REM Anyone using this script accepts full responsibility for use, effect,
REM and maintenance. Please do not contact Microsoft or Oracle support unless
REM there is a problem with a supported SQL or SQL*Plus command.
REM
REM Description:
REM
REM SQL*Plus script to find the top 5 busiest AWR snapshots within the horizon
REM of all information stored within the Oracle AWR repository, based on the
REM statistics "physical reads" (a.k.a. physical I/O or "PIO") and "CPU used
REM by this session" (a.k.a. cumulative session-level CPU usage).
REM
REM Modifications:
REM TGorman 27apr20 v0.1 written
REM TGorman 04may20 v0.2 removed NTILE, using only ROW_NUMBER now...
REM NBhandare 14May21 v0.3 added reference to innermost subqueries as fix for
REM instance restart...
REM TGorman 01jun21 v0.4 cleaned up some mistakes, parameterized
REM ================================================================================
set pages 100 lines 80 verify off echo off feedback 6 timing off recsep off
col dbid heading 'DB ID'
col con_id format 90 heading 'Con|ID'
col instance_number format 90 heading 'I#'
col snap_id heading 'AWR|Snap ID'
col begin_tm format a20 heading 'Beginning|time' word_wrap
col end_tm format a20 heading 'Ending|time' word_wrap
col pio heading 'Physical|Reads|(PIO)'
col cpu heading 'CPU used by|this session|(CPU)'
define V_BUCKETS=98 /* only retain values from 98th percentile or below */
define V_CPU_FACTOR=1 /* multiplicative factor to favor/disfavor CPU metrics */
define V_PIO_FACTOR=5 /* multiplicative factor to favor/disfavor I/O metrics */
spool busiest_awr
select x.instance_number,
x.snap_id,
to_char(s.begin_interval_time, 'DD-MON-YYYY HH24:MI:SS') begin_tm,
to_char(s.end_interval_time, 'DD-MON-YYYY HH24:MI:SS') end_tm,
x.pio,
x.cpu
from (select instance_number, snap_id, pio, cpu, row_number() over (partition by instance_number order by sortby desc) rn
from (select instance_number, snap_id,
sum(pio) pio, sum(cpu) cpu, avg(sortby) sortby
from (select instance_number, snap_id, pio, cpu, sortby
from (select instance_number, snap_id, value pio, 0 cpu, (value*(&&V_PIO_FACTOR)) sortby,
ntile(100) over (partition by instance_number order by value) bucket
from (select s.instance_number, s.snap_id,
nvl(decode(greatest(value, nvl(lag(value) over (partition by h.startup_time, s.instance_number order by s.snap_id),0)),
value, value - lag(value) over (partition by h.startup_time, s.instance_number order by s.snap_id), value), 0) value
from dba_hist_sysstat s, dba_hist_snapshot h
where stat_name = 'physical reads'
and s.dbid = (select dbid from v$database)
and h.dbid = s.dbid
and h.instance_number = s.instance_number
and h.snap_id = s.snap_id)
union all
select instance_number, snap_id, 0 pio, value cpu, (value*(&&V_CPU_FACTOR)) sortby,
ntile(100) over (partition by instance_number order by value) bucket
from (select s.instance_number, s.snap_id,
nvl(decode(greatest(value, nvl(lag(value) over (partition by h.startup_time, s.instance_number order by s.snap_id),0)),
value, value - lag(value) over (partition by h.startup_time, s.instance_number order by s.snap_id), value), 0) value
from dba_hist_sysstat s, dba_hist_snapshot h
where stat_name = 'CPU used by this session'
and s.dbid = (select dbid from v$database)
and h.dbid = s.dbid
and h.instance_number = s.instance_number
and h.snap_id = s.snap_id))
where bucket <= &&V_BUCKETS)
group by instance_number, snap_id)) x,
dba_hist_snapshot s
where s.snap_id = x.snap_id
and s.instance_number = x.instance_number
and rn <= 5
order by rn, instance_number;
spool off
|
<reponame>tnc1997/wpf-university-management-system<gh_stars>1-10
-- OPERATIONAL DATABASE
-- TABLES
CREATE TABLE "S1502752"."Assignments"
(
"Id" NUMBER(10, 0) NOT NULL,
"Title" NVARCHAR2(2000) NULL,
"Details" NVARCHAR2(2000) NULL,
"Deadline" DATE NOT NULL,
"RunId" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_Assignments" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."Books"
(
"Id" NUMBER(10, 0) NOT NULL,
"Name" NVARCHAR2(2000) NULL,
"Author" NVARCHAR2(2000) NULL,
CONSTRAINT "PK_Books" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."Campus"
(
"Id" NUMBER(10, 0) NOT NULL,
"Name" NVARCHAR2(2000) NULL,
CONSTRAINT "PK_Campus" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."Countries"
(
"Id" NUMBER(10, 0) NOT NULL,
"Name" NVARCHAR2(2000) NULL,
CONSTRAINT "PK_Countries" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."CourseModules"
(
"CourseId" NUMBER(10, 0) NOT NULL,
"ModuleId" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_CourseModules" PRIMARY KEY ("CourseId", "ModuleId")
);
CREATE TABLE "S1502752"."Courses"
(
"Id" NUMBER(10, 0) NOT NULL,
"Name" NVARCHAR2(2000) NULL,
"CampusId" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_Courses" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."Enrolments"
(
"Id" NUMBER(10, 0) NOT NULL,
"UserId" NUMBER(10, 0) NOT NULL,
"RunId" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_Enrolments" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."Graduations"
(
"Id" NUMBER(10, 0) NOT NULL,
"Year" NUMBER(10, 0) NOT NULL,
"UserId" NUMBER(10, 0) NOT NULL,
"CourseId" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_Graduations" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."Halls"
(
"Id" NUMBER(10, 0) NOT NULL,
"Name" NVARCHAR2(2000) NULL,
"CampusId" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_Halls" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."Lectures"
(
"Id" NUMBER(10, 0) NOT NULL,
"DateTime" DATE NOT NULL,
"Duration" NUMBER(10, 0) NOT NULL,
"RunId" NUMBER(10, 0) NOT NULL,
"RoomId" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_Lectures" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."Libraries"
(
"Id" NUMBER(10, 0) NOT NULL,
"Name" NVARCHAR2(2000) NULL,
"CampusId" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_Libraries" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."LibraryBooks"
(
"LibraryId" NUMBER(10, 0) NOT NULL,
"BookId" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_LibraryBooks" PRIMARY KEY ("LibraryId", "BookId")
);
CREATE TABLE "S1502752"."Modules"
(
"Id" NUMBER(10, 0) NOT NULL,
"Code" NVARCHAR2(2000) NULL,
"Title" NVARCHAR2(2000) NULL,
CONSTRAINT "PK_Modules" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."Rentals"
(
"Id" NUMBER(10, 0) NOT NULL,
"CheckoutDate" DATE NOT NULL,
"ReturnDate" DATE NOT NULL,
"UserId" NUMBER(10, 0) NOT NULL,
"BookId" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_Rentals" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."Results"
(
"Id" NUMBER(10, 0) NOT NULL,
"Grade" NUMBER(10, 0) NOT NULL,
"Feedback" NVARCHAR2(2000) NULL,
"UserId" NUMBER(10, 0) NOT NULL,
"AssignmentId" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_Results" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."Roles"
(
"Id" NUMBER(10, 0) NOT NULL,
"Name" NVARCHAR2(2000) NULL,
CONSTRAINT "PK_Roles" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."Rooms"
(
"Id" NUMBER(10, 0) NOT NULL,
"Name" NVARCHAR2(2000) NULL,
"CampusId" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_Rooms" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."Runs"
(
"Id" NUMBER(10, 0) NOT NULL,
"Year" NUMBER(10, 0) NOT NULL,
"Semester" NVARCHAR2(2000) NULL,
"ModuleId" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_Runs" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."UserRoles"
(
"UserId" NUMBER(10, 0) NOT NULL,
"RoleId" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_UserRoles" PRIMARY KEY ("UserId", "RoleId")
);
CREATE TABLE "S1502752"."Users"
(
"Id" NUMBER(10, 0) NOT NULL,
"UserName" NVARCHAR2(2000) NULL,
"PasswordHash" NVARCHAR2(2000) NULL,
"FirstName" NVARCHAR2(2000) NULL,
"LastName" NVARCHAR2(2000) NULL,
"CountryId" NUMBER(10, 0) NOT NULL,
"CourseId" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_Users" PRIMARY KEY ("Id")
);
-- INDEXES
CREATE INDEX "S1502752"."IX_Assignments_RunId" ON "S1502752"."Assignments" ("RunId");
CREATE INDEX "S1502752"."IX_CourseModules_CourseId" ON "S1502752"."CourseModules" ("CourseId");
CREATE INDEX "S1502752"."IX_CourseModules_ModuleId" ON "S1502752"."CourseModules" ("ModuleId");
CREATE INDEX "S1502752"."IX_Courses_CampusId" ON "S1502752"."Courses" ("CampusId");
CREATE INDEX "S1502752"."IX_Enrolments_RunId" ON "S1502752"."Enrolments" ("RunId");
CREATE INDEX "S1502752"."IX_Enrolments_UserId" ON "S1502752"."Enrolments" ("UserId");
CREATE INDEX "S1502752"."IX_Graduations_CourseId" ON "S1502752"."Graduations" ("CourseId");
CREATE INDEX "S1502752"."IX_Graduations_UserId" ON "S1502752"."Graduations" ("UserId");
CREATE INDEX "S1502752"."IX_Halls_CampusId" ON "S1502752"."Halls" ("CampusId");
CREATE INDEX "S1502752"."IX_Lectures_RoomId" ON "S1502752"."Lectures" ("RoomId");
CREATE INDEX "S1502752"."IX_Lectures_RunId" ON "S1502752"."Lectures" ("RunId");
CREATE INDEX "S1502752"."IX_Libraries_CampusId" ON "S1502752"."Libraries" ("CampusId");
CREATE INDEX "S1502752"."IX_LibraryBooks_BookId" ON "S1502752"."LibraryBooks" ("BookId");
CREATE INDEX "S1502752"."IX_LibraryBooks_LibraryId" ON "S1502752"."LibraryBooks" ("LibraryId");
CREATE INDEX "S1502752"."IX_Rentals_BookId" ON "S1502752"."Rentals" ("BookId");
CREATE INDEX "S1502752"."IX_Rentals_UserId" ON "S1502752"."Rentals" ("UserId");
CREATE INDEX "S1502752"."IX_Results_AssignmentId" ON "S1502752"."Results" ("AssignmentId");
CREATE INDEX "S1502752"."IX_Results_UserId" ON "S1502752"."Results" ("UserId");
CREATE INDEX "S1502752"."IX_Rooms_CampusId" ON "S1502752"."Rooms" ("CampusId");
CREATE INDEX "S1502752"."IX_Runs_ModuleId" ON "S1502752"."Runs" ("ModuleId");
CREATE INDEX "S1502752"."IX_UserRoles_RoleId" ON "S1502752"."UserRoles" ("RoleId");
CREATE INDEX "S1502752"."IX_UserRoles_UserId" ON "S1502752"."UserRoles" ("UserId");
CREATE INDEX "S1502752"."IX_Users_CountryId" ON "S1502752"."Users" ("CountryId");
CREATE INDEX "S1502752"."IX_Users_CourseId" ON "S1502752"."Users" ("CourseId");
-- SEQUENCES
CREATE SEQUENCE "S1502752"."SQ_Assignments";
CREATE SEQUENCE "S1502752"."SQ_Books";
CREATE SEQUENCE "S1502752"."SQ_Campus";
CREATE SEQUENCE "S1502752"."SQ_Countries";
CREATE SEQUENCE "S1502752"."SQ_Courses";
CREATE SEQUENCE "S1502752"."SQ_Enrolments";
CREATE SEQUENCE "S1502752"."SQ_Graduations";
CREATE SEQUENCE "S1502752"."SQ_Halls";
CREATE SEQUENCE "S1502752"."SQ_Lectures";
CREATE SEQUENCE "S1502752"."SQ_Libraries";
CREATE SEQUENCE "S1502752"."SQ_Modules";
CREATE SEQUENCE "S1502752"."SQ_Rentals";
CREATE SEQUENCE "S1502752"."SQ_Results";
CREATE SEQUENCE "S1502752"."SQ_Roles";
CREATE SEQUENCE "S1502752"."SQ_Rooms";
CREATE SEQUENCE "S1502752"."SQ_Runs";
CREATE SEQUENCE "S1502752"."SQ_Users";
-- TRIGGERS
CREATE OR REPLACE TRIGGER "S1502752"."TR_Assignments"
BEFORE INSERT ON "S1502752"."Assignments"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_Assignments".nextval INTO :new."Id" FROM dual;
END;
CREATE OR REPLACE TRIGGER "S1502752"."TR_Books"
BEFORE INSERT ON "S1502752"."Books"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_Books".nextval INTO :new."Id" FROM dual;
END;
CREATE OR REPLACE TRIGGER "S1502752"."TR_Campus"
BEFORE INSERT ON "S1502752"."Campus"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_Campus".nextval INTO :new."Id" FROM dual;
END;
CREATE OR REPLACE TRIGGER "S1502752"."TR_Countries"
BEFORE INSERT ON "S1502752"."Countries"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_Countries".nextval INTO :new."Id" FROM dual;
END;
CREATE OR REPLACE TRIGGER "S1502752"."TR_Courses"
BEFORE INSERT ON "S1502752"."Courses"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_Courses".nextval INTO :new."Id" FROM dual;
END;
CREATE OR REPLACE TRIGGER "S1502752"."TR_Enrolments"
BEFORE INSERT ON "S1502752"."Enrolments"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_Enrolments".nextval INTO :new."Id" FROM dual;
END;
CREATE OR REPLACE TRIGGER "S1502752"."TR_Graduations"
BEFORE INSERT ON "S1502752"."Graduations"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_Graduations".nextval INTO :new."Id" FROM dual;
END;
CREATE OR REPLACE TRIGGER "S1502752"."TR_Halls"
BEFORE INSERT ON "S1502752"."Halls"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_Halls".nextval INTO :new."Id" FROM dual;
END;
CREATE OR REPLACE TRIGGER "S1502752"."TR_Lectures"
BEFORE INSERT ON "S1502752"."Lectures"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_Lectures".nextval INTO :new."Id" FROM dual;
END;
CREATE OR REPLACE TRIGGER "S1502752"."TR_Libraries"
BEFORE INSERT ON "S1502752"."Libraries"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_Libraries".nextval INTO :new."Id" FROM dual;
END;
CREATE OR REPLACE TRIGGER "S1502752"."TR_Modules"
BEFORE INSERT ON "S1502752"."Modules"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_Modules".nextval INTO :new."Id" FROM dual;
END;
CREATE OR REPLACE TRIGGER "S1502752"."TR_Rentals"
BEFORE INSERT ON "S1502752"."Rentals"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_Rentals".nextval INTO :new."Id" FROM dual;
END;
CREATE OR REPLACE TRIGGER "S1502752"."TR_Results"
BEFORE INSERT ON "S1502752"."Results"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_Results".nextval INTO :new."Id" FROM dual;
END;
CREATE OR REPLACE TRIGGER "S1502752"."TR_Roles"
BEFORE INSERT ON "S1502752"."Roles"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_Roles".nextval INTO :new."Id" FROM dual;
END;
CREATE OR REPLACE TRIGGER "S1502752"."TR_Rooms"
BEFORE INSERT ON "S1502752"."Rooms"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_Rooms".nextval INTO :new."Id" FROM dual;
END;
CREATE OR REPLACE TRIGGER "S1502752"."TR_Runs"
BEFORE INSERT ON "S1502752"."Runs"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_Runs".nextval INTO :new."Id" FROM dual;
END;
CREATE OR REPLACE TRIGGER "S1502752"."TR_Users"
BEFORE INSERT ON "S1502752"."Users"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_Users".nextval INTO :new."Id" FROM dual;
END;
-- FOREIGN KEYS
ALTER TABLE "S1502752"."Assignments" ADD CONSTRAINT "FK_Assignments_RunId" FOREIGN KEY ("RunId") REFERENCES "S1502752"."Runs" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."CourseModules" ADD CONSTRAINT "FK_CourseModules_CourseId" FOREIGN KEY ("CourseId") REFERENCES "S1502752"."Courses" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."CourseModules" ADD CONSTRAINT "FK_CourseModules_ModuleId" FOREIGN KEY ("ModuleId") REFERENCES "S1502752"."Modules" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."Courses" ADD CONSTRAINT "FK_Courses_CampusId" FOREIGN KEY ("CampusId") REFERENCES "S1502752"."Campus" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."Enrolments" ADD CONSTRAINT "FK_Enrolments_RunId" FOREIGN KEY ("RunId") REFERENCES "S1502752"."Runs" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."Enrolments" ADD CONSTRAINT "FK_Enrolments_UserId" FOREIGN KEY ("UserId") REFERENCES "S1502752"."Users" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."Graduations" ADD CONSTRAINT "FK_Graduations_CourseId" FOREIGN KEY ("CourseId") REFERENCES "S1502752"."Courses" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."Graduations" ADD CONSTRAINT "FK_Graduations_UserId" FOREIGN KEY ("UserId") REFERENCES "S1502752"."Users" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."Halls" ADD CONSTRAINT "FK_Halls_CampusId" FOREIGN KEY ("CampusId") REFERENCES "S1502752"."Campus" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."Lectures" ADD CONSTRAINT "FK_Lectures_RoomId" FOREIGN KEY ("RoomId") REFERENCES "S1502752"."Rooms" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."Lectures" ADD CONSTRAINT "FK_Lectures_RunId" FOREIGN KEY ("RunId") REFERENCES "S1502752"."Runs" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."Libraries" ADD CONSTRAINT "FK_Libraries_CampusId" FOREIGN KEY ("CampusId") REFERENCES "S1502752"."Campus" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."LibraryBooks" ADD CONSTRAINT "FK_LibraryBooks_BookId" FOREIGN KEY ("BookId") REFERENCES "S1502752"."Books" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."LibraryBooks" ADD CONSTRAINT "FK_LibraryBooks_LibraryId" FOREIGN KEY ("LibraryId") REFERENCES "S1502752"."Libraries" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."Rentals" ADD CONSTRAINT "FK_Rentals_BookId" FOREIGN KEY ("BookId") REFERENCES "S1502752"."Books" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."Rentals" ADD CONSTRAINT "FK_Rentals_UserId" FOREIGN KEY ("UserId") REFERENCES "S1502752"."Users" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."Results" ADD CONSTRAINT "FK_Results_AssignmentId" FOREIGN KEY ("AssignmentId") REFERENCES "S1502752"."Assignments" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."Results" ADD CONSTRAINT "FK_Results_UserId" FOREIGN KEY ("UserId") REFERENCES "S1502752"."Users" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."Rooms" ADD CONSTRAINT "FK_Rooms_CampusId" FOREIGN KEY ("CampusId") REFERENCES "S1502752"."Campus" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."Runs" ADD CONSTRAINT "FK_Runs_ModuleId" FOREIGN KEY ("ModuleId") REFERENCES "S1502752"."Modules" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."UserRoles" ADD CONSTRAINT "FK_UserRoles_RoleId" FOREIGN KEY ("RoleId") REFERENCES "S1502752"."Roles" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."UserRoles" ADD CONSTRAINT "FK_UserRoles_UserId" FOREIGN KEY ("UserId") REFERENCES "S1502752"."Users" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."Users" ADD CONSTRAINT "FK_Users_CountryId" FOREIGN KEY ("CountryId") REFERENCES "S1502752"."Countries" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."Users" ADD CONSTRAINT "FK_Users_CourseId" FOREIGN KEY ("CourseId") REFERENCES "S1502752"."Courses" ("Id") ON DELETE CASCADE;
-- DATA WAREHOUSE (FACTS)
-- TABLES
CREATE TABLE "S1502752"."AssignmentFacts"
(
"ModuleDimId" NUMBER(10, 0) NOT NULL,
"YearDimId" NUMBER(10, 0) NOT NULL,
"Count" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_AssignmentFacts" PRIMARY KEY ("ModuleDimId", "YearDimId")
)
PARTITION BY RANGE ("YearDimId") INTERVAL (1)
(
PARTITION P0 VALUES LESS THAN (1)
);
CREATE TABLE "S1502752"."BookFacts"
(
"LibraryDimId" NUMBER(10, 0) NOT NULL,
"YearDimId" NUMBER(10, 0) NOT NULL,
"Count" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_BookFacts" PRIMARY KEY ("LibraryDimId", "YearDimId")
)
PARTITION BY RANGE ("YearDimId") INTERVAL (1)
(
PARTITION P0 VALUES LESS THAN (1)
);
CREATE TABLE "S1502752"."EnrolmentFacts"
(
"ModuleDimId" NUMBER(10, 0) NOT NULL,
"YearDimId" NUMBER(10, 0) NOT NULL,
"Count" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_EnrolmentFacts" PRIMARY KEY ("ModuleDimId", "YearDimId")
)
PARTITION BY RANGE ("YearDimId") INTERVAL (1)
(
PARTITION P0 VALUES LESS THAN (1)
);
CREATE TABLE "S1502752"."GraduationFacts"
(
"CourseDimId" NUMBER(10, 0) NOT NULL,
"YearDimId" NUMBER(10, 0) NOT NULL,
"Count" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_GraduationFacts" PRIMARY KEY ("CourseDimId", "YearDimId")
)
PARTITION BY RANGE ("YearDimId") INTERVAL (1)
(
PARTITION P0 VALUES LESS THAN (1)
);
CREATE TABLE "S1502752"."HallFacts"
(
"CampusDimId" NUMBER(10, 0) NOT NULL,
"YearDimId" NUMBER(10, 0) NOT NULL,
"Count" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_HallFacts" PRIMARY KEY ("CampusDimId", "YearDimId")
)
PARTITION BY RANGE ("YearDimId") INTERVAL (1)
(
PARTITION P0 VALUES LESS THAN (1)
);
CREATE TABLE "S1502752"."LectureFacts"
(
"ModuleDimId" NUMBER(10, 0) NOT NULL,
"RoomDimId" NUMBER(10, 0) NOT NULL,
"YearDimId" NUMBER(10, 0) NOT NULL,
"Count" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_LectureFacts" PRIMARY KEY ("ModuleDimId", "RoomDimId", "YearDimId")
)
PARTITION BY RANGE ("YearDimId") INTERVAL (1)
(
PARTITION P0 VALUES LESS THAN (1)
);
CREATE TABLE "S1502752"."LibraryFacts"
(
"CampusDimId" NUMBER(10, 0) NOT NULL,
"YearDimId" NUMBER(10, 0) NOT NULL,
"Count" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_LibraryFacts" PRIMARY KEY ("CampusDimId", "YearDimId")
)
PARTITION BY RANGE ("YearDimId") INTERVAL (1)
(
PARTITION P0 VALUES LESS THAN (1)
);
CREATE TABLE "S1502752"."ModuleFacts"
(
"CourseDimId" NUMBER(10, 0) NOT NULL,
"YearDimId" NUMBER(10, 0) NOT NULL,
"Count" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_ModuleFacts" PRIMARY KEY ("CourseDimId", "YearDimId")
)
PARTITION BY RANGE ("YearDimId") INTERVAL (1)
(
PARTITION P0 VALUES LESS THAN (1)
);
CREATE TABLE "S1502752"."RentalFacts"
(
"UserDimId" NUMBER(10, 0) NOT NULL,
"BookDimId" NUMBER(10, 0) NOT NULL,
"YearDimId" NUMBER(10, 0) NOT NULL,
"Count" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_RentalFacts" PRIMARY KEY ("UserDimId", "BookDimId", "YearDimId")
)
PARTITION BY RANGE ("YearDimId") INTERVAL (1)
(
PARTITION P0 VALUES LESS THAN (1)
);
CREATE TABLE "S1502752"."ResultFacts"
(
"ModuleDimId" NUMBER(10, 0) NOT NULL,
"ClassificationDimId" NUMBER(10, 0) NOT NULL,
"YearDimId" NUMBER(10, 0) NOT NULL,
"Count" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_ResultFacts" PRIMARY KEY ("ModuleDimId", "ClassificationDimId", "YearDimId")
)
PARTITION BY RANGE ("YearDimId") INTERVAL (1)
(
PARTITION P0 VALUES LESS THAN (1)
);
CREATE TABLE "S1502752"."RoomFacts"
(
"CampusDimId" NUMBER(10, 0) NOT NULL,
"YearDimId" NUMBER(10, 0) NOT NULL,
"Count" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_RoomFacts" PRIMARY KEY ("CampusDimId", "YearDimId")
)
PARTITION BY RANGE ("YearDimId") INTERVAL (1)
(
PARTITION P0 VALUES LESS THAN (1)
);
CREATE TABLE "S1502752"."StudentFacts"
(
"CountryDimId" NUMBER(10, 0) NOT NULL,
"YearDimId" NUMBER(10, 0) NOT NULL,
"Count" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_StudentFacts" PRIMARY KEY ("CountryDimId", "YearDimId")
)
PARTITION BY RANGE ("YearDimId") INTERVAL (1)
(
PARTITION P0 VALUES LESS THAN (1)
);
-- INDEXES
CREATE BITMAP INDEX "S1502752"."IX_AssignmentFacts_ModuleDimId" ON "S1502752"."AssignmentFacts" ("ModuleDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_AssignmentFacts_YearDimId" ON "S1502752"."AssignmentFacts" ("YearDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_BookFacts_LibraryDimId" ON "S1502752"."BookFacts" ("LibraryDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_BookFacts_YearDimId" ON "S1502752"."BookFacts" ("YearDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_EnrolmentFacts_ModuleDimId" ON "S1502752"."EnrolmentFacts" ("ModuleDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_EnrolmentFacts_YearDimId" ON "S1502752"."EnrolmentFacts" ("YearDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_GraduationFacts_CourseDimId" ON "S1502752"."GraduationFacts" ("CourseDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_GraduationFacts_YearDimId" ON "S1502752"."GraduationFacts" ("YearDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_HallFacts_CampusDimId" ON "S1502752"."HallFacts" ("CampusDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_HallFacts_YearDimId" ON "S1502752"."HallFacts" ("YearDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_LectureFacts_ModuleDimId" ON "S1502752"."LectureFacts" ("ModuleDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_LectureFacts_RoomDimId" ON "S1502752"."LectureFacts" ("RoomDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_LectureFacts_YearDimId" ON "S1502752"."LectureFacts" ("YearDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_LibraryFacts_CampusDimId" ON "S1502752"."LibraryFacts" ("CampusDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_LibraryFacts_YearDimId" ON "S1502752"."LibraryFacts" ("YearDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_ModuleFacts_CourseDimId" ON "S1502752"."ModuleFacts" ("CourseDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_ModuleFacts_YearDimId" ON "S1502752"."ModuleFacts" ("YearDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_RentalFacts_BookDimId" ON "S1502752"."RentalFacts" ("BookDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_RentalFacts_UserDimId" ON "S1502752"."RentalFacts" ("UserDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_RentalFacts_YearDimId" ON "S1502752"."RentalFacts" ("YearDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_ResultFacts_ClassDimId" ON "S1502752"."ResultFacts" ("ClassificationDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_ResultFacts_ModuleDimId" ON "S1502752"."ResultFacts" ("ModuleDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_ResultFacts_YearDimId" ON "S1502752"."ResultFacts" ("YearDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_RoomFacts_CampusDimId" ON "S1502752"."RoomFacts" ("CampusDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_RoomFacts_YearDimId" ON "S1502752"."RoomFacts" ("YearDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_StudentFacts_CountryDimId" ON "S1502752"."StudentFacts" ("CountryDimId") LOCAL;
CREATE BITMAP INDEX "S1502752"."IX_StudentFacts_YearDimId" ON "S1502752"."StudentFacts" ("YearDimId") LOCAL;
-- FOREIGN KEYS
ALTER TABLE "S1502752"."AssignmentFacts" ADD CONSTRAINT "FK_AssignmentFacts_ModuleDimId" FOREIGN KEY ("ModuleDimId") REFERENCES "S1502752"."ModuleDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."AssignmentFacts" ADD CONSTRAINT "FK_AssignmentFacts_YearDimId" FOREIGN KEY ("YearDimId") REFERENCES "S1502752"."YearDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."BookFacts" ADD CONSTRAINT "FK_BookFacts_LibraryDimId" FOREIGN KEY ("LibraryDimId") REFERENCES "S1502752"."LibraryDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."BookFacts" ADD CONSTRAINT "FK_BookFacts_YearDimId" FOREIGN KEY ("YearDimId") REFERENCES "S1502752"."YearDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."EnrolmentFacts" ADD CONSTRAINT "FK_EnrolmentFacts_ModuleDimId" FOREIGN KEY ("ModuleDimId") REFERENCES "S1502752"."ModuleDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."EnrolmentFacts" ADD CONSTRAINT "FK_EnrolmentFacts_YearDimId" FOREIGN KEY ("YearDimId") REFERENCES "S1502752"."YearDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."GraduationFacts" ADD CONSTRAINT "FK_GraduationFacts_CourseDimId" FOREIGN KEY ("CourseDimId") REFERENCES "S1502752"."CourseDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."GraduationFacts" ADD CONSTRAINT "FK_GraduationFacts_YearDimId" FOREIGN KEY ("YearDimId") REFERENCES "S1502752"."YearDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."HallFacts" ADD CONSTRAINT "FK_HallFacts_CampusDimId" FOREIGN KEY ("CampusDimId") REFERENCES "S1502752"."CampusDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."HallFacts" ADD CONSTRAINT "FK_HallFacts_YearDimId" FOREIGN KEY ("YearDimId") REFERENCES "S1502752"."YearDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."LectureFacts" ADD CONSTRAINT "FK_LectureFacts_ModuleDimId" FOREIGN KEY ("ModuleDimId") REFERENCES "S1502752"."ModuleDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."LectureFacts" ADD CONSTRAINT "FK_LectureFacts_RoomDimId" FOREIGN KEY ("RoomDimId") REFERENCES "S1502752"."RoomDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."LectureFacts" ADD CONSTRAINT "FK_LectureFacts_YearDimId" FOREIGN KEY ("YearDimId") REFERENCES "S1502752"."YearDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."LibraryFacts" ADD CONSTRAINT "FK_LibraryFacts_CampusDimId" FOREIGN KEY ("CampusDimId") REFERENCES "S1502752"."CampusDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."LibraryFacts" ADD CONSTRAINT "FK_LibraryFacts_YearDimId" FOREIGN KEY ("YearDimId") REFERENCES "S1502752"."YearDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."ModuleFacts" ADD CONSTRAINT "FK_ModuleFacts_CourseDimId" FOREIGN KEY ("CourseDimId") REFERENCES "S1502752"."CourseDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."ModuleFacts" ADD CONSTRAINT "FK_ModuleFacts_YearDimId" FOREIGN KEY ("YearDimId") REFERENCES "S1502752"."YearDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."RentalFacts" ADD CONSTRAINT "FK_RentalFacts_BookDimId" FOREIGN KEY ("BookDimId") REFERENCES "S1502752"."BookDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."RentalFacts" ADD CONSTRAINT "FK_RentalFacts_UserDimId" FOREIGN KEY ("UserDimId") REFERENCES "S1502752"."UserDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."RentalFacts" ADD CONSTRAINT "FK_RentalFacts_YearDimId" FOREIGN KEY ("YearDimId") REFERENCES "S1502752"."YearDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."ResultFacts" ADD CONSTRAINT "FK_ResultFacts_ClassDimId" FOREIGN KEY ("ClassificationDimId") REFERENCES "S1502752"."ClassificationDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."ResultFacts" ADD CONSTRAINT "FK_ResultFacts_ModuleDimId" FOREIGN KEY ("ModuleDimId") REFERENCES "S1502752"."ModuleDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."ResultFacts" ADD CONSTRAINT "FK_ResultFacts_YearDimId" FOREIGN KEY ("YearDimId") REFERENCES "S1502752"."YearDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."RoomFacts" ADD CONSTRAINT "FK_RoomFacts_CampusDimId" FOREIGN KEY ("CampusDimId") REFERENCES "S1502752"."CampusDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."RoomFacts" ADD CONSTRAINT "FK_RoomFacts_YearDimId" FOREIGN KEY ("YearDimId") REFERENCES "S1502752"."YearDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."StudentFacts" ADD CONSTRAINT "FK_StudentFacts_CountryDimId" FOREIGN KEY ("CountryDimId") REFERENCES "S1502752"."CountryDims" ("Id") ON DELETE CASCADE;
ALTER TABLE "S1502752"."StudentFacts" ADD CONSTRAINT "FK_StudentFacts_YearDimId" FOREIGN KEY ("YearDimId") REFERENCES "S1502752"."YearDims" ("Id") ON DELETE CASCADE;
-- DATA WAREHOUSE (DIMENSIONS)
-- TABLES
CREATE TABLE "S1502752"."BookDims"
(
"Id" NUMBER(10, 0) NOT NULL,
"Name" NVARCHAR2(2000) NULL,
"Author" NVARCHAR2(2000) NULL,
CONSTRAINT "PK_BookDims" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."CampusDims"
(
"Id" NUMBER(10, 0) NOT NULL,
"Name" NVARCHAR2(2000) NULL,
CONSTRAINT "PK_CampusDims" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."ClassificationDims"
(
"Id" NUMBER(10, 0) NOT NULL,
"Classification" NVARCHAR2(2000) NULL,
CONSTRAINT "PK_ClassificationDims" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."CountryDims"
(
"Id" NUMBER(10, 0) NOT NULL,
"Country" NVARCHAR2(2000) NULL,
CONSTRAINT "PK_CountryDims" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."CourseDims"
(
"Id" NUMBER(10, 0) NOT NULL,
"Name" NVARCHAR2(2000) NULL,
CONSTRAINT "PK_CourseDims" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."LibraryDims"
(
"Id" NUMBER(10, 0) NOT NULL,
"Name" NVARCHAR2(2000) NULL,
CONSTRAINT "PK_LibraryDims" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."ModuleDims"
(
"Id" NUMBER(10, 0) NOT NULL,
"Code" NVARCHAR2(2000) NULL,
"Title" NVARCHAR2(2000) NULL,
CONSTRAINT "PK_ModuleDims" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."RoomDims"
(
"Id" NUMBER(10, 0) NOT NULL,
"Name" NVARCHAR2(2000) NULL,
CONSTRAINT "PK_RoomDims" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."UserDims"
(
"Id" NUMBER(10, 0) NOT NULL,
"FirstName" NVARCHAR2(2000) NULL,
"LastName" NVARCHAR2(2000) NULL,
CONSTRAINT "PK_UserDims" PRIMARY KEY ("Id")
);
CREATE TABLE "S1502752"."YearDims"
(
"Id" NUMBER(10, 0) NOT NULL,
"Year" NUMBER(10, 0) NOT NULL,
CONSTRAINT "PK_YearDims" PRIMARY KEY ("Id")
);
-- SEQUENCES
CREATE SEQUENCE "S1502752"."SQ_ClassificationDims";
CREATE SEQUENCE "S1502752"."SQ_YearDims";
-- TRIGGERS
CREATE OR REPLACE TRIGGER "S1502752"."TR_ClassificationDims"
BEFORE INSERT ON "S1502752"."ClassificationDims"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_ClassificationDims".nextval INTO :new."Id" FROM dual;
END;
CREATE OR REPLACE TRIGGER "S1502752"."TR_YearDims"
BEFORE INSERT ON "S1502752"."YearDims"
FOR EACH ROW
BEGIN
SELECT "S1502752"."SQ_YearDims".nextval INTO :new."Id" FROM dual;
END;
-- ENTITY FRAMEWORK
CREATE TABLE "S1502752"."__MigrationHistory"
(
"MigrationId" NVARCHAR2(150) NOT NULL,
"ContextKey" NVARCHAR2(300) NOT NULL,
"Model" BLOB NOT NULL,
"ProductVersion" NVARCHAR2(32) NOT NULL,
CONSTRAINT "PK___MigrationHistory" PRIMARY KEY ("MigrationId", "ContextKey")
);
DECLARE
model_blob BLOB;
BEGIN
dbms_lob.createtemporary(model_blob, TRUE);
dbms_lob.append(model_blob, to_blob(cast('1F8B0800000000000400ED5DDDAE1BB991BE5F60DFE140970162D90E82DD0C8E13383EF66490F1D8F07102EC95D096681F61A4D681D49AD8CF968B7DA47D85ED5FFE5615D96C92DD2DEBC633A7499145F263B14816BFFABF7FFFEFED5FBEEE7737BFB1E3697BC85F2C9E3D79BAB861F9FAB0D9E65F5E2CCEC5E7DFFFF7E22F7FFECFFFB87DBDD97FBDF96797EF0F55BEF297F9E9C5E2A1281E7F582E4FEB07B6CF4E4FF6DBF5F1703A7C2E9EAC0FFB65B6392C9F3F7DFAA7E5B3674B5616B128CBBAB9B9FD70CE8BED9ED57F947FBE3AE46BF6589CB3DDDBC386ED4EEDF732E5BE2EF5E6976CCF4E8FD99ABD58FC23DFD6E216DFDE6679F685ED595EDC7F3B156CFFE42E2BB227655905FB5A9C16372F77DBAC94EF9EED3E2F6EB23C3F1459514AFFC33F4EECBE381EF22FF78FE5876CF7F1DB232BF37DCE7627D6B6EA0791DDB5814F9F570D5C8A1F7A75D08237BD6CFCEBB2938A6F95787507BC58BC3C9DB65FF2AAC56FB27521E72D73FF9D7D533E949FDE1F0F8FEC587CFBC03EB72594FD7BDEB1BBEDFEA7CDE26669CFFF3F2C3B82B96F977A7DFCD7505555235E2C7ECA8B3F3C5FDCFC72DEEDB24F3BC6FB7C491624C930A498578712743D8BF825FB6DFBA51E4DAC718B9B0F6C57E7383D6C1F1BB43DE1A92B75C44A50BE391EF61F0E3BB9083DD3EA6376FCC22A510FB69CF787F371DD43ECB62B41A1DB344A64248B2130960F12F77629604E825F74B907EE7D006C079CA454EE8BC391FDC87276CC0AB6799F15053B96BAE39743EE00CC0DEB6A2A1553A97917376FB3AF3FB3FC4BF1F062516A8752D9BED97E659BEE535B7DA90A4B4D5DFEAA389EADB57CDC16BB18D5A0583370147EA27478B24F940EA1AEC2BFCE8F871D2DBB9265252904213992C5982F58BEBED3FB67B62ECE4786CB2C658025063318F2C2B9FA4AFB819DCE3BA283453A2C2B946E880A661AA48794C1BAAEC1535D83074C4F5DADD8A67188D557AD83E7C484ED56585AD42E1724A833DE3B5966B4EAFEB461752B5C501D0A8D2ECBDD00134B1F689B29E62AF65F0F875F7181BB5408907A9AA17A8D0C7D17881F8FD9E65C27E012AA792039E11C86B448B6BE32FF2DDBED7069BB54484E3DCD90D0C810D53C0024049249D3C05BCEEDA76376FC46C8293280729AC9A69C409EBE72362B81CDBAC5A43453918DDF20193F949A21231029D22119CD54C0C032B24434044119F554CA08F496F170D81312B6A9A07C5A9A299D9EA1AF6CF7C57943AE3B5206484220D91012CA33C88CEE56071FBBA29DBC494C68B5AE4BB3A145EB28455B0DB66428189A5649C754AD9A29E4C9552F2B4537A45033C60BD5527FCEC85E7639A5AAFE4D797C441BA65EC0D4879E44AFD7F0AB46A40F04CAD97D3CA5391C50AABA34C5C61B07C287A7AE8C3D86C0109AC9D07078CE906ACE7BABA3' as long raw)));
dbms_lob.append(model_blob, to_blob(cast('E3DEB223F242BEE8EFABDE1BA4F75C36BD03E1ABE3C10EF4083B226982827B222114B12B1299025C2D5D55F69455B61774E00B22045F217474EF2D3F216110BDDC1D1A79013BDB3F9E4F69802D577571C0EE1A072BF32E75259D1D4A6ADC4C36ED0F204F48CBA3D7B1A58E68F45CD3CFCEE07D79B53306D919F441B507280DAB82006E949360699AC167C14222EA3458E48A744608CA69A6E2E784B4847DCF2AAEABC39457074F8023471D08C242AC111E7732949041168B6EC65CE13D5578F7568A3A6608BD1902D5BD2E7650D9C21C2D8B9BD5145E4795F049D01FCC474992F8D22611EDEAE4E9D567A85FD2F7AF8F1144CDA6AA4CD511419D517A3A6806199942EE763CBC20A8AE0CB6925D373D83373D560F182F84427A1F85B1DFF073270B1F04FCE3C460E50CE6AEAEC292287E49AC218A5692F7D2D47EDB34F4D2BB0299E2E0A3DE7B6BC9A0839E9EA7AF226D071114B14DC34404920D11A13C21757D6FF72763AEE31E52DE6E315745EFF9C6E5E5B978381C532E2836F73A8F590A39A860D3C40B62DD94BD3088BDD91E4F451A9CFD9C45ABC91B691ECA56471AA5903DCD96CEEF32C58EF5D52E3B9DB69FB7EBB<KEY>0E75A29FEC1D2250495D1BC232373FBB97EE35685C7CB35D3B2209EB785B17D7ABA55131286B9DB33F031A325CAF5CD91DAC8B42B08ED661F68E219F7804ED3D40B309253BAA7E34E5E24722357EBBA38CDCE5B87F9ABB5C92BF5AD82E2AD0665815C2DC17C2137851ECF2574D0534F2A7CFD2BBB1E9E915274A33FA85B9652135A1FCC0C002CE05C4902DB0B0DE2D5E79CD0E0BA44C6A2AAD0AAB96345B6DD9D5254946D76DB9C37E9AEEC958FDB6AFBD8F786EB9CF756FB1673807A71273D2E362D432911796F27E7E8ED4A73CE61C1CEB954AC7A34AF26994269E9837C679A165EE2E4AB5CC0D930D3E20D639B4FD9FAD7F833AB3AB1186A08094C849B5BF2C4193EBDE07D173401FB9CDAA3A7482BAE19D4E3A3EE3B7848CF13074DAB5AAE0B9C5455BBD21C4DBE2F375BFF3A1C377FCB4E0FF<KEY>ED64DC5E5D553883ACD42601DB4CB5A97DD7E8A681C40325501CFE1D7945E7290C27BEB19075AD1AD507F0EAD42938355793EC4F6162A32F3104D39208C2123FD19A537E8A15C21049FA8CF040F88A829BA24E2B127493612C577D16C7AA185C9E2AD5E81C25015C2345EAA045B2530417B84EA6BE546B1594BF464576FB9A86F31DE64ABD5E47D97719AF1D8203AEBF7579C46B99F64921F050A64B411E6EF164BF15B8B91DA25E0A373956DD82ADAFC74A32B22CAB79222E83A6904622B5147A0A482A02BB2903BFA80EA2051AD45DB5C0605DCF67E790090C3F7233E6779F47783853DCAA5339EA6BCBF633C80FD7A5F951AE6D91EE691FE6' as long raw)));
dbms_lob.append(model_blob, to_blob(cast('00F2A829D8BB3A5FA92A475ADC4F171047FA0CFA8D5382F47A527D9D903358961DE610F4585907D090C795579CCC0027CEEA0D79B04801C6AE74BF550E9EA4605586550728533A3919D3C04A9E10AF86AB020750F7F5788B3080B42FC4D3827008ACBB0C73125EA960505D849544D08D5FCDE149B81A0A83C8340171EAED247FD5ACF3F192B72ABA9E3300729187E748C0C3D066FA1A87A175DDC861689D36F09EB92AE812B1FEEA81AD7F3D9C8BCA1962B863042BCEC73C485121AE9413AD1B0EC0849F2BA9A01D7C69EC705B80C8A11C95FB4D9072577789D3E3E28C6C871D3BF48ED6DBB66EDEDE923CF7AB1A3CE6D3EEFA3BC66CDF240E33A19B922E11B642ED0E54C377E7A3E220EF4909E1E130079C410574BAAB11E70B49846640C56B08173B317B54FFBAEE3BE85CC71387593CA5581738313C42CDE84ECB6CCF4E058B61B8838F9B6278C3214B83BB53A7B144204E9FC1DD46EAD902798D5412E04E2355AA679816BCAFACB313EA2563EAF67BEA46B09D568D0402F6D59F11F2DE262D4C18B64BD416213621619DC591C5C27182A061CA94E9337823E2ECE585CB337C47D2CE970B44E585062AEDE945D1E943C48BA2FD0FE945D1FEC7E3510445AB4EEA6198675AD5D103DC94FC412FDC641DEE038465E2F1FED2C71B37B2656475A1EDE5B9037BA1C0DE3D01567F8F59414AA8CD1C2F340A4FA04B54C0C33711210C8B088EEDD824E8E91786073AF1853F6A6AF470DC26A41A6E6D747EC5BEBC70CE6CA07E6A3788217B08A972EBCE221DBB9B1C806377FD0FE46A2E52833EC472703347A50971B27E99566C8C9375AC535F9E4E87F5B6165B594FEF8020C0AAD0AFF3CD8D6CA901BF1083DFB44558823561C1DBF3AED83EEEB6EB52AE178B670B7DE4DEE5776CC70A76F3725DC9571DDE9FD6F5DB4F7DF44A59FA0BC70D60219C9A4597F07746C525A6D8B11AD46CF7AA9C1CC531DBE68509C06DBEDE3E663BD7EED20A70C470D50FBC2A3DE58E3DB2BC829F<KEY>0D35F2D799DDA60D93AED76298192C62A16421D0383359EBA808292D58E047B1D00DCD2CC052F905A5A9100A296B19A0740B178EA1878ACC1D5057838EF4B12356A8BE69E5A895A3A2A013E2D3DE22201CAD694089D608C520C0174C05231FC72C0DE24D0A443FC0AC1783CE73888A4FA27011CA95E70A9DE12B13A051C8D28C9D888E321937D469B281740510AB5EB853F4CF804D8C3C6630E3A108F548AA1C4216CA9808B14093289327408092C84D38241C7D18BD6EE4A00506BAFB8C84047514D815530C228BDF15533E31BF2BEAA928E839B1AFF03F6E17013926DC1E1F1991D1C6D2B361557362014E7B86EE3E2A705E10CD76E24DE3C06145BF079FF85D15AC79C004937210128E9719A0330A1E0B4A8C54645AA951652117E308D214945751662F1E8DD918C' as long raw)));
dbms_lob.append(model_blob, to_blob(cast('47BC7352988D781F38ADD06480CE84073C5AFC4ACB410A16CFD238E2E9AB1B2D918E53637DC8290FDC8674C73CF018CD0F94B6259B0CCA1B1490735CA909F9134371866B3410D817C30915E557C084C772EE81402AA8FA2CF421DE800408C4C7651E9AD088DD6C8509A10307C16F8EDA0F133E25F066A8F73A53D60A3A3D23043A77F39F28774EA0C3844F003A6C3CE6003A3800386A97D1D1C025BB4F8A38DFC7EE23E388CFC341876C430AEB8F1A2397FAC777CE014369534BA59E195B86D39DD2D0F1E83D278AF76A8CF54FA21519EB0897EADBDF4F42415A37C566DE48CA718E2B34217F62B538C3751A8A068D01850C0DAD3AE2A45388645479494BF3E448EA90E89C0428247AC1A5F6F6E7A3A1108A148D0D3819365A0C7817523C0D0AA938D5295148744E021412BDE0527BFBF3F1CC432EB6FD7CC6C80A9A863D869B2C7B4ECB312E7E0AAB101D97392CC674B8630C2F8EB18FA5D36533E8799A1B66B7E8E8F2FCE99263DD36BB745D02D83AF58CD311B75ED088CA1408388FAB3C2AFABC1F202CA5CFEBF0876A4212B58A8FCF4C8E7E440BEC6BBB9E350A14E7B9B663E2A705E11CD776247E37BA58DA82792B2ED73CD47DAA37076400714936293DDE7303AAA352ACDE747738ADDBBC88D1002A896E5591405E0898BD069F2E7D4E5A92903F011A89B199839E545F81DB8008E68EF8BA7F8E70245B900090E418CD0192666C74DABC0303A5EB96637FAB118AAE0EBEC29F1E04D10624331B813171A95BFC6A6CC3B10DF76831C9F4E08F869198D642D4C36AABC7F3710D42B52BD299816A9B7B187F233F5EE1A126D13145E24EEA6EAB49DFAB98716CF5A7A8511FAAE8BD91026660BB9D70C6436B8CE687D885DBC006150C84A87A1FF6F53C34826F26C5ABB7CFA126760260017D3F035469911231246061138D27251ECF4966883058F2042083C761063833E3C161A82082C3A94E32093D6490708D06FA21B1023AC880DD9200756817B8D40D47FC4CB6F71401D5F0ED21105D4DF742E8EF81A0C5114C88DD017E078AD049769746DFCF0553F516CC020195D13700A6141260CB7E70329892854E8729B9EF5D6A45B9B3139A614A4C5E8BD90407E8F55C92E8D2F1056F7A9823E44F679F4163E3523B154B3BD50B0FDB56008CEFA8BEE7E8FBA472863B0040EC14AACDECFB19D8FE4A244454EF8061118DD7191E2F33B4E09F3454C7471624750ACD05F4BF4BB55D34CD71F495166710553258D041090C55B4B3346FD09008874E9751A15E9FC11D924285C1AD77825A13FF6EDC7BF59519CE14B8ED5663E401F7E85E77E86A68CA74D81D766F2E4B9D0060E018CC075EE4B6120B7A180C60F3DA5FC27227C5D8AC76994AA8596A7932E3CE8EB5509AF1A93D4C42EF2552EF8744EBA3DEE8A96B2F28B22136A8649843FDF2B98B41E8AECAA808' as long raw)));
dbms_lob.append(model_blob, to_blob(cast('89D6BBEDF1351A217E02EC1163E3B4CDE46104C7472118BE1481891ECA32300AF5F8B1FA8B9989A350153F350AD5B171A91D8B289B088572E45E0C1E6018DFA4B0806571DB5A040DEBA67442027001CD9D01A8CCA8A9D87012215421BA6E3FAAEE192EACA8F00930878EC90C16553D2AAE0338B0ADE960D4CD6B738A089E166FB3DA9EB693C3EAA9CD33E1265BD2E84163B9691BFD90CC38F372D21E538DD5F3A079CA4053E37499304E9C8484385C1494DA21220B8EDE0F09A005B579F23A4B8D314E0D<KEY>DD02B484EBC2D7464F51E93C0A5D4C87A0808B10E69205B2476554F10B1D8E509209DA7515A8708A12E9526C91F6A016FE6B038D84357702DA375C955F3136BB81D35743470A7DE1ED841C4CCB2C6A8469B42CC29AFAE49339B8060C840AFD842262B8D2082264B6D900E82890E21C224C7028A119B97EA0F3B44D008BEFE7D91061946B858A01FE<KEY>0EAB0873A55273B19EC54561FCA7507A53EC8F0A6B1' as long raw)));
dbms_lob.append(model_blob, to_blob(cast('76D960344D64D218F968B8EBD9B1C9635D91C970998E5D3D103BD4A2638B01898E32B5E8F8A026CD9482820D22BB6A3D1BBD1DD672637B6B2B5CA8608232F464F907F70A14FC0EE8156B8C3CA52554943CA925E2DE90E8152AB85DB45E0182B141BAC5CC4528032333A857F066D84A8BBC0122A383415B21F77062EA36C629A0986C870137BED436C9290E983224523B03200B884C0562CB16C14AC30311C3CAAD31F6F2A2AFE9669824BA675C661D1A4E6958AF243BFE04E3F6C0879FF6103FFA312519E4473D83133E0BF4C927199B472A526DCFE09E8202C800BD648D33A334878A34E3D8146B797101040734B1DEDAD9BB868E7D12E2C62ED15184115E035539680C0E40474051380C85E3A26CA0B81BE0A55C4075D3BE21C2950CF4C808D203DA3B2343A1D40E2F7675A2BD10D22CC870C7BB3C08017AB20B8729008E618D4005C6C191ADE9708001E35E24D4A14BC75B889CB780B486C601894E6CA89DB2D84F58742A43875EF33F95259A4CF1BA4367A744C325D72EFB196C9AF69B6CE2C83E98A01C3776AE30E9B8B607B66F8061AE70F3581B2CCD7BA7D7505CA35B3C80011BD88DA91CD8C6A6CE6543A7B25EDB3ACFBFB98D6326DA5CF3B50C24ABF25AC6AFB9CADB98087A1D2206C6A73BCE1F0CCD559041D811A8D6F250E0038AC4F3F494507F2891AD71BC4928BED68DD3723E9A48E3CB1CAAF85928C0B10A1D5AAA2CABE6E9A7D3C9A7CAAB6AEB379F31D6D83DA171A60840D5A142284065B96BB7596AB811E6CE68E6ACCA3A496D7A4C5A4A7863A21053429B1CC70D8E424569E9C3410DC7143DC59888888CA9FBDE6D8FADF4159E3E04F5308F9F015783C9AF2FDE0D023E076DE1ED26A752C8A10E7204D39CBEFB42B9E68C7D08F735B7FAC5C1EC7251363610A799AD5B20EA33BC151AF9D9F06ED1E8CE8CA3D6704E700DC916EAF<KEY>FD70F6C9FB51F6E976596357B2CCED9AE5C6AD8EED425BCCD1E1FB7F99793F865FBE5E6FE315B5713F3F7F78B9BAFFB5D7E7AB178288AC71F96CB535DF4E9C97EBB3E1E4E87CFC593F561BFCC3687E5F3A74FFFB47CF66CB96FCA58AE953974AB49CB6B2A0EC7EC0BD3522B9DB0616FB6C753719715D9A7AC5AAE5E6DF646B63EAC135D9530F9843974DDCBBAEE77D5FFB7E0CAB7BF95A355A6BFCDF252FAAA94FB6FA782ED9F54E23E690539E9FC155A1DA2C3DF947D50E5AABB83813B41B880B288FB75B6CB8E1D2388' as long raw)));
dbms_lob.append(model_blob, to_blob(cast('FEB8AFE2047975D89DF73990A0E3152F4F0AFF2E97464485C7CBAAAF33D472DA4F6619B74BAD87F4615A1AE3A44D207DF89DC021DDE747C105EACBE00009E2B7588FEBC3D677BC2A9E1D75B84CE61DAA848FDB62A715D17E9ACC886BF7B351465DA58DE93FF296DF5F75411464F05BF62898405C0C1CD080FE328E16A8AA33077C42E344BD890D30509C66A9FF48E13FC53A5BBCB5D5074D4DB94E5A040CF2A3E6287090E8B2FA0382FA719CD95BFDABFEBEF9329901B33F550E30681A2D59FF81B31540CC98E6F1AE3E8A4AC2753623E090DE3E47C105FAEEDB0112C46FBFD3A92CBFF18EB87BF29CC2D48FAFD3370A20A847E001E0C01919FB8301FF29DADDDD7357030A72C2150A982617AF85E36872EC8DB48B26C77FFB9D6A72E5ED7C4C33DA73FA92BFBECEE0289810EFE5A30082F3D0F64703FED32B14E2A807FA317908F520B1097BA807EAD7A94E4BDBD7EF7A69D2E72BBE085513CF54E828A6FD14CDD54C90C68951AFE1430C15AFC067B4881F635DDEBEB6D7C74DFAEC3E7C2D9F815E96F4F9AA008823FD780AA0E375F73BD09FA402C04A78792E1E0EDAF54DF76D32A3CD7930A28C7647C1DF7FB4D15FC619EDDAEBC51C72E9B37B593F675051E2EB64C69E26C508B284F0D8093E4B08FEE35476A441D861EC59A00CD7A5053B8832E952E21C481931363C0EA6EC65C451456AC514DC2634B216DA8F00632A8739E93F9AE4AFC919053A04A829D7F98E5F2172EA965877885DC41AAF4B44F4C791A676175206C0D284868D7E9619D4437790776EAA61EBE349899571C78A6C5B3D4C974BE11FFB94936D76DB9CE905755F7B9C919D73E37CACF9341920E2CF428219A7DE86692AF055DE2FDA68B79F7AEC6E18DB7CCAD6BF6A9B1BFED5BDA42EE2A57E40D3AF4D620AEB65A929930122F6202BD016D9737F9C0A82555DE686567C752FE97D69BEFEEB70DCFC2D3B3DA8A5A92973D9B85B167AC46CEC6D34B4F1D74D2798494D12C1AB15D3D6F337F4A6777238AA675F54B73E6F9FBEE90D123A2FEBEB6AF8127B5AF3B2E3B28933DE20558FCB78233F1C7BBC47F4D78BE8ABE7E9A737BDE199FD74145C5A51061BE11073186FF497D7210F32E4289561B85187B802DD471EFE356A2D373F42DE4AF5BFAE87EEEA27358A1187CF73DCFA0DD8D8D37516F7E11D8164A423A73A08B5CF9113FCC348C7D40F6CFDEBE15CB140E86FD095941E678DAC381F73B33CF97BEA43A859E89C8690310E1801BE491728823F9BAACE998F898093028673E9F577E74D35E2952AF8B8D5475D7CED51D2F9085CA08BAF712E4AD032CA590379234F0A8308EB5E085D63529CBAA81AE8577170E74EB48095705FB6BE6CB9568AF<KEY>3AB047B304D0A2F12FB6A14D4F0F287D0B6A4BC24196E94CCE052B663D78C32E43003AAC378633F8C64217F0FEC4C2A' as long raw)));
dbms_lob.append(model_blob, to_blob(cast('8B6CC4CB02EF41A77F1EEE426DF69A5AA6428D3290A28241041FF359EEC3A8FBD9DCED0ABECD28F0E98AF77484807F1A79A53E9833BFFB3699618B38649EC3D56FA82EE2CECF208DD5B3F0DADB2FFC6F4E1ADB12B62A4CB275AB2B5ED8BAB5A7963C5667706DB22C6ECAAEF96DBBA9D85BDF1DB3F58E3D69867753E57BB95EB353E535BFADEC659EB5CCB1FD5CEE5E3E1E7E65F98BC5B3674F9E2F6E5EEEB6D9A961F3EDCF52CB36FBE5E9B4510E3225341ADE61A6BBF6EDDFD9377D6CBA51FFC03E43CF40F4D106F2A3FED7B74BBDBE5BD004687F5C35E2C5223FEF3F553BBEF747B6DE9E6AF2E3674F17371544CBD4F2FF7E39EF76D9A7EA8FCFD9EE640052AF42922E4E05ADDB7888C2E589420E3242A8EA36BE3E0315B3FB2AD3BF2DFBB7ECB87EC88EE54C799B7DFD99E55F8A87178B12FF4AB1C5F16C2DB5DD0D0C2BD679380896D3EB94BB90290772974E62C2D546C28FAC5C1AB3826DDE6745C18E795502ABDBE0357C893B17A61B75EB5D9A5E34ECE451EBBACE1EE701C6E8432731817AF65F6306275A5A28FA4EB7CE2309FFC24E0FA5AAEBEC701E648490F33A399CCCE0EBC4B8D88901935D3A0E2F4588167878E5AAAEC3EBAEF760FACAABDE73B3A6AE33E36267064C0C791DDE0B195E94E631CE7111C1DC38BBC325A92D57C0F5D227D775B677AF319887D1ADE308EA45203741AE18768E4A62C51922A925D719DAEB08F43A43D152BBA72E89663E48A<KEY>1C420F89A07648A68E614EC33846931339E1ECCC27B0555735ED7E6441131B4E424584BE10D47913134D779475D0F9789760190C7EBE2BD5759D4E7D6E3E4016C149CC239FFEABA80813CD0F8CCA6F127D175A070571E8318BE51C82E10BEE38059B9237F52BDDBE671DCDE395B42705003FDF4522AAE5018C64767376C0D0C0EA7CADE3C8AD320826059EC9C97791B013C47FA191A19200862E7D061B4974498EBAE6B78F4DC6309BBE83E992F4800122D1BBF6AAFB6CE3C4102378115C472DEC5C30F9EBAE7D3AF5990072D05D876D26C366F291F57280EF71CF38C0F53DEEB561F2AEF7EDF3EB7461C9EFE4201AB78B1C2D95276EC8F991441037A098B8470EA3CC7B9387ED22917459CB2444A67691C32618DB06CC5A41D616C9112FDCE1345078CBEE965629E88C691709AE70CF3BCDB205615B689D2368819242022142BB4860C45DE6C7B8CB82B8AD2E72E82E814401A723EBF39CCF71178CB18CB93EE58B374F465274188BD8454E97984B605C2D3AD27D134C13E6EE06EFFC4EC56F4E465EB90E23CC47DFDE9ED94C8C79A5F1F2743AACB7B54E5374EBDD76BF5259B2F4CBA3D7F9E6A61A009968A915B2A2EE7A227D7D7BDE15DBC7DD765D0A507696C116F72EBF633B56B09B97EBA2EECF57D9690D04A0AC1AB1C1A4D038BD6451F424559EDF19D5944861' as long raw)));
dbms_lob.append(model_blob, to_blob(cast('C76AB0B2DDAB437E2A8ED9D6E46B7B7FDCE6EBED63B6337A41CBE908C1AA79BC4C3DE58E3DB2BCC20FDC58971A69D7EE25AF41EB715B5FDC2E2508D1C85218A056183DD7D470A5F256C9926829F3471541D1355950B51EBFCECAAAA3A89207927FFB2E141548D21507501E6A8A08549F044F828469D5116EE16092189BE461943F278114A70693A5101FA3C00863AB8A832498FC0CA9CBC2769602469DBC2B98126F4AFA680CF024D441BD9033B6F6E11C482B95D30C574182164B1E3EE96B120C690C6CB2287A52143C21E460711045D1CD2135D2345A29902568C0561893DAD440253197991B804B011346CF3607204D7F6D1B0B4209D7B79E001A7B855395E70C2034F6D296104A1E0BDBD870E2E45AAB8E0691309538939EB2AA89AF49F0C4E91A6521C4C7382B1ACC21180745301F255217CDC39670C3DF584608D7E2D43024731B02070F97822494C27116609AFED2361E8C122E6A7D4134F68AD6B15ACE4619711A4E5908F171FE6A08E61945EA1A5F0771004D5F018D019D84AAA71770C6D63B9DD93603D88C614227844D2F037A6CD8482CBDB3B9D297998515BB47FE3EFFEB7C944019A96EFCCBFC96817725498E6FE73BBA5E7DEDF81E700452154F0345148F766A8534FDA56C3C08A5DC82F584D0D86B5A4B33BC12D4D6B816EA2889F5CBF384463497525585D2E7280002C998E30008E318476AA368C253E0A7254676C24F47A22C0F1DFF76D1F801E9A327811F8A943E8919C4C59DC10A36167C52EEE3FBC167ECE5CBA05F5E095270E276CC206D560E15CDD444E8E274E62ABAC4E738078C3485752C9CC1DCED486D6EE4EB69145627F86CCE00C60256D213809E809AC0018000D21C56BE71209474E5EB05A0D1573ECE94BE9288F149E7D98E595D7374E49F93204966F1970551BEC7F27504B9E5E3C0098D56805467094F90025292C8335049E30129A152EA8BA2B1B592FAEE71FA201AF7C5634220F57FEF3836949AF5587AEC88C248CA02BF304C6A2401065224F8605D130741502008A426356AC098E6D1AA3ADFB21A459045940833759403FD4034AE0194022C66F006A41E89917F44A7EAF69D90CD9F1AF03D4B04939689DE7CA214D5E92C0552208E7D0C2B9C677234AFA115482E3F1D9CD42CEDBAABD0EC316272CF4F1321ADFFEDD441D2D1C2037ED0B3870A48793F4DB45457B72B89EB9DBE78376EDDD382C51041F91EEDD23D21649CAB8319F393ED8AAAFBB915C0533F0DB8B4A4ECE6F5E8CC410291CD4F181F40F0B49E7B8E0BC187F346241D3E5002C484268ABCF6D8287F5CEC848B5B7CFAD81189D71F2ABE4B2ACFE5A99BB8753C07DD5B7AF6C6AD19A502A967EC7D50E304BB02A26AF41CA2B8AEC8901B72442FF684FEC7CEEEEBE36991732E9DED134F1FCEB98A92EAEFC4E4858ED70AA1A0A2879D8883949EB707' as long raw)));
dbms_lob.append(model_blob, to_blob(cast('2D5FFFB8B78A2B3324C7149022A242803788F3C60912F262D23099ECF6671CA4A4DA04F583CAA8FBA06AF969D7CA29AE3D23182869B4492FFB64445D22471F598171A03D2EE7A25E0EB691524C29BA84880482E92E0AA17830487D440098E40802C3D8E87EE28093F87780A01E239A1A415854A044086AB153AA415B408AF190E3B044CE0E27AE4BE1C8F0101486535FA0A4605230A7E4EC17272C5C1652DBC84B93849CC9EE94C6C24CAABD524FC48CBA596AE06AF7A51C55C924F6A44CA458FA38528EA9522A39DBB7B73401C07817CF699DB3D35D3C3BBB658FAA43BA9081ABEA1FE2524833669B0FC9148851BFF818E95A288D490B076C44EAAA328E8F93C95A2663E0249536E9859384FAE4751DD1B1FC4D51FE821DF99AB7616FB6C753719715D9A70CD80155BFBA6785F12EA579D4F59AC789448292DDAF1FD83E2B139FFDF1E9F3FFFAE3F372C89BA8937A08367D90F59AA527FF46A5521A5A1FCF63AF4A7BB86654A7A5A3552AF9ECD5F2777B46853C05ADAACD61AF44846A326A1149683522C899AD1E39AA9951939C88D62532D96BD3632B1835EA19D05AF5484AB69AA5303746A5521A5A1FCFE33A039006CA899639E0D630C1906AD42592D09A447C056B070A026AB303451ADE815D1E674C22AD52526DA8746B9B2027366A134968555D168786C9FC7F66C3E454BC61328BA64BC3E021E32964B39C864B268532EB9112F1AA98A05473518C7093780AA9169D9AC4B9DA8C4A780A5A499BC3A5DF04A508D06F2291E837C100659DBF26D793398FCD3CF87CD6F3DA4550F80A8CCA9554B45A8501C441E973CA0F48EBF3444AEDB799ECB5C9EE5284BDE5646BB9A207458E15356E9300990116F83B8F0C3E2CD631D932D7451F5DF1ADCBBDEBAA882E89D6F5D06979479676CBB2EEBCCEE26BAC757D751904C5831DABA949B5ADE6CDDB31971502591E2C6B83EB5A87AE73D635CE6DC946D66BCB62ED6C7FE0B687DDEE706840752F6ACA5F7DC5C5AF2E7E9DB77BD456CF659BE76AC2A3E6BBD57477554D683D6AB2454DB9D629DF28113B2FA75D97DBF2D19C13814B4893442E235516970903D661291F2E5B3A93014E348C70F437527EFD88838E5DAF1CB319472665DDCA57E3D80972DD96CDAABA003D493FF8531BEBD0112AE591249FD90D58D6389D001E04D5BFD7520677417B7EE382042C2BDE0CED60A96E00FF36110C88D39E9574C864B61ECC8737C13C86AAC5973F131DA01F96D5BF151F0737DA88FB0E34988E0D1F649C6337138F530EB4D731A8397071AE375DFA4A341E3E3AAC0BD09306770418561B55F65ABE38CD370F1525FD18BED904D06DA1A283403D457391A0C540935DC21B0769764A90434176A1796E8BC5AB425C3F256E202EBE128DD74FB2EB9F8A8FA196AE66BA0A89D0B54BCB18A7D1C059B7BCF245683A8173' as long raw)));
dbms_lob.append(model_blob, to_blob(cast('6BA0D320204FD36420E226D0625B5CCE60E3AC5F31D43F151FC33597185E3A866490B18DDD4C239E21D04C3AE661906646575560FC3D68C6DA03F505DB6501B757CDBC95BF0701F29D1E2D0E01B3918F06A6DE6CFE6DF44643E1CD2CA31D513F276932148E0BD956E9D9E81D92DE64FE8D525BC615660310E9F3E00643F1A380065BC34C29826B1795B5D4FCDBC80D06021E41F3D8CC1561594AD05C3A400F6459BB47F451CD10EC26B73147CC54B263F43BE8B663C4E7003800E2C88048B0C59B09B694256E36097F3A364A20F8C76F2E16A5033E3AB207F4D04F4EB48BFCEEE8847F269A0FF81DD43F57BE0FEE0028A604D0786BE88920239EA6C9700C04EB7540BC66A7BB083039FBD1C98D12FB2387F8C801BEC30C076677B899DD3E8AC2E733F46A0A9AC5D014261B273BA2700B27D809186744470FBF60CE74E068003817201BA6FAA748A7C18176CA1D771DB24906A9ED02344BF659E13BE370A75844AB285AEA000DD31C66E453AB403B22952519D90F1154CAC66EC8D80AB934D0F8A1F23DD0C6A061F645770400F1EFC0C6A9BE3BD206205C931AC58436097ADBD257CF256B12C49F8A4F399C66D577068D014C89EF1339728AA55A64B72F7E3815EE64A921A8C48F940002CBFEE241A748D009528891D23815A1D1A26817D5C6098FB5A66DD5DF4EFE168EA6DA10D3BA2602A44C6A93297050E30C2F3BD57C0EDA344C5D52F476033566FCE6297C6B082E613EB641E31677BE412461A85308C125E667FE02BF523D27A5DF7609619BDC956A6932CCDC631C5A0127569368B24CC3847A7E002C4D019AE800F7412E1E04682DEC4201206B3ADEDEAB2E1D619B8AA955920C67A05E4DD144859C059D8A2EC7101E6318EB1042A11341EE8360BA91C17B877847462A0506D22A9181B23B3555D27CB08C93F12BF1315CD3B05946D03A0C1CB1504DAB381FAADF7392019E76BB6C1CE6DB0FE59FC5E1987DA95618B63BD55F6F97A56A2EB67BD6FC75C72AA39717715B9699B39A724214DAE5F929FF7CE8B8153489BA2C5D72B720B122DB6445F6F2586C3F67EBA24C5EB3D2CCCEBF2C6EFE99EDCE9541B7FFC4363FE5EFCEC5E3B9289BCCF69F76CA5EB2E268A0EABF5D1A32DFBE7BACFE3A85684229E6B66C027B97FFF5BCDD6DB8DC6FB29DAE71B0222AF2871F59F9BD19CBA2FC2FFBF28D97F4CB21772CA8ED3ECE59F191ED1F776561A777F97DF61BC365B3F7A1DA63B777DBECCB31DB9FDA32C4EFCB3F4BF86DF65FFFFCFF9BF48A7EBA9C0200' as long raw)));
INSERT INTO "S1502752"."__MigrationHistory"("MigrationId", "ContextKey", "Model", "ProductVersion")
VALUES ('201902210805040_InitialCommit', 'UniversityManagementSystem.Data.Migrations.Configuration', model_blob, '6.0.0-20911');
END;
|
UPDATE settings SET value = 'http://reqid.newzflash.com/index.php?reqid=[REQUEST_ID]&group=[GROUP_NM]' WHERE setting = 'request_url';
UPDATE settings SET value = '218' WHERE setting = 'sqlpatch'; |
<reponame>yosshor/limestone
select
sum(ws_net_paid) as total_sum
,i_category
,i_class
,grouping(i_category)+grouping(i_class) as lochierarchy
,rank() over (
partition by grouping(i_category)+grouping(i_class),
case when grouping(i_class) = 0 then i_category end
order by sum(ws_net_paid) desc) as rank_within_parent
from
web_sales
,date_dim d1
,item
where
d1.d_month_seq between 1205 and 1205+11
and d1.d_date_sk = ws_sold_date_sk
and i_item_sk = ws_item_sk
group by rollup(i_category,i_class)
order by
lochierarchy desc,
case when lochierarchy = 0 then i_category end,
rank_within_parent
limit 100;
|
version https://git-lfs.github.com/spec/v1
oid sha256:c189bfdec31b98056e7851aaf9680bd3ddf667de5b54eabf7f15e4b3075de783
size 63
|
<reponame>fengzhiyuan007/baitaiyun<filename>public/back_2018-04-19-11-15.sql
CREATE TABLE `th_aboutus` (
`id` int(10) unsigned NOT NULL,
`company` varchar(64) NOT NULL DEFAULT '',
`img` varchar(150) NOT NULL DEFAULT '',
`url` varchar(100) NOT NULL DEFAULT '',
`tel` varchar(20) NOT NULL DEFAULT '',
`wechat` varchar(64) NOT NULL DEFAULT '' COMMENT '微信公众号',
`qq` varchar(20) NOT NULL DEFAULT '',
`record` varchar(100) NOT NULL DEFAULT '' COMMENT '备案号',
`address` varchar(100) NOT NULL DEFAULT '',
`email` varchar(30) DEFAULT '',
`hotline` varchar(20) DEFAULT '' COMMENT '热线',
`fax` varchar(20) DEFAULT '' COMMENT '传真',
`intro` text COMMENT '公司简介',
`video` varchar(100) DEFAULT '' COMMENT '宣传视频',
`create_time` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;CREATE TABLE `th_administer` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`roleid` int(11) DEFAULT NULL,
`username` varchar(150) DEFAULT NULL,
`password` varchar(100) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`update_time` varchar(20) DEFAULT NULL,
`create_time` varchar(20) DEFAULT NULL,
`last_login_date` datetime DEFAULT NULL,
`status` tinyint(1) DEFAULT '1',
`login_times` int(11) NOT NULL DEFAULT '0' COMMENT '登陆次数',
`last_login_ip` varchar(64) NOT NULL COMMENT '上次登陆ip',
`head_img` varchar(255) NOT NULL COMMENT '头像',
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`),
KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;INSERT INTO `th_administer` VALUES ('1', '1', 'admin', '<PASSWORD>24fb2f2f1e', '超级管理员', '2016-12-10 19:25:30', '2015-01-20 17:08:02', '2017-10-13 11:22:10', '1', '308', '172.16.17.32', '');INSERT INTO `th_administer` VALUES ('20', '', 'shanghaiTV', '123456789', '上海电视台', '', '', '', '1', '0', '', '');INSERT INTO `th_administer` VALUES ('21', '', 'hunanTV', 'd52f65f4d0766aa18a10fae24c322c28', '湖南卫视', '', '', '', '1', '0', '', '');CREATE TABLE `th_advert` (
`b_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
`b_img` varchar(200) NOT NULL COMMENT '图片',
`b_type` tinyint(3) NOT NULL DEFAULT '1' COMMENT '1无跳转;2:url 3:导师;4商品',
`b_intime` datetime NOT NULL COMMENT '时间',
`url` varchar(500) NOT NULL COMMENT '外链地址',
`value` varchar(20) NOT NULL COMMENT '导师ID/商品id',
`sort` int(11) NOT NULL COMMENT '排序',
`content` text NOT NULL COMMENT '内容',
`uptime` datetime NOT NULL,
`title` varchar(30) NOT NULL COMMENT '标题',
`is_del` tinyint(1) NOT NULL DEFAULT '1',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1下架;2上架',
`type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1是首页轮播;2是名师指点轮播;3论坛;4商城',
`delete_time` datetime NOT NULL,
PRIMARY KEY (`b_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='banner';CREATE TABLE `th_alipay` (
`alipay_id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL COMMENT '用户id',
`phone` varchar(11) NOT NULL COMMENT '手机号',
`alipay` varchar(50) NOT NULL COMMENT '支付宝账号 / 银行卡账号',
`relname` varchar(30) NOT NULL COMMENT '真实姓名',
`intime` int(11) NOT NULL,
`uptime` int(11) NOT NULL,
`type` tinyint(2) NOT NULL DEFAULT '1' COMMENT '1:支付宝 2:银行卡',
`where_it_is` varchar(200) NOT NULL COMMENT '开户行',
PRIMARY KEY (`alipay_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='用户绑定支付宝表';CREATE TABLE `th_amount_record` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`amount` decimal(10,2) NOT NULL,
`type` tinyint(1) NOT NULL COMMENT '1增加;2减少',
`content` varchar(64) NOT NULL COMMENT '注释说明',
`intime` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `member_id` (`member_id`,`type`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;CREATE TABLE `th_anchor_info` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`anchor_id` int(11) NOT NULL COMMENT '主播id',
`tv_id` int(11) NOT NULL COMMENT '电视台tv_id',
`dashang_scale` tinyint(3) unsigned NOT NULL DEFAULT '40' COMMENT '平台直播收益百分比',
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;INSERT INTO `th_anchor_info` VALUES ('24', '7', '5', '58', '2018-04-10 10:58:44', '2018-04-13 13:20:44');CREATE TABLE `th_app_version_control` (
`id` int(10) unsigned NOT NULL,
`android_merchant_version` varchar(255) NOT NULL COMMENT '安卓商户版本号',
`ios_merchant_version` varchar(255) NOT NULL COMMENT '苹果商户端版本',
`android_version` varchar(255) NOT NULL COMMENT '安卓用户端版本号',
`ios_version` varchar(255) NOT NULL COMMENT '苹果用户端版本号',
`android_one_path` varchar(255) NOT NULL COMMENT '安卓用户端下载地址',
`android_one_img` varchar(255) NOT NULL COMMENT '安卓用户端二维码图片',
`android_two_path` varchar(255) NOT NULL COMMENT '安卓商户端下载地址',
`android_two_img` varchar(255) NOT NULL COMMENT '安卓商户端下载二维码',
`ios_one_path` varchar(255) NOT NULL COMMENT '苹果用户端下载地址',
`ios_one_img` varchar(255) NOT NULL COMMENT '苹果用户端下载二维码',
`ios_two_path` varchar(255) NOT NULL COMMENT '苹果商户端下载地址',
`ios_two_img` varchar(255) NOT NULL COMMENT '苹果商户端下载二维码',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;INSERT INTO `th_app_version_control` VALUES ('1', '16', '0', '26', '1.4', 'http://play.100ytv.com/o_1c474nejh3tq12fd1hlk41r1ngcg.apk', 'http://shop.100ytv.com/qrcode/1516363384594_android_one_img.png', 'http://play.100ytv.com/o_1c40tn9vd1c2h4no7ad1t3a1f7mi.apk', 'http://shop.100ytv.com/qrcode/1516154833853_android_two_img.png', 'http://itunes.apple.com/cn/app/id1328943269', 'http://shop.100ytv.com/qrcode/1516075294676ios_one_img.png', 'http://itunes.apple.com/cn/app/id1328945946', 'http://shop.100ytv.com/qrcode/1516075294249ios_two_img.png');CREATE TABLE `th_areas` (
`id` int(11) NOT NULL,
`name` varchar(50) NOT NULL,
`pid` int(11) NOT NULL,
`pinyin` varchar(100) NOT NULL,
`level` int(11) NOT NULL,
`center` varchar(255) NOT NULL,
`shouzimu` varchar(100) DEFAULT NULL COMMENT '首字母',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;INSERT INTO `th_areas` VALUES ('2', '黑龙江省', '1', 'heilongjiangsheng', '1', '128.047414,47.356592', 'H');INSERT INTO `th_areas` VALUES ('6', '甘肃省', '1', 'gansusheng', '1', '102.457625,38.103267', 'G');INSERT INTO `th_areas` VALUES ('7', '广东省', '1', 'guangdongsheng', '1', '113.394818,23.408004', 'G');INSERT INTO `th_areas` VALUES ('8', '山东省', '1', 'shandongsheng', '1', '118.527663,36.09929', 'S');INSERT INTO `th_areas` VALUES ('9', '吉林省', '1', 'jilinsheng', '1', '126.262876,43.678846', 'J');INSERT INTO `th_areas` VALUES ('10', '山西省', '1', 'shanxisheng', '1', '112.515496,37.866566', 'S');INSERT INTO `th_areas` VALUES ('11', '青海省', '1', 'qinghaisheng', '1', '96.202544,35.499761', 'Q');INSERT INTO `th_areas` VALUES ('12', '新疆维吾尔自治区', '1', 'xinjiangweiwuerzizhiqu', '1', '85.614899,42.127001', 'X');INSERT INTO `th_areas` VALUES ('13', '西藏自治区', '1', 'xizangzizhiqu', '1', '89.137982,31.367315', 'X');INSERT INTO `th_areas` VALUES ('15', '湖北省', '1', 'hubeisheng', '1', '112.410562,31.209316', 'H');INSERT INTO `th_areas` VALUES ('16', '福建省', '1', 'fujiansheng', '1', '117.984943,26.050118', 'F');INSERT INTO `th_areas` VALUES ('17', '广西壮族自治区', '1', 'guangxizhuangzuzizhiqu', '1', '108.924274,23.552255', 'G');INSERT INTO `th_areas` VALUES ('18', '江苏省', '1', 'jiangsusheng', '1', '119.368489,33.013797', 'J');INSERT INTO `th_areas` VALUES ('19', '辽宁省', '1', 'liaoningsheng', '1', '122.753592,41.6216', 'L');INSERT INTO `th_areas` VALUES ('20', '宁夏回族自治区', '1', 'ningxiahuizuzizhiqu', '1', '106.155481,37.321323', 'N');INSERT INTO `th_areas` VALUES ('21', '海南省', '1', 'hainansheng', '1', '109.733755,19.180501', 'H');INSERT INTO `th_areas` VALUES ('22', '内蒙古自治区', '1', 'neimengguzizhiqu', '1', '114.415868,43.468238', 'N');INSERT INTO `th_areas` VALUES ('23', '安徽省', '1', 'anhuisheng', '1', '117.216005,31.859252', 'A');INSERT INTO `th_areas` VALUES ('24', '贵州省', '1', 'guizhousheng', '1', '106.734996,26.902826', 'G');INSERT INTO `th_areas` VALUES ('25', '河北省', '1', 'hebeisheng', '1', '115.661434,38.61384', 'H');INSERT INTO `th_areas` VALUES ('26', '湖南省', '1', 'hunansheng', '1', '111.720664,27.695864', 'H');INSERT INTO `th_areas` VALUES ('27', '陕西省', '1', 'shanxisheng', '1', '109.503789,35.860026', 'S');INSERT INTO `th_areas` VALUES ('28', '云南省', '1', 'yunnansheng', '1', '101.592952,24.864213', 'Y');INSERT INTO `th_areas` VALUES ('29', '浙江省', '1', 'zhejiangsheng', '1', '119.957202,29.159494', 'Z');INSERT INTO `th_areas` VALUES ('30', '河南省', '1', 'henansheng', '1', '113.486804,34.157184', 'H');INSERT INTO `th_areas` VALUES ('31', '江西省', '1', 'jiangxisheng', '1', '115.676082,27.757258', 'J');INSERT INTO `th_areas` VALUES ('32', '四川省', '1', 'sichuansheng', '1', '102.89916,30.367481', 'S');INSERT INTO `th_areas` VALUES ('33', '嘉峪关市', '6', 'jiayuguanshi', '2', '98.281635,39.802397', 'J');INSERT INTO `th_areas` VALUES ('34', '金昌市', '6', 'jinchangshi', '2', '102.208126,38.516072', 'J');INSERT INTO `th_areas` VALUES ('35', '白银市', '6', 'baiyinshi', '2', '104.171241,36.546682', 'B');INSERT INTO `th_areas` VALUES ('36', '兰州市', '6', 'lanzhoushi', '2', '103.823305,36.064226', 'L');INSERT INTO `th_areas` VALUES ('37', '酒泉市', '6', 'jiuquanshi', '2', '98.508415,39.741474', 'J');INSERT INTO `th_areas` VALUES ('38', '大兴安岭地区', '2', 'daxinganlingdiqu', '2', '124.196104,51.991789', 'D');INSERT INTO `th_areas` VALUES ('39', '黑河市', '2', 'heiheshi', '2', '127.50083,50.25069', 'H');INSERT INTO `th_areas` VALUES ('40', '伊春市', '2', 'yichunshi', '2', '128.910766,47.734685', 'Y');INSERT INTO `th_areas` VALUES ('41', '齐齐哈尔市', '2', 'qiqihaershi', '2', '123.987289,47.3477', 'Q');INSERT INTO `th_areas` VALUES ('42', '佳木斯市', '2', 'jiamusishi', '2', '130.284735,46.81378', 'J');INSERT INTO `th_areas` VALUES ('43', '鹤岗市', '2', 'hegangshi', '2', '130.292472,47.338666', 'H');INSERT INTO `th_areas` VALUES ('44', '绥化市', '2', 'suihuashi', '2', '126.989095,46.646064', 'S');INSERT INTO `th_areas` VALUES ('45', '双鸭山市', '2', 'shuangyashanshi', '2', '131.171402,46.655102', 'S');INSERT INTO `th_areas` VALUES ('46', '鸡西市', '2', 'jixishi', '2', '130.941767,45.32154', 'J');INSERT INTO `th_areas` VALUES ('47', '七台河市', '2', 'qitaiheshi', '2', '131.019048,45.775005', 'Q');INSERT INTO `th_areas` VALUES ('48', '哈尔滨市', '2', 'haerbinshi', '2', '126.657717,45.773225', 'H');INSERT INTO `th_areas` VALUES ('49', '牡丹江市', '2', 'mudanjiangshi', '2', '129.608035,44.588521', 'M');INSERT INTO `th_areas` VALUES ('50', '大庆市', '2', 'daqingshi', '2', '125.02184,46.596709', 'D');INSERT INTO `th_areas` VALUES ('51', '白城市', '9', 'baichengshi', '2', '122.840777,45.621086', 'B');INSERT INTO `th_areas` VALUES ('52', '松原市', '9', 'songyuanshi', '2', '124.832995,45.136049', 'S');INSERT INTO `th_areas` VALUES ('53', '长春市', '9', 'changchunshi', '2', '125.313642,43.898338', 'C');INSERT INTO `th_areas` VALUES ('54', '延边朝鲜族自治州', '9', 'yanbianchaoxianzuzizhizhou', '2', '129.485902,42.896414', 'Y');INSERT INTO `th_areas` VALUES ('55', '吉林市', '9', 'jilinshi', '2', '126.564544,43.871988', 'J');INSERT INTO `th_areas` VALUES ('56', '四平市', '9', 'sipingshi', '2', '124.391382,43.175525', 'S');INSERT INTO `th_areas` VALUES ('57', '白山市', '9', 'baishanshi', '2', '126.435798,41.945859', 'B');INSERT INTO `th_areas` VALUES ('58', '沈阳市', '19', 'shenyangshi', '2', '123.432791,41.808645', 'S');INSERT INTO `th_areas` VALUES ('59', '阜新市', '19', 'fuxinshi', '2', '121.660822,42.01925', 'F');INSERT INTO `th_areas` VALUES ('60', '铁岭市', '19', 'tielingshi', '2', '123.85485,42.299757', 'T');INSERT INTO `th_areas` VALUES ('61', '呼伦贝尔市', '22', 'hulunbeiershi', '2', '119.760822,49.201636', 'H');INSERT INTO `th_areas` VALUES ('62', '兴安盟', '22', 'xinganmeng', '2', '122.048167,46.083757', 'X');INSERT INTO `th_areas` VALUES ('63', '锡林郭勒盟', '22', 'xilinguolemeng', '2', '116.02734,43.939705', 'X');INSERT INTO `th_areas` VALUES ('64', '通辽市', '22', 'tongliaoshi', '2', '122.260363,43.633756', 'T');INSERT INTO `th_areas` VALUES ('65', '海西蒙古族藏族自治州', '11', 'haiximengguzuzangzuzizhizhou', '2', '97.342625,37.373799', 'H');INSERT INTO `th_areas` VALUES ('66', '西宁市', '11', 'xiningshi', '2', '101.767921,36.640739', 'X');INSERT INTO `th_areas` VALUES ('67', '海北藏族自治州', '11', 'haibeizangzuzizhizhou', '2', '100.879802,36.960654', 'H');INSERT INTO `th_areas` VALUES ('68', '海南藏族自治州', '11', 'hainanzangzuzizhizhou', '2', '100.624066,36.284364', 'H');INSERT INTO `th_areas` VALUES ('69', '海东地区', '11', 'haidongdiqu', '2', '102.085207,36.51761', 'H');INSERT INTO `th_areas` VALUES ('70', '黄南藏族自治州', '11', 'huangnanzangzuzizhizhou', '2', '102.0076,35.522852', 'H');INSERT INTO `th_areas` VALUES ('71', '玉树藏族自治州', '11', 'yushuzangzuzizhizhou', '2', '97.013316,33.00624', 'Y');INSERT INTO `th_areas` VALUES ('72', '果洛藏族自治州', '11', 'guoluozangzuzizhizhou', '2', '100.223723,34.480485', 'G');INSERT INTO `th_areas` VALUES ('73', '甘孜藏族自治州', '32', 'ganzizangzuzizhizhou', '2', '101.969232,30.055144', 'G');INSERT INTO `th_areas` VALUES ('74', '德阳市', '32', 'deyangshi', '2', '104.402398,31.13114', 'D');INSERT INTO `th_areas` VALUES ('75', '成都市', '32', 'chengdushi', '2', '104.067923,30.679943', 'C');INSERT INTO `th_areas` VALUES ('76', '雅安市', '32', 'yaanshi', '2', '103.009356,29.999716', 'Y');INSERT INTO `th_areas` VALUES ('77', '眉山市', '32', 'meishanshi', '2', '103.84143,30.061115', 'M');INSERT INTO `th_areas` VALUES ('78', '自贡市', '32', 'zigongshi', '2', '104.776071,29.359157', 'Z');INSERT INTO `th_areas` VALUES ('79', '乐山市', '32', 'leshanshi', '2', '103.760824,29.600958', 'L');INSERT INTO `th_areas` VALUES ('80', '凉山彝族自治州', '32', 'liangshanyizuzizhizhou', '2', '102.259591,27.892393', 'L');INSERT INTO `th_areas` VALUES ('81', '攀枝花市', '32', 'panzhihuashi', '2', '101.722423,26.587571', 'P');INSERT INTO `th_areas` VALUES ('82', '和田地区', '12', 'hetiandiqu', '2', '79.930239,37.116774', 'H');INSERT INTO `th_areas` VALUES ('83', '喀什地区', '12', 'kashidiqu', '2', '75.992973,39.470627', 'K');INSERT INTO `th_areas` VALUES ('84', '克孜勒苏柯尔克孜自治州', '12', 'kezilesukeerkezizizhizhou', '2', '76.137564,39.750346', 'K');INSERT INTO `th_areas` VALUES ('85', '阿克苏地区', '12', 'akesudiqu', '2', '80.269846,41.171731', 'A');INSERT INTO `th_areas` VALUES ('86', '巴音郭楞蒙古自治州', '12', 'bayinguolengmengguzizhizhou', '2', '86.121688,41.771362', 'B');INSERT INTO `th_areas` VALUES ('88', '博尔塔拉蒙古自治州', '12', 'boertalamengguzizhizhou', '2', '82.073064,44.912168', 'B');INSERT INTO `th_areas` VALUES ('89', '吐鲁番地区', '12', 'tulufandiqu', '2', '89.181595,42.96047', 'T');INSERT INTO `th_areas` VALUES ('90', '伊犁哈萨克自治州', '12', 'yilihasakezizhizhou', '2', '81.297854,43.922248', 'Y');INSERT INTO `th_areas` VALUES ('91', '哈密地区', '12', 'hamidiqu', '2', '93.528355,42.858596', 'H');INSERT INTO `th_areas` VALUES ('92', '乌鲁木齐市', '12', 'wulumuqishi', '2', '87.564988,43.84038', 'W');INSERT INTO `th_areas` VALUES ('93', '昌吉回族自治州', '12', 'changjihuizuzizhizhou', '2', '87.296038,44.007058', 'C');INSERT INTO `th_areas` VALUES ('94', '塔城地区', '12', 'tachengdiqu', '2', '82.974881,46.758684', 'T');INSERT INTO `th_areas` VALUES ('95', '克拉玛依市', '12', 'kelamayishi', '2', '84.88118,45.594331', 'K');INSERT INTO `th_areas` VALUES ('96', '阿勒泰地区', '12', 'aletaidiqu', '2', '88.137915,47.839744', 'A');INSERT INTO `th_areas` VALUES ('97', '山南地区', '13', 'shannandiqu', '2', '91.750644,29.229027', 'S');INSERT INTO `th_areas` VALUES ('98', '林芝地区', '13', 'linzhidiqu', '2', '94.349985,29.666941', 'L');INSERT INTO `th_areas` VALUES ('99', '昌都地区', '13', 'changdudiqu', '2', '97.185582,31.140576', 'C');INSERT INTO `th_areas` VALUES ('100', '拉萨市', '13', 'lasashi', '2', '91.111891,29.662557', 'L');INSERT INTO `th_areas` VALUES ('101', '那曲地区', '13', 'neiqudiqu', '2', '92.067018,31.48068', 'N');INSERT INTO `th_areas` VALUES ('102', '日喀则地区', '13', 'rikazediqu', '2', '88.891486,29.269023', 'R');INSERT INTO `th_areas` VALUES ('103', '阿里地区', '13', 'alidiqu', '2', '81.107669,30.404557', 'A');INSERT INTO `th_areas` VALUES ('104', '昆明市', '28', 'kunmingshi', '2', '102.714601,25.049153', 'K');INSERT INTO `th_areas` VALUES ('105', '楚雄彝族自治州', '28', 'chuxiongyizuzizhizhou', '2', '101.529382,25.066356', 'C');INSERT INTO `th_areas` VALUES ('106', '玉溪市', '28', 'yuxishi', '2', '102.545068,24.370447', 'Y');INSERT INTO `th_areas` VALUES ('107', '红河哈尼族彝族自治州', '28', 'honghehanizuyizuzizhizhou', '2', '103.384065,23.367718', 'H');INSERT INTO `th_areas` VALUES ('108', '普洱市', '28', 'puershi', '2', '100.980058,22.788778', 'P');INSERT INTO `th_areas` VALUES ('109', '西双版纳傣族自治州', '28', 'xishuangbannadaizuzizhizhou', '2', '100.803038,22.009433', 'X');INSERT INTO `th_areas` VALUES ('110', '临沧市', '28', 'lincangshi', '2', '100.092613,23.887806', 'L');INSERT INTO `th_areas` VALUES ('111', '大理白族自治州', '28', 'dalibaizuzizhizhou', '2', '100.223675,25.5969', 'D');INSERT INTO `th_areas` VALUES ('112', '保山市', '28', 'baoshanshi', '2', '99.177996,25.120489', 'B');INSERT INTO `th_areas` VALUES ('113', '怒江傈僳族自治州', '28', 'nujianglisuzuzizhizhou', '2', '98.859932,25.860677', 'N');INSERT INTO `th_areas` VALUES ('114', '丽江市', '28', 'lijiangshi', '2', '100.229628,26.875351', 'L');INSERT INTO `th_areas` VALUES ('115', '迪庆藏族自治州', '28', 'diqingzangzuzizhizhou', '2', '99.713682,27.831029', 'D');INSERT INTO `th_areas` VALUES ('116', '德宏傣族景颇族自治州', '28', 'dehongdaizujingpozuzizhizhou', '2', '98.589434,24.44124', 'D');INSERT INTO `th_areas` VALUES ('117', '张掖市', '6', 'zhangyeshi', '2', '100.459892,38.93932', 'Z');INSERT INTO `th_areas` VALUES ('118', '武威市', '6', 'wuweishi', '2', '102.640147,37.933172', 'W');INSERT INTO `th_areas` VALUES ('119', '东莞市', '7', 'dongguanshi', '2', '113.763434,23.043024', 'D');INSERT INTO `th_areas` VALUES ('120', '东沙群岛', '7', 'dongshaqundao', '2', '116.672483,20.853724', 'D');INSERT INTO `th_areas` VALUES ('121', '三亚市', '21', 'sanyashi', '2', '109.522771,18.257776', 'S');INSERT INTO `th_areas` VALUES ('122', '鄂州市', '15', 'ezhoushi', '2', '114.895594,30.384439', 'E');INSERT INTO `th_areas` VALUES ('123', '乌海市', '22', 'wuhaishi', '2', '106.831999,39.683177', 'W');INSERT INTO `th_areas` VALUES ('124', '莱芜市', '8', 'laiwushi', '2', '117.684667,36.233654', 'L');INSERT INTO `th_areas` VALUES ('125', '海口市', '21', 'haikoushi', '2', '110.330802,20.022071', 'H');INSERT INTO `th_areas` VALUES ('126', '蚌埠市', '23', 'bengbushi', '2', '117.35708,32.929499', 'B');INSERT INTO `th_areas` VALUES ('127', '合肥市', '23', 'hefeishi', '2', '117.282699,31.866942', 'H');INSERT INTO `th_areas` VALUES ('128', '阜阳市', '23', 'fuyangshi', '2', '115.820932,32.901211', 'F');INSERT INTO `th_areas` VALUES ('129', '芜湖市', '23', 'wuhushi', '2', '118.384108,31.36602', 'W');INSERT INTO `th_areas` VALUES ('130', '安庆市', '23', 'anqingshi', '2', '117.058739,30.537898', 'A');INSERT INTO `th_areas` VALUES ('131', '北京市', '10001', 'beijingshi', '2', '116.395645,39.929986', 'B');INSERT INTO `th_areas` VALUES ('132', '重庆市', '10002', 'chongqingshi', '2', '106.530635,29.544606', 'Z');INSERT INTO `th_areas` VALUES ('133', '南平市', '16', 'nanpingshi', '2', '118.181883,26.643626', 'N');INSERT INTO `th_areas` VALUES ('134', '泉州市', '16', 'quanzhoushi', '2', '118.600362,24.901652', 'Q');INSERT INTO `th_areas` VALUES ('135', '庆阳市', '6', 'qingyangshi', '2', '107.644227,35.726801', 'Q');INSERT INTO `th_areas` VALUES ('136', '定西市', '6', 'dingxishi', '2', '104.626638,35.586056', 'D');INSERT INTO `th_areas` VALUES ('137', '韶关市', '7', 'shaoguanshi', '2', '113.594461,24.80296', 'S');INSERT INTO `th_areas` VALUES ('138', '佛山市', '7', 'foshanshi', '2', '113.134026,23.035095', 'F');INSERT INTO `th_areas` VALUES ('139', '茂名市', '7', 'maomingshi', '2', '110.931245,21.668226', 'M');INSERT INTO `th_areas` VALUES ('140', '珠海市', '7', 'zhuhaishi', '2', '113.562447,22.256915', 'Z');INSERT INTO `th_areas` VALUES ('141', '梅州市', '7', 'meizhoushi', '2', '116.126403,24.304571', 'M');INSERT INTO `th_areas` VALUES ('142', '桂林市', '17', 'guilinshi', '2', '110.26092,25.262901', 'G');INSERT INTO `th_areas` VALUES ('143', '河池市', '17', 'hechishi', '2', '108.069948,24.699521', 'H');INSERT INTO `th_areas` VALUES ('144', '崇左市', '17', 'chongzuoshi', '2', '107.357322,22.415455', 'C');INSERT INTO `th_areas` VALUES ('145', '钦州市', '17', 'qinzhoushi', '2', '108.638798,21.97335', 'Q');INSERT INTO `th_areas` VALUES ('146', '贵阳市', '24', 'guiyangshi', '2', '106.709177,26.629907', 'G');INSERT INTO `th_areas` VALUES ('147', '六盘水市', '24', 'liupanshuishi', '2', '104.852087,26.591866', 'L');INSERT INTO `th_areas` VALUES ('148', '秦皇岛市', '25', 'qinhuangdaoshi', '2', '119.604368,39.945462', 'Q');INSERT INTO `th_areas` VALUES ('149', '沧州市', '25', 'cangzhoushi', '2', '116.863806,38.297615', 'C');INSERT INTO `th_areas` VALUES ('150', '石家庄市', '25', 'shijiazhuangshi', '2', '114.522082,38.048958', 'S');INSERT INTO `th_areas` VALUES ('151', '邯郸市', '25', 'handanshi', '2', '114.482694,36.609308', 'H');INSERT INTO `th_areas` VALUES ('152', '新乡市', '30', 'xinxiangshi', '2', '113.91269,35.307258', 'X');INSERT INTO `th_areas` VALUES ('153', '洛阳市', '30', 'luoyangshi', '2', '112.447525,34.657368', 'L');INSERT INTO `th_areas` VALUES ('154', '商丘市', '30', 'shangqiushi', '2', '115.641886,34.438589', 'S');INSERT INTO `th_areas` VALUES ('155', '许昌市', '30', 'xuchangshi', '2', '113.835312,34.02674', 'X');INSERT INTO `th_areas` VALUES ('156', '襄樊市', '15', 'xiangfanshi', '2', '112.143039,32.050321', 'X');INSERT INTO `th_areas` VALUES ('157', '荆州市', '15', 'jingzhoushi', '2', '112.241866,30.332591', 'J');INSERT INTO `th_areas` VALUES ('158', '长沙市', '26', 'changshashi', '2', '112.979353,28.213478', 'C');INSERT INTO `th_areas` VALUES ('159', '衡阳市', '26', 'hengyangshi', '2', '112.583819,26.898164', 'H');INSERT INTO `th_areas` VALUES ('160', '镇江市', '18', 'zhenjiangshi', '2', '119.455835,32.204409', 'Z');INSERT INTO `th_areas` VALUES ('161', '南通市', '18', 'nantongshi', '2', '120.873801,32.014665', 'N');INSERT INTO `th_areas` VALUES ('162', '淮安市', '18', 'huaianshi', '2', '119.030186,33.606513', 'H');INSERT INTO `th_areas` VALUES ('163', '南昌市', '31', 'nanchangshi', '2', '115.893528,28.689578', 'N');INSERT INTO `th_areas` VALUES ('164', '新余市', '31', 'xinyushi', '2', '114.947117,27.822322', 'X');INSERT INTO `th_areas` VALUES ('165', '通化市', '9', 'tonghuashi', '2', '125.94265,41.736397', 'T');INSERT INTO `th_areas` VALUES ('166', '锦州市', '19', 'jinzhoushi', '2', '121.147749,41.130879', 'J');INSERT INTO `th_areas` VALUES ('167', '大连市', '19', 'dalianshi', '2', '121.593478,38.94871', 'D');INSERT INTO `th_areas` VALUES ('168', '乌兰察布市', '22', 'wulanchabushi', '2', '113.112846,41.022363', 'W');INSERT INTO `th_areas` VALUES ('169', '巴彦淖尔市', '22', 'bayannaoershi', '2', '107.423807,40.76918', 'B');INSERT INTO `th_areas` VALUES ('170', '渭南市', '27', 'weinanshi', '2', '109.483933,34.502358', 'W');INSERT INTO `th_areas` VALUES ('171', '宝鸡市', '27', 'baojishi', '2', '107.170645,34.364081', 'B');INSERT INTO `th_areas` VALUES ('172', '枣庄市', '8', 'zaozhuangshi', '2', '117.279305,34.807883', 'Z');INSERT INTO `th_areas` VALUES ('173', '日照市', '8', 'rizhaoshi', '2', '119.50718,35.420225', 'R');INSERT INTO `th_areas` VALUES ('174', '东营市', '8', 'dongyingshi', '2', '118.583926,37.487121', 'D');INSERT INTO `th_areas` VALUES ('175', '威海市', '8', 'weihaishi', '2', '122.093958,37.528787', 'W');INSERT INTO `th_areas` VALUES ('176', '太原市', '10', 'taiyuanshi', '2', '112.550864,37.890277', 'T');INSERT INTO `th_areas` VALUES ('177', '文山壮族苗族自治州', '28', 'wenshanzhuangzumiaozuzizhizhou', '2', '104.089112,23.401781', 'W');INSERT INTO `th_areas` VALUES ('178', '温州市', '29', 'wenzhoushi', '2', '120.690635,28.002838', 'W');INSERT INTO `th_areas` VALUES ('179', '杭州市', '29', 'hangzhoushi', '2', '120.219375,30.259244', 'H');INSERT INTO `th_areas` VALUES ('180', '宁波市', '29', 'ningboshi', '2', '121.579006,29.885259', 'N');INSERT INTO `th_areas` VALUES ('181', '中卫市', '20', 'zhongweishi', '2', '105.196754,37.521124', 'Z');INSERT INTO `th_areas` VALUES ('182', '临夏回族自治州', '6', 'linxiahuizuzizhizhou', '2', '103.215249,35.598514', 'L');INSERT INTO `th_areas` VALUES ('183', '辽源市', '9', 'liaoyuanshi', '2', '125.133686,42.923303', 'L');INSERT INTO `th_areas` VALUES ('184', '抚顺市', '19', 'fushunshi', '2', '123.92982,41.877304', 'F');INSERT INTO `th_areas` VALUES ('185', '阿坝藏族羌族自治州', '32', 'abazangzuqiangzuzizhizhou', '2', '102.228565,31.905763', 'A');INSERT INTO `th_areas` VALUES ('186', '宜宾市', '32', 'yibinshi', '2', '104.633019,28.769675', 'Y');INSERT INTO `th_areas` VALUES ('187', '中山市', '7', 'zhongshanshi', '2', '113.42206,22.545178', 'Z');INSERT INTO `th_areas` VALUES ('188', '亳州市', '23', 'bozhoushi', '2', '115.787928,33.871211', 'B');INSERT INTO `th_areas` VALUES ('189', '滁州市', '23', 'chuzhoushi', '2', '118.32457,32.317351', 'C');INSERT INTO `th_areas` VALUES ('190', '宣城市', '23', 'xuanchengshi', '2', '118.752096,30.951642', 'X');INSERT INTO `th_areas` VALUES ('191', '廊坊市', '25', 'langfangshi', '2', '116.703602,39.518611', 'L');INSERT INTO `th_areas` VALUES ('192', '宁德市', '16', 'ningdeshi', '2', '119.542082,26.656527', 'N');INSERT INTO `th_areas` VALUES ('193', '龙岩市', '16', 'longyanshi', '2', '117.017997,25.078685', 'L');INSERT INTO `th_areas` VALUES ('194', '厦门市', '16', 'xiamenshi', '2', '118.103886,24.489231', 'X');INSERT INTO `th_areas` VALUES ('195', '莆田市', '16', 'putianshi', '2', '119.077731,25.44845', 'P');INSERT INTO `th_areas` VALUES ('196', '天水市', '6', 'tianshuishi', '2', '105.736932,34.584319', 'T');INSERT INTO `th_areas` VALUES ('197', '清远市', '7', 'qingyuanshi', '2', '113.040773,23.698469', 'Q');INSERT INTO `th_areas` VALUES ('198', '湛江市', '7', 'zhanjiangshi', '2', '110.365067,21.257463', 'Z');INSERT INTO `th_areas` VALUES ('199', '阳江市', '7', 'yangjiangshi', '2', '111.97701,21.871517', 'Y');INSERT INTO `th_areas` VALUES ('200', '河源市', '7', 'heyuanshi', '2', '114.713721,23.757251', 'H');INSERT INTO `th_areas` VALUES ('201', '潮州市', '7', 'chaozhoushi', '2', '116.630076,23.661812', 'C');INSERT INTO `th_areas` VALUES ('202', '来宾市', '17', 'laibinshi', '2', '109.231817,23.741166', 'L');INSERT INTO `th_areas` VALUES ('203', '百色市', '17', 'baiseshi', '2', '106.631821,23.901512', 'B');INSERT INTO `th_areas` VALUES ('204', '防城港市', '17', 'fangchenggangshi', '2', '108.351791,21.617398', 'F');INSERT INTO `th_areas` VALUES ('205', '铜仁地区', '24', 'tongrendiqu', '2', '109.196161,27.726271', 'T');INSERT INTO `th_areas` VALUES ('206', '毕节地区', '24', 'bijiediqu', '2', '105.300492,27.302612', 'B');INSERT INTO `th_areas` VALUES ('207', '承德市', '25', 'chengdeshi', '2', '117.933822,40.992521', 'C');INSERT INTO `th_areas` VALUES ('208', '衡水市', '25', 'hengshuishi', '2', '115.686229,37.746929', 'H');INSERT INTO `th_areas` VALUES ('209', '濮阳市', '30', 'puyangshi', '2', '115.026627,35.753298', 'P');INSERT INTO `th_areas` VALUES ('210', '开封市', '30', 'kaifengshi', '2', '114.351642,34.801854', 'K');INSERT INTO `th_areas` VALUES ('211', '焦作市', '30', 'jiaozuoshi', '2', '113.211836,35.234608', 'J');INSERT INTO `th_areas` VALUES ('212', '三门峡市', '30', 'sanmenxiashi', '2', '111.181262,34.78332', 'S');INSERT INTO `th_areas` VALUES ('213', '平顶山市', '30', 'pingdingshanshi', '2', '113.300849,33.745301', 'P');INSERT INTO `th_areas` VALUES ('214', '信阳市', '30', 'xinyangshi', '2', '114.085491,32.128582', 'X');INSERT INTO `th_areas` VALUES ('215', '鹤壁市', '30', 'hebishi', '2', '114.29777,35.755426', 'H');INSERT INTO `th_areas` VALUES ('216', '十堰市', '15', 'shiyanshi', '2', '110.801229,32.636994', 'S');INSERT INTO `th_areas` VALUES ('217', '荆门市', '15', 'jingmenshi', '2', '112.21733,31.042611', 'J');INSERT INTO `th_areas` VALUES ('218', '武汉市', '15', 'wuhanshi', '2', '114.3162,30.581084', 'W');INSERT INTO `th_areas` VALUES ('219', '常德市', '26', 'changdeshi', '2', '111.653718,29.012149', 'C');INSERT INTO `th_areas` VALUES ('220', '岳阳市', '26', 'yueyangshi', '2', '113.146196,29.378007', 'Y');INSERT INTO `th_areas` VALUES ('221', '娄底市', '26', 'loudishi', '2', '111.996396,27.741073', 'L');INSERT INTO `th_areas` VALUES ('222', '株洲市', '26', 'zhuzhoushi', '2', '113.131695,27.827433', 'Z');INSERT INTO `th_areas` VALUES ('223', '盐城市', '18', 'yanchengshi', '2', '120.148872,33.379862', 'Y');INSERT INTO `th_areas` VALUES ('224', '苏州市', '18', 'suzhoushi', '2', '120.619907,31.317987', 'S');INSERT INTO `th_areas` VALUES ('225', '景德镇市', '31', 'jingdezhenshi', '2', '117.186523,29.303563', 'J');INSERT INTO `th_areas` VALUES ('226', '抚州市', '31', 'fuzhoushi', '2', '116.360919,27.954545', 'F');INSERT INTO `th_areas` VALUES ('227', '本溪市', '19', 'benxishi', '2', '123.778062,41.325838', 'B');INSERT INTO `th_areas` VALUES ('228', '盘锦市', '19', 'panjinshi', '2', '122.073228,41.141248', 'P');INSERT INTO `th_areas` VALUES ('229', '包头市', '22', 'baotoushi', '2', '109.846239,40.647119', 'B');INSERT INTO `th_areas` VALUES ('230', '阿拉善盟', '22', 'alashanmeng', '2', '105.695683,38.843075', 'A');INSERT INTO `th_areas` VALUES ('231', '榆林市', '27', 'yulinshi', '2', '109.745926,38.279439', 'Y');INSERT INTO `th_areas` VALUES ('232', '铜川市', '27', 'tongchuanshi', '2', '108.968067,34.908368', 'T');INSERT INTO `th_areas` VALUES ('233', '西安市', '27', 'xianshi', '2', '108.953098,34.2778', 'X');INSERT INTO `th_areas` VALUES ('234', '临沂市', '8', 'linyishi', '2', '118.340768,35.072409', 'L');INSERT INTO `th_areas` VALUES ('235', '滨州市', '8', 'binzhoushi', '2', '117.968292,37.405314', 'B');INSERT INTO `th_areas` VALUES ('236', '青岛市', '8', 'qingdaoshi', '2', '120.384428,36.105215', 'Q');INSERT INTO `th_areas` VALUES ('237', '朔州市', '10', 'shuozhoushi', '2', '112.479928,39.337672', 'S');INSERT INTO `th_areas` VALUES ('238', '晋中市', '10', 'jinzhongshi', '2', '112.738514,37.693362', 'J');INSERT INTO `th_areas` VALUES ('239', '巴中市', '32', 'bazhongshi', '2', '106.757916,31.869189', 'B');INSERT INTO `th_areas` VALUES ('240', '绵阳市', '32', 'mianyangshi', '2', '104.705519,31.504701', 'M');INSERT INTO `th_areas` VALUES ('241', '广安市', '32', 'guanganshi', '2', '106.63572,30.463984', 'G');INSERT INTO `th_areas` VALUES ('242', '资阳市', '32', 'ziyangshi', '2', '104.63593,30.132191', 'Z');INSERT INTO `th_areas` VALUES ('243', '衢州市', '29', 'quzhoushi', '2', '118.875842,28.95691', 'Q');INSERT INTO `th_areas` VALUES ('244', '台州市', '29', 'taizhoushi', '2', '121.440613,28.668283', 'T');INSERT INTO `th_areas` VALUES ('245', '舟山市', '29', 'zhoushanshi', '2', '122.169872,30.03601', 'Z');INSERT INTO `th_areas` VALUES ('246', '固原市', '20', 'guyuanshi', '2', '106.285268,36.021523', 'G');INSERT INTO `th_areas` VALUES ('247', '甘南藏族自治州', '6', 'gannanzangzuzizhizhou', '2', '102.917442,34.992211', 'G');INSERT INTO `th_areas` VALUES ('248', '内江市', '32', 'neijiangshi', '2', '105.073056,29.599462', 'N');INSERT INTO `th_areas` VALUES ('249', '曲靖市', '28', 'qujingshi', '2', '103.782539,25.520758', 'Q');INSERT INTO `th_areas` VALUES ('250', '淮南市', '23', 'huainanshi', '2', '117.018639,32.642812', 'H');INSERT INTO `th_areas` VALUES ('251', '巢湖市', '23', 'chaohushi', '2', '117.88049,31.608733', 'C');INSERT INTO `th_areas` VALUES ('252', '黄山市', '23', 'huangshanshi', '2', '118.29357,29.734435', 'H');INSERT INTO `th_areas` VALUES ('253', '淮北市', '23', 'huaibeishi', '2', '116.791447,33.960023', 'H');INSERT INTO `th_areas` VALUES ('254', '三明市', '16', 'sanmingshi', '2', '117.642194,26.270835', 'S');INSERT INTO `th_areas` VALUES ('255', '漳州市', '16', 'zhangzhoushi', '2', '117.676205,24.517065', 'Z');INSERT INTO `th_areas` VALUES ('256', '陇南市', '6', 'longnanshi', '2', '104.934573,33.39448', 'L');INSERT INTO `th_areas` VALUES ('257', '广州市', '7', 'guangzhoushi', '2', '113.30765,23.120049', 'G');INSERT INTO `th_areas` VALUES ('258', '云浮市', '7', 'yunfushi', '2', '112.050946,22.937976', 'Y');INSERT INTO `th_areas` VALUES ('259', '揭阳市', '7', 'jieyangshi', '2', '116.379501,23.547999', 'J');INSERT INTO `th_areas` VALUES ('260', '贺州市', '17', 'hezhoushi', '2', '111.552594,24.411054', 'H');INSERT INTO `th_areas` VALUES ('261', '南宁市', '17', 'nanningshi', '2', '108.297234,22.806493', 'N');INSERT INTO `th_areas` VALUES ('262', '遵义市', '24', 'zunyishi', '2', '106.93126,27.699961', 'Z');INSERT INTO `th_areas` VALUES ('263', '安顺市', '24', 'anshunshi', '2', '105.92827,26.228595', 'A');INSERT INTO `th_areas` VALUES ('264', '张家口市', '25', 'zhangjiakoushi', '2', '114.893782,40.811188', 'Z');INSERT INTO `th_areas` VALUES ('265', '唐山市', '25', 'tangshanshi', '2', '118.183451,39.650531', 'T');INSERT INTO `th_areas` VALUES ('266', '邢台市', '25', 'xingtaishi', '2', '114.520487,37.069531', 'X');INSERT INTO `th_areas` VALUES ('267', '安阳市', '30', 'anyangshi', '2', '114.351807,36.110267', 'A');INSERT INTO `th_areas` VALUES ('268', '郑州市', '30', 'zhengzhoushi', '2', '113.649644,34.75661', 'Z');INSERT INTO `th_areas` VALUES ('269', '驻马店市', '30', 'zhumadianshi', '2', '114.049154,32.983158', 'Z');INSERT INTO `th_areas` VALUES ('270', '宜昌市', '15', 'yichangshi', '2', '111.310981,30.732758', 'Y');INSERT INTO `th_areas` VALUES ('271', '黄冈市', '15', 'huanggangshi', '2', '114.906618,30.446109', 'H');INSERT INTO `th_areas` VALUES ('272', '益阳市', '26', 'yiyangshi', '2', '112.366547,28.588088', 'Y');INSERT INTO `th_areas` VALUES ('273', '邵阳市', '26', 'shaoyangshi', '2', '111.461525,27.236811', 'S');INSERT INTO `th_areas` VALUES ('274', '湘西土家族苗族自治州', '26', 'xiangxitujiazumiaozuzizhizhou', '2', '109.745746,28.317951', 'X');INSERT INTO `th_areas` VALUES ('275', '郴州市', '26', 'chenzhoushi', '2', '113.037704,25.782264', 'C');INSERT INTO `th_areas` VALUES ('276', '泰州市', '18', 'taizhoushi', '2', '119.919606,32.476053', 'T');INSERT INTO `th_areas` VALUES ('277', '宿迁市', '18', 'suqianshi', '2', '118.296893,33.95205', 'S');INSERT INTO `th_areas` VALUES ('278', '宜春市', '31', 'yichunshi', '2', '114.400039,27.81113', 'Y');INSERT INTO `th_areas` VALUES ('279', '鹰潭市', '31', 'yingtanshi', '2', '117.03545,28.24131', 'Y');INSERT INTO `th_areas` VALUES ('280', '朝阳市', '19', 'chaoyangshi', '2', '120.446163,41.571828', 'C');INSERT INTO `th_areas` VALUES ('281', '营口市', '19', 'yingkoushi', '2', '122.233391,40.668651', 'Y');INSERT INTO `th_areas` VALUES ('282', '丹东市', '19', 'dandongshi', '2', '124.338543,40.129023', 'D');INSERT INTO `th_areas` VALUES ('283', '鄂尔多斯市', '22', 'eerduosishi', '2', '109.993706,39.81649', 'E');INSERT INTO `th_areas` VALUES ('284', '延安市', '27', 'yananshi', '2', '109.50051,36.60332', 'Y');INSERT INTO `th_areas` VALUES ('285', '商洛市', '27', 'shangluoshi', '2', '109.934208,33.873907', 'S');INSERT INTO `th_areas` VALUES ('286', '济宁市', '8', 'jiningshi', '2', '116.600798,35.402122', 'J');INSERT INTO `th_areas` VALUES ('287', '潍坊市', '8', 'weifangshi', '2', '119.142634,36.716115', 'W');INSERT INTO `th_areas` VALUES ('288', '济南市', '8', 'jinanshi', '2', '117.024967,36.682785', 'J');INSERT INTO `th_areas` VALUES ('289', '上海市', '10004', 'shanghaishi', '2', '121.487899,31.249162', 'S');INSERT INTO `th_areas` VALUES ('290', '晋城市', '10', 'jinchengshi', '2', '112.867333,35.499834', 'J');INSERT INTO `th_areas` VALUES ('291', '南充市', '32', 'nanchongshi', '2', '106.105554,30.800965', 'N');INSERT INTO `th_areas` VALUES ('292', '丽水市', '29', 'lishuishi', '2', '119.929576,28.4563', 'L');INSERT INTO `th_areas` VALUES ('293', '绍兴市', '29', 'shaoxingshi', '2', '120.592467,30.002365', 'S');INSERT INTO `th_areas` VALUES ('294', '湖州市', '29', 'huzhoushi', '2', '120.137243,30.877925', 'H');INSERT INTO `th_areas` VALUES ('295', '北海市', '17', 'beihaishi', '2', '109.122628,21.472718', 'B');INSERT INTO `th_areas` VALUES ('297', '赤峰市', '22', 'chifengshi', '2', '118.930761,42.297112', 'C');INSERT INTO `th_areas` VALUES ('298', '六安市', '23', 'liuanshi', '2', '116.505253,31.755558', 'L');INSERT INTO `th_areas` VALUES ('299', '池州市', '23', 'chizhoushi', '2', '117.494477,30.660019', 'C');INSERT INTO `th_areas` VALUES ('300', '福州市', '16', 'fuzhoushi', '2', '119.330221,26.047125', 'F');INSERT INTO `th_areas` VALUES ('301', '惠州市', '7', 'huizhoushi', '2', '114.410658,23.11354', 'H');INSERT INTO `th_areas` VALUES ('302', '江门市', '7', 'jiangmenshi', '2', '113.078125,22.575117', 'J');INSERT INTO `th_areas` VALUES ('303', '汕头市', '7', 'shantoushi', '2', '116.72865,23.383908', 'S');INSERT INTO `th_areas` VALUES ('304', '梧州市', '17', 'wuzhoushi', '2', '111.305472,23.485395', 'W');INSERT INTO `th_areas` VALUES ('305', '柳州市', '17', 'liuzhoushi', '2', '109.422402,24.329053', 'L');INSERT INTO `th_areas` VALUES ('306', '黔南布依族苗族自治州', '24', 'qiannanbuyizumiaozuzizhizhou', '2', '107.523205,26.264536', 'Q');INSERT INTO `th_areas` VALUES ('307', '保定市', '25', 'baodingshi', '2', '115.49481,38.886565', 'B');INSERT INTO `th_areas` VALUES ('308', '周口市', '30', 'zhoukoushi', '2', '114.654102,33.623741', 'Z');INSERT INTO `th_areas` VALUES ('309', '南阳市', '30', 'nanyangshi', '2', '112.542842,33.01142', 'N');INSERT INTO `th_areas` VALUES ('310', '孝感市', '15', 'xiaoganshi', '2', '113.935734,30.927955', 'X');INSERT INTO `th_areas` VALUES ('311', '黄石市', '15', 'huangshishi', '2', '115.050683,30.216127', 'H');INSERT INTO `th_areas` VALUES ('312', '张家界市', '26', 'zhangjiajieshi', '2', '110.48162,29.124889', 'Z');INSERT INTO `th_areas` VALUES ('313', '湘潭市', '26', 'xiangtanshi', '2', '112.935556,27.835095', 'X');INSERT INTO `th_areas` VALUES ('314', '永州市', '26', 'yongzhoushi', '2', '111.614648,26.435972', 'Y');INSERT INTO `th_areas` VALUES ('315', '南京市', '18', 'nanjingshi', '2', '118.778074,32.057236', 'N');INSERT INTO `th_areas` VALUES ('316', '徐州市', '18', 'xuzhoushi', '2', '117.188107,34.271553', 'X');INSERT INTO `th_areas` VALUES ('317', '无锡市', '18', 'wuxishi', '2', '120.305456,31.570037', 'W');INSERT INTO `th_areas` VALUES ('318', '吉安市', '31', 'jianshi', '2', '114.992039,27.113848', 'J');INSERT INTO `th_areas` VALUES ('319', '葫芦岛市', '19', 'huludaoshi', '2', '120.860758,40.74303', 'H');INSERT INTO `th_areas` VALUES ('320', '鞍山市', '19', 'anshanshi', '2', '123.007763,41.118744', 'A');INSERT INTO `th_areas` VALUES ('321', '呼和浩特市', '22', 'huhehaoteshi', '2', '111.660351,40.828319', 'H');INSERT INTO `th_areas` VALUES ('322', '吴忠市', '20', 'wuzhongshi', '2', '106.208254,37.993561', 'W');INSERT INTO `th_areas` VALUES ('323', '咸阳市', '27', 'xianyangshi', '2', '108.707509,34.345373', 'X');INSERT INTO `th_areas` VALUES ('324', '安康市', '27', 'ankangshi', '2', '109.038045,32.70437', 'A');INSERT INTO `th_areas` VALUES ('325', '泰安市', '8', 'taianshi', '2', '117.089415,36.188078', 'T');INSERT INTO `th_areas` VALUES ('326', '烟台市', '8', 'yantaishi', '2', '121.309555,37.536562', 'Y');INSERT INTO `th_areas` VALUES ('327', '吕梁市', '10', 'lvliangshi', '2', '111.143157,37.527316', 'L');INSERT INTO `th_areas` VALUES ('328', '运城市', '10', 'yunchengshi', '2', '111.006854,35.038859', 'Y');INSERT INTO `th_areas` VALUES ('329', '广元市', '32', 'guangyuanshi', '2', '105.819687,32.44104', 'G');INSERT INTO `th_areas` VALUES ('330', '遂宁市', '32', 'suiningshi', '2', '105.564888,30.557491', 'S');INSERT INTO `th_areas` VALUES ('331', '泸州市', '32', 'luzhoushi', '2', '105.44397,28.89593', 'L');INSERT INTO `th_areas` VALUES ('332', '天津市', '10003', 'tianjinshi', '2', '117.210813,39.14393', 'T');INSERT INTO `th_areas` VALUES ('333', '金华市', '29', 'jinhuashi', '2', '119.652576,29.102899', 'J');INSERT INTO `th_areas` VALUES ('334', '嘉兴市', '29', 'jiaxingshi', '2', '120.760428,30.773992', 'J');INSERT INTO `th_areas` VALUES ('335', '石嘴山市', '20', 'shizuishanshi', '2', '106.379337,39.020223', 'S');INSERT INTO `th_areas` VALUES ('336', '昭通市', '28', 'zhaotongshi', '2', '103.725021,27.340633', 'Z');INSERT INTO `th_areas` VALUES ('337', '铜陵市', '23', 'tonglingshi', '2', '117.819429,30.94093', 'T');INSERT INTO `th_areas` VALUES ('338', '肇庆市', '7', 'zhaoqingshi', '2', '112.479653,23.078663', 'Z');INSERT INTO `th_areas` VALUES ('339', '汕尾市', '7', 'shanweishi', '2', '115.372924,22.778731', 'S');INSERT INTO `th_areas` VALUES ('340', '深圳市', '7', 'shenzhenshi', '2', '114.025974,22.546054', 'S');INSERT INTO `th_areas` VALUES ('341', '贵港市', '17', 'guigangshi', '2', '109.613708,23.103373', 'G');INSERT INTO `th_areas` VALUES ('342', '黔东南苗族侗族自治州', '24', 'qiandongnanmiaozudongzuzizhizhou', '2', '107.985353,26.583992', 'Q');INSERT INTO `th_areas` VALUES ('343', '黔西南布依族苗族自治州', '24', 'qianxinanbuyizumiaozuzizhizhou', '2', '104.900558,25.095148', 'Q');INSERT INTO `th_areas` VALUES ('344', '漯河市', '30', 'luoheshi', '2', '114.046061,33.576279', 'L');INSERT INTO `th_areas` VALUES ('346', '扬州市', '18', 'yangzhoushi', '2', '119.427778,32.408505', 'Y');INSERT INTO `th_areas` VALUES ('347', '连云港市', '18', 'lianyungangshi', '2', '119.173872,34.601549', 'L');INSERT INTO `th_areas` VALUES ('348', '常州市', '18', 'changzhoushi', '2', '119.981861,31.771397', 'C');INSERT INTO `th_areas` VALUES ('349', '九江市', '31', 'jiujiangshi', '2', '115.999848,29.71964', 'J');INSERT INTO `th_areas` VALUES ('350', '萍乡市', '31', 'pingxiangshi', '2', '113.859917,27.639544', 'P');INSERT INTO `th_areas` VALUES ('351', '辽阳市', '19', 'liaoyangshi', '2', '123.172451,41.273339', 'L');INSERT INTO `th_areas` VALUES ('352', '汉中市', '27', 'hanzhongshi', '2', '107.045478,33.081569', 'H');INSERT INTO `th_areas` VALUES ('353', '菏泽市', '8', 'hezeshi', '2', '115.46336,35.26244', 'H');INSERT INTO `th_areas` VALUES ('354', '淄博市', '8', 'ziboshi', '2', '118.059134,36.804685', 'Z');INSERT INTO `th_areas` VALUES ('355', '大同市', '10', 'datongshi', '2', '113.290509,40.113744', 'D');INSERT INTO `th_areas` VALUES ('356', '长治市', '10', 'zhangzhishi', '2', '113.120292,36.201664', 'C');INSERT INTO `th_areas` VALUES ('357', '阳泉市', '10', 'yangquanshi', '2', '113.569238,37.869529', 'Y');INSERT INTO `th_areas` VALUES ('358', '马鞍山市', '23', 'maanshanshi', '2', '118.515882,31.688528', 'M');INSERT INTO `th_areas` VALUES ('359', '平凉市', '6', 'pingliangshi', '2', '106.688911,35.55011', 'P');INSERT INTO `th_areas` VALUES ('360', '银川市', '20', 'yinchuanshi', '2', '106.206479,38.502621', 'Y');INSERT INTO `th_areas` VALUES ('361', '玉林市', '17', 'yulinshi', '2', '110.151676,22.643974', 'Y');INSERT INTO `th_areas` VALUES ('362', '咸宁市', '15', 'xianningshi', '2', '114.300061,29.880657', 'X');INSERT INTO `th_areas` VALUES ('363', '怀化市', '26', 'huaihuashi', '2', '109.986959,27.557483', 'H');INSERT INTO `th_areas` VALUES ('364', '上饶市', '31', 'shangraoshi', '2', '117.955464,28.457623', 'S');INSERT INTO `th_areas` VALUES ('365', '赣州市', '31', 'ganzhoushi', '2', '114.935909,25.845296', 'G');INSERT INTO `th_areas` VALUES ('366', '聊城市', '8', 'liaochengshi', '2', '115.986869,36.455829', 'L');INSERT INTO `th_areas` VALUES ('367', '忻州市', '10', 'xinzhoushi', '2', '112.727939,38.461031', 'X');INSERT INTO `th_areas` VALUES ('368', '临汾市', '10', 'linfenshi', '2', '111.538788,36.099745', 'L');INSERT INTO `th_areas` VALUES ('369', '达州市', '32', 'dazhoushi', '2', '107.494973,31.214199', 'D');INSERT INTO `th_areas` VALUES ('370', '宿州市', '23', 'suzhoushi', '2', '116.988692,33.636772', 'S');INSERT INTO `th_areas` VALUES ('371', '随州市', '15', 'suizhoushi', '2', '113.379358,31.717858', 'S');INSERT INTO `th_areas` VALUES ('372', '德州市', '8', 'dezhoushi', '2', '116.328161,37.460826', 'D');INSERT INTO `th_areas` VALUES ('373', '恩施土家族苗族自治州', '15', 'enshitujiazumiaozuzizhizhou', '2', '109.517433,30.308978', 'E');INSERT INTO `th_areas` VALUES ('374', '金川区', '34', 'jinchuanqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('376', '榆中县', '36', 'yuzhongxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('377', '皋兰县', '36', 'gaolanxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('378', '渭源县', '136', 'weiyuanxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('379', '临洮县', '136', 'lintaoxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('380', '广河县', '182', 'guanghexian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('381', '东乡族自治县', '182', 'dongxiangzuzizhixian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('382', '康乐县', '182', 'kanglexian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('383', '和政县', '182', 'hezhengxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('384', '漳县', '136', 'zhangxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('385', '临潭县', '247', 'lintanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('386', '合作市', '247', 'hezuoshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('387', '岷县', '136', 'minxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('388', '宕昌县', '256', 'dangchangxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('389', '市辖区', '33', 'shixiaqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('390', '肃州区', '37', 'suzhouqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('391', '临夏市', '182', 'linxiashi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('392', '赫章县', '206', 'hezhangxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('394', '普安县', '343', 'puanxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('395', '盘县', '147', 'panxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('396', '围场满族蒙古族自治县', '207', 'weichangmanzumengguzuzizhixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('397', '康保县', '264', 'kangbaoxian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('398', '隆化县', '207', 'longhuaxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('399', '沽源县', '264', 'guyuanxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('400', '塔河县', '38', 'tahexian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('401', '漠河县', '38', 'mohexian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('402', '呼玛县', '38', 'humaxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('403', '爱辉区', '39', 'aihuiqu', '3', '', 'A');INSERT INTO `th_areas` VALUES ('404', '嫩江县', '39', 'nenjiangxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('405', '逊克县', '39', 'xunkexian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('406', '孙吴县', '39', 'sunwuxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('407', '嘉荫县', '40', 'jiayinxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('409', '五大连池市', '39', 'wudalianchishi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('410', '讷河市', '41', 'neheshi', '3', '', 'N');INSERT INTO `th_areas` VALUES ('411', '北安市', '39', 'beianshi', '3', '', 'B');INSERT INTO `th_areas` VALUES ('412', '克东县', '41', 'kedongxian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('413', '克山县', '41', 'keshanxian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('414', '依安县', '41', 'yianxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('415', '富裕县', '41', 'fuyuxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('416', '同江市', '42', 'tongjiangshi', '3', '', 'T');INSERT INTO `th_areas` VALUES ('417', '萝北县', '43', 'luobeixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('419', '铁力市', '40', 'tielishi', '3', '', 'T');INSERT INTO `th_areas` VALUES ('420', '庆安县', '44', 'qinganxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('421', '绥棱县', '44', 'suilengxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('422', '海伦市', '44', 'hailunshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('423', '拜泉县', '41', 'baiquanxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('424', '明水县', '44', 'mingshuixian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('425', '饶河县', '45', 'raohexian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('426', '富锦市', '42', 'fujinshi', '3', '', 'F');INSERT INTO `th_areas` VALUES ('427', '绥滨县', '43', 'suibinxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('428', '桦川县', '42', 'huachuanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('429', '汤原县', '42', 'tangyuanxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('430', '市辖区', '42', 'shixiaqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('431', '北林区', '44', 'beilinqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('432', '龙江县', '41', 'longjiangxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('433', '虎林市', '46', 'hulinshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('434', '宝清县', '45', 'baoqingxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('436', '勃利县', '47', 'bolixian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('437', '桦南县', '42', 'huananxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('438', '依兰县', '48', 'yilanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('439', '通河县', '48', 'tonghexian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('440', '木兰县', '48', 'mulanxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('441', '巴彦县', '48', 'bayanxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('442', '市辖区', '48', 'shixiaqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('443', '望奎县', '44', 'wangkuixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('444', '兰西县', '44', 'lanxixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('445', '青冈县', '44', 'qinggangxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('446', '安达市', '44', 'andashi', '3', '', 'A');INSERT INTO `th_areas` VALUES ('447', '密山市', '46', 'mishanshi', '3', '', 'M');INSERT INTO `th_areas` VALUES ('448', '鸡东县', '46', 'jidongxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('450', '方正县', '48', 'fangzhengxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('451', '宾县', '48', 'binxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('452', '延寿县', '48', 'yanshouxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('454', '抚远县', '42', 'fuyuanxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('455', '集贤县', '45', 'jixianxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('457', '甘南县', '41', 'gannanxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('458', '友谊县', '45', 'youyixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('459', '林甸县', '50', 'lindianxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('460', '林口县', '49', 'linkouxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('462', '碾子山区', '41', 'nianzishanqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('463', '绥芬河市', '49', 'suifenheshi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('464', '镇赉县', '51', 'zhenlaixian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('465', '宁江区', '52', 'ningjiangqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('466', '大安市', '51', 'daanshi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('467', '洮南市', '51', 'taonanshi', '3', '', 'T');INSERT INTO `th_areas` VALUES ('468', '洮北区', '51', 'taobeiqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('469', '榆树市', '53', 'yushushi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('470', '扶余县', '52', 'fuyuxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('471', '德惠市', '53', 'dehuishi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('472', '农安县', '53', 'nonganxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('473', '前郭尔罗斯蒙古族自治县', '52', 'qianguoerluosimengguzuzizhixian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('474', '乾安县', '52', 'qiananxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('475', '通榆县', '51', 'tongyuxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('476', '敦化市', '54', 'dunhuashi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('477', '舒兰市', '55', 'shulanshi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('478', '蛟河市', '55', 'jiaoheshi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('479', '九台市', '53', 'jiutaishi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('481', '宽城区', '53', 'kuanchengqu', '3', '', 'K');INSERT INTO `th_areas` VALUES ('482', '绿园区', '53', 'lvyuanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('483', '长岭县', '52', 'changlingxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('484', '公主岭市', '56', 'gongzhulingshi', '3', '', 'G');INSERT INTO `th_areas` VALUES ('485', '双辽市', '56', 'shuangliaoshi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('486', '汪清县', '54', 'wangqingxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('487', '桦甸市', '55', 'huadianshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('488', '永吉县', '55', 'yongjixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('489', '磐石市', '55', 'panshishi', '3', '', 'P');INSERT INTO `th_areas` VALUES ('490', '双阳区', '53', 'shuangyangqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('491', '伊通满族自治县', '56', 'yitongmanzuzizhixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('492', '朝阳区', '53', 'chaoyangqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('493', '梨树县', '56', 'lishuxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('494', '图们市', '54', 'tumenshi', '3', '', 'T');INSERT INTO `th_areas` VALUES ('495', '延吉市', '54', 'yanjishi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('496', '龙井市', '54', 'longjingshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('497', '和龙市', '54', 'helongshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('498', '安图县', '54', 'antuxian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('499', '靖宇县', '57', 'jingyuxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('502', '东丰县', '183', 'dongfengxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('503', '东辽县', '183', 'dongliaoxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('504', '抚松县', '57', 'fusongxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('505', '临江市', '57', 'linjiangshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('508', '长白朝鲜族自治县', '57', 'changbaichaoxianzuzizhixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('509', '珲春市', '54', 'hunchunshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('511', '二道区', '53', 'erdaoqu', '3', '', 'E');INSERT INTO `th_areas` VALUES ('512', '南关区', '53', 'nanguanqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('514', '康平县', '58', 'kangpingxian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('515', '彰武县', '59', 'zhangwuxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('516', '铁岭县', '60', 'tielingxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('517', '沈北新区', '58', 'shenbeixinqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('519', '新民市', '58', 'xinminshi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('520', '建平县', '280', 'jianpingxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('521', '义县', '166', 'yixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('522', '阜新蒙古族自治县', '59', 'fuxinmengguzuzizhixian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('523', '黑山县', '166', 'heishanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('525', '于洪区', '58', 'yuhongqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('526', '清河区', '60', 'qinghequ', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('527', '法库县', '58', 'fakuxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('529', '清河门区', '59', 'qinghemenqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('531', '弓长岭区', '351', 'gongzhanglingqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('532', '东陵区', '58', 'donglingqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('533', '铁西区', '58', 'tiexiqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('534', '皇姑区', '58', 'huangguqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('535', '和平区', '58', 'hepingqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('536', '沈河区', '58', 'shenhequ', '3', '', 'S');INSERT INTO `th_areas` VALUES ('537', '调兵山市', '60', 'diaobingshanshi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('539', '牙克石市', '61', 'yakeshishi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('540', '陈巴尔虎旗', '61', 'chenbaerhuqi', '3', '', 'C');INSERT INTO `th_areas` VALUES ('541', '新巴尔虎左旗', '61', 'xinbaerhuzuoqi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('542', '满洲里市', '61', 'manzhoulishi', '3', '', 'M');INSERT INTO `th_areas` VALUES ('543', '新巴尔虎右旗', '61', 'xinbaerhuyouqi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('544', '海拉尔区', '61', 'hailaerqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('545', '鄂温克族自治旗', '61', 'ewenkezuzizhiqi', '3', '', 'E');INSERT INTO `th_areas` VALUES ('546', '阿尔山市', '62', 'aershanshi', '3', '', 'A');INSERT INTO `th_areas` VALUES ('547', '东乌珠穆沁旗', '63', 'dongwuzhumuqinqi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('548', '扎鲁特旗', '64', 'zhaluteqi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('549', '西乌珠穆沁旗', '63', 'xiwuzhumuqinqi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('550', '锡林浩特市', '63', 'xilinhaoteshi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('551', '阿巴嘎旗', '63', 'abagaqi', '3', '', 'A');INSERT INTO `th_areas` VALUES ('552', '苏尼特左旗', '63', 'sunitezuoqi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('553', '阿鲁科尔沁旗', '297', 'alukeerqinqi', '3', '', 'A');INSERT INTO `th_areas` VALUES ('554', '巴林左旗', '297', 'balinzuoqi', '3', '', 'B');INSERT INTO `th_areas` VALUES ('555', '科尔沁区', '64', 'keerqinqu', '3', '', 'K');INSERT INTO `th_areas` VALUES ('556', '巴林右旗', '297', 'balinyouqi', '3', '', 'B');INSERT INTO `th_areas` VALUES ('557', '林西县', '297', 'linxixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('558', '苏尼特右旗', '63', 'suniteyouqi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('559', '二连浩特市', '63', 'erlianhaoteshi', '3', '', 'E');INSERT INTO `th_areas` VALUES ('560', '四子王旗', '168', 'siziwangqi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('561', '达尔罕茂明安联合旗', '229', 'daerhanmaominganlianheqi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('562', '乌拉特中旗', '169', 'wulatezhongqi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('563', '察哈尔右翼后旗', '168', 'chahaeryouyihouqi', '3', '', 'C');INSERT INTO `th_areas` VALUES ('564', '阿拉善右旗', '230', 'alashanyouqi', '3', '', 'A');INSERT INTO `th_areas` VALUES ('565', '察哈尔右翼中旗', '168', 'chahaeryouyizhongqi', '3', '', 'C');INSERT INTO `th_areas` VALUES ('566', '白云鄂博矿区', '229', 'baiyunebokuangqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('567', '开鲁县', '64', 'kailuxian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('568', '霍林郭勒市', '64', 'huolinguoleshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('569', '天峻县', '65', 'tianjunxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('570', '大通回族土族自治县', '66', 'datonghuizutuzuzizhixian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('571', '海晏县', '67', 'haiyanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('572', '刚察县', '67', 'gangchaxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('573', '湟中县', '66', 'huangzhongxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('574', '共和县', '68', 'gonghexian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('575', '乌兰县', '65', 'wulanxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('576', '都兰县', '65', 'doulanxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('577', '化隆回族自治县', '69', 'hualonghuizuzizhixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('578', '平安县', '69', 'pinganxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('579', '尖扎县', '70', 'jianzhaxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('580', '贵德县', '68', 'guidexian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('581', '贵南县', '68', 'guinanxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('582', '同德县', '68', 'tongdexian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('583', '兴海县', '68', 'xinghaixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('584', '曲麻莱县', '71', 'qumalaixian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('585', '玛沁县', '72', 'maqinxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('586', '玛多县', '72', 'maduoxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('587', '甘德县', '72', 'gandexian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('589', '湟源县', '66', 'huangyuanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('590', '若尔盖县', '185', 'ruoergaixian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('591', '九寨沟县', '185', 'jiuzhaigouxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('592', '红原县', '185', 'hongyuanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('593', '色达县', '73', 'sedaxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('594', '平武县', '240', 'pingwuxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('595', '松潘县', '185', 'songpanxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('596', '黑水县', '185', 'heishuixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('597', '马尔康县', '185', 'maerkangxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('598', '壤塘县', '185', 'rangtangxian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('599', '甘孜县', '73', 'ganzixian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('601', '北川羌族自治县', '240', 'beichuanqiangzuzizhixian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('602', '安县', '240', 'anxian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('603', '茂县', '185', 'maoxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('604', '绵竹市', '74', 'mianzhushi', '3', '', 'M');INSERT INTO `th_areas` VALUES ('605', '理县', '185', 'lixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('606', '小金县', '185', 'xiaojinxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('607', '金川县', '185', 'jinchuanxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('608', '道孚县', '73', 'daofuxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('609', '炉霍县', '73', 'luhuoxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('610', '新龙县', '73', 'xinlongxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('611', '三台县', '240', 'santaixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('612', '中江县', '74', 'zhongjiangxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('613', '罗江县', '74', 'luojiangxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('614', '旌阳区', '74', 'jingyangqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('615', '广汉市', '74', 'guanghanshi', '3', '', 'G');INSERT INTO `th_areas` VALUES ('616', '新都区', '75', 'xindouqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('617', '彭州市', '75', 'pengzhoushi', '3', '', 'P');INSERT INTO `th_areas` VALUES ('618', '都江堰市', '75', 'doujiangyanshi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('619', '汶川县', '185', 'wenchuanxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('620', '崇州市', '75', 'chongzhoushi', '3', '', 'C');INSERT INTO `th_areas` VALUES ('621', '芦山县', '76', 'lushanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('622', '大邑县', '75', 'dayixian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('623', '康定县', '73', 'kangdingxian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('624', '丹巴县', '73', 'danbaxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('625', '乐至县', '242', 'lezhixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('626', '雁江区', '242', 'yanjiangqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('627', '金堂县', '75', 'jintangxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('628', '简阳市', '242', 'jianyangshi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('629', '仁寿县', '77', 'renshouxian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('630', '双流县', '75', 'shuangliuxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('631', '青羊区', '75', 'qingyangqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('632', '武侯区', '75', 'wuhouqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('633', '温江区', '75', 'wenjiangqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('634', '新津县', '75', 'xinjinxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('635', '邛崃市', '75', 'qionglaishi', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('636', '蒲江县', '75', 'pujiangxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('637', '名山县', '76', 'mingshanxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('638', '雨城区', '76', 'yuchengqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('639', '宝兴县', '76', 'baoxingxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('640', '天全县', '76', 'tianquanxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('641', '泸定县', '73', 'ludingxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('642', '雅江县', '73', 'yajiangxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('643', '理塘县', '73', 'litangxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('644', '白玉县', '73', 'baiyuxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('645', '富顺县', '78', 'fushunxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('647', '资中县', '248', 'zizhongxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('648', '威远县', '248', 'weiyuanxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('649', '荣县', '78', 'rongxian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('650', '井研县', '79', 'jingyanxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('651', '犍为县', '79', 'jianweixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('652', '青神县', '77', 'qingshenxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('653', '东坡区', '77', 'dongpoqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('655', '夹江县', '79', 'jiajiangxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('656', '峨眉山市', '79', 'emeishanshi', '3', '', 'E');INSERT INTO `th_areas` VALUES ('657', '洪雅县', '77', 'hongyaxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('658', '金口河区', '79', 'jinkouhequ', '3', '', 'J');INSERT INTO `th_areas` VALUES ('659', '荥经县', '76', 'yingjingxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('660', '汉源县', '76', 'hanyuanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('661', '石棉县', '76', 'shimianxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('662', '九龙县', '73', 'jiulongxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('663', '巴塘县', '73', 'batangxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('664', '江安县', '186', 'jianganxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('665', '长宁县', '186', 'changningxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('666', '翠屏区', '186', 'cuipingqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('667', '宜宾县', '186', 'yibinxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('668', '屏山县', '186', 'pingshanxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('669', '沐川县', '79', 'muchuanxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('670', '马边彝族自治县', '79', 'mabianyizuzizhixian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('671', '美姑县', '80', 'meiguxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('672', '峨边彝族自治县', '79', 'ebianyizuzizhixian', '3', '', 'E');INSERT INTO `th_areas` VALUES ('673', '甘洛县', '80', 'ganluoxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('674', '越西县', '80', 'yuexixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('675', '冕宁县', '80', 'mianningxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('676', '木里藏族自治县', '80', 'mulizangzuzizhixian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('677', '兴文县', '186', 'xingwenxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('678', '珙县', '186', 'gongxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('679', '高县', '186', 'gaoxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('680', '筠连县', '186', 'yunlianxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('681', '雷波县', '80', 'leiboxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('682', '昭觉县', '80', 'zhaojuexian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('683', '喜德县', '80', 'xidexian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('684', '西昌市', '80', 'xichangshi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('685', '盐源县', '80', 'yanyuanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('686', '得荣县', '73', 'derongxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('687', '布拖县', '80', 'butuoxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('688', '普格县', '80', 'pugexian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('689', '德昌县', '80', 'dechangxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('690', '会东县', '80', 'huidongxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('691', '盐边县', '81', 'yanbianxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('692', '会理县', '80', 'huilixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('693', '米易县', '81', 'miyixian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('695', '江油市', '240', 'jiangyoushi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('696', '青白江区', '75', 'qingbaijiangqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('697', '郫县', '75', 'pixian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('698', '金牛区', '75', 'jinniuqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('699', '什邡市', '74', 'shifangshi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('700', '丹棱县', '77', 'danlengxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('701', '南溪县', '186', 'nanxixian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('702', '乡城县', '73', 'xiangchengxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('703', '金阳县', '80', 'jinyangxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('704', '德格县', '73', 'degexian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('705', '成华区', '75', 'chenghuaqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('706', '彭山县', '77', 'pengshanxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('707', '龙泉驿区', '75', 'longquanyiqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('708', '大英县', '330', 'dayingxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('709', '稻城县', '73', 'daochengxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('710', '宁南县', '80', 'ningnanxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('711', '锦江区', '75', 'jinjiangqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('712', '民丰县', '82', 'minfengxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('713', '策勒县', '82', 'celexian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('714', '塔什库尔干塔吉克自治县', '83', 'tashikuergantajikezizhixian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('715', '叶城县', '83', 'yechengxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('716', '皮山县', '82', 'pishanxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('717', '洛浦县', '82', 'luopuxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('718', '阿克陶县', '84', 'aketaoxian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('719', '泽普县', '83', 'zepuxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('720', '墨玉县', '82', 'moyuxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('721', '英吉沙县', '83', 'yingjishaxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('722', '麦盖提县', '83', 'maigaitixian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('723', '乌恰县', '84', 'wuqiaxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('724', '巴楚县', '83', 'bachuxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('725', '阿瓦提县', '85', 'awatixian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('726', '沙雅县', '85', 'shayaxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('727', '阿图什市', '84', 'atushishi', '3', '', 'A');INSERT INTO `th_areas` VALUES ('728', '柯坪县', '85', 'kepingxian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('729', '尉犁县', '86', 'weilixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('730', '阿合奇县', '84', 'aheqixian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('731', '阿拉尔市', '11000', 'alaershi', '3', '', 'A');INSERT INTO `th_areas` VALUES ('732', '库车县', '85', 'kuchexian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('733', '乌什县', '85', 'wushenxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('734', '温泉县', '88', 'wenquanxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('735', '鄯善县', '89', 'shanshanxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('736', '库尔勒市', '86', 'kuerleshi', '3', '', 'K');INSERT INTO `th_areas` VALUES ('737', '轮台县', '86', 'luntaixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('738', '新和县', '85', 'xinhexian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('739', '温宿县', '85', 'wensuxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('740', '和硕县', '86', 'heshuoxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('741', '博湖县', '86', 'bohuxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('742', '拜城县', '85', 'baichengxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('743', '托克逊县', '89', 'tuokexunxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('744', '吐鲁番市', '89', 'tulufanshi', '3', '', 'T');INSERT INTO `th_areas` VALUES ('745', '焉耆回族自治县', '86', 'yanqihuizuzizhixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('746', '和静县', '86', 'hejingxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('747', '特克斯县', '90', 'tekesixian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('748', '昭苏县', '90', 'zhaosuxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('749', '伊吾县', '91', 'yiwuxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('750', '巩留县', '90', 'gongliuxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('751', '达坂城区', '92', 'dabanchengqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('752', '呼图壁县', '93', 'hutubixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('753', '昌吉市', '93', 'changjishi', '3', '', 'C');INSERT INTO `th_areas` VALUES ('754', '新源县', '90', 'xinyuanxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('756', '察布查尔锡伯自治县', '90', 'chabuchaerxibozizhixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('757', '巴里坤哈萨克自治县', '91', 'balikunhasakezizhixian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('758', '木垒哈萨克自治县', '93', 'muleihasakezizhixian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('759', '沙湾县', '94', 'shawanxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('760', '尼勒克县', '90', 'nilekexian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('761', '玛纳斯县', '93', 'manasixian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('762', '伊宁县', '90', 'yiningxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('763', '乌苏市', '94', 'wusushi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('764', '阜康市', '93', 'fukangshi', '3', '', 'F');INSERT INTO `th_areas` VALUES ('765', '吉木萨尔县', '93', 'jimusaerxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('766', '霍城县', '90', 'huochengxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('767', '伊宁市', '90', 'yiningshi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('768', '精河县', '88', 'jinghexian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('769', '独山子区', '95', 'dushanziqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('770', '石河子市', '11001', 'shihezishi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('771', '奎屯市', '90', 'kuitunshi', '3', '', 'K');INSERT INTO `th_areas` VALUES ('772', '博乐市', '88', 'boleshi', '3', '', 'B');INSERT INTO `th_areas` VALUES ('773', '奇台县', '93', 'qitaixian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('775', '托里县', '94', 'tuolixian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('776', '福海县', '96', 'fuhaixian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('777', '和布克赛尔蒙古自治县', '94', 'hebukesaiermengguzizhixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('778', '青河县', '96', 'qinghexian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('779', '裕民县', '94', 'yuminxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('780', '富蕴县', '96', 'fuyunxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('781', '额敏县', '94', 'eminxian', '3', '', 'E');INSERT INTO `th_areas` VALUES ('782', '塔城市', '94', 'tachengshi', '3', '', 'T');INSERT INTO `th_areas` VALUES ('783', '阿勒泰市', '96', 'aletaishi', '3', '', 'A');INSERT INTO `th_areas` VALUES ('784', '吉木乃县', '96', 'jimunaixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('785', '布尔津县', '96', 'buerjinxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('786', '哈巴河县', '96', 'habahexian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('787', '莎车县', '83', 'shachexian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('788', '疏勒县', '83', 'shulexian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('789', '五家渠市', '11002', 'wujiaqushi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('790', '伽师县', '83', 'jiashixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('791', '岳普湖县', '83', 'yuepuhuxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('792', '图木舒克市', '11003', 'tumushukeshi', '3', '', 'T');INSERT INTO `th_areas` VALUES ('793', '喀什市', '83', 'kashishi', '3', '', 'K');INSERT INTO `th_areas` VALUES ('794', '和田市', '82', 'hetianshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('795', '错那县', '97', 'cuoneixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('796', '墨脱县', '98', 'motuoxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('797', '洛扎县', '97', 'luozhaxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('798', '隆子县', '97', 'longzixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('799', '朗县', '98', 'langxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('800', '曲松县', '97', 'qusongxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('801', '措美县', '97', 'cuomeixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('802', '浪卡子县', '97', 'langkazixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('803', '加查县', '97', 'jiachaxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('804', '乃东县', '97', 'naidongxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('805', '琼结县', '97', 'qiongjiexian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('806', '米林县', '98', 'milinxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('807', '贡嘎县', '97', 'gonggaxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('808', '桑日县', '97', 'sangrixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('809', '八宿县', '99', 'basuxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('810', '扎囊县', '97', 'zhanangxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('811', '曲水县', '100', 'qushuixian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('812', '尼木县', '100', 'nimuxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('813', '林芝县', '98', 'linzhixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('814', '工布江达县', '98', 'gongbujiangdaxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('815', '达孜县', '100', 'dazixian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('816', '墨竹工卡县', '100', 'mozhugongkaxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('817', '堆龙德庆县', '100', 'duilongdeqingxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('818', '波密县', '98', 'bomixian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('819', '林周县', '100', 'linzhouxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('820', '当雄县', '100', 'dangxiongxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('821', '嘉黎县', '101', 'jialixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('822', '洛隆县', '99', 'luolongxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('823', '察雅县', '99', 'chayaxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('824', '边坝县', '99', 'bianbaxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('825', '那曲县', '101', 'neiquxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('826', '班戈县', '101', 'bangexian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('827', '比如县', '101', 'biruxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('828', '索县', '101', 'suoxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('829', '亚东县', '102', 'yadongxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('830', '定结县', '102', 'dingjiexian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('831', '聂拉木县', '102', 'nielamuxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('832', '定日县', '102', 'dingrixian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('833', '吉隆县', '102', 'jilongxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('834', '康马县', '102', 'kangmaxian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('835', '白朗县', '102', 'bailangxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('836', '江孜县', '102', 'jiangzixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('837', '岗巴县', '102', 'gangbaxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('838', '萨迦县', '102', 'sajiaxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('839', '萨嘎县', '102', 'sagaxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('840', '昂仁县', '102', 'angrenxian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('841', '拉孜县', '102', 'lazixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('842', '仲巴县', '102', 'zhongbaxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('843', '日喀则市', '102', 'rikazeshi', '3', '', 'R');INSERT INTO `th_areas` VALUES ('844', '南木林县', '102', 'nanmulinxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('845', '谢通门县', '102', 'xietongmenxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('846', '措勤县', '103', 'cuoqinxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('847', '普兰县', '103', 'pulanxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('848', '申扎县', '101', 'shenzhaxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('849', '札达县', '103', 'zhadaxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('850', '革吉县', '103', 'gejixian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('851', '噶尔县', '103', 'gaerxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('852', '仁布县', '102', 'renbuxian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('853', '城关区', '100', 'chengguanqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('854', '大关县', '336', 'daguanxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('855', '沾益县', '249', 'zhanyixian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('856', '寻甸回族彝族自治县', '104', 'xundianhuizuyizuzizhixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('857', '大姚县', '105', 'dayaoxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('858', '陆良县', '249', 'luliangxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('859', '马龙县', '249', 'malongxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('860', '宜良县', '104', 'yiliangxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('861', '澄江县', '106', 'chengjiangxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('863', '呈贡县', '104', 'chenggongxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('864', '嵩明县', '104', 'songmingxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('865', '富民县', '104', 'fuminxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('866', '安宁市', '104', 'anningshi', '3', '', 'A');INSERT INTO `th_areas` VALUES ('867', '禄丰县', '105', 'lufengxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('868', '易门县', '106', 'yimenxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('869', '双柏县', '105', 'shuangboxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('870', '楚雄市', '105', 'chuxiongshi', '3', '', 'C');INSERT INTO `th_areas` VALUES ('871', '牟定县', '105', 'moudingxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('872', '石林彝族自治县', '104', 'shilinyizuzizhixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('873', '泸西县', '107', 'luxixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('874', '弥勒县', '107', 'milexian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('875', '华宁县', '106', 'huaningxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('876', '晋宁县', '104', 'jinningxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('877', '红塔区', '106', 'hongtaqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('878', '峨山彝族自治县', '106', 'eshanyizuzizhixian', '3', '', 'E');INSERT INTO `th_areas` VALUES ('879', '新平彝族傣族自治县', '106', 'xinpingyizudaizuzizhixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('880', '砚山县', '177', 'yanshanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('881', '文山县', '177', 'wenshanxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('882', '开远市', '107', 'kaiyuanshi', '3', '', 'K');INSERT INTO `th_areas` VALUES ('883', '建水县', '107', 'jianshuixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('884', '个旧市', '107', 'gejiushi', '3', '', 'G');INSERT INTO `th_areas` VALUES ('885', '石屏县', '107', 'shipingxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('886', '元江县', '106', 'yuanjiangxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('887', '红河县', '107', 'honghexian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('888', '墨江哈尼族自治县', '108', 'mojianghanizuzizhixian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('889', '麻栗坡县', '177', 'malipoxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('890', '西畴县', '177', 'xichouxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('891', '马关县', '177', 'maguanxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('892', '河口瑶族自治县', '107', 'hekouyaozuzizhixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('893', '屏边苗族自治县', '107', 'pingbianmiaozuzizhixian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('894', '蒙自县', '107', 'mengzixian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('895', '金平苗族瑶族傣族自治县', '107', 'jinpingmiaozuyaozudaizuzizhixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('896', '元阳县', '107', 'yuanyangxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('897', '绿春县', '107', 'lu:chunxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('898', '江城哈尼族彝族自治县', '108', 'jiangchenghanizuyizuzizhixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('899', '勐腊县', '109', 'menglaxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('900', '勐海县', '109', 'menghaixian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('901', '景洪市', '109', 'jinghongshi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('902', '思茅区', '108', 'simaoqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('903', '澜沧拉祜族自治县', '108', 'lancanglahuzuzizhixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('904', '宁洱哈尼族彝族自治县', '108', 'ningerhanizuyizuzizhixian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('905', '景谷傣族彝族自治县', '108', 'jinggudaizuyizuzizhixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('906', '沧源佤族自治县', '110', 'cangyuanwazuzizhixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('907', '镇沅县', '108', 'zhenyuanxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('908', '景东彝族自治县', '108', 'jingdongyizuzizhixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('909', '云县', '110', 'yunxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('910', '临翔区', '110', 'linxiangqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('911', '南涧彝族自治县', '111', 'nanjianyizuzizhixian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('912', '凤庆县', '110', 'fengqingxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('913', '南华县', '105', 'nanhuaxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('914', '弥渡县', '111', 'miduxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('915', '祥云县', '111', 'xiangyunxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('916', '漾濞彝族自治县', '111', 'yangbiyizuzizhixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('917', '永平县', '111', 'yongpingxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('918', '隆阳区', '112', 'longyangqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('919', '大理市', '111', 'dalishi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('920', '巍山彝族回族自治县', '111', 'weishanyizuhuizuzizhixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('921', '姚安县', '105', 'yaoanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('922', '宾川县', '111', 'binchuanxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('923', '洱源县', '111', 'eryuanxian', '3', '', 'E');INSERT INTO `th_areas` VALUES ('924', '泸水县', '113', 'lushuixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('925', '鹤庆县', '111', 'heqingxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('926', '永胜县', '114', 'yongshengxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('927', '福贡县', '113', 'fugongxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('928', '兰坪白族普米族自治县', '113', 'lanpingbaizupumizuzizhixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('929', '维西傈僳族自治县', '115', 'weixilisuzuzizhixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('930', '贡山独龙族怒族自治县', '113', 'gongshandulongzunuzuzizhixian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('931', '麒麟区', '249', 'qilinqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('932', '江川县', '106', 'jiangchuanxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('933', '西盟佤族自治县', '108', 'ximengwazuzizhixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('934', '镇康县', '110', 'zhenkangxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('935', '盈江县', '116', 'yingjiangxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('936', '陇川县', '116', 'longchuanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('937', '梁河县', '116', 'lianghexian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('938', '云龙县', '111', 'yunlongxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('939', '永德县', '110', 'yongdexian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('940', '施甸县', '112', 'shidianxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('941', '龙陵县', '112', 'longlingxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('942', '腾冲县', '112', 'tengchongxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('943', '通海县', '106', 'tonghaixian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('944', '孟连县', '108', 'menglianxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('945', '瑞丽市', '116', 'ruilishi', '3', '', 'R');INSERT INTO `th_areas` VALUES ('946', '潞西市', '116', 'luxishi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('947', '昌宁县', '112', 'changningxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('948', '双江县', '110', 'shuangjiangxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('949', '耿马傣族佤族自治县', '110', 'gengmadaizuwazuzizhixian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('950', '古城区', '114', 'guchengqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('951', '剑川县', '111', 'jianchuanxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('953', '隆昌县', '248', 'longchangxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('954', '肃北蒙古族自治县', '37', 'subeimengguzuzizhixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('955', '瓜州县', '37', 'guazhouxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('956', '玉门市', '37', 'yumenshi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('957', '敦煌市', '37', 'dunhuangshi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('958', '金塔县', '37', 'jintaxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('959', '临泽县', '117', 'linzexian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('960', '高台县', '117', 'gaotaixian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('961', '民勤县', '118', 'minqinxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('962', '永昌县', '34', 'yongchangxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('963', '山丹县', '117', 'shandanxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('964', '民乐县', '117', 'minlexian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('965', '甘州区', '117', 'ganzhouqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('966', '肃南裕固族自治县', '117', 'sunanyuguzuzizhixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('967', '凉州区', '118', 'liangzhouqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('968', '古浪县', '118', 'gulangxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('969', '天祝藏族自治县', '118', 'tianzhuzangzuzizhixian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('970', '门源回族自治县', '67', 'menyuanhuizuzizhixian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('971', '靖远县', '35', 'jingyuanxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('972', '景泰县', '35', 'jingtaixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('973', '永登县', '36', 'yongdengxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('975', '永靖县', '182', 'yongjingxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('976', '民和回族土族自治县', '69', 'minhehuizutuzuzizhixian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('977', '临夏县', '182', 'linxiaxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('978', '积石山县', '182', 'jishishanxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('979', '循化撒拉族自治县', '69', 'xunhuasalazuzizhixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('980', '夏河县', '247', 'xiahexian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('981', '卓尼县', '247', 'zhuonixian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('982', '迭部县', '247', 'diebuxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('983', '玛曲县', '247', 'maquxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('984', '舟曲县', '247', 'zhouquxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('985', '哈密市', '91', 'hamishi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('986', '额济纳旗', '230', 'ejinaqi', '3', '', 'E');INSERT INTO `th_areas` VALUES ('987', '阿克塞哈萨克族自治县', '37', 'akesaihasakezuzizhixian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('988', '碌曲县', '247', 'liuquxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('989', '河南蒙古族自治县', '70', 'henanmengguzuzizhixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('990', '泽库县', '70', 'zekuxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('991', '祁连县', '67', 'qilianxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('992', '德令哈市', '65', 'delinghashi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('993', '同仁县', '70', 'tongrenxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('994', '久治县', '72', 'jiuzhixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('995', '乐都县', '69', 'leduxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('996', '互助土族自治县', '69', 'huzhutuzuzizhixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('997', '罗平县', '249', 'luopingxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('998', '师宗县', '249', 'shizongxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('999', '丘北县', '177', 'qiubeixian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1000', '镇雄县', '336', 'zhenxiongxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1001', '威宁彝族回族苗族自治县', '206', 'weiningyizuhuizumiaozuzizhixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1002', '会泽县', '249', 'huizexian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1003', '宣威市', '249', 'xuanweishi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1004', '富源县', '249', 'fuyuanxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1005', '昭阳区', '336', 'zhaoyangqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1006', '彝良县', '336', 'yiliangxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1007', '鲁甸县', '336', 'ludianxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1009', '克什克腾旗', '297', 'keshenketengqi', '3', '', 'K');INSERT INTO `th_areas` VALUES ('1010', '多伦县', '63', 'duolunxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1011', '化德县', '168', 'huadexian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1012', '喀喇沁旗', '297', 'kalaqinqi', '3', '', 'K');INSERT INTO `th_areas` VALUES ('1013', '正镶白旗', '63', 'zhengxiangbaiqi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1014', '镶黄旗', '63', 'xianghuangqi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1015', '正蓝旗', '63', 'zhenglanqi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1016', '翁牛特旗', '297', 'wengniuteqi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1017', '额尔古纳市', '61', 'eergunashi', '3', '', 'E');INSERT INTO `th_areas` VALUES ('1018', '根河市', '61', 'genheshi', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1019', '鄂伦春自治旗', '61', 'elunchunzizhiqi', '3', '', 'E');INSERT INTO `th_areas` VALUES ('1020', '肇东市', '44', 'zhaodongshi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1021', '肇州县', '50', 'zhaozhouxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1023', '杜尔伯特蒙古族自治县', '50', 'duerbotemengguzuzizhixian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1024', '泰来县', '41', 'tailaixian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1025', '扎赉特旗', '62', 'zhalaiteqi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1026', '双城市', '48', 'shuangchengshi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1027', '肇源县', '50', 'zhaoyuanxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1028', '穆棱市', '49', 'mulengshi', '3', '', 'M');INSERT INTO `th_areas` VALUES ('1029', '东宁县', '49', 'dongningxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1030', '海林市', '49', 'hailinshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1031', '尚志市', '48', 'shangzhishi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1032', '五常市', '48', 'wuchangshi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1033', '宁安市', '49', 'ninganshi', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1034', '阿荣旗', '61', 'arongqi', '3', '', 'A');INSERT INTO `th_areas` VALUES ('1035', '扎兰屯市', '61', 'zhalantunshi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1036', '莫力达瓦达斡尔族自治旗', '61', 'molidawadawoerzuzizhiqi', '3', '', 'M');INSERT INTO `th_areas` VALUES ('1037', '科尔沁右翼前旗', '62', 'keerqinyouyiqianqi', '3', '', 'K');INSERT INTO `th_areas` VALUES ('1038', '突泉县', '62', 'tuquanxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1039', '昌图县', '60', 'changtuxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1040', '科尔沁左翼后旗', '64', 'keerqinzuoyihouqi', '3', '', 'K');INSERT INTO `th_areas` VALUES ('1041', '西丰县', '60', 'xifengxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1042', '乌兰浩特市', '62', 'wulanhaoteshi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1043', '科尔沁右翼中旗', '62', 'keerqinyouyizhongqi', '3', '', 'K');INSERT INTO `th_areas` VALUES ('1044', '清原满族自治县', '184', 'qingyuanmanzuzizhixian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1045', '科尔沁左翼中旗', '64', 'keerqinzuoyizhongqi', '3', '', 'K');INSERT INTO `th_areas` VALUES ('1046', '开原市', '60', 'kaiyuanshi', '3', '', 'K');INSERT INTO `th_areas` VALUES ('1047', '库伦旗', '64', 'kulunqi', '3', '', 'K');INSERT INTO `th_areas` VALUES ('1048', '敖汉旗', '297', 'aohanqi', '3', '', 'A');INSERT INTO `th_areas` VALUES ('1049', '奈曼旗', '64', 'naimanqi', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1050', '大东区', '58', 'dadongqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1051', '海西蒙古族藏族自治州直辖', '65', 'haiximengguzuzangzuzizhizhouzhixia', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1052', '若羌县', '86', 'ruoqiangxian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('1053', '格尔木市', '65', 'geermushi', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1054', '治多县', '71', 'zhiduoxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1055', '称多县', '71', 'chengduoxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1056', '安多县', '101', 'anduoxian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('1057', '达日县', '72', 'darixian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1058', '石渠县', '73', 'shiquxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1059', '玉树县', '71', 'yushuxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1060', '杂多县', '71', 'zaduoxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1061', '班玛县', '72', 'banmaxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1062', '囊谦县', '71', 'nangqianxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1063', '巴青县', '101', 'baqingxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1064', '聂荣县', '101', 'nierongxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1065', '类乌齐县', '99', 'leiwuqixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1066', '丁青县', '99', 'dingqingxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1067', '尼玛县', '101', 'nimaxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1068', '江达县', '99', 'jiangdaxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1069', '昌都县', '99', 'changdouxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1070', '阿坝县', '185', 'abaxian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('1071', '芒康县', '99', 'mangkangxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('1072', '德钦县', '115', 'deqinxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1073', '威信县', '336', 'weixinxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1074', '盐津县', '336', 'yanjinxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1075', '永善县', '336', 'yongshanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1076', '宁蒗彝族自治县', '114', 'ninglangyizuzizhixian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1077', '巧家县', '336', 'qiaojiaxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1078', '东川区', '104', 'dongchuanqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1079', '华坪县', '114', 'huapingxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1080', '香格里拉县', '115', 'xianggelilaxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1081', '永仁县', '105', 'yongrenxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1082', '禄劝彝族苗族自治县', '104', 'luquanyizumiaozuzizhixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1083', '武定县', '105', 'wudingxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1084', '元谋县', '105', 'yuanmouxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1085', '绥江县', '336', 'suijiangxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1086', '贡觉县', '99', 'gongjuexian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1087', '玉龙纳西族自治县', '114', 'yulongnaxizuzizhixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1088', '水富县', '336', 'shuifuxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1089', '日土县', '103', 'rituxian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('1090', '和田县', '82', 'hetianxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1091', '改则县', '103', 'gaizexian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1092', '于田县', '82', 'yutianxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1093', '且末县', '86', 'qiemoxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1094', '阿克苏市', '85', 'akesushi', '3', '', 'A');INSERT INTO `th_areas` VALUES ('1095', '乌鲁木齐县', '92', 'wulumuqixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1096', '疏附县', '83', 'shufuxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1097', '察隅县', '98', 'chayuxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1098', '左贡县', '99', 'zuogongxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1099', '固镇县', '126', 'guzhenxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1100', '蒙城县', '188', 'mengchengxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('1101', '定远县', '189', 'dingyuanxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1102', '颍上县', '128', 'yingshangxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1103', '含山县', '251', 'hanshanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1107', '庐江县', '251', 'lujiangxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1108', '岳西县', '130', 'yuexixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1109', '泾县', '190', 'jingxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1110', '贵池区', '299', 'guichiqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1111', '宿松县', '130', 'susongxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1112', '黟县', '252', 'yixian', '3', '', '');INSERT INTO `th_areas` VALUES ('1115', '怀柔区', '131', 'huairouqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1116', '通州区', '131', 'tongzhouqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1117', '门头沟区', '131', 'mentougouqu', '3', '', 'M');INSERT INTO `th_areas` VALUES ('1118', '西城区', '131', 'xichengqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1119', '奉节县', '132', 'fengjiexian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1120', '开县', '132', 'kaixian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('1121', '忠县', '132', 'zhongxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1122', '潼南县', '132', 'tongnanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1123', '彭水苗族土家族自治县', '132', 'pengshuimiaozutujiazuzizhixian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1124', '涪陵区', '132', 'fulingqu', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1125', '北碚区', '132', 'beibeiqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1126', '永川区', '132', 'yongchuanqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1127', '万盛区', '132', 'wanshengqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1128', '秀山土家族苗族自治县', '132', 'xiushantujiazumiaozuzizhixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1129', '九龙坡区', '132', 'jiulongpoqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1130', '建阳市', '133', 'jianyangshi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1131', '蕉城区', '192', 'jiaochengqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1132', '延平区', '133', 'yanpingqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1133', '将乐县', '254', 'jianglexian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1134', '建宁县', '254', 'jianningxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1135', '连江县', '300', 'lianjiangxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1136', '永安市', '254', 'yonganshi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1137', '永春县', '134', 'yongchunxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1138', '长汀县', '193', 'zhangtingxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1139', '集美区', '194', 'jimeiqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1140', '思明区', '194', 'simingqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1141', '南靖县', '255', 'nanjingxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1142', '漳浦县', '255', 'zhangpuxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1144', '晋江市', '134', 'jinjiangshi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1145', '庆城县', '135', 'qingchengxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1146', '通渭县', '136', 'tongweixian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1147', '西和县', '256', 'xihexian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1148', '市辖区', '119', 'shixiaqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1149', '新丰县', '137', 'xinfengxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1150', '花都区', '257', 'huadouqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1151', '顺德区', '138', 'shundequ', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1152', '雷州市', '198', 'leizhoushi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1153', '吴川市', '198', 'wuchuanshi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1154', '台山市', '302', 'taishanshi', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1155', '江城区', '199', 'jiangchengqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1156', '斗门区', '140', 'doumenqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1157', '高州市', '139', 'gaozhoushi', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1158', '罗定市', '258', 'luodingshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1159', '高明区', '138', 'gaomingqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1160', '德庆县', '338', 'deqingxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1161', '四会市', '338', 'sihuishi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1162', '连山壮族瑶族自治县', '197', 'lianshanzhuangzuyaozuzizhixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1163', '阳山县', '197', 'yangshanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1164', '乐昌市', '137', 'lechangshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1165', '南雄市', '137', 'nanxiongshi', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1166', '梅县', '141', 'meixian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('1167', '龙川县', '200', 'longchuanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1168', '曲江区', '137', 'qujiangqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1169', '饶平县', '201', 'raopingxian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('1170', '揭东县', '259', 'jiedongxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1171', '紫金县', '200', 'zijinxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1172', '濠江区', '303', 'haojiangqu', '3', '', '');INSERT INTO `th_areas` VALUES ('1173', '陆丰市', '339', 'lufengshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1174', '南山区', '340', 'nanshanqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1175', '赤坎区', '198', 'chikanqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1176', '江海区', '302', 'jianghaiqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1177', '罗湖区', '340', 'luohuqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1178', '越秀区', '257', 'yuexiuqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1179', '端州区', '338', 'duanzhouqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1180', '兴安县', '142', 'xinganxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1181', '阳朔县', '142', 'yangshuoxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1182', '南丹县', '143', 'nandanxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1183', '昭平县', '260', 'zhaopingxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1184', '金秀瑶族自治县', '202', 'jinxiuyaozuzizhixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1185', '乐业县', '203', 'leyexian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1186', '隆林各族自治县', '203', 'longlingezuzizhixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1187', '兴宾区', '202', 'xingbinqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1188', '都安瑶族自治县', '143', 'douanyaozuzizhixian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1189', '田东县', '203', 'tiandongxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1190', '武鸣县', '261', 'wumingxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1191', '靖西县', '203', 'jingxixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1192', '灵山县', '145', 'lingshanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1193', '上思县', '204', 'shangsixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1194', '龙州县', '144', 'longzhouxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1195', '东兴市', '204', 'dongxingshi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1196', '柳城县', '305', 'liuchengxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1197', '兴业县', '361', 'xingyexian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1198', '德江县', '205', 'dejiangxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1199', '绥阳县', '262', 'suiyangxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1200', '江口县', '205', 'jiangkouxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1201', '瓮安县', '306', 'wenganxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1203', '黔西县', '206', 'qianxixian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1204', '施秉县', '342', 'shibingxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1205', '龙里县', '306', 'longlixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1206', '息烽县', '146', 'xifengxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1207', '纳雍县', '206', 'nayongxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1208', '紫云苗族布依族自治县', '263', 'ziyunmiaozubuyizuzizhixian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1209', '关岭布依族苗族自治县', '263', 'guanlingbuyizumiaozuzizhixian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1210', '平坝县', '263', 'pingbaxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1211', '榕江县', '342', 'rongjiangxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1212', '麻江县', '342', 'majiangxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('1213', '市辖区', '120', 'shixiaqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1214', '定安县', '11004', 'dinganxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1215', '儋州市', '11005', 'danzhoushi', '3', '', '');INSERT INTO `th_areas` VALUES ('1216', '万宁市', '11006', 'wanningshi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1217', '保亭黎族苗族自治县', '11007', 'baotinglizumiaozuzizhixian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1218', '西沙群岛', '11008', 'xishaqundao', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1219', '承德县', '207', 'chengdexian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1220', '张北县', '264', 'zhangbeixian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1221', '怀安县', '264', 'huaianxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1222', '抚宁县', '148', 'funingxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1223', '迁安市', '265', 'qiananshi', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1224', '蔚县', '264', 'yuxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1225', '乐亭县', '265', 'letingxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1226', '高碑店市', '307', 'gaobeidianshi', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1227', '安新县', '307', 'anxinxian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('1228', '满城县', '307', 'manchengxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('1229', '阜平县', '307', 'fupingxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1230', '沧县', '149', 'cangxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1231', '蠡县', '307', 'lixian', '3', '', '');INSERT INTO `th_areas` VALUES ('1232', '定州市', '307', 'dingzhoushi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1233', '正定县', '150', 'zhengdingxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1234', '井陉县', '150', 'jingxingxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1235', '海兴县', '149', 'haixingxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1236', '东光县', '149', 'dongguangxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1237', '深州市', '208', 'shenzhoushi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1238', '宁晋县', '266', 'ningjinxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1239', '高邑县', '150', 'gaoyixian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1240', '内邱县', '266', 'neiqiuxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1241', '枣强县', '208', 'zaoqiangxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1242', '清河县', '266', 'qinghexian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1243', '邱县', '151', 'qiuxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1244', '南和县', '266', 'nanhexian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1246', '武安市', '151', 'wuanshi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1247', '大名县', '151', 'damingxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1248', '成安县', '151', 'chenganxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1249', '下花园区', '264', 'xiahuayuanqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1252', '华龙区', '209', 'hualongqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1253', '延津县', '152', 'yanjinxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1254', '辉县市', '152', 'huixianshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1255', '开封县', '210', 'kaifengxian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('1257', '偃师市', '153', 'yanshishi', '3', '', '');INSERT INTO `th_areas` VALUES ('1258', '温县', '211', 'wenxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1259', '渑池县', '212', 'mianchixian', '3', '', '');INSERT INTO `th_areas` VALUES ('1260', '永城市', '154', 'yongchengshi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1261', '柘城县', '154', 'zhechengxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1262', '长葛市', '155', 'zhanggeshi', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1263', '魏都区', '155', 'weidouqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1264', '宝丰县', '213', 'baofengxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1265', '淮阳县', '308', 'huaiyangxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1266', '西平县', '269', 'xipingxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1267', '汝南县', '269', 'runanxian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('1268', '方城县', '309', 'fangchengxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1269', '镇平县', '309', 'zhenpingxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1270', '西峡县', '309', 'xixiaxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1271', '淮滨县', '214', 'huaibinxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1272', '桐柏县', '309', 'tongboxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1273', '新野县', '309', 'xinyexian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1274', '新县', '214', 'xinxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1275', '灵宝市', '212', 'lingbaoshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1276', '汝阳县', '153', 'ruyangxian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('1277', '济源市', '30', 'jiyuanshi', '2', '112.609314,35.072867', 'J');INSERT INTO `th_areas` VALUES ('1278', '临颍县', '344', 'linyingxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1279', '扶沟县', '308', 'fugouxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1281', '上街区', '268', 'shangjiequ', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1282', '郧西县', '216', 'yunxixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1283', '谷城县', '156', 'guchengxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1285', '京山县', '217', 'jingshanxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1288', '团风县', '271', 'tuanfengxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1289', '黄陂区', '218', 'huangpoqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1290', '云梦县', '310', 'yunmengxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1291', '大冶市', '311', 'dayeshi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1292', '嘉鱼县', '362', 'jiayuxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1293', '潜江市', '11009', 'qianjiangshi', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1294', '江汉区', '218', 'jianghanqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1295', '石门县', '219', 'shimenxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1297', '津市市', '219', 'jinshishi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1298', '平江县', '220', 'pingjiangxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1299', '湘阴县', '220', 'xiangyinxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1300', '汉寿县', '219', 'hanshouxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1301', '沅陵县', '363', 'yuanlingxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1303', '宁乡县', '158', 'ningxiangxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1304', '攸县', '222', 'youxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1305', '衡山县', '159', 'hengshanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1306', '邵东县', '273', 'shaodongxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1307', '麻阳苗族自治县', '363', 'mayangmiaozuzizhixian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('1308', '耒阳市', '159', 'leiyangshi', '3', '', '');INSERT INTO `th_areas` VALUES ('1309', '洪江市', '363', 'hongjiangshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1310', '炎陵县', '222', 'yanlingxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1311', '祁阳县', '314', 'qiyangxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1312', '东安县', '314', 'donganxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1313', '城步苗族自治县', '273', 'chengbumiaozuzizhixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1314', '嘉禾县', '275', 'jiahexian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1315', '道县', '314', 'daoxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1316', '隆回县', '273', 'longhuixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1317', '吉首市', '274', 'jishoushi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1318', '靖州苗族侗族自治县', '363', 'jingzhoumiaozudongzuzizhixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1320', '冷水江市', '221', 'lengshuijiangshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1321', '高淳县', '315', 'gaochunxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1322', '句容市', '160', 'jurongshi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1323', '如东县', '161', 'rudongxian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('1324', '兴化市', '276', 'xinghuashi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1325', '楚州区', '162', 'chuzhouqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1326', '泗洪县', '277', 'sihongxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1327', '滨海县', '223', 'binhaixian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1328', '沭阳县', '277', 'shuyangxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1329', '邳州市', '316', 'pizhoushi', '3', '', '');INSERT INTO `th_areas` VALUES ('1330', '连云区', '347', 'lianyunqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1331', '丰县', '316', 'fengxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1332', '相城区', '224', 'xiangchengqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1333', '靖江市', '276', 'jingjiangshi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1334', '浦口区', '315', 'pukouqu', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1335', '天长市', '189', 'tianzhangshi', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1336', '宜兴市', '317', 'yixingshi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1337', '丹阳市', '160', 'danyangshi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1338', '港闸区', '161', 'gangzhaqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1339', '维扬区', '346', 'weiyangqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1340', '海陵区', '276', 'hailingqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1341', '戚墅堰区', '348', 'qishuyanqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1342', '海州区', '347', 'haizhouqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1343', '沧浪区', '224', 'canglangqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1344', '九里区', '316', 'jiuliqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1345', '玄武区', '315', 'xuanwuqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1346', '北塘区', '317', 'beitangqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1347', '都昌县', '349', 'duchangxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1348', '瑞昌市', '349', 'ruichangshi', '3', '', 'R');INSERT INTO `th_areas` VALUES ('1349', '乐平市', '225', 'lepingshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1350', '南昌县', '163', 'nanchangxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1351', '靖安县', '278', 'jinganxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1352', '金溪县', '226', 'jinxixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1353', '高安市', '278', 'gaoanshi', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1354', '乐安县', '226', 'leanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1355', '峡江县', '318', 'xiajiangxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1356', '安福县', '318', 'anfuxian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('1358', '于都县', '365', 'yudouxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1359', '章贡区', '365', 'zhanggongqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1360', '信州区', '364', 'xinzhouqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1361', '月湖区', '279', 'yuehuqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1363', '本溪满族自治县', '227', 'benximanzuzizhixian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1364', '凌海市', '166', 'linghaishi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1365', '喀喇沁左翼蒙古族自治县', '280', 'kalaqinzuoyimengguzuzizhixian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('1366', '大洼县', '228', 'dawaxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1367', '东港市', '282', 'donggangshi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1368', '长海县', '167', 'zhanghaixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1369', '盖州市', '281', 'gaizhoushi', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1371', '乌拉特后旗', '169', 'wulatehouqi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1372', '固阳县', '229', 'guyangxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1373', '五原县', '169', 'wuyuanxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1374', '土默特左旗', '321', 'tumotezuoqi', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1375', '达拉特旗', '283', 'dalateqi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1376', '鄂托克旗', '283', 'etuokeqi', '3', '', 'E');INSERT INTO `th_areas` VALUES ('1377', '卓资县', '168', 'zhuozixian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1378', '集宁区', '168', 'jiningqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1379', '利通区', '322', 'litongqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1380', '佳县', '231', 'jiaxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1381', '清涧县', '231', 'qingjianxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1382', '靖边县', '231', 'jingbianxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1383', '甘泉县', '284', 'ganquanxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1384', '洛川县', '284', 'luochuanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1385', '富平县', '170', 'fupingxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1386', '旬邑县', '323', 'xunyixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1387', '麟游县', '171', 'linyouxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1388', '长武县', '323', 'zhangwuxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1389', '陇县', '171', 'longxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1390', '华县', '170', 'huaxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1392', '周至县', '233', 'zhouzhixian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1393', '凤县', '171', 'fengxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1394', '商州区', '285', 'shangzhouqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1395', '石泉县', '324', 'shiquanxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1396', '汉台区', '352', 'hantaiqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1397', '合阳县', '170', 'heyangxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1398', '汉滨区', '324', 'hanbinqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1399', '曹县', '353', 'caoxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1401', '邹城市', '286', 'zouchengshi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1402', '嘉祥县', '286', 'jiaxiangxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1403', '蒙阴县', '234', 'mengyinxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('1404', '鄄城县', '353', 'juanchengxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1405', '五莲县', '173', 'wulianxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1406', '宁阳县', '325', 'ningyangxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1407', '阳谷县', '366', 'yangguxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1408', '平阴县', '288', 'pingyinxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1409', '安丘市', '287', 'anqiushi', '3', '', 'A');INSERT INTO `th_areas` VALUES ('1411', '齐河县', '372', 'qihexian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1412', '寿光市', '287', 'shouguangshi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1413', '惠民县', '235', 'huiminxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1414', '垦利县', '174', 'kenlixian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('1415', '平度市', '236', 'pingdushi', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1416', '乳山市', '175', 'rushanshi', '3', '', 'R');INSERT INTO `th_areas` VALUES ('1417', '莱阳市', '326', 'laiyangshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1418', '环翠区', '175', 'huancuiqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1419', '蓬莱市', '326', 'penglaishi', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1420', '历下区', '288', 'lixiaqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1421', '黄岛区', '236', 'huangdaoqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1422', '宝山区', '289', 'baoshanqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1423', '闵行区', '289', 'minxingqu', '3', '', '');INSERT INTO `th_areas` VALUES ('1424', '怀仁县', '237', 'huairenxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1425', '右玉县', '237', 'youyuxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1426', '偏关县', '367', 'pianguanxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1427', '代县', '367', 'daixian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1428', '宁武县', '367', 'ningwuxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1429', '寿阳县', '238', 'shouyangxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1430', '定襄县', '367', 'dingxiangxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1431', '古交市', '176', 'gujiaoshi', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1432', '方山县', '327', 'fangshanxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1433', '榆社县', '238', 'yushexian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1434', '文水县', '327', 'wenshuixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1435', '中阳县', '327', 'zhongyangxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1436', '沁源县', '356', 'qinyuanxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1437', '汾西县', '368', 'fenxixian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1438', '长子县', '356', 'zhangzixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1439', '尧都区', '368', 'yaoduqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1440', '市辖区', '290', 'shixiaqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1441', '翼城县', '368', 'yichengxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1442', '稷山县', '328', 'jishanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1443', '盐湖区', '328', 'yanhuqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1444', '襄垣县', '356', 'xiangyuanxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1445', '侯马市', '368', 'houmashi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1446', '南江县', '239', 'nanjiangxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1448', '阆中市', '291', 'langzhongshi', '3', '', '');INSERT INTO `th_areas` VALUES ('1449', '渠县', '369', 'quxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1450', '西充县', '291', 'xichongxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1451', '古蔺县', '331', 'gulinxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1452', '通川区', '369', 'tongchuanqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1454', '北辰区', '332', 'beichenqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1455', '河西区', '332', 'hexiqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1456', '泰顺县', '178', 'taishunxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1457', '庆元县', '292', 'qingyuanxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1458', '青田县', '292', 'qingtianxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1459', '遂昌县', '292', 'suichangxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1460', '临海市', '244', 'linhaishi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1461', '开化县', '243', 'kaihuaxian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('1462', '兰溪市', '333', 'lanxishi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1463', '宁海县', '180', 'ninghaixian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1464', '桐庐县', '179', 'tongluxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1465', '普陀区', '245', 'putuoqu', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1466', '镇海区', '180', 'zhenhaiqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1467', '上虞市', '293', 'shangyushi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1468', '安吉县', '294', 'anjixian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('1469', '南湖区', '334', 'nanhuqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1470', '洞头县', '178', 'dongtouxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1471', '柯城区', '243', 'kechengqu', '3', '', 'K');INSERT INTO `th_areas` VALUES ('1472', '东阳市', '333', 'dongyangshi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1473', '温岭市', '244', 'wenlingshi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1474', '西湖区', '179', 'xihuqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1475', '江干区', '179', 'jiangganqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1476', '太和县', '128', 'taihexian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1477', '绩溪县', '190', 'jixixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1480', '永清县', '191', 'yongqingxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1481', '蓟县', '332', 'jixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1482', '来凤县', '373', 'laifengxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1483', '邻水县', '241', 'linshuixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1484', '镇坪县', '324', 'zhenpingxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1485', '巴东县', '373', 'badongxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1486', '海原县', '181', 'haiyuanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1487', '崆峒区', '359', 'kongtongqu', '3', '', '');INSERT INTO `th_areas` VALUES ('1488', '隆德县', '246', 'longdexian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1489', '盐池县', '322', 'yanchixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1490', '香洲区', '140', 'xiangzhouqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1493', '容县', '361', 'rongxian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('1494', '富川瑶族自治县', '260', 'fuchuanyaozuzizhixian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1495', '三江侗族自治县', '305', 'sanjiangdongzuzizhixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1496', '万山特区', '205', 'wanshantequ', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1497', '三穗县', '342', 'sansuixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1498', '中沙群岛', '11010', 'zhongshaqundao', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1499', '兴和县', '168', 'xinghexian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1500', '文安县', '191', 'wenanxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1502', '德城区', '372', 'dechengqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1503', '临清市', '366', 'linqingshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1504', '广水市', '371', 'guangshuishi', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1505', '长垣县', '152', 'zhangyuanxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1506', '通山县', '362', 'tongshanxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1507', '上栗县', '350', 'shanglixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1508', '启东市', '161', 'qidongshi', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1509', '南浔区', '294', 'nanxunqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1510', '伊金霍洛旗', '283', 'yijinhuoluoqi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1512', '保德县', '367', 'baodexian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1513', '延长县', '284', 'yanzhangxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1514', '金山区', '289', 'jinshanqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1515', '南沙群岛', '11011', 'nanshaqundao', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1516', '安定区', '136', 'andingqu', '3', '', 'A');INSERT INTO `th_areas` VALUES ('1517', '陇西县', '136', 'longxixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1518', '武山县', '196', 'wushanxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1519', '礼县', '256', 'lixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1520', '水城县', '147', 'shuichengxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1522', '晴隆县', '343', 'qinglongxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1523', '兴仁县', '343', 'xingrenxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1526', '抚顺县', '184', 'fushunxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1528', '灯塔市', '351', 'dengtashi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1529', '辽中县', '58', 'liaozhongxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1530', '苏家屯区', '58', 'sujiatunqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1531', '梓潼县', '240', 'zitongxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1532', '平川区', '35', 'pingchuanqu', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1533', '沙坡头区', '181', 'shapotouqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1534', '会宁县', '35', 'huiningxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1535', '兴义市', '343', 'xingyishi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1536', '宁城县', '297', 'ningchengxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1537', '太仆寺旗', '63', 'taipusiqi', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1539', '怀远县', '126', 'huaiyuanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1540', '利辛县', '188', 'lixinxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1541', '长丰县', '127', 'zhangfengxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1542', '繁昌县', '129', 'fanchangxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1543', '枞阳县', '130', 'zongyangxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1544', '霍山县', '298', 'huoshanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1547', '怀宁县', '130', 'huainingxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1548', '延庆县', '131', 'yanqingxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1549', '大厂回族自治县', '191', 'dachanghuizuzizhixian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1550', '石景山区', '131', 'shijingshanqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1551', '东城区', '131', 'dongchengqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1552', '大兴区', '131', 'daxingqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1553', '云阳县', '132', 'yunyangxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1554', '梁平县', '132', 'liangpingxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1555', '合川区', '132', 'hechuanqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1556', '丰都县', '132', 'fengdouxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1557', '长寿区', '132', 'changshouqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1558', '沙坪坝区', '132', 'shapingbaqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1559', '荣昌县', '132', 'rongchangxian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('1560', '酉阳土家族苗族自治县', '132', 'youyangtujiazumiaozuzizhixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1561', '南川区', '132', 'nanchuanqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1562', '江津区', '132', 'jiangjinqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1563', '南岸区', '132', 'nananqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1564', '武夷山市', '133', 'wuyishanshi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1565', '周宁县', '192', 'zhouningxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1566', '古田县', '192', 'gutianxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1567', '顺昌县', '133', 'shunchangxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1568', '长乐市', '300', 'changleshi', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1569', '清流县', '254', 'qingliuxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1570', '安溪县', '134', 'anxixian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('1571', '新罗区', '193', 'xinluoqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1572', '翔安区', '194', 'xianganqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1573', '海沧区', '194', 'haicangqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1574', '霞浦县', '192', 'xiapuxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1575', '泰宁县', '254', 'tainingxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1576', '大田县', '254', 'datianxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1578', '东山县', '255', 'dongshanxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1579', '永泰县', '300', 'yongtaixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1581', '石狮市', '134', 'shishishi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1582', '鼓楼区', '300', 'gulouqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1583', '西峰区', '135', 'xifengqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1584', '秦安县', '196', 'qinanxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1585', '从化市', '257', 'conghuashi', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1586', '三水区', '138', 'sanshuiqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1587', '番禺区', '257', 'fanyuqu', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1588', '茂港区', '139', 'maogangqu', '3', '', 'M');INSERT INTO `th_areas` VALUES ('1589', '金湾区', '140', 'jinwanqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1590', '开平市', '302', 'kaipingshi', '3', '', 'K');INSERT INTO `th_areas` VALUES ('1591', '阳春市', '199', 'yangchunshi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1592', '化州市', '139', 'huazhoushi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1593', '蓬江区', '302', 'pengjiangqu', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1594', '郁南县', '258', 'yunanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1595', '广宁县', '338', 'guangningxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1596', '连南瑶族自治县', '197', 'liannanyaozuzizhixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1597', '乳源瑶族自治县', '137', 'ruyuanyaozuzizhixian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('1598', '始兴县', '137', 'shixingxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1599', '蕉岭县', '141', 'jiaolingxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1600', '和平县', '200', 'hepingxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1601', '丰顺县', '141', 'fengshunxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1602', '源城区', '200', 'yuanchengqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1603', '金平区', '303', 'jinpingqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1604', '潮南区', '303', 'chaonanqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1605', '陆河县', '339', 'luhexian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1606', '惠城区', '301', 'huichengqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1607', '云城区', '258', 'yunchengqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1608', '市辖区', '339', 'shixiaqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1609', '榕城区', '259', 'rongchengqu', '3', '', '');INSERT INTO `th_areas` VALUES ('1610', '麻章区', '198', 'mazhangqu', '3', '', 'M');INSERT INTO `th_areas` VALUES ('1611', '福田区', '340', 'futianqu', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1612', '盐田区', '340', 'yantianqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1613', '天河区', '257', 'tianhequ', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1614', '灵川县', '142', 'lingchuanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1615', '荔浦县', '142', 'lipuxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1616', '天峨县', '143', 'tianexian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1617', '平南县', '341', 'pingnanxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1618', '金城江区', '143', 'jinchengjiangqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1619', '田林县', '203', 'tianlinxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1620', '忻城县', '202', 'xinchengxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1621', '巴马瑶族自治县', '143', 'bamayaozuzizhixian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1622', '宾阳县', '261', 'binyangxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1623', '隆安县', '261', 'longanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1624', '德保县', '203', 'debaoxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1625', '那坡县', '203', 'neipoxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1626', '宁明县', '144', 'ningmingxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1627', '浦北县', '145', 'pubeixian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1629', '融水苗族自治县', '305', 'rongshuimiaozuzizhixian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('1630', '武宣县', '202', 'wuxuanxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1632', '思南县', '205', 'sinanxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1633', '湄潭县', '262', 'meitanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1634', '开阳县', '146', 'kaiyangxian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('1635', '台江县', '342', 'taijiangxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1636', '贵定县', '306', 'guidingxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1637', '清镇市', '146', 'qingzhenshi', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1638', '镇宁布依族苗族自治县', '263', 'zhenningbuyizumiaozuzizhixian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1639', '三都水族自治县', '306', 'sandoushuizuzizhixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1640', '长顺县', '306', 'changshunxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1641', '屯昌县', '11012', 'tunchangxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1642', '昌江黎族自治县', '11013', 'changjianglizuzizhixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1643', '陵水黎族自治县', '11014', 'lingshuilizuzizhixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1644', '五指山市', '11015', 'wuzhishanshi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1645', '尚义县', '264', 'shangyixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1646', '宽城满族自治县', '207', 'kuanchengmanzuzizhixian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('1649', '涞源县', '307', 'laiyuanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1650', '雄县', '307', 'xiongxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1651', '定兴县', '307', 'dingxingxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1652', '河间市', '149', 'hejianshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1653', '清苑县', '307', 'qingyuanxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1654', '深泽县', '150', 'shenzexian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1655', '曲阳县', '307', 'quyangxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1656', '平山县', '150', 'pingshanxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1657', '井陉矿区', '150', 'jingxingkuangqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1658', '盐山县', '149', 'yanshanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1659', '阜城县', '208', 'fuchengxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1660', '桃城区', '208', 'taochengqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1661', '新河县', '266', 'xinhexian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1662', '隆尧县', '266', 'longyaoxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1663', '藁城市', '150', 'gaochengshi', '3', '', '');INSERT INTO `th_areas` VALUES ('1664', '元氏县', '150', 'yuanshixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1665', '威县', '266', 'weixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1666', '平乡县', '266', 'pingxiangxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1667', '沙河市', '266', 'shaheshi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1668', '广平县', '151', 'guangpingxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1669', '临漳县', '151', 'linzhangxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1670', '卢龙县', '148', 'lulongxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1671', '邯郸县', '151', 'handanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1673', '阳原县', '264', 'yangyuanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1674', '饶阳县', '208', 'raoyangxian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('1676', '鹰手营子矿区', '207', 'yingshouyingzikuangqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1678', '滑县', '267', 'huaxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1679', '卫辉市', '152', 'weihuishi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1680', '中牟县', '268', 'zhongmouxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1681', '巩义市', '268', 'gongyishi', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1682', '新安县', '153', 'xinanxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1683', '夏邑县', '154', 'xiayixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1684', '太康县', '308', 'taikangxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1685', '许昌县', '155', 'xuchangxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1686', '汝州市', '213', 'ruzhoushi', '3', '', 'R');INSERT INTO `th_areas` VALUES ('1687', '项城市', '308', 'xiangchengshi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1688', '遂平县', '269', 'suipingxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1689', '社旗县', '309', 'sheqixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1690', '南召县', '309', 'nanzhaoxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1691', '邓州市', '309', 'dengzhoushi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1692', '息县', '214', 'xixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1693', '确山县', '269', 'queshanxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1694', '固始县', '214', 'gushixian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1695', '获嘉县', '152', 'huojiaxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1696', '卢氏县', '212', 'lushixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1697', '博爱县', '211', 'boaixian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1698', '陕县', '212', 'shanxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1701', '石龙区', '213', 'shilongqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1702', '吉利区', '153', 'jiliqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1703', '川汇区', '308', 'chuanhuiqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1704', '保康县', '156', 'baokangxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1705', '宜城市', '156', 'yichengshi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1706', '新洲区', '218', 'xinzhouqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1707', '孝南区', '310', 'xiaonanqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1708', '应城市', '310', 'yingchengshi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1709', '沙洋县', '217', 'shayangxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1710', '秭归县', '270', 'ziguixian', '3', '', '');INSERT INTO `th_areas` VALUES ('1712', '江夏区', '218', 'jiangxiaqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1713', '仙桃市', '11016', 'xiantaoshi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1714', '江陵县', '157', 'jianglingxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1715', '枝江市', '270', 'zhijiangshi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1716', '江岸区', '218', 'jianganqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1717', '岳阳县', '220', 'yueyangxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1718', '澧县', '219', 'lixian', '3', '', '');INSERT INTO `th_areas` VALUES ('1721', '安化县', '272', 'anhuaxian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('1722', '株洲县', '222', 'zhuzhouxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1723', '双峰县', '221', 'shuangfengxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1724', '凤凰县', '274', 'fenghuangxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1725', '茶陵县', '222', 'chalingxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1726', '衡南县', '159', 'hengnanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1727', '芷江侗族自治县', '363', 'zhijiangdongzuzizhixian', '3', '', '');INSERT INTO `th_areas` VALUES ('1728', '永兴县', '275', 'yongxingxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1730', '武冈市', '273', 'wugangshi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1731', '新田县', '314', 'xintianxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1732', '江永县', '314', 'jiangyongxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1733', '桂东县', '275', 'guidongxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1734', '长沙县', '158', 'zhangshaxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1735', '古丈县', '274', 'guzhangxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1736', '新邵县', '273', 'xinshaoxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1737', '韶山市', '313', 'shaoshanshi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1738', '南岳区', '159', 'nanyuequ', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1739', '东台市', '223', 'dongtaishi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1740', '宝应县', '346', 'baoyingxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1741', '阜宁县', '223', 'funingxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1742', '泗阳县', '277', 'siyangxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1743', '睢宁县', '316', 'suiningxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1744', '灌南县', '347', 'guannanxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1745', '赣榆县', '347', 'ganyuxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1746', '沛县', '316', 'peixian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1747', '溧阳市', '348', 'liyangshi', '3', '', '');INSERT INTO `th_areas` VALUES ('1748', '虎丘区', '224', 'huqiuqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1749', '锡山区', '317', 'xishanqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1751', '平江区', '224', 'pingjiangqu', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1752', '六合区', '315', 'liuhequ', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1753', '清河区', '162', 'qinghequ', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1754', '丹徒区', '160', 'dantuqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1755', '雨花台区', '315', 'yuhuataiqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1756', '盱眙县', '162', 'xuyixian', '3', '', '');INSERT INTO `th_areas` VALUES ('1757', '江都市', '346', 'jiangdoushi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1758', '钟楼区', '348', 'zhonglouqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1759', '下关区', '315', 'xiaguanqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1760', '贾汪区', '316', 'jiawangqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1761', '泉山区', '316', 'quanshanqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1762', '星子县', '349', 'xingzixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1763', '武宁县', '349', 'wuningxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1764', '万年县', '364', 'wannianxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1766', '奉新县', '278', 'fengxinxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1767', '横峰县', '364', 'hengfengxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1768', '东乡县', '226', 'dongxiangxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1769', '丰城市', '278', 'fengchengshi', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1770', '上高县', '278', 'shanggaoxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1771', '宜黄县', '226', 'yihuangxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1772', '永丰县', '318', 'yongfengxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1773', '吉安县', '318', 'jianxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1774', '芦溪县', '350', 'luxixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1775', '万安县', '318', 'wananxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1776', '安远县', '365', 'anyuanxian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('1778', '朝阳县', '280', 'chaoyangxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1780', '兴城市', '319', 'xingchengshi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1781', '庄河市', '167', 'zhuangheshi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1782', '瓦房店市', '167', 'wafangdianshi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1783', '盘山县', '228', 'panshanxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1784', '凤城市', '282', 'fengchengshi', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1785', '鲅鱼圈区', '281', 'bayuquanqu', '3', '', '');INSERT INTO `th_areas` VALUES ('1786', '乌拉特前旗', '169', 'wulateqianqi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1787', '临河区', '169', 'linhequ', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1789', '武川县', '321', 'wuchuanxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1790', '托克托县', '321', 'tuoketuoxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1791', '东胜区', '283', 'dongshengqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1792', '察哈尔右翼前旗', '168', 'chahaeryouyiqianqi', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1793', '吴堡县', '231', 'wubaoxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1794', '横山县', '231', 'hengshanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1795', '安塞县', '284', 'ansaixian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('1796', '吴起县', '284', 'wuqixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1797', '富县', '284', 'fuxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1798', '澄城县', '170', 'chengchengxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1800', '彬县', '323', 'binxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1801', '千阳县', '171', 'qianyangxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1802', '临渭区', '170', 'linweiqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1803', '泾阳县', '323', 'jingyangxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1804', '武功县', '323', 'wugongxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1805', '岐山县', '171', 'qishanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1806', '柞水县', '285', 'zuoshuixian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1807', '佛坪县', '352', 'fopingxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1808', '城固县', '352', 'chengguxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1809', '勉县', '352', 'mianxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('1810', '华阴市', '170', 'huayinshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1811', '户县', '233', 'huxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1812', '汉阴县', '324', 'hanyinxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1813', '韩城市', '170', 'hanchengshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1814', '延川县', '284', 'yanchuanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1815', '成武县', '353', 'chengwuxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1816', '费县', '234', 'feixian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1817', '莒县', '173', 'juxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1818', '泗水县', '286', 'sishuixian', '3', '', '');INSERT INTO `th_areas` VALUES ('1819', '汶上县', '286', 'wenshangxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1820', '郓城县', '353', 'yunchengxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1822', '东阿县', '366', 'dongaxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1823', '临朐县', '287', 'linquxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1824', '昌邑市', '287', 'changyishi', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1825', '市中区', '288', 'shizhongqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1826', '高唐县', '366', 'gaotangxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1827', '济阳县', '288', 'jiyangxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1828', '桓台县', '354', 'huantaixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1829', '广饶县', '174', 'guangraoxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1830', '沾化县', '235', 'zhanhuaxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1831', '胶南市', '236', 'jiaonanshi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1832', '海阳市', '326', 'haiyangshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1833', '文登市', '175', 'wendengshi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1834', '长岛县', '326', 'changdaoxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1835', '市南区', '236', 'shinanqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1836', '莱西市', '236', 'laixishi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1837', '龙口市', '326', 'longkoushi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1838', '李沧区', '236', 'licangqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1839', '杨浦区', '289', 'yangpuqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1840', '普陀区', '289', 'putuoqu', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1841', '松江区', '289', 'songjiangqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1842', '卢湾区', '289', 'luwanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1843', '应县', '237', 'yingxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1844', '左云县', '355', 'zuoyunxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1845', '原平市', '367', 'yuanpingshi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1846', '五寨县', '367', 'wuzhaixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1847', '阳曲县', '176', 'yangquxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1848', '岚县', '327', 'lanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1849', '榆次区', '238', 'yuciqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1850', '平遥县', '238', 'pingyaoxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1851', '交城县', '327', 'jiaochengxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1852', '隰县', '368', 'xixian', '3', '', '');INSERT INTO `th_areas` VALUES ('1853', '屯留县', '356', 'tunliuxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1854', '沁水县', '290', 'qinshuixian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1855', '洪洞县', '368', 'hongdongxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1856', '绛县', '328', 'jiangxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1857', '长治县', '356', 'zhangzhixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1859', '襄汾县', '368', 'xiangfenxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1860', '孝义市', '327', 'xiaoyishi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1861', '青川县', '329', 'qingchuanxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1862', '通江县', '239', 'tongjiangxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1863', '苍溪县', '329', 'cangxixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1864', '蓬安县', '291', 'penganxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1865', '盐亭县', '240', 'yantingxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1867', '宁河县', '332', 'ninghexian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1868', '红桥区', '332', 'hongqiaoqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1869', '和平区', '332', 'hepingqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1870', '静海县', '332', 'jinghaixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1871', '景宁畲族自治县', '292', 'jingningshezuzizhixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1872', '松阳县', '292', 'songyangxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1873', '江山市', '243', 'jiangshanshi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1874', '仙居县', '244', 'xianjuxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1875', '龙游县', '243', 'longyouxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1876', '象山县', '180', 'xiangshanxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1877', '新昌县', '293', 'xinchangxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1878', '临安市', '179', 'linanshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1879', '慈溪市', '180', 'cixishi', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1880', '绍兴县', '293', 'shaoxingxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1881', '金东区', '333', 'jindongqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1882', '瑞安市', '178', 'ruianshi', '3', '', 'R');INSERT INTO `th_areas` VALUES ('1883', '椒江区', '244', 'jiaojiangqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1884', '浦江县', '333', 'pujiangxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1885', '玉环县', '244', 'yuhuanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1886', '拱墅区', '179', 'gongshuqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1887', '江东区', '180', 'jiangdongqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1888', '滨江区', '179', 'binjiangqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1889', '和县', '251', 'hexian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1890', '罗田县', '271', 'luotianxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1891', '黄梅县', '271', 'huangmeixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1892', '彭泽县', '349', 'pengzexian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1893', '五河县', '126', 'wuhexian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1894', '界首市', '128', 'jieshoushi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1895', '宣州区', '190', 'xuanzhouqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1896', '婺源县', '364', 'wuyuanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1898', '密云县', '131', 'miyunxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('1899', '丰宁满族自治县', '207', 'fengningmanzuzizhixian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1900', '城口县', '132', 'chengkouxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1901', '建始县', '373', 'jianshixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1903', '竹溪县', '216', 'zhuxixian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1904', '松溪县', '133', 'songxixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1905', '广昌县', '226', 'guangchangxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1906', '瑞金市', '365', 'ruijinshi', '3', '', 'R');INSERT INTO `th_areas` VALUES ('1907', '资溪县', '226', 'zixixian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1908', '原州区', '246', 'yuanzhouqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1909', '崇信县', '359', 'chongxinxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1910', '成县', '256', 'chengxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('1911', '临武县', '275', 'linwuxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1912', '徐闻县', '198', 'xuwenxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1913', '大余县', '365', 'dayuxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1914', '钟山县', '260', 'zhongshanxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1915', '安龙县', '343', 'anlongxian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('1916', '通道侗族自治县', '363', 'tongdaodongzuzizhixian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1917', '玉屏侗族自治县', '205', 'yupingdongzuzizhixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1918', '金沙县', '206', 'jinshaxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1919', '锦屏县', '342', 'jinpingxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('1920', '唐海县', '265', 'tanghaixian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1921', '故城县', '208', 'guchengxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1922', '左权县', '238', 'zuoquanxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1923', '南乐县', '209', 'nanlexian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1924', '昔阳县', '238', 'xiyangxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1925', '冠县', '366', 'guanxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1926', '汤阴县', '267', 'tangyinxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1927', '兰考县', '210', 'lankaoxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1929', '丹江口市', '216', 'danjiangkoushi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1930', '大悟县', '310', 'dawuxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1931', '芮城县', '328', 'ruichengxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1932', '夏县', '328', 'xiaxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1933', '白河县', '324', 'baihexian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1934', '太仓市', '224', 'taicangshi', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1935', '郯城县', '234', 'tanchengxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1936', '吴兴区', '294', 'wuxingqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1937', '秀洲区', '334', 'xiuzhouqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1938', '桓仁满族自治县', '227', 'huanrenmanzuzizhixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1939', '鄂托克前旗', '283', 'etuokeqianqi', '3', '', 'E');INSERT INTO `th_areas` VALUES ('1940', '青铜峡市', '322', 'qingtongxiashi', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1941', '临猗县', '328', 'linyixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1943', '甘谷县', '196', 'ganguxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1944', '北票市', '280', 'beipiaoshi', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1946', '北镇市', '166', 'beizhenshi', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1947', '商都县', '168', 'shangdouxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1948', '新宾满族自治县', '184', 'xinbinmanzuzizhixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1949', '凤阳县', '189', 'fengyangxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1950', '肥东县', '127', 'feidongxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1951', '无为县', '251', 'wuweixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1952', '桐城市', '130', 'tongchengshi', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1953', '东至县', '299', 'dongzhixian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1954', '太湖县', '130', 'taihuxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1955', '寿县', '298', 'shouxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1956', '旌德县', '190', 'jingdexian', '3', '', '');INSERT INTO `th_areas` VALUES ('1957', '青阳县', '299', 'qingyangxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1959', '顺义区', '131', 'shunyiqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('1960', '海淀区', '131', 'haidianqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1961', '万州区', '132', 'wanzhouqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1962', '渝北区', '132', 'yubeiqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1963', '璧山县', '132', 'bishanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1964', '大足县', '132', 'dazuxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1965', '黔江区', '132', 'qianjiangqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('1966', '武隆县', '132', 'wulongxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1967', '綦江县', '132', 'qijiangxian', '3', '', '');INSERT INTO `th_areas` VALUES ('1968', '垫江县', '132', 'dianjiangxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1969', '巫溪县', '132', 'wuxixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('1970', '渝中区', '132', 'yuzhongqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1971', '大渡口区', '132', 'dadukouqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1972', '光泽县', '133', 'guangzexian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1973', '屏南县', '192', 'pingnanxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1974', '同安区', '194', 'tonganqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('1975', '湖里区', '194', 'huliqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1976', '明溪县', '254', 'mingxixian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('1977', '尤溪县', '254', 'youxixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1978', '连城县', '193', 'lianchengxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1979', '漳平市', '193', 'zhangpingshi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('1980', '闽侯县', '300', 'minhouxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('1981', '惠安县', '134', 'huianxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('1982', '仙游县', '195', 'xianyouxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1983', '平潭县', '300', 'pingtanxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('1984', '佛冈县', '197', 'fogangxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1985', '博罗县', '301', 'boluoxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('1986', '南沙区', '257', 'nanshaqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1987', '电白县', '139', 'dianbaixian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('1988', '恩平市', '302', 'enpingshi', '3', '', 'E');INSERT INTO `th_areas` VALUES ('1989', '信宜市', '139', 'xinyishi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1990', '新会区', '302', 'xinhuiqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('1991', '高要市', '338', 'gaoyaoshi', '3', '', 'G');INSERT INTO `th_areas` VALUES ('1992', '云安县', '258', 'yunanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('1993', '南海区', '138', 'nanhaiqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('1994', '封开县', '338', 'fengkaixian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('1995', '连州市', '197', 'lianzhoushi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1996', '仁化县', '137', 'renhuaxian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('1997', '梅江区', '141', 'meijiangqu', '3', '', 'M');INSERT INTO `th_areas` VALUES ('1998', '连平县', '200', 'lianpingxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('1999', '潮安县', '201', 'chaoanxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2000', '揭西县', '259', 'jiexixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2001', '惠来县', '259', 'huilaixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2002', '海丰县', '339', 'haifengxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2003', '龙岗区', '340', 'longgangqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2004', '遂溪县', '198', 'suixixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2005', '大埔县', '141', 'dapuxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2006', '南澳县', '303', 'nanaoxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2007', '黄埔区', '257', 'huangpuqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2008', '临桂县', '142', 'linguixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2009', '平乐县', '142', 'pinglexian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2010', '东兰县', '143', 'donglanxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2011', '西林县', '203', 'xilinxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2012', '藤县', '304', 'tengxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2013', '马山县', '261', 'mashanxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('2014', '田阳县', '203', 'tianyangxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2017', '天等县', '144', 'tiandengxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2019', '凭祥市', '144', 'pingxiangshi', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2020', '合山市', '202', 'heshanshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2021', '环江毛南族自治县', '143', 'huanjiangmaonanzuzizhixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2022', '象州县', '202', 'xiangzhouxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2023', '石阡县', '205', 'shiqianxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2024', '遵义县', '262', 'zunyixian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2025', '凯里市', '342', 'kailishi', '3', '', 'K');INSERT INTO `th_areas` VALUES ('2026', '修文县', '146', 'xiuwenxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2027', '织金县', '206', 'zhijinxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2028', '剑河县', '342', 'jianhexian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2029', '贞丰县', '343', 'zhenfengxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2030', '惠水县', '306', 'huishuixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2031', '琼中黎族苗族自治县', '11017', 'qiongzhonglizumiaozuzizhixian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2032', '乐东黎族自治县', '11018', 'ledonglizuzizhixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2033', '临高县', '11019', 'lingaoxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2034', '崇礼县', '264', 'chonglixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2035', '青龙满族自治县', '148', 'qinglongmanzuzizhixian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2036', '容城县', '307', 'rongchengxian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('2037', '易县', '307', 'yixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2038', '献县', '149', 'xianxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2039', '高阳县', '307', 'gaoyangxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2040', '安国市', '307', 'anguoshi', '3', '', 'A');INSERT INTO `th_areas` VALUES ('2041', '无极县', '150', 'wujixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2042', '行唐县', '150', 'xingtangxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2043', '鹿泉市', '150', 'luquanshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2044', '南皮县', '149', 'nanpixian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2045', '武邑县', '208', 'wuyixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2046', '冀州市', '208', 'jizhoushi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2047', '赵县', '150', 'zhaoxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2048', '赞皇县', '150', 'zanhuangxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2049', '邢台县', '266', 'xingtaixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2050', '临西县', '266', 'linxixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2051', '曲周县', '151', 'quzhouxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2052', '魏县', '151', 'weixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2053', '磁县', '151', 'cixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2054', '滦县', '265', 'luanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2056', '原阳县', '152', 'yuanyangxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2057', '宜阳县', '153', 'yiyangxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2058', '睢县', '154', 'suixian', '3', '', '');INSERT INTO `th_areas` VALUES ('2059', '商水县', '308', 'shangshuixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2060', '沈丘县', '308', 'shenqiuxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2061', '驿城区', '269', 'yichengqu', '3', '', '');INSERT INTO `th_areas` VALUES ('2062', '舞钢市', '213', 'wugangshi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2064', '内乡县', '309', 'neixiangxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2065', '潢川县', '214', 'huangchuanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2066', '罗山县', '214', 'luoshanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2068', '新蔡县', '269', 'xincaixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2069', '栾川县', '153', 'luanchuanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2070', '郏县', '213', 'jiaxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2071', '湖滨区', '212', 'hubinqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2072', '鄢陵县', '155', 'yanlingxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2073', '沁阳市', '211', 'qinyangshi', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2075', '荥阳市', '268', 'yingyangshi', '3', '', '');INSERT INTO `th_areas` VALUES ('2076', '登封市', '268', 'dengfengshi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2077', '通许县', '210', 'tongxuxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2078', '淇县', '215', 'qixian', '3', '', '');INSERT INTO `th_areas` VALUES ('2079', '孟津县', '153', 'mengjinxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('2080', '钟祥市', '217', 'zhongxiangshi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2081', '东西湖区', '218', 'dongxihuqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2082', '孝昌县', '310', 'xiaochangxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2083', '当阳市', '270', 'dangyangshi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2084', '兴山县', '270', 'xingshanxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2085', '长阳土家族自治县', '270', 'zhangyangtujiazuzizhixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2086', '浠水县', '271', 'xishuixian', '3', '', '');INSERT INTO `th_areas` VALUES ('2087', '咸安区', '362', 'xiananqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2088', '汉南区', '218', 'hannanqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2089', '华容县', '220', 'huarongxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2090', '临澧县', '219', 'linlixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2091', '慈利县', '312', 'cilixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2092', '汨罗市', '220', 'miluoshi', '3', '', '');INSERT INTO `th_areas` VALUES ('2093', '涟源市', '221', 'lianyuanshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2094', '溆浦县', '363', 'xupuxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2095', '衡东县', '159', 'hengdongxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2096', '会同县', '363', 'huitongxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2097', '常宁市', '159', 'changningshi', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2098', '双牌县', '314', 'shuangpaixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2099', '泸溪县', '274', 'luxixian', '3', '', '');INSERT INTO `th_areas` VALUES ('2100', '安乡县', '219', 'anxiangxian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('2101', '桃江县', '272', 'taojiangxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2102', '永顺县', '274', 'yongshunxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2103', '鹤城区', '363', 'hechengqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2104', '邵阳县', '273', 'shaoyangxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2107', '海安县', '161', 'haianxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2108', '大丰市', '223', 'dafengshi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2109', '淮阴区', '162', 'huaiyinqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2110', '宿豫区', '277', 'suyuqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2111', '铜山县', '316', 'tongshanxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2112', '灌云县', '347', 'guanyunxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2113', '常熟市', '224', 'changshushi', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2114', '建湖县', '223', 'jianhuxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2115', '金阊区', '224', 'jinchangqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2116', '溧水县', '315', 'lishuixian', '3', '', '');INSERT INTO `th_areas` VALUES ('2117', '高邮市', '346', 'gaoyoushi', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2118', '金坛市', '348', 'jintanshi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2119', '建邺区', '315', 'jianyequ', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2120', '广陵区', '346', 'guanglingqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2121', '滨湖区', '317', 'binhuqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2122', '新北区', '348', 'xinbeiqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2123', '润州区', '160', 'runzhouqu', '3', '', 'R');INSERT INTO `th_areas` VALUES ('2124', '高港区', '276', 'gaogangqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2125', '余干县', '364', 'yuganxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2126', '安义县', '163', 'anyixian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('2127', '弋阳县', '364', 'yiyangxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2128', '临川区', '226', 'linchuanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2129', '樟树市', '278', 'zhangshushi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2130', '宜丰县', '278', 'yifengxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2131', '吉水县', '318', 'jishuixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2132', '宁都县', '365', 'ningdouxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2133', '赣县', '365', 'ganxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2134', '德安县', '349', 'deanxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2135', '普兰店市', '167', 'pulandianshi', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2136', '海城市', '320', 'haichengshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2139', '杭锦旗', '283', 'hangjinqi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2142', '绥德县', '231', 'suidexian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2143', '子长县', '284', 'zizhangxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2144', '定边县', '231', 'dingbianxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2145', '黄陵县', '284', 'huanglingxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2146', '蒲城县', '170', 'puchengxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2147', '淳化县', '323', 'chunhuaxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2149', '蓝田县', '233', 'lantianxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2150', '兴平市', '323', 'xingpingshi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2151', '扶风县', '171', 'fufengxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2152', '宁陕县', '324', 'ningshanxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2153', '留坝县', '352', 'liubaxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2154', '略阳县', '352', 'lu:eyangxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2155', '榆阳区', '231', 'yuyangqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2156', '黄龙县', '284', 'huanglongxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2157', '高陵县', '233', 'gaolingxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2158', '滕州市', '172', 'tengzhoushi', '3', '', '');INSERT INTO `th_areas` VALUES ('2159', '定陶县', '353', 'dingtaoxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2160', '东明县', '353', 'dongmingxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2161', '曲阜市', '286', 'qufushi', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2162', '沂南县', '234', 'yinanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2164', '平邑县', '234', 'pingyixian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2165', '诸城市', '287', 'zhuchengshi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2166', '梁山县', '286', 'liangshanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2167', '沂源县', '354', 'yiyuanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2169', '青州市', '287', 'qingzhoushi', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2170', '茌平县', '366', 'chipingxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2171', '槐荫区', '288', 'huaiyinqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2172', '平原县', '372', 'pingyuanxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2174', '博兴县', '235', 'boxingxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2175', '邹平县', '235', 'zoupingxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2177', '荣成市', '175', 'rongchengshi', '3', '', 'R');INSERT INTO `th_areas` VALUES ('2179', '阳信县', '235', 'yangxinxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2180', '莱州市', '326', 'laizhoushi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2181', '即墨市', '236', 'jimoshi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2182', '四方区', '236', 'sifangqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2183', '浦东新区', '289', 'pudongxinqu', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2184', '长宁区', '289', 'zhangningqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2185', '山阴县', '237', 'shanyinxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2186', '神池县', '367', 'shenchixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2187', '忻府区', '367', 'xinfuqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2188', '清徐县', '176', 'qingxuxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2189', '离石区', '327', 'lishiqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2190', '沁县', '356', 'qinxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2191', '介休市', '238', 'jiexiushi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2192', '古县', '368', 'guxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2193', '闻喜县', '328', 'wenxixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2195', '娄烦县', '176', 'loufanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2197', '蒲县', '368', 'puxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2198', '高平市', '290', 'gaopingshi', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2199', '交口县', '327', 'jiaokouxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2200', '巴州区', '239', 'bazhouqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2201', '剑阁县', '329', 'jiangexian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2202', '射洪县', '330', 'shehongxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2203', '广安区', '241', 'guanganqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2204', '叙永县', '331', 'xuyongxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2205', '营山县', '291', 'yingshanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2206', '西青区', '332', 'xiqingqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2207', '宝坻区', '332', 'baochiqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2208', '龙泉市', '292', 'longquanshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2209', '文成县', '178', 'wenchengxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2210', '莲都区', '292', 'liandouqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2211', '衢江区', '243', 'qujiangqu', '3', '', '');INSERT INTO `th_areas` VALUES ('2212', '黄岩区', '244', 'huangyanqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2213', '越城区', '293', 'yuechengqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2214', '岱山县', '245', 'daishanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2215', '余姚市', '180', 'yuyaoshi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2216', '富阳市', '179', 'fuyangshi', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2217', '义乌市', '333', 'yiwushi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2218', '瓯海区', '178', 'ouhaiqu', '3', '', '');INSERT INTO `th_areas` VALUES ('2219', '天台县', '244', 'tiantaixian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2220', '德清县', '294', 'deqingxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2221', '北仑区', '180', 'beilunqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2222', '下城区', '179', 'xiachengqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2223', '海曙区', '180', 'haishuqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2224', '泗县', '370', 'sixian', '3', '', '');INSERT INTO `th_areas` VALUES ('2225', '谯城区', '188', 'qiaochengqu', '3', '', '');INSERT INTO `th_areas` VALUES ('2226', '金寨县', '298', 'jinzhaixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2227', '歙县', '252', 'shexian', '3', '', '');INSERT INTO `th_areas` VALUES ('2228', '郎溪县', '190', 'langxixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2229', '来安县', '189', 'laianxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2230', '砀山县', '370', 'dangshanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2231', '湖口县', '349', 'hukouxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2232', '滦平县', '207', 'luanpingxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2233', '涿鹿县', '264', 'zhuoluxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2234', '涿州市', '307', 'zhuozhoushi', '3', '', '');INSERT INTO `th_areas` VALUES ('2235', '宣汉县', '369', 'xuanhanxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2236', '恩施市', '373', 'enshishi', '3', '', 'E');INSERT INTO `th_areas` VALUES ('2237', '武胜县', '241', 'wushengxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2238', '泸县', '331', 'luxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2239', '松桃苗族自治县', '205', 'songtaomiaozuzizhixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2240', '平利县', '324', 'pinglixian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2241', '正安县', '262', 'zhenganxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2242', '紫阳县', '324', 'ziyangxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2243', '福鼎市', '192', 'fudingshi', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2244', '福安市', '192', 'fuanshi', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2245', '武平县', '193', 'wupingxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2246', '云霄县', '255', 'yunxiaoxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2247', '上饶县', '364', 'shangraoxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2248', '镇原县', '135', 'zhenyuanxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2249', '庄浪县', '359', 'zhuanglangxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2250', '西吉县', '246', 'xijixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2251', '灵台县', '359', 'lingtaixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2252', '武都区', '256', 'wuduqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2253', '同心县', '322', 'tongxinxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2255', '博白县', '361', 'bobaixian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2257', '灌阳县', '142', 'guanyangxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2258', '资源县', '142', 'ziyuanxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2259', '平泉县', '207', 'pingquanxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2260', '遵化市', '265', 'zunhuashi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2261', '广灵县', '355', 'guanglingxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2262', '黄骅市', '149', 'huanghuashi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2263', '大城县', '191', 'dachengxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2264', '吴桥县', '149', 'wuqiaoxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2265', '莘县', '366', 'xinxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2266', '繁峙县', '367', 'fanzhixian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2267', '天镇县', '355', 'tianzhenxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2270', '郧县', '216', 'yunxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2272', '潼关县', '170', 'tongguanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2273', '红安县', '271', 'honganxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2274', '阳城县', '290', 'yangchengxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2275', '丹凤县', '285', 'danfengxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2276', '临湘市', '220', 'linxiangshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2277', '青山区', '218', 'qingshanqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2279', '井冈山市', '318', 'jinggangshanshi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2280', '上犹县', '365', 'shangyouxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2281', '临沭县', '234', 'linshuxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2282', '长兴县', '294', 'changxingxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2283', '苍山县', '234', 'cangshanxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2284', '吴江市', '224', 'wujiangshi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2286', '清水河县', '321', 'qingshuihexian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2288', '永宁县', '360', 'yongningxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2289', '河曲县', '367', 'hequxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2290', '兴县', '327', 'xingxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2291', '永和县', '368', 'yonghexian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2292', '乡宁县', '368', 'xiangningxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2293', '永济市', '328', 'yongjishi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2294', '奉贤区', '289', 'fengxianqu', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2295', '台安县', '320', 'taianxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2296', '文县', '256', 'wenxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2298', '肥西县', '127', 'feixixian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2299', '潜山县', '130', 'qianshanxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2300', '铜陵县', '337', 'tonglingxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2301', '石台县', '299', 'shitaixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2302', '望江县', '130', 'wangjiangxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2304', '昌平区', '131', 'changpingqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2305', '丰台区', '131', 'fengtaiqu', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2306', '石柱土家族自治县', '132', 'shizhutujiazuzizhixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2307', '铜梁县', '132', 'tongliangxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2308', '巴南区', '132', 'bananqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2309', '邵武市', '133', 'shaowushi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2310', '建瓯市', '133', 'jianoushi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2311', '南安市', '134', 'nananshi', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2312', '德化县', '134', 'dehuaxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2313', '宁化县', '254', 'ninghuaxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2314', '华安县', '255', 'huaanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2315', '罗源县', '300', 'luoyuanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2316', '仓山区', '300', 'cangshanqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2317', '福清市', '300', 'fuqingshi', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2319', '增城市', '257', 'zengchengshi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2320', '市辖区', '187', 'shixiaqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2321', '阳东县', '199', 'yangdongxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2322', '新兴县', '258', 'xinxingxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2323', '清新县', '197', 'qingxinxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2324', '怀集县', '338', 'huaijixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2325', '兴宁市', '141', 'xingningshi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2326', '翁源县', '137', 'wengyuanxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2327', '东源县', '200', 'dongyuanxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2328', '龙湖区', '303', 'longhuqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2329', '普宁市', '259', 'puningshi', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2330', '惠东县', '301', 'huidongxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2331', '禅城区', '138', 'shanchengqu', '3', '', '');INSERT INTO `th_areas` VALUES ('2332', '白云区', '257', 'baiyunqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2333', '浈江区', '137', 'zhenjiangqu', '3', '', '');INSERT INTO `th_areas` VALUES ('2334', '湘桥区', '201', 'xiangqiaoqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2335', '霞山区', '198', 'xiashanqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2336', '廉江市', '198', 'lianjiangshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2337', '鼎湖区', '338', 'dinghuqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2338', '海珠区', '257', 'haizhuqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2339', '茂南区', '139', 'maonanqu', '3', '', 'M');INSERT INTO `th_areas` VALUES ('2340', '永福县', '142', 'yongfuxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2341', '蒙山县', '304', 'mengshanxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('2342', '凤山县', '143', 'fengshanxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2343', '平果县', '203', 'pingguoxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2344', '横县', '261', 'hengxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2345', '扶绥县', '144', 'fusuixian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2346', '宜州市', '143', 'yizhoushi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2347', '大新县', '144', 'daxinxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2348', '上林县', '261', 'shanglinxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2349', '玉州区', '361', 'yuzhouqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2350', '桂平市', '341', 'guipingshi', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2351', '凤冈县', '262', 'fenggangxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2352', '黄平县', '342', 'huangpingxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2353', '西秀区', '263', 'xixiuqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2354', '六枝特区', '147', 'liuzhitequ', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2356', '都匀市', '306', 'duyunshi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2357', '雷山县', '342', 'leishanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2358', '琼海市', '11020', 'qionghaishi', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2359', '白沙黎族自治县', '11021', 'baishalizuzizhixian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2360', '市辖区', '121', 'shixiaqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2361', '宣化县', '264', 'xuanhuaxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2362', '迁西县', '265', 'qianxixian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2363', '徐水县', '307', 'xushuixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2364', '顺平县', '307', 'shunpingxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2365', '博野县', '307', 'boyexian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2366', '灵寿县', '150', 'lingshouxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2367', '武强县', '208', 'wuqiangxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2368', '辛集市', '150', 'xinjishi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2369', '巨鹿县', '266', 'juluxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2370', '栾城县', '150', 'luanchengxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2371', '临城县', '266', 'linchengxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2372', '永年县', '151', 'yongnianxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2373', '涉县', '151', 'shexian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2374', '任丘市', '149', 'renqiushi', '3', '', 'R');INSERT INTO `th_areas` VALUES ('2375', '新乐市', '150', 'xinleshi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2376', '馆陶县', '151', 'guantaoxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2377', '孟村回族自治县', '149', 'mengcunhuizuzizhixian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('2378', '肃宁县', '149', 'suningxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2379', '昌黎县', '148', 'changlixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2380', '峰峰矿区', '151', 'fengfengkuangqu', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2381', '义马市', '212', 'yimashi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2382', '上蔡县', '269', 'shangcaixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2383', '泌阳县', '269', 'miyangxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('2384', '淅川县', '309', 'xichuanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2385', '正阳县', '269', 'zhengyangxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2386', '光山县', '214', 'guangshanxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2387', '新乡县', '152', 'xinxiangxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2388', '杞县', '210', 'qixian', '3', '', '');INSERT INTO `th_areas` VALUES ('2389', '嵩县', '153', 'songxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2390', '新密市', '268', 'xinmishi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2392', '修武县', '211', 'xiuwuxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2393', '尉氏县', '210', 'weishixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2394', '西华县', '308', 'xihuaxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2395', '襄城县', '155', 'xiangchengxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2396', '浚县', '215', 'junxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2397', '市辖区', '210', 'shixiaqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2398', '孟州市', '211', 'mengzhoushi', '3', '', 'M');INSERT INTO `th_areas` VALUES ('2399', '南漳县', '156', 'nanzhangxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2400', '安陆市', '310', 'anlushi', '3', '', 'A');INSERT INTO `th_areas` VALUES ('2401', '汉川市', '310', 'hanchuanshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2402', '黄州区', '271', 'huangzhouqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2403', '洪山区', '218', 'hongshanqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2405', '宜都市', '270', 'yidoushi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2406', '南县', '272', 'nanxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2408', '望城县', '158', 'wangchengxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2409', '新化县', '221', 'xinhuaxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2410', '中方县', '363', 'zhongfangxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2411', '安仁县', '275', 'anrenxian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('2412', '祁东县', '159', 'qidongxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2413', '桂阳县', '275', 'guiyangxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2414', '桑植县', '312', 'sangzhixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2416', '娄星区', '221', 'louxingqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2417', '绥宁县', '273', 'suiningxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2418', '射阳县', '223', 'sheyangxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2419', '涟水县', '162', 'lianshuixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2420', '宿城区', '277', 'suchengqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2421', '新沂市', '316', 'xinyishi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2422', '如皋市', '161', 'rugaoshi', '3', '', 'R');INSERT INTO `th_areas` VALUES ('2423', '新浦区', '347', 'xinpuqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2424', '仪征市', '346', 'yizhengshi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2425', '洪泽县', '162', 'hongzexian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2426', '秦淮区', '315', 'qinhuaiqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2427', '武进区', '348', 'wujinqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2428', '姜堰市', '276', 'jiangyanshi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2429', '京口区', '160', 'jingkouqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2430', '鼓楼区', '315', 'gulouqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2431', '鼓楼区', '316', 'gulouqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2432', '崇安区', '317', 'chonganqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2433', '永修县', '349', 'yongxiuxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2434', '余江县', '279', 'yujiangxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2435', '进贤县', '163', 'jinxianxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2436', '崇仁县', '226', 'chongrenxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2437', '新干县', '318', 'xinganxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2438', '兴国县', '365', 'xingguoxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2439', '分宜县', '164', 'fenyixian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2441', '岫岩满族自治县', '320', 'xiuyanmanzuzizhixian', '3', '', '');INSERT INTO `th_areas` VALUES ('2442', '杭锦后旗', '169', 'hangjinhouqi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2443', '土默特右旗', '229', 'tumoteyouqi', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2444', '宝塔区', '284', 'baotaqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2445', '志丹县', '284', 'zhidanxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2446', '白水县', '170', 'baishuixian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2448', '太白县', '171', 'taibaixian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2449', '乾县', '323', 'qianxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2450', '凤翔县', '171', 'fengxiangxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2451', '子洲县', '231', 'zizhouxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2452', '巨野县', '353', 'juyexian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2453', '兖州市', '286', 'yanzhoushi', '3', '', '');INSERT INTO `th_areas` VALUES ('2454', '沂水县', '234', 'yishuixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2455', '新泰市', '325', 'xintaishi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2456', '台前县', '209', 'taiqianxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2457', '长清区', '288', 'zhangqingqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2458', '章丘市', '288', 'zhangqiushi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2459', '昌乐县', '287', 'changlexian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2460', '临邑县', '372', 'linyixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2462', '高密市', '287', 'gaomishi', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2463', '栖霞市', '326', 'qixiashi', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2464', '滨城区', '235', 'binchengqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2465', '崂山区', '236', 'laoshanqu', '3', '', '');INSERT INTO `th_areas` VALUES ('2466', '虹口区', '289', 'hongkouqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2467', '徐汇区', '289', 'xuhuiqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2469', '岢岚县', '367', 'kelanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2470', '太谷县', '238', 'taiguxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2471', '汾阳市', '327', 'fenyangshi', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2472', '灵石县', '238', 'lingshixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2473', '安泽县', '368', 'anzexian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('2475', '新绛县', '328', 'xinjiangxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2476', '潞城市', '356', 'luchengshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2477', '曲沃县', '368', 'quwoxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2478', '平昌县', '239', 'pingchangxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2479', '南部县', '291', 'nanbuxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2480', '旺苍县', '329', 'wangcangxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2481', '东丽区', '332', 'dongliqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2482', '南开区', '332', 'nankaiqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2483', '武义县', '333', 'wuyixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2484', '淳安县', '179', 'chunanxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2485', '定海区', '245', 'dinghaiqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2486', '苍南县', '178', 'cangnanxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2487', '乐清市', '178', 'leqingshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2488', '云和县', '292', 'yunhexian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2489', '萧山区', '179', 'xiaoshanqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2490', '路桥区', '244', 'luqiaoqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2491', '海盐县', '334', 'haiyanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2492', '三门县', '244', 'sanmenxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2493', '磐安县', '333', 'pananxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2494', '嵊州市', '293', 'shengzhoushi', '3', '', '');INSERT INTO `th_areas` VALUES ('2495', '灵璧县', '370', 'lingbixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2496', '濉溪县', '253', 'suixixian', '3', '', '');INSERT INTO `th_areas` VALUES ('2497', '明光市', '189', 'mingguangshi', '3', '', 'M');INSERT INTO `th_areas` VALUES ('2498', '霍邱县', '298', 'huoqiuxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2499', '全椒县', '189', 'quanjiaoxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2500', '芜湖县', '129', 'wuhuxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2501', '英山县', '271', 'yingshanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2502', '宁国市', '190', 'ningguoshi', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2503', '浮梁县', '225', 'fuliangxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2504', '麻城市', '271', 'machengshi', '3', '', 'M');INSERT INTO `th_areas` VALUES ('2505', '鹿邑县', '308', 'luyixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2507', '平谷区', '131', 'pingguqu', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2508', '香河县', '191', 'xianghexian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2509', '涞水县', '307', 'laishuixian', '3', '', '');INSERT INTO `th_areas` VALUES ('2510', '固安县', '191', 'guanxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2511', '开江县', '369', 'kaijiangxian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('2512', '大竹县', '369', 'dazhuxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2513', '安岳县', '242', 'anyuexian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('2514', '沿河土家族自治县', '205', 'yanhetujiazuzizhixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2515', '道真仡佬族苗族自治县', '262', 'daozhengelaozumiaozuzizhixian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2516', '桐梓县', '262', 'tongzixian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2517', '合江县', '331', 'hejiangxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2518', '花垣县', '274', 'huayuanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2519', '岚皋县', '324', 'langaoxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2520', '咸丰县', '373', 'xianfengxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2521', '岳池县', '241', 'yuechixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2522', '蓬溪县', '330', 'pengxixian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2523', '巫山县', '132', 'wushanxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2524', '竹山县', '216', 'zhushanxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2525', '浦城县', '133', 'puchengxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2526', '铅山县', '364', 'qianshanxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2527', '上杭县', '193', 'shanghangxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2528', '平和县', '255', 'pinghexian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2529', '寿宁县', '192', 'shouningxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2530', '南城县', '226', 'nanchengxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2531', '会昌县', '365', 'huichangxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2532', '环县', '135', 'huanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2533', '宁县', '135', 'ningxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2534', '静宁县', '359', 'jingningxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2535', '清水县', '196', 'qingshuixian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2536', '徽县', '256', 'huixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2537', '泾源县', '246', 'jingyuanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2538', '苍梧县', '304', 'cangwuxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2539', '江华瑶族自治县', '314', 'jianghuayaozuzizhixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2540', '汝城县', '275', 'ruchengxian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('2541', '龙南县', '365', 'longnanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2542', '南康市', '365', 'nankangshi', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2543', '全州县', '142', 'quanzhouxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2544', '恭城瑶族自治县', '142', 'gongchengyaozuzizhixian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2545', '罗甸县', '306', 'luodianxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2546', '广南县', '177', 'guangnanxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2547', '荔波县', '306', 'liboxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2548', '册亨县', '343', 'cehengxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2549', '黎平县', '342', 'lipingxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2550', '龙胜各族自治县', '142', 'longshenggezuzizhixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2551', '铜仁市', '205', 'tongrenshi', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2552', '大方县', '206', 'dafangxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2553', '天柱县', '342', 'tianzhuxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2554', '凌源市', '280', 'lingyuanshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2555', '灵丘县', '355', 'lingqiuxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2556', '盂县', '357', 'yuxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2557', '无棣县', '235', 'wudixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2558', '景县', '208', 'jingxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2559', '武城县', '372', 'wuchengxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2560', '和顺县', '238', 'heshunxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2561', '清丰县', '209', 'qingfengxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2562', '大同县', '355', 'datongxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2563', '青县', '149', 'qingxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2564', '玉田县', '265', 'yutianxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2565', '东昌府区', '366', 'dongchangfuqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2566', '虞城县', '154', 'yuchengxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2567', '枣阳市', '156', 'zaoyangshi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2568', '大荔县', '170', 'dalixian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2569', '垣曲县', '328', 'yuanquxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2570', '洛南县', '285', 'luonanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2571', '宁陵县', '154', 'ninglingxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2572', '壶关县', '356', 'huguanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2573', '阳新县', '311', 'yangxinxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2574', '洪湖市', '157', 'honghushi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2575', '通城县', '362', 'tongchengxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2576', '镇安县', '285', 'zhenanxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2577', '浏阳市', '158', 'liuyangshi', '3', '', '');INSERT INTO `th_areas` VALUES ('2578', '莲花县', '350', 'lianhuaxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2579', '鱼台县', '286', 'yutaixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2580', '海门市', '161', 'haimenshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2581', '昆山市', '224', 'kunshanshi', '3', '', 'K');INSERT INTO `th_areas` VALUES ('2582', '莒南县', '234', 'junanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2584', '桐乡市', '334', 'tongxiangshi', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2585', '嘉善县', '334', 'jiashanxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2586', '玉山县', '364', 'yushanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2587', '宽甸满族自治县', '282', 'kuandianmanzuzizhixian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('2588', '神木县', '231', 'shenmuxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2589', '凉城县', '168', 'liangchengxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2590', '平罗县', '335', 'pingluoxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2591', '中宁县', '181', 'zhongningxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2592', '灵武市', '360', 'lingwushi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2593', '柳林县', '327', 'liulinxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2594', '西乡县', '352', 'xixiangxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2595', '万荣县', '328', 'wanrongxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2596', '吉县', '368', 'jixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2597', '嵊泗县', '245', 'shengsixian', '3', '', '');INSERT INTO `th_areas` VALUES ('2598', '舒城县', '298', 'shuchengxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2599', '居巢区', '251', 'juchaoqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2600', '凤台县', '250', 'fengtaixian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2601', '南陵县', '129', 'nanlingxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2603', '房山区', '131', 'fangshanqu', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2605', '江北区', '132', 'jiangbeiqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2606', '双桥区', '132', 'shuangqiaoqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2607', '金门县', '134', 'jinmenxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2608', '沙县', '254', 'shaxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2609', '长泰县', '255', 'zhangtaixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2610', '闽清县', '300', 'minqingxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('2611', '马尾区', '300', 'maweiqu', '3', '', 'M');INSERT INTO `th_areas` VALUES ('2612', '台江区', '300', 'taijiangqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2613', '英德市', '197', 'yingdeshi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2614', '五华县', '141', 'wuhuaxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2615', '潮阳区', '303', 'chaoyangqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2616', '惠阳区', '301', 'huiyangqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2617', '宝安区', '340', 'baoanqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2618', '鹤山市', '302', 'heshanshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2619', '清城区', '197', 'qingchengqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2620', '平远县', '141', 'pingyuanxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2621', '坡头区', '198', 'potouqu', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2622', '阳西县', '199', 'yangxixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2623', '荔湾区', '257', 'liwanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2624', '右江区', '203', 'youjiangqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2625', '江州区', '144', 'jiangzhouqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2626', '大化瑶族自治县', '143', 'dahuayaozuzizhixian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2628', '柳江县', '305', 'liujiangxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2629', '罗城仫佬族自治县', '143', 'luochengmulaozuzizhixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2630', '融安县', '305', 'ronganxian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('2631', '福泉市', '306', 'fuquanshi', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2632', '普定县', '263', 'pudingxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2633', '丹寨县', '342', 'danzhaixian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2634', '东方市', '11022', 'dongfangshi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2635', '万全县', '264', 'wanquanxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2636', '唐县', '307', 'tangxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2637', '晋州市', '150', 'jinzhoushi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2638', '南宫市', '266', 'nangongshi', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2639', '任县', '266', 'renxian', '3', '', 'R');INSERT INTO `th_areas` VALUES ('2640', '肥乡县', '151', 'feixiangxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2641', '安平县', '208', 'anpingxian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('2642', '泊头市', '149', 'botoushi', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2644', '柏乡县', '266', 'boxiangxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2645', '鸡泽县', '151', 'jizexian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2646', '唐河县', '309', 'tanghexian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2647', '平舆县', '269', 'pingyuxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2648', '洛宁县', '153', 'luoningxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2649', '鲁山县', '213', 'lushanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2650', '伊川县', '153', 'yichuanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2651', '武陟县', '211', 'wuzhixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2652', '新郑市', '268', 'xinzhengshi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2653', '舞阳县', '344', 'wuyangxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2654', '天门市', '11023', 'tianmenshi', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2655', '远安县', '270', 'yuananxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2657', '蔡甸区', '218', 'caidianqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2658', '沅江市', '272', 'yuanjiangshi', '3', '', '');INSERT INTO `th_areas` VALUES ('2659', '湘潭县', '313', 'xiangtanxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2660', '辰溪县', '363', 'chenxixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2661', '桃源县', '219', 'taoyuanxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2662', '洞口县', '273', 'dongkouxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2663', '东海县', '347', 'donghaixian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2664', '响水县', '223', 'xiangshuixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2665', '张家港市', '224', 'zhangjiagangshi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2666', '邗江区', '346', 'hanjiangqu', '3', '', '');INSERT INTO `th_areas` VALUES ('2667', '金湖县', '162', 'jinhuxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2668', '清浦区', '162', 'qingpuqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2669', '亭湖区', '223', 'tinghuqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2670', '栖霞区', '315', 'qixiaqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2671', '天宁区', '348', 'tianningqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2672', '云龙区', '316', 'yunlongqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2673', '南长区', '317', 'nanzhangqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2674', '渝水区', '164', 'yushuiqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2675', '泰和县', '318', 'taihexian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2676', '大石桥市', '281', 'dashiqiaoshi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2677', '磴口县', '169', 'dengkouxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2678', '三原县', '323', 'sanyuanxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2679', '礼泉县', '323', 'liquanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2680', '洋县', '352', 'yangxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2681', '宜君县', '232', 'yijunxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2682', '眉县', '171', 'meixian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('2683', '米脂县', '231', 'mizhixian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('2684', '牡丹区', '353', 'mudanqu', '3', '', 'M');INSERT INTO `th_areas` VALUES ('2685', '东平县', '325', 'dongpingxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2686', '天桥区', '288', 'tianqiaoqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2687', '禹城市', '372', 'yuchengshi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2688', '高青县', '354', 'gaoqingxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2689', '商河县', '288', 'shanghexian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2690', '利津县', '174', 'lijinxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2691', '胶州市', '236', 'jiaozhoushi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2692', '招远市', '326', 'zhaoyuanshi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2693', '市北区', '236', 'shibeiqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2694', '闸北区', '289', 'zhabeiqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2695', '静乐县', '367', 'jinglexian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2696', '祁县', '238', 'qixian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2697', '浮山县', '368', 'fushanxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2698', '霍州市', '368', 'huozhoushi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2699', '仪陇县', '291', 'yilongxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2700', '河北区', '332', 'hebeiqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2701', '津南区', '332', 'jinnanqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2702', '婺城区', '333', 'wuchengqu', '3', '', '');INSERT INTO `th_areas` VALUES ('2703', '常山县', '243', 'changshanxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2704', '缙云县', '292', 'jinyunxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2705', '平阳县', '178', 'pingyangxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2706', '余杭区', '179', 'yuhangqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2707', '鹿城区', '178', 'luchengqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2708', '诸暨市', '293', 'zhujishi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2709', '鄞州区', '180', 'yinzhouqu', '3', '', '');INSERT INTO `th_areas` VALUES ('2710', '萧县', '370', 'xiaoxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2711', '涡阳县', '188', 'woyangxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2712', '阜南县', '128', 'funanxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2713', '蕲春县', '271', 'qichunxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2714', '休宁县', '252', 'xiuningxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2715', '当涂县', '358', 'dangtuxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2716', '广德县', '190', 'guangdexian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2717', '鄱阳县', '364', 'poyangxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2718', '商城县', '214', 'shangchengxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2719', '九江县', '349', 'jiujiangxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2720', '郸城县', '308', 'danchengxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2721', '三河市', '191', 'sanheshi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2722', '赤城县', '264', 'chichengxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2724', '兴隆县', '207', 'xinglongxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2725', '利川市', '373', 'lichuanshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2726', '龙山县', '274', 'longshanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2727', '习水县', '262', 'xishuixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2728', '万源市', '369', 'wanyuanshi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2729', '印江土家族苗族自治县', '205', 'yinjiangtujiazumiaozuzizhixian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2731', '华蓥市', '241', 'huayingshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2732', '务川仡佬族苗族自治县', '262', 'wuchuangelaozumiaozuzizhixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2733', '达县', '369', 'daxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2734', '神农架林区', '11024', 'shennongjialinqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2735', '黎川县', '226', 'lichuanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2736', '柘荣县', '192', 'zherongxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2737', '政和县', '133', 'zhenghexian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2738', '诏安县', '255', 'zhaoanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2739', '石城县', '365', 'shichengxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2740', '广丰县', '364', 'guangfengxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2741', '永定县', '193', 'yongdingxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2742', '贵溪市', '279', 'guixishi', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2743', '华池县', '135', 'huachixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2744', '泾川县', '359', 'jingchuanxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2745', '彭阳县', '246', 'pengyangxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2746', '张家川回族自治县', '196', 'zhangjiachuanhuizuzizhixian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2747', '两当县', '256', 'liangdangxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2748', '康县', '256', 'kangxian', '3', '', 'K');INSERT INTO `th_areas` VALUES ('2749', '正宁县', '135', 'zhengningxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2750', '八步区', '260', 'babuqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2751', '宜章县', '275', 'yizhangxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2752', '信丰县', '365', 'xinfengxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2753', '萝岗区', '257', 'luogangqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2754', '合浦县', '295', 'hepuxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2755', '陆川县', '361', 'luchuanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2756', '岑溪市', '304', 'cenxishi', '3', '', '');INSERT INTO `th_areas` VALUES ('2757', '澄迈县', '11025', 'chengmaixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2758', '文昌市', '11026', 'wenchangshi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2759', '蓝山县', '314', 'lanshanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2760', '独山县', '306', 'dushanxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2761', '望谟县', '343', 'wangmoxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2762', '从江县', '342', 'congjiangxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2763', '余庆县', '262', 'yuqingxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2764', '毕节市', '206', 'bijieshi', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2765', '镇远县', '342', 'zhenyuanxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2766', '绥中县', '319', 'suizhongxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2768', '庆云县', '372', 'qingyunxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2769', '平定县', '357', 'pingdingxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2770', '黎城县', '356', 'lichengxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2771', '安阳县', '267', 'anyangxian', '3', '', 'A');INSERT INTO `th_areas` VALUES ('2772', '阳高县', '355', 'yanggaoxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2773', '五台县', '367', 'wutaixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2774', '陵县', '372', 'lingxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2775', '封丘县', '152', 'fengqiuxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2776', '商南县', '285', 'shangnanxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2778', '老河口市', '156', 'laohekoushi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2779', '民权县', '154', 'minquanxian', '3', '', 'M');INSERT INTO `th_areas` VALUES ('2780', '泽州县', '290', 'zezhouxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2781', '平陆县', '328', 'pingluxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2782', '范县', '209', 'fanxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2783', '监利县', '157', 'jianlixian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2784', '公安县', '157', 'gonganxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2785', '五峰土家族自治县', '270', 'wufengtujiazuzizhixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2786', '崇阳县', '362', 'chongyangxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2787', '旬阳县', '324', 'xunyangxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2788', '武昌区', '218', 'wuchangqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2789', '醴陵市', '222', 'lilingshi', '3', '', '');INSERT INTO `th_areas` VALUES ('2790', '万载县', '278', 'wanzaixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2791', '单县', '353', 'danxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2792', '吴中区', '224', 'wuzhongqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2793', '嘉定区', '289', 'jiadingqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2794', '德兴市', '364', 'dexingshi', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2795', '准格尔旗', '283', 'zhungeerqi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2796', '乌审旗', '283', 'wushenqi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2797', '贺兰县', '360', 'helanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2798', '临县', '327', 'linxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2799', '宜川县', '284', 'yichuanxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2800', '石楼县', '327', 'shilouxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2801', '平湖市', '334', 'pinghushi', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2803', '龙海市', '255', 'longhaishi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2804', '晋安区', '300', 'jinanqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2805', '龙门县', '301', 'longmenxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2806', '武江区', '137', 'wujiangqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2807', '澄海区', '303', 'chenghaiqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2808', '凌云县', '203', 'lingyunxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2809', '鹿寨县', '305', 'luzhaixian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2810', '望都县', '307', 'wangdouxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2811', '广宗县', '266', 'guangzongxian', '3', '', 'G');INSERT INTO `th_areas` VALUES ('2812', '禹州市', '155', 'yuzhoushi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2813', '叶县', '213', 'yexian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2814', '硚口区', '218', 'qiaokouqu', '3', '', '');INSERT INTO `th_areas` VALUES ('2815', '湘乡市', '313', 'xiangxiangshi', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2816', '衡阳县', '159', 'hengyangxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2817', '崇川区', '161', 'chongchuanqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2818', '盐都区', '223', 'yandouqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2819', '江阴市', '317', 'jiangyinshi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2820', '扬中市', '160', 'yangzhongshi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2821', '白下区', '315', 'baixiaqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2822', '杨陵区', '323', 'yanglingqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2823', '肥城市', '325', 'feichengshi', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2824', '历城区', '288', 'lichengqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2825', '城阳区', '236', 'chengyangqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2826', '静安区', '289', 'jinganqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2827', '河东区', '332', 'hedongqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2828', '建德市', '179', 'jiandeshi', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2829', '永嘉县', '178', 'yongjiaxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2830', '永康市', '333', 'yongkangshi', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2831', '龙湾区', '178', 'longwanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2832', '江北区', '180', 'jiangbeiqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2833', '奉化市', '180', 'fenghuashi', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2834', '海宁市', '334', 'hainingshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2835', '上城区', '179', 'shangchengqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2836', '埇桥区', '370', 'yongqiaoqu', '3', '', '');INSERT INTO `th_areas` VALUES ('2837', '临泉县', '128', 'linquanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2838', '祁门县', '252', 'qimenxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2839', '怀来县', '264', 'huailaixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2840', '保靖县', '274', 'baojingxian', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2841', '寻乌县', '365', 'xunwuxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2842', '南丰县', '226', 'nanfengxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2843', '合水县', '135', 'heshuixian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2845', '华亭县', '359', 'huatingxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2846', '资兴市', '275', 'zixingshi', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2847', '全南县', '365', 'quannanxian', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2848', '崇义县', '365', 'chongyixian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2849', '北流市', '361', 'beiliushi', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2850', '宁远县', '314', 'ningyuanxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2851', '富宁县', '177', 'funingxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2852', '新宁县', '273', 'xinningxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2853', '平塘县', '306', 'pingtangxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2854', '赤水市', '262', 'chishuishi', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2855', '岑巩县', '342', 'cengongxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2856', '仁怀市', '262', 'renhuaishi', '3', '', 'R');INSERT INTO `th_areas` VALUES ('2857', '霸州市', '191', 'bazhoushi', '3', '', 'B');INSERT INTO `th_areas` VALUES ('2858', '乐陵市', '372', 'lelingshi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2859', '武乡县', '356', 'wuxiangxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2860', '林州市', '267', 'linzhoushi', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2861', '滦南县', '265', 'luannanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2862', '浑源县', '355', 'hunyuanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2863', '夏津县', '372', 'xiajinxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2864', '内黄县', '267', 'neihuangxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2865', '建昌县', '319', 'jianchangxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2866', '曾都区', '371', 'cengduqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2867', '陵川县', '290', 'lingchuanxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2868', '房县', '216', 'fangxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2869', '松滋市', '157', 'songzishi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2870', '武穴市', '271', 'wuxueshi', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2871', '赤壁市', '362', 'chibishi', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2872', '宣恩县', '373', 'xuanenxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2873', '山阳县', '285', 'shanyangxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2874', '石首市', '157', 'shishoushi', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2875', '修水县', '349', 'xiushuixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2876', '遂川县', '318', 'suichuanxian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('2877', '袁州区', '278', 'yuanzhouqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2878', '永新县', '318', 'yongxinxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2879', '微山县', '286', 'weishanxian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2880', '金乡县', '286', 'jinxiangxian', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2881', '新建县', '163', 'xinjianxian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2882', '辽阳县', '351', 'liaoyangxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('2883', '阿拉善左旗', '230', 'alashanzuoqi', '3', '', 'A');INSERT INTO `th_areas` VALUES ('2884', '和林格尔县', '321', 'helingeerxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2885', '丰镇市', '168', 'fengzhenshi', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2886', '府谷县', '231', 'fuguxian', '3', '', 'F');INSERT INTO `th_areas` VALUES ('2887', '永寿县', '323', 'yongshouxian', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('2888', '镇巴县', '352', 'zhenbaxian', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('2889', '南郑县', '352', 'nanzhengxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2890', '大宁县', '368', 'daningxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2891', '河津市', '328', 'hejinshi', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2892', '青浦区', '289', 'qingpuqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('2893', '汉阳区', '218', 'hanyangqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2894', '泰兴市', '276', 'taixingshi', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2895', '惠山区', '317', 'huishanqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2896', '黄浦区', '289', 'huangpuqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2897', '江宁区', '315', 'jiangningqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('2898', '朝阳区', '131', 'chaoyangqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('2899', '武清区', '332', 'wuqingqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('2900', '定南县', '365', 'dingnanxian', '3', '', 'D');INSERT INTO `th_areas` VALUES ('2901', '新晃侗族自治县', '363', 'xinhuangdongzuzizhixian', '3', '', 'X');INSERT INTO `th_areas` VALUES ('2902', '宁津县', '372', 'ningjinxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2903', '平顺县', '356', 'pingshunxian', '3', '', 'P');INSERT INTO `th_areas` VALUES ('2904', '濮阳县', '209', 'puyangxian', '3', '', '');INSERT INTO `th_areas` VALUES ('2905', '鹤峰县', '373', 'hefengxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('2906', '铜鼓县', '278', 'tongguxian', '3', '', 'T');INSERT INTO `th_areas` VALUES ('2907', '宁强县', '352', 'ningqiangxian', '3', '', 'N');INSERT INTO `th_areas` VALUES ('2908', '崇明县', '289', 'chongmingxian', '3', '', 'C');INSERT INTO `th_areas` VALUES ('6003', '市辖区', '1277', 'shixiaqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('6552', '罗庄区', '234', 'luozhuangqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('6553', '山亭区', '172', 'shantingqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('6554', '市中区', '172', 'shizhongqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('6557', '河东区', '234', 'hedongqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('6573', '任城区', '286', 'renchengqu', '3', '', 'R');INSERT INTO `th_areas` VALUES ('6582', '钢城区', '124', 'gangchengqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('6587', '岱岳区', '325', 'daiyuequ', '3', '', '');INSERT INTO `th_areas` VALUES ('6588', '泰山区', '325', 'taishanqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('6592', '博山区', '354', 'boshanqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('6594', '莱城区', '124', 'laichengqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('6599', '淄川区', '354', 'zichuanqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('6603', '周村区', '354', 'zhoucunqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('6621', '张店区', '354', 'zhangdianqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('6622', '临淄区', '354', 'linziqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('6627', '市中区', '286', 'shizhongqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('6628', '潍城区', '287', 'weichengqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('6630', '兰山区', '234', 'lanshanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('6631', '奎文区', '287', 'kuiwenqu', '3', '', 'K');INSERT INTO `th_areas` VALUES ('6632', '坊子区', '287', 'fangziqu', '3', '', 'F');INSERT INTO `th_areas` VALUES ('7609', '薛城区', '172', 'xuechengqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('7612', '峄城区', '172', 'yichengqu', '3', '', '');INSERT INTO `th_areas` VALUES ('7613', '台儿庄区', '172', 'taierzhuangqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('7762', '通州区', '161', 'tongzhouqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('7768', '东港区', '173', 'donggangqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('7775', '莱山区', '326', 'laishanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('7832', '寒亭区', '287', 'hantingqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('7833', '东营区', '174', 'dongyingqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('7841', '福山区', '326', 'fushanqu', '3', '', 'F');INSERT INTO `th_areas` VALUES ('7857', '岚山区', '173', 'lanshanqu', '3', '', '');INSERT INTO `th_areas` VALUES ('7887', '河口区', '174', 'hekouqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('7889', '牟平区', '326', 'moupingqu', '3', '', 'M');INSERT INTO `th_areas` VALUES ('7923', '芝罘区', '326', 'zhifuqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('7924', '大通区', '250', 'datongqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('7925', '田家庵区', '250', 'tianjiaanqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('7926', '庐阳区', '127', 'luyangqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('7927', '瑶海区', '127', 'yaohaiqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('7928', '蜀山区', '127', 'shushanqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('7929', '金安区', '298', 'jinanqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('7930', '裕安区', '298', 'yuanqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('7931', '弋江区', '129', 'yijiangqu', '3', '', '');INSERT INTO `th_areas` VALUES ('7932', '三山区', '129', 'sanshanqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('7933', '镜湖区', '129', 'jinghuqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('7934', '黄山区', '252', 'huangshanqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('7935', '徽州区', '252', 'huizhouqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('7936', '屯溪区', '252', 'tunxiqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('7937', '谢家集区', '250', 'xiejiajiqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('7938', '包河区', '127', 'baohequ', '3', '', 'B');INSERT INTO `th_areas` VALUES ('7939', '鸠江区', '129', 'jiujiangqu', '3', '', '');INSERT INTO `th_areas` VALUES ('7940', '颍东区', '128', 'yingdongqu', '3', '', '');INSERT INTO `th_areas` VALUES ('7941', '宜秀区', '130', 'yixiuqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('7942', '大观区', '130', 'daguanqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('7943', '淮上区', '126', 'huaishangqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('7944', '颍泉区', '128', 'yingquanqu', '3', '', '');INSERT INTO `th_areas` VALUES ('7945', '潘集区', '250', 'panjiqu', '3', '', 'P');INSERT INTO `th_areas` VALUES ('7946', '八公山区', '250', 'bagongshanqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('7947', '禹会区', '126', 'yuhuiqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('7948', '颍州区', '128', 'yingzhouqu', '3', '', '');INSERT INTO `th_areas` VALUES ('7949', '琅琊区', '189', 'langyaqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('7950', '迎江区', '130', 'yingjiangqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('7951', '蚌山区', '126', 'bangshanqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('7952', '龙子湖区', '126', 'longzihuqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('7953', '烈山区', '253', 'lieshanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('7954', '狮子山区', '337', 'shizishanqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('7955', '铜官山区', '337', 'tongguanshanqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('7956', '荔城区', '195', 'lichengqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('7957', '城厢区', '195', 'chengxiangqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('7958', '秀屿区', '195', 'xiuyuqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('7959', '芗城区', '255', 'xiangchengqu', '3', '', '');INSERT INTO `th_areas` VALUES ('7960', '泉港区', '134', 'quangangqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('7961', '龙文区', '255', 'longwenqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('7962', '涵江区', '195', 'hanjiangqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('7963', '洛江区', '134', 'luojiangqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('7964', '三元区', '254', 'sanyuanqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('7965', '梅列区', '254', 'meiliequ', '3', '', 'M');INSERT INTO `th_areas` VALUES ('7966', '鲤城区', '134', 'lichengqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('7967', '丰泽区', '134', 'fengzequ', '3', '', 'F');INSERT INTO `th_areas` VALUES ('7968', '白银区', '35', 'baiyinqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('7969', '西固区', '36', 'xiguqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('7970', '安宁区', '36', 'anningqu', '3', '', 'A');INSERT INTO `th_areas` VALUES ('7971', '秦州区', '196', 'qinzhouqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('7972', '七里河区', '36', 'qilihequ', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('7973', '城关区', '36', 'chengguanqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('7974', '覃塘区', '341', 'tantangqu', '3', '', '');INSERT INTO `th_areas` VALUES ('7975', '西乡塘区', '261', 'xixiangtangqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('7976', '邕宁区', '261', 'yongningqu', '3', '', '');INSERT INTO `th_areas` VALUES ('7977', '良庆区', '261', 'liangqingqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('7978', '江南区', '261', 'jiangnanqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('7979', '钦南区', '145', 'qinnanqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('7980', '防城区', '204', 'fangchengqu', '3', '', 'F');INSERT INTO `th_areas` VALUES ('7981', '钦北区', '145', 'qinbeiqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('7982', '银海区', '295', 'yinhaiqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('7983', '港口区', '204', 'gangkouqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('7984', '叠彩区', '142', 'diecaiqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('7985', '秀峰区', '142', 'xiufengqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('7986', '港南区', '341', 'gangnanqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('7987', '青秀区', '261', 'qingxiuqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('7988', '海城区', '295', 'haichengqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('7989', '港北区', '341', 'gangbeiqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('7990', '柳北区', '305', 'liubeiqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('7991', '兴宁区', '261', 'xingningqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('7992', '柳南区', '305', 'liunanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('7993', '城中区', '305', 'chengzhongqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('7994', '鱼峰区', '305', 'yufengqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('7995', '象山区', '142', 'xiangshanqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('7996', '七星区', '142', 'qixingqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('7997', '雁山区', '142', 'yanshanqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('7998', '长洲区', '304', 'zhangzhouqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('7999', '汇川区', '262', 'huichuanqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8000', '红花岗区', '262', 'honghuagangqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8001', '白云区', '146', 'baiyunqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('8002', '云岩区', '146', 'yunyanqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8003', '花溪区', '146', 'huaxiqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8004', '小河区', '146', 'xiaohequ', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8005', '南明区', '146', 'nanmingqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('8006', '琼山区', '125', 'qiongshanqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('8007', '双桥区', '207', 'shuangqiaoqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8008', '双滦区', '207', 'shuangluanqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8009', '桥西区', '264', 'qiaoxiqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('8010', '桥东区', '264', 'qiaodongqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('8011', '桥东区', '266', 'qiaodongqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('8012', '山海关区', '148', 'shanhaiguanqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8013', '海港区', '148', 'haigangqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8014', '新市区', '307', 'xinshiqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8015', '新华区', '150', 'xinhuaqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8016', '开平区', '265', 'kaipingqu', '3', '', 'K');INSERT INTO `th_areas` VALUES ('8017', '路北区', '265', 'lubeiqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8018', '北市区', '307', 'beishiqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('8019', '桥东区', '150', 'qiaodongqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('8020', '丛台区', '151', 'congtaiqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('8021', '古冶区', '265', 'guyequ', '3', '', 'G');INSERT INTO `th_areas` VALUES ('8022', '南市区', '307', 'nanshiqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('8023', '长安区', '150', 'zhanganqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('8024', '桥西区', '150', 'qiaoxiqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('8025', '裕华区', '150', 'yuhuaqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8026', '北戴河区', '148', 'beidaihequ', '3', '', 'B');INSERT INTO `th_areas` VALUES ('8027', '路南区', '265', 'lunanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8028', '运河区', '149', 'yunhequ', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8029', '新华区', '149', 'xinhuaqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8030', '复兴区', '151', 'fuxingqu', '3', '', 'F');INSERT INTO `th_areas` VALUES ('8031', '桥西区', '266', 'qiaoxiqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('8032', '乌伊岭区', '40', 'wuyilingqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8033', '汤旺河区', '40', 'tangwanghequ', '3', '', 'T');INSERT INTO `th_areas` VALUES ('8034', '新青区', '40', 'xinqingqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8035', '红星区', '40', 'hongxingqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8036', '美溪区', '40', 'meixiqu', '3', '', 'M');INSERT INTO `th_areas` VALUES ('8037', '五营区', '40', 'wuyingqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8038', '友好区', '40', 'youhaoqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8039', '东山区', '43', 'dongshanqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8040', '金山屯区', '40', 'jinshantunqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8041', '南岔区', '40', 'nanchaqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('8042', '乌马河区', '40', 'wumahequ', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8043', '翠峦区', '40', 'cuiluanqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('8044', '茄子河区', '47', 'qiezihequ', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('8045', '红岗区', '50', 'honggangqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8046', '让胡路区', '50', 'ranghuluqu', '3', '', 'R');INSERT INTO `th_areas` VALUES ('8047', '滴道区', '46', 'didaoqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8048', '阳明区', '49', 'yangmingqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8049', '东安区', '49', 'donganqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8050', '西安区', '49', 'xianqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8051', '爱民区', '49', 'aiminqu', '3', '', 'A');INSERT INTO `th_areas` VALUES ('8052', '上甘岭区', '40', 'shangganlingqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8053', '昂昂溪区', '41', 'angangxiqu', '3', '', 'A');INSERT INTO `th_areas` VALUES ('8054', '铁锋区', '41', 'tiefengqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('8055', '龙沙区', '41', 'longshaqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8056', '萨尔图区', '50', 'saertuqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8057', '城子河区', '46', 'chengzihequ', '3', '', 'C');INSERT INTO `th_areas` VALUES ('8058', '鸡冠区', '46', 'jiguanqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8059', '带岭区', '40', 'dailingqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8060', '龙凤区', '50', 'longfengqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8061', '梅里斯达斡尔族区', '41', 'meilisidawoerzuqu', '3', '', 'M');INSERT INTO `th_areas` VALUES ('8062', '富拉尔基区', '41', 'fulaerjiqu', '3', '', 'F');INSERT INTO `th_areas` VALUES ('8063', '四方台区', '45', 'sifangtaiqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8064', '尖山区', '45', 'jianshanqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8065', '兴山区', '43', 'xingshanqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8066', '向阳区', '43', 'xiangyangqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8067', '工农区', '43', 'gongnongqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('8068', '恒山区', '46', 'hengshanqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8069', '岭东区', '45', 'lingdongqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8070', '麻山区', '46', 'mashanqu', '3', '', 'M');INSERT INTO `th_areas` VALUES ('8071', '建华区', '41', 'jianhuaqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8072', '桃山区', '47', 'taoshanqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('8073', '宝山区', '45', 'baoshanqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('8074', '梨树区', '46', 'lishuqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8075', '西林区', '40', 'xilinqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8076', '新兴区', '47', 'xinxingqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8077', '伊春区', '40', 'yichunqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8078', '南山区', '43', 'nanshanqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('8079', '兴安区', '43', 'xinganqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8080', '龙安区', '267', 'longanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8081', '金水区', '268', 'jinshuiqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8082', '管城回族区', '268', 'guanchenghuizuqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('8083', '二七区', '268', 'erqiqu', '3', '', 'E');INSERT INTO `th_areas` VALUES ('8084', '中原区', '268', 'zhongyuanqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('8085', '睢阳区', '154', 'suiyangqu', '3', '', '');INSERT INTO `th_areas` VALUES ('8086', '卧龙区', '309', 'wolongqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8087', '平桥区', '214', 'pingqiaoqu', '3', '', 'P');INSERT INTO `th_areas` VALUES ('8088', '凤泉区', '152', 'fengquanqu', '3', '', 'F');INSERT INTO `th_areas` VALUES ('8089', '宛城区', '309', 'wanchengqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8090', '牧野区', '152', 'muyequ', '3', '', 'M');INSERT INTO `th_areas` VALUES ('8091', '中站区', '211', 'zhongzhanqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('8092', '涧西区', '153', 'jianxiqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8093', '洛龙区', '153', 'luolongqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8094', '新华区', '213', 'xinhuaqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8095', '解放区', '211', 'jiefangqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8096', '山阳区', '211', 'shanyangqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8097', '西工区', '153', 'xigongqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8098', '湛河区', '213', 'zhanhequ', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('8099', '鹤山区', '215', 'heshanqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8100', '马村区', '211', 'macunqu', '3', '', 'M');INSERT INTO `th_areas` VALUES ('8101', '郾城区', '344', 'yanchengqu', '3', '', '');INSERT INTO `th_areas` VALUES ('8102', '卫东区', '213', 'weidongqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8103', '山城区', '215', 'shanchengqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8104', '淇滨区', '215', 'qibinqu', '3', '', '');INSERT INTO `th_areas` VALUES ('8105', '召陵区', '344', 'zhaolingqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('8106', '源汇区', '344', 'yuanhuiqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8107', '红旗区', '152', 'hongqiqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8108', '卫滨区', '152', 'weibinqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8109', '惠济区', '268', 'huijiqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8110', '老城区', '153', 'laochengqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8111', '瀍河回族区', '153', 'chanhehuizuqu', '3', '', '');INSERT INTO `th_areas` VALUES ('8112', '樊城区', '156', 'fanchengqu', '3', '', 'F');INSERT INTO `th_areas` VALUES ('8113', '东宝区', '217', 'dongbaoqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8114', '襄城区', '156', 'xiangchengqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8115', '夷陵区', '270', 'yilingqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8116', '掇刀区', '217', 'duodaoqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8117', '西陵区', '270', 'xilingqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8118', '点军区', '270', 'dianjunqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8119', '伍家岗区', '270', 'wujiagangqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8120', '西塞山区', '311', 'xisaishanqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8121', '华容区', '122', 'huarongqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8122', '梁子湖区', '122', 'liangzihuqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8123', '沙市区', '157', 'shashiqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8124', '荆州区', '157', 'jingzhouqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8125', '鄂城区', '122', 'echengqu', '3', '', 'E');INSERT INTO `th_areas` VALUES ('8126', '张湾区', '216', 'zhangwanqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('8127', '铁山区', '311', 'tieshanqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('8128', '下陆区', '311', 'xialuqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8129', '猇亭区', '270', 'yaotingqu', '3', '', '');INSERT INTO `th_areas` VALUES ('8130', '黄石港区', '311', 'huangshigangqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8131', '云溪区', '220', 'yunxiqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8132', '君山区', '220', 'junshanqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8133', '武陵源区', '312', 'wulingyuanqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8134', '资阳区', '272', 'ziyangqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('8135', '开福区', '158', 'kaifuqu', '3', '', 'K');INSERT INTO `th_areas` VALUES ('8136', '芙蓉区', '158', 'furongqu', '3', '', '');INSERT INTO `th_areas` VALUES ('8137', '岳麓区', '158', 'yueluqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8138', '雨花区', '158', 'yuhuaqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8139', '天心区', '158', 'tianxinqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('8140', '冷水滩区', '314', 'lengshuitanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8141', '零陵区', '314', 'linglingqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8142', '永定区', '312', 'yongdingqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8143', '北塔区', '273', 'beitaqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('8144', '岳塘区', '313', 'yuetangqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8145', '石峰区', '222', 'shifengqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8146', '双清区', '273', 'shuangqingqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8147', '荷塘区', '222', 'hetangqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8148', '天元区', '222', 'tianyuanqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('8149', '大祥区', '273', 'daxiangqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8150', '岳阳楼区', '220', 'yueyanglouqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8151', '赫山区', '272', 'heshanqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8152', '芦淞区', '222', 'lusongqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8153', '石鼓区', '159', 'shiguqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8154', '蒸湘区', '159', 'zhengxiangqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('8155', '雨湖区', '313', 'yuhuqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8156', '珠晖区', '159', 'zhuhuiqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('8157', '武陵区', '219', 'wulingqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8158', '雁峰区', '159', 'yanfengqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8159', '青山湖区', '163', 'qingshanhuqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('8160', '安源区', '350', 'anyuanqu', '3', '', 'A');INSERT INTO `th_areas` VALUES ('8161', '青原区', '318', 'qingyuanqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('8162', '湾里区', '163', 'wanliqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8163', '昌江区', '225', 'changjiangqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('8164', '浔阳区', '349', 'xunyangqu', '3', '', '');INSERT INTO `th_areas` VALUES ('8165', '西湖区', '163', 'xihuqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8166', '东湖区', '163', 'donghuqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8167', '吉州区', '318', 'jizhouqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8168', '珠山区', '225', 'zhushanqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('8169', '青云谱区', '163', 'qingyunpuqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('8170', '昌邑区', '55', 'changyiqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('8171', '龙潭区', '55', 'longtanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8172', '丰满区', '55', 'fengmanqu', '3', '', 'F');INSERT INTO `th_areas` VALUES ('8173', '西安区', '183', 'xianqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8174', '江源区', '57', 'jiangyuanqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8175', '浑江区', '57', 'hunjiangqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8178', '铁西区', '56', 'tiexiqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('8179', '船营区', '55', 'chuanyingqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('8180', '铁东区', '56', 'tiedongqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('8181', '龙山区', '183', 'longshanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8182', '顺城区', '184', 'shunchengqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8183', '明山区', '227', 'mingshanqu', '3', '', 'M');INSERT INTO `th_areas` VALUES ('8184', '西市区', '281', 'xishiqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8185', '老边区', '281', 'laobianqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8186', '金州区', '167', 'jinzhouqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8187', '甘井子区', '167', 'ganjingziqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('8188', '西岗区', '167', 'xigangqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8189', '中山区', '167', 'zhongshanqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('8190', '沙河口区', '167', 'shahekouqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8191', '旅顺口区', '167', 'lu:shunkouqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8192', '太和区', '166', 'taihequ', '3', '', 'T');INSERT INTO `th_areas` VALUES ('8193', '站前区', '281', 'zhanqianqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('8194', '太子河区', '351', 'taizihequ', '3', '', 'T');INSERT INTO `th_areas` VALUES ('8195', '兴隆台区', '228', 'xinglongtaiqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8196', '双台子区', '228', 'shuangtaiziqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8197', '古塔区', '166', 'gutaqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('8198', '白塔区', '351', 'baitaqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('8199', '文圣区', '351', 'wenshengqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8200', '千山区', '320', 'qianshanqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('8201', '立山区', '320', 'lishanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8202', '铁西区', '320', 'tiexiqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('8203', '凌河区', '166', 'linghequ', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8204', '连山区', '319', 'lianshanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8205', '宏伟区', '351', 'hongweiqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8206', '铁东区', '320', 'tiedongqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('8207', '龙港区', '319', 'longgangqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8208', '东洲区', '184', 'dongzhouqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8209', '新抚区', '184', 'xinfuqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8210', '海州区', '59', 'haizhouqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8211', '细河区', '59', 'xihequ', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8212', '龙城区', '280', 'longchengqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8213', '南票区', '319', 'nanpiaoqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('8214', '太平区', '59', 'taipingqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('8215', '双塔区', '280', 'shuangtaqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8216', '平山区', '227', 'pingshanqu', '3', '', 'P');INSERT INTO `th_areas` VALUES ('8217', '振安区', '282', 'zhenanqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('8218', '新邱区', '59', 'xinqiuqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8219', '溪湖区', '227', 'xihuqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8220', '望花区', '184', 'wanghuaqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8221', '南芬区', '227', 'nanfenqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('8222', '元宝区', '282', 'yuanbaoqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8223', '振兴区', '282', 'zhenxingqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('8224', '银州区', '60', 'yinzhouqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8225', '石拐区', '229', 'shiguaiqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8226', '九原区', '229', 'jiuyuanqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8227', '东河区', '229', 'donghequ', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8228', '海南区', '123', 'hainanqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8229', '赛罕区', '321', 'saihanqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8230', '玉泉区', '321', 'yuquanqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8231', '新城区', '321', 'xinchengqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8232', '昆都仑区', '229', 'kundulunqu', '3', '', 'K');INSERT INTO `th_areas` VALUES ('8233', '青山区', '229', 'qingshanqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('8234', '海勃湾区', '123', 'haibowanqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8235', '回民区', '321', 'huiminqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8236', '乌达区', '123', 'wudaqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8237', '金凤区', '360', 'jinfengqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8238', '城北区', '66', 'chengbeiqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('8239', '城中区', '66', 'chengzhongqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('8240', '城西区', '66', 'chengxiqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('8241', '城东区', '66', 'chengdongqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('8242', '印台区', '232', 'yintaiqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8243', '王益区', '232', 'wangyiqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8244', '耀州区', '232', 'yaozhouqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8245', '陈仓区', '171', 'chencangqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('8246', '临潼区', '233', 'lintongqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8247', '灞桥区', '233', 'baqiaoqu', '3', '', '');INSERT INTO `th_areas` VALUES ('8248', '长安区', '233', 'zhanganqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('8249', '秦都区', '323', 'qindouqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('8250', '渭城区', '323', 'weichengqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8251', '渭滨区', '171', 'weibinqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8252', '金台区', '171', 'jintaiqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8253', '未央区', '233', 'weiyangqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8254', '阎良区', '233', 'yanliangqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8255', '莲湖区', '233', 'lianhuqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8256', '雁塔区', '233', 'yantaqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8257', '碑林区', '233', 'beilinqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('8258', '新城区', '233', 'xinchengqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8259', '平鲁区', '237', 'pingluqu', '3', '', 'P');INSERT INTO `th_areas` VALUES ('8260', '朔城区', '237', 'shuochengqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8261', '南郊区', '355', 'nanjiaoqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('8262', '郊区', '356', 'jiaoqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8263', '尖草坪区', '176', 'jiancaopingqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8264', '郊区', '357', 'jiaoqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8265', '新荣区', '355', 'xinrongqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8266', '城区', '355', 'chengqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('8267', '万柏林区', '176', 'wanbolinqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8268', '杏花岭区', '176', 'xinghualingqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8269', '晋源区', '176', 'jinyuanqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8270', '城区', '356', 'chengqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('8271', '迎泽区', '176', 'yingzequ', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8272', '小店区', '176', 'xiaodianqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8273', '矿区', '357', 'kuangqu', '3', '', 'K');INSERT INTO `th_areas` VALUES ('8274', '城区', '357', 'chengqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('8275', '朝天区', '329', 'chaotianqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('8276', '利州区', '329', 'lizhouqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8277', '游仙区', '240', 'youxianqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8278', '顺庆区', '291', 'shunqingqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8279', '涪城区', '240', 'fuchengqu', '3', '', 'F');INSERT INTO `th_areas` VALUES ('8280', '市中区', '248', 'shizhongqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8281', '大安区', '78', 'daanqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8282', '市中区', '79', 'shizhongqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8283', '龙马潭区', '331', 'longmatanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8284', '江阳区', '331', 'jiangyangqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8285', '纳溪区', '331', 'naxiqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('8286', '沿滩区', '78', 'yantanqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8287', '西区', '81', 'xiqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8288', '沙湾区', '79', 'shawanqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8289', '东区', '81', 'dongqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8290', '元坝区', '329', 'yuanbaqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8291', '高坪区', '291', 'gaopingqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('8292', '五通桥区', '79', 'wutongqiaoqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8293', '贡井区', '78', 'gongjingqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('8294', '自流井区', '78', 'ziliujingqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('8295', '水磨沟区', '92', 'shuimogouqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8296', '米东区', '92', 'midongqu', '3', '', 'M');INSERT INTO `th_areas` VALUES ('8297', '头屯河区', '92', 'toutunhequ', '3', '', 'T');INSERT INTO `th_areas` VALUES ('8298', '新市区', '92', 'xinshiqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8299', '克拉玛依区', '95', 'kelamayiqu', '3', '', 'K');INSERT INTO `th_areas` VALUES ('8300', '白碱滩区', '95', 'baijiantanqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('8301', '乌尔禾区', '95', 'wuerhequ', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8302', '沙依巴克区', '92', 'shayibakequ', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8303', '天山区', '92', 'tianshanqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('8304', '官渡区', '104', 'guanduqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('8305', '西山区', '104', 'xishanqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8306', '郊区', '337', 'jiaoqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8307', '杜集区', '253', 'dujiqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8308', '相山区', '253', 'xiangshanqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8309', '南谯区', '189', 'nanqiaoqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('8310', '雨山区', '358', 'yushanqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8311', '金家庄区', '358', 'jinjiazhuangqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8312', '花山区', '358', 'huashanqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8313', '庐山区', '349', 'lushanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8314', '广阳区', '191', 'guangyangqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('8315', '安次区', '191', 'anciqu', '3', '', 'A');INSERT INTO `th_areas` VALUES ('8316', '东兴区', '248', 'dongxingqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8317', '嘉陵区', '291', 'jialingqu', '3', '', 'J');INSERT INTO `th_areas` VALUES ('8318', '船山区', '330', 'chuanshanqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('8319', '安居区', '330', 'anjuqu', '3', '', 'A');INSERT INTO `th_areas` VALUES ('8320', '红古区', '36', 'hongguqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8321', '麦积区', '196', 'maijiqu', '3', '', 'M');INSERT INTO `th_areas` VALUES ('8322', '苏仙区', '275', 'suxianqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8323', '北湖区', '275', 'beihuqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('8324', '蝶山区', '304', 'dieshanqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8325', '万秀区', '304', 'wanxiuqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8326', '铁山港区', '295', 'tieshangangqu', '3', '', 'T');INSERT INTO `th_areas` VALUES ('8327', '秀英区', '125', 'xiuyingqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8328', '龙华区', '125', 'longhuaqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8329', '美兰区', '125', 'meilanqu', '3', '', 'M');INSERT INTO `th_areas` VALUES ('8330', '钟山区', '147', 'zhongshanqu', '3', '', 'Z');INSERT INTO `th_areas` VALUES ('8331', '乌当区', '146', 'wudangqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8332', '松山区', '297', 'songshanqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('8333', '丰润区', '265', 'fengrunqu', '3', '', 'F');INSERT INTO `th_areas` VALUES ('8334', '丰南区', '265', 'fengnanqu', '3', '', 'F');INSERT INTO `th_areas` VALUES ('8335', '宣化区', '264', 'xuanhuaqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8336', '滨海新区', '332', 'binhaixinqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('8337', '文峰区', '267', 'wenfengqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('8338', '邯山区', '151', 'hanshanqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8339', '殷都区', '267', 'yindouqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8340', '北关区', '267', 'beiguanqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('8341', '大同区', '50', 'datongqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8342', '浉河区', '214', 'shihequ', '3', '', '');INSERT INTO `th_areas` VALUES ('8343', '襄阳区', '156', 'xiangyangqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8344', '梁园区', '154', 'liangyuanqu', '3', '', 'L');INSERT INTO `th_areas` VALUES ('8345', '茅箭区', '216', 'maojianqu', '3', '', 'M');INSERT INTO `th_areas` VALUES ('8346', '鼎城区', '219', 'dingchengqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8347', '湘东区', '350', 'xiangdongqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8348', '元宝山区', '297', 'yuanbaoshanqu', '3', '', 'Y');INSERT INTO `th_areas` VALUES ('8349', '红山区', '297', 'hongshanqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8350', '大武口区', '335', 'dawukouqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('8351', '惠农区', '335', 'huinongqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('8352', '兴庆区', '360', 'xingqingqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8353', '西夏区', '360', 'xixiaqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('8354', '仁和区', '81', 'renhequ', '3', '', 'R');INSERT INTO `th_areas` VALUES ('8355', '盘龙区', '104', 'panlongqu', '3', '', 'P');INSERT INTO `th_areas` VALUES ('8356', '五华区', '104', 'wuhuaqu', '3', '', 'W');INSERT INTO `th_areas` VALUES ('10001', '北京市', '1', 'beijingshi', '1', '116.395645,39.929986', 'B');INSERT INTO `th_areas` VALUES ('10002', '重庆市', '1', 'chongqingshi', '1', '106.530635,29.544606', 'Z');INSERT INTO `th_areas` VALUES ('10003', '天津市', '1', 'tianjinshi', '1', '117.210813,39.14393', 'T');INSERT INTO `th_areas` VALUES ('10004', '上海市', '1', 'shanghaishi', '1', '121.487899,31.249162', 'S');INSERT INTO `th_areas` VALUES ('11000', '阿拉尔市', '12', 'alaershi', '2', '81.291737,40.61568', 'A');INSERT INTO `th_areas` VALUES ('11001', '石河子市', '12', 'shihezishi', '2', '86.041865,44.308259', 'S');INSERT INTO `th_areas` VALUES ('11002', '五家渠市', '12', 'wujiaqushi', '2', '87.565449,44.368899', 'W');INSERT INTO `th_areas` VALUES ('11003', '图木舒克市', '12', 'tumushukeshi', '2', '79.198155,39.889223', 'T');INSERT INTO `th_areas` VALUES ('11004', '定安县', '21', 'dinganxian', '2', '110.32009,19.490991', 'D');INSERT INTO `th_areas` VALUES ('11005', '儋州市', '21', 'danzhoushi', '2', '109.413973,19.571153', 'D');INSERT INTO `th_areas` VALUES ('11006', '万宁市', '21', 'wanningshi', '2', '110.292505,18.839886', 'W');INSERT INTO `th_areas` VALUES ('11007', '保亭黎族苗族自治县', '21', 'baotinglizumiaozuzizhixian', '2', '109.656113,18.597592', 'B');INSERT INTO `th_areas` VALUES ('11008', '西沙群岛', '21', 'xishaqundao', '2', '111.709605,16.374704', 'X');INSERT INTO `th_areas` VALUES ('11009', '潜江市', '15', 'qianjiangshi', '2', '112.768768,30.343116', 'Q');INSERT INTO `th_areas` VALUES ('11010', '中沙群岛', '21', 'zhongshaqundao', '2', '114.381481,15.863015', 'Z');INSERT INTO `th_areas` VALUES ('11011', '南沙群岛', '21', 'nanshaqundao', '2', '114.848249,10.64306', 'N');INSERT INTO `th_areas` VALUES ('11012', '屯昌县', '21', 'tunchangxian', '2', '110.063364,19.347749', 'T');INSERT INTO `th_areas` VALUES ('11013', '昌江黎族自治县', '21', 'changjianglizuzizhixian', '2', '109.0113,19.222483', 'C');INSERT INTO `th_areas` VALUES ('11014', '陵水黎族自治县', '21', 'lingshuilizuzizhixian', '2', '109.948661,18.575985', 'L');INSERT INTO `th_areas` VALUES ('11015', '五指山市', '21', 'wuzhishanshi', '2', '109.51775,18.831306', 'W');INSERT INTO `th_areas` VALUES ('11016', '仙桃市', '15', 'xiantaoshi', '2', '113.387448,30.293966', 'X');INSERT INTO `th_areas` VALUES ('11017', '琼中黎族苗族自治县', '21', 'qiongzhonglizumiaozuzizhixian', '2', '109.861849,19.039771', 'Q');INSERT INTO `th_areas` VALUES ('11018', '乐东黎族自治县', '21', 'ledonglizuzizhixian', '2', '109.062698,18.658614', 'L');INSERT INTO `th_areas` VALUES ('11019', '临高县', '21', 'lingaoxian', '2', '109.724101,19.805922', 'L');INSERT INTO `th_areas` VALUES ('11020', '琼海市', '21', 'qionghaishi', '2', '110.414359,19.21483', 'Q');INSERT INTO `th_areas` VALUES ('11021', '白沙黎族自治县', '21', 'baishalizuzizhixian', '2', '109.358586,19.216056', 'B');INSERT INTO `th_areas` VALUES ('11022', '东方市', '21', 'dongfangshi', '2', '108.85101,18.998161', 'D');INSERT INTO `th_areas` VALUES ('11023', '天门市', '15', 'tianmenshi', '2', '113.12623,30.649047', 'T');INSERT INTO `th_areas` VALUES ('11024', '神农架林区', '15', 'shennongjialinqu', '2', '110.487231,31.595768', 'S');INSERT INTO `th_areas` VALUES ('11025', '澄迈县', '21', 'chengmaixian', '2', '109.996736,19.693135', 'C');INSERT INTO `th_areas` VALUES ('11026', '文昌市', '21', 'wenchangshi', '2', '110.780909,19.750947', 'W');INSERT INTO `th_areas` VALUES ('11027', '高新区', '75', 'gaoxinqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('11028', '高新区', '287', 'gaoxinqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('11029', '开发区', '326', 'kaifaqu', '3', '', 'K');INSERT INTO `th_areas` VALUES ('11030', '工业园区', '224', 'gongyeyuanqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('11031', '高新区', '224', 'gaoxinqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('11032', '高新区', '288', 'gaoxinqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('11033', '庐江县', '127', 'lujiangxian', '3', '', 'L');INSERT INTO `th_areas` VALUES ('11034', '姑苏区', '224', 'gusuqu', '3', '', 'G');INSERT INTO `th_areas` VALUES ('11035', '巢湖市', '127', 'chaohushi', '3', '', 'C');INSERT INTO `th_areas` VALUES ('11036', '道外区', '48', 'daowaiqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('11037', '阿城区', '48', 'achengqu', '3', '', 'A');INSERT INTO `th_areas` VALUES ('11038', '香坊区', '48', 'xiangfangqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('11039', '南岗区', '48', 'nangangqu', '3', '', 'N');INSERT INTO `th_areas` VALUES ('11040', '道里区', '48', 'daoliqu', '3', '', 'D');INSERT INTO `th_areas` VALUES ('11041', '呼兰区', '48', 'hulanqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('11042', '平房区', '48', 'pingfangqu', '3', '', 'P');INSERT INTO `th_areas` VALUES ('11043', '松北区', '48', 'songbeiqu', '3', '', 'S');INSERT INTO `th_areas` VALUES ('11044', '碧江区', '11055', 'bijiangqu', '3', '', 'B');INSERT INTO `th_areas` VALUES ('11045', '襄州区', '11056', 'xiangzhouqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('11046', '和县', '358', 'hexian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('11047', '无为县', '129', 'wuweixian', '3', '', 'W');INSERT INTO `th_areas` VALUES ('11048', '襄城区', '11056', 'xiangchengqu', '3', '', 'X');INSERT INTO `th_areas` VALUES ('11049', '七星关区', '11057', 'qixingguanqu', '3', '', 'Q');INSERT INTO `th_areas` VALUES ('11050', '随县', '371', 'suixian', '3', '', 'S');INSERT INTO `th_areas` VALUES ('11051', '淮安区', '162', 'huaianqu', '3', '', 'H');INSERT INTO `th_areas` VALUES ('11052', '含山县', '358', 'hanshanxian', '3', '', 'H');INSERT INTO `th_areas` VALUES ('11053', '曹妃甸区', '265', 'caofeidianqu', '3', '', 'C');INSERT INTO `th_areas` VALUES ('11054', '芒市', '116', 'mangshi', '3', '', 'M');INSERT INTO `th_areas` VALUES ('11055', '铜仁市', '24', 'tongrenshi', '2', '109.168558,27.674903', 'T');INSERT INTO `th_areas` VALUES ('11056', '襄阳市', '15', 'xiangyangshi', '2', '112.176326,32.094934', 'X');INSERT INTO `th_areas` VALUES ('11057', '毕节市', '24', 'bijieshi', '2', '105.333323,27.408562', 'B');INSERT INTO `th_areas` VALUES ('11058', '河南省直辖县级行政单位', '30', 'henanshengzhixiaxianjixingzhengdanwe', '2', '112.553153,35.078956', 'H');INSERT INTO `th_areas` VALUES ('11059', '市辖区', '11058', 'shixiaqu', '3', '', 'S');CREATE TABLE `th_article` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(150) NOT NULL DEFAULT '' COMMENT '标题',
`img` varchar(255) NOT NULL DEFAULT '' COMMENT '图片',
`content` text NOT NULL COMMENT '内容',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1未上2上架',
`intime` datetime NOT NULL COMMENT '创建时间',
`uptime` datetime NOT NULL COMMENT '发布时间',
`browse` int(11) NOT NULL DEFAULT '0' COMMENT '浏览量',
`author` varchar(64) NOT NULL DEFAULT '' COMMENT '作者',
`class_id` int(11) NOT NULL COMMENT '分类id',
`sort` int(10) unsigned NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`) USING BTREE,
KEY `intime` (`intime`,`is_delete`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;CREATE TABLE `th_article_class` (
`class_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL DEFAULT '' COMMENT '直播标签',
`img` varchar(255) NOT NULL DEFAULT '' COMMENT '图片',
`sort` tinyint(2) NOT NULL DEFAULT '0' COMMENT '权重',
`is_del` tinyint(2) NOT NULL DEFAULT '1',
`intime` datetime NOT NULL,
`uptime` datetime NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '2上架',
PRIMARY KEY (`class_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;INSERT INTO `th_article_class` VALUES ('1', '电视台', 'http://dspx.tstmobile.com/uploads//image/goods/20171124/d9a569b4e87e114cb453a516fe358f4a.png', '2', '1', '2017-11-28 09:33:04', '0000-00-00 00:00:00', '2');INSERT INTO `th_article_class` VALUES ('2', '公益', 'http://dspx.tstmobile.com/uploads//image/goods/20171124/68f1940875016611791d011094ded404.png', '1', '1', '2017-11-28 09:33:02', '0000-00-00 00:00:00', '1');INSERT INTO `th_article_class` VALUES ('3', '名人', 'http://dspx.tstmobile.com/uploads//image/goods/20171124/91a6a5eec70af65493c7b19866a0d1b2.png', '3', '1', '2017-11-28 09:32:59', '0000-00-00 00:00:00', '2');INSERT INTO `th_article_class` VALUES ('4', '全部', 'http://dspx.tstmobile.com/uploads//image/goods/20171124/14b34f9fcbbfb2a3dff22466e8394171.png', '4', '1', '2017-11-28 09:32:56', '0000-00-00 00:00:00', '1');INSERT INTO `th_article_class` VALUES ('5', '听说', 'http://dspx.tstmobile.com/uploads//image/goods/20171124/4b5489f79bdff237bed8432b4f53a026.png', '6', '1', '2017-11-28 09:32:52', '0000-00-00 00:00:00', '1');INSERT INTO `th_article_class` VALUES ('6', '新闻', '', '7', '1', '2017-11-28 09:32:39', '2017-11-28 09:31:23', '2');INSERT INTO `th_article_class` VALUES ('7', '娱乐', '', '8', '1', '2017-11-28 09:32:34', '2017-11-28 09:31:36', '2');INSERT INTO `th_article_class` VALUES ('8', '趣闻', '', '5', '1', '2017-11-28 09:32:31', '2017-11-28 09:32:06', '2');CREATE TABLE `th_auth_group` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`title` char(100) NOT NULL DEFAULT '',
`status` tinyint(1) NOT NULL DEFAULT '1',
`rules` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;INSERT INTO `th_auth_group` VALUES ('3', '直播管理', '1', '1,4,83,87,102,103');INSERT INTO `th_auth_group` VALUES ('4', '电视台', '1', '61,60,59,83,103,137,136,123,140,88,55,54,149,148,65,49,90,89,68,131,39,38,37,36,35,34,33,138,70,30,130,28,133,122,96,95,128,147,127,146,145,144,135,134,22,19,1,152,151,126,16,14,129,125,12');INSERT INTO `th_auth_group` VALUES ('5', '超级管理员', '1', '');CREATE TABLE `th_auth_group_access` (
`uid` mediumint(8) unsigned NOT NULL,
`group_id` mediumint(8) unsigned NOT NULL,
UNIQUE KEY `uid_group_id` (`uid`,`group_id`),
KEY `group_id` (`group_id`),
KEY `uid` (`uid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;INSERT INTO `th_auth_group_access` VALUES ('8', '3');INSERT INTO `th_auth_group_access` VALUES ('9', '3');INSERT INTO `th_auth_group_access` VALUES ('10', '5');INSERT INTO `th_auth_group_access` VALUES ('11', '4');INSERT INTO `th_auth_group_access` VALUES ('12', '2');INSERT INTO `th_auth_group_access` VALUES ('12', '4');INSERT INTO `th_auth_group_access` VALUES ('13', '2');INSERT INTO `th_auth_group_access` VALUES ('14', '2');INSERT INTO `th_auth_group_access` VALUES ('15', '2');INSERT INTO `th_auth_group_access` VALUES ('16', '2');INSERT INTO `th_auth_group_access` VALUES ('17', '2');INSERT INTO `th_auth_group_access` VALUES ('18', '2');INSERT INTO `th_auth_group_access` VALUES ('19', '2');INSERT INTO `th_auth_group_access` VALUES ('20', '4');INSERT INTO `th_auth_group_access` VALUES ('21', '4');INSERT INTO `th_auth_group_access` VALUES ('454', '2');CREATE TABLE `th_auth_rule` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`name` char(80) NOT NULL DEFAULT '',
`title` char(20) NOT NULL DEFAULT '',
`type` varchar(64) NOT NULL COMMENT '认证规则type',
`status` tinyint(1) NOT NULL DEFAULT '1',
`condition` char(100) NOT NULL DEFAULT '',
`is_button` int(4) DEFAULT '1',
`icon` varchar(32) NOT NULL COMMENT '对应icon样式',
`pid` int(11) NOT NULL DEFAULT '0' COMMENT '父级id',
`sort` int(10) NOT NULL COMMENT '排序值',
`is_delete` tinyint(4) NOT NULL DEFAULT '0' COMMENT '1删除',
`uptime` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=156 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;INSERT INTO `th_auth_rule` VALUES ('1', 'Home/index', '资讯管理', 'Home', '1', '', '2', '', '0', '1', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('2', 'User/index', '会员管理', 'User', '1', '', '2', '', '0', '2', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('3', 'Hotel/index', '酒店管理', 'Hotel', '2', '', '2', '', '0', '3', '1', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('4', 'Goods/index', '商品管理', 'Goods', '1', '', '2', '', '0', '6', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('5', 'Marketing/integral', '营销管理', 'Marketing', '2', '', '2', '', '0', '5', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('6', 'Horder/index', '商城订单', 'Horder', '1', '', '2', '', '0', '8', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('7', 'Porder/index', '其他订单', 'Porder', '2', '', '2', '', '0', '10', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('8', 'Finance/index', '报表管理', 'Finance', '1', '', '2', '', '0', '11', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('9', 'Weixin/index', '微信设置', 'Weixin', '2', '', '2', '', '0', '9', '1', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('10', 'Config/index', '基础设置', 'Config', '1', '', '2', '', '0', '80', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('11', 'Auth/index', '权限管理', 'Auth', '1', '', '2', '', '0', '83', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('12', 'Home/index', '首页轮播', 'Home', '1', '', '1', '', '1', '12', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('13', 'Home/advert', '首页广告', 'Home', '2', '', '1', '', '1', '13', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('14', 'Home/xieyi', '相关协议', 'Home', '1', '', '1', '', '1', '16', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('15', 'Home/about_us', '网站相关', 'Home', '2', '', '1', '', '1', '17', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('16', 'Home/notice', '系统公告', 'Home', '1', '', '1', '', '1', '125', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('17', 'Home/module', '首页模块', 'Home', '2', '', '1', '', '1', '126', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('19', 'Member/index', '会员列表', 'User', '1', '', '1', '', '2', '19', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('20', 'Member/is_del_member', '已删会员', 'Member', '1', '', '1', '', '2', '20', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('22', 'Member/change_account', '账号安全', 'User', '1', '', '0', '', '2', '22', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('28', 'Goods/index', '商品分类', 'Goods', '1', '', '1', '', '4', '28', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('30', 'Goods/goods_list', '商品列表', 'Goods', '1', '', '1', '', '4', '124', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('32', 'Marketing/integral', '积分设置', 'Marketing', '1', '', '1', '', '5', '32', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('33', 'Horder/index', '今日订单', 'Horder', '1', '', '1', '', '6', '33', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('34', 'Horder/to_all_order', '全部订单', 'Horder', '1', '', '1', '', '6', '34', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('35', 'Horder/to_be_pay', '待支付', 'Horder', '1', '', '1', '', '6', '35', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('36', 'Horder/to_be_drawer', '待发货', 'Horder', '1', '', '1', '', '6', '36', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('37', 'Horder/to_be_accept', '待收货', 'Horder', '1', '', '1', '', '6', '37', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('38', 'Horder/to_be_check', '待评价', 'Horder', '1', '', '1', '', '6', '38', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('39', 'Horder/complete', '已完成', 'Horder', '1', '', '1', '', '6', '39', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('40', 'Porder/index', '预售订单', 'Porder', '2', '', '1', '', '7', '40', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('49', 'Finance/index', '充值记录', 'Finance', '1', '', '1', '', '8', '49', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('50', 'Finance/give_gift', '送礼记录', 'Finance', '1', '', '1', '', '8', '50', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('51', 'Weixin/index', '微信配置', 'Weixin', '1', '', '1', '', '9', '51', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('52', 'Weixin/menu', '微信菜单', 'Weixin', '1', '', '1', '', '9', '52', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('53', 'Weixin/member', '微信关注会员', 'Weixin', '1', '', '1', '', '9', '53', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('54', 'Config/index', '数据库备份', 'Config', '1', '', '1', '', '10', '54', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('55', 'Config/account', '账号配置', 'Config', '1', '', '1', '', '10', '55', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('56', 'Config/spot_address', '景点地址', 'Config', '2', '', '1', '', '10', '56', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('57', 'Config/sms', '短信设置', 'Config', '2', '', '1', '', '10', '57', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('58', 'Config/feedback_list', '用户反馈', 'Config', '1', '', '1', '', '10', '58', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('59', 'Auth/index', '权限规则', 'Auth', '1', '', '1', '', '11', '59', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('60', 'Auth/authGroup', '规则组', 'Auth', '1', '', '1', '', '11', '60', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('61', 'Auth/administer', '管理员', 'Auth', '1', '', '1', '', '11', '61', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('62', 'Marketing/score_explain', '积分说明', 'Marketing', '2', '', '1', '', '5', '62', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('63', 'Finance/plane_order', '机票订单', 'Finance', '2', '', '1', '', '8', '63', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('65', 'Finance/withdraw', '提现记录', 'Finance/withdraw', '1', '', '1', '', '8', '65', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('66', 'Finance/hotel_order', '酒店订单', 'Finance', '2', '', '1', '', '8', '66', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('68', 'Horder/to_be_returns', '已退款', 'Horder', '1', '', '1', '', '6', '93', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('70', 'Goods/is_del_goods', '商品删除列表', 'Goods', '1', '', '1', '', '4', '130', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('71', 'Tailor/index', '定制预售', 'Tailor', '2', '', '2', '', '0', '71', '1', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('74', 'Tailor/goods_list', '商品列表', 'Tailor', '1', '', '1', '', '71', '74', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('75', 'Tailor/is_del_goods', '删除列表', 'Tailor', '1', '', '1', '', '71', '75', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('76', 'Event/index', '转盘奖品', 'Event', '1', '', '1', '', '86', '76', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('77', 'Event/game_list', '赛事活动', 'Event', '1', '', '1', '', '86', '77', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('78', 'Config/bank_card', '银行卡设置', 'Config', '2', '', '1', '', '10', '78', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('79', 'Event/book', '场地出租', 'Event', '1', '', '1', '', '86', '79', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('80', 'Circle/index', '社区管理', 'Circle', '2', '', '2', '', '0', '82', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('81', 'Circle/index', '资讯管理', 'Circle', '2', '', '1', '', '80', '84', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('82', 'Circle/pull', '投票管理', 'Circle', '2', '', '1', '', '80', '85', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('83', 'Live/index', '直播管理', 'Live', '1', '', '2', '', '0', '81', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('84', 'Live/index', '直播分类', 'Live', '2', '', '1', '', '83', '89', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('85', 'Config/gift_list', '礼物列表', 'Config', '1', '', '1', '', '10', '88', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('86', 'Event/index', '活动管理', 'Event', '2', '', '2', '', '0', '86', '1', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('87', 'Live/live_list', '主播直播', 'Live', '1', '', '1', '', '83', '105', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('88', 'Config/price_list', '充值列表', 'Config', '1', '', '1', '', '10', '90', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('89', 'Horder/refund', '售后订单', 'Horder', '1', '', '1', '', '6', '95', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('90', 'Horder/is_del_order', '已删除订单', 'Horder', '1', '', '1', '', '6', '131', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('93', 'Event/place_lease', '门票预售', 'Event', '1', '', '1', '', '86', '96', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('95', 'merchants/index', '商户列表', 'User', '1', '', '1', '', '133', '145', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('96', 'merchants/is_del_merchants', '已删商户', 'User', '1', '', '1', '', '133', '146', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('100', 'Circle/module', '话题模块', 'Circle', '1', '', '1', '', '80', '102', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('101', 'Circle/posts_list', '帖子列表', 'Circle', '1', '', '1', '', '80', '103', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('102', 'Live/record', '主播录播', 'Live', '1', '', '1', '', '83', '106', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('103', 'Live/video', '商户导购视频', 'Live', '1', '', '1', '', '83', '137', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('104', 'Class/index', '课程班级', 'Class', '2', '', '2', '', '0', '104', '1', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('105', 'Class/online', '线上班级', 'Class', '2', '', '1', '', '104', '107', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('106', 'Class/offline', '线下班级', 'Class', '2', '', '1', '', '104', '108', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('107', 'Charts/index', '统计信息', 'Charts', '1', '', '2', '', '0', '133', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('108', 'Charts/index', '交易统计', 'Charts', '2', '', '1', '', '107', '109', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('109', 'Charts/month', '月活跃度', 'Charts', '1', '', '1', '', '107', '110', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('110', 'Charts/day', '日活跃度', 'Charts', '1', '', '1', '', '107', '111', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('111', 'Config/sensitive_word', '敏感词', 'Config', '2', '', '1', '', '10', '112', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('112', 'Chat/index', '客服系统', 'Chat', '2', '', '2', '', '0', '138', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('113', 'Chat/index', '客服列表', 'Chat', '1', '', '1', '', '112', '113', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('114', 'Chat/kefu', '聊天记录', 'Chat', '1', '', '1', '', '112', '114', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('115', 'Class/ask_class', '申请开班', 'Class', '1', '', '1', '', '104', '115', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('116', 'Porder/index', '其他订单', 'Porder', '2', '', '2', '', '0', '116', '1', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('117', 'Porder/teach', '名师指点', 'Porder', '2', '', '2', '', '7', '117', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('118', 'Porder/upgrade', '会员升级', 'Porder', '2', '', '2', '', '7', '118', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('119', 'Porder/tutor_class', '线下报名', 'Porder', '2', '', '2', '', '7', '119', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('120', 'Finance/teach_returns', '指点退款', 'Finance', '2', '', '1', '', '8', '120', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('121', 'Config/grade', '等级设置', 'Config', '2', '', '1', '', '10', '121', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('122', 'Merchants/apply_list', '申请商户列表', 'Merchants', '1', '', '1', '', '133', '147', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('123', 'Config/live_class', '直播标签', 'Config', '1', '', '1', '', '83', '87', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('124', 'Goods/brand', '品牌列表', 'Goods', '2', '', '1', '', '4', '70', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('125', 'Home/dress', '首页管理', 'Home', '1', '', '1', '', '1', '14', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('126', 'Home/text', 'WEB图文', 'Home', '1', '', '1', '', '1', '129', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('127', 'Television/index', '电视台列表', 'User', '1', '', '1', '', '133', '110', '1', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('128', 'Television/is_televison', '已删电视台', 'Television', '1', '', '1', '', '133', '144', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('129', 'Home/home_class', '首页分类', 'Home', '1', '', '1', '', '1', '15', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('130', 'Goods/specifications', '规格设置', 'Goods', '1', '', '1', '', '4', '30', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('131', 'Horder/cancel_order', '已取消', 'Horder', '1', '', '1', '', '6', '68', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('132', 'Porder/merchant_apply', '商家申请', 'Porder', '1', '', '1', '', '7', '132', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('133', 'Member/index', '平台管理', 'Member', '1', '', '2', '', '0', '4', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('134', 'Anchor/index', '主播列表', 'Anchor', '1', '', '1', '', '2', '134', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('135', 'Anchor/is_del_anchor', '已删主播', 'Anchor', '1', '', '1', '', '2', '135', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('136', 'Live/merchants_live_list', '商户直播', 'Live', '1', '', '1', '', '83', '123', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('137', 'Live/merchants_record', '商户录播', 'Live', '1', '', '1', '', '83', '136', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('138', 'Marketing/index', '营销管理', 'Marketing', '1', '', '2', '', '0', '7', '1', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('139', 'Marketing/common_coupon', '通用优惠券', 'Marketing', '1', '', '1', '', '5', '139', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('140', 'Config/city', '城市管理', 'Config', '1', '', '1', '', '10', '140', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('141', 'Home/advert', '其他Banner', 'Home', '2', '', '1', '', '1', '141', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('142', 'Home/article', '资讯文章', 'Home', '2', '', '1', '', '1', '143', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('143', 'Home/article_class', '资讯分类', 'Home', '2', '', '1', '', '1', '142', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('144', 'Television/province', '省级电视台', 'Television', '1', '', '1', '', '133', '100', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('145', 'Television/City', '市级电视台', 'Television', '1', '', '1', '', '133', '101', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('146', 'Television/country', '区县电视台', 'Television', '1', '', '1', '', '133', '109', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('147', 'Television/relation', '电视台关系', 'Television', '1', '', '1', '', '133', '111', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('148', 'Finance/give_gift', '送礼结算', 'Finance', '1', '', '1', '', '8', '148', '1', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('149', 'Finance/goods_settlement', '销售结算', 'Finance', '1', '', '1', '', '8', '149', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('150', 'finance/tv_withdraw', '电视台提现', 'finance', '1', '', '1', '', '8', '150', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('151', 'Home/home_class_pc', 'PC首页分类', 'Home', '1', '', '1', '', '1', '151', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('152', 'Home/dress_pc', 'PC首页模块', 'Home', '1', '', '1', '', '1', '152', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('153', 'Config/app_version_control', 'APP版本管理', 'Config', '1', '', '1', '', '10', '153', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('154', 'Config/refund_reason', '退货原因', 'Config', '1', '', '1', '', '10', '154', '0', '0000-00-00 00:00:00');INSERT INTO `th_auth_rule` VALUES ('155', '01', '01', '01', '1', '', '0', '', '2', '155', '1', '0000-00-00 00:00:00');CREATE TABLE `th_bank` (
`bank_id` int(11) NOT NULL AUTO_INCREMENT,
`img` varchar(200) NOT NULL,
`name` varchar(64) NOT NULL,
`intime` datetime NOT NULL,
`uptime` datetime NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0',
`bg_color` varchar(64) NOT NULL,
PRIMARY KEY (`bank_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;CREATE TABLE `th_bank_card` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`member_id` int(10) unsigned NOT NULL,
`bank_name` varchar(150) NOT NULL COMMENT '银行名缩写',
`bank_card` varchar(32) NOT NULL DEFAULT '' COMMENT '银行卡号',
`realname` varchar(32) NOT NULL DEFAULT '' COMMENT '真实姓名',
`card` varchar(32) NOT NULL DEFAULT '' COMMENT '身份证号',
`is_default` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '1默认;2否',
`message` varchar(64) NOT NULL DEFAULT '' COMMENT '开户信息',
`intime` datetime NOT NULL,
`type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1提现绑定账号;2银联支付账号',
`pay_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1支付宝;2银行卡',
`bank_id` int(11) NOT NULL,
`phone` varchar(20) NOT NULL COMMENT '银行卡预留信息',
`uptime` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;CREATE TABLE `th_banned` (
`banned_id` int(11) NOT NULL AUTO_INCREMENT,
`live_id` int(11) NOT NULL COMMENT '直播间id',
`user_id` int(11) NOT NULL COMMENT '主播id',
`user_id2` int(11) NOT NULL COMMENT '被禁言的用户id',
`intime` int(11) NOT NULL COMMENT '时间',
PRIMARY KEY (`banned_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='禁言记录表';CREATE TABLE `th_banner` (
`b_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
`b_img` varchar(200) NOT NULL COMMENT '图片',
`b_type` tinyint(3) NOT NULL DEFAULT '1' COMMENT '1无跳转;2:url 3:分类页;4商商家;5商品;6标签',
`b_intime` datetime NOT NULL COMMENT '时间',
`url` varchar(500) NOT NULL COMMENT '外链地址',
`value` varchar(20) NOT NULL COMMENT '导师ID/商品id',
`sort` int(11) NOT NULL COMMENT '排序',
`content` text NOT NULL COMMENT '内容',
`uptime` datetime NOT NULL,
`title` varchar(30) NOT NULL COMMENT '标题',
`is_del` tinyint(1) NOT NULL DEFAULT '1',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1下架;2上架',
`type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1是首页轮播;2是商城;3直播;4优惠券',
`delete_time` datetime NOT NULL,
`jump` varchar(255) NOT NULL COMMENT '跳转值',
PRIMARY KEY (`b_id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COMMENT='banner';INSERT INTO `th_banner` VALUES ('9', 'http://shop.100ytv.com/uploads//image/20180413/55dfc6a8390842a4bb3644d30a97b65a.jpg', '1', '2018-04-13 12:50:48', '', '', '0', '', '0000-00-00 00:00:00', '商城', '1', '2', '2', '0000-00-00 00:00:00', '');INSERT INTO `th_banner` VALUES ('10', 'http://shop.100ytv.com/uploads//image/20180413/9b284fb0b8a7db918e967ee9a4838494.jpg', '1', '2018-04-13 12:51:02', '', '', '0', '', '0000-00-00 00:00:00', '直播', '1', '2', '1', '0000-00-00 00:00:00', '');CREATE TABLE `th_city` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`city_id` int(11) NOT NULL DEFAULT '0' COMMENT '商圈对应的城市id',
`city` varchar(64) NOT NULL DEFAULT '' COMMENT '城市',
`img` varchar(255) NOT NULL DEFAULT '' COMMENT '城市图片',
`centre` varchar(64) NOT NULL DEFAULT '' COMMENT '商圈中心',
`sort` int(6) NOT NULL,
`intime` datetime NOT NULL,
`uptime` datetime NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0',
`shouzimu` varchar(5) NOT NULL DEFAULT '' COMMENT '城市首字母',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=76 DEFAULT CHARSET=utf8;INSERT INTO `th_city` VALUES ('1', '0', '上海', '/Uploads/image/city/20161226/58608134c763b.png', '', '1', '2016-12-26 10:32:26', '0000-00-00 00:00:00', '1', '');INSERT INTO `th_city` VALUES ('2', '0', '北京', '/Uploads/image/city/20161226/5860815547060.png', '', '0', '2016-12-26 10:32:55', '2017-11-21 17:48:50', '0', 'B');INSERT INTO `th_city` VALUES ('3', '1', '上海', '', '上海', '0', '2016-12-26 10:43:29', '2017-11-21 17:43:58', '0', 'S');INSERT INTO `th_city` VALUES ('4', '2', '', '', '朝阳区', '0', '2016-12-26 10:43:40', '0000-00-00 00:00:00', '1', '');INSERT INTO `th_city` VALUES ('5', '0', '东京', '/Uploads/image/city/20161226/58609198152fc.png', '', '3', '2016-12-26 11:42:18', '0000-00-00 00:00:00', '1', '');INSERT INTO `th_city` VALUES ('6', '5', '', '', '新宿', '0', '2016-12-26 11:42:27', '0000-00-00 00:00:00', '1', '');INSERT INTO `th_city` VALUES ('7', '0', '纽约', '/Uploads/image/city/20161226/58609203baee8.png', '', '4', '2016-12-26 11:44:05', '0000-00-00 00:00:00', '1', '');INSERT INTO `th_city` VALUES ('8', '7', '', '', '纽约', '0', '2016-12-26 11:44:16', '0000-00-00 00:00:00', '1', '');INSERT INTO `th_city` VALUES ('9', '1', '', '', '人民广场', '0', '2017-02-13 10:01:26', '0000-00-00 00:00:00', '1', '');INSERT INTO `th_city` VALUES ('10', '0', '成都', '', '', '0', '2017-11-21 17:49:04', '0000-00-00 00:00:00', '0', 'C');INSERT INTO `th_city` VALUES ('11', '0', '武汉', '', '', '0', '2017-11-21 17:49:19', '0000-00-00 00:00:00', '0', 'W');INSERT INTO `th_city` VALUES ('12', '0', '广州', '', '', '0', '2017-11-21 17:49:41', '0000-00-00 00:00:00', '0', 'G');INSERT INTO `th_city` VALUES ('13', '0', '南京', '', '', '0', '2017-11-21 17:49:57', '0000-00-00 00:00:00', '0', 'N');INSERT INTO `th_city` VALUES ('14', '0', '重庆', '', '', '0', '2017-11-21 17:50:14', '0000-00-00 00:00:00', '0', 'C');INSERT INTO `th_city` VALUES ('15', '0', '深圳', '', '', '0', '2017-11-21 17:50:26', '0000-00-00 00:00:00', '0', 'S');INSERT INTO `th_city` VALUES ('16', '0', '合肥', '', '', '0', '2017-11-21 17:50:43', '0000-00-00 00:00:00', '0', 'H');INSERT INTO `th_city` VALUES ('17', '0', '天津', '', '', '0', '2017-11-21 17:51:04', '0000-00-00 00:00:00', '0', 'T');INSERT INTO `th_city` VALUES ('18', '0', '长兴', '', '', '0', '2017-12-19 15:00:02', '0000-00-00 00:00:00', '0', 'C');INSERT INTO `th_city` VALUES ('19', '0', '徐州', '', '', '0', '2017-12-19 15:00:23', '0000-00-00 00:00:00', '0', 'X');INSERT INTO `th_city` VALUES ('20', '0', '东营', '', '', '0', '2017-12-19 15:02:05', '0000-00-00 00:00:00', '0', 'D');INSERT INTO `th_city` VALUES ('21', '0', '澳门', '', '', '0', '2017-12-19 15:02:14', '0000-00-00 00:00:00', '0', 'A');INSERT INTO `th_city` VALUES ('22', '0', '江苏', '', '', '0', '2017-12-19 15:03:51', '0000-00-00 00:00:00', '0', 'J');INSERT INTO `th_city` VALUES ('23', '0', '昆明', '', '', '0', '2017-12-19 15:04:13', '0000-00-00 00:00:00', '0', 'K');INSERT INTO `th_city` VALUES ('24', '0', '辽宁', '', '', '0', '2017-12-19 15:04:56', '0000-00-00 00:00:00', '0', 'L');INSERT INTO `th_city` VALUES ('25', '0', '青海', '', '', '0', '2017-12-19 15:50:27', '0000-00-00 00:00:00', '0', 'Q');INSERT INTO `th_city` VALUES ('26', '0', '山东', '', '', '0', '2017-12-19 15:50:52', '0000-00-00 00:00:00', '0', 'S');INSERT INTO `th_city` VALUES ('27', '0', '台湾', '', '', '0', '2017-12-19 15:51:08', '0000-00-00 00:00:00', '0', 'T');INSERT INTO `th_city` VALUES ('28', '0', '天津', '', '', '0', '2017-12-19 15:51:24', '0000-00-00 00:00:00', '0', 'T');INSERT INTO `th_city` VALUES ('29', '0', '西藏', '', '', '0', '2017-12-19 15:52:04', '0000-00-00 00:00:00', '0', 'X');INSERT INTO `th_city` VALUES ('30', '0', '香港', '', '', '0', '2017-12-19 15:52:19', '0000-00-00 00:00:00', '0', 'X');INSERT INTO `th_city` VALUES ('31', '0', '新疆', '', '', '0', '2017-12-19 15:52:29', '0000-00-00 00:00:00', '0', 'X');INSERT INTO `th_city` VALUES ('32', '0', '云南', '', '', '0', '2017-12-19 15:52:37', '0000-00-00 00:00:00', '0', 'Y');INSERT INTO `th_city` VALUES ('33', '0', '浙江', '', '', '0', '2017-12-19 15:52:47', '0000-00-00 00:00:00', '0', 'Z');INSERT INTO `th_city` VALUES ('34', '0', '大连', '', '', '0', '2017-12-19 15:53:42', '0000-00-00 00:00:00', '0', 'D');INSERT INTO `th_city` VALUES ('35', '0', '大理', '', '', '0', '2017-12-19 15:53:55', '0000-00-00 00:00:00', '0', 'D');INSERT INTO `th_city` VALUES ('36', '0', '鄂州', '', '', '0', '2017-12-19 15:54:06', '0000-00-00 00:00:00', '0', 'E');INSERT INTO `th_city` VALUES ('37', '0', '福建', '', '', '0', '2017-12-19 15:54:19', '0000-00-00 00:00:00', '0', 'F');INSERT INTO `th_city` VALUES ('38', '0', '广州', '', '', '0', '2017-12-19 15:54:55', '0000-00-00 00:00:00', '1', 'G');INSERT INTO `th_city` VALUES ('39', '0', '桂林', '', '', '0', '2017-12-19 15:55:03', '0000-00-00 00:00:00', '0', 'G');INSERT INTO `th_city` VALUES ('40', '0', '呼和浩特', '', '', '0', '2017-12-19 15:55:14', '0000-00-00 00:00:00', '0', 'H');INSERT INTO `th_city` VALUES ('41', '0', '惠州', '', '', '0', '2017-12-19 15:55:29', '0000-00-00 00:00:00', '0', 'H');INSERT INTO `th_city` VALUES ('42', '0', '淮北', '', '', '0', '2017-12-19 15:55:48', '0000-00-00 00:00:00', '0', 'H');INSERT INTO `th_city` VALUES ('43', '0', '昆明', '', '', '0', '2017-12-19 15:55:58', '0000-00-00 00:00:00', '0', 'K');INSERT INTO `th_city` VALUES ('44', '0', '开封', '', '', '0', '2017-12-19 15:56:08', '0000-00-00 00:00:00', '0', 'K');INSERT INTO `th_city` VALUES ('45', '0', '兰州', '', '', '0', '2017-12-19 15:56:24', '0000-00-00 00:00:00', '0', 'L');INSERT INTO `th_city` VALUES ('46', '0', '拉萨', '', '', '0', '2017-12-19 15:56:40', '0000-00-00 00:00:00', '0', 'L');INSERT INTO `th_city` VALUES ('47', '0', '连云港', '', '', '0', '2017-12-19 15:56:50', '0000-00-00 00:00:00', '0', 'L');INSERT INTO `th_city` VALUES ('48', '0', '丽水', '', '', '0', '2017-12-19 15:57:01', '0000-00-00 00:00:00', '0', 'L');INSERT INTO `th_city` VALUES ('49', '0', '茂名', '', '', '0', '2017-12-19 15:57:19', '0000-00-00 00:00:00', '0', 'M');INSERT INTO `th_city` VALUES ('50', '0', '马鞍山', '', '', '0', '2017-12-19 15:57:31', '0000-00-00 00:00:00', '0', 'M');INSERT INTO `th_city` VALUES ('51', '0', '鞍山', '', '', '0', '2017-12-19 15:57:39', '0000-00-00 00:00:00', '0', 'A');INSERT INTO `th_city` VALUES ('52', '0', '宁波', '', '', '0', '2017-12-19 15:57:49', '0000-00-00 00:00:00', '0', 'N');INSERT INTO `th_city` VALUES ('53', '0', '南通', '', '', '0', '2017-12-19 15:58:00', '0000-00-00 00:00:00', '0', 'N');INSERT INTO `th_city` VALUES ('54', '0', '莆田', '', '', '0', '2017-12-19 15:58:10', '0000-00-00 00:00:00', '0', 'P');INSERT INTO `th_city` VALUES ('55', '0', '盘锦', '', '', '0', '2017-12-19 15:58:20', '0000-00-00 00:00:00', '0', 'P');INSERT INTO `th_city` VALUES ('56', '0', '莱芜', '', '', '0', '2017-12-19 15:59:11', '0000-00-00 00:00:00', '0', 'L');INSERT INTO `th_city` VALUES ('57', '0', ' 拉萨', '', '', '0', '2017-12-19 15:59:24', '0000-00-00 00:00:00', '0', 'L');INSERT INTO `th_city` VALUES ('58', '0', '江门', '', '', '0', '2017-12-19 15:59:39', '0000-00-00 00:00:00', '0', 'J');INSERT INTO `th_city` VALUES ('59', '0', '东莞', '', '', '0', '2017-12-19 15:59:51', '0000-00-00 00:00:00', '0', 'D');INSERT INTO `th_city` VALUES ('60', '0', '黑龙江', '', '', '0', '2017-12-19 16:00:15', '0000-00-00 00:00:00', '0', 'H');INSERT INTO `th_city` VALUES ('61', '0', '安庆', '', '', '0', '2017-12-19 16:00:42', '0000-00-00 00:00:00', '0', 'A');INSERT INTO `th_city` VALUES ('62', '0', '安阳', '', '', '0', '2017-12-19 16:00:51', '0000-00-00 00:00:00', '0', 'A');INSERT INTO `th_city` VALUES ('63', '0', '安顺', '', '', '0', '2017-12-19 16:01:58', '0000-00-00 00:00:00', '0', 'A');INSERT INTO `th_city` VALUES ('64', '0', '包头', '', '', '0', '2017-12-19 16:02:18', '0000-00-00 00:00:00', '0', 'B');INSERT INTO `th_city` VALUES ('65', '0', '长沙', '', '', '0', '2017-12-19 16:02:55', '0000-00-00 00:00:00', '0', 'C');INSERT INTO `th_city` VALUES ('66', '0', '萍乡', '', '', '0', '2017-12-19 16:03:16', '0000-00-00 00:00:00', '0', 'P');INSERT INTO `th_city` VALUES ('67', '0', '平凉', '', '', '0', '2017-12-19 16:03:31', '0000-00-00 00:00:00', '0', 'P');INSERT INTO `th_city` VALUES ('68', '0', '日照', '', '', '0', '2017-12-19 16:03:45', '0000-00-00 00:00:00', '0', 'R');INSERT INTO `th_city` VALUES ('69', '0', '清远', '', '', '0', '2017-12-19 16:03:55', '0000-00-00 00:00:00', '0', 'Q');INSERT INTO `th_city` VALUES ('70', '0', ' 厦门', '', '', '0', '2017-12-19 16:04:27', '0000-00-00 00:00:00', '0', 'X');INSERT INTO `th_city` VALUES ('71', '0', '珠海', '', '', '0', '2017-12-19 16:05:10', '0000-00-00 00:00:00', '0', 'Z');INSERT INTO `th_city` VALUES ('72', '0', '中山', '', '', '0', '2017-12-19 16:05:27', '0000-00-00 00:00:00', '0', 'Z');INSERT INTO `th_city` VALUES ('73', '0', '张家港', '', '', '0', '2017-12-19 16:06:45', '0000-00-00 00:00:00', '0', 'Z');INSERT INTO `th_city` VALUES ('74', '0', '01', '', '', '0', '2018-03-27 14:10:03', '0000-00-00 00:00:00', '1', 'A');INSERT INTO `th_city` VALUES ('75', '0', '01', '', '', '0', '2018-03-27 16:20:12', '0000-00-00 00:00:00', '1', 'A');CREATE TABLE `th_collection` (
`collection_id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL COMMENT '收藏者id',
`type` tinyint(2) NOT NULL COMMENT 'l:资讯 2:视频',
`about_id` int(11) NOT NULL COMMENT '被收藏的id',
`intime` int(11) NOT NULL COMMENT '时间',
PRIMARY KEY (`collection_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='收藏表(视频、资讯)';CREATE TABLE `th_coupon` (
`coupon_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(64) NOT NULL DEFAULT '' COMMENT '优惠券名称',
`type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '使用场景1普通2特殊优惠券',
`img` varchar(150) NOT NULL DEFAULT '' COMMENT '优惠券图片',
`value` int(11) NOT NULL COMMENT '优惠券价值',
`limit_value` int(11) NOT NULL COMMENT '优惠券限制金额',
`balance` int(11) NOT NULL COMMENT '剩余数量',
`number` int(11) NOT NULL COMMENT '发行量',
`start_time` varchar(20) NOT NULL DEFAULT '' COMMENT '开始时间',
`end_time` varchar(20) NOT NULL DEFAULT '' COMMENT '结束时间',
`pay_number` int(11) NOT NULL DEFAULT '0' COMMENT '支付量',
`intime` datetime NOT NULL,
`uptime` datetime NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0正常1删除',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1正常2上架架',
`is_send` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1未发送;2已发送',
`start_strtotime` varchar(20) NOT NULL COMMENT '开始时间时间戳',
`end_strtotime` varchar(20) NOT NULL COMMENT '结束时间时间戳',
`goods_id` int(11) NOT NULL COMMENT '单品券对应的商品id',
`merchants_id` int(11) NOT NULL COMMENT '店铺id',
PRIMARY KEY (`coupon_id`),
UNIQUE KEY `coupon_id` (`coupon_id`) USING BTREE,
KEY `type` (`type`,`intime`,`is_delete`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;CREATE TABLE `th_diamond_record` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`diamond` int(11) NOT NULL COMMENT '钻石',
`type` tinyint(1) NOT NULL COMMENT '1增加;2减少',
`content` varchar(64) NOT NULL COMMENT '注释说明',
`intime` datetime NOT NULL,
`zeng` int(11) NOT NULL COMMENT '赠送的',
PRIMARY KEY (`id`),
KEY `member_id` (`member_id`,`type`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;INSERT INTO `th_diamond_record` VALUES ('4', '6', '2980', '1', '充值', '2018-04-10 10:57:39', '0');INSERT INTO `th_diamond_record` VALUES ('5', '5', '2980', '1', '充值', '2018-04-12 09:25:47', '0');CREATE TABLE `th_dress` (
`dress_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(64) NOT NULL COMMENT '名称',
`img` varchar(255) NOT NULL,
`type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '跳转页:1无跳转;2web;3分类页;4商家;5商品;6标签',
`layout` tinyint(2) NOT NULL,
`sort` int(11) NOT NULL,
`color` varchar(10) NOT NULL,
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`is_delete` tinyint(4) NOT NULL DEFAULT '0',
`status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '2上架',
`jump` varchar(255) NOT NULL COMMENT '跳转属性',
`pid` int(11) NOT NULL DEFAULT '-1' COMMENT '子级信息',
`width` varchar(20) NOT NULL,
`height` varchar(20) NOT NULL,
PRIMARY KEY (`dress_id`),
UNIQUE KEY `dress_id` (`dress_id`) USING BTREE,
KEY `is_delete` (`is_delete`,`pid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8;INSERT INTO `th_dress` VALUES ('22', '洛安资本', 'http://shop.100ytv.com/uploads//image/20180413/4e0a6330d77dc5d74b9996cccadc8f0e.jpg', '1', '3', '22', '', '2018-04-13 13:20:26', '0000-00-00 00:00:00', '0', '2', '', '-1', '750', '501');INSERT INTO `th_dress` VALUES ('23', '百台云', 'http://shop.100ytv.com/uploads//image/20180413/306cfcbda6473f03a0e8d9a9a50a9e51.jpg', '1', '1', '23', '', '2018-04-13 13:20:48', '0000-00-00 00:00:00', '0', '2', '', '22', '500', '249');INSERT INTO `th_dress` VALUES ('24', '百台云', 'http://shop.100ytv.com/uploads//image/20180413/926ef089b2df3c8cf217badfb26d8cc4.jpg', '1', '1', '24', '', '2018-04-13 13:21:03', '0000-00-00 00:00:00', '0', '2', '', '22', '500', '250');INSERT INTO `th_dress` VALUES ('25', '百台云', 'http://shop.100ytv.com/uploads//image/20180413/568244a6d6c3cbfa99aae5d559653dc2.jpg', '1', '1', '25', '', '2018-04-13 13:21:20', '0000-00-00 00:00:00', '0', '2', '', '22', '250', '499');CREATE TABLE `th_dress_pc` (
`dress_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(64) NOT NULL COMMENT '名称',
`img` varchar(255) NOT NULL,
`type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '跳转页:1无跳转;2web;3分类页;4商家;5商品;6标签',
`layout` tinyint(2) NOT NULL,
`sort` int(11) NOT NULL,
`color` varchar(10) NOT NULL,
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`is_delete` tinyint(4) NOT NULL DEFAULT '0',
`status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '2上架',
`jump` varchar(255) NOT NULL COMMENT '跳转属性',
`pid` int(11) NOT NULL DEFAULT '-1' COMMENT '子级信息',
`width` varchar(20) NOT NULL,
`height` varchar(20) NOT NULL,
PRIMARY KEY (`dress_id`),
UNIQUE KEY `dress_id` (`dress_id`) USING BTREE,
KEY `is_delete` (`is_delete`,`pid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;CREATE TABLE `th_express_node` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
`express` varchar(30) COLLATE utf8_bin NOT NULL COMMENT '快递公司',
`node` varchar(10) COLLATE utf8_bin NOT NULL COMMENT '快递公司代码',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=103 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;INSERT INTO `th_express_node` VALUES ('1', '安捷快递', 'AJ');INSERT INTO `th_express_node` VALUES ('2', '安能物流', 'ANE');INSERT INTO `th_express_node` VALUES ('3', '安信达快递', 'AXD');INSERT INTO `th_express_node` VALUES ('4', '北青小红帽', 'BQXHM');INSERT INTO `th_express_node` VALUES ('5', '百福东方', 'BFDF');INSERT INTO `th_express_node` VALUES ('6', '百世快运', 'BTWL');INSERT INTO `th_express_node` VALUES ('7', 'CCES快递', 'CCES');INSERT INTO `th_express_node` VALUES ('8', '城市100', 'CITY100');INSERT INTO `th_express_node` VALUES ('9', 'COE东方快递', 'COE');INSERT INTO `th_express_node` VALUES ('10', '长沙创一', 'CSCY');INSERT INTO `th_express_node` VALUES ('11', '成都善途速运', 'CDSTKY');INSERT INTO `th_express_node` VALUES ('12', '德邦', 'DBL');INSERT INTO `th_express_node` VALUES ('13', 'D速物流', 'DSWL');INSERT INTO `th_express_node` VALUES ('14', '大田物流', 'DTWL');INSERT INTO `th_express_node` VALUES ('15', 'EMS', 'EMS');INSERT INTO `th_express_node` VALUES ('16', '快捷速递', 'FAST');INSERT INTO `th_express_node` VALUES ('17', 'FEDEX联邦(国内件)', 'FEDEX');INSERT INTO `th_express_node` VALUES ('18', 'FEDEX联邦(国际件)', 'FEDEX_GJ');INSERT INTO `th_express_node` VALUES ('19', '飞康达', 'FKD');INSERT INTO `th_express_node` VALUES ('20', '广东邮政', 'GDEMS');INSERT INTO `th_express_node` VALUES ('21', '共速达', 'GSD');INSERT INTO `th_express_node` VALUES ('22', '国通快递', 'GTO');INSERT INTO `th_express_node` VALUES ('23', '高铁速递', 'GTSD');INSERT INTO `th_express_node` VALUES ('24', '汇丰物流', 'HFWL');INSERT INTO `th_express_node` VALUES ('25', '天天快递', 'HHTT');INSERT INTO `th_express_node` VALUES ('26', '恒路物流', 'HLWL');INSERT INTO `th_express_node` VALUES ('27', '天地华宇', 'HOAU');INSERT INTO `th_express_node` VALUES ('28', '华强物流', 'hq568');INSERT INTO `th_express_node` VALUES ('29', '百世快递', 'HTKY');INSERT INTO `th_express_node` VALUES ('30', '华夏龙物流', 'HXLWL');INSERT INTO `th_express_node` VALUES ('31', '好来运快递', 'HYLSD');INSERT INTO `th_express_node` VALUES ('32', '京广速递', 'JGSD');INSERT INTO `th_express_node` VALUES ('33', '九曳供应链', 'JIUYE');INSERT INTO `th_express_node` VALUES ('34', '佳吉快运', 'JJKY');INSERT INTO `th_express_node` VALUES ('35', '嘉里物流', 'JLDT');INSERT INTO `th_express_node` VALUES ('36', '捷特快递', 'JTKD');INSERT INTO `th_express_node` VALUES ('37', '急先达', 'JXD');INSERT INTO `th_express_node` VALUES ('38', '晋越快递', 'JYKD');INSERT INTO `th_express_node` VALUES ('39', '加运美', 'JYM');INSERT INTO `th_express_node` VALUES ('40', '佳怡物流', 'JYWL');INSERT INTO `th_express_node` VALUES ('41', '跨越物流', 'KYWL');INSERT INTO `th_express_node` VALUES ('42', '龙邦快递', 'LB');INSERT INTO `th_express_node` VALUES ('43', '联昊通速递', 'LHT');INSERT INTO `th_express_node` VALUES ('44', '民航快递', 'MHKD');INSERT INTO `th_express_node` VALUES ('45', '明亮物流', 'MLWL');INSERT INTO `th_express_node` VALUES ('46', '能达速递', 'NEDA');INSERT INTO `th_express_node` VALUES ('47', '平安达腾飞快递', 'PADTF');INSERT INTO `th_express_node` VALUES ('48', '全晨快递', 'QCKD');INSERT INTO `th_express_node` VALUES ('49', '全峰快递', 'QFKD');INSERT INTO `th_express_node` VALUES ('50', '全日通快递', 'QRT');INSERT INTO `th_express_node` VALUES ('51', '如风达', 'RFD');INSERT INTO `th_express_node` VALUES ('52', '赛澳递', 'SAD');INSERT INTO `th_express_node` VALUES ('53', '圣安物流', 'SAWL');INSERT INTO `th_express_node` VALUES ('54', '盛邦物流', 'SBWL');INSERT INTO `th_express_node` VALUES ('55', '上大物流', 'SDWL');INSERT INTO `th_express_node` VALUES ('56', '顺丰快递', 'SF');INSERT INTO `th_express_node` VALUES ('57', '盛丰物流', 'SFWL');INSERT INTO `th_express_node` VALUES ('58', '盛辉物流', 'SHWL');INSERT INTO `th_express_node` VALUES ('59', '速通物流', 'ST');INSERT INTO `th_express_node` VALUES ('60', '申通快递', 'STO');INSERT INTO `th_express_node` VALUES ('61', '速腾快递', 'STWL');INSERT INTO `th_express_node` VALUES ('62', '速尔快递', 'SURE');INSERT INTO `th_express_node` VALUES ('63', '唐山申通', 'TSSTO');INSERT INTO `th_express_node` VALUES ('64', '全一快递', 'UAPEX');INSERT INTO `th_express_node` VALUES ('65', '优速快递', 'UC');INSERT INTO `th_express_node` VALUES ('66', '万家物流', 'WJWL');INSERT INTO `th_express_node` VALUES ('67', '万象物流', 'WXWL');INSERT INTO `th_express_node` VALUES ('68', '新邦物流', 'XBWL');INSERT INTO `th_express_node` VALUES ('69', '信丰快递', 'XFEX');INSERT INTO `th_express_node` VALUES ('70', '希优特', 'XYT');INSERT INTO `th_express_node` VALUES ('71', '新杰物流', 'XJ');INSERT INTO `th_express_node` VALUES ('72', '源安达快递', 'YADEX');INSERT INTO `th_express_node` VALUES ('73', '远成物流', 'YCWL');INSERT INTO `th_express_node` VALUES ('74', '韵达快递', 'YD');INSERT INTO `th_express_node` VALUES ('75', '义达国际物流', 'YDH');INSERT INTO `th_express_node` VALUES ('76', '越丰物流', 'YFEX');INSERT INTO `th_express_node` VALUES ('77', '原飞航物流', 'YFHEX');INSERT INTO `th_express_node` VALUES ('78', '亚风快递', 'YFSD');INSERT INTO `th_express_node` VALUES ('79', '运通快递', 'YTKD');INSERT INTO `th_express_node` VALUES ('80', '圆通速递', 'YTO');INSERT INTO `th_express_node` VALUES ('81', '亿翔快递', 'YXKD');INSERT INTO `th_express_node` VALUES ('82', '邮政平邮/小包', 'YZPY');INSERT INTO `th_express_node` VALUES ('83', '增益快递', 'ZENY');INSERT INTO `th_express_node` VALUES ('84', '汇强快递', 'ZHQKD');INSERT INTO `th_express_node` VALUES ('85', '宅急送', 'ZJS');INSERT INTO `th_express_node` VALUES ('86', '众通快递', 'ZTE');INSERT INTO `th_express_node` VALUES ('87', '中铁快运', 'ZTKY');INSERT INTO `th_express_node` VALUES ('88', '中通速递', 'ZTO');INSERT INTO `th_express_node` VALUES ('89', '中铁物流', 'ZTWL');INSERT INTO `th_express_node` VALUES ('90', '中邮物流', 'ZYWL');INSERT INTO `th_express_node` VALUES ('91', '亚马逊物流', 'AMAZON');INSERT INTO `th_express_node` VALUES ('92', '速必达物流', 'SUBIDA');INSERT INTO `th_express_node` VALUES ('93', '瑞丰速递', 'RFEX');INSERT INTO `th_express_node` VALUES ('94', '快客快递', 'QUICK');INSERT INTO `th_express_node` VALUES ('95', '城际快递', 'CJKD');INSERT INTO `th_express_node` VALUES ('96', 'CNPEX中邮快递', 'CNPEX');INSERT INTO `th_express_node` VALUES ('97', '鸿桥供应链', 'HOTSCM');INSERT INTO `th_express_node` VALUES ('98', '海派通物流公司', 'HPTEX');INSERT INTO `th_express_node` VALUES ('99', '澳邮专线', 'AYCA');INSERT INTO `th_express_node` VALUES ('100', '泛捷快递', 'PANEX');INSERT INTO `th_express_node` VALUES ('101', 'PCA Express', 'PCA');INSERT INTO `th_express_node` VALUES ('102', 'UEQ Express', 'UEQ');CREATE TABLE `th_feedback` (
`feedback_id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL COMMENT '反馈的用户id',
`content` varchar(200) NOT NULL DEFAULT '' COMMENT '反馈内容',
`intime` datetime NOT NULL COMMENT '时间',
PRIMARY KEY (`feedback_id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='反馈表';CREATE TABLE `th_follow` (
`follow_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
`user_id` int(11) NOT NULL COMMENT '关注人id',
`user_id2` int(11) NOT NULL COMMENT '被关注的id',
`intime` int(11) NOT NULL COMMENT '关注时间',
`is_remind` tinyint(1) NOT NULL DEFAULT '1' COMMENT '开播提醒 1:开启 2:关闭',
`uptime` int(11) NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`follow_id`),
KEY `user_id` (`user_id`,`intime`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=utf8 COMMENT='关注表';INSERT INTO `th_follow` VALUES ('47', '13', '7', '1523346367', '1', '0', '1');INSERT INTO `th_follow` VALUES ('48', '6', '7', '1523496155', '1', '0', '1');INSERT INTO `th_follow` VALUES ('49', '34', '5', '1523504225', '1', '0', '1');INSERT INTO `th_follow` VALUES ('50', '34', '7', '1523504229', '1', '0', '1');INSERT INTO `th_follow` VALUES ('52', '13', '5', '1523596122', '1', '0', '1');INSERT INTO `th_follow` VALUES ('53', '81', '5', '1523596255', '1', '0', '1');INSERT INTO `th_follow` VALUES ('55', '15', '5', '1523602545', '1', '0', '1');CREATE TABLE `th_follow_merchants` (
`follow_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
`user_id` int(11) NOT NULL COMMENT '关注人id',
`user_id2` int(11) NOT NULL COMMENT '被关注的id(店铺id)',
`intime` int(11) NOT NULL COMMENT '关注时间',
`uptime` int(11) NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`follow_id`),
KEY `user_id` (`user_id`,`intime`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='关注表';INSERT INTO `th_follow_merchants` VALUES ('6', '40', '5', '1523507339', '0', '1');INSERT INTO `th_follow_merchants` VALUES ('7', '66', '5', '1523507959', '0', '1');CREATE TABLE `th_gift` (
`gift_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(20) NOT NULL,
`img` varchar(300) NOT NULL,
`price` int(11) NOT NULL,
`experience` int(11) NOT NULL COMMENT '经验',
`sort` tinyint(3) NOT NULL DEFAULT '100' COMMENT '权重',
`num_norms` varchar(50) NOT NULL DEFAULT '' COMMENT '礼物数量列表',
`intime` int(11) NOT NULL,
`uptime` int(11) DEFAULT NULL,
`is_running` tinyint(1) NOT NULL DEFAULT '1' COMMENT '点击连续 1不连续;2连续',
PRIMARY KEY (`gift_id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;INSERT INTO `th_gift` VALUES ('11', '100', 'http://shop.100ytv.com/uploads//image/goods/20180412/80a4c22d0be6e485e40ebe5d12fc78db.png', '100', '100', '100', '', '1523496086', '', '2');CREATE TABLE `th_gift_earnings` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`give_gift_id` int(11) NOT NULL,
`anchor_ratio` decimal(4,1) NOT NULL COMMENT '主播等到比例',
`anchor_amount` int(11) NOT NULL,
`platform_ratio` decimal(4,1) NOT NULL COMMENT '平台获取比例',
`platform_amount` int(11) NOT NULL COMMENT '平台或者总额',
`spread_tv_ratio` decimal(4,1) NOT NULL COMMENT '引流电视台比例',
`spread_tv_amount` int(11) NOT NULL,
`spread_tv` int(11) NOT NULL COMMENT '引流电视台',
`level_one_ratio` decimal(4,1) NOT NULL COMMENT '一级区县电视台分润比',
`level_one_amount` int(11) NOT NULL COMMENT '一级区县',
`anchor_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '主播id',
`level_two_ratio` decimal(4,1) NOT NULL COMMENT '市级电视台分润比',
`level_two_amount` int(11) NOT NULL COMMENT '市级电视台分润数额',
`level_three_tv` int(11) NOT NULL COMMENT '省级电视台',
`level_three_ratio` decimal(4,1) NOT NULL COMMENT '省级电视台分润比',
`level_three_amount` int(11) NOT NULL COMMENT '省级电视台总额',
`other_amount` int(11) NOT NULL COMMENT '省市区不足100%剩余比',
`level_one_tv` int(11) NOT NULL COMMENT '一级区县电视台',
`level_two_tv` int(11) NOT NULL COMMENT '市级电视台id',
`create_time` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`) USING BTREE,
KEY `give_gift_id` (`give_gift_id`,`anchor_id`,`create_time`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;INSERT INTO `th_gift_earnings` VALUES ('17', '17', '58.0', '58', '40.0', '40', '2.0', '2', '5', '50.0', '29', '7', '0.0', '0', '0', '0.0', '0', '29', '5', '0', '2018-04-12 09:22:29');INSERT INTO `th_gift_earnings` VALUES ('18', '18', '58.0', '58', '40.0', '40', '2.0', '2', '5', '50.0', '29', '7', '0.0', '0', '0', '0.0', '0', '29', '5', '0', '2018-04-12 09:22:32');INSERT INTO `th_gift_earnings` VALUES ('19', '19', '58.0', '58', '42.0', '42', '0.0', '0', '0', '50.0', '29', '7', '0.0', '0', '0', '0.0', '0', '29', '5', '0', '2018-04-12 09:25:52');INSERT INTO `th_gift_earnings` VALUES ('20', '20', '58.0', '58', '40.0', '40', '2.0', '2', '5', '0.0', '0', '5', '0.0', '0', '0', '0.0', '0', '0', '0', '0', '2018-04-12 14:56:07');INSERT INTO `th_gift_earnings` VALUES ('21', '21', '58.0', '58', '40.0', '40', '2.0', '2', '5', '0.0', '0', '5', '0.0', '0', '0', '0.0', '0', '0', '0', '0', '2018-04-12 14:56:10');CREATE TABLE `th_give_gift` (
`give_gift_id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL COMMENT '送礼用户id',
`live_id` int(11) NOT NULL COMMENT '直播间id',
`user_id2` int(11) NOT NULL COMMENT '主播id',
`gift_id` int(11) NOT NULL COMMENT '礼物id',
`number` int(11) unsigned NOT NULL DEFAULT '1' COMMENT '送礼数量',
`intime` int(11) NOT NULL COMMENT '时间戳',
`date` date NOT NULL COMMENT '日期',
`dashang_scale` varchar(10) NOT NULL DEFAULT '0' COMMENT '打赏比例',
`e_ticket` int(11) NOT NULL DEFAULT '0' COMMENT '获得的赏票',
`member_type` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '会员类型:1主播;2商户',
`tv_id` int(11) NOT NULL DEFAULT '0' COMMENT '电视台tv_id',
`jewel` int(11) NOT NULL COMMENT '价格',
`experience` int(11) NOT NULL COMMENT '经验',
PRIMARY KEY (`give_gift_id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;INSERT INTO `th_give_gift` VALUES ('17', '6', '13', '7', '11', '1', '1523496149', '2018-04-12', '58', '100', '1', '5', '100', '100');INSERT INTO `th_give_gift` VALUES ('18', '6', '13', '7', '11', '1', '1523496152', '2018-04-12', '58', '100', '1', '5', '100', '100');INSERT INTO `th_give_gift` VALUES ('19', '5', '14', '7', '11', '1', '1523496352', '2018-04-12', '58', '100', '1', '5', '100', '100');INSERT INTO `th_give_gift` VALUES ('20', '6', '15', '5', '11', '1', '1523516167', '2018-04-12', '58', '100', '2', '0', '100', '100');INSERT INTO `th_give_gift` VALUES ('21', '6', '15', '5', '11', '1', '1523516170', '2018-04-12', '58', '100', '2', '0', '100', '100');CREATE TABLE `th_goods` (
`goods_id` int(11) NOT NULL AUTO_INCREMENT,
`merchants_id` int(11) NOT NULL COMMENT '商户id',
`code` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '商品编码',
`brand_id` int(11) NOT NULL COMMENT '品牌id',
`goods_name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '名称',
`goods_img` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '图片',
`goods_qrcode` varchar(255) CHARACTER SET utf8 NOT NULL DEFAULT '' COMMENT '商品二维码',
`goods_tag` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '商品标签',
`goods_nature` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '商品属性',
`imgs` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '轮播图',
`goods_origin_price` decimal(10,2) NOT NULL COMMENT '原价',
`goods_pc_price` decimal(10,0) NOT NULL COMMENT 'pc价格',
`cost_price` decimal(10,2) NOT NULL COMMENT '产品成本价',
`goods_now_price` decimal(10,2) NOT NULL COMMENT '现价',
`goods_desc` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '商品简介',
`goods_url` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '详情url',
`goods_uuid` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '商品uuid',
`goods_detail` longtext CHARACTER SET utf8mb4 NOT NULL COMMENT '图文详情',
`total_sales` int(11) NOT NULL DEFAULT '0' COMMENT '总销量',
`month_sales` int(11) NOT NULL DEFAULT '0' COMMENT '月销量',
`day_sales` int(11) NOT NULL DEFAULT '0' COMMENT '日销量',
`goods_stock` int(11) NOT NULL DEFAULT '0' COMMENT '库存',
`goods_star1` int(11) NOT NULL DEFAULT '5',
`goods_star2` int(11) NOT NULL DEFAULT '5',
`goods_star3` int(11) NOT NULL DEFAULT '5',
`goods_address` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '产地',
`comment_count` int(6) NOT NULL DEFAULT '0' COMMENT '评价数量',
`goods_state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态1上架2下架',
`goods_position` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '商品展示位置 class:分类下推荐展示',
`is_group` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否加入团购0加入',
`is_delete` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除1删除',
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`is_give_integral` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否赠送积分1赠送',
`give_integral_value` int(11) NOT NULL DEFAULT '0' COMMENT '赠送积分值',
`temp_img` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '临时用下',
`sort` int(11) NOT NULL COMMENT '排序值',
`is_tuijian` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1是推荐',
`has_postage` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否包邮,1包邮;2不包邮',
`unit` tinyint(2) NOT NULL COMMENT '商品计价单位',
`is_review` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1已审核',
`parent_class` int(11) NOT NULL COMMENT '父级分类',
`seed_class` int(11) NOT NULL COMMENT '子级分类',
`sale_ratio` decimal(3,1) NOT NULL DEFAULT '0.0' COMMENT '销售比例',
PRIMARY KEY (`goods_id`),
UNIQUE KEY `goods_id` (`goods_id`) USING BTREE,
KEY `merchants_id` (`merchants_id`,`goods_pc_price`,`goods_now_price`,`goods_state`,`is_delete`,`create_time`,`brand_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;INSERT INTO `th_goods` VALUES ('8', '5', '001', '0', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', 'http://shop.100ytv.com/qrcode/logo/1523327992721_qrcode.png', '', '', 'http://shop.100ytv.com/uploads/image/goods/20180410/b0d068d6496dac144ce8a2d3151500b1.jpg,,,,,', '10.00', '0', '10.00', '1.00', '黄牛肉属于温热性质的肉食,擅长补气,是气虚之人进行食养食疗的首选肉食,就好象气虚之人进行药疗常常首选黄芪那样,所以《韩氏医通》说“黄牛肉补气,与绵黄芪同功。', '', '6f71d3c5-97e4-ba92-5c39-d44b4634bc8f', '<p><img src=\"/data/upload/20180410/1523327982320072.jpg\" title=\"1523327982320072.jpg\" alt=\"牛肉详情页.jpg\"/></p>', '109', '109', '109', '192', '5', '5', '5', '上海', '27', '1', '', '1', '0', '2018-04-10 10:39:52', '2018-04-10 15:57:09', '0', '0', '', '8', '0', '1', '0', '1', '5', '42', '50.0');CREATE TABLE `th_goods_brand` (
`brand_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`brand_name` varchar(64) NOT NULL DEFAULT '' COMMENT '品牌名',
`brand_desc` text NOT NULL COMMENT '品牌简介',
`brand_img` varchar(255) NOT NULL,
`brand_uuid` varchar(64) NOT NULL COMMENT '品牌uuid',
`brand_state` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1上架;2下架',
`merchant_id` int(11) unsigned NOT NULL COMMENT '商家id',
`is_delete` tinyint(4) NOT NULL DEFAULT '0' COMMENT '1删除',
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`sort` int(11) NOT NULL COMMENT '排序',
PRIMARY KEY (`brand_id`),
UNIQUE KEY `brand_id` (`brand_id`,`brand_uuid`) USING BTREE,
KEY `merchants_id` (`is_delete`,`create_time`,`merchant_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;CREATE TABLE `th_goods_class` (
`class_id` int(11) NOT NULL AUTO_INCREMENT,
`class_name` varchar(64) NOT NULL COMMENT '分类名称',
`class_desc` varchar(150) NOT NULL DEFAULT '' COMMENT '分类描述',
`class_state` tinyint(4) NOT NULL DEFAULT '1' COMMENT '分类状态 0:下架 1:上架',
`class_img` varchar(150) DEFAULT '' COMMENT '分类图标',
`class_color` varchar(64) DEFAULT '' COMMENT ' 字体颜色',
`class_url` varchar(150) DEFAULT '',
`class_type` varchar(32) NOT NULL DEFAULT 'class' COMMENT '分类类型 具体项目 具体定义 class:正常分类',
`parent_id` int(11) DEFAULT NULL COMMENT '父id',
`class_uuid` varchar(64) NOT NULL DEFAULT '',
`class_parent_uuid` varchar(64) NOT NULL DEFAULT '',
`sort` int(8) DEFAULT '1' COMMENT '权重',
`operate_class` varchar(255) NOT NULL DEFAULT '' COMMENT '商家经营分类',
`create_time` datetime DEFAULT NULL,
`update_time` datetime DEFAULT NULL,
`is_delete` tinyint(1) DEFAULT '0' COMMENT '是否删除',
`is_recommend` tinyint(1) DEFAULT '0' COMMENT '是否首页推荐',
`template_img` varchar(200) NOT NULL DEFAULT '' COMMENT '宣传图',
PRIMARY KEY (`class_id`),
KEY `sort` (`is_delete`,`class_uuid`,`create_time`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=73 DEFAULT CHARSET=utf8 COMMENT='商品分类表';INSERT INTO `th_goods_class` VALUES ('1', '居家生活', '手机', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/a9ba42051fc67b49b42ca2150739cb22.jpg', '#000000', '', 'class', '-1', 'dasdas', 'dasdas', '99', '', '', '2018-01-09 14:14:52', '0', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/cf351a98c1546ac8d0311a1298e866dc.jpg');INSERT INTO `th_goods_class` VALUES ('2', '美妆个护', '预售', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/a75a2405bbcde2e894134113b0f10de1.jpg', '#000000', '', 'class', '-1', 'd08baf09-db4e-4505-b7da-26a6f1e33b65', '#d08baf09-db4e-4505-b7da-26a6f1e33b65', '80', '', '2016-12-23 13:15:39', '2018-01-09 14:19:02', '0', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/179bdce2bc3264f51f2ac0afb3a75034.jpg');INSERT INTO `th_goods_class` VALUES ('3', '精选服饰', '特产', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/a6c6ebb9fc53b14136d9ae54c74e6e40.jpg', '#000000', '', 'class', '-1', 'f2d360df-4184-4058-bf40-75e44ecb6002', '#f2d360df-4184-4058-bf40-75e44ecb6002', '70', '', '2016-12-23 13:20:09', '2018-01-09 14:19:07', '0', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/af39aaebdeff224f274fd43663f38c16.jpg');INSERT INTO `th_goods_class` VALUES ('5', '时令生鲜', '旅游', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/84cafa86c52cea3cf94de23e84e2cfea.jpg', '#744323', '', 'class', '-1', '10e804cc-d516-4b0b-bf44-da923a0d1fab', '#10e804cc-d516-4b0b-bf44-da923a0d1fab', '60', '', '2016-12-26 11:14:23', '2018-01-09 14:19:12', '0', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/cd07788fa4158609888e2e67e87d2d68.jpg');INSERT INTO `th_goods_class` VALUES ('6', '全部', '', '1', 'http://dspx.tstmobile.com/uploads//image/goods/20171030/4ac2981da8214835d10d0a404e421582.png', '#744323', '', 'class', '-1', '81c97b10-f55d-d400-4458-0f8ebb9612c9', '', '99', '', '2017-10-30 12:29:29', '2017-10-30 13:21:36', '1', '1', 'http://dspx.tstmobile.com/uploads/image/20171028/439d26a5c33d01f7aee7572551686f16.png');INSERT INTO `th_goods_class` VALUES ('7', '名优特产', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/f6a051d394532195a5744656eb6bbf87.jpg', '#744323', '', 'class', '-1', 'c339a369-d64c-c94c-6b64-0c0f9bb5a0ae', '', '50', '', '2017-10-30 13:22:25', '2018-01-09 14:19:17', '0', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/f424e6174db2590961a162761f3566eb.jpg');INSERT INTO `th_goods_class` VALUES ('8', '男装', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/0b3997bcc2bb396b7079049acc43e0e7.jpg', '#131254', '', 'class', '3', '9a8327d4-10c2-532f-21a1-440e6c6ee3cc', '', '0', '', '2017-11-01 17:28:49', '2018-01-09 14:25:00', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171123/97a0bdfbdbeb3d7702b22da346f07291.gif');INSERT INTO `th_goods_class` VALUES ('9', '热门推荐', '', '0', 'http://dspx.tstmobile.com/uploads/image/goods/20171030/3056de9447790ad200e127cc99e18a88.png', '#666666', '', 'class', '-1', 'c6ab1e30-e460-997a-4fe0-acef450958e0', '', '9999', '', '2017-11-02 16:23:47', '2017-12-20 13:37:10', '1', '1', 'http://dspx.tstmobile.com/uploads/image/banner/20171025/2edec1371be34c6f2119303195847150.jpg');INSERT INTO `th_goods_class` VALUES ('10', '水吧物料', '', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171104/7ae33f04987950b00c6695bd00bb189f.png', '#666666', '', 'class', '-1', 'b4682a57-e320-a730-d9cf-41d8e80eda31', '', '85', '', '2017-11-02 16:39:43', '2017-11-04 14:35:58', '1', '1', 'http://dspx.tstmobile.com/uploads/image/goods/20171101/85177450a282065e3a85eebb6322b127.png');INSERT INTO `th_goods_class` VALUES ('11', '二手设备', '', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171104/78caa2b9a789e3cdbf4736534390908b.png', '#888888', '', 'class', '-1', '16c10851-3acf-7a9f-de85-987429a3f99c', '', '80', '', '2017-11-02 16:40:10', '2017-11-04 14:36:12', '1', '1', 'http://dspx.tstmobile.com/uploads/image/goods/20171028/0ab21132d84817f4aeffc102124d56dc.jpg');INSERT INTO `th_goods_class` VALUES ('12', '行业资讯', '', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171104/bc8994ceb776683c84139026d99d16c1.png', '#666666', '', 'class', '-1', 'f4e663c8-113c-0756-f7a9-fc980e1e9dad', '', '75', '', '2017-11-02 16:40:53', '2017-11-04 14:36:23', '1', '1', 'http://dspx.tstmobile.com/uploads/image/goods/20171028/04db03385d1049e880af9aaeb10c3b05.jpg');INSERT INTO `th_goods_class` VALUES ('13', '求职招聘', '', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171104/7419a4df9e5091bddd820bb1a24f2dc5.png', '#333333', '', 'class', '-1', 'd2d93bb5-3c92-4cde-1602-4129b935ba5d', '', '70', '', '2017-11-02 16:41:21', '2017-11-04 14:36:30', '1', '1', 'http://dspx.tstmobile.com/uploads/image/goods/20171028/0ab21132d84817f4aeffc102124d56dc.jpg');INSERT INTO `th_goods_class` VALUES ('14', '测试五', '', '1', 'http://dspx.tstmobile.com/uploads/image/goods/20171028/4b69d715b5516eb0e45fadccc8724fbb.jpg', '#121323', '', 'class', '-1', '9401ebad-a16c-887f-c41a-76385ba012d4', '', '0', '', '2017-11-02 16:41:49', '', '1', '1', 'http://dspx.tstmobile.com/uploads/image/goods/20171030/1ea893d9b710a093d598cbdf27464533.jpg');INSERT INTO `th_goods_class` VALUES ('15', '粉类', '', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171109/b2b9c9fa6b73e8294ecd55ad369bdf9b.jpg', '#000000', '', 'class', '9', 'c127ee1d-aa81-d10a-24b2-9ebef791f6d7', '', '0', '', '2017-11-03 16:43:58', '2017-11-09 16:29:33', '1', '0', 'http://dspx.tstmobile.com/uploads/image/TST.png');INSERT INTO `th_goods_class` VALUES ('16', '油类', '', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171109/1970e3e27cd399a0728201d5b2239723.jpg', '#000000', '', 'class', '9', '42b6f91d-aa5f-4d2b-19b5-1d741ff73ce7', '', '0', '', '2017-11-03 16:44:33', '2017-11-09 16:29:46', '1', '0', 'http://dspx.tstmobile.com/uploads/image/TST.png');INSERT INTO `th_goods_class` VALUES ('17', '乳制品', '', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171109/8f4f8e016d7aad895da89b5f01d51017.jpg', '#999999', '', 'class', '9', '84fda731-c9c5-a08e-b639-b6ac7b524345', '', '0', '', '2017-11-03 16:45:08', '2017-11-09 16:29:58', '1', '0', 'http://dspx.tstmobile.com/uploads/image/TST.png');INSERT INTO `th_goods_class` VALUES ('18', 'daf', '', '1', 'http://dspx.tstmobile.com/uploads//image/goods/20171104/cd6f95e71c2f2ed8f032eee73da2d387.png', '#000000', '', 'class', '-1', '5c87e964-919b-e497-f238-bcfc5325df01', '', '0', '', '2017-11-04 14:08:46', '', '1', '1', 'http://dspx.tstmobile.com/uploads/image/TST.png');INSERT INTO `th_goods_class` VALUES ('19', '坚果', '', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171109/763422cd897f9cacee76cc24544ff537.jpg', '#444444', '', 'class', '9', 'c0f19eaf-7ad9-cb89-5d7e-370af7298193', '', '0', '', '2017-11-04 14:30:31', '2017-11-09 16:30:09', '1', '0', 'http://dspx.tstmobile.com/uploads/image/goods/20171028/0ab21132d84817f4aeffc102124d56dc.jpg');INSERT INTO `th_goods_class` VALUES ('20', '发的', '', '1', 'http://dspx.tstmobile.com/uploads/image/goods/20171027/3f006140f9444c5f01b110ca5074e242.png', '#000000', '', 'class', '10', '833d4f31-1855-be31-84ba-c2bfdbdc2d3a', '', '10', '', '2017-11-14 11:16:11', '', '1', '1', 'http://dspx.tstmobile.com/uploads/image/20171102/fc0bce2e4ba87f3218568e642d21fa83.png');INSERT INTO `th_goods_class` VALUES ('21', '1', '', '1', 'http://dspx.tstmobile.com/uploads/image/20171028/6222ddc0d7c7ea9c02f71a102a10b28b.png', '#000000', '', 'class', '1', '9eda6e86-1f30-00ae-5b2f-58e984c77e4a', '', '50', '', '2017-11-17 10:10:12', '', '1', '0', 'http://dspx.tstmobile.com/uploads/image/touxiang.png');INSERT INTO `th_goods_class` VALUES ('22', '1', '', '1', 'http://dspx.tstmobile.com/uploads/image/20171031/db3df4381f675358875f5c96c9e48218.jpg', '#000000', '', 'class', '1', '32fbc0e0-cc8f-cf49-b55d-4e4b6646b67b', '', '0', '', '2017-11-20 14:14:48', '', '1', '0', 'http://dspx.tstmobile.com/uploads/image/20171031/db3df4381f675358875f5c96c9e48218.jpg');INSERT INTO `th_goods_class` VALUES ('23', '2', '', '1', 'http://dspx.tstmobile.com/uploads/image/20171102/fc0bce2e4ba87f3218568e642d21fa83.png', '#222222', '', 'class', '13', '3ea033ec-6e3d-a4f2-9de0-f5e264ddb31b', '', '22', '', '2017-11-21 09:20:17', '', '0', '0', 'http://dspx.tstmobile.com/uploads/image/TST.png');INSERT INTO `th_goods_class` VALUES ('24', '香水彩妆', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/6b68692dc9132d3d211e93d7e5b57c06.png', '#666666', '', 'class', '2', '74b9929c-b890-b35d-6193-66c755063e68', '', '3', '', '2017-11-23 15:52:56', '2018-01-09 14:23:20', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171123/ef4f526bc801deb67a5f915172761204.jpg');INSERT INTO `th_goods_class` VALUES ('25', '居家日用', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/645dc1384ed288cd68815b2e862bd798.png', '#666666', '', 'class', '1', '8c014f78-1589-2aa3-2e2c-3946cc7d798b', '', '0', '', '2017-11-23 15:54:15', '2018-01-09 14:21:14', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171123/ea06aceffc7ece1b907dd480c82aab6a.jpg');INSERT INTO `th_goods_class` VALUES ('26', '家禽', '', '1', 'http://dspx.tstmobile.com/uploads//image/goods/20171123/a46cd8e0681c55cf046f4e26c50c7eb7.gif', '#666666', '', 'class', '9', '9c783bbb-41a2-1be6-ed52-de1e0b4c0baa', '', '0', '', '2017-11-23 16:00:36', '2017-12-20 13:40:55', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171123/7d120d58509028aa21deaa8146d5eff8.gif');INSERT INTO `th_goods_class` VALUES ('27', '坚果蜜饯', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/dcf16d44245032f8394b83e917891a4e.jpg', '#666666', '', 'class', '7', '2be07795-e046-a45a-3e83-b15ce5563f93', '', '0', '', '2017-11-23 16:01:55', '2018-01-09 14:28:12', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171123/4349f655e76c988c167dc5a24ac844bd.gif');INSERT INTO `th_goods_class` VALUES ('28', '海鲜水产', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/d053f0a6c609b1b47874fe99979f74d2.jpg', '#666666', '', 'class', '5', '66779e0e-d075-ca08-3b71-66f68c419a79', '', '0', '', '2017-11-23 16:03:54', '2018-01-09 14:26:05', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171123/f8c29c78d8e8ce53e10b8230c1a2d6bf.jpg');INSERT INTO `th_goods_class` VALUES ('29', '补品', '', '1', 'http://dspx.tstmobile.com/uploads//image/goods/20171123/cda45466708c39eac8b3958965a5c3e6.gif', '#666666', '', 'class', '9', 'c9520922-970b-db4f-fb3f-1a4698308645', '', '0', '', '2017-11-23 16:08:31', '', '1', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171123/d27b585566d5b33ffc2e4b989607dbcd.gif');INSERT INTO `th_goods_class` VALUES ('30', '滋补养生', '', '1', 'http://dspx.tstmobile.com/uploads//image/goods/20171123/d6a570608a2ea7e74399ad8bc8f9da1c.gif', '#222222', '', 'class', '-1', '00df579b-8164-aaa9-8c9f-8f0f5d6d43f6', '', '0', '', '2017-11-23 16:15:14', '2017-11-23 16:59:21', '1', '1', 'http://dspx.tstmobile.com/uploads//image/goods/20171123/2e376a4a76334e1fdcfd039e15c5297e.png');INSERT INTO `th_goods_class` VALUES ('31', '保健药品', '', '1', 'http://dspx.tstmobile.com/uploads//image/goods/20171123/38dd73c79f623c56e3e9f14830c88932.gif', '#666666', '', 'class', '30', 'b796ff0e-2919-7fda-80c9-5bc463634c77', '', '0', '', '2017-11-23 16:16:55', '', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171123/b7ea1d88da12119993fee30b98979920.gif');INSERT INTO `th_goods_class` VALUES ('32', '走遍中国', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/c39613244c25b13bbdc6f3eb70aba94e.jpg', '#777777', '', 'class', '-1', 'c3afc544-9aec-2ec4-236e-87be90e3d8e0', '', '40', '', '2017-11-23 17:07:31', '2018-01-09 14:19:22', '0', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/fd5a5babd57019b4c70163e21103ca5d.jpg');INSERT INTO `th_goods_class` VALUES ('33', '旅行套餐', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/24fe0c995b3404708eb86e9b04454792.png', '#888888', '', 'class', '32', 'fc3acfea-7b44-9807-c412-67de06f81705', '', '0', '', '2017-11-23 17:08:26', '2018-01-09 14:29:26', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171123/14a18ffb37ed82eb96142bdf25fa01f0.gif');INSERT INTO `th_goods_class` VALUES ('34', '面部护理', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/a52acef7004a94359e3e7cf4df3be84b.png', '#546565', '', 'class', '2', '7939d150-3c08-606d-340d-cdb45a3e086b', '', '2', '', '2017-12-19 18:26:19', '2018-01-09 14:23:29', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171219/e503c1c46f542f7ff6b1c8cf9b7e288d.jpg');INSERT INTO `th_goods_class` VALUES ('35', '即将上线', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/4c84ffd327e647a0a888fb3ced0b79a6.jpg', '#111111', '', 'class', '-1', '9b0e98e4-c25b-1f2d-770f-144d621e86de', '', '30', '', '2017-12-20 13:39:42', '2018-01-09 14:19:27', '0', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/10752b06e20fc68173f215f517d6d3c3.jpg');INSERT INTO `th_goods_class` VALUES ('36', '1', '', '1', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/2f89cc6871d1df4809a6d6ac9cce6038.png', '#222222', '', 'class', '0', '1b912a84-a8c4-edda-3c7e-50e2352b2246', '', '0', '', '2017-12-20 14:42:40', '', '0', '0', 'http://dspx.tstmobile.com/uploads/image/20171102/fc0bce2e4ba87f3218568e642d21fa83.png');INSERT INTO `th_goods_class` VALUES ('37', '1', '', '1', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/19c2bc91eaea3ae8de67db040813f7b9.png', '#222222', '', 'class', '0', 'f0cd3d80-8d27-4341-effc-8b4f117fa367', '', '0', '', '2017-12-20 14:43:45', '', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/2d38d1369e1ab262b0aa4dd103ba6a5f.jpg');INSERT INTO `th_goods_class` VALUES ('38', '粮油干货', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/09353491cc7d826cfcd390fa4040c1b9.jpg', '#111111', '', 'class', '7', 'e1643080-c879-0fad-15d1-eaf9eddd85d0', '', '0', '', '2017-12-20 15:17:13', '2018-01-09 14:28:21', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/148fa6ff6ef4409ab814372dd820429d.png');INSERT INTO `th_goods_class` VALUES ('39', '休闲零食', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/88b6e1551cd2971c3885be2b7bbb2785.jpg', '#111111', '', 'class', '7', '01fd4b32-601b-eead-8f6a-b8d497e4bdbc', '', '0', '', '2017-12-20 15:18:08', '2018-01-09 14:28:41', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/642b61b6110c1ea5cc25756482170ba9.png');INSERT INTO `th_goods_class` VALUES ('40', '茶饮冲调', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/c7a52cc310e2d9ab1c51cb371c298b80.jpg', '#111111', '', 'class', '7', '95ae5c49-44aa-9077-169b-2f64d55b3d43', '', '0', '', '2017-12-20 15:19:55', '2018-01-09 14:28:50', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/05ebd06d008edd690ef0882a9a3c863b.png');INSERT INTO `th_goods_class` VALUES ('41', '滋补养生', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/50b84c5c28dd0f66ac758bebfd62def9.jpg', '#111111', '', 'class', '7', 'ae758192-3883-1496-cfe4-171a8af3df35', '', '0', '', '2017-12-20 15:20:20', '2018-01-09 14:28:57', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/aa435b29ee7eb1a3451256a4d1557a11.png');INSERT INTO `th_goods_class` VALUES ('42', '禽蛋肉类', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/323a57e69ef5cd30ec94ab3556726b61.jpg', '#111111', '', 'class', '5', 'bf3390a3-4e8d-6588-ffbc-051870ef1b54', '', '0', '', '2017-12-20 15:21:55', '2018-01-09 14:26:14', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/660edc26e7bb703b0caf14888cc977f6.png');INSERT INTO `th_goods_class` VALUES ('43', '四级时蔬', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/1a851792a97d99781caa4a72808d4406.jpg', '#111111', '', 'class', '5', '8c1352fd-9fe8-a393-f370-5c0887b819fd', '', '0', '', '2017-12-20 15:22:32', '2018-01-09 14:26:23', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/c44a8c0e317c0cffb07ed8d9802db728.png');INSERT INTO `th_goods_class` VALUES ('44', '新鲜水果', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/6bc2232985d37c77c3f23f3bfb3675ac.jpg', '#111111', '', 'class', '5', '4a15d4bf-60bc-70e7-dccb-d1ac0a25534d', '', '0', '', '2017-12-20 15:23:07', '2018-01-09 14:26:33', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/005038b0a2155f8549d32d86ad4d4f45.png');INSERT INTO `th_goods_class` VALUES ('45', '乳品甜点', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/a611c7929833b605ca01ff1b88ba9515.jpg', '#111111', '', 'class', '5', '265643bf-2478-17d9-7ebd-484276b96025', '', '0', '', '2017-12-20 15:23:33', '2018-01-09 14:27:20', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/917d609e4037f9fb0316861952f01048.png');INSERT INTO `th_goods_class` VALUES ('46', '方便速食', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/ad3b384f52583742ed387eb14f815c53.jpg', '#111111', '', 'class', '5', 'cfd4aab9-1cc3-1653-bcdb-45a6a0793a81', '', '0', '', '2017-12-20 15:24:03', '2018-01-09 14:27:30', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/7966b5ad687b2f8bebf599e9b722cb01.png');INSERT INTO `th_goods_class` VALUES ('47', '女装', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/ed2f723d478a63faf936df67ef23dc95.jpg', '#111111', '', 'class', '3', '4a9d43b6-1ff2-a39c-44e4-87ea0fd27860', '', '0', '', '2017-12-20 15:24:41', '2018-01-09 14:25:09', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/8e189520c7a5a3b2b4995ae0d2b3bbba.png');INSERT INTO `th_goods_class` VALUES ('48', '下装', '', '1', 'http://dspx.tstmobile.com/uploads//image/goods/20171221/a40beef293631da341620f895a3eddd1.jpg', '#111111', '', 'class', '3', '9b44365e-0c13-c7ce-3876-de563e60ab52', '', '0', '', '2017-12-20 15:25:04', '2017-12-21 13:16:44', '1', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/b247cddcfb70b28fb8296ea05f2893ab.png');INSERT INTO `th_goods_class` VALUES ('49', '内搭', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/504975ef412093e0655f1d62d00b6499.jpg', '#111111', '', 'class', '3', '65ac77b1-b1c4-213e-62d8-8dac38e8d1db', '', '0', '', '2017-12-20 15:25:27', '2018-01-09 14:25:21', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/5f656c5ae164cdbee05b5339bad29f49.png');INSERT INTO `th_goods_class` VALUES ('50', '鞋帽', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/0dada87f56b5e04422b0705bc615756e.jpg', '#111111', '', 'class', '3', 'd944d2eb-2cf3-82c1-2ce5-073158d0b5ed', '', '0', '', '2017-12-20 15:25:56', '2018-01-09 14:25:30', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/7464b601a3f700faedce71ee13a67394.png');INSERT INTO `th_goods_class` VALUES ('51', '箱包', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/7d3a24ca15c838fa2b4ec1978f6a6b34.jpg', '#111111', '', 'class', '3', 'c7d5bd37-6770-bdf8-576a-c7b5309c49bc', '', '0', '', '2017-12-20 15:26:18', '2018-01-09 14:25:39', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/6d485ae4d22f781f5f04628855c542de.png');INSERT INTO `th_goods_class` VALUES ('52', '配饰', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/713bc00a09dfd68627d76ab1cbce1c03.jpg', '#111111', '', 'class', '3', '70293aaf-0abf-1931-9c45-941bcad8ae1c', '', '0', '', '2017-12-20 15:26:43', '2018-01-09 14:25:47', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/830f6b9bbbe67fa4fdf7bf0af628e8f6.png');INSERT INTO `th_goods_class` VALUES ('53', '身体护理', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/3fda7857b2b677f5aceee6928b885b50.png', '#111111', '', 'class', '2', '2580f18e-1e45-6561-6a42-b43f80e07577', '', '0', '', '2017-12-20 15:29:30', '2018-01-09 14:23:39', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/9e55bf9b38ebd8eb2e5136bdd8d0accd.png');INSERT INTO `th_goods_class` VALUES ('54', '口腔护理', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/902e7ca79bcba87213c579baa7ab4bfe.png', '#111111', '', 'class', '2', '703d56b3-5ea2-b488-93f9-0eedb5895eb8', '', '0', '', '2017-12-20 15:29:54', '2018-01-09 14:23:56', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/e6ee0db59a70744f58adcbcd7e95024d.png');INSERT INTO `th_goods_class` VALUES ('55', '洗发护发', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/5904c8330832246eee77f6839e612d9a.png', '#111111', '', 'class', '2', 'b85ef1bb-eb68-1d1c-1f12-fa9b552fd9d7', '', '0', '', '2017-12-20 15:30:13', '2018-01-09 14:24:07', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/391b5d8436bc751761901f9ff3bafa99.png');INSERT INTO `th_goods_class` VALUES ('56', '女性护理', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/9ce05025a68a7c6ca4abef4f5408bca5.png', '#111111', '', 'class', '2', '22bdcfd2-0ccb-fb56-2352-890bb7d3e050', '', '0', '', '2017-12-20 15:30:43', '2018-01-09 14:24:19', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/4f66be49423962338aeec13760761539.png');INSERT INTO `th_goods_class` VALUES ('57', '清洁用品', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/b2cc37c136d84c40ef992193cb7155e8.png', '#111111', '', 'class', '2', '5a520348-5808-f748-e43f-34a4d66842e4', '', '0', '', '2017-12-20 15:31:01', '2018-01-09 14:24:29', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/4402ddc6b5bba7bf4520665cc943803e.png');INSERT INTO `th_goods_class` VALUES ('58', '餐饮用具', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/a0f2d7bd494e3e794d4b0247960a1eae.png', '#111111', '', 'class', '1', '9fbca00d-b060-5e0c-f280-40f2aa2c69d7', '', '0', '', '2017-12-20 15:32:00', '2018-01-09 14:21:26', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/17024bc940ee5f9f159354e62cb62395.png');INSERT INTO `th_goods_class` VALUES ('59', '厨房烹饪', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/5db3d15a70ce7f51154d233c05919260.png', '#111111', '', 'class', '1', '95d434b4-d974-a121-2e78-b21352f7b155', '', '0', '', '2017-12-20 15:32:23', '2018-01-09 14:21:35', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/735762789be67215db5fb23cf0a45a28.png');INSERT INTO `th_goods_class` VALUES ('60', '收纳必备', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/0994f4c363445f01d4408c6c6101c32e.png', '#111111', '', 'class', '1', '4ef87242-8702-ff2a-f273-07384c2c521b', '', '0', '', '2017-12-20 15:32:43', '2018-01-09 14:21:45', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/b98e44a4ae17923333b928d85b856cdc.png');INSERT INTO `th_goods_class` VALUES ('61', '清洁用具', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/e6d1e091fc9f33eefa083f142c9b2e46.png', '#111111', '', 'class', '1', 'd091f634-6419-af57-bbac-8903faf388c4', '', '0', '', '2017-12-20 15:33:08', '2018-01-09 14:21:55', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/a59463b2a631dd4617f1e2dd662cf370.png');INSERT INTO `th_goods_class` VALUES ('62', '家用电器', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/e832bcb84ce26f86000372f9253aaee9.png', '#111111', '', 'class', '1', 'bd203986-a35a-5b73-c911-ac471d5297d2', '', '0', '', '2017-12-20 15:33:28', '2018-01-09 14:22:06', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/934145e30b2ad8be877269b9361e79cd.png');INSERT INTO `th_goods_class` VALUES ('63', '家具家装', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/05df5e8cf672716927702a7944ce28ca.png', '#111111', '', 'class', '1', '7a63dbad-2c26-0912-2318-76e60061bec7', '', '0', '', '2017-12-20 15:33:59', '2018-01-09 14:22:19', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/76a135179f30c2106ad47b1e9aaa25a8.png');INSERT INTO `th_goods_class` VALUES ('64', '节日用品', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/fef3d16f2aef1edf68f79a5fb760da51.png', '#111111', '', 'class', '1', 'fa90639d-c9cd-862d-60f9-eca3f9768719', '', '0', '', '2017-12-20 15:34:25', '2018-01-09 14:22:31', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/1c7b954efc6ec939c7fa7babfe64c7c5.png');INSERT INTO `th_goods_class` VALUES ('65', '订票助手', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/23565047b347e6a63d26da38c5c47cbc.png', '#111111', '', 'class', '32', 'e35f3cce-5386-6fb7-a9ce-2c64b9f5c464', '', '0', '', '2017-12-20 15:35:17', '2018-01-09 14:29:34', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/e5681627adb5cb3f42b0c47ac7ad5241.png');INSERT INTO `th_goods_class` VALUES ('66', '快捷签证', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/1a437f717b8b243ad12c54bc058c976c.png', '#111111', '', 'class', '32', '41a50f31-8fde-c1e1-fb29-a6de56ecd172', '', '0', '', '2017-12-20 15:35:36', '2018-01-09 14:29:43', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/14786238596d7e9db25dd3340cb36540.png');INSERT INTO `th_goods_class` VALUES ('67', '境外上网', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/d2bcb3b5d7ec1919e1c9ca89d3d39f41.jpg', '#111111', '', 'class', '32', '9abc52d8-b736-62b5-c93e-e577cd4ac8a2', '', '0', '', '2017-12-20 15:36:24', '2018-01-09 14:29:52', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/c2ece65e1596b503d9d33fde80b8ac97.png');INSERT INTO `th_goods_class` VALUES ('68', '酒店预订', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/d667a99497cd79e1f496e040c1696ddd.png', '#111111', '', 'class', '32', '3d99c405-3aa7-0f4a-e10b-b1fe6ca0f07b', '', '0', '', '2017-12-20 15:36:42', '2018-01-09 14:30:01', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/71574fbe6367939291b9bef7ff9c26af.png');INSERT INTO `th_goods_class` VALUES ('69', '租车自驾', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/24f9dc5d1de6df3c5905df8d97214dfb.png', '#111111', '', 'class', '32', '0c645825-3986-2082-d8dd-e0d0ec8fe427', '', '0', '', '2017-12-20 15:37:04', '2018-01-09 14:30:10', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/020fa8413cf33ff72b3b7bdbfd8f1424.png');INSERT INTO `th_goods_class` VALUES ('70', '接送机服务', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180109/ab1e3b833d78bc87071275d07b45f2b6.jpg', '#111111', '', 'class', '32', 'c14e2504-0933-df6e-f664-0873b7ce90e0', '', '0', '', '2017-12-20 15:38:39', '2018-01-09 14:30:20', '0', '0', 'http://dspx.tstmobile.com/uploads//image/goods/20171220/b94d2a1004bd29cbe323633d3d337b46.png');INSERT INTO `th_goods_class` VALUES ('71', '001', ' 17681442898', '1', 'http://shop.100ytv.com/uploads//image/goods/20180327/88b5af45f498cea6f0f464cb40f66594.jpg', '#000000', '', 'class', '-1', '960c70c5-5b9a-a5ab-440f-6f0777e5e532', '', '0', '', '2018-03-27 13:14:39', '', '1', '1', 'http://shop.100ytv.com/uploads//image/goods/20180327/5356ad3285306df28d23c420f4242e83.jpg');INSERT INTO `th_goods_class` VALUES ('72', '002', '', '1', 'http://shop.100ytv.com/uploads//image/goods/20180327/de960dedc506329773a6d31205098aea.jpg', '#000000', '', 'class', '71', '98603727-aa02-a668-ab5f-46a0cf485978', '', '0', '', '2018-03-27 13:15:18', '', '1', '0', 'http://shop.100ytv.com/uploads//image/goods/20180327/ab1c634a9148e2ca14c81607669e076a.jpg');CREATE TABLE `th_goods_collection` (
`collection_id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`goods_id` int(11) NOT NULL COMMENT '收藏品id',
`intime` datetime NOT NULL COMMENT '操作时间',
`is_delete` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`collection_id`),
KEY `member_id` (`member_id`,`goods_id`,`intime`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;INSERT INTO `th_goods_collection` VALUES ('5', '13', '8', '2018-04-10 15:46:40', '2');INSERT INTO `th_goods_collection` VALUES ('6', '15', '8', '2018-04-12 10:53:12', '2');INSERT INTO `th_goods_collection` VALUES ('7', '3', '8', '2018-04-12 11:08:42', '1');INSERT INTO `th_goods_collection` VALUES ('8', '36', '8', '2018-04-12 11:46:06', '1');INSERT INTO `th_goods_collection` VALUES ('9', '49', '8', '2018-04-12 12:05:53', '1');CREATE TABLE `th_goods_comment` (
`comment_id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL COMMENT '用户id',
`order_merchants_id` int(11) NOT NULL COMMENT '订单id',
`order_no` varchar(32) NOT NULL DEFAULT '' COMMENT '订单号',
`comment_desc` varchar(255) NOT NULL DEFAULT '' COMMENT '评价内容',
`mark` tinyint(1) NOT NULL COMMENT '星级1',
`merchants_id` int(11) NOT NULL COMMENT '商家id',
`goods_id` int(11) NOT NULL COMMENT '商品id',
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0',
`img` text CHARACTER SET utf8 NOT NULL COMMENT '评论图片',
PRIMARY KEY (`comment_id`),
UNIQUE KEY `comment_id` (`comment_id`) USING BTREE,
KEY `assessment_id` (`goods_id`,`create_time`,`is_delete`,`merchants_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4;INSERT INTO `th_goods_comment` VALUES ('6', '6', '22', '2018041011001147819', '好', '3', '5', '8', '2018-04-10 11:05:05', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('7', '6', '27', '2018041012554536305', '不好', '3', '5', '8', '2018-04-10 12:58:06', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('8', '10', '28', '2018041015173099956', '不好玩', '4', '5', '8', '2018-04-10 15:22:42', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('9', '6', '33', '2018041015571470651', '哦哦哦', '3', '5', '8', '2018-04-10 15:59:50', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('10', '3', '35', '2018041016005116511', '明', '4', '5', '8', '2018-04-10 16:02:19', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('11', '3', '36', '2018041016014776155', '去', '5', '5', '8', '2018-04-10 16:03:24', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('12', '14', '47', '2018041018543410143', '好评!好评!', '5', '5', '8', '2018-04-10 19:35:48', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('13', '14', '45', '2018041017453690656', '好评!好评!', '5', '5', '8', '2018-04-10 19:36:01', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('14', '6', '53', '2018041112361773952', 'hxj', '3', '5', '8', '2018-04-11 12:38:49', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('15', '3', '54', '2018041112524497803', 'MiGo楼哦lol', '3', '5', '8', '2018-04-11 12:55:11', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('16', '14', '48', '2018041019304655551', '好评!好评!', '5', '5', '8', '2018-04-11 14:18:10', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('17', '10', '32', '2018041015570859028', '中评', '2', '5', '8', '2018-04-11 16:13:54', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('18', '21', '66', '2018041116542498264', '暗黑MSN', '5', '5', '8', '2018-04-11 17:44:02', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('19', '14', '51', '2018041111265849821', '好评!好评!', '4', '5', '8', '2018-04-11 19:18:42', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('20', '14', '55', '2018041114185183433', '好评!好评!', '4', '5', '8', '2018-04-11 19:18:55', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('21', '14', '57', '2018041114355536332', '好评!好评!', '4', '5', '8', '2018-04-11 19:19:02', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('22', '6', '70', '2018041209121284722', '监控', '3', '5', '8', '2018-04-12 09:17:31', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('23', '6', '69', '2018041209105361546', '监控', '3', '5', '8', '2018-04-12 09:17:36', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('24', '3', '68', '2018041209100824596', '监控', '4', '5', '8', '2018-04-12 09:18:39', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('25', '15', '56', '2018041114285949814', '中评', '3', '5', '8', '2018-04-12 10:51:57', '0000-00-00 00:00:00', '0', 'http://shop.100ytv.com/uploads/touxiang/20180412/26b8990cd93aed477ea347035ad2bfd2.jpg');INSERT INTO `th_goods_comment` VALUES ('26', '15', '50', '2018041020110419491', '中评', '3', '5', '8', '2018-04-12 11:32:58', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('27', '15', '49', '2018041019505093951', '中评', '3', '5', '8', '2018-04-12 11:33:11', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('28', '15', '42', '2018041016451325033', '中评', '3', '5', '8', '2018-04-12 11:33:41', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('29', '15', '46', '2018041017534347812', '中评', '3', '5', '8', '2018-04-12 11:33:46', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('30', '15', '43', '2018041016493555009', '中评', '3', '5', '8', '2018-04-12 11:39:11', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('31', '15', '43', '2018041016493555009', '中评', '3', '5', '8', '2018-04-12 11:39:11', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('33', '6', '111', '2018041214571190014', '啦啦啦', '3', '5', '8', '2018-04-12 15:18:23', '0000-00-00 00:00:00', '0', '');INSERT INTO `th_goods_comment` VALUES ('34', '13', '113', '2018041215521710922', '好评!好评!', '5', '5', '8', '2018-04-12 15:53:40', '0000-00-00 00:00:00', '0', '');CREATE TABLE `th_goods_img` (
`goods_img_id` int(11) NOT NULL AUTO_INCREMENT,
`goods_id` int(11) NOT NULL,
`goods_img` varchar(200) NOT NULL DEFAULT '',
`sort` int(11) NOT NULL,
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除',
PRIMARY KEY (`goods_img_id`),
KEY `goods_id` (`goods_id`,`create_time`,`is_delete`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商品关联图片表';CREATE TABLE `th_goods_merchants_class` (
`merchants_class_id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL COMMENT '商户id',
`class_id` varchar(255) NOT NULL COMMENT '分类id逗号隔开',
`intime` datetime NOT NULL,
PRIMARY KEY (`merchants_class_id`),
KEY `merchants_class_id` (`merchants_class_id`,`member_id`,`intime`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;INSERT INTO `th_goods_merchants_class` VALUES ('13', '5', '1,2,3,5,7,32,35', '2018-04-10 10:50:10');CREATE TABLE `th_goods_recommend` (
`goods_recommend_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`goods_id` int(11) NOT NULL,
`img` varchar(255) NOT NULL COMMENT '图片',
`create_time` datetime NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1删除',
`update_time` datetime NOT NULL,
PRIMARY KEY (`goods_recommend_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;CREATE TABLE `th_goods_relation_class` (
`goods_class_id` int(11) NOT NULL AUTO_INCREMENT,
`class_id` int(11) NOT NULL,
`goods_id` int(11) NOT NULL,
`create_time` datetime NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0',
`uuid` varchar(64) NOT NULL DEFAULT '' COMMENT '对应商品uuid',
`parent_uuid` varchar(150) NOT NULL DEFAULT '' COMMENT '父级分类uuid',
PRIMARY KEY (`goods_class_id`),
UNIQUE KEY `goods_class_id` (`goods_class_id`) USING BTREE,
KEY `create_time` (`create_time`,`is_delete`,`class_id`,`goods_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='分类关联商品表';CREATE TABLE `th_goods_relation_specification` (
`specification_id` int(11) NOT NULL AUTO_INCREMENT,
`goods_id` int(11) NOT NULL,
`specification_state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0:下架 1:上架',
`specification_sku` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '规格sku名',
`specification_ids` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '规格组合',
`specification_names` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '规格名称组合',
`specification_sales` int(11) NOT NULL DEFAULT '0' COMMENT '销量',
`specification_stock` int(11) NOT NULL DEFAULT '0' COMMENT '库存',
`specification_img` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '图片',
`specification_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '原价格',
`specification_cost_price` decimal(10,2) NOT NULL COMMENT '成本价',
`specification_sale_price` decimal(10,2) NOT NULL COMMENT '销售价',
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1删除',
`sale_ratio` decimal(3,1) NOT NULL DEFAULT '0.0' COMMENT '销售比例',
PRIMARY KEY (`specification_id`),
KEY `goods_id` (`goods_id`,`specification_state`,`create_time`,`is_delete`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;INSERT INTO `th_goods_relation_specification` VALUES ('22', '8', '1', '', '55', '250G', '25', '75', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '10.00', '10.00', '1.00', '2018-04-10 10:39:52', '2018-04-10 15:57:09', '0', '0.0');INSERT INTO `th_goods_relation_specification` VALUES ('23', '8', '1', '', '56', '500G/斤', '14', '86', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '10.00', '10.00', '1.00', '2018-04-10 10:39:52', '2018-04-10 15:57:09', '0', '0.0');INSERT INTO `th_goods_relation_specification` VALUES ('24', '8', '1', '', '57', '两斤', '70', '31', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '10.00', '10.00', '1.00', '2018-04-10 10:39:52', '2018-04-10 15:57:09', '0', '0.0');CREATE TABLE `th_goods_shop_car` (
`car_id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`goods_id` int(11) NOT NULL COMMENT 'car_type 为goods则是商品ID promotion:促销Id',
`goods_name` varchar(64) NOT NULL DEFAULT '' COMMENT '商品名称',
`goods_img` varchar(150) NOT NULL DEFAULT '' COMMENT '商品图片',
`merchants_id` int(11) NOT NULL,
`specification_id` int(11) NOT NULL COMMENT '规格id',
`specification_ids` varchar(64) NOT NULL DEFAULT '' COMMENT '规格数组',
`specification_names` varchar(100) NOT NULL COMMENT '规格名称数组',
`goods_num` int(3) NOT NULL COMMENT '数量',
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1删除',
`is_valid` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1有效商品;2无效',
`seller` int(11) NOT NULL COMMENT '销售者',
`live_id` int(11) NOT NULL COMMENT '主播对应直播id',
PRIMARY KEY (`car_id`),
KEY `member_id` (`member_id`,`merchants_id`,`create_time`,`is_delete`,`is_valid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8 COMMENT='购物车';INSERT INTO `th_goods_shop_car` VALUES ('15', '14', '8', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '5', '23', '56', '500G/斤', '1', '2018-04-10 17:53:47', '0000-00-00 00:00:00', '0', '1', '0', '0');INSERT INTO `th_goods_shop_car` VALUES ('26', '41', '8', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '5', '22', '55', '250G', '2', '2018-04-12 12:00:55', '0000-00-00 00:00:00', '0', '1', '0', '0');INSERT INTO `th_goods_shop_car` VALUES ('27', '49', '8', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '5', '24', '57', '两斤', '1', '2018-04-12 12:06:03', '0000-00-00 00:00:00', '0', '1', '0', '0');INSERT INTO `th_goods_shop_car` VALUES ('28', '56', '8', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '5', '24', '57', '两斤', '1', '2018-04-12 12:19:55', '0000-00-00 00:00:00', '0', '1', '0', '0');INSERT INTO `th_goods_shop_car` VALUES ('29', '59', '8', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '5', '22', '55', '250G', '2', '2018-04-12 12:27:01', '2018-04-12 12:27:04', '0', '1', '0', '0');CREATE TABLE `th_goods_specification` (
`specification_id` int(11) NOT NULL AUTO_INCREMENT,
`specification_value` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`parent_id` int(11) NOT NULL DEFAULT '-1' COMMENT '父id',
`sort` int(11) NOT NULL DEFAULT '1' COMMENT '权重',
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0',
`merchants_id` int(11) NOT NULL COMMENT '商户',
`specification_desc` varchar(150) CHARACTER SET utf8 NOT NULL COMMENT '简介',
PRIMARY KEY (`specification_id`)
) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;INSERT INTO `th_goods_specification` VALUES ('48', '尺码', '-1', '48', '2018-04-10 10:13:30', '0000-00-00 00:00:00', '0', '0', '尺码');INSERT INTO `th_goods_specification` VALUES ('49', 'S', '48', '49', '2018-04-10 10:13:39', '0000-00-00 00:00:00', '0', '0', '');INSERT INTO `th_goods_specification` VALUES ('50', 'M', '48', '50', '2018-04-10 10:13:45', '0000-00-00 00:00:00', '0', '0', '');INSERT INTO `th_goods_specification` VALUES ('51', 'L', '48', '51', '2018-04-10 10:13:51', '0000-00-00 00:00:00', '0', '0', '');INSERT INTO `th_goods_specification` VALUES ('52', 'XL', '48', '52', '2018-04-10 10:14:00', '0000-00-00 00:00:00', '0', '0', '');INSERT INTO `th_goods_specification` VALUES ('53', 'XXL', '48', '53', '2018-04-10 10:14:11', '0000-00-00 00:00:00', '0', '0', '');INSERT INTO `th_goods_specification` VALUES ('54', '重量', '-1', '54', '2018-04-10 10:35:27', '0000-00-00 00:00:00', '0', '0', '重量');INSERT INTO `th_goods_specification` VALUES ('55', '250G', '54', '55', '2018-04-10 10:35:48', '0000-00-00 00:00:00', '0', '0', '');INSERT INTO `th_goods_specification` VALUES ('56', '500G/斤', '54', '56', '2018-04-10 10:36:04', '0000-00-00 00:00:00', '0', '0', '');INSERT INTO `th_goods_specification` VALUES ('57', '两斤', '54', '57', '2018-04-10 10:36:17', '0000-00-00 00:00:00', '0', '0', '');INSERT INTO `th_goods_specification` VALUES ('58', '5斤', '54', '58', '2018-04-10 10:36:27', '0000-00-00 00:00:00', '0', '0', '');INSERT INTO `th_goods_specification` VALUES ('59', '十斤', '54', '59', '2018-04-10 10:36:34', '0000-00-00 00:00:00', '0', '0', '');CREATE TABLE `th_grade` (
`grade_id` int(4) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL DEFAULT '' COMMENT '名称',
`value` decimal(10,2) NOT NULL COMMENT '消费金额值',
`intime` datetime NOT NULL COMMENT '创建时间',
`times` float(2,1) NOT NULL DEFAULT '1.0' COMMENT '积分获取倍率',
PRIMARY KEY (`grade_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;CREATE TABLE `th_home_class` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`class_uuid` varchar(64) NOT NULL,
`type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1无跳转;2web链接;3分类页',
`img` varchar(255) NOT NULL,
`title` varchar(64) NOT NULL,
`sort` int(11) NOT NULL,
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0',
`jump` varchar(200) NOT NULL DEFAULT '' COMMENT '跳转值',
`status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '2上架',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8;INSERT INTO `th_home_class` VALUES ('19', 'dasdas', '3', 'http://shop.100ytv.com/uploads//image/20180418/a9d0e3ebd5d91a77052bf79debbd6dce.png', '居家生活', '19', '2018-04-13 12:54:28', '2018-04-18 14:40:33', '0', 'dasdas', '2');INSERT INTO `th_home_class` VALUES ('20', 'd08baf09-db4e-4505-b7da-26a6f1e33b65', '3', 'http://shop.100ytv.com/uploads//image/20180418/10bb33a80f90ba8bf45743e5d82a0213.png', '美妆个护', '20', '2018-04-13 12:55:52', '2018-04-18 14:40:43', '0', 'd08baf09-db4e-4505-b7da-26a6f1e33b65', '2');INSERT INTO `th_home_class` VALUES ('21', 'f2d360df-4184-4058-bf40-75e44ecb6002', '3', 'http://shop.100ytv.com/uploads//image/20180418/6b0acf5292b774e00a5ea1598f16bf24.png', '精选服饰', '21', '2018-04-13 12:56:17', '2018-04-18 14:40:52', '0', 'f2d360df-4184-4058-bf40-75e44ecb6002', '2');INSERT INTO `th_home_class` VALUES ('22', '10e804cc-d516-4b0b-bf44-da923a0d1fab', '3', 'http://shop.100ytv.com/uploads//image/20180418/375e04bbdf7e0cbeb954e495fe8a444c.png', '时令生鲜', '22', '2018-04-13 12:57:10', '2018-04-18 14:41:04', '0', '10e804cc-d516-4b0b-bf44-da923a0d1fab', '2');INSERT INTO `th_home_class` VALUES ('23', 'c339a369-d64c-c94c-6b64-0c0f9bb5a0ae', '3', 'http://shop.100ytv.com/uploads//image/20180418/f4c2193f45be058939d1c9ddaa228505.png', '名优特产', '23', '2018-04-13 12:57:32', '2018-04-18 14:41:14', '0', 'c339a369-d64c-c94c-6b64-0c0f9bb5a0ae', '2');INSERT INTO `th_home_class` VALUES ('24', 'c3afc544-9aec-2ec4-236e-87be90e3d8e0', '3', 'http://shop.100ytv.com/uploads//image/20180418/9bdb3d63269cabdfcdf81e2d1c347def.png', '走遍中国', '24', '2018-04-13 12:57:57', '2018-04-18 14:41:25', '0', 'c3afc544-9aec-2ec4-236e-87be90e3d8e0', '2');INSERT INTO `th_home_class` VALUES ('25', '9b0e98e4-c25b-1f2d-770f-144d621e86de', '3', 'http://shop.100ytv.com/uploads//image/20180418/c33b8e1938390aa558ae3934beb633d1.png', '即将上线', '25', '2018-04-13 12:58:33', '2018-04-18 14:41:40', '0', '9b0e98e4-c25b-1f2d-770f-144d621e86de', '2');INSERT INTO `th_home_class` VALUES ('26', '', '1', 'http://shop.100ytv.com/uploads//image/20180418/eedeb125a07d8dec15d200e2fb12df01.png', '会员中心', '26', '2018-04-13 12:59:18', '2018-04-18 14:41:51', '0', '', '2');INSERT INTO `th_home_class` VALUES ('27', '', '1', 'http://shop.100ytv.com/uploads//image/20180418/6d3a0738ebfc5916a4886c7e6a82ba2b.png', '公开拍卖', '27', '2018-04-13 13:00:35', '2018-04-18 14:42:03', '0', '', '2');INSERT INTO `th_home_class` VALUES ('28', '', '1', 'http://shop.100ytv.com/uploads//image/20180418/6240ed6c91da7c50b028d84a74aeb5fa.png', '全部', '28', '2018-04-13 13:01:54', '2018-04-18 14:42:14', '0', '', '2');CREATE TABLE `th_home_class_pc` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`class_uuid` varchar(64) NOT NULL,
`type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1无跳转;2web链接;3分类页',
`img` varchar(255) NOT NULL,
`title` varchar(64) NOT NULL,
`sort` int(11) NOT NULL,
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0',
`jump` varchar(200) NOT NULL DEFAULT '' COMMENT '跳转值',
`status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '2上架',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;CREATE TABLE `th_images` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`mid` int(11) NOT NULL,
`img` varchar(150) NOT NULL,
`thumb` varchar(255) NOT NULL,
`intime` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;CREATE TABLE `th_install_score` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`consumer` decimal(6,2) NOT NULL COMMENT '消费金额',
`give_integral` int(11) NOT NULL COMMENT '消费的金额送的积分',
`integral` int(11) NOT NULL COMMENT '积分',
`money` decimal(6,2) NOT NULL COMMENT '消费的积分抵扣相应的金额',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;CREATE TABLE `th_into_app` (
`into_app` int(11) NOT NULL AUTO_INCREMENT,
`intime` int(11) NOT NULL COMMENT '时间',
`user_id` int(11) NOT NULL,
`date` varchar(15) NOT NULL COMMENT '日期',
PRIMARY KEY (`into_app`),
KEY `intime` (`intime`,`date`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=902 DEFAULT CHARSET=utf8 COMMENT='进入app记录表';INSERT INTO `th_into_app` VALUES ('780', '1523347466', '3', '2018-04-10');INSERT INTO `th_into_app` VALUES ('781', '1523347191', '6', '2018-04-10');INSERT INTO `th_into_app` VALUES ('782', '1523344201', '2', '2018-04-10');INSERT INTO `th_into_app` VALUES ('783', '1523341926', '9', '2018-04-10');INSERT INTO `th_into_app` VALUES ('784', '1523362251', '10', '2018-04-10');INSERT INTO `th_into_app` VALUES ('785', '1523345684', '11', '2018-04-10');INSERT INTO `th_into_app` VALUES ('786', '1523345846', '12', '2018-04-10');INSERT INTO `th_into_app` VALUES ('787', '1523349333', '13', '2018-04-10');INSERT INTO `th_into_app` VALUES ('788', '1523361351', '14', '2018-04-10');INSERT INTO `th_into_app` VALUES ('789', '1523362363', '15', '2018-04-10');INSERT INTO `th_into_app` VALUES ('790', '1523350902', '16', '2018-04-10');INSERT INTO `th_into_app` VALUES ('791', '1523440234', '10', '2018-04-11');INSERT INTO `th_into_app` VALUES ('792', '1523445588', '14', '2018-04-11');INSERT INTO `th_into_app` VALUES ('793', '1523441948', '15', '2018-04-11');INSERT INTO `th_into_app` VALUES ('794', '1523416558', '17', '2018-04-11');INSERT INTO `th_into_app` VALUES ('795', '1523418676', '18', '2018-04-11');INSERT INTO `th_into_app` VALUES ('796', '1523421203', '5', '2018-04-11');INSERT INTO `th_into_app` VALUES ('797', '1523422257', '6', '2018-04-11');INSERT INTO `th_into_app` VALUES ('798', '1523434044', '7', '2018-04-11');INSERT INTO `th_into_app` VALUES ('799', '1523432448', '3', '2018-04-11');INSERT INTO `th_into_app` VALUES ('800', '1523426939', '19', '2018-04-11');INSERT INTO `th_into_app` VALUES ('801', '1523428880', '20', '2018-04-11');INSERT INTO `th_into_app` VALUES ('802', '1523442479', '21', '2018-04-11');INSERT INTO `th_into_app` VALUES ('803', '1523441579', '12', '2018-04-11');INSERT INTO `th_into_app` VALUES ('804', '1523438508', '23', '2018-04-11');INSERT INTO `th_into_app` VALUES ('805', '1523440329', '24', '2018-04-11');INSERT INTO `th_into_app` VALUES ('806', '1523442376', '27', '2018-04-11');INSERT INTO `th_into_app` VALUES ('807', '1523442418', '28', '2018-04-11');INSERT INTO `th_into_app` VALUES ('808', '1523442494', '29', '2018-04-11');INSERT INTO `th_into_app` VALUES ('809', '1523442744', '30', '2018-04-11');INSERT INTO `th_into_app` VALUES ('810', '1523443094', '31', '2018-04-11');INSERT INTO `th_into_app` VALUES ('811', '1523443124', '32', '2018-04-11');INSERT INTO `th_into_app` VALUES ('812', '1523476439', '33', '2018-04-12');INSERT INTO `th_into_app` VALUES ('813', '1523518012', '3', '2018-04-12');INSERT INTO `th_into_app` VALUES ('814', '1523520869', '6', '2018-04-12');INSERT INTO `th_into_app` VALUES ('815', '1523521143', '7', '2018-04-12');INSERT INTO `th_into_app` VALUES ('816', '1523518387', '5', '2018-04-12');INSERT INTO `th_into_app` VALUES ('817', '1523525375', '15', '2018-04-12');INSERT INTO `th_into_app` VALUES ('818', '1523516210', '34', '2018-04-12');INSERT INTO `th_into_app` VALUES ('819', '1523506081', '35', '2018-04-12');INSERT INTO `th_into_app` VALUES ('820', '1523505066', '36', '2018-04-12');INSERT INTO `th_into_app` VALUES ('821', '1523504701', '37', '2018-04-12');INSERT INTO `th_into_app` VALUES ('822', '1523510015', '40', '2018-04-12');INSERT INTO `th_into_app` VALUES ('823', '1523507007', '39', '2018-04-12');INSERT INTO `th_into_app` VALUES ('824', '1523522750', '41', '2018-04-12');INSERT INTO `th_into_app` VALUES ('825', '1523505312', '42', '2018-04-12');INSERT INTO `th_into_app` VALUES ('826', '1523505393', '43', '2018-04-12');INSERT INTO `th_into_app` VALUES ('827', '1523505512', '47', '2018-04-12');INSERT INTO `th_into_app` VALUES ('828', '1523510105', '46', '2018-04-12');INSERT INTO `th_into_app` VALUES ('829', '1523509497', '48', '2018-04-12');INSERT INTO `th_into_app` VALUES ('830', '1523506182', '49', '2018-04-12');INSERT INTO `th_into_app` VALUES ('831', '1523505767', '50', '2018-04-12');INSERT INTO `th_into_app` VALUES ('832', '1523505866', '51', '2018-04-12');INSERT INTO `th_into_app` VALUES ('833', '1523507864', '44', '2018-04-12');INSERT INTO `th_into_app` VALUES ('834', '1523509527', '52', '2018-04-12');INSERT INTO `th_into_app` VALUES ('835', '1523506207', '53', '2018-04-12');INSERT INTO `th_into_app` VALUES ('836', '1523508685', '54', '2018-04-12');INSERT INTO `th_into_app` VALUES ('837', '1523506232', '55', '2018-04-12');INSERT INTO `th_into_app` VALUES ('838', '1523507291', '56', '2018-04-12');INSERT INTO `th_into_app` VALUES ('839', '1523506788', '57', '2018-04-12');INSERT INTO `th_into_app` VALUES ('840', '1523506983', '61', '2018-04-12');INSERT INTO `th_into_app` VALUES ('841', '1523506984', '58', '2018-04-12');INSERT INTO `th_into_app` VALUES ('842', '1523507224', '59', '2018-04-12');INSERT INTO `th_into_app` VALUES ('843', '1523507010', '62', '2018-04-12');INSERT INTO `th_into_app` VALUES ('844', '1523507074', '38', '2018-04-12');INSERT INTO `th_into_app` VALUES ('845', '1523507075', '63', '2018-04-12');INSERT INTO `th_into_app` VALUES ('846', '1523507073', '64', '2018-04-12');INSERT INTO `th_into_app` VALUES ('847', '1523507138', '65', '2018-04-12');INSERT INTO `th_into_app` VALUES ('848', '1523507482', '67', '2018-04-12');INSERT INTO `th_into_app` VALUES ('849', '1523507959', '66', '2018-04-12');INSERT INTO `th_into_app` VALUES ('850', '1523507403', '68', '2018-04-12');INSERT INTO `th_into_app` VALUES ('851', '1523507400', '69', '2018-04-12');INSERT INTO `th_into_app` VALUES ('852', '1523507973', '71', '2018-04-12');INSERT INTO `th_into_app` VALUES ('853', '1523507538', '72', '2018-04-12');INSERT INTO `th_into_app` VALUES ('854', '1523533364', '73', '2018-04-12');INSERT INTO `th_into_app` VALUES ('855', '1523510169', '74', '2018-04-12');INSERT INTO `th_into_app` VALUES ('856', '1523510099', '75', '2018-04-12');INSERT INTO `th_into_app` VALUES ('857', '1523510684', '76', '2018-04-12');INSERT INTO `th_into_app` VALUES ('858', '1523511249', '77', '2018-04-12');INSERT INTO `th_into_app` VALUES ('859', '1523516758', '78', '2018-04-12');INSERT INTO `th_into_app` VALUES ('860', '1523515417', '79', '2018-04-12');INSERT INTO `th_into_app` VALUES ('861', '1523519859', '13', '2018-04-12');INSERT INTO `th_into_app` VALUES ('862', '1523572409', '35', '2018-04-13');INSERT INTO `th_into_app` VALUES ('863', '1523582294', '80', '2018-04-13');INSERT INTO `th_into_app` VALUES ('864', '1523586720', '57', '2018-04-13');INSERT INTO `th_into_app` VALUES ('865', '1523597921', '6', '2018-04-13');INSERT INTO `th_into_app` VALUES ('866', '1523589891', '6', '2018-04-13');INSERT INTO `th_into_app` VALUES ('867', '1523596398', '81', '2018-04-13');INSERT INTO `th_into_app` VALUES ('868', '1523597501', '3', '2018-04-13');INSERT INTO `th_into_app` VALUES ('869', '1523598456', '13', '2018-04-13');INSERT INTO `th_into_app` VALUES ('870', '1523597033', '41', '2018-04-13');INSERT INTO `th_into_app` VALUES ('871', '1523597925', '10', '2018-04-13');INSERT INTO `th_into_app` VALUES ('872', '1523609678', '15', '2018-04-13');INSERT INTO `th_into_app` VALUES ('873', '1523601936', '7', '2018-04-13');INSERT INTO `th_into_app` VALUES ('874', '1523602386', '5', '2018-04-13');INSERT INTO `th_into_app` VALUES ('875', '1523615321', '82', '2018-04-13');INSERT INTO `th_into_app` VALUES ('876', '1523630672', '66', '2018-04-13');INSERT INTO `th_into_app` VALUES ('877', '1523666180', '83', '2018-04-14');INSERT INTO `th_into_app` VALUES ('878', '1523687560', '53', '2018-04-14');INSERT INTO `th_into_app` VALUES ('879', '1523726744', '84', '2018-04-15');INSERT INTO `th_into_app` VALUES ('880', '1523817438', '15', '2018-04-16');INSERT INTO `th_into_app` VALUES ('881', '1523861333', '85', '2018-04-16');INSERT INTO `th_into_app` VALUES ('882', '1523861788', '80', '2018-04-16');INSERT INTO `th_into_app` VALUES ('883', '1523863993', '86', '2018-04-16');INSERT INTO `th_into_app` VALUES ('884', '1523875262', '46', '2018-04-16');INSERT INTO `th_into_app` VALUES ('885', '1523933102', '131', '2018-04-17');INSERT INTO `th_into_app` VALUES ('886', '1523949373', '10', '2018-04-17');INSERT INTO `th_into_app` VALUES ('887', '1523937262', '17', '2018-04-17');INSERT INTO `th_into_app` VALUES ('888', '1523937043', '18', '2018-04-17');INSERT INTO `th_into_app` VALUES ('889', '1523940644', '3', '2018-04-17');INSERT INTO `th_into_app` VALUES ('890', '1523951793', '7', '2018-04-17');INSERT INTO `th_into_app` VALUES ('891', '1523947587', '5', '2018-04-17');INSERT INTO `th_into_app` VALUES ('892', '1523948747', '19', '2018-04-17');INSERT INTO `th_into_app` VALUES ('893', '1523949641', '20', '2018-04-17');INSERT INTO `th_into_app` VALUES ('894', '1523950005', '4', '2018-04-17');INSERT INTO `th_into_app` VALUES ('895', '1523949936', '21', '2018-04-17');INSERT INTO `th_into_app` VALUES ('896', '1523949872', '22', '2018-04-17');INSERT INTO `th_into_app` VALUES ('897', '1523956144', '23', '2018-04-17');INSERT INTO `th_into_app` VALUES ('898', '1523968341', '24', '2018-04-17');INSERT INTO `th_into_app` VALUES ('899', '1524040904', '25', '2018-04-18');INSERT INTO `th_into_app` VALUES ('900', '1524107485', '3', '2018-04-19');INSERT INTO `th_into_app` VALUES ('901', '1524106614', '10', '2018-04-19');CREATE TABLE `th_level` (
`level_id` int(11) NOT NULL AUTO_INCREMENT,
`level` int(11) NOT NULL COMMENT '等级',
`experience` int(11) NOT NULL COMMENT '经验',
`intime` int(11) NOT NULL,
`uptime` int(11) NOT NULL,
PRIMARY KEY (`level_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='等级表';CREATE TABLE `th_live` (
`live_id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL COMMENT '用户id',
`play_img` varchar(300) NOT NULL COMMENT '直播封面',
`title` varchar(50) NOT NULL COMMENT '直播标题',
`lebel` varchar(100) NOT NULL DEFAULT '' COMMENT '标签(选择多个,以'',''隔开)',
`live_tag` varchar(255) NOT NULL DEFAULT '' COMMENT '直播标签',
`push_flow_address` varchar(500) NOT NULL COMMENT '推流地址',
`play_address` varchar(500) NOT NULL COMMENT '播放地址',
`play_address_m3u8` varchar(500) NOT NULL COMMENT '播放地址 m3u8',
`start_time` int(11) NOT NULL COMMENT '直播开始时间',
`end_time` int(11) NOT NULL COMMENT '直播结束时间',
`stream_key` varchar(150) NOT NULL COMMENT '直播streamKey',
`live_status` tinyint(3) NOT NULL COMMENT '1是在线; 2不在线',
`live_time` int(11) NOT NULL COMMENT '按home键时间',
`room_id` varchar(20) NOT NULL COMMENT '环信房间id',
`nums` int(11) NOT NULL DEFAULT '0' COMMENT '直播人数',
`watch_nums` int(11) NOT NULL DEFAULT '0' COMMENT '直播间观看人数',
`light_up_count` int(11) NOT NULL DEFAULT '0' COMMENT '点亮',
`intime` int(11) NOT NULL COMMENT '添加时间',
`date` varchar(20) NOT NULL COMMENT '日期',
`uptime` int(11) NOT NULL,
`is_offline` tinyint(2) NOT NULL DEFAULT '1' COMMENT '是否是后台强制下线 1:否 2:是',
`share` int(11) NOT NULL COMMENT '分享数',
`zan` int(11) NOT NULL COMMENT '赞',
`qrcode_path` varchar(500) NOT NULL COMMENT '二维码路径',
`log` double NOT NULL COMMENT '经度',
`lag` double NOT NULL COMMENT '纬度',
`sheng` varchar(50) NOT NULL COMMENT '省',
`shi` varchar(50) NOT NULL COMMENT '市',
`qu` varchar(50) NOT NULL COMMENT '区',
`livewindow_type` int(2) NOT NULL DEFAULT '1' COMMENT '直播窗口',
`address` varchar(300) NOT NULL COMMENT '具体位置',
`category_id` int(11) NOT NULL COMMENT '分类id',
`qiniu_room_id` varchar(20) NOT NULL COMMENT '七牛直播间房间id',
`qiniu_room_name` varchar(30) NOT NULL COMMENT '七牛直播间房间名称',
`qiniu_token` varchar(300) NOT NULL COMMENT 'token',
`is_normal_exit` tinyint(2) NOT NULL COMMENT '是否正常结束 1:正常 2:非正常',
`tuijian_pc` tinyint(2) NOT NULL DEFAULT '1' COMMENT '是否推荐到pc端 1:否 2:是',
`location` int(11) NOT NULL COMMENT '推荐位置',
`pc_nums` int(11) NOT NULL COMMENT 'pc观看总人数',
`pc_watch_nums` int(11) NOT NULL COMMENT 'pc当前观看人数',
`live_money` decimal(11,2) NOT NULL DEFAULT '0.00' COMMENT '观看金额设置',
PRIMARY KEY (`live_id`),
UNIQUE KEY `live_id` (`live_id`) USING BTREE,
KEY `user_id` (`user_id`,`live_status`,`intime`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8 COMMENT='直播表';INSERT INTO `th_live` VALUES ('1', '7', 'http://shop.100ytv.com/uploads/touxiang/20180411/c84b77b5b8030a0695d0b8e8640ff9ba.jpg', '测试', '', '4,3,7,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523421826?e=1523425427&token=<KEY> 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523421826', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523421826.m3u8', '1523421827', '0', 'php-sdk-test1523421826', '2', '0', '46161908006913', '0', '0', '0', '1523421827', '2018-04-11', '0', '1', '0', '0', '', '121.531147', '31.241796', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区乳山路142号', '0', '123', '123', '123', '0', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('2', '7', 'http://shop.100ytv.com/uploads/touxiang/20180411/50316ebce04c80868db5ba8961584318.jpg', '上次', '', '4,3,7,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523421874?e=1523425475&token=pZZF0OwUS-6imgKpBHgQlYGZgaRfuGXrzk9WEjHd:<KEY> 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523421874', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523421874.m3u8', '1523421875', '0', 'php-sdk-test1523421874', '2', '0', '46161958338561', '0', '0', '0', '1523421875', '2018-04-11', '1523421901', '1', '0', '0', '', '121.530878', '31.241835', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区乳山路156号', '0', '123', '123', '123', '1', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('3', '7', 'http://shop.100ytv.com/uploads/touxiang/20180411/b8830944712d14b11a0027a1299de8eb.jpg', '上', '', '4,3,7,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523422031?e=1523425632&token=<KEY> 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523422031', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523422031.m3u8', '1523422032', '1523422138', 'php-sdk-test1523422031', '2', '0', '46162122964993', '0', '10', '0', '1523422032', '2018-04-11', '1523422082', '1', '0', '0', '', '121.53098', '31.241827', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区乳山路156号', '0', '123', '123', '123', '1', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('4', '7', 'http://shop.100ytv.com/uploads/touxiang/20180411/c5f15cedaa8e7a58f668aacc9f0d6b4b.jpg', '上', '', '4,3,7,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523422159?e=1523425759&token=<KEY> 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523422159', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523422159.m3u8', '1523422159', '0', 'php-sdk-test1523422159', '2', '0', '46162257182721', '0', '10', '0', '1523422159', '2018-04-11', '1523422261', '1', '0', '0', '', '121.53098', '31.241822', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区乳山路156号', '0', '123', '123', '123', '1', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('5', '7', 'http://shop.100ytv.com/uploads/touxiang/20180411/e7eb487554372543efd7e0acca9a2627.jpg', '哦', '', '4,3,7,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523422309?e=1523425910&token=pZZF0OwUS-6imgKpBHgQlYGZgaRfuGXrzk9WEjHd:<KEY>=', 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523422309', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523422309.m3u8', '1523422310', '1523422441', 'php-sdk-test1523422309', '2', '0', '46162414469121', '1', '0', '0', '1523422310', '2018-04-11', '1523422441', '1', '0', '0', '', '121.535085', '31.24286', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区松林路97弄11号', '0', '123', '123', '123', '2', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('6', '7', 'http://shop.100ytv.com/uploads/touxiang/20180411/7c204c00c85e7b86d9d0dd68f5322491.jpg', '我爱工作!', '', '4,3,7,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523430047?e=1523433647&token=<KEY>:A<KEY>=', 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523430047', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523430047.m3u8', '1523430047', '1523430089', 'php-sdk-test1523430047', '2', '0', '46170528350209', '0', '0', '0', '1523430047', '2018-04-11', '0', '1', '0', '0', '', '121.495832', '31.166807', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区杨新路281弄1-49号', '0', '123', '123', '123', '1', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('7', '7', 'http://shop.100ytv.com/uploads/touxiang/20180411/4b160994877a3457ca1ae58707390e32.jpg', '测试', '', '4,3,7,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523430266?e=1523433867&token=pZZF0OwUS-6imgKpBHgQlYGZgaRfuGXrzk9WEjHd:<KEY>=', 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523430266', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523430266.m3u8', '1523430267', '1523430361', 'php-sdk-test1523430266', '2', '0', '46170757988353', '0', '0', '0', '1523430267', '2018-04-11', '1523430361', '1', '0', '0', '', '121.495832', '31.166807', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区杨新路281弄1-49号', '0', '123', '123', '123', '2', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('8', '7', 'http://shop.100ytv.com/uploads/touxiang/20180411/a0cb63df13b44297c131c7ef0de583ed.jpg', '风景', '', '4,3,7,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523430368?e=1523433969&token=pZZF0OwUS-6imgKpBHgQlYGZgaRfuGXrzk9WEjHd:<KEY> 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523430368', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523430368.m3u8', '1523430369', '1523430431', 'php-sdk-test1523430368', '2', '0', '46170864943108', '1', '10', '0', '1523430369', '2018-04-11', '0', '1', '0', '0', '', '121.495832', '31.166807', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区杨新路281弄1-49号', '0', '123', '123', '123', '1', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('10', '7', 'http://shop.100ytv.com/uploads/touxiang/20180412/407f55918bb37d6e754d471779a43bc0.jpg', '监控', '', '4,3,7,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523495505?e=1523499105&token=<KEY>:<KEY> 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523495505', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523495505.m3u8', '1523495505', '0', 'php-sdk-test1523495505', '2', '0', '46239166038017', '1', '1', '0', '1523495505', '2018-04-12', '1523495521', '1', '0', '0', '', '121.530996', '31.241846', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区乳山路156号', '0', '123', '123', '123', '1', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('11', '7', 'http://shop.100ytv.com/uploads/touxiang/20180412/c1d0e5bb4a57996fec8df98585029d33.jpg', '监控', '', '4,3,7,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523495599?e=1523499200&token=<KEY> 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523495599', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523495599.m3u8', '1523495600', '0', 'php-sdk-test1523495599', '2', '0', '46239264604161', '0', '0', '0', '1523495600', '2018-04-12', '0', '1', '0', '0', '', '121.53104', '31.241819', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区乳山路156号', '0', '123', '123', '123', '0', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('12', '7', 'http://shop.100ytv.com/uploads/touxiang/20180412/64ce60e4f6bc5d1f646e1ad76fd3e051.jpg', '监控', '', '4,3,7,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523495628?e=1523499229&token=pZZF0OwUS-6imgKpBHgQlYGZgaRfuGXrzk9WEjHd:P-oU5L1_PR4u7ikulItNMy3ajTI=', 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523495628', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523495628.m3u8', '1523495629', '1523495635', 'php-sdk-test1523495628', '2', '0', '46239295012865', '0', '0', '0', '1523495629', '2018-04-12', '0', '1', '0', '0', '', '121.53104', '31.241819', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区乳山路156号', '0', '123', '123', '123', '1', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('13', '7', 'http://shop.100ytv.com/uploads/touxiang/20180412/8f52e4515e9705515d04a8f481e2ccd8.jpg', '监控', '', '4,3,7,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523496106?e=1523499706&token=<KEY> 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523496106', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523496106.m3u8', '1523496106', '1523496160', 'php-sdk-test1523496106', '2', '0', '46239796232193', '1', '10', '0', '1523496106', '2018-04-12', '0', '1', '0', '0', '', '121.530952', '31.241816', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区乳山路156号', '0', '123', '123', '123', '1', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('14', '7', 'http://shop.100ytv.com/uploads/touxiang/20180412/df5d04946c4f18ac39a34de6e5dd35ab.jpg', '明', '', '4,3,7,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523496299?e=1523499899&token=<KEY> 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523496299', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523496299.m3u8', '1523496299', '1523496359', 'php-sdk-test1523496299', '2', '0', '46239998607361', '1', '0', '0', '1523496299', '2018-04-12', '0', '1', '0', '0', '', '121.531011', '31.241877', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区乳山路156号', '0', '123', '123', '123', '1', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('15', '5', 'http://shop.100ytv.com/uploads/touxiang/20180412/be35bdf1d71ac415f05be3aa864616a2.jpg', '你们', '', '4,3,7,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523516020?e=1523519620&token=<KEY> 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523516020', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523516020.m3u8', '1523516020', '0', 'php-sdk-test1523516020', '2', '0', '46260677574658', '7', '10', '0', '1523516020', '2018-04-12', '1523516221', '1', '0', '0', '', '121.530809', '31.241844', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区乳山路146号', '0', '123', '123', '123', '1', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('16', '5', 'http://shop.100ytv.com/uploads/touxiang/20180412/23725077d527e77785256b748b31d0f5.jpg', '监控', '', '6', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523516262?e=1523519862&token=<KEY> 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523516262', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523516262.m3u8', '1523516262', '1523516266', 'php-sdk-test1523516262', '2', '0', '46260931330049', '3', '0', '0', '1523516262', '2018-04-12', '0', '1', '0', '0', '', '121.530957', '31.241853', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区乳山路156号', '0', '123', '123', '123', '1', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('17', '7', 'http://shop.100ytv.com/uploads/touxiang/20180412/b10c6207750cd3b0a8cd6bb46510364e.jpg', '阿狸', '', '6', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523518919?e=1523522520&token=<KEY> 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523518919', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523518919.m3u8', '1523518920', '1523519298', 'php-sdk-test1523518919', '2', '0', '46263717396482', '0', '0', '0', '1523518920', '2018-04-12', '1523518922', '1', '0', '0', '', '121.531002', '31.241829', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区乳山路156号', '0', '123', '123', '123', '1', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('18', '7', 'http://shop.100ytv.com/uploads//image/touxiang/20180410/7be59816bd54dbe45592e44fc0be74c0.png', '123', '', '4,3,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523601058?e=1523604659&token=<PASSWORD>=', 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523601058', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523601058.m3u8', '1523601059', '1523601675', 'php-sdk-test1523601058', '2', '0', '46349846380547', '14', '5', '0', '1523601059', '2018-04-13', '1523601541', '1', '0', '0', '', '121.495832', '31.166807', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区杨新路281弄1-49号', '0', '123', '123', '123', '1', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('19', '7', 'http://shop.100ytv.com/uploads//image/touxiang/20180410/7be59816bd54dbe45592e44fc0be74c0.png', '古古怪怪', '', '4,3,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523601875?e=1523605476&token=pZZF0OwUS-6imgKpBHgQlYGZgaRfuGXrzk9WEjHd:<KEY> 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523601875', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523601875.m3u8', '1523601876', '1523602081', 'php-sdk-test1523601875', '2', '0', '46350703067137', '0', '0', '0', '1523601876', '2018-04-13', '1523602081', '1', '0', '0', '', '121.495832', '31.166807', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区杨新路281弄1-49号', '0', '123', '123', '123', '2', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('20', '5', 'http://shop.100ytv.com/uploads//image/banner/20180410/a55198d3bbccc3f2696e53330a0001c9.png', '哈哈哈哈', '', '4,3,7,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523602205?e=1523605805&token=pZZF0OwUS-6imgKpBHgQlYGZgaRfuGXrzk9WEjHd:<KEY> 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523602205', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523602205.m3u8', '1523602205', '1523602442', 'php-sdk-test1523602205', '2', '0', '46351049097217', '2', '0', '0', '1523602205', '2018-04-13', '1523602442', '1', '0', '0', '', '121.495832', '31.166807', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区杨新路281弄1-49号', '0', '123', '123', '123', '2', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('21', '7', 'http://shop.100ytv.com/uploads//image/touxiang/20180410/7be59816bd54dbe45592e44fc0be74c0.png', '开心', '', '4,3,7,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523947711?e=1523951312&token=pZZF0OwUS-6imgKpBHgQlYGZgaRfuGXrzk9WEjHd:<KEY> 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523947711', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523947711.m3u8', '1523947712', '1523947761', 'php-sdk-test1523947711', '2', '0', '46713338396673', '1', '0', '0', '1523947712', '2018-04-17', '0', '1', '0', '0', '', '121.530877', '31.241851', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区乳山路156号', '0', '123', '123', '123', '1', '1', '0', '0', '0', '0.00');INSERT INTO `th_live` VALUES ('22', '7', 'http://shop.100ytv.com/uploads//image/touxiang/20180410/7be59816bd54dbe45592e44fc0be74c0.png', '开心', '', '4,3,7,6,8', 'rtmp://pili-publish.100ytv.com/100ytv/php-sdk-test1523949448?e=1523953048&token=<KEY>:<KEY> 'rtmp://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523949448', 'http://pili-live-rtmp.100ytv.com/100ytv/php-sdk-test1523949448.m3u8', '1523949448', '1523949953', 'php-sdk-test1523949448', '2', '0', '46715159773185', '15', '3', '0', '1523949448', '2018-04-17', '1523949842', '1', '0', '0', '', '121.529956', '31.24147', '上海市', '上海市', '浦东新区', '1', '上海市浦东新区乳山路138弄', '0', '123', '123', '123', '1', '1', '0', '0', '0', '0.00');CREATE TABLE `th_live_class` (
`live_class_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`tag` varchar(255) NOT NULL DEFAULT '' COMMENT '直播标签',
`img` varchar(255) NOT NULL DEFAULT '' COMMENT '图片',
`sort` tinyint(2) NOT NULL DEFAULT '0' COMMENT '权重',
`is_del` tinyint(2) NOT NULL DEFAULT '1',
`intime` int(11) NOT NULL,
PRIMARY KEY (`live_class_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;INSERT INTO `th_live_class` VALUES ('3', '名人', 'http://dspx.tstmobile.com/uploads//image/goods/20171225/679faaaf97cdbdccf2dc006d652ceede.png', '5', '1', '1514460195');INSERT INTO `th_live_class` VALUES ('4', '全部', 'http://dspx.tstmobile.com/uploads//image/goods/20171225/d64583e09c4c2d90ef599c3681498b3a.png', '7', '1', '1514460202');INSERT INTO `th_live_class` VALUES ('6', '新人秀场', 'http://dspx.tstmobile.com/uploads//image/goods/20171225/292d1134bec01bc1492572a0829345df.png', '3', '1', '1514460203');INSERT INTO `th_live_class` VALUES ('7', '附近', 'http://dspx.tstmobile.com/uploads//image/goods/20171225/e84edfc164a14377cc705a30f12076d3.png', '4', '1', '1514460203');INSERT INTO `th_live_class` VALUES ('8', '其他', 'http://dspx.tstmobile.com/uploads//image/goods/20171225/a784c7fe1016a3b2b4825c05dbe30f43.png', '1', '1', '1514460207');CREATE TABLE `th_live_goods` (
`live_goods_id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL COMMENT '商家对应的id',
`live_id` int(11) NOT NULL COMMENT '直播id',
`goods_id` int(11) NOT NULL COMMENT '直播商品集合',
`create_time` datetime NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0',
`is_top` tinyint(4) NOT NULL DEFAULT '0' COMMENT '1置顶',
PRIMARY KEY (`live_goods_id`),
UNIQUE KEY `live_goods_id` (`live_goods_id`,`member_id`,`live_id`) USING BTREE,
KEY `member_id` (`member_id`,`is_delete`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8;INSERT INTO `th_live_goods` VALUES ('1', '7', '1', '8', '2018-04-11 12:43:47', '0', '1');INSERT INTO `th_live_goods` VALUES ('2', '7', '2', '8', '2018-04-11 12:44:35', '0', '0');INSERT INTO `th_live_goods` VALUES ('3', '7', '3', '8', '2018-04-11 12:47:12', '0', '0');INSERT INTO `th_live_goods` VALUES ('4', '7', '4', '8', '2018-04-11 12:49:19', '0', '0');INSERT INTO `th_live_goods` VALUES ('5', '7', '5', '8', '2018-04-11 12:51:50', '0', '0');INSERT INTO `th_live_goods` VALUES ('6', '7', '6', '8', '2018-04-11 15:00:47', '0', '0');INSERT INTO `th_live_goods` VALUES ('7', '7', '8', '8', '2018-04-11 15:06:09', '0', '1');INSERT INTO `th_live_goods` VALUES ('8', '7', '9', '8', '2018-04-11 16:05:11', '0', '1');INSERT INTO `th_live_goods` VALUES ('9', '7', '10', '8', '2018-04-12 09:11:45', '0', '0');INSERT INTO `th_live_goods` VALUES ('10', '7', '11', '8', '2018-04-12 09:13:20', '0', '0');INSERT INTO `th_live_goods` VALUES ('11', '7', '13', '8', '2018-04-12 09:21:46', '0', '0');INSERT INTO `th_live_goods` VALUES ('12', '7', '14', '8', '2018-04-12 09:24:59', '0', '0');INSERT INTO `th_live_goods` VALUES ('13', '5', '15', '8', '2018-04-12 14:53:40', '0', '0');INSERT INTO `th_live_goods` VALUES ('14', '5', '16', '8', '2018-04-12 14:57:42', '0', '0');INSERT INTO `th_live_goods` VALUES ('15', '7', '17', '8', '2018-04-12 15:42:00', '0', '0');INSERT INTO `th_live_goods` VALUES ('16', '7', '18', '8', '2018-04-13 14:30:59', '0', '0');INSERT INTO `th_live_goods` VALUES ('17', '5', '20', '8', '2018-04-13 14:50:05', '0', '0');INSERT INTO `th_live_goods` VALUES ('18', '7', '21', '8', '2018-04-17 14:48:32', '0', '1');INSERT INTO `th_live_goods` VALUES ('19', '7', '22', '8', '2018-04-17 15:17:28', '0', '1');CREATE TABLE `th_live_kicking` (
`live_kicking_id` int(11) NOT NULL AUTO_INCREMENT,
`live_id` int(11) NOT NULL COMMENT '直播间id',
`user_id` int(11) NOT NULL COMMENT '被踢用户id',
`intime` int(11) NOT NULL,
`date` varchar(20) NOT NULL,
PRIMARY KEY (`live_kicking_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='直播间踢人记录表';CREATE TABLE `th_live_light_up` (
`live_light_up_id` int(11) NOT NULL AUTO_INCREMENT,
`live_id` int(11) NOT NULL COMMENT '直播id',
`user_id` int(11) NOT NULL COMMENT '点亮的用户id',
`user_id2` int(11) NOT NULL COMMENT '主播id',
`intime` int(11) NOT NULL COMMENT '时间',
PRIMARY KEY (`live_light_up_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='点亮记录表';CREATE TABLE `th_live_management` (
`live_management_id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL COMMENT '主播id',
`user_id2` int(11) NOT NULL COMMENT '管理id',
`intime` int(11) NOT NULL,
PRIMARY KEY (`live_management_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='直播间管理员表';CREATE TABLE `th_live_number` (
`live_number_id` int(11) NOT NULL AUTO_INCREMENT,
`live_id` int(11) NOT NULL COMMENT '直播id',
`user_id` int(11) NOT NULL COMMENT '主播id',
`user_id2` int(11) NOT NULL COMMENT '用户id',
`is_del` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否离开直播间',
`intime` int(11) NOT NULL,
`uptime` int(11) NOT NULL,
PRIMARY KEY (`live_number_id`)
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8 COMMENT='进入直播间记录表';INSERT INTO `th_live_number` VALUES ('4', '10', '7', '6', '1', '1523495520', '0');INSERT INTO `th_live_number` VALUES ('8', '15', '5', '6', '1', '1523516164', '0');INSERT INTO `th_live_number` VALUES ('30', '18', '7', '15', '1', '1523601658', '0');INSERT INTO `th_live_number` VALUES ('35', '22', '7', '20', '1', '1523949641', '0');INSERT INTO `th_live_number` VALUES ('47', '22', '7', '4', '1', '1523949868', '0');INSERT INTO `th_live_number` VALUES ('48', '22', '7', '22', '1', '1523949872', '0');CREATE TABLE `th_live_store` (
`live_store_id` int(11) NOT NULL AUTO_INCREMENT,
`live_id` int(11) NOT NULL COMMENT '直播间id',
`user_id` int(11) NOT NULL COMMENT '主播id',
`play_img` varchar(255) NOT NULL COMMENT '封面',
`title` varchar(255) NOT NULL COMMENT '标题',
`url` varchar(255) NOT NULL COMMENT '视频地址',
`play_number` int(11) NOT NULL DEFAULT '0' COMMENT '观看次数',
`live_time` int(11) NOT NULL COMMENT '开启直播时间',
`stream_key` varchar(255) NOT NULL DEFAULT '0' COMMENT '直播流',
`intime` int(11) NOT NULL,
`livewindow_type` int(2) NOT NULL DEFAULT '1' COMMENT '播放窗口',
`room_id` varchar(255) NOT NULL,
`is_tuijian` tinyint(2) NOT NULL DEFAULT '1' COMMENT '是否被推荐到咨询 1:否 2:是',
`date` varchar(20) NOT NULL COMMENT '日期',
`collection` int(11) NOT NULL DEFAULT '0' COMMENT '收藏数',
`lebel` varchar(100) NOT NULL COMMENT '标签(选择多个,以',
`is_del` tinyint(2) NOT NULL DEFAULT '1' COMMENT '1:正常 2:删除',
`is_audit` tinyint(2) NOT NULL DEFAULT '1' COMMENT 'ios审核 1:正常 2:ios审核期间读取',
PRIMARY KEY (`live_store_id`)
) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=utf8 COMMENT='直播视频表';INSERT INTO `th_live_store` VALUES ('39', '18', '7', 'http://shop.100ytv.com/uploads//image/touxiang/20180410/7be59816bd54dbe45592e44fc0be74c0.png', '123', 'http://play.100ytv.com/recordings/z1.100ytv.php-sdk-test1523601058/0_1523601675.m3u8', '14', '1523601059', 'php-sdk-test1523601058', '1523601676', '1', '46349846380547', '1', '2018-04-13 14:41', '0', '', '1', '1');INSERT INTO `th_live_store` VALUES ('48', '0', '7', 'http://shop.100ytv.com/uploads/image/20171028/439d26a5c33d01f7aee7572551686f16.png', 'dddddddd', 'http://play.100ytv.com/o_1cauvt4mqf7oe2k14s3hak19qc9.mp4', '0', '0', '0', '1523606322', '1', '', '1', '2018-04-13 15:58', '0', '', '1', '1');INSERT INTO `th_live_store` VALUES ('49', '22', '7', 'http://shop.100ytv.com/uploads//image/touxiang/20180410/7be59816bd54dbe45592e44fc0be74c0.png', '开心', 'http://play.100ytv.com/recordings/z1.100ytv.php-sdk-test1523949448/0_1523949953.m3u8', '15', '1523949448', 'php-sdk-test1523949448', '1523949953', '1', '46715159773185', '1', '2018-04-17 15:25', '0', '', '1', '1');CREATE TABLE `th_member` (
`member_id` int(11) NOT NULL AUTO_INCREMENT,
`app_token` varchar(64) NOT NULL DEFAULT '' COMMENT 'app登录',
`pc_token` varchar(64) NOT NULL COMMENT 'pc端登陆',
`uuid` varchar(64) NOT NULL DEFAULT '' COMMENT '用户的唯一标识',
`phone` varchar(11) NOT NULL COMMENT '账号',
`password` varchar(50) NOT NULL COMMENT '密码',
`header_img` varchar(150) NOT NULL COMMENT '用户头像',
`sex` tinyint(1) NOT NULL COMMENT '性别,1男2女',
`type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1:普通用户 2:商家 3主播',
`username` varchar(30) NOT NULL DEFAULT '' COMMENT '名称',
`signature` varchar(150) NOT NULL DEFAULT '' COMMENT '介绍',
`ID` int(11) NOT NULL DEFAULT '0' COMMENT 'ID',
`alias` varchar(50) NOT NULL COMMENT '别名',
`wx_openid` varchar(64) NOT NULL DEFAULT '' COMMENT '微信openid',
`pwx_openid` varchar(64) NOT NULL DEFAULT '' COMMENT '微信公众号',
`wx_unionid` varchar(64) NOT NULL COMMENT '微信unionid',
`qq_openid` varchar(64) NOT NULL DEFAULT '' COMMENT 'qqopenid',
`wo_openid` varchar(64) NOT NULL DEFAULT '' COMMENT '微博',
`hx_username` varchar(50) NOT NULL COMMENT '环信用户名',
`hx_password` varchar(30) NOT NULL COMMENT '环信密码',
`province` varchar(50) NOT NULL COMMENT '省',
`city` varchar(50) NOT NULL COMMENT '市',
`area` varchar(64) NOT NULL DEFAULT '' COMMENT '地区',
`address` varchar(200) NOT NULL COMMENT '具体地址',
`log` varchar(64) NOT NULL DEFAULT '116.42669' COMMENT '经度',
`lag` varchar(64) NOT NULL DEFAULT '39.917149' COMMENT '纬度',
`zan` int(11) NOT NULL DEFAULT '0' COMMENT '赞',
`uptime` int(11) NOT NULL COMMENT '修改时间',
`is_recommend` tinyint(3) NOT NULL DEFAULT '0' COMMENT '1:推荐',
`sort` int(5) NOT NULL DEFAULT '0' COMMENT '推荐顺序',
`is_del` tinyint(2) NOT NULL DEFAULT '1' COMMENT '是否删除 1:正常 2:已删除',
`del_time` int(11) NOT NULL COMMENT '删除时间',
`intime` int(11) NOT NULL COMMENT '注册时间',
`e_ticket` int(11) NOT NULL DEFAULT '0' COMMENT '打赏票(钻石转化票)',
`b_diamond` int(11) NOT NULL DEFAULT '0' COMMENT '充值钻石',
`get_gift_count` int(11) NOT NULL DEFAULT '0' COMMENT '获得礼物总数',
`give_gift_count` int(11) NOT NULL DEFAULT '0' COMMENT '送出礼物总数',
`amount` decimal(11,2) NOT NULL COMMENT '账户余额',
`experience` int(11) NOT NULL DEFAULT '0' COMMENT '送礼获得的经验值',
`url` varchar(150) NOT NULL COMMENT '分享链接',
`is_fans` tinyint(2) NOT NULL DEFAULT '1' COMMENT '是否是僵尸粉 1:不是 2:是',
`grade` int(11) NOT NULL DEFAULT '1' COMMENT '等级 默认1级',
`birth_day` varchar(20) NOT NULL COMMENT '生日',
`is_remind` tinyint(2) NOT NULL DEFAULT '1' COMMENT '开播提醒 1:开启 2:关闭',
`is_banned` tinyint(3) NOT NULL DEFAULT '1' COMMENT '1:正常 2:禁播(时间段) 3:永久封禁',
`banned_start_time` int(11) NOT NULL COMMENT '禁播开始时间',
`banned_end_time` int(11) NOT NULL COMMENT '禁播结束时间',
`banned_dis` varchar(300) NOT NULL COMMENT '禁播说明',
`is_wheat` tinyint(2) NOT NULL DEFAULT '1' COMMENT '是否连麦 1:开启 2:关闭',
`category_id` varchar(20) NOT NULL COMMENT '类型id',
`live_tag` varchar(255) NOT NULL COMMENT '直播标签',
`mlive_id` int(11) NOT NULL DEFAULT '0' COMMENT '直播live_id;0结束直播',
`is_show` tinyint(2) NOT NULL DEFAULT '1' COMMENT '是否显示在专家列表 1:是 2:否',
`phpqrcode` varchar(255) NOT NULL DEFAULT '' COMMENT '分享二维码',
`recommend_id` int(11) NOT NULL DEFAULT '0' COMMENT '推荐人user_id',
`tv_id` int(11) NOT NULL COMMENT '引流电视id',
PRIMARY KEY (`member_id`),
KEY `red_net_id` (`ID`,`is_del`,`intime`) USING BTREE,
KEY `get_gift_count` (`get_gift_count`) USING BTREE,
KEY `give_gift_count` (`give_gift_count`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='会员表';INSERT INTO `th_member` VALUES ('1', '5acb2d8fb1ae2', '', 'ebd5c7ab-cae4-54e3-bfe5-835a426c0107', '17621251372', '', 'http://shop.100ytv.com/uploads/touxiang/touxiang.png', '1', '1', '游荡者GA17621251372', '这个人很懒什么都没有留下!!', '2010792', 'j2wjxw74ep37', '', '', '', '', '', 'j2wjxw74ep37', '123456', '北京市', '北京市', '东城区', '北京市东城区北极阁三条31号', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523264911', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('3', '5ad57b2f3ec16', '', '', '17681442868', '', 'http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTLP5tqDdyrNN4NYK5dPL8MMbDDib7iaoYRSib6l6QMuBJ8ibWPdTalKFiczB0aqAaJKjrWCQ1In4yRV8WA/132', '1', '1', '振华 孙', '这个人很懒什么都没有留下!!', '0', '', 'osk6Aw5fuuDz29_B6nlOfzKx7Mmg', 'otopx0-9PQXGx-P5191rsI5gkNno', 'ogtQgwnbQlMIDg4P2tvp_SynF6gw', '84CCE30057AA27D820F3968B04ACE4F4', '', 'elysvm8koqiz', '123456', '', '', '', '', '116.42669', '39.917149', '0', '1523940143', '0', '0', '1', '0', '1523321999', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('4', '5acc184e1842a', '', '', '', '', 'http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83epxy5XEicOrSoxrQ0Xgp3F8eyZtthpTiboyasjaTkSB8EI7m9QaRzyBklW04INAICGuNMQw9mMxs3lg/132', '0', '1', '仙儿', '这个人很懒什么都没有留下!!', '0', '', '', 'otopx0_WDkMK8ohAxokjqhzI_COo', 'ogtQgwmUh0wQ4wEm5cTxsPFgSCBk', '', '', '6e3fuurz4281', '123456', '', '', '', '', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523325006', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('5', '5ad5983fee958', '', '9d85776c-d9c7-6085-6037-3133a9438012', '17681442898', 'd52f65f4d0766aa18a10fae24c322c28', 'http://shop.100ytv.com/uploads//image/banner/20180410/a55198d3bbccc3f2696e53330a0001c9.png', '1', '2', '洛安资产管理集团', '这个人很懒什么都没有留下!!', '43244394', 'o6yvw60ig033', '', '', '', '', '', 'o6yvw60ig033', '123456', '上海市', '上海市', '浦东新区', '', '116.42669', '39.917149', '0', '1523328610', '0', '0', '1', '0', '1523326286', '0', '0', '0', '0', '180.04', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '4,3,7,6,8', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('6', '5acc279b2a6fa', '', 'c7101c11-258f-1a05-0b44-fb17bc5d7cdb', '17681442890', '', 'http://shop.100ytv.com/uploads/touxiang/touxiang.png', '1', '1', '游荡者GA17681442890', '这个人很懒什么都没有留下!!', '29783632', 'kral6vjcawr9', '', '', '', '', '', 'kral6vjcawr9', '123456', '北京市', '北京市', '东城区', '北京市东城区北极阁三条31号', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523328698', '0', '2980', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '5');INSERT INTO `th_member` VALUES ('7', '5ad598b27ce43', '', '2b28f117-49d5-45ca-ddaf-b0905a563b6d', '17681442891', 'd52f65f4d0766aa18a10fae24c322c28', 'http://shop.100ytv.com/uploads//image/touxiang/20180410/7be59816bd54dbe45592e44fc0be74c0.png', '1', '3', '洛安资本', '这个人很懒什么都没有留下!!', '4182446', 'dornautrc9xu', '', '', '', '', '', 'dornautrc9xu', '123456', '上海市', '上海市', '浦东新区', '', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523329124', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '4,3,7,6,8', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('8', '5acc330c6bcd1', '', '', '', '', 'http://thirdwx.qlogo.cn/mmopen/vi_32/h8QOstJxSBDYjsukgjAHeKLK0IxnBsmIZiaRBu8SVSlP7Xw06FKiaErXsMZX7tV6FeswveLWNQItlB7TnVbpTzaA/132', '0', '1', '阳光', '这个人很懒什么都没有留下!!', '0', '', '', 'otopx038-QEYQWZqQ73poa6XcHrw', 'ogtQgwncNwc3Jk0cizQ9-1Cd8yu4', '', '', 'gir6rw2388fz', '123456', '', '', '', '', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523331852', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('9', '5acc5a1b1f967', '', 'ff9223b5-b1b0-8d9a-ed94-90c9ebb50756', '18016276521', '', 'http://shop.100ytv.com/uploads/touxiang/touxiang.png', '1', '1', '游荡者GA18016276521', '这个人很懒什么都没有留下!!', '44594852', 'h2zhtiilcpor', '', '', '', '', '', 'h2zhtiilcpor', '123456', '北京市', '北京市', '东城区', '北京市东城区北极阁三条31号', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523341851', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('10', '5ad56d4fd8d51', '', '', '13817442209', '', 'http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83erwGKqria1ics8K5AKPnWbiaNiaicFBahVibiaxk3HnSpp4iav6HFtK0B0WibvdfvPHsmjq2zhRjTslqJHAx3A/132', '0', '1', '看不见我∩_∩', '这个人很懒什么都没有留下!!', '0', '', '', 'otopx0y7SLusNj9IwPqJrktyOeRg', 'ogtQgwgdwXVwejJuem8x9-QlaDXM', '', '', 'fa8dmgcjvntn', '123456', '', '', '', '', '116.42669', '39.917149', '0', '1523936591', '0', '0', '1', '0', '1523344331', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('11', '5acc66fcadf6a', '', '', '', '', 'http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTJgKW5KkTNhjoDZ0hiamnYZsws0dt5vuf0qicHJRSKgLzoQFKlDWYreJyjO3rMT9BuVl3dz8sDMtkeQ/132', '0', '1', '鑫想事成', '这个人很懒什么都没有留下!!', '0', '', '', 'otopx0_7wHw82b9eIgPJS4d6zmZs', 'ogtQgwjiQ6Meoopk_3gguMGYYUiA', '', '', 'bsuw4nonsesr', '123456', '', '', '', '', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523345148', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('12', '5acc6797d2fc4', '', '', '', '', 'http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83epcnJ1icYiaNnkoWZiabf2Z5CArZXINWx764xGBMTYxovPye6L1LFib7S5fIJxe9CHzyIrYp9SKiaZNYbA/132', '0', '1', '哈七', '这个人很懒什么都没有留下!!', '0', '', '', 'otopx08A0dd5V2eNFzPHHTxi44Js', 'ogtQgwhK1hpjn66TV9ADkacftnVA', '', '', 'zro6acaztjy4', '123456', '', '', '', '', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523345303', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('13', '5acc6b1f1b8d0', '', 'a4ed7e28-f7d1-c712-e3c4-33256b8f882c', '17601220893', '', 'http://shop.100ytv.com/uploads/touxiang/20180410/6beadd15ac85270e3dea8cdd7936b276.jpg', '1', '1', '我很挪威', '这个人很懒什么都没有留下!!', '44474695', 'v94yxgszme89', 'osk6Aw5UVsM8spX3x3LTYt2XVomA', 'otopx0_wX1Y1gdMv-jUsO_jSsA5g', 'ogtQgwiSOKPNg8iDIKEsELROzytI', '', '', 'v94yxgszme89', '123456', '上海市', '上海市', '浦东新区', '上海市浦东新区东方路174号', '116.42669', '39.917149', '0', '1523346847', '0', '0', '1', '0', '1523346162', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('14', '5acc6e99d0463', '', '', '', '', 'http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKEwmfyptibj22WLAZ7aEbXpYicAmMdLLnVXzZvTU3M0aHSd8ORfVCzo3Tu96cA29HndaYXj3ppiayXQ/132', '0', '1', 'var', '这个人很懒什么都没有留下!!', '0', '', '', 'otopx0-bZFgRoZTay5veSWQzlicY', 'ogtQgwvcKecwXi4114QH1bPnoaWA', '', '', 'ka73gl4jrh6m', '123456', '', '', '', '', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523347097', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('15', '5acc<PASSWORD>989b7d', '', '', '', '', 'http://thirdwx.qlogo.cn/mmopen/vi_32/hFGEqkswKtzNF2wiciaue7sibdTy2qEnoaEHicRpibSTxxC42K7hHsib30TfD4aTqbvqvE8H9aczsIAibqlAe63f6Lhtg/132', '0', '1', '春秋。冬夏', '这个人很懒什么都没有留下!!', '0', '', '', 'otopx0xdPam1OGYT1HEWNTLmAzsM', 'ogtQgwnRl9Vm7yiV0pqDH7-1mMV4', '', '', 'mtzwfexed16f', '123456', '', '', '', '', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523349833', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('16', '5acc7d7571caf', '', '', '', '', 'http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTIH1icEN1bb9V8vXNaMCCzXkr7rvq3HL76XoUBJ2YR3WiaRtibiar1PhBZKbcEogic7J8fySM4k4HGTI7w/132', '0', '1', '坏坏坏~坏', '这个人很懒什么都没有留下!!', '0', '', '', 'otopx0_TJnEpdawU0hTru8X0ixkk', 'ogtQgwkzkQdcH2GT4wGmg1XX6PMA', '', '', 'yezqf1r4l7ge', '123456', '', '', '', '', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523350901', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('17', '5ad56e79e7e9a', '', '', '', '', 'http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83epJ6kvTHSNd3x00f7yXawD0RrV3XwoAkd3rKs9miaYq4ibGibRibkmKoueHjrok7n0SewwynqEGLZicJsw/132', '0', '1', 'Jackie.Yin', '这个人很懒什么都没有留下!!', '0', '', '', 'otopx01-JGb2RRxG9TCqbJ4jjdno', 'ogtQgwnJA66gYJVaak7xWVeAwlPw', '', '', '343y1sl4orpt', '123456', '', '', '', '', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523936889', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('18', '5ad56f0bc0dbc', '', '5257022a-e9f5-2587-bae5-33a5c6000a02', '13916480034', '', 'http://shop.100ytv.com/uploads/touxiang/touxiang.png', '1', '1', '游荡者GA13916480034', '这个人很懒什么都没有留下!!', '81134700', 'l7v11ymz7lnu', '', '', '', '', '', 'l7v11ymz7lnu', '123456', '上海市', '上海市', '浦东新区', '上海市浦东新区杨新路281弄1-49号', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523937035', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('19', '5ad598d95cae2', '', '', '', '', 'http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKxG2kJ21mD735hjvEoNXnRzDh1B7aPX1M7icHww3ZXbJbr2icJmOYaqpm7eS6hH3EzmKtDc3PboYPQ/132', '0', '1', '、小璐', '这个人很懒什么都没有留下!!', '0', '', '', 'otopx0xZVRRbkHIez1YYo_IiASgc', 'ogtQgwr9CueiNISkqZXxLg0EOrIg', '', '', 'nceb36bfvvpi', '123456', '', '', '', '', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523947737', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('20', '5ad5a03ed2541', '', '', '', '', 'http://thirdwx.qlogo.cn/mmopen/vi_32/PiajxSqBRaEJ9ma637rADOauDibmkVv11njicLyEf17Ha6DXbSuF80UEX0evqnphhXMy9yE4N2Lzq4jm9icp3D8P6w/132', '0', '1', '南南&云夕·江', '这个人很懒什么都没有留下!!', '0', '', '', 'otopx08k2RpUNWXgjoZUFqtI1z-g', 'ogtQgwq43EHuIlp1L28q1jF9ClH0', '', '', 'j7knfpiqvxvl', '123456', '', '', '', '', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523949630', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('21', '5ad5a046080ce', '', '', '', '', 'http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTJs9Mu790qZppn3GfynQbbT9biaXULG9RuzBWejs527tLoCjCtvm2mA4UWWWNibyEr2mUxCIGU2uw4w/132', '0', '1', '刘倩', '这个人很懒什么都没有留下!!', '0', '', '', 'otopx0zHFgKZqJs0GJbffP0Fnl9I', 'ogtQgwuLEoLvxhygN-d4ClaM1Udc', '', '', 'k7ezt5z46elu', '123456', '', '', '', '', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523949638', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('22', '5ad5a05403edf', '', '', '', '', 'http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83eoiafOgyzjsIk4iciazfSiaUoibTDsE9SsR4YJ3LJYGzH9sU0Bj9MXT8nicBp2nqSSwsADm7KPh87dpG8BA/132', '0', '1', '车视界', '这个人很懒什么都没有留下!!', '0', '', '', 'otopx09xNrZR16yHsndz5BaiPz4Q', 'ogtQgwu2gcrubWahCai51vIoDdgg', '', '', '9er5guddh9va', '123456', '', '', '', '', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523949652', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('23', '<PASSWORD>', '', '', '', '', 'http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTJlvHOFaCicVASv9pibsOGicZgNEv702QFM4kbZCnEBQ1cu0ARLPY568IribOhmZJF1GY6szPsV0HicqMw/132', '0', '1', '甄清波~洛安资产集团总裁', '这个人很懒什么都没有留下!!', '0', '', '', 'otopx0wgq2Ul3Luieyw8IrP_KQyo', 'ogtQgwpOZlcPaWIsVGvLUZkyMUs8', '', '', 'qxnc3cugazhf', '123456', '', '', '', '', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523956034', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('24', '<PASSWORD>', '', '', '', '', 'http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTJiaHRWDedlHiaxic89iaYngSW6mA9RNW8dOYdMXdMMHrTE3hAgBWeYO6Bg4n823iajxK4vT1ecUTMcib2A/132', '0', '1', '吴志华 微信APP 电商 直播开发', '这个人很懒什么都没有留下!!', '0', '', '', 'otopx03cl1WmzF-YHW3U3LFm8854', 'ogtQgwoJLs5w89PTlPUiJEA6TAvQ', '', '', 'rw81wr1dtjcr', '123456', '', '', '', '', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1523968285', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');INSERT INTO `th_member` VALUES ('25', '5ad6b654bb140', '', '05bdf8f0-1cd8-143b-e944-e08684e9eebf', '15921416574', '', 'http://shop.100ytv.com/uploads/touxiang/touxiang.png', '1', '1', '游荡者GA15921416574', '这个人很懒什么都没有留下!!', '18136955', '7xzukp5gxxn3', '', '', '', '', '', '7xzukp5gxxn3', '123456', '上海市', '上海市', '闵行区', '上海市闵行区恒南路1500-临', '116.42669', '39.917149', '0', '0', '0', '0', '1', '0', '1524020820', '0', '0', '0', '0', '0.00', '0', '', '1', '1', '', '1', '1', '0', '0', '', '1', '', '', '0', '1', '', '0', '0');CREATE TABLE `th_member_address` (
`address_id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`address_mobile` varchar(20) NOT NULL DEFAULT '' COMMENT '手机号',
`address_name` varchar(50) NOT NULL DEFAULT '' COMMENT '姓名',
`address_province` varchar(50) NOT NULL DEFAULT '' COMMENT '省',
`address_city` varchar(50) NOT NULL DEFAULT '' COMMENT '市',
`address_country` varchar(50) NOT NULL DEFAULT '' COMMENT '区',
`address_detailed` varchar(100) NOT NULL DEFAULT '' COMMENT '详情地址',
`address_road` varchar(100) NOT NULL DEFAULT '' COMMENT '街道',
`address_zip_code` varchar(10) NOT NULL DEFAULT '' COMMENT '邮编',
`address_longitude` varchar(20) NOT NULL DEFAULT '' COMMENT '经度',
`address_latitude` varchar(20) NOT NULL DEFAULT '' COMMENT '纬度',
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`is_default` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1是默认地址',
`is_delete` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1删除',
PRIMARY KEY (`address_id`),
KEY `address_id` (`address_id`,`member_id`,`is_delete`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8 COMMENT='用户地址管理表';INSERT INTO `th_member_address` VALUES ('16', '6', '17681442898', '孙振华', '上海市', '上海市', '虹口区', '上海', '', '200000', '121.49191854079', '31.282497228987', '2018-04-10 11:00:08', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('17', '3', '17681442898', '孙振华', '上海', '上海市', '浦东新区', '上海', '', '', '121.63848131409', '31.230895349134', '2018-04-10 11:18:00', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('18', '10', '13817442209', '崔峰', '北京', '北京市', '东城区', '新骏环路598室', '', '', '116.42188470126', '39.938574012986', '2018-04-10 15:17:28', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('19', '14', '17602187583', '崔测试', '上海市', '市辖区', '浦东新区', '新骏环路588', '', '', '121.53152873535', '31.097527129794', '2018-04-10 16:01:52', '0000-00-00 00:00:00', '0', '0');INSERT INTO `th_member_address` VALUES ('20', '15', '18088888888', '啦啦啦', '北京', '北京市', '东城区', '地址', '', '12345', '116.42188470126', '39.938574012986', '2018-04-10 16:45:07', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('21', '14', '17602187583', '测试崔萌', '上海', '上海市', '浦东新区', '新骏环路588', '', '', '121.53152873535', '31.097527129794', '2018-04-11 11:26:41', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('22', '21', '15698697137', '畅', '上海市', '上海市', '闵行区', '新骏环路5880号22 406', '', '200000', '', '', '2018-04-11 14:36:06', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('23', '34', '13761144013', '<NAME>', '上海市', '上海市', '嘉定区', '秋竹路802弄7号楼201', '', '', '121.22614758986', '31.389650376474', '2018-04-12 11:26:31', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('24', '35', '13807066712', '全青霞', '江西省', '南昌市', '青云谱区', '迎宾北大道285号华山生殖医院', '', '', '115.91374814864', '28.6351740299', '2018-04-12 11:40:23', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('25', '36', '15801740713', '陈佳', '上海', '上海市', '嘉定区', '平城路2055弄嘉宝梦之湾24号楼1402', '', '201800', '121.23191355511', '31.38914040595', '2018-04-12 11:44:26', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('26', '37', '18602167122', '赵美玲', '上海', '上海市', '嘉定区', '秋竹路802弄48#201室', '', '200000', '121.22604912749', '31.39032128067', '2018-04-12 11:44:41', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('27', '40', '13671589179', '周桢', '上海', '上海市', '徐汇区', '漕宝路82号E座1803', '', '', '121.43464654269', '31.173116906544', '2018-04-12 11:50:40', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('28', '43', '13699566475', '陈荔珍', '江西省', '南昌市', '青云谱区', '迎宾北大道285号华山生殖医院', '', '', '115.91374814864', '28.6351740299', '2018-04-12 11:56:29', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('29', '46', '15598282290', '万志芳', '内蒙古自治区', '呼和浩特市', '回民区', '内蒙古自冶区,呼和浩特市回民区新民街,星月斋旁', '', '010030', '111.66817785661', '40.811708232701', '2018-04-12 12:01:06', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('30', '48', '13817563383', '陈静', '上海', '上海市', '嘉定区', '平城路2055弄20号101', '', '2000000', '121.23191355511', '31.38914040595', '2018-04-12 12:01:56', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('31', '50', '13117814951', '梁虹', '江西省', '南昌市', '青云谱区', '迎宾北大道285号', '', '', '115.91374814864', '28.6351740299', '2018-04-12 12:02:45', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('32', '49', '15107179099', '王炎平', '湖北省', '武汉市', '硚口区', '解放大道35号 武汉送子鸟医院 最后一栋2楼', '', '', '', '', '2018-04-12 12:03:09', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('33', '51', '18034466162', '金墨', '河北省', '廊坊市', '三河市', '燕郊经济开发区美林新东城4-3-401', '', '', '116.78251539728', '39.995076857692', '2018-04-12 12:03:54', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('34', '52', '13774498933', '周建国', '江苏省', '苏州市', '昆山市', '陆家春江佳苑南苑32栋204', '', '215300', '121.03178664165', '31.321155684933', '2018-04-12 12:05:42', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('35', '44', '18702612953', '敖玲雅', '江西省', '抚州市', '南城县', '建昌大道山水景园小区', '', '344000', '116.64562061076', '27.5665856971', '2018-04-12 12:06:20', '2018-04-12 12:06:35', '1', '0');INSERT INTO `th_member_address` VALUES ('36', '41', '18721862591', '何露', '上海', '上海市', '闵行区', '华曹镇王泥浜王家厍34号', '', '201100', '121.31857663327', '31.228723297971', '2018-04-12 12:06:57', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('37', '53', '15598282290', '全员萍', '内蒙古自治区', '呼和浩特市', '回民区', '内蒙古自治区呼和浩特市回民区新民街,星月斋旁', '', '010030', '111.66817785661', '40.811708232701', '2018-04-12 12:10:06', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('38', '54', '13517945925', '万露芳', '浙江省', '杭州市', '江干区', '下沙街道头格月雅城11幢', '', '', '120.30912628702', '30.309011509383', '2018-04-12 12:10:16', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('39', '55', '15000572746', '李文睿', '上海', '上海市', '嘉定区', '秋竹路802弄7/701', '', '', '121.22708600022', '31.388934403423', '2018-04-12 12:10:26', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('40', '57', '18301905075', '阙兰兰', '上海', '上海市', '嘉定区', '802弄48号1804室', '', '', '121.25101353756', '31.364338055434', '2018-04-12 12:19:24', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('41', '61', '13564729610', '佘存霞', '上海', '上海市', '嘉定区', '秋竹路655弄12号1402室', '', '201800', '121.22648084773', '31.388462226834', '2018-04-12 12:22:16', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('42', '58', '15021689181', '汤震宇', '上海', '上海市', '宝山区', '市台路408号1108室', '', '', '121.3584035138', '31.32129809245', '2018-04-12 12:22:27', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('43', '39', '13424159960', '全米', '广东省', '深圳市', '龙岗区', '布吉 西环路 东升学校 高中部', '', '', '', '', '2018-04-12 12:23:04', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('44', '38', '13524853603', '朱敏', '上海', '上海市', '嘉定区', '平城路2055弄24号1301', '', '', '121.23191355511', '31.38914040595', '2018-04-12 12:23:57', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('45', '56', '13916056405', '丁巧兰', '上海', '上海市', '嘉定区', '秋竹路655弄1302室叠翠峰二期', '', '', '121.22840992557', '31.386420471475', '2018-04-12 12:25:33', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('46', '67', '15279492835', '胡金花', '江西省', '抚州市', '南城县', '老2中安置房7栋二单元201', '', '344700', '116.68173230038', '27.518966176458', '2018-04-12 12:31:09', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('47', '66', '13621722765', '杨琼英', '上海', '上海市', '徐汇区', '上海番禺路950弄1号109室', '', '2000', '121.43446630128', '31.201862257053', '2018-04-12 12:36:39', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('48', '74', '18930047948', '罗冬梅', '上海', '上海市', '嘉定区', '平城路2279号', '', '', '121.22758830032', '31.387412423664', '2018-04-12 13:15:55', '0000-00-00 00:00:00', '1', '0');INSERT INTO `th_member_address` VALUES ('49', '78', '13306649420', '许女士', '浙江省', '宁波市', '海曙区', '车轿街69号恒泰大厦12B04室', '', '315010', '121.56442093701', '29.875934650239', '2018-04-12 13:36:43', '2018-04-12 13:37:08', '1', '0');INSERT INTO `th_member_address` VALUES ('50', '13', '17681442898', '工业园', '北京市', '北京市', '东城区', '滚滚滚', '', '', '116.42188470126', '39.938574012986', '2018-04-12 15:48:56', '0000-00-00 00:00:00', '1', '0');CREATE TABLE `th_member_coupon` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`coupon_id` int(11) NOT NULL COMMENT '优惠券id',
`member_id` int(11) NOT NULL COMMENT '会员id',
`intime` datetime NOT NULL COMMENT '领取时间',
`uptime` datetime NOT NULL COMMENT '更新时间',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1未使用的优惠券;2已使用;3过期',
`start_strtotime` varchar(20) NOT NULL COMMENT '开始时间戳',
`end_strtotime` varchar(20) NOT NULL COMMENT '结束时间戳',
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`) USING BTREE,
KEY `member_id` (`member_id`,`intime`,`status`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;CREATE TABLE `th_merchants` (
`merchants_id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`merchants_name` varchar(50) NOT NULL DEFAULT '' COMMENT '店铺名称',
`merchants_img` varchar(250) NOT NULL DEFAULT '' COMMENT '店铺照片',
`merchants_qrcode` varchar(255) NOT NULL COMMENT '二维码',
`merchants_star1` varchar(10) NOT NULL DEFAULT '5' COMMENT '星级1商品描叙',
`merchants_star2` varchar(10) NOT NULL DEFAULT '5' COMMENT '星级2商家服务',
`merchants_star3` varchar(10) NOT NULL DEFAULT '5' COMMENT '星级3物流服务',
`assessment_count` int(6) NOT NULL DEFAULT '0' COMMENT '评价数',
`merchants_type` tinyint(2) NOT NULL DEFAULT '1' COMMENT '1:店铺',
`contact_name` varchar(20) NOT NULL DEFAULT '' COMMENT '联系人姓名',
`contact_mobile` varchar(20) NOT NULL DEFAULT '' COMMENT '联系电话',
`merchants_address` varchar(150) NOT NULL DEFAULT '' COMMENT '详细地址',
`merchants_state` tinyint(1) NOT NULL DEFAULT '0' COMMENT '供应商开启状态 0:关闭 1:开启 ',
`merchants_province` varchar(64) NOT NULL DEFAULT '' COMMENT '省',
`merchants_city` varchar(64) NOT NULL DEFAULT '' COMMENT '属于市',
`merchants_country` varchar(64) NOT NULL DEFAULT '' COMMENT '区',
`company_mobile` varchar(20) NOT NULL DEFAULT '' COMMENT '公司电话',
`company_name` varchar(100) NOT NULL DEFAULT '' COMMENT '公司名称',
`is_delete` tinyint(1) NOT NULL DEFAULT '0',
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`apply_state` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0未认证 1审核中2:审核通过3:拒绝 ''',
`pay_state` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0:未付款 1:付款',
`refuse_remark` varchar(150) NOT NULL DEFAULT '' COMMENT '拒绝理由',
`hx_account` varchar(32) NOT NULL DEFAULT '' COMMENT '环信账号',
`hx_password` varchar(32) NOT NULL DEFAULT '' COMMENT '环信密码',
`hx_custom_id` varchar(32) NOT NULL COMMENT '环信客服ID',
`legal_img` varchar(250) NOT NULL DEFAULT '' COMMENT '法人照片',
`legal_face_img` varchar(250) NOT NULL DEFAULT '' COMMENT '身份证正面照',
`legal_opposite_img` varchar(250) NOT NULL COMMENT '身份证反面照',
`legal_hand_img` varchar(250) NOT NULL DEFAULT '' COMMENT '手持身份证照',
`business_img` varchar(250) NOT NULL DEFAULT '' COMMENT '营业执照1',
`business_number` varchar(150) NOT NULL COMMENT '营业执照号',
`business_img2` varchar(250) NOT NULL DEFAULT '' COMMENT '营业执照2',
`business_img3` varchar(250) NOT NULL DEFAULT '' COMMENT '营业执照3',
`merchants_position` varchar(64) NOT NULL DEFAULT '' COMMENT '展示位置 home:首页',
`live_id` int(11) NOT NULL DEFAULT '0' COMMENT '直播live_id',
`merchants_content` varchar(255) NOT NULL COMMENT '店铺简介',
`is_tuijian` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1是推荐',
`month_sales` int(8) NOT NULL COMMENT '月售',
`day_sales` int(8) NOT NULL COMMENT '日售',
`total_sales` int(8) NOT NULL COMMENT '总售',
`operate_class` varchar(255) NOT NULL DEFAULT '' COMMENT '商家经营分类',
`tv_id` int(11) NOT NULL COMMENT '电视台ID',
`platform_type` tinyint(2) NOT NULL DEFAULT '0' COMMENT '平台类型1:电视台商户平台',
`dashang_scale` tinyint(3) NOT NULL DEFAULT '40' COMMENT '平台直播收益百分比',
`sell_scale` tinyint(3) unsigned NOT NULL DEFAULT '5' COMMENT '平台销售收益百分比',
`tv_sell_scale` tinyint(3) NOT NULL COMMENT '电视台销售比例',
`spread_scale` tinyint(3) NOT NULL DEFAULT '0' COMMENT '电视台引流分配',
`last_login_ip` varchar(20) NOT NULL COMMENT '登录ip',
`login_times` int(11) NOT NULL COMMENT '登录次数',
`last_login_date` datetime NOT NULL COMMENT '登录日期',
PRIMARY KEY (`merchants_id`),
UNIQUE KEY `merchants_id` (`merchants_id`) USING BTREE,
KEY `member_id` (`member_id`,`merchants_type`,`is_delete`,`apply_state`,`pay_state`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COMMENT='商家表';INSERT INTO `th_merchants` VALUES ('16', '5', '洛安资产管理集团', 'http://shop.100ytv.com/uploads//image/banner/20180410/0ac78c280f25a2a2d04afde4f7be421d.png', '', '5', '5', '5', '0', '1', '洛安资产', '17681442898', '浦东大道中信五牛城', '0', '上海市', '上海市', '浦东新区', '17681442898', '洛安资产管理集团', '0', '2018-04-10 10:11:26', '2018-04-10 10:50:10', '2', '1', '', '', '', '', 'http://shop.100ytv.com/uploads//image/banner/20180410/583cd3f054a12248e6e8078b7ff34c8a.png', 'http://shop.100ytv.com/uploads//image/banner/20180410/86179bc5d1e4e53aba2293f54f09590f.png', 'http://shop.100ytv.com/uploads//image/banner/20180410/fb08d0d5085d6cf7288c19bfdce5978b.png', 'http://shop.100ytv.com/uploads//image/banner/20180410/b2921b8ec0bab3e1860e7ae86029acfb.png', 'http://shop.100ytv.com/uploads//image/banner/20180410/c1f00a1e0dd14dc6f9a3d24cf22d195b.png', '', '', '', '', '0', '洛安资产管理集团洛安资产管理集团', '0', '0', '0', '0', '', '5', '1', '58', '5', '33', '10', '172.16.31.10', '11', '2018-04-17 12:45:04');INSERT INTO `th_merchants` VALUES ('17', '3', '送', '', '', '5', '5', '5', '0', '1', '孙哲柳', '17681442891', '工资', '0', '上海市', '上海市', '虹口区', '', '', '0', '2018-04-12 09:28:24', '2018-04-12 09:28:48', '3', '0', '', '', '', '', 'http://shop.100ytv.com/uploads/touxiang/20180412/0d45eea9479a8a9154b23d2b8e797581.jpg', 'http://shop.100ytv.com/uploads/touxiang/20180412/bd942a09859da00fdf19b33697117c9d.jpg', 'http://shop.100ytv.com/uploads/touxiang/20180412/880e2e8091ffcbf518540c43961a6b5a.jpg', 'http://shop.100ytv.com/uploads/touxiang/20180412/35698d8899340f8bded60ac2738f7de1.jpg', 'http://shop.100ytv.com/uploads/touxiang/20180412/bd57194b52c308bd2d20337c26580dd5.jpg', '123456789123456789', '', '', '', '0', '', '0', '0', '0', '0', '', '0', '0', '40', '5', '0', '0', '', '0', '0000-00-00 00:00:00');CREATE TABLE `th_merchants_comment` (
`comment_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '店铺评论',
`merchants_id` int(11) NOT NULL,
`member_id` int(11) NOT NULL,
`express_mark` tinyint(1) NOT NULL,
`service_mark` tinyint(1) NOT NULL,
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`is_delete` tinyint(4) NOT NULL,
PRIMARY KEY (`comment_id`)
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8;INSERT INTO `th_merchants_comment` VALUES ('6', '5', '6', '5', '5', '2018-04-10 11:05:05', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('7', '5', '6', '5', '5', '2018-04-10 12:58:06', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('8', '5', '10', '4', '5', '2018-04-10 15:22:42', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('9', '5', '6', '5', '5', '2018-04-10 15:59:50', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('10', '5', '3', '4', '4', '2018-04-10 16:02:19', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('11', '5', '3', '5', '4', '2018-04-10 16:03:24', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('12', '5', '14', '5', '5', '2018-04-10 19:35:48', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('13', '5', '14', '5', '5', '2018-04-10 19:36:01', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('14', '5', '6', '5', '5', '2018-04-11 12:38:49', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('15', '5', '3', '4', '3', '2018-04-11 12:55:11', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('16', '5', '14', '5', '5', '2018-04-11 14:18:10', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('17', '5', '10', '4', '4', '2018-04-11 16:13:54', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('18', '5', '21', '5', '5', '2018-04-11 17:44:02', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('19', '5', '14', '5', '5', '2018-04-11 19:18:42', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('20', '5', '14', '5', '5', '2018-04-11 19:18:55', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('21', '5', '14', '5', '5', '2018-04-11 19:19:02', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('22', '5', '6', '5', '5', '2018-04-12 09:17:31', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('23', '5', '6', '5', '5', '2018-04-12 09:17:36', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('24', '5', '3', '4', '4', '2018-04-12 09:18:39', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('25', '5', '15', '5', '5', '2018-04-12 10:51:57', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('26', '5', '15', '5', '5', '2018-04-12 11:32:58', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('27', '5', '15', '5', '5', '2018-04-12 11:33:11', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('28', '5', '15', '5', '5', '2018-04-12 11:33:41', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('29', '5', '15', '5', '5', '2018-04-12 11:33:46', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('30', '5', '15', '5', '5', '2018-04-12 11:39:11', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('31', '5', '6', '5', '5', '2018-04-12 15:18:23', '0000-00-00 00:00:00', '0');INSERT INTO `th_merchants_comment` VALUES ('32', '5', '13', '5', '5', '2018-04-12 15:53:40', '0000-00-00 00:00:00', '0');CREATE TABLE `th_merchants_deposit_order` (
`deposit_id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`order_no` varchar(32) NOT NULL DEFAULT '' COMMENT '订单号',
`amount` decimal(10,2) NOT NULL,
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`order_state` varchar(20) NOT NULL DEFAULT '' COMMENT '订单状态 cancel:取消 wait_pay:待付款 end 完成',
`pay_time` datetime NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0',
`pay_charge` text NOT NULL,
`pay_way` varchar(32) NOT NULL DEFAULT '',
PRIMARY KEY (`deposit_id`),
UNIQUE KEY `deposit_id` (`deposit_id`) USING BTREE,
KEY `member_id` (`member_id`,`is_delete`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;CREATE TABLE `th_message` (
`message_id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`system_notice_id` int(11) NOT NULL COMMENT '系统消息id',
`message` varchar(255) NOT NULL COMMENT '系统信息',
`intime` datetime NOT NULL,
`is_read` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1未读;2已读;',
`order_id` int(11) NOT NULL COMMENT '订单id',
`type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1系统消息;2订单消息;3其他消息',
PRIMARY KEY (`message_id`),
UNIQUE KEY `message_id` (`message_id`) USING BTREE,
KEY `member_id` (`member_id`,`intime`,`type`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8;INSERT INTO `th_message` VALUES ('10', '6', '0', '订单已签收', '2018-04-10 11:04:59', '1', '22', '2');INSERT INTO `th_message` VALUES ('11', '3', '0', '订单已签收', '2018-04-10 11:19:22', '2', '24', '2');INSERT INTO `th_message` VALUES ('12', '3', '0', '订单已签收', '2018-04-10 11:26:40', '2', '26', '2');INSERT INTO `th_message` VALUES ('13', '6', '0', '订单已签收', '2018-04-10 12:57:55', '1', '27', '2');INSERT INTO `th_message` VALUES ('14', '10', '0', '订单已签收', '2018-04-10 15:21:45', '1', '28', '2');INSERT INTO `th_message` VALUES ('15', '10', '0', '订单已签收', '2018-04-10 15:44:04', '1', '29', '2');INSERT INTO `th_message` VALUES ('16', '10', '0', '订单已签收', '2018-04-10 15:49:56', '1', '30', '2');INSERT INTO `th_message` VALUES ('17', '10', '0', '订单已签收', '2018-04-10 15:51:28', '1', '31', '2');INSERT INTO `th_message` VALUES ('18', '6', '0', '订单已签收', '2018-04-10 15:59:44', '1', '33', '2');INSERT INTO `th_message` VALUES ('19', '3', '0', '订单已签收', '2018-04-10 16:02:09', '2', '35', '2');INSERT INTO `th_message` VALUES ('20', '3', '0', '订单已签收', '2018-04-10 16:03:15', '2', '36', '2');INSERT INTO `th_message` VALUES ('21', '15', '0', '订单已签收', '2018-04-10 16:46:21', '1', '42', '2');INSERT INTO `th_message` VALUES ('22', '15', '0', '订单已签收', '2018-04-10 16:50:49', '1', '43', '2');INSERT INTO `th_message` VALUES ('23', '10', '0', '订单已签收', '2018-04-10 16:52:48', '1', '44', '2');INSERT INTO `th_message` VALUES ('24', '14', '0', '订单已签收', '2018-04-10 18:16:51', '2', '45', '2');INSERT INTO `th_message` VALUES ('25', '14', '0', '订单已签收', '2018-04-10 18:58:38', '2', '47', '2');INSERT INTO `th_message` VALUES ('26', '14', '0', '订单已签收', '2018-04-10 19:32:37', '2', '48', '2');INSERT INTO `th_message` VALUES ('27', '10', '0', '订单已签收', '2018-04-10 19:39:47', '1', '32', '2');INSERT INTO `th_message` VALUES ('28', '15', '0', '订单已签收', '2018-04-10 19:44:28', '1', '46', '2');INSERT INTO `th_message` VALUES ('29', '15', '0', '订单已签收', '2018-04-10 19:51:32', '1', '49', '2');INSERT INTO `th_message` VALUES ('30', '15', '0', '订单已签收', '2018-04-10 20:12:03', '1', '50', '2');INSERT INTO `th_message` VALUES ('31', '14', '0', '订单已签收', '2018-04-11 12:01:47', '2', '51', '2');INSERT INTO `th_message` VALUES ('32', '6', '0', '订单已签收', '2018-04-11 12:38:42', '1', '53', '2');INSERT INTO `th_message` VALUES ('33', '3', '0', '订单已签收', '2018-04-11 12:55:01', '2', '54', '2');INSERT INTO `th_message` VALUES ('34', '14', '0', '订单已签收', '2018-04-11 14:44:12', '2', '57', '2');INSERT INTO `th_message` VALUES ('35', '14', '0', '订单已签收', '2018-04-11 14:55:51', '2', '62', '2');INSERT INTO `th_message` VALUES ('36', '21', '0', '订单已签收', '2018-04-11 15:35:55', '1', '59', '2');INSERT INTO `th_message` VALUES ('37', '10', '0', '订单已签收', '2018-04-11 16:17:17', '1', '64', '2');INSERT INTO `th_message` VALUES ('38', '10', '0', '订单已签收', '2018-04-11 16:41:02', '1', '65', '2');INSERT INTO `th_message` VALUES ('39', '21', '0', '订单已签收', '2018-04-11 17:43:47', '1', '66', '2');INSERT INTO `th_message` VALUES ('40', '6', '0', '订单已签收', '2018-04-12 09:17:20', '1', '70', '2');INSERT INTO `th_message` VALUES ('41', '6', '0', '订单已签收', '2018-04-12 09:17:22', '1', '69', '2');INSERT INTO `th_message` VALUES ('42', '3', '0', '订单已签收', '2018-04-12 09:18:28', '2', '68', '2');INSERT INTO `th_message` VALUES ('43', '6', '0', '订单已签收', '2018-04-12 15:18:05', '1', '111', '2');INSERT INTO `th_message` VALUES ('44', '13', '0', '订单已签收', '2018-04-12 15:53:09', '2', '113', '2');CREATE TABLE `th_mobile_sms` (
`mobile_sms_id` int(11) NOT NULL AUTO_INCREMENT,
`mobile` varchar(11) NOT NULL COMMENT '手机号',
`code` varchar(11) NOT NULL COMMENT '验证码',
`state` tinyint(2) NOT NULL COMMENT '1:有效 2:失效',
`date` varchar(20) NOT NULL COMMENT '日期',
`intime` int(11) NOT NULL COMMENT '时间',
`uptime` int(11) DEFAULT '0',
PRIMARY KEY (`mobile_sms_id`),
UNIQUE KEY `mobile_sms_id` (`mobile_sms_id`) USING BTREE,
KEY `mobile` (`mobile`,`state`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COMMENT='短信验证码表';INSERT INTO `th_mobile_sms` VALUES ('1', '17621251372', '634429', '1', '2018-04-09', '1523264897', '0');INSERT INTO `th_mobile_sms` VALUES ('2', '17601220893', '620580', '1', '2018-04-10', '1523346151', '0');INSERT INTO `th_mobile_sms` VALUES ('3', '13817442209', '753223', '1', '2018-04-10', '1523351193', '0');INSERT INTO `th_mobile_sms` VALUES ('4', '13817442209', '171338', '1', '2018-04-10', '1523352012', '0');INSERT INTO `th_mobile_sms` VALUES ('5', '13817442209', '283572', '1', '2018-04-10', '1523352012', '0');INSERT INTO `th_mobile_sms` VALUES ('6', '17681442898', '298399', '2', '2018-04-11', '1523421188', '0');INSERT INTO `th_mobile_sms` VALUES ('7', '13206888128', '551316', '1', '2018-04-12', '1523476402', '0');INSERT INTO `th_mobile_sms` VALUES ('8', '17681442898', '947842', '2', '2018-04-12', '1523496229', '0');INSERT INTO `th_mobile_sms` VALUES ('9', '13761144013', '869062', '2', '2018-04-12', '1523503386', '0');INSERT INTO `th_mobile_sms` VALUES ('10', '13970428768', '834903', '1', '2018-04-12', '1523506886', '0');INSERT INTO `th_mobile_sms` VALUES ('11', '17681442898', '898107', '1', '2018-04-12', '1523518394', '0');INSERT INTO `th_mobile_sms` VALUES ('12', '13916480034', '670656', '1', '2018-04-13', '1523595118', '0');INSERT INTO `th_mobile_sms` VALUES ('13', '13872936126', '478020', '1', '2018-04-16', '1523863946', '0');INSERT INTO `th_mobile_sms` VALUES ('14', '17681442898', '111568', '1', '2018-04-17', '1523928646', '0');INSERT INTO `th_mobile_sms` VALUES ('15', '13916480034', '957959', '1', '2018-04-17', '1523937015', '0');CREATE TABLE `th_notice` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(200) DEFAULT NULL COMMENT '标题',
`state` tinyint(4) DEFAULT '1' COMMENT '1默认2开启',
`type` tinyint(1) DEFAULT '1' COMMENT '1协议2公告3退改签规则;5退改签规则,6轮播文章',
`object` varchar(32) DEFAULT '0' COMMENT '公告对象',
`summary` varchar(150) DEFAULT NULL COMMENT '摘要',
`content` text NOT NULL COMMENT '内容',
`is_top` tinyint(4) DEFAULT '1' COMMENT '1默认2置顶',
`intime` datetime DEFAULT NULL,
`uptime` datetime DEFAULT NULL,
`url` varchar(150) DEFAULT NULL COMMENT '外部链接',
`is_del` tinyint(1) DEFAULT '1' COMMENT '1正常;2删除',
`is_send` tinyint(1) DEFAULT '1' COMMENT '1未发送;2已发送',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8;INSERT INTO `th_notice` VALUES ('1', '商家直播协议', '0', '1', '0', '', '<p>商家直播协议,可以在后台修改!</p><p><br/></p><p><br/></p>', '1', '2017-06-14 15:17:35', '2018-03-27 11:17:24', 'http://shop.100ytv.com/api/merchant/agreement/id/1.html', '1', '1');INSERT INTO `th_notice` VALUES ('2', '商家提现协议', '0', '1', '0', '商户提现协议,前端调用的固定链接,建议只放商户提现相关的内容,不建议修改成其他内容,', '<p>商家提现协议</p>', '1', '2017-06-14 15:17:40', '2018-04-19 11:14:22', 'http://shop.100ytv.com/api/merchant/agreement/id/2.html', '1', '1');INSERT INTO `th_notice` VALUES ('3', '商户入驻协议', '0', '1', '0', '商户入驻协议,前端调用的固定链接,建议只放商户入驻相关的内容,不建议修改成其他内容,', '<p>商家入驻协议</p>', '1', '2017-06-14 15:17:44', '2018-04-19 11:13:49', 'http://shop.100ytv.com/api/merchant/agreement/id/3.html', '1', '1');INSERT INTO `th_notice` VALUES ('4', '普通会员特权', '1', '1', '0', '', '普通会员特权', '1', '2017-11-20 15:07:56', '', 'http://shop.100ytv.com/api/merchant/agreement/id/4.html', '1', '1');INSERT INTO `th_notice` VALUES ('6', '积分的作用', '0', '1', '0', '', '<p><br/></p><p>可以在后台上传1223<br/></p>', '1', '2017-11-20 15:07:53', '2018-03-27 10:38:18', 'http://shop.100ytv.com/api/merchant/agreement/id/6.html', '1', '1');INSERT INTO `th_notice` VALUES ('7', '如何获得积分', '0', '1', '0', '', '<p>如何获得积分</p><p>可在后台编辑</p>', '1', '2017-11-20 15:07:48', '2017-12-27 15:35:04', 'http://shop.100ytv.com/api/merchant/agreement/id/7.html', '1', '1');INSERT INTO `th_notice` VALUES ('8', '不知道怎么购买商品', '1', '1', '0', '', '<p style=\"text-indent: 2em; line-height: 2em; margin-bottom: 10px;\"><br/></p><p style=\"text-indent: 2em; line-height: 2em; margin-bottom: 10px;\">不知道怎么购买商品</p><p style=\"text-indent: 2em; line-height: 2em; margin-bottom: 10px;\">可在后台编辑1212111232123爱是飞洒</p>', '1', '2017-11-20 15:07:44', '2018-03-27 10:38:53', 'http://shop.100ytv.com/api/merchant/agreement/id/8.html', '1', '1');INSERT INTO `th_notice` VALUES ('9', '这里告诉你去哪里看直播', '1', '1', '0', '', '<p>用户提现协议:</p><p>1:为保证您的账户安全,支付宝信息只能填写一次,无法修改。</p><p>2:如因您的个人填写失误导致无法付款或者费用损失,百台云平台不承担相关责任。</p><p>3:如提现遇到问题,请联系客服。</p><p>4:百台云拥有最终解释权</p>', '1', '2017-11-20 15:07:40', '2018-03-27 11:18:56', 'http://shop.100ytv.com/api/merchant/agreement/id/9.html', '1', '1');INSERT INTO `th_notice` VALUES ('10', '主播当前讲的商品在哪买', '1', '1', '0', '银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议银票提现协议', '<p>主播当前<img src=\"/data/upload/20171018/1508331203851614.png\" title=\"1508331203851614.png\" alt=\"07c2551b6fb7dfe9e06316497da78ca7.png\"/>讲的商品在哪买1</p>', '1', '2017-06-14 16:25:38', '2017-11-08 09:26:59', 'http://shop.100ytv.com/api/merchant/agreement/id/10.html', '1', '1');INSERT INTO `th_notice` VALUES ('11', '不知道怎么充值', '1', '1', '0', '', '<p>不知道怎么充值</p>', '1', '2017-11-20 15:07:37', '2017-10-18 20:54:28', 'http://shop.100ytv.com/api/merchant/agreement/id/11.html', '1', '1');INSERT INTO `th_notice` VALUES ('12', '成为卖家', '1', '1', '0', '', '<p>成为卖家</p>', '1', '2017-11-20 15:07:33', '2017-12-26 00:28:57', 'http://shop.100ytv.com/api/merchant/agreement/id/12.html', '1', '1');INSERT INTO `th_notice` VALUES ('13', '网站相关', '0', '1', '0', '', '<p dir=\"rtl\" style=\"text-align: left; line-height: 2em; margin-bottom: 20px; margin-top: 10px; text-indent: 0em;\"><span style=\"font-size: 11px;\"></span>百台云直播平台区别于线上主流直播平台,“百台云电商直播”致力于通过与地方电视台合作,联手打造推广及销售全国各 地 的 地方名优特产、非遗民间艺术、文化旅游等服务于民生特色项目的全国一流电商直播平台。主营百台云电商直播平台,主要将移动直播与电子商城相结合,衔接电视台主持人直播、其他普通用户直播等多种渠道对全国各地区的地方特色产品进行主动推荐,定向导购;主要通过建立与全国各个地方电视台友好合作,意图将传统电视直播形式转变为互联网线上直播,并且不拘泥于传统电视直播单一的内容、播放时间及推广方式,以人文、艺术、慈善、代祈福等更丰富的直播内容,和24小时循环直播等更灵活的播出时间,以及多台滚动联合直播等方式,打造真正意义上联动全国百家电视台的直播平台。</p>', '1', '2017-11-20 15:07:28', '2017-12-01 15:17:28', 'http://shop.100ytv.com/api/merchant/agreement/id/13.html', '1', '1');INSERT INTO `th_notice` VALUES ('14', '积分规则', '0', '1', '0', '', '<p>积分规则</p>', '1', '2017-11-20 15:06:52', '2017-11-20 15:06:49', 'http://shop.100ytv.com/api/merchant/agreement/id/14.html', '1', '1');INSERT INTO `th_notice` VALUES ('15', '用户协议', '0', '1', '0', '', '<p>nn<br/></p>', '1', '', '2018-04-19 11:11:57', 'http://shop.100ytv.com/api/merchant/agreement/id/15.html', '1', '1');CREATE TABLE `th_order` (
`order_id` int(11) NOT NULL AUTO_INCREMENT,
`order_no` varchar(32) NOT NULL DEFAULT '' COMMENT '订单号',
`member_id` int(11) NOT NULL,
`create_time` datetime NOT NULL,
`order_state` varchar(30) NOT NULL DEFAULT 'wait_pay' COMMENT '订单状态 cancel:取消 wait_pay:待付款 wait_send:带发货 wait_receive:待确认收货 wait_assessment:待评价 end:已结束 wait_group:等待团购人数满',
`is_delete` tinyint(1) NOT NULL DEFAULT '0',
`order_total_price` decimal(10,2) NOT NULL COMMENT '订单总额',
`order_actual_price` decimal(10,2) NOT NULL COMMENT '订单实际支付',
`goods_total_price` decimal(10,2) NOT NULL COMMENT '商品总价值',
`is_deduct_integral` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否抵扣积分',
`deduct_integral` varchar(10) NOT NULL COMMENT '抵扣的积分',
`deduct_integral_value` varchar(20) NOT NULL DEFAULT '0' COMMENT '抵扣金额',
`coupon_ids` varchar(20) NOT NULL COMMENT '逗号隔开的优惠券id',
`coupon_value` varchar(10) NOT NULL COMMENT '优惠券价值',
`uptime` datetime NOT NULL,
PRIMARY KEY (`order_id`)
) ENGINE=InnoDB AUTO_INCREMENT=116 DEFAULT CHARSET=utf8;INSERT INTO `th_order` VALUES ('22', '18961523329211441', '6', '2018-04-10 11:00:11', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-10 11:00:20');INSERT INTO `th_order` VALUES ('23', '25061523329447071', '6', '2018-04-10 11:04:07', 'wait_pay', '0', '0.10', '0.10', '0.10', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('24', '76491523330289785', '3', '2018-04-10 11:18:09', 'wait_send', '0', '100.00', '100.00', '100.00', '0', '', '0', '', '', '2018-04-10 11:18:16');INSERT INTO `th_order` VALUES ('25', '79441523330316145', '3', '2018-04-10 11:18:36', 'wait_pay', '0', '100.00', '100.00', '100.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('26', '73971523330757366', '3', '2018-04-10 11:25:57', 'wait_send', '0', '100.00', '100.00', '100.00', '0', '', '0', '', '', '2018-04-10 11:26:03');INSERT INTO `th_order` VALUES ('27', '78991523336145238', '6', '2018-04-10 12:55:45', 'wait_send', '0', '10.00', '10.00', '10.00', '0', '', '0', '', '', '2018-04-10 12:55:57');INSERT INTO `th_order` VALUES ('28', '69321523344650680', '10', '2018-04-10 15:17:30', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-10 15:17:35');INSERT INTO `th_order` VALUES ('29', '88521523346103136', '10', '2018-04-10 15:41:43', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-10 15:41:51');INSERT INTO `th_order` VALUES ('30', '35341523346481283', '10', '2018-04-10 15:48:01', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('31', '76561523346651544', '10', '2018-04-10 15:50:51', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-10 15:50:56');INSERT INTO `th_order` VALUES ('32', '99961523347028426', '10', '2018-04-10 15:57:08', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-10 15:57:15');INSERT INTO `th_order` VALUES ('33', '94361523347034536', '6', '2018-04-10 15:57:14', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-10 15:57:27');INSERT INTO `th_order` VALUES ('34', '92301523347062695', '10', '2018-04-10 15:57:42', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('35', '49901523347251467', '3', '2018-04-10 16:00:51', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-10 16:00:59');INSERT INTO `th_order` VALUES ('36', '16071523347307881', '3', '2018-04-10 16:01:47', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('37', '41261523347316634', '14', '2018-04-10 16:01:56', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('38', '31601523347322539', '14', '2018-04-10 16:02:02', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('39', '36751523347326698', '14', '2018-04-10 16:02:06', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('40', '47081523347329624', '14', '2018-04-10 16:02:09', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('41', '80931523347857691', '14', '2018-04-10 16:10:57', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('42', '37861523349913376', '15', '2018-04-10 16:45:13', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-10 16:45:25');INSERT INTO `th_order` VALUES ('43', '53481523350175704', '15', '2018-04-10 16:49:35', 'wait_send', '0', '2.00', '2.00', '2.00', '0', '', '0', '', '', '2018-04-10 16:49:42');INSERT INTO `th_order` VALUES ('44', '13971523350286334', '10', '2018-04-10 16:51:26', 'wait_send', '0', '2.00', '2.00', '2.00', '0', '', '0', '', '', '2018-04-10 16:51:33');INSERT INTO `th_order` VALUES ('45', '64211523353536560', '14', '2018-04-10 17:45:36', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('46', '62461523354023227', '15', '2018-04-10 17:53:43', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('47', '73641523357674001', '14', '2018-04-10 18:54:34', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-10 18:54:42');INSERT INTO `th_order` VALUES ('48', '73401523359846224', '14', '2018-04-10 19:30:46', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-10 19:30:50');INSERT INTO `th_order` VALUES ('49', '76081523361050509', '15', '2018-04-10 19:50:50', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-10 19:51:02');INSERT INTO `th_order` VALUES ('50', '93731523362264641', '15', '2018-04-10 20:11:04', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-10 20:11:16');INSERT INTO `th_order` VALUES ('51', '36731523417218266', '14', '2018-04-11 11:26:58', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-11 11:27:02');INSERT INTO `th_order` VALUES ('52', '96771523418746622', '10', '2018-04-11 11:52:26', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('53', '44901523421377898', '6', '2018-04-11 12:36:17', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-11 12:36:33');INSERT INTO `th_order` VALUES ('54', '48981523422364404', '3', '2018-04-11 12:52:44', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-11 12:52:53');INSERT INTO `th_order` VALUES ('55', '46431523427531807', '14', '2018-04-11 14:18:51', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('56', '74001523428139840', '15', '2018-04-11 14:28:59', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-11 14:29:07');INSERT INTO `th_order` VALUES ('57', '85741523428555931', '14', '2018-04-11 14:35:55', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('58', '78451523428575414', '21', '2018-04-11 14:36:15', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('59', '54071523428651223', '21', '2018-04-11 14:37:31', 'wait_pay', '0', '2.00', '2.00', '2.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('60', '73301523428821012', '21', '2018-04-11 14:40:21', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('61', '46171523428836616', '21', '2018-04-11 14:40:36', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('62', '92261523429665148', '14', '2018-04-11 14:54:25', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('63', '15381523429667474', '10', '2018-04-11 14:54:27', 'wait_send', '0', '3.00', '3.00', '3.00', '0', '', '0', '', '', '2018-04-11 14:54:35');INSERT INTO `th_order` VALUES ('64', '54271523434539212', '10', '2018-04-11 16:15:39', 'wait_send', '0', '3.00', '3.00', '3.00', '0', '', '0', '', '', '2018-04-11 16:15:47');INSERT INTO `th_order` VALUES ('65', '89781523436005715', '10', '2018-04-11 16:40:05', 'wait_send', '0', '2.00', '2.00', '2.00', '0', '', '0', '', '', '2018-04-11 16:40:12');INSERT INTO `th_order` VALUES ('66', '65451523436864316', '21', '2018-04-11 16:54:24', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-11 16:54:32');INSERT INTO `th_order` VALUES ('67', '17071523441737542', '21', '2018-04-11 18:15:37', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-11 18:15:49');INSERT INTO `th_order` VALUES ('68', '75621523495408248', '3', '2018-04-12 09:10:08', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 09:10:15');INSERT INTO `th_order` VALUES ('69', '62351523495453358', '6', '2018-04-12 09:10:53', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 09:11:00');INSERT INTO `th_order` VALUES ('70', '36501523495532342', '6', '2018-04-12 09:12:12', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 09:12:19');INSERT INTO `th_order` VALUES ('71', '31641523501716727', '15', '2018-04-12 10:55:16', 'wait_send', '0', '3.00', '3.00', '3.00', '0', '', '0', '', '', '2018-04-12 10:55:33');INSERT INTO `th_order` VALUES ('72', '11451523502410255', '3', '2018-04-12 11:06:50', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 11:07:00');INSERT INTO `th_order` VALUES ('73', '71551523502484808', '3', '2018-04-12 11:08:04', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 11:08:12');INSERT INTO `th_order` VALUES ('74', '33211523503023477', '15', '2018-04-12 11:17:03', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('75', '10451523503612278', '34', '2018-04-12 11:26:52', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 11:27:15');INSERT INTO `th_order` VALUES ('76', '82651523504433219', '35', '2018-04-12 11:40:33', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 11:40:56');INSERT INTO `th_order` VALUES ('77', '80771523504671642', '36', '2018-04-12 11:44:31', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 11:44:37');INSERT INTO `th_order` VALUES ('78', '61831523504684332', '37', '2018-04-12 11:44:44', 'wait_send', '0', '5.00', '5.00', '5.00', '0', '', '0', '', '', '2018-04-12 11:44:51');INSERT INTO `th_order` VALUES ('79', '64001523505062575', '40', '2018-04-12 11:51:02', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 11:51:08');INSERT INTO `th_order` VALUES ('80', '29441523505072283', '35', '2018-04-12 11:51:12', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 11:51:19');INSERT INTO `th_order` VALUES ('81', '90831523505393729', '43', '2018-04-12 11:56:33', 'wait_send', '0', '2.00', '2.00', '2.00', '0', '', '0', '', '', '2018-04-12 11:56:46');INSERT INTO `th_order` VALUES ('82', '21681523505670743', '46', '2018-04-12 12:01:10', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 12:01:18');INSERT INTO `th_order` VALUES ('83', '72191523505717914', '48', '2018-04-12 12:01:57', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 12:02:05');INSERT INTO `th_order` VALUES ('84', '47291523505767404', '50', '2018-04-12 12:02:47', 'wait_send', '0', '2.00', '2.00', '2.00', '0', '', '0', '', '', '2018-04-12 12:02:55');INSERT INTO `th_order` VALUES ('85', '18741523505791636', '46', '2018-04-12 12:03:11', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 12:03:18');INSERT INTO `th_order` VALUES ('86', '92911523505839283', '49', '2018-04-12 12:03:59', 'wait_pay', '0', '2.00', '2.00', '2.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('87', '23571523505850271', '51', '2018-04-12 12:04:10', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 12:04:23');INSERT INTO `th_order` VALUES ('88', '47251523505885176', '49', '2018-04-12 12:04:45', 'wait_send', '0', '5.00', '5.00', '5.00', '0', '', '0', '', '', '2018-04-12 12:04:52');INSERT INTO `th_order` VALUES ('89', '61591523505944859', '52', '2018-04-12 12:05:44', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 12:05:53');INSERT INTO `th_order` VALUES ('90', '27621523506014951', '44', '2018-04-12 12:06:54', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('91', '13811523506034424', '41', '2018-04-12 12:07:14', 'wait_send', '0', '2.00', '2.00', '2.00', '0', '', '0', '', '', '2018-04-12 12:07:24');INSERT INTO `th_order` VALUES ('92', '87781523506068696', '35', '2018-04-12 12:07:48', 'wait_send', '0', '3.00', '3.00', '3.00', '0', '', '0', '', '', '2018-04-12 12:07:56');INSERT INTO `th_order` VALUES ('93', '40571523506207504', '53', '2018-04-12 12:10:07', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 12:10:14');INSERT INTO `th_order` VALUES ('94', '80681523506220148', '54', '2018-04-12 12:10:20', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('95', '52441523506232683', '55', '2018-04-12 12:10:32', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 12:10:41');INSERT INTO `th_order` VALUES ('96', '64721523506526201', '46', '2018-04-12 12:15:26', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 12:15:32');INSERT INTO `th_order` VALUES ('97', '65021523506555682', '46', '2018-04-12 12:15:55', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 12:16:01');INSERT INTO `th_order` VALUES ('98', '87091523506767416', '57', '2018-04-12 12:19:27', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 12:19:33');INSERT INTO `th_order` VALUES ('99', '25441523506948877', '61', '2018-04-12 12:22:28', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 12:22:36');INSERT INTO `th_order` VALUES ('100', '44951523506955217', '58', '2018-04-12 12:22:35', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 12:22:50');INSERT INTO `th_order` VALUES ('101', '60491523506988333', '39', '2018-04-12 12:23:08', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 12:23:18');INSERT INTO `th_order` VALUES ('102', '58511523507046626', '38', '2018-04-12 12:24:06', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 12:24:14');INSERT INTO `th_order` VALUES ('103', '55061523507148221', '56', '2018-04-12 12:25:48', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 12:26:03');INSERT INTO `th_order` VALUES ('104', '37231523507471866', '67', '2018-04-12 12:31:11', 'wait_send', '0', '2.00', '2.00', '2.00', '0', '', '0', '', '', '2018-04-12 12:31:19');INSERT INTO `th_order` VALUES ('105', '43401523507657069', '44', '2018-04-12 12:34:17', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 12:34:23');INSERT INTO `th_order` VALUES ('106', '10541523507669022', '44', '2018-04-12 12:34:29', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 12:34:35');INSERT INTO `th_order` VALUES ('107', '15501523507802260', '66', '2018-04-12 12:36:42', 'wait_send', '0', '4.00', '4.00', '4.00', '0', '', '0', '', '', '2018-04-12 12:36:49');INSERT INTO `th_order` VALUES ('108', '87101523510018945', '46', '2018-04-12 13:13:38', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 13:13:46');INSERT INTO `th_order` VALUES ('109', '87671523510157613', '74', '2018-04-12 13:15:57', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 13:16:04');INSERT INTO `th_order` VALUES ('110', '86761523511463350', '78', '2018-04-12 13:37:43', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 13:37:50');INSERT INTO `th_order` VALUES ('111', '55351523516231176', '6', '2018-04-12 14:57:11', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 14:57:23');INSERT INTO `th_order` VALUES ('112', '26251523519341037', '13', '2018-04-12 15:49:01', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');INSERT INTO `th_order` VALUES ('113', '42611523519537339', '13', '2018-04-12 15:52:17', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-12 15:52:27');INSERT INTO `th_order` VALUES ('114', '94601523875203882', '46', '2018-04-16 18:40:03', 'wait_send', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '2018-04-16 18:40:17');INSERT INTO `th_order` VALUES ('115', '49131523940454424', '3', '2018-04-17 12:47:34', 'wait_pay', '0', '1.00', '1.00', '1.00', '0', '', '0', '', '', '0000-00-00 00:00:00');CREATE TABLE `th_order_distribution` (
`distribution_id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` tinyint(11) NOT NULL COMMENT '分销得到钱的人 -1代表平台',
`order_id` tinyint(11) NOT NULL COMMENT '订单号',
`distribution_relation` varchar(20) NOT NULL DEFAULT '' COMMENT '下单的人 和 的钱的人 之间的关系 vip1:1级分销 vip2:2级分销',
`distribution_price` decimal(10,2) NOT NULL COMMENT '分销得到的钱',
`distribution_percent` varchar(20) NOT NULL DEFAULT '' COMMENT '订单总额的提成',
`create_time` datetime NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0',
`distribution_type` varchar(30) NOT NULL DEFAULT '' COMMENT 'order:订单购买所得 ',
`user_id` int(11) NOT NULL COMMENT '这次充值的用户id',
`distribution_state` varchar(30) CHARACTER SET utf8 NOT NULL DEFAULT '' COMMENT 'wait_pay:等待付款 wait_end:等待结束 end:结束',
PRIMARY KEY (`distribution_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='订单收益表';CREATE TABLE `th_order_goods` (
`order_goods_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`order_merchants_id` int(11) NOT NULL,
`goods_id` int(11) NOT NULL,
`merchants_id` int(11) NOT NULL COMMENT '商家id',
`goods_num` int(1) NOT NULL,
`goods_name` varchar(200) NOT NULL DEFAULT '',
`goods_img` varchar(250) NOT NULL DEFAULT '',
`specification_id` int(11) NOT NULL COMMENT '型号id',
`specification_ids` varchar(20) NOT NULL DEFAULT '' COMMENT '型号ID集合',
`specification_names` varchar(50) NOT NULL DEFAULT '' COMMENT '型号名称',
`specification_stock` int(8) NOT NULL,
`specification_img` varchar(200) NOT NULL DEFAULT '',
`specification_price` decimal(10,2) NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0',
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`goods_group_id` int(11) NOT NULL COMMENT '团购主键id',
`group_specification_id` int(11) NOT NULL COMMENT '团购关联规格主键',
`group_price` decimal(10,2) NOT NULL COMMENT '团购价',
`group_stock` int(11) NOT NULL COMMENT '团购库存',
`goods_welfare_id` int(11) NOT NULL,
`welfare_id` int(11) NOT NULL,
`welfare_percent_value` decimal(10,2) NOT NULL COMMENT '给公益的金钱百分比',
`is_give_integral` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1得到积分',
`give_integral_value` varchar(10) NOT NULL COMMENT '获取的积分数',
`has_refund` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否有售后',
`seller` int(11) NOT NULL COMMENT '销售者',
`live_id` int(11) NOT NULL COMMENT '主播直播id',
`sale_ratio` decimal(3,1) NOT NULL COMMENT '销售比例',
`returns_money` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '售后退款总金额',
PRIMARY KEY (`order_goods_id`),
UNIQUE KEY `order_goods_id` (`order_goods_id`) USING BTREE,
KEY `order_id` (`order_id`,`order_merchants_id`,`create_time`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=130 DEFAULT CHARSET=utf8 COMMENT='订单关联商品表';INSERT INTO `th_order_goods` VALUES ('24', '22', '22', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '1', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 11:00:11', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('25', '23', '23', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '23', '56', '500G/斤', '100', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '0.10', '0', '2018-04-10 11:04:07', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('26', '24', '24', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '100', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '100.00', '0', '2018-04-10 11:18:09', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '1', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('27', '25', '25', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '99', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '100.00', '0', '2018-04-10 11:18:36', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('28', '26', '26', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '99', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '100.00', '0', '2018-04-10 11:25:57', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '1', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('29', '27', '27', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '23', '56', '500G/斤', '99', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '10.00', '0', '2018-04-10 12:55:45', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('30', '28', '28', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '98', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 15:17:30', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '1', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('31', '29', '29', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '23', '56', '500G/斤', '98', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 15:41:43', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('32', '30', '30', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '100', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 15:48:01', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('33', '31', '31', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '23', '56', '500G/斤', '97', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 15:50:51', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('34', '32', '32', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '99', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 15:57:08', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('35', '33', '33', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '23', '56', '500G/斤', '96', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 15:57:14', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('36', '34', '34', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '97', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 15:57:42', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('37', '35', '35', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '97', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 16:00:51', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('38', '36', '36', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '96', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 16:01:47', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('39', '37', '37', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '96', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 16:01:56', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('40', '38', '38', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '96', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 16:02:02', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('41', '39', '39', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '95', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 16:02:06', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('42', '40', '40', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '95', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 16:02:09', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('43', '41', '41', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '23', '56', '500G/斤', '95', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 16:10:57', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('44', '42', '42', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '94', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 16:45:13', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('45', '43', '43', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '93', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 16:49:35', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '1', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('46', '43', '43', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '98', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 16:49:35', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('48', '44', '44', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '23', '56', '500G/斤', '95', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 16:51:26', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '1', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('49', '44', '44', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '97', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 16:51:26', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('51', '45', '45', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '92', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 17:45:36', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('52', '46', '46', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '91', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 17:53:43', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('53', '47', '47', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '90', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 18:54:34', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('54', '48', '48', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '89', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 19:30:46', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('55', '49', '49', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '88', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 19:50:50', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('56', '50', '50', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '87', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-10 20:11:04', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('57', '51', '51', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '96', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 11:26:58', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '1', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('58', '52', '52', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '86', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 11:52:26', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('59', '53', '53', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '86', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 12:36:17', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('60', '54', '54', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '85', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 12:52:44', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '7', '5', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('61', '55', '55', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '84', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 14:18:51', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('62', '56', '56', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '83', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 14:28:59', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '1', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('63', '57', '57', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '82', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 14:35:55', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '1', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('64', '58', '58', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '95', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 14:36:15', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('65', '59', '59', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '23', '56', '500G/斤', '94', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 14:37:31', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('66', '59', '59', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '95', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 14:37:31', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('68', '60', '60', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '95', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 14:40:21', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('69', '61', '61', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '95', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 14:40:36', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('70', '62', '62', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '81', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 14:54:25', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '1', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('71', '63', '63', '8', '5', '3', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '23', '56', '500G/斤', '94', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 14:54:27', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('72', '64', '64', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '80', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 16:15:39', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '1', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('73', '64', '64', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '23', '56', '500G/斤', '90', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 16:15:39', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('74', '64', '64', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '92', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 16:15:39', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('75', '65', '65', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '23', '56', '500G/斤', '89', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 16:40:05', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('76', '65', '65', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '91', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 16:40:05', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('78', '66', '66', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '79', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 16:54:24', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('79', '67', '67', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '90', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-11 18:15:37', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('80', '68', '68', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '89', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 09:10:08', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('81', '69', '69', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '88', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 09:10:53', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('82', '70', '70', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '87', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 09:12:12', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '7', '10', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('83', '71', '71', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '78', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 10:55:16', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('84', '71', '71', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '23', '56', '500G/斤', '88', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 10:55:16', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('85', '71', '71', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '86', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 10:55:16', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('86', '72', '72', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '77', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 11:06:50', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('87', '73', '73', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '23', '56', '500G/斤', '87', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 11:08:04', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('88', '74', '74', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '76', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 11:17:03', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('89', '75', '75', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '85', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 11:26:52', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('90', '76', '76', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '84', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 11:40:33', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('91', '77', '77', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '83', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 11:44:31', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('92', '78', '78', '8', '5', '5', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '82', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 11:44:44', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('93', '79', '79', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '77', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 11:51:02', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('94', '80', '80', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '76', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 11:51:12', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('95', '81', '81', '8', '5', '2', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '75', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 11:56:33', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('96', '82', '82', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '73', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:01:10', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('97', '83', '83', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '72', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:01:57', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('98', '84', '84', '8', '5', '2', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '71', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:02:47', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('99', '85', '85', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '69', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:03:11', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('100', '86', '86', '8', '5', '2', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '68', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:03:59', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('101', '87', '87', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '68', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:04:10', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('102', '88', '88', '8', '5', '5', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '67', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:04:45', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('103', '89', '89', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '62', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:05:44', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('104', '90', '90', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '61', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:06:54', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('105', '91', '91', '8', '5', '2', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '61', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:07:14', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('106', '92', '92', '8', '5', '3', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '58', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:07:48', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('107', '93', '93', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '55', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:10:07', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('108', '94', '94', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '54', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:10:20', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('109', '95', '95', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '54', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:10:32', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('110', '96', '96', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '52', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:15:26', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('111', '97', '97', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '51', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:15:55', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('112', '98', '98', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '50', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:19:27', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('113', '99', '99', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '49', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:22:28', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('114', '100', '100', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '49', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:22:35', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('115', '101', '101', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '47', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:23:08', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('116', '102', '102', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '46', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:24:06', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('117', '103', '103', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '45', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:25:48', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('118', '104', '104', '8', '5', '2', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '44', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:31:11', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('119', '105', '105', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '42', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:34:17', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('120', '106', '106', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '41', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:34:29', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('121', '107', '107', '8', '5', '4', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '40', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 12:36:42', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('122', '108', '108', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '36', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 13:13:38', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('123', '109', '109', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '35', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 13:15:57', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('124', '110', '110', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '34', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 13:37:43', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('125', '111', '111', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '33', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 14:57:11', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '5', '15', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('126', '112', '112', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '76', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 15:49:01', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('127', '113', '113', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '22', '55', '250G', '76', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-12 15:52:17', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('128', '114', '114', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '32', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-16 18:40:03', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');INSERT INTO `th_order_goods` VALUES ('129', '115', '115', '8', '5', '1', '洛【黄牛肉】', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '24', '57', '两斤', '31', 'http://shop.100ytv.com/uploads/image/goods/20180410/c0df755d71f885b9b3ae4ae8ceab39f6.jpg', '1.00', '0', '2018-04-17 12:47:34', '0000-00-00 00:00:00', '0', '0', '0.00', '0', '0', '0', '0.00', '0', '', '0', '0', '0', '50.0', '0.00');CREATE TABLE `th_order_goods_settlement` (
`order_goods_settlement` int(10) NOT NULL AUTO_INCREMENT COMMENT '订单商品结算id',
`order_goods_id` int(11) DEFAULT NULL COMMENT '订单商品id',
`order_merchant_id` int(11) DEFAULT NULL COMMENT '订单id',
`settlement_price` decimal(10,2) DEFAULT NULL COMMENT '结算金额',
`platform_ratio` decimal(4,1) DEFAULT NULL COMMENT '平台结算比例',
`platform_amount` decimal(10,2) DEFAULT NULL COMMENT '平台结算金额',
`merchants_id` int(11) DEFAULT NULL COMMENT '商家id',
`merchants_ratio` decimal(4,1) DEFAULT NULL COMMENT '商家结算比例',
`merchants_amount` decimal(10,2) DEFAULT NULL COMMENT '商家结算比例',
`spread_id` int(11) DEFAULT NULL COMMENT '商家推广者id',
`spread_ratio` decimal(4,1) DEFAULT NULL COMMENT '推广者比例',
`spread_amount` decimal(10,2) DEFAULT NULL COMMENT '商家推广者费用',
`spread_tv_ratio` decimal(4,1) DEFAULT NULL,
`spread_tv` int(11) NOT NULL COMMENT '用户电视台引流',
`spread_tv_amount` decimal(10,2) DEFAULT NULL,
`seller` int(11) DEFAULT NULL COMMENT '销售者主播id',
`seller_ratio` decimal(4,1) DEFAULT NULL,
`seller_amount` decimal(10,2) DEFAULT NULL,
`level_one_tv` int(11) DEFAULT NULL COMMENT '区县电视台id',
`level_one_ratio` decimal(4,1) DEFAULT NULL,
`level_one_amount` decimal(10,2) DEFAULT NULL COMMENT '区县电视台结算金额',
`level_two_tv` int(11) DEFAULT NULL COMMENT '市级电视台id',
`level_two_ratio` decimal(4,1) DEFAULT NULL COMMENT '市级电视台比例',
`level_two_amount` decimal(10,2) DEFAULT NULL COMMENT '市级电视台分润总额',
`level_three_tv` int(11) DEFAULT NULL COMMENT '省级电视台',
`level_three_ratio` decimal(4,1) DEFAULT NULL,
`level_three_amount` decimal(10,2) DEFAULT NULL COMMENT '省级电视台分润比',
`other_amount` decimal(10,2) DEFAULT NULL COMMENT '其他分润',
`create_time` datetime DEFAULT NULL,
`date` varchar(20) DEFAULT NULL COMMENT '日期',
`is_delete` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`order_goods_settlement`),
UNIQUE KEY `order_goods_settlement` (`order_goods_settlement`) USING BTREE,
KEY `order_merchant_id` (`order_merchant_id`,`merchants_id`,`create_time`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8;INSERT INTO `th_order_goods_settlement` VALUES ('10', '24', '22', '1.00', '3.0', '4.98', '5', '-410.0', '-4.10', '5', '10.0', '0.10', '2.0', '5', '0.02', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 11:05:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('11', '26', '24', '100.00', '5.0', '5.00', '5', '85.0', '85.00', '5', '10.0', '10.00', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 11:20:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('12', '28', '26', '100.00', '5.0', '5.00', '5', '85.0', '85.00', '5', '10.0', '10.00', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 11:30:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('13', '29', '27', '10.00', '3.0', '4.80', '5', '40.0', '4.00', '5', '10.0', '1.00', '2.0', '5', '0.20', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 13:00:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('14', '30', '28', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 15:23:12', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('15', '31', '29', '1.00', '5.0', '0.05', '5', '83.0', '0.83', '5', '10.0', '0.10', '2.0', '5', '0.02', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 15:45:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('16', '32', '30', '1.00', '5.0', '0.05', '5', '83.0', '0.83', '5', '10.0', '0.10', '2.0', '5', '0.02', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 15:50:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('17', '33', '31', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 15:51:36', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('18', '35', '33', '1.00', '5.0', '0.05', '5', '83.0', '0.83', '5', '10.0', '0.10', '2.0', '5', '0.02', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 16:00:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('19', '37', '35', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 16:03:57', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('20', '38', '36', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 16:03:57', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('22', '44', '42', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 16:50:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('23', '45', '43', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 16:55:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('24', '46', '43', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 16:55:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('25', '48', '44', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 16:55:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('26', '49', '44', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 16:55:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('30', '51', '45', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 18:20:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('31', '53', '47', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 19:00:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('32', '54', '48', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 19:35:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('33', '34', '32', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 19:40:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('34', '52', '46', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 19:45:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('35', '55', '49', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 19:55:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('36', '56', '50', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-10 20:15:01', '2018-04-10', '0');INSERT INTO `th_order_goods_settlement` VALUES ('37', '57', '51', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-12 10:42:25', '2018-04-12', '0');INSERT INTO `th_order_goods_settlement` VALUES ('38', '59', '53', '1.00', '5.0', '0.05', '5', '83.0', '0.83', '5', '10.0', '0.10', '2.0', '5', '0.02', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-12 10:42:25', '2018-04-12', '0');INSERT INTO `th_order_goods_settlement` VALUES ('39', '60', '54', '1.00', '5.0', '0.05', '5', '35.0', '0.35', '5', '10.0', '0.10', '0.0', '0', '0.00', '7', '0.0', '0.50', '5', '50.0', '0.25', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.25', '2018-04-12 10:42:25', '2018-04-12', '0');INSERT INTO `th_order_goods_settlement` VALUES ('40', '63', '57', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-12 10:42:25', '2018-04-12', '0');INSERT INTO `th_order_goods_settlement` VALUES ('41', '65', '59', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-12 10:42:25', '2018-04-12', '0');INSERT INTO `th_order_goods_settlement` VALUES ('42', '66', '59', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-12 10:42:25', '2018-04-12', '0');INSERT INTO `th_order_goods_settlement` VALUES ('43', '70', '62', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-12 10:42:25', '2018-04-12', '0');INSERT INTO `th_order_goods_settlement` VALUES ('44', '72', '64', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-12 10:42:25', '2018-04-12', '0');INSERT INTO `th_order_goods_settlement` VALUES ('45', '73', '64', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-12 10:42:25', '2018-04-12', '0');INSERT INTO `th_order_goods_settlement` VALUES ('46', '74', '64', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-12 10:42:25', '2018-04-12', '0');INSERT INTO `th_order_goods_settlement` VALUES ('47', '75', '65', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-12 10:42:25', '2018-04-12', '0');INSERT INTO `th_order_goods_settlement` VALUES ('48', '76', '65', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-12 10:42:25', '2018-04-12', '0');INSERT INTO `th_order_goods_settlement` VALUES ('49', '78', '66', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-12 10:42:25', '2018-04-12', '0');INSERT INTO `th_order_goods_settlement` VALUES ('50', '80', '68', '1.00', '5.0', '0.05', '5', '85.0', '0.85', '5', '10.0', '0.10', '0.0', '0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-12 10:42:25', '2018-04-12', '0');INSERT INTO `th_order_goods_settlement` VALUES ('51', '81', '69', '1.00', '5.0', '0.05', '5', '83.0', '0.83', '5', '10.0', '0.10', '2.0', '5', '0.02', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-12 10:42:25', '2018-04-12', '0');INSERT INTO `th_order_goods_settlement` VALUES ('52', '82', '70', '1.00', '5.0', '0.05', '5', '33.0', '0.33', '5', '10.0', '0.10', '2.0', '5', '0.02', '7', '0.0', '0.50', '5', '50.0', '0.25', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.25', '2018-04-12 10:42:25', '2018-04-12', '0');INSERT INTO `th_order_goods_settlement` VALUES ('68', '125', '111', '1.00', '5.0', '0.05', '5', '33.0', '0.33', '5', '10.0', '0.10', '2.0', '5', '0.02', '5', '50.0', '0.50', '0', '0.0', '0.00', '0', '0.0', '0.00', '0', '0.0', '0.00', '0.00', '2018-04-12 15:18:31', '2018-04-12', '0');CREATE TABLE `th_order_hurry` (
`hurry_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`member_id` int(11) NOT NULL,
`intime` datetime NOT NULL,
`type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1商城订单',
PRIMARY KEY (`hurry_id`),
UNIQUE KEY `hurry_id` (`hurry_id`) USING BTREE,
KEY `type` (`type`,`intime`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8;INSERT INTO `th_order_hurry` VALUES ('4', '22', '6', '2018-04-10 11:00:43', '1');INSERT INTO `th_order_hurry` VALUES ('5', '24', '3', '2018-04-10 11:18:23', '1');INSERT INTO `th_order_hurry` VALUES ('6', '29', '10', '2018-04-10 15:41:56', '1');INSERT INTO `th_order_hurry` VALUES ('7', '32', '10', '2018-04-10 16:03:15', '1');INSERT INTO `th_order_hurry` VALUES ('8', '55', '14', '2018-04-11 14:27:05', '1');INSERT INTO `th_order_hurry` VALUES ('9', '57', '14', '2018-04-11 14:42:56', '1');INSERT INTO `th_order_hurry` VALUES ('10', '108', '46', '2018-04-12 13:14:00', '1');INSERT INTO `th_order_hurry` VALUES ('11', '113', '13', '2018-04-12 15:52:41', '1');INSERT INTO `th_order_hurry` VALUES ('12', '114', '46', '2018-04-16 18:40:27', '1');INSERT INTO `th_order_hurry` VALUES ('13', '85', '46', '2018-04-16 18:40:34', '1');INSERT INTO `th_order_hurry` VALUES ('14', '96', '46', '2018-04-16 18:40:39', '1');INSERT INTO `th_order_hurry` VALUES ('15', '108', '46', '2018-04-16 18:40:42', '1');CREATE TABLE `th_order_logistics` (
`logistics_id` int(11) NOT NULL AUTO_INCREMENT,
`logistics_name` varchar(64) NOT NULL DEFAULT '' COMMENT '快递物流公司名',
`logistics_pinyin` varchar(10) NOT NULL DEFAULT '' COMMENT '拼音',
`is_delete` tinyint(1) NOT NULL DEFAULT '0',
`create_time` datetime NOT NULL,
PRIMARY KEY (`logistics_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='订单物流表';CREATE TABLE `th_order_logistics_detail` (
`logistics_id` int(11) NOT NULL AUTO_INCREMENT,
`logistics_time` datetime NOT NULL,
`logistics_context` varchar(150) NOT NULL DEFAULT '' COMMENT '快递信息',
`cretate_time` datetime NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0',
`logistics_no` varchar(64) NOT NULL,
PRIMARY KEY (`logistics_id`),
KEY `logistics_id` (`logistics_id`,`cretate_time`,`is_delete`,`logistics_no`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;CREATE TABLE `th_order_merchants` (
`order_merchants_id` int(11) NOT NULL AUTO_INCREMENT,
`merchants_id` int(11) NOT NULL COMMENT '商家id',
`member_id` int(11) NOT NULL COMMENT '下单用户id',
`order_id` int(11) NOT NULL COMMENT '一级订单id',
`order_no` varchar(32) NOT NULL DEFAULT '' COMMENT '订单号',
`address_id` int(11) NOT NULL COMMENT '地址id',
`address_mobile` varchar(20) NOT NULL COMMENT '地址--手机号',
`address_name` varchar(50) NOT NULL DEFAULT '' COMMENT '地址--姓名',
`address_province` varchar(50) NOT NULL DEFAULT '' COMMENT '地址--省',
`address_city` varchar(50) NOT NULL DEFAULT '' COMMENT '地址--市',
`address_country` varchar(50) NOT NULL DEFAULT '' COMMENT '地址--区',
`address_detailed` varchar(50) NOT NULL DEFAULT '' COMMENT '地址--详情地址',
`address_road` varchar(50) NOT NULL DEFAULT '' COMMENT '地址--街道',
`address_zip_code` varchar(50) NOT NULL DEFAULT '' COMMENT '地址--邮编',
`address_longitude` varchar(50) NOT NULL DEFAULT '' COMMENT '地址--',
`address_latitude` varchar(50) NOT NULL DEFAULT '' COMMENT '地址--',
`order_total_price` decimal(10,2) NOT NULL COMMENT '订单总价',
`order_actual_price` decimal(10,2) NOT NULL COMMENT '订单实际支付价格',
`goods_total_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '商品价',
`refund_price` decimal(10,2) NOT NULL COMMENT '售后退款金额',
`cost_price` decimal(10,2) NOT NULL,
`order_type` varchar(50) NOT NULL DEFAULT 'goods' COMMENT 'goods:正常商品下单 group:团购下单',
`order_state` varchar(50) NOT NULL DEFAULT 'wait_pay' COMMENT '订单状态 cancel:取消 wait_pay:待付款 wait_send:带发货 wait_receive:待确认收货 wait_assessment:待评价 end:已结束 wait_group:等待团购人数满;returns退款',
`order_remark` varchar(255) NOT NULL DEFAULT '' COMMENT '订单备注',
`is_deduct_integral` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否抵扣积分',
`deduct_integral_value` varchar(10) NOT NULL DEFAULT '0' COMMENT '抵扣多少积分',
`deduct_integral_price` varchar(10) NOT NULL DEFAULT '0' COMMENT '抵扣价格',
`deduct_integral_percent` varchar(10) NOT NULL DEFAULT '' COMMENT '抵扣现金的百分比',
`custom_remark` text NOT NULL COMMENT '后台客服做备注',
`create_time` datetime NOT NULL COMMENT '下单时间',
`update_time` datetime NOT NULL,
`cancel_end_time` datetime NOT NULL COMMENT '自动取消的结束时间',
`cancel_time` datetime NOT NULL COMMENT '取消时间',
`pay_time` datetime NOT NULL COMMENT '付款时间',
`send_time` datetime NOT NULL COMMENT '发货时间',
`receive_time` datetime NOT NULL COMMENT '收货时间',
`assessment_time` datetime NOT NULL COMMENT '评价时间',
`is_delete` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除 0:未 1:删除',
`pay_way` varchar(20) NOT NULL DEFAULT '' COMMENT '付款方式',
`pay_no` varchar(64) NOT NULL DEFAULT '' COMMENT '付款订单号',
`pay_charge` text NOT NULL COMMENT '付款凭证',
`ping_no` varchar(64) NOT NULL DEFAULT '' COMMENT 'ping++订单号',
`member_group_id` int(10) NOT NULL COMMENT '用户开团主键',
`is_give_integral` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1赠送积分',
`give_integral_value` varchar(10) NOT NULL DEFAULT '' COMMENT '赠送积分数',
`logistics_no` varchar(32) NOT NULL DEFAULT '' COMMENT '快递单号',
`logistics_name` varchar(32) NOT NULL DEFAULT '' COMMENT '快递公司名称',
`logistics_pinyin` varchar(20) NOT NULL DEFAULT '' COMMENT '快递公司简写',
`date` varchar(20) NOT NULL COMMENT '日期',
`settlement_state` tinyint(4) NOT NULL DEFAULT '0' COMMENT '结算状态:1已结算',
`refund_state` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否售后订单 0-否 1-是',
PRIMARY KEY (`order_merchants_id`)
) ENGINE=InnoDB AUTO_INCREMENT=116 DEFAULT CHARSET=utf8 COMMENT='订单表';INSERT INTO `th_order_merchants` VALUES ('22', '5', '6', '22', '2018041011001147819', '16', '17681442898', '孙振华', '上海市', '上海市', '虹口区', '上海', '', '200000', '121.49191854079', '31.282497228987', '1.00', '1.00', '1.00', '0.00', '0.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-10 11:00:11', '2018-04-10 11:00:20', '2018-04-11 11:00:11', '2018-04-10 11:00:11', '2018-04-10 11:00:20', '2018-04-10 11:03:00', '2018-04-10 11:04:59', '0000-00-00 00:00:00', '0', '支付宝', '18961523329211441B1523329211', '{\"id\":\"evt_401180410110020693853503\",\"created\":1523329219,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_nr54COvrLu9Gbn5SmLH0eXrH\",\"object\":\"charge\",\"created\":1523329211,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"18961523329211441B1523329211\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088022688413525\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"176****2898\"},\"time_paid\":1523329218,\"time_expire\":1523415611,\"time_settle\":null,\"transaction_no\":\"2018041021001004520584948382\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_nr54COvrLu9Gbn5SmLH0eXrH\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_z1Om18qnf1C8W18y58mDujzL\",\"pending_webhooks\":0}', '18961523329211441B1523329211', '0', '0', '', '483846967159', '中通速递', 'ZTO', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('23', '5', '6', '23', '2018041011040796467', '16', '17681442898', '孙振华', '上海市', '上海市', '虹口区', '上海', '', '200000', '121.49191854079', '31.282497228987', '0.10', '0.10', '0.10', '0.00', '0.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-10 11:04:07', '2018-04-10 11:04:31', '2018-04-11 11:04:07', '2018-04-10 11:04:07', '2018-04-10 11:04:31', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '支付宝', '2018041011040796467C1523329463', '{\"id\":\"evt_401180410110431693940403\",\"created\":1523329470,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_rvjvXHr9G8W5CWDOS4CWrTOK\",\"object\":\"charge\",\"created\":1523329463,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"2018041011040796467C1523329463\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088022688413525\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"176****2898\"},\"time_paid\":1523329470,\"time_expire\":1523415863,\"time_settle\":null,\"transaction_no\":\"2018041021001004520585091454\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_rvjvXHr9G8W5CWDOS4CWrTOK\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_WHSCC4CKGqTOL4Wv54Oe9W9G\",\"pending_webhooks\":0}', '2018041011040796467C1523329463', '0', '0', '', '', '', '', '2018-04-10', '0', '0');INSERT INTO `th_order_merchants` VALUES ('24', '5', '3', '24', '2018041011180933690', '17', '17681442898', '孙振华', '上海', '上海市', '浦东新区', '上海', '', '', '121.63848131409', '31.230895349134', '100.00', '100.00', '100.00', '0.00', '100.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-10 11:18:09', '2018-04-10 11:18:16', '2018-04-11 11:18:09', '2018-04-10 11:18:09', '2018-04-10 11:18:16', '2018-04-10 11:19:20', '2018-04-10 11:19:22', '0000-00-00 00:00:00', '0', '微信', '76491523330289785B1523330289', '{\"id\":\"evt_401180410111816693127602\",\"created\":1523330296,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_8unjr14m18uHnvH0KOKCGq9G\",\"object\":\"charge\",\"created\":1523330290,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"76491523330289785B1523330289\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0-9PQXGx-P5191rsI5gkNno\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523330295,\"time_expire\":1523337490,\"time_settle\":null,\"transaction_no\":\"4200000077201804105740099146\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_8unjr14m18uHnvH0KOKCGq9G\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_4GWnXP4i1Cy5PCKyTKibTiv5\",\"pending_webhooks\":0}', '76491523330289785B1523330289', '0', '0', '', '483846967159', '中通速递', 'ZTO', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('25', '5', '3', '25', '2018041011183612348', '17', '17681442898', '孙振华', '上海', '上海市', '浦东新区', '上海', '', '', '121.63848131409', '31.230895349134', '100.00', '100.00', '100.00', '0.00', '100.00', 'goods', 'cancel', '', '0', '0', '0', '', '', '2018-04-10 11:18:36', '0000-00-00 00:00:00', '2018-04-11 11:18:36', '2018-04-10 11:18:44', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '', '', '', '', '0', '0', '', '', '', '', '2018-04-10', '0', '0');INSERT INTO `th_order_merchants` VALUES ('26', '5', '3', '26', '2018041011255764456', '17', '17681442898', '孙振华', '上海', '上海市', '浦东新区', '上海', '', '', '121.63848131409', '31.230895349134', '100.00', '100.00', '100.00', '0.00', '100.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-10 11:25:57', '2018-04-10 11:26:03', '2018-04-11 11:25:57', '2018-04-10 11:25:57', '2018-04-10 11:26:03', '2018-04-10 11:26:37', '2018-04-10 11:26:40', '0000-00-00 00:00:00', '0', '微信', '73971523330757366B1523330757', '{\"id\":\"evt_401180410112603694347603\",\"created\":1523330763,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_yvnTeDyPuzvDan1CeL8Wj9mD\",\"object\":\"charge\",\"created\":1523330757,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"73971523330757366B1523330757\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0-9PQXGx-P5191rsI5gkNno\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523330762,\"time_expire\":1523337957,\"time_settle\":null,\"transaction_no\":\"4200000066201804105746333328\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_yvnTeDyPuzvDan1CeL8Wj9mD\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_q9iD8G08ivfLafr1y9yjH00S\",\"pending_webhooks\":0}', '73971523330757366B1523330757', '0', '0', '', '483846967159', '中通速递', 'ZTO', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('27', '5', '6', '27', '2018041012554536305', '16', '17681442898', '孙振华', '上海市', '上海市', '虹口区', '上海', '', '200000', '121.49191854079', '31.282497228987', '10.00', '10.00', '10.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-10 12:55:45', '2018-04-10 12:55:57', '2018-04-11 12:55:45', '2018-04-10 12:55:45', '2018-04-10 12:55:57', '2018-04-10 12:57:51', '2018-04-10 12:57:55', '0000-00-00 00:00:00', '0', '支付宝', '78991523336145238B1523336145', '{\"id\":\"evt_401180410125557695265902\",\"created\":1523336156,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_WrDinLTu5efLCKmnj5XLifj1\",\"object\":\"charge\",\"created\":1523336145,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"78991523336145238B1523336145\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088022688413525\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"176****2898\"},\"time_paid\":1523336155,\"time_expire\":1523422545,\"time_settle\":null,\"transaction_no\":\"2018041021001004520585097096\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_WrDinLTu5efLCKmnj5XLifj1\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_bPif18HiDC00qnDa1CrD8OGO\",\"pending_webhooks\":0}', '78991523336145238B1523336145', '0', '0', '', '483846967159', '中通速递', 'ZTO', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('28', '5', '10', '28', '2018041015173099956', '18', '13817442209', '崔峰', '北京', '北京市', '东城区', '新骏环路598室', '', '', '116.42188470126', '39.938574012986', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-10 15:17:30', '2018-04-10 15:17:35', '2018-04-11 15:17:30', '2018-04-10 15:17:30', '2018-04-10 15:17:35', '2018-04-10 15:21:25', '2018-04-10 15:21:45', '0000-00-00 00:00:00', '0', '微信', '69321523344650680B1523344650', '{\"id\":\"evt_401180410151735698416602\",\"created\":1523344654,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_90ibPK5aLKOGv1iHCKKWbrT8\",\"object\":\"charge\",\"created\":1523344651,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"69321523344650680B1523344650\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0y7SLusNj9IwPqJrktyOeRg\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523344654,\"time_expire\":1523351851,\"time_settle\":null,\"transaction_no\":\"4200000071201804105846282177\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_90ibPK5aLKOGv1iHCKKWbrT8\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_8m9W940Oi100Gy5WTKjjLCW9\",\"pending_webhooks\":0}', '69321523344650680B1523344650', '0', '0', '', '888883115975317862', '圆通速递', 'YTO', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('29', '5', '10', '29', '2018041015414326855', '18', '13817442209', '崔峰', '北京', '北京市', '东城区', '新骏环路598室', '', '', '116.42188470126', '39.938574012986', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_assessment', '', '0', '0', '0', '', '', '2018-04-10 15:41:43', '2018-04-10 15:41:51', '2018-04-11 15:41:43', '2018-04-10 15:41:43', '2018-04-10 15:41:51', '2018-04-10 15:43:57', '2018-04-10 15:44:04', '0000-00-00 00:00:00', '0', '微信', '88521523346103136B1523346103', '{\"id\":\"evt_401180410154151700048903\",\"created\":1523346111,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_Hyvr94qf9C80XHyL0GuT0WHG\",\"object\":\"charge\",\"created\":1523346103,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"88521523346103136B1523346103\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0y7SLusNj9IwPqJrktyOeRg\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523346110,\"time_expire\":1523353303,\"time_settle\":null,\"transaction_no\":\"4200000073201804105850642655\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_Hyvr94qf9C80XHyL0GuT0WHG\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_5aDivTXnfrz5v1GSiH4erbv9\",\"pending_webhooks\":0}', '88521523346103136B1523346103', '0', '0', '', '888883115975317862', '圆通速递', 'YTO', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('30', '5', '10', '30', '2018041015480135767', '18', '13817442209', '崔峰', '北京', '北京市', '东城区', '新骏环路598室', '', '', '116.42188470126', '39.938574012986', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_assessment', '', '0', '0', '0', '', '', '2018-04-10 15:48:01', '2018-04-10 15:48:18', '2018-04-11 15:48:01', '2018-04-10 15:48:01', '2018-04-10 15:48:18', '2018-04-10 15:49:01', '2018-04-10 15:49:56', '0000-00-00 00:00:00', '0', '微信', '2018041015480135767C1523346494', '{\"id\":\"evt_401180410154818699091902\",\"created\":1523346498,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_qvbD8GqT8OiTW1WnnLK8mzjL\",\"object\":\"charge\",\"created\":1523346494,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"2018041015480135767C1523346494\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0y7SLusNj9IwPqJrktyOeRg\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523346497,\"time_expire\":1523353694,\"time_settle\":null,\"transaction_no\":\"4200000056201804105837784769\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_qvbD8GqT8OiTW1WnnLK8mzjL\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_nz5ar95qn1aTXb5qnHK4mrLK\",\"pending_webhooks\":0}', '2018041015480135767C1523346494', '0', '0', '', '888883115975317862', '圆通速递', 'YTO', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('31', '5', '10', '31', '2018041015505124760', '18', '13817442209', '崔峰', '北京', '北京市', '东城区', '新骏环路598室', '', '', '116.42188470126', '39.938574012986', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_assessment', '留言啊!。?。', '0', '0', '0', '', '', '2018-04-10 15:50:51', '2018-04-10 15:50:56', '2018-04-11 15:50:51', '2018-04-10 15:50:51', '2018-04-10 15:50:56', '2018-04-10 15:51:18', '2018-04-10 15:51:28', '0000-00-00 00:00:00', '0', '微信', '76561523346651544B1523346651', '{\"id\":\"evt_401180410155056700251103\",\"created\":1523346656,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_80GanLGWTyHCC4qTeH4SeDGS\",\"object\":\"charge\",\"created\":1523346651,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"76561523346651544B1523346651\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0y7SLusNj9IwPqJrktyOeRg\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523346656,\"time_expire\":1523353851,\"time_settle\":null,\"transaction_no\":\"4200000075201804105796602783\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_80GanLGWTyHCC4qTeH4SeDGS\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_eXXD0S58i5eLyTKmXTmXjHSC\",\"pending_webhooks\":0}', '76561523346651544B1523346651', '0', '0', '', '888883115975317862', '圆通速递', 'YTO', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('32', '5', '10', '32', '2018041015570859028', '18', '13817442209', '崔峰', '北京', '北京市', '东城区', '新骏环路598室', '', '', '116.42188470126', '39.938574012986', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '”', '0', '0', '0', '', '', '2018-04-10 15:57:08', '2018-04-10 15:57:15', '2018-04-11 15:57:08', '2018-04-10 15:57:08', '2018-04-10 15:57:15', '2018-04-10 16:04:14', '2018-04-10 19:39:47', '0000-00-00 00:00:00', '0', '微信', '99961523347028426B1523347031', '{\"id\":\"evt_401180410155715699287602\",\"created\":1523347035,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_yzzjfD4m1m9KTeznbTfXHOaL\",\"object\":\"charge\",\"created\":1523347031,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx\",\"order_no\":\"99961523347028426B1523347031\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\",\"open_id\":\"osk6Aw6hReDWyJoRXL_dlXuM-jgw\"},\"time_paid\":1523347035,\"time_expire\":1523354231,\"time_settle\":null,\"transaction_no\":\"4200000095201804105900046103\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_yzzjfD4m1m9KTeznbTfXHOaL\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_18KqP01e5KO8q1OePKOSeX5K\",\"pending_webhooks\":0}', '99961523347028426B1523347031', '0', '0', '', '888883115975317862', '圆通速递', 'YTO', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('33', '5', '6', '33', '2018041015571470651', '16', '17681442898', '孙振华', '上海市', '上海市', '虹口区', '上海', '', '200000', '121.49191854079', '31.282497228987', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-10 15:57:14', '2018-04-10 15:57:27', '2018-04-11 15:57:14', '2018-04-10 15:57:14', '2018-04-10 15:57:27', '2018-04-10 15:59:28', '2018-04-10 15:59:44', '0000-00-00 00:00:00', '0', '支付宝', '94361523347034536B1523347034', '{\"id\":\"evt_401180410155727699292202\",\"created\":1523347046,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_yfvjvHLq1SuHefLSi1L00K4O\",\"object\":\"charge\",\"created\":1523347034,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"94361523347034536B1523347034\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088022688413525\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"176****2898\"},\"time_paid\":1523347046,\"time_expire\":1523433434,\"time_settle\":null,\"transaction_no\":\"2018041021001004520585540558\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_yfvjvHLq1SuHefLSi1L00K4O\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_f9mDmHqnfzrP9KWjnHOGGC0S\",\"pending_webhooks\":0}', '94361523347034536B1523347034', '0', '0', '', '483846967159', '中通速递', 'ZTO', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('34', '5', '10', '34', '2018041015574287449', '18', '13817442209', '崔峰', '北京', '北京市', '东城区', '新骏环路598室', '', '', '116.42188470126', '39.938574012986', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-10 15:57:42', '2018-04-10 16:07:32', '2018-04-11 15:57:42', '2018-04-10 15:57:42', '2018-04-10 16:07:32', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '2018041015574287449C1523347648', '{\"id\":\"evt_401180410160732699497902\",\"created\":1523347652,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_ufj5aDGKKSKOKW9az9ann5mL\",\"object\":\"charge\",\"created\":1523347648,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx\",\"order_no\":\"2018041015574287449C1523347648\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\",\"open_id\":\"osk6Aw6hReDWyJoRXL_dlXuM-jgw\"},\"time_paid\":1523347651,\"time_expire\":1523354848,\"time_settle\":null,\"transaction_no\":\"4200000085201804105856697048\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_ufj5aDGKKSKOKW9az9ann5mL\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_LqfvDOuTyP00O0WHW1HGiDaT\",\"pending_webhooks\":0}', '2018041015574287449C1523347648', '0', '0', '', '', '', '', '2018-04-10', '0', '0');INSERT INTO `th_order_merchants` VALUES ('35', '5', '3', '35', '2018041016005116511', '17', '17681442898', '孙振华', '上海', '上海市', '浦东新区', '上海', '', '', '121.63848131409', '31.230895349134', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-10 16:00:51', '2018-04-10 16:00:59', '2018-04-11 16:00:51', '2018-04-10 16:00:51', '2018-04-10 16:00:59', '2018-04-10 16:01:30', '2018-04-10 16:02:09', '0000-00-00 00:00:00', '0', '微信', '49901523347251467B1523347251', '{\"id\":\"evt_401180410160059700466003\",\"created\":1523347259,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_mPCujTnD8eLCG448WPafjL84\",\"object\":\"charge\",\"created\":1523347251,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"49901523347251467B1523347251\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0-9PQXGx-P5191rsI5gkNno\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523347258,\"time_expire\":1523354451,\"time_settle\":null,\"transaction_no\":\"4200000064201804105844193473\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_mPCujTnD8eLCG448WPafjL84\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_4qLKGGiDy9WTWjvT0O9eLSKO\",\"pending_webhooks\":0}', '49901523347251467B1523347251', '0', '0', '', '483846967159', '中通速递', 'ZTO', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('36', '5', '3', '36', '2018041016014776155', '17', '17681442898', '孙振华', '上海', '上海市', '浦东新区', '上海', '', '', '121.63848131409', '31.230895349134', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-10 16:01:47', '2018-04-10 16:02:03', '2018-04-11 16:01:47', '2018-04-10 16:01:47', '2018-04-10 16:02:03', '2018-04-10 16:03:12', '2018-04-10 16:03:15', '0000-00-00 00:00:00', '0', '微信', '2018041016014776155C1523347317', '{\"id\":\"evt_401180410160203699384702\",\"created\":1523347322,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_488m1SOi1mj50CmnD4Sq50C0\",\"object\":\"charge\",\"created\":1523347318,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"2018041016014776155C1523347317\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0-9PQXGx-P5191rsI5gkNno\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523347322,\"time_expire\":1523354518,\"time_settle\":null,\"transaction_no\":\"4200000065201804105911221403\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_488m1SOi1mj50CmnD4Sq50C0\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_qH4eD4K0WvX5S0qDm1rH4m9S\",\"pending_webhooks\":0}', '2018041016014776155C1523347317', '0', '0', '', '483846967159', '中通速递', 'ZTO', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('37', '5', '14', '37', '2018041016015659661', '19', '17602187583', '崔测试', '上海市', '市辖区', '浦东新区', '新骏环路588', '', '', '121.53152873535', '31.097527129794', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'cancel', '', '0', '0', '0', '', '', '2018-04-10 16:01:56', '0000-00-00 00:00:00', '2018-04-11 16:01:56', '2018-04-10 16:28:21', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '', '', '', '', '0', '0', '', '', '', '', '2018-04-10', '0', '0');INSERT INTO `th_order_merchants` VALUES ('38', '5', '14', '38', '2018041016020251568', '19', '17602187583', '崔测试', '上海市', '市辖区', '浦东新区', '新骏环路588', '', '', '121.53152873535', '31.097527129794', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'cancel', '', '0', '0', '0', '', '', '2018-04-10 16:02:02', '0000-00-00 00:00:00', '2018-04-11 16:02:02', '2018-04-10 16:28:19', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '', '', '', '', '0', '0', '', '', '', '', '2018-04-10', '0', '0');INSERT INTO `th_order_merchants` VALUES ('39', '5', '14', '39', '2018041016020630104', '19', '17602187583', '崔测试', '上海市', '市辖区', '浦东新区', '新骏环路588', '', '', '121.53152873535', '31.097527129794', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'cancel', '', '0', '0', '0', '', '', '2018-04-10 16:02:06', '0000-00-00 00:00:00', '2018-04-11 16:02:06', '2018-04-10 16:28:17', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '', '', '', '', '0', '0', '', '', '', '', '2018-04-10', '0', '0');INSERT INTO `th_order_merchants` VALUES ('40', '5', '14', '40', '2018041016020925088', '19', '17602187583', '崔测试', '上海市', '市辖区', '浦东新区', '新骏环路588', '', '', '121.53152873535', '31.097527129794', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'cancel', '', '0', '0', '0', '', '', '2018-04-10 16:02:09', '0000-00-00 00:00:00', '2018-04-11 16:02:09', '2018-04-10 16:28:16', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '', '', '', '', '0', '0', '', '', '', '', '2018-04-10', '0', '0');INSERT INTO `th_order_merchants` VALUES ('41', '5', '14', '41', '2018041016105742342', '19', '17602187583', '崔测试', '上海市', '市辖区', '浦东新区', '新骏环路588', '', '', '121.53152873535', '31.097527129794', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'cancel', '', '0', '0', '0', '', '', '2018-04-10 16:10:57', '0000-00-00 00:00:00', '2018-04-11 16:10:57', '2018-04-10 16:28:13', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '', '', '', '', '0', '0', '', '', '', '', '2018-04-10', '0', '0');INSERT INTO `th_order_merchants` VALUES ('42', '5', '15', '42', '2018041016451325033', '20', '18088888888', '啦啦啦', '北京', '北京市', '东城区', '地址', '', '12345', '116.42188470126', '39.938574012986', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-10 16:45:13', '2018-04-10 16:45:25', '2018-04-11 16:45:13', '2018-04-10 16:45:13', '2018-04-10 16:45:25', '2018-04-10 16:46:11', '2018-04-10 16:46:21', '0000-00-00 00:00:00', '1', '微信', '37861523349913376B1523349913', '{\"id\":\"evt_401180410164525700410802\",\"created\":1523349925,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_OKmnTKCWvH0Sfj9u5KnfbnD4\",\"object\":\"charge\",\"created\":1523349913,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"37861523349913376B1523349913\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0xdPam1OGYT1HEWNTLmAzsM\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523349925,\"time_expire\":1523357113,\"time_settle\":null,\"transaction_no\":\"4200000080201804105906516608\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_OKmnTKCWvH0Sfj9u5KnfbnD4\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_nH0GC80mDCuHCOm9W1urff1K\",\"pending_webhooks\":0}', '37861523349913376B1523349913', '0', '0', '', '1234567', '安能物流', 'ANE', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('43', '5', '15', '43', '2018041016493555009', '20', '18088888888', '啦啦啦', '北京', '北京市', '东城区', '地址', '', '12345', '116.42188470126', '39.938574012986', '2.00', '2.00', '2.00', '0.00', '20.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-10 16:49:35', '2018-04-10 16:49:42', '2018-04-11 16:49:35', '2018-04-10 16:49:35', '2018-04-10 16:49:42', '2018-04-10 16:50:46', '2018-04-10 16:50:49', '0000-00-00 00:00:00', '0', '微信', '53481523350175704B1523350175', '{\"id\":\"evt_401180410164942701607603\",\"created\":1523350181,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_mP0mX11yjnfHyPmDyDfXnLe1\",\"object\":\"charge\",\"created\":1523350176,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"53481523350175704B1523350175\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0xdPam1OGYT1HEWNTLmAzsM\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523350181,\"time_expire\":1523357376,\"time_settle\":null,\"transaction_no\":\"4200000078201804105912850493\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_mP0mX11yjnfHyPmDyDfXnLe1\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_vnvXjPy500G0jjTWr1ijr14O\",\"pending_webhooks\":0}', '53481523350175704B1523350175', '0', '0', '', '12345678', '加运美', 'JYM', '2018-04-10', '1', '1');INSERT INTO `th_order_merchants` VALUES ('44', '5', '10', '44', '2018041016512693392', '18', '13817442209', '崔峰', '北京', '北京市', '东城区', '新骏环路598室', '', '', '116.42188470126', '39.938574012986', '2.00', '2.00', '2.00', '0.00', '20.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-10 16:51:26', '2018-04-10 16:51:33', '2018-04-11 16:51:26', '2018-04-10 16:51:26', '2018-04-10 16:51:33', '2018-04-10 16:52:36', '2018-04-10 16:52:48', '0000-00-00 00:00:00', '0', '微信', '13971523350286334B1523350287', '{\"id\":\"evt_401180410165132700549002\",\"created\":1523350292,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_98m1qLGirnzHnfXbvTb9ez9S\",\"object\":\"charge\",\"created\":1523350288,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx\",\"order_no\":\"13971523350286334B1523350287\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\",\"open_id\":\"osk6Aw6hReDWyJoRXL_dlXuM-jgw\"},\"time_paid\":1523350292,\"time_expire\":1523357488,\"time_settle\":null,\"transaction_no\":\"4200000097201804105974335057\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_98m1qLGirnzHnfXbvTb9ez9S\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_rvr1G4XfT4OKXbn1KOPSGWr9\",\"pending_webhooks\":0}', '13971523350286334B1523350287', '0', '0', '', '888883115975317862', '圆通速递', 'YTO', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('45', '5', '14', '45', '2018041017453690656', '19', '17602187583', '崔测试', '上海市', '市辖区', '浦东新区', '新骏环路588', '', '', '121.53152873535', '31.097527129794', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-10 17:45:36', '2018-04-10 17:45:56', '2018-04-11 17:45:36', '2018-04-10 17:45:36', '2018-04-10 17:45:56', '2018-04-10 17:51:42', '2018-04-10 18:16:51', '0000-00-00 00:00:00', '1', '微信', '2018041017453690656C1523353552', '{\"id\":\"evt_401180410174556701795202\",\"created\":1523353556,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_bfDWH4nPSOS8aH4aL0LWTmX1\",\"object\":\"charge\",\"created\":1523353552,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"2018041017453690656C1523353552\",\"client_ip\":\"172.16.17.32\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0-<KEY>\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523353555,\"time_expire\":1523360752,\"time_settle\":null,\"transaction_no\":\"4200000078201804105844699584\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_bfDWH4nPSOS8aH4aL0LWTmX1\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_yXnPOKXLKeXH940KeH5yvvfH\",\"pending_webhooks\":0}', '2018041017453690656C1523353552', '0', '0', '', '12324324234324', '全一快递', 'UAPEX', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('46', '5', '15', '46', '2018041017534347812', '20', '18088888888', '啦啦啦', '北京', '北京市', '东城区', '地址', '', '12345', '116.42188470126', '39.938574012986', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-10 17:53:43', '2018-04-10 17:59:13', '2018-04-11 17:53:43', '2018-04-10 17:53:43', '2018-04-10 17:59:13', '2018-04-10 19:44:23', '2018-04-10 19:44:28', '0000-00-00 00:00:00', '1', '微信', '2018041017534347812C1523354345', '{\"id\":\"evt_401180410175913702117802\",\"created\":1523354353,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_4C0OG89qnb5SP8izjTeP0GCS\",\"object\":\"charge\",\"created\":1523354346,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"2018041017534347812C1523354345\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0xdPam1OGYT1HEWNTLmAzsM\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523354353,\"time_expire\":1523361546,\"time_settle\":null,\"transaction_no\":\"4200000059201804105994210243\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_4C0OG89qnb5SP8izjTeP0GCS\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_Giz5qPqPyH0OHaLSKCzrPiLC\",\"pending_webhooks\":0}', '2018041017534347812C1523354345', '0', '0', '', '12345678', '长沙创一', 'CSCY', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('47', '5', '14', '47', '2018041018543410143', '19', '17602187583', '崔测试', '上海市', '市辖区', '浦东新区', '新骏环路588', '', '', '121.53152873535', '31.097527129794', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-10 18:54:34', '2018-04-10 18:54:42', '2018-04-11 18:54:34', '2018-04-10 18:54:34', '2018-04-10 18:54:42', '2018-04-10 18:55:29', '2018-04-10 18:58:37', '0000-00-00 00:00:00', '1', '微信', '73641523357674001B1523357676', '{\"id\":\"evt_401180410185442001167903\",\"created\":1523357682,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_rrXzbPLuP8C45iDOG4TCWTWL\",\"object\":\"charge\",\"created\":1523357676,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx\",\"order_no\":\"73641523357674001B1523357676\",\"client_ip\":\"172.16.17.32\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\",\"open_id\":\"osk6Aw5ip5qiHW-tqZZmuOjewGxk\"},\"time_paid\":1523357681,\"time_expire\":1523364876,\"time_settle\":null,\"transaction_no\":\"4200000096201804105972634316\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_rrXzbPLuP8C45iDOG4TCWTWL\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_rfjT8CL4SSC8mHqTi1DSyzb1\",\"pending_webhooks\":0}', '73641523357674001B1523357676', '0', '0', '', '123232322', '安能物流', 'ANE', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('48', '5', '14', '48', '2018041019304655551', '19', '17602187583', '崔测试', '上海市', '市辖区', '浦东新区', '新骏环路588', '', '', '121.53152873535', '31.097527129794', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '测试结算', '0', '0', '0', '', '', '2018-04-10 19:30:46', '2018-04-10 19:30:50', '2018-04-11 19:30:46', '2018-04-10 19:30:46', '2018-04-10 19:30:50', '2018-04-10 19:31:45', '2018-04-10 19:32:37', '0000-00-00 00:00:00', '1', '微信', '73401523359846224B1523359846', '{\"id\":\"evt_401180410193050001755602\",\"created\":1523359850,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_affDa1uf9488qfrPuDH8GCy5\",\"object\":\"charge\",\"created\":1523359846,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"73401523359846224B1523359846\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0-bZFgRoZTay5veSWQzlicY\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523359850,\"time_expire\":1523367046,\"time_settle\":null,\"transaction_no\":\"4200000054201804106052789799\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_affDa1uf9488qfrPuDH8GCy5\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_ubTmDGXv98iHu948SGm1eXjT\",\"pending_webhooks\":0}', '73401523359846224B1523359846', '0', '0', '', '12345433334', '百世快运', 'BTWL', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('49', '5', '15', '49', '2018041019505093951', '20', '18088888888', '啦啦啦', '北京', '北京市', '东城区', '地址', '', '12345', '116.42188470126', '39.938574012986', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-10 19:50:50', '2018-04-10 19:51:02', '2018-04-11 19:50:50', '2018-04-10 19:50:50', '2018-04-10 19:51:02', '2018-04-10 19:51:27', '2018-04-10 19:51:32', '0000-00-00 00:00:00', '1', '微信', '76081523361050509B1523361050', '{\"id\":\"evt_401180410195102002296602\",\"created\":1523361061,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_O0C8C4mT44SC8SWnvL1O4eP8\",\"object\":\"charge\",\"created\":1523361050,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"76081523361050509B1523361050\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0xdPam1OGYT1HEWNTLmAzsM\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523361061,\"time_expire\":1523368250,\"time_settle\":null,\"transaction_no\":\"4200000052201804106045558057\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_O0C8C4mT44SC8SWnvL1O4eP8\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_qbfPy58y5Si1XLeP4OKyrXfP\",\"pending_webhooks\":0}', '76081523361050509B1523361050', '0', '0', '', '12345678', '北青小红帽', 'BQXHM', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('50', '5', '15', '50', '2018041020110419491', '20', '18088888888', '啦啦啦', '北京', '北京市', '东城区', '地址', '', '12345', '116.42188470126', '39.938574012986', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-10 20:11:04', '2018-04-10 20:11:16', '2018-04-11 20:11:04', '2018-04-10 20:11:04', '2018-04-10 20:11:16', '2018-04-10 20:11:55', '2018-04-10 20:12:03', '0000-00-00 00:00:00', '1', '微信', '93731523362264641B1523362264', '{\"id\":\"evt_401180410201116003369003\",\"created\":1523362276,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_Oqn9a5XTSyHObDuLWDjbfPiP\",\"object\":\"charge\",\"created\":1523362264,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"93731523362264641B1523362264\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0xdPam1OGYT1HEWNTLmAzsM\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523362275,\"time_expire\":1523369464,\"time_settle\":null,\"transaction_no\":\"4200000077201804106083146029\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_Oqn9a5XTSyHObDuLWDjbfPiP\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_Ta1ej9WfzzbPefP800ijDOSC\",\"pending_webhooks\":0}', '93731523362264641B1523362264', '0', '0', '', '123456789', '北青小红帽', 'BQXHM', '2018-04-10', '1', '0');INSERT INTO `th_order_merchants` VALUES ('51', '5', '14', '51', '2018041111265849821', '21', '17602187583', '测试崔萌', '上海', '上海市', '浦东新区', '新骏环路588', '', '', '121.53152873535', '31.097527129794', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '测试售后', '0', '0', '0', '', '', '2018-04-11 11:26:58', '2018-04-11 11:27:02', '2018-04-12 11:26:58', '2018-04-11 11:26:58', '2018-04-11 11:27:02', '2018-04-11 11:37:32', '2018-04-11 12:01:47', '0000-00-00 00:00:00', '0', '微信', '36731523417218266B1523417218', '{\"id\":\"evt_401180411112702016543203\",\"created\":1523417222,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_m9mXD8zrnPSS4ijLWP5GOOOK\",\"object\":\"charge\",\"created\":1523417218,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"36731523417218266B1523417218\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0-bZFgRoZTay5veSWQzlicY\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523417222,\"time_expire\":1523424418,\"time_settle\":null,\"transaction_no\":\"4200000071201804116308440050\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_m9mXD8zrnPSS4ijLWP5GOOOK\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_80urD0i1uLaHm9OCOCf9Wr5G\",\"pending_webhooks\":0}', '36731523417218266B1523417218', '0', '0', '', '1234567', '百世快运', 'BTWL', '2018-04-11', '1', '1');INSERT INTO `th_order_merchants` VALUES ('52', '5', '10', '52', '2018041111522632667', '18', '13817442209', '崔峰', '北京', '北京市', '东城区', '新骏环路598室', '', '', '116.42188470126', '39.938574012986', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_pay', '', '0', '0', '0', '', '', '2018-04-11 11:52:26', '0000-00-00 00:00:00', '2018-04-12 11:52:26', '2018-04-11 11:52:26', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '1', '', '', '', '', '0', '0', '', '', '', '', '2018-04-11', '0', '0');INSERT INTO `th_order_merchants` VALUES ('53', '5', '6', '53', '2018041112361773952', '16', '17681442898', '孙振华', '上海市', '上海市', '虹口区', '上海', '', '200000', '121.49191854079', '31.282497228987', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-11 12:36:17', '2018-04-11 12:36:33', '2018-04-12 12:36:17', '2018-04-11 12:36:17', '2018-04-11 12:36:33', '2018-04-11 12:38:34', '2018-04-11 12:38:42', '0000-00-00 00:00:00', '0', '微信', '44901523421377898B1523421378', '{\"id\":\"evt_401180411123633018027103\",\"created\":1523421392,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_8yPKeHmrDSqHjXvr9OSSmDe1\",\"object\":\"charge\",\"created\":1523421378,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx\",\"order_no\":\"44901523421377898B1523421378\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\",\"open_id\":\"osk6Aw5fuuDz29_B6nlOfzKx7Mmg\"},\"time_paid\":1523421392,\"time_expire\":1523428578,\"time_settle\":null,\"transaction_no\":\"4200000091201804116344744837\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_8yPKeHmrDSqHjXvr9OSSmDe1\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_Cqr18SLKGin5Wbfn5K4uHOaT\",\"pending_webhooks\":0}', '44901523421377898B1523421378', '0', '0', '', '483846967159', '中通速递', 'ZTO', '2018-04-11', '1', '0');INSERT INTO `th_order_merchants` VALUES ('54', '5', '3', '54', '2018041112524497803', '17', '17681442898', '孙振华', '上海', '上海市', '浦东新区', '上海', '', '', '121.63848131409', '31.230895349134', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-11 12:52:44', '2018-04-11 12:52:53', '2018-04-12 12:52:44', '2018-04-11 12:52:44', '2018-04-11 12:52:53', '2018-04-11 12:54:54', '2018-04-11 12:55:01', '0000-00-00 00:00:00', '0', '微信', '48981523422364404B1523422364', '{\"id\":\"evt_401180411125253018422803\",\"created\":1523422372,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_SCKi94vnXvj5bzLuz9eHavrT\",\"object\":\"charge\",\"created\":1523422364,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"48981523422364404B1523422364\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0-9PQXGx-P5191rsI5gkNno\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523422372,\"time_expire\":1523429564,\"time_settle\":null,\"transaction_no\":\"4200000069201804116440873362\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_SCKi94vnXvj5bzLuz9eHavrT\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_nr5anPyDKu98f5mTeHaHCy1S\",\"pending_webhooks\":0}', '48981523422364404B1523422364', '0', '0', '', '483846967159', '中通速递', 'ZTO', '2018-04-11', '1', '0');INSERT INTO `th_order_merchants` VALUES ('55', '5', '14', '55', '2018041114185183433', '21', '17602187583', '测试崔萌', '上海', '上海市', '浦东新区', '新骏环路588', '', '', '121.53152873535', '31.097527129794', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '测试1', '0', '0', '0', '', '', '2018-04-11 14:18:51', '2018-04-11 14:21:04', '2018-04-12 14:18:51', '2018-04-11 14:18:51', '2018-04-11 14:21:04', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '2018041114185183433C1523427654', '{\"id\":\"evt_401180411142104019439002\",\"created\":1523427663,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_4C0WP4y5Sub1Ka9aD05mr9y9\",\"object\":\"charge\",\"created\":1523427654,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx\",\"order_no\":\"2018041114185183433C1523427654\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\",\"open_id\":\"osk6Aw5ip5qiHW-tqZZmuOjewGxk\"},\"time_paid\":1523427663,\"time_expire\":1523434854,\"time_settle\":null,\"transaction_no\":\"4200000098201804116477700197\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_4C0WP4y5Sub1Ka9aD05mr9y9\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_C8WfHCKePOmP0ynTmP0mDqPG\",\"pending_webhooks\":0}', '2018041114185183433C1523427654', '0', '0', '', '', '', '', '2018-04-11', '0', '1');INSERT INTO `th_order_merchants` VALUES ('56', '5', '15', '56', '2018041114285949814', '20', '18088888888', '啦啦啦', '北京', '北京市', '东城区', '地址', '', '12345', '116.42188470126', '39.938574012986', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-11 14:28:59', '2018-04-11 14:29:07', '2018-04-12 14:28:59', '2018-04-11 14:28:59', '2018-04-11 14:29:07', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '74001523428139840B1523428139', '{\"id\":\"evt_401180411142906019596002\",\"created\":1523428146,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_0SmXXDS4y50OjPynnT1OirHS\",\"object\":\"charge\",\"created\":1523428140,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"74001523428139840B1523428139\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0xdPam1OGYT1HEWNTLmAzsM\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523428146,\"time_expire\":1523435340,\"time_settle\":null,\"transaction_no\":\"4200000067201804116467238187\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_0SmXXDS4y50OjPynnT1OirHS\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_qvbbzDqbDuf5zLqfb9rP4SiH\",\"pending_webhooks\":0}', '74001523428139840B1523428139', '0', '0', '', '', '', '', '2018-04-11', '0', '1');INSERT INTO `th_order_merchants` VALUES ('57', '5', '14', '57', '2018041114355536332', '21', '17602187583', '测试崔萌', '上海', '上海市', '浦东新区', '新骏环路588', '', '', '121.53152873535', '31.097527129794', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '测试111', '0', '0', '0', '', '', '2018-04-11 14:35:55', '2018-04-11 14:40:48', '2018-04-12 14:35:55', '2018-04-11 14:35:55', '2018-04-11 14:40:48', '2018-04-11 14:43:48', '2018-04-11 14:44:12', '0000-00-00 00:00:00', '0', '微信', '2018041114355536332C1523428844', '{\"id\":\"evt_401180411144048019830602\",\"created\":1523428848,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_PuTyr9b10Ce9n5C8qDCmrHS0\",\"object\":\"charge\",\"created\":1523428844,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"2018041114355536332C1523428844\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0-bZFgRoZTay5veSWQzlicY\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523428848,\"time_expire\":1523436044,\"time_settle\":null,\"transaction_no\":\"4200000052201804116413954379\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_PuTyr9b10Ce9n5C8qDCmrHS0\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_mjnXbL5anTuPGSWbvHSu98O8\",\"pending_webhooks\":0}', '2018041114355536332C1523428844', '0', '0', '', '12324324234324', '百世快运', 'BTWL', '2018-04-11', '1', '1');INSERT INTO `th_order_merchants` VALUES ('58', '5', '21', '58', '2018041114361524428', '22', '15698697137', '畅', '上海市', '上海市', '闵行区', '新骏环路5880号22 406', '', '200000', '', '', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_receive', '', '0', '0', '0', '', '', '2018-04-11 14:36:15', '2018-04-11 15:21:31', '2018-04-12 14:36:15', '2018-04-11 14:36:15', '2018-04-11 15:21:31', '2018-04-11 15:23:53', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '支付宝', '2018041114361524428C1523431282', '{\"id\":\"evt_401180411152130020669602\",\"created\":1523431290,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_yDqn1GSiLu54L0q9i5S8O4i1\",\"object\":\"charge\",\"created\":1523431282,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"2018041114361524428C1523431282\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088712201939017\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"<EMAIL>\"},\"time_paid\":1523431289,\"time_expire\":1523517682,\"time_settle\":null,\"transaction_no\":\"2018041121001004010538345673\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_yDqn1GSiLu54L0q9i5S8O4i1\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_OCmHiLWPWDGKe5CqPSuL4SmH\",\"pending_webhooks\":0}', '2018041114361524428C1523431282', '0', '0', '', '888883115975317862', '圆通速递', 'YTO', '2018-04-11', '0', '0');INSERT INTO `th_order_merchants` VALUES ('59', '5', '21', '59', '2018041114373150790', '22', '15698697137', '畅', '上海市', '上海市', '闵行区', '新骏环路5880号22 406', '', '200000', '', '', '2.00', '2.00', '2.00', '0.00', '20.00', 'goods', 'wait_assessment', '', '0', '0', '0', '', '', '2018-04-11 14:37:31', '2018-04-11 15:21:07', '2018-04-12 14:37:31', '2018-04-11 14:37:31', '2018-04-11 15:21:07', '2018-04-11 15:22:51', '2018-04-11 15:35:55', '0000-00-00 00:00:00', '0', '支付宝', '2018041114373150790C1523431257', '{\"id\":\"evt_401180411152107021611103\",\"created\":1523431266,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_H8q5OG94eDe9mn9inL9Wv1eH\",\"object\":\"charge\",\"created\":1523431257,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"2018041114373150790C1523431257\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088712201939017\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"<EMAIL>\"},\"time_paid\":1523431266,\"time_expire\":1523517657,\"time_settle\":null,\"transaction_no\":\"2018041121001004010538482000\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_H8q5OG94eDe9mn9inL9Wv1eH\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_KernP4nzTavTHyzzD0bnHWbL\",\"pending_webhooks\":0}', '2018041114373150790C1523431257', '0', '0', '', '888883115975317862', '圆通速递', 'YTO', '2018-04-11', '1', '0');INSERT INTO `th_order_merchants` VALUES ('60', '5', '21', '60', '2018041114402182052', '22', '15698697137', '畅', '上海市', '上海市', '闵行区', '新骏环路5880号22 406', '', '200000', '', '', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_pay', '', '0', '0', '0', '', '', '2018-04-11 14:40:21', '0000-00-00 00:00:00', '2018-04-12 14:40:21', '2018-04-11 14:40:21', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '1', '', '', '', '', '0', '0', '', '', '', '', '2018-04-11', '0', '0');INSERT INTO `th_order_merchants` VALUES ('61', '5', '21', '61', '2018041114403639740', '22', '15698697137', '畅', '上海市', '上海市', '闵行区', '新骏环路5880号22 406', '', '200000', '', '', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-11 14:40:36', '2018-04-11 15:00:03', '2018-04-12 14:40:36', '2018-04-11 14:40:36', '2018-04-11 15:00:03', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '支付宝', '2018041114403639740C1523429994', '{\"id\":\"evt_401180411150003020229602\",\"created\":1523430001,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_008SO4SKKS4S8yrHaHDe5KKG\",\"object\":\"charge\",\"created\":1523429994,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"2018041114403639740C1523429994\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088712201939017\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"<EMAIL>\"},\"time_paid\":1523430001,\"time_expire\":1523516394,\"time_settle\":null,\"transaction_no\":\"2018041121001004010538427779\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_008SO4SKKS4S8yrHaHDe5KKG\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_v100u1SK00a9TCyLG0vDKuH0\",\"pending_webhooks\":0}', '2018041114403639740C1523429994', '0', '0', '', '', '', '', '2018-04-11', '0', '0');INSERT INTO `th_order_merchants` VALUES ('62', '5', '14', '62', '2018041114542566256', '21', '17602187583', '测试崔萌', '上海', '上海市', '浦东新区', '新骏环路588', '', '', '121.53152873535', '31.097527129794', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_assessment', '', '0', '0', '0', '', '', '2018-04-11 14:54:25', '2018-04-11 14:55:00', '2018-04-12 14:54:25', '2018-04-11 14:54:25', '2018-04-11 14:55:00', '2018-04-11 14:55:44', '2018-04-11 14:55:51', '0000-00-00 00:00:00', '0', '微信', '2018041114542566256C1523429695', '{\"id\":\"evt_401180411145459021066303\",\"created\":1523429699,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_L0CSy98OeH08Sin9mTvDOyf1\",\"object\":\"charge\",\"created\":1523429695,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"2018041114542566256C1523429695\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0-bZFgRoZTay5veSWQzlicY\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"Y\"},\"time_paid\":1523429699,\"time_expire\":1523436895,\"time_settle\":null,\"transaction_no\":\"4200000068201804116464609127\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_L0CSy98OeH08Sin9mTvDOyf1\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_mPS4yP9u1mvLzbzHu9C8CeDS\",\"pending_webhooks\":0}', '2018041114542566256C1523429695', '0', '0', '', '12345433334', '百世快运', 'BTWL', '2018-04-11', '1', '1');INSERT INTO `th_order_merchants` VALUES ('63', '5', '10', '63', '2018041114542792460', '18', '13817442209', '崔峰', '北京', '北京市', '东城区', '新骏环路598室', '', '', '116.42188470126', '39.938574012986', '3.00', '3.00', '3.00', '0.00', '30.00', 'goods', 'wait_receive', '', '0', '0', '0', '', '', '2018-04-11 14:54:27', '2018-04-11 14:54:35', '2018-04-12 14:54:27', '2018-04-11 14:54:27', '2018-04-11 14:54:35', '2018-04-11 16:11:19', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '支付宝', '15381523429667474B1523429667', '{\"id\":\"evt_401180411145435021057303\",\"created\":1523429674,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_bzDyTCy9abn54yn1u59qzTaP\",\"object\":\"charge\",\"created\":1523429667,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"15381523429667474B1523429667\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088712201939017\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"<EMAIL>\"},\"time_paid\":1523429674,\"time_expire\":1523516067,\"time_settle\":null,\"transaction_no\":\"2018041121001004010538778851\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_bzDyTCy9abn54yn1u59qzTaP\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_vjrXb18OGu9KDeP8G84urX90\",\"pending_webhooks\":0}', '15381523429667474B1523429667', '0', '0', '', '888883115975317862', '圆通速递', 'YTO', '2018-04-11', '0', '0');INSERT INTO `th_order_merchants` VALUES ('64', '5', '10', '64', '2018041116153952076', '18', '13817442209', '崔峰', '北京', '北京市', '东城区', '新骏环路598室', '', '', '116.42188470126', '39.938574012986', '3.00', '3.00', '3.00', '0.00', '30.00', 'goods', 'wait_assessment', '', '0', '0', '0', '', '', '2018-04-11 16:15:39', '2018-04-11 16:15:47', '2018-04-12 16:15:39', '2018-04-11 16:15:39', '2018-04-11 16:15:47', '2018-04-11 16:17:06', '2018-04-11 16:17:17', '0000-00-00 00:00:00', '0', '支付宝', '54271523434539212B1523434541', '{\"id\":\"evt_401180411161547021774802\",\"created\":1523434546,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_mr1y58ibjznPePCeb1z140y1\",\"object\":\"charge\",\"created\":1523434541,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"54271523434539212B1523434541\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088022997674066\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"138****2209\"},\"time_paid\":1523434546,\"time_expire\":1523520941,\"time_settle\":null,\"transaction_no\":\"2018041121001004060533188194\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_mr1y58ibjznPePCeb1z140y1\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_rXfj58KinXD8vDWDGK5aH4WD\",\"pending_webhooks\":0}', '54271523434539212B1523434541', '0', '0', '', '888883115975317862', '圆通速递', 'YTO', '2018-04-11', '1', '1');INSERT INTO `th_order_merchants` VALUES ('65', '5', '10', '65', '2018041116400535441', '18', '13817442209', '崔峰', '北京', '北京市', '东城区', '新骏环路598室', '', '', '116.42188470126', '39.938574012986', '2.00', '2.00', '2.00', '0.00', '20.00', 'goods', 'wait_assessment', '<EMAIL>', '0', '0', '0', '', '', '2018-04-11 16:40:05', '2018-04-11 16:40:12', '2018-04-12 16:40:05', '2018-04-11 16:40:05', '2018-04-11 16:40:12', '2018-04-11 16:40:45', '2018-04-11 16:41:02', '0000-00-00 00:00:00', '0', '支付宝', '89781523436005715B1523436007', '{\"id\":\"evt_401180411164012023311303\",\"created\":1523436010,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_9mrTCOS4qzrLC4mfP0XH0KS4\",\"object\":\"charge\",\"created\":1523436007,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"89781523436005715B1523436007\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088022997674066\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"138****2209\"},\"time_paid\":1523436010,\"time_expire\":1523522407,\"time_settle\":null,\"transaction_no\":\"2018041121001004060533107770\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_9mrTCOS4qzrLC4mfP0XH0KS4\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_mTCK0SqDSyXH4SuzLG9CK88G\",\"pending_webhooks\":0}', '89781523436005715B1523436007', '0', '0', '', '888883115975317862', '圆通速递', 'YTO', '2018-04-11', '1', '0');INSERT INTO `th_order_merchants` VALUES ('66', '5', '21', '66', '2018041116542498264', '22', '15698697137', '畅', '上海市', '上海市', '闵行区', '新骏环路5880号22 406', '', '200000', '', '', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-11 16:54:24', '2018-04-11 16:54:32', '2018-04-12 16:54:24', '2018-04-11 16:54:24', '2018-04-11 16:54:32', '2018-04-11 16:56:51', '2018-04-11 17:43:47', '0000-00-00 00:00:00', '0', '支付宝', '65451523436864316B1523436864', '{\"id\":\"evt_401180411165431023661303\",\"created\":1523436870,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_OCKG8OuPefn1GaDuHObrDOa1\",\"object\":\"charge\",\"created\":1523436864,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"65451523436864316B1523436864\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088712201939017\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"<EMAIL>\"},\"time_paid\":1523436870,\"time_expire\":1523523264,\"time_settle\":null,\"transaction_no\":\"2018041121001004010538434987\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_OCKG8OuPefn1GaDuHObrDOa1\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_jLSqXPKynn98OGGGyDHCSGaD\",\"pending_webhooks\":0}', '65451523436864316B1523436864', '0', '0', '', '888883115975317862', '圆通速递', 'YTO', '2018-04-11', '1', '0');INSERT INTO `th_order_merchants` VALUES ('67', '5', '21', '67', '2018041118153750142', '22', '15698697137', '畅', '上海市', '上海市', '闵行区', '新骏环路5880号22 406', '', '200000', '', '', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'returns', '', '0', '0', '0', '', '', '2018-04-11 18:15:37', '2018-04-11 18:15:49', '2018-04-12 18:15:37', '2018-04-11 18:15:37', '2018-04-11 18:15:49', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '支付宝', '17071523441737542B1523441737', '{\"id\":\"evt_401180411181549025536903\",\"created\":1523441748,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_DC4mXTCqXLCGDWn9aTLqb5C0\",\"object\":\"charge\",\"created\":1523441740,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"17071523441737542B1523441737\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088712201939017\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"774***<EMAIL>\"},\"time_paid\":1523441748,\"time_expire\":1523528140,\"time_settle\":null,\"transaction_no\":\"2018041121001004010539523774\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_DC4mXTCqXLCGDWn9aTLqb5C0\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_Cejn98P04SaHWLmnDCm9yfXH\",\"pending_webhooks\":0}', '17071523441737542B1523441737', '0', '0', '', '', '', '', '2018-04-11', '0', '0');INSERT INTO `th_order_merchants` VALUES ('68', '5', '3', '68', '2018041209100824596', '17', '17681442898', '孙振华', '上海', '上海市', '浦东新区', '上海', '', '', '121.63848131409', '31.230895349134', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-12 09:10:08', '2018-04-12 09:10:15', '2018-04-13 09:10:08', '2018-04-12 09:10:08', '2018-04-12 09:10:15', '2018-04-12 09:15:43', '2018-04-12 09:18:28', '0000-00-00 00:00:00', '0', '支付宝', '75621523495408248B1523495408', '{\"id\":\"evt_401180412091015039367003\",\"created\":1523495414,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_jHqLmDuf1yf9De98K0jDaffT\",\"object\":\"charge\",\"created\":1523495408,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"75621523495408248B1523495408\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088022688413525\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"176****2898\"},\"time_paid\":1523495414,\"time_expire\":1523581808,\"time_settle\":null,\"transaction_no\":\"2018041221001004520592652812\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_jHqLmDuf1yf9De98K0jDaffT\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_XXTWjD4GSKSCvXfXTS5yjX54\",\"pending_webhooks\":0}', '75621523495408248B1523495408', '0', '0', '', '483846967159', '中通速递', 'ZTO', '2018-04-12', '1', '0');INSERT INTO `th_order_merchants` VALUES ('69', '5', '6', '69', '2018041209105361546', '16', '17681442898', '孙振华', '上海市', '上海市', '虹口区', '上海', '', '200000', '121.49191854079', '31.282497228987', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-12 09:10:53', '2018-04-12 09:11:00', '2018-04-13 09:10:53', '2018-04-12 09:10:53', '2018-04-12 09:11:00', '2018-04-12 09:15:29', '2018-04-12 09:17:22', '0000-00-00 00:00:00', '0', '支付宝', '62351523495453358B1523495453', '{\"id\":\"evt_401180412091100039375903\",\"created\":1523495459,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_X5GWLGWnLujHm90uzHSKKOWL\",\"object\":\"charge\",\"created\":1523495453,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"62351523495453358B1523495453\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088022688413525\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"176****2898\"},\"time_paid\":1523495458,\"time_expire\":1523581853,\"time_settle\":null,\"transaction_no\":\"2018041221001004520591627291\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_X5GWLGWnLujHm90uzHSKKOWL\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_XXPGWPGyH0KSHW18a9f5yzL0\",\"pending_webhooks\":0}', '62351523495453358B1523495453', '0', '0', '', '483846967159', '中通速递', 'ZTO', '2018-04-12', '1', '0');INSERT INTO `th_order_merchants` VALUES ('70', '5', '6', '70', '2018041209121284722', '16', '17681442898', '孙振华', '上海市', '上海市', '虹口区', '上海', '', '200000', '121.49191854079', '31.282497228987', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-12 09:12:12', '2018-04-12 09:12:19', '2018-04-13 09:12:12', '2018-04-12 09:12:12', '2018-04-12 09:12:19', '2018-04-12 09:15:13', '2018-04-12 09:17:20', '0000-00-00 00:00:00', '0', '支付宝', '36501523495532342B1523495532', '{\"id\":\"evt_401180412091219037891002\",\"created\":1523495538,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_TuDy5KWT40iLiTuXH8vfTqP0\",\"object\":\"charge\",\"created\":1523495532,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"36501523495532342B1523495532\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088022688413525\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"176****2898\"},\"time_paid\":1523495538,\"time_expire\":1523581932,\"time_settle\":null,\"transaction_no\":\"2018041221001004520591612641\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_TuDy5KWT40iLiTuXH8vfTqP0\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_5KG0eLK88OG4fjffHKXXzXfT\",\"pending_webhooks\":0}', '36501523495532342B1523495532', '0', '0', '', '483846967159', '中通速递', 'ZTO', '2018-04-12', '1', '0');INSERT INTO `th_order_merchants` VALUES ('71', '5', '15', '71', '2018041210551626933', '20', '18088888888', '啦啦啦', '北京', '北京市', '东城区', '地址', '', '12345', '116.42188470126', '39.938574012986', '3.00', '3.00', '3.00', '0.00', '30.00', 'goods', 'returns', '留言', '0', '0', '0', '', '', '2018-04-12 10:55:16', '2018-04-12 10:55:33', '2018-04-13 10:55:16', '2018-04-12 10:55:16', '2018-04-12 10:55:33', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '支付宝', '31641523501716727B1523501716', '{\"id\":\"evt_401180412105533039524402\",\"created\":1523501732,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_abXHu1DOKSa90afzXPCmXvTK\",\"object\":\"charge\",\"created\":1523501717,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"31641523501716727B1523501716\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088112220396491\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"<EMAIL>\"},\"time_paid\":1523501731,\"time_expire\":1523588117,\"time_settle\":null,\"transaction_no\":\"2018041221001004490552642866\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_abXHu1DOKSa90afzXPCmXvTK\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_rXX98OTCWD4SOSyPm9ibDy1G\",\"pending_webhooks\":0}', '31641523501716727B1523501716', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('72', '5', '3', '72', '2018041211065052714', '17', '17681442898', '孙振华', '上海', '上海市', '浦东新区', '上海', '', '', '121.63848131409', '31.230895349134', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'returns', '', '0', '0', '0', '', '', '2018-04-12 11:06:50', '2018-04-12 11:07:00', '2018-04-13 11:06:50', '2018-04-12 11:06:50', '2018-04-12 11:07:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '支付宝', '11451523502410255B1523502410', '{\"id\":\"evt_401180412110700039732602\",\"created\":1523502419,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_HCCyr1qPKqz9KGS04810mr58\",\"object\":\"charge\",\"created\":1523502410,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"11451523502410255B1523502410\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088022688413525\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"176****2898\"},\"time_paid\":1523502419,\"time_expire\":1523588810,\"time_settle\":null,\"transaction_no\":\"2018041221001004520593073449\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_HCCyr1qPKqz9KGS04810mr58\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_mnnrjD5urv9890WnP0PyHqHG\",\"pending_webhooks\":0}', '11451523502410255B1523502410', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('73', '5', '3', '73', '2018041211080465327', '17', '17681442898', '孙振华', '上海', '上海市', '浦东新区', '上海', '', '', '121.63848131409', '31.230895349134', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 11:08:04', '2018-04-12 11:08:12', '2018-04-13 11:08:04', '2018-04-12 11:08:04', '2018-04-12 11:08:12', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '支付宝', '71551523502484808B1523502484', '{\"id\":\"evt_401180412110812041298503\",\"created\":1523502491,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_PmnHy9TeTGi5aHO0CC00qHK0\",\"object\":\"charge\",\"created\":1523502485,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"71551523502484808B1523502484\",\"client_ip\":\"140.206.63.66\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088022688413525\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"176****2898\"},\"time_paid\":1523502490,\"time_expire\":1523588885,\"time_settle\":null,\"transaction_no\":\"2018041221001004520593125491\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_PmnHy9TeTGi5aHO0CC00qHK0\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_1WzLyDXzPyL0OOq98Su9qDS8\",\"pending_webhooks\":0}', '71551523502484808B1523502484', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('74', '5', '15', '74', '2018041211170317368', '20', '18088888888', '啦啦啦', '北京', '北京市', '东城区', '地址', '', '12345', '116.42188470126', '39.938574012986', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'cancel', '', '0', '0', '0', '', '', '2018-04-12 11:17:03', '0000-00-00 00:00:00', '2018-04-13 11:17:03', '2018-04-12 11:17:38', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '', '', '', '', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('75', '5', '34', '75', '2018041211265243109', '23', '13761144013', '<NAME>', '上海市', '上海市', '嘉定区', '秋竹路802弄7号楼201', '', '', '121.22614758986', '31.389650376474', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 11:26:52', '2018-04-12 11:27:15', '2018-04-13 11:26:52', '2018-04-12 11:26:52', '2018-04-12 11:27:15', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '10451523503612278B1523503615', '{\"id\":\"evt_401180412112715040099502\",\"created\":1523503635,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_r5Si5GyDqrD4LK4G4SXPK4mH\",\"object\":\"charge\",\"created\":1523503616,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx\",\"order_no\":\"10451523503612278B1523503615\",\"client_ip\":\"172.16.58.3\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\",\"open_id\":\"osk6Aw1sddB0sUw-KVdfBy7M2Hvg\"},\"time_paid\":1523503635,\"time_expire\":1523510816,\"time_settle\":null,\"transaction_no\":\"4200000084201804126924920153\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_r5Si5GyDqrD4LK4G4SXPK4mH\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_4CyLSS8WzLOSXrf5m5fbrLKC\",\"pending_webhooks\":0}', '10451523503612278B1523503615', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('76', '5', '35', '76', '2018041211403351414', '24', '13807066712', '全青霞', '江西省', '南昌市', '青云谱区', '迎宾北大道285号华山生殖医院', '', '', '115.91374814864', '28.6351740299', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 11:40:33', '2018-04-12 11:40:56', '2018-04-13 11:40:33', '2018-04-12 11:40:33', '2018-04-12 11:40:56', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '82651523504433219B1523504433', '{\"id\":\"evt_401180412114056040383002\",\"created\":1523504456,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_KK8evHePyfL4eHirj94mDOKS\",\"object\":\"charge\",\"created\":1523504433,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"82651523504433219B1523504433\",\"client_ip\":\"192.168.127.12\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx04wCa9HMMr96OMKu8UrJTzE\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523504455,\"time_expire\":1523511633,\"time_settle\":null,\"transaction_no\":\"4200000066201804127114511080\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_KK8evHePyfL4eHirj94mDOKS\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_rfb5GOzTi9CSzTmDCCy1SG08\",\"pending_webhooks\":0}', '82651523504433219B1523504433', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('77', '5', '36', '77', '2018041211443166144', '25', '15801740713', '陈佳', '上海', '上海市', '嘉定区', '平城路2055弄嘉宝梦之湾24号楼1402', '', '201800', '121.23191355511', '31.38914040595', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 11:44:31', '2018-04-12 11:44:37', '2018-04-13 11:44:31', '2018-04-12 11:44:31', '2018-04-12 11:44:37', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '80771523504671642B1523504671', '{\"id\":\"evt_401180412114437040455802\",\"created\":1523504677,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_LOyDKSyjH0SCOGenX5eLyLy1\",\"object\":\"charge\",\"created\":1523504671,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"80771523504671642B1523504671\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx08VcQbjg3f2LnZstlUCBYQ8\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523504677,\"time_expire\":1523511871,\"time_settle\":null,\"transaction_no\":\"4200000069201804127072469396\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_LOyDKSyjH0SCOGenX5eLyLy1\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_jT8Ky5KCWnr15qzzTSDKGKeT\",\"pending_webhooks\":0}', '80771523504671642B1523504671', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('78', '5', '37', '78', '2018041211444410640', '26', '18602167122', '赵美玲', '上海', '上海市', '嘉定区', '秋竹路802弄48#201室', '', '200000', '121.22604912749', '31.39032128067', '5.00', '5.00', '5.00', '0.00', '50.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 11:44:44', '2018-04-12 11:44:51', '2018-04-13 11:44:44', '2018-04-12 11:44:44', '2018-04-12 11:44:51', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '61831523504684332B1523504684', '{\"id\":\"evt_401180412114450042027003\",\"created\":1523504690,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_0ibLKSvLSS8KXfvLaHOKK440\",\"object\":\"charge\",\"created\":1523504684,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"61831523504684332B1523504684\",\"client_ip\":\"192.168.127.12\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx00DGCV6cc4VvKbRRmOGbCYE\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523504690,\"time_expire\":1523511884,\"time_settle\":null,\"transaction_no\":\"4200000058201804127043688599\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_0ibLKSvLSS8KXfvLaHOKK440\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_K00Cm1POmfT4vPaH80bHWXv9\",\"pending_webhooks\":0}', '61831523504684332B1523504684', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('79', '5', '40', '79', '2018041211510218583', '27', '13671589179', '周桢', '上海', '上海市', '徐汇区', '漕宝路82号E座1803', '', '', '121.43464654269', '31.173116906544', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 11:51:02', '2018-04-12 11:51:08', '2018-04-13 11:51:02', '2018-04-12 11:51:02', '2018-04-12 11:51:08', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '64001523505062575B1523505062', '{\"id\":\"evt_401180412115108040584402\",\"created\":1523505068,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_TC8uz1yHqzvDrzXjrTrLK4eT\",\"object\":\"charge\",\"created\":1523505062,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"64001523505062575B1523505062\",\"client_ip\":\"172.16.58.3\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0wkbO37hNtHsV<KEY>\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523505068,\"time_expire\":1523512262,\"time_settle\":null,\"transaction_no\":\"4200000075201804127059309419\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_TC8uz1yHqzvDrzXjrTrLK4eT\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_vvb9ePCCqDePOiHGWTaHiHuH\",\"pending_webhooks\":0}', '64001523505062575B1523505062', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('80', '5', '35', '80', '2018041211511273254', '24', '13807066712', '全青霞', '江西省', '南昌市', '青云谱区', '迎宾北大道285号华山生殖医院', '', '', '115.91374814864', '28.6351740299', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 11:51:12', '2018-04-12 11:51:19', '2018-04-13 11:51:12', '2018-04-12 11:51:12', '2018-04-12 11:51:19', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '29441523505072283B1523505072', '{\"id\":\"evt_401180412115119040587902\",\"created\":1523505079,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_OSGWbH9OizX9DGCa1G48yj14\",\"object\":\"charge\",\"created\":1523505072,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"29441523505072283B1523505072\",\"client_ip\":\"192.168.127.12\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx04wCa9HMMr96OMKu8UrJTzE\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523505079,\"time_expire\":1523512272,\"time_settle\":null,\"transaction_no\":\"4200000057201804127060269383\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_OSGWbH9OizX9DGCa1G48yj14\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_mzjHqLKOKm5KbvPWv58a14i1\",\"pending_webhooks\":0}', '29441523505072283B1523505072', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('81', '5', '43', '81', '2018041211563337329', '28', '13699566475', '陈荔珍', '江西省', '南昌市', '青云谱区', '迎宾北大道285号华山生殖医院', '', '', '115.91374814864', '28.6351740299', '2.00', '2.00', '2.00', '0.00', '20.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 11:56:33', '2018-04-12 11:56:46', '2018-04-13 11:56:33', '2018-04-12 11:56:33', '2018-04-12 11:56:46', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '90831523505393729B1523505393', '{\"id\":\"evt_401180412115646042270203\",\"created\":1523505406,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_98ez1KvPCurHXfXbjPbD4yr5\",\"object\":\"charge\",\"created\":1523505394,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"90831523505393729B1523505393\",\"client_ip\":\"172.16.58.3\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0yjlN1lVAL1dTxWvoIw1lTY\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523505406,\"time_expire\":1523512594,\"time_settle\":null,\"transaction_no\":\"4200000067201804126766290012\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_98ez1KvPCurHXfXbjPbD4yr5\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_5S08y5Hm5u18qzXvzTy9ajXP\",\"pending_webhooks\":0}', '90831523505393729B1523505393', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('82', '5', '46', '82', '2018041212011020869', '29', '15598282290', '万志芳', '内蒙古自治区', '呼和浩特市', '回民区', '内蒙古自冶区,呼和浩特市回民区新民街,星月斋旁', '', '010030', '111.66817785661', '40.811708232701', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:01:10', '2018-04-12 12:01:18', '2018-04-13 12:01:10', '2018-04-12 12:01:10', '2018-04-12 12:01:18', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '21681523505670743B1523505671', '{\"id\":\"evt_401180412120118040793602\",\"created\":1523505678,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_9KqbrLDSyL04mnLK8OTOKmzT\",\"object\":\"charge\",\"created\":1523505671,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"21681523505670743B1523505671\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx01z96bJLNimrDQn6DqexutA\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523505677,\"time_expire\":1523512871,\"time_settle\":null,\"transaction_no\":\"4200000075201804126989269959\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_9KqbrLDSyL04mnLK8OTOKmzT\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_vrDqvPzL0iH4G8C8W5mnLOeL\",\"pending_webhooks\":0}', '21681523505670743B1523505671', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('83', '5', '48', '83', '2018041212015744438', '30', '13817563383', '陈静', '上海', '上海市', '嘉定区', '平城路2055弄20号101', '', '2000000', '121.23191355511', '31.38914040595', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:01:57', '2018-04-12 12:02:05', '2018-04-13 12:01:57', '2018-04-12 12:01:57', '2018-04-12 12:02:05', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '72191523505717914B1523505718', '{\"id\":\"evt_401180412120204042386603\",\"created\":1523505724,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_HGqDW9vnfTK8nP0av1DeDCK8\",\"object\":\"charge\",\"created\":1523505718,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"72191523505717914B1523505718\",\"client_ip\":\"192.168.127.12\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0wSrBllB6ctNwBNBC9H_lqo\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523505723,\"time_expire\":1523512918,\"time_settle\":null,\"transaction_no\":\"4200000056201804126987710000\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_HGqDW9vnfTK8nP0av1DeDCK8\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_SOSe5G4uT8S0Ky5yT0XzzzH8\",\"pending_webhooks\":0}', '72191523505717914B1523505718', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('84', '5', '50', '84', '2018041212024780641', '31', '13117814951', '梁虹', '江西省', '南昌市', '青云谱区', '迎宾北大道285号', '', '', '115.91374814864', '28.6351740299', '2.00', '2.00', '2.00', '0.00', '20.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:02:47', '2018-04-12 12:02:55', '2018-04-13 12:02:47', '2018-04-12 12:02:47', '2018-04-12 12:02:55', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '47291523505767404B1523505767', '{\"id\":\"evt_401180412120255042405703\",\"created\":1523505775,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_GCCK08vrDWn1jbvnbL0yz58S\",\"object\":\"charge\",\"created\":1523505768,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"47291523505767404B1523505767\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx02zuvbHcOQfZWVQdMoFAUZ4\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523505775,\"time_expire\":1523512968,\"time_settle\":null,\"transaction_no\":\"4200000064201804126626115734\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_GCCK08vrDWn1jbvnbL0yz58S\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_TGer90vHOuv9aXfv1OvHSuzL\",\"pending_webhooks\":0}', '47291523505767404B1523505767', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('85', '5', '46', '85', '2018041212031144386', '29', '15598282290', '万志芳', '内蒙古自治区', '呼和浩特市', '回民区', '内蒙古自冶区,呼和浩特市回民区新民街,星月斋旁', '', '010030', '111.66817785661', '40.811708232701', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:03:11', '2018-04-12 12:03:18', '2018-04-13 12:03:11', '2018-04-12 12:03:11', '2018-04-12 12:03:18', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '18741523505791636B1523505791', '{\"id\":\"evt_401180412120317040836602\",\"created\":1523505797,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_evbbTKPe1uzPmHmX5804y5m1\",\"object\":\"charge\",\"created\":1523505791,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"18741523505791636B1523505791\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx01z96bJLNimrDQn6DqexutA\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523505797,\"time_expire\":1523512991,\"time_settle\":null,\"transaction_no\":\"4200000055201804126957656614\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_evbbTKPe1uzPmHmX5804y5m1\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_DWvf5OSavLaPWz9m9ODOuXvH\",\"pending_webhooks\":0}', '18741523505791636B1523505791', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('86', '5', '49', '86', '2018041212035950219', '32', '15107179099', '王炎平', '湖北省', '武汉市', '硚口区', '解放大道35号 武汉送子鸟医院 最后一栋2楼', '', '', '', '', '2.00', '2.00', '2.00', '0.00', '20.00', 'goods', 'wait_pay', '', '0', '0', '0', '', '', '2018-04-12 12:03:59', '0000-00-00 00:00:00', '2018-04-13 12:03:59', '2018-04-12 12:03:59', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '1', '', '', '', '', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('87', '5', '51', '87', '2018041212041051052', '33', '18034466162', '金墨', '河北省', '廊坊市', '三河市', '燕郊经济开发区美林新东城4-3-401', '', '', '116.78251539728', '39.995076857692', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:04:10', '2018-04-12 12:04:23', '2018-04-13 12:04:10', '2018-04-12 12:04:10', '2018-04-12 12:04:23', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '23571523505850271B1523505850', '{\"id\":\"evt_401180412120422040862302\",\"created\":1523505862,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_O8OGqHXHOqLG5SGiLOLGaTKG\",\"object\":\"charge\",\"created\":1523505850,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"23571523505850271B1523505850\",\"client_ip\":\"172.16.17.32\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0_YEffjvnxOay4n0tnDqdFY\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523505862,\"time_expire\":1523513050,\"time_settle\":null,\"transaction_no\":\"4200000056201804127099733511\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_O8OGqHXHOqLG5SGiLOLGaTKG\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_PWLKeLCy1ajDXzn9aLGW5i1S\",\"pending_webhooks\":0}', '23571523505850271B1523505850', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('88', '5', '49', '88', '2018041212044567330', '32', '15107179099', '王炎平', '湖北省', '武汉市', '硚口区', '解放大道35号 武汉送子鸟医院 最后一栋2楼', '', '', '', '', '5.00', '5.00', '5.00', '0.00', '50.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:04:45', '2018-04-12 12:04:52', '2018-04-13 12:04:45', '2018-04-12 12:04:45', '2018-04-12 12:04:52', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '47251523505885176B1523505885', '{\"id\":\"evt_401180412120452040875102\",\"created\":1523505892,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_8SC8m11avT4SKCy5KKqfzH4G\",\"object\":\"charge\",\"created\":1523505885,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"47251523505885176B1523505885\",\"client_ip\":\"192.168.127.12\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx00_bmIGFCw_hlBaParCkRjA\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523505892,\"time_expire\":1523513085,\"time_settle\":null,\"transaction_no\":\"4200000078201804126990882693\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_8SC8m11avT4SKCy5KKqfzH4G\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_1ynL8CWHKGO04GOOCKqPi98K\",\"pending_webhooks\":0}', '47251523505885176B1523505885', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('89', '5', '52', '89', '2018041212054450658', '34', '13774498933', '周建国', '江苏省', '苏州市', '昆山市', '陆家春江佳苑南苑32栋204', '', '215300', '121.03178664165', '31.321155684933', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:05:44', '2018-04-12 12:05:53', '2018-04-13 12:05:44', '2018-04-12 12:05:44', '2018-04-12 12:05:53', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '61591523505944859B1523505944', '{\"id\":\"evt_401180412120553040898302\",\"created\":1523505953,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_qrD48Cf1mbjLrnPaHKT8anb5\",\"object\":\"charge\",\"created\":1523505945,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"61591523505944859B1523505944\",\"client_ip\":\"192.168.127.12\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx003J4RPIBjpVUbCg6zYO46Y\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523505952,\"time_expire\":1523513145,\"time_settle\":null,\"transaction_no\":\"4200000057201804127071654845\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_qrD48Cf1mbjLrnPaHKT8anb5\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_bzfvnDWv5yb91CiDq9b1GirH\",\"pending_webhooks\":0}', '61591523505944859B1523505944', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('90', '5', '44', '90', '2018041212065436500', '35', '18702612953', '敖玲雅', '江西省', '抚州市', '南城县', '建昌大道山水景园小区', '', '344000', '116.64562061076', '27.5665856971', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:06:54', '2018-04-12 12:07:32', '2018-04-13 12:06:54', '2018-04-12 12:06:54', '2018-04-12 12:07:32', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '2018041212065436500C1523506027', '{\"id\":\"evt_401180412120732042520203\",\"created\":1523506052,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_fvrXfPq1y5GSevPe14P4yXTC\",\"object\":\"charge\",\"created\":1523506027,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"2018041212065436500C1523506027\",\"client_ip\":\"172.16.58.3\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx01B4R-f-iKb-2BWD4xmtbCo\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523506052,\"time_expire\":1523513227,\"time_settle\":null,\"transaction_no\":\"4200000052201804126760407315\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_fvrXfPq1y5GSevPe14P4yXTC\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_v5qvT0m9eX1OXP0uHCrXHy9S\",\"pending_webhooks\":0}', '2018041212065436500C1523506027', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('91', '5', '41', '91', '2018041212071441003', '36', '18721862591', '何露', '上海', '上海市', '闵行区', '华曹镇王泥浜王家厍34号', '', '201100', '121.31857663327', '31.228723297971', '2.00', '2.00', '2.00', '0.00', '20.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:07:14', '2018-04-12 12:07:24', '2018-04-13 12:07:14', '2018-04-12 12:07:14', '2018-04-12 12:07:24', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '13811523506034424B1523506034', '{\"id\":\"evt_401180412120724042516503\",\"created\":1523506044,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_rbTuH4Harj1SyP0WbTnbTmz5\",\"object\":\"charge\",\"created\":1523506034,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"13811523506034424B1523506034\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0_Ls7thzfSJoOZrhgsvd0uo\",\"bank_type\":\"CCB_DEBIT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523506043,\"time_expire\":1523513234,\"time_settle\":null,\"transaction_no\":\"4200000057201804127134523110\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_rbTuH4Harj1SyP0WbTnbTmz5\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_DqjPG8DGqPC8uHCK8CePGSiP\",\"pending_webhooks\":0}', '13811523506034424B1523506034', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('92', '5', '35', '92', '2018041212074887220', '24', '13807066712', '全青霞', '江西省', '南昌市', '青云谱区', '迎宾北大道285号华山生殖医院', '', '', '115.91374814864', '28.6351740299', '3.00', '3.00', '3.00', '0.00', '30.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:07:48', '2018-04-12 12:07:56', '2018-04-13 12:07:48', '2018-04-12 12:07:48', '2018-04-12 12:07:56', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '87781523506068696B1523506068', '{\"id\":\"evt_401180412120756040949602\",\"created\":1523506076,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_KKKqLSHS8i140KeD44mz9OmP\",\"object\":\"charge\",\"created\":1523506069,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"87781523506068696B1523506068\",\"client_ip\":\"192.168.127.12\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx04wCa9HMMr96OMKu8UrJTzE\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523506075,\"time_expire\":1523513269,\"time_settle\":null,\"transaction_no\":\"4200000066201804127110391649\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_KKKqLSHS8i140KeD44mz9OmP\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_zTOCCCLKyb9Gv9KqPOK0OezT\",\"pending_webhooks\":0}', '87781523506068696B1523506068', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('93', '5', '53', '93', '2018041212100761985', '37', '15598282290', '全员萍', '内蒙古自治区', '呼和浩特市', '回民区', '内蒙古自治区呼和浩特市回民区新民街,星月斋旁', '', '010030', '111.66817785661', '40.811708232701', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:10:07', '2018-04-12 12:10:14', '2018-04-13 12:10:07', '2018-04-12 12:10:07', '2018-04-12 12:10:14', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '40571523506207504B1523506207', '{\"id\":\"evt_401180412121014041007102\",\"created\":1523506214,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_j1a94SCinXLSTWnDW9errXfD\",\"object\":\"charge\",\"created\":1523506207,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"40571523506207504B1523506207\",\"client_ip\":\"192.168.127.12\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx08LI1LtdgO-tOly_orPiXD0\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523506214,\"time_expire\":1523513407,\"time_settle\":null,\"transaction_no\":\"4200000053201804127033371476\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_j1a94SCinXLSTWnDW9errXfD\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_nTaTqT84irP0fjrP4GOuDGOK\",\"pending_webhooks\":0}', '40571523506207504B1523506207', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('94', '5', '54', '94', '2018041212102074738', '38', '13517945925', '万露芳', '浙江省', '杭州市', '江干区', '下沙街道头格月雅城11幢', '', '', '120.30912628702', '30.309011509383', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:10:20', '2018-04-12 12:10:41', '2018-04-13 12:10:20', '2018-04-12 12:10:20', '2018-04-12 12:10:41', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '2018041212102074738C1523506232', '{\"id\":\"evt_401180412121041042601303\",\"created\":1523506241,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_SmXjLOC8uLqLrj1OKKS8iL0C\",\"object\":\"charge\",\"created\":1523506233,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"2018041212102074738C1523506232\",\"client_ip\":\"172.16.58.3\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx08FF3zrIfi0si96-47Blxt4\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523506241,\"time_expire\":1523513433,\"time_settle\":null,\"transaction_no\":\"4200000080201804127079997207\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_SmXjLOC8uLqLrj1OKKS8iL0C\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_a94iHGmHWbnPyfzrvT5KaDi5\",\"pending_webhooks\":0}', '2018041212102074738C1523506232', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('95', '5', '55', '95', '2018041212103229815', '39', '15000572746', '李文睿', '上海', '上海市', '嘉定区', '秋竹路802弄7/701', '', '', '121.22708600022', '31.388934403423', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:10:32', '2018-04-12 12:10:41', '2018-04-13 12:10:32', '2018-04-12 12:10:32', '2018-04-12 12:10:41', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '52441523506232683B1523506232', '{\"id\":\"evt_401180412121041041017702\",\"created\":1523506241,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_bDabvTznXz54mH4G00Ci9G8O\",\"object\":\"charge\",\"created\":1523506232,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"52441523506232683B1523506232\",\"client_ip\":\"192.168.127.12\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx03_5_LKdlOYL-PVMQneuh-Y\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523506240,\"time_expire\":1523513432,\"time_settle\":null,\"transaction_no\":\"4200000077201804127035678607\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_bDabvTznXz54mH4G00Ci9G8O\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_9mfDa9W1uH8CLSGe5CDSCmf1\",\"pending_webhooks\":0}', '52441523506232683B1523506232', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('96', '5', '46', '96', '2018041212152655929', '29', '15598282290', '万志芳', '内蒙古自治区', '呼和浩特市', '回民区', '内蒙古自冶区,呼和浩特市回民区新民街,星月斋旁', '', '010030', '111.66817785661', '40.811708232701', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:15:26', '2018-04-12 12:15:32', '2018-04-13 12:15:26', '2018-04-12 12:15:26', '2018-04-12 12:15:32', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '64721523506526201B1523506526', '{\"id\":\"evt_401180412121532042744103\",\"created\":1523506532,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_TCKGWP1eDWPGLW1WTGqj9GKS\",\"object\":\"charge\",\"created\":1523506526,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"64721523506526201B1523506526\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx01z96bJLNimrDQn6DqexutA\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523506531,\"time_expire\":1523513726,\"time_settle\":null,\"transaction_no\":\"4200000076201804126767191384\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_TCKGWP1eDWPGLW1WTGqj9GKS\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_jDivjPWLOaPSK0azDCWnXPS4\",\"pending_webhooks\":0}', '64721523506526201B1523506526', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('97', '5', '46', '97', '2018041212155522953', '29', '15598282290', '万志芳', '内蒙古自治区', '呼和浩特市', '回民区', '内蒙古自冶区,呼和浩特市回民区新民街,星月斋旁', '', '010030', '111.66817785661', '40.811708232701', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:15:55', '2018-04-12 12:16:01', '2018-04-13 12:15:55', '2018-04-12 12:15:55', '2018-04-12 12:16:01', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '65021523506555682B1523506555', '{\"id\":\"evt_401180412121601042757403\",\"created\":1523506561,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_DaDeL4D48iz5n1GyXP40WzzL\",\"object\":\"charge\",\"created\":1523506555,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"65021523506555682B1523506555\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx01z96bJLNimrDQn6DqexutA\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523506561,\"time_expire\":1523513755,\"time_settle\":null,\"transaction_no\":\"4200000064201804126984924130\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_DaDeL4D48iz5n1GyXP40WzzL\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_zTaHuP5aDOGG8G88a91efP8O\",\"pending_webhooks\":0}', '65021523506555682B1523506555', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('98', '5', '57', '98', '2018041212192715406', '40', '18301905075', '阙兰兰', '上海', '上海市', '嘉定区', '802弄48号1804室', '', '', '121.25101353756', '31.364338055434', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:19:27', '2018-04-12 12:19:33', '2018-04-13 12:19:27', '2018-04-12 12:19:27', '2018-04-12 12:19:33', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '87091523506767416B1523506767', '{\"id\":\"evt_401180412121933041250102\",\"created\":1523506773,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_Oqjbn1WHGyLGLuf9mL9W9KiD\",\"object\":\"charge\",\"created\":1523506767,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"87091523506767416B1523506767\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx068m2ew1FudbidU3DeUch5U\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523506772,\"time_expire\":1523513967,\"time_settle\":null,\"transaction_no\":\"4200000051201804126996970803\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_Oqjbn1WHGyLGLuf9mL9W9KiD\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_W5inD0iH8ijDCaXnvT4az94K\",\"pending_webhooks\":0}', '87091523506767416B1523506767', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('99', '5', '61', '99', '2018041212222812254', '41', '13564729610', '佘存霞', '上海', '上海市', '嘉定区', '秋竹路655弄12号1402室', '', '201800', '121.22648084773', '31.388462226834', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:22:28', '2018-04-12 12:22:36', '2018-04-13 12:22:28', '2018-04-12 12:22:28', '2018-04-12 12:22:36', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '25441523506948877B1523506949', '{\"id\":\"evt_401180412122236042910803\",\"created\":1523506956,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_mLKKeLq1arzHaTy5SC1effzL\",\"object\":\"charge\",\"created\":1523506949,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"25441523506948877B1523506949\",\"client_ip\":\"172.16.17.32\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx05Q6KpYEthYFNHfIktkv-cQ\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523506956,\"time_expire\":1523514149,\"time_settle\":null,\"transaction_no\":\"4200000051201804127098539583\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_mLKKeLq1arzHaTy5SC1effzL\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_m9SOaHfbvzzHCePW9CTivHWT\",\"pending_webhooks\":0}', '25441523506948877B1523506949', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('100', '5', '58', '100', '2018041212223595010', '42', '15021689181', '汤震宇', '上海', '上海市', '宝山区', '市台路408号1108室', '', '', '121.3584035138', '31.32129809245', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:22:35', '2018-04-12 12:22:50', '2018-04-13 12:22:35', '2018-04-12 12:22:35', '2018-04-12 12:22:50', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '44951523506955217B1523506955', '{\"id\":\"evt_401180412122249041318702\",\"created\":1523506969,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_CqzHSSi9iLG8SK0S88av50O4\",\"object\":\"charge\",\"created\":1523506955,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"44951523506955217B1523506955\",\"client_ip\":\"172.16.17.32\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx00OzBh0qi4orVVq3SRC9OcM\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523506969,\"time_expire\":1523514155,\"time_settle\":null,\"transaction_no\":\"4200000068201804126782927846\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_CqzHSSi9iLG8SK0S88av50O4\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_zHu18Gbr9G8Cavj580GiTmjT\",\"pending_webhooks\":0}', '44951523506955217B1523506955', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('101', '5', '39', '101', '2018041212230885422', '43', '13424159960', '全米', '广东省', '深圳市', '龙岗区', '布吉 西环路 东升学校 高中部', '', '', '', '', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:23:08', '2018-04-12 12:23:18', '2018-04-13 12:23:08', '2018-04-12 12:23:08', '2018-04-12 12:23:18', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '60491523506988333B1523506988', '{\"id\":\"evt_401180412122318041330002\",\"created\":1523506998,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_5G4q58CizPWLbn5irLuz9afD\",\"object\":\"charge\",\"created\":1523506988,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"60491523506988333B1523506988\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx01W9rUGCXlyAzZu_17QJ6HA\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523506997,\"time_expire\":1523514188,\"time_settle\":null,\"transaction_no\":\"4200000055201804127121408752\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_5G4q58CizPWLbn5irLuz9afD\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_bPKqbL00ezjHHK0aLOurz504\",\"pending_webhooks\":0}', '60491523506988333B1523506988', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('102', '5', '38', '102', '2018041212240634024', '44', '13524853603', '朱敏', '上海', '上海市', '嘉定区', '平城路2055弄24号1301', '', '', '121.23191355511', '31.38914040595', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:24:06', '2018-04-12 12:24:14', '2018-04-13 12:24:06', '2018-04-12 12:24:06', '2018-04-12 12:24:14', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '58511523507046626B1523507046', '{\"id\":\"evt_401180412122413042949003\",\"created\":1523507053,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_bbfb50yjfX9OXHiDm9040uf1\",\"object\":\"charge\",\"created\":1523507046,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"58511523507046626B1523507046\",\"client_ip\":\"192.168.127.12\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx08leG_HlXlcZDYdCzdcRbFs\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523507053,\"time_expire\":1523514246,\"time_settle\":null,\"transaction_no\":\"4200000063201804127010411258\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_bbfb50yjfX9OXHiDm9040uf1\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_bzLqDKnH0mzLGSSij1Sa5G84\",\"pending_webhooks\":0}', '58511523507046626B1523507046', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('103', '5', '56', '103', '2018041212254896114', '45', '13916056405', '丁巧兰', '上海', '上海市', '嘉定区', '秋竹路655弄1302室叠翠峰二期', '', '', '121.22840992557', '31.386420471475', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:25:48', '2018-04-12 12:26:03', '2018-04-13 12:25:48', '2018-04-12 12:25:48', '2018-04-12 12:26:03', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '55061523507148221B1523507148', '{\"id\":\"evt_401180412122603042992003\",\"created\":1523507162,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_1aLirL1q5GWLr9CmnH80aDeT\",\"object\":\"charge\",\"created\":1523507148,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"55061523507148221B1523507148\",\"client_ip\":\"172.16.58.3\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx04NoZeq0aO2uWsYG3dNx3NE\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523507162,\"time_expire\":1523514348,\"time_settle\":null,\"transaction_no\":\"4200000054201804126768387919\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_1aLirL1q5GWLr9CmnH80aDeT\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_zDKurH9qXPC0r9mnHObTmPaD\",\"pending_webhooks\":0}', '55061523507148221B1523507148', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('104', '5', '67', '104', '2018041212311134801', '46', '15279492835', '胡金花', '江西省', '抚州市', '南城县', '老2中安置房7栋二单元201', '', '344700', '116.68173230038', '27.518966176458', '2.00', '2.00', '2.00', '0.00', '20.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:31:11', '2018-04-12 12:31:19', '2018-04-13 12:31:11', '2018-04-12 12:31:11', '2018-04-12 12:31:19', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '37231523507471866B1523507472', '{\"id\":\"evt_401180412123118043117003\",\"created\":1523507478,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_PGuLCK84azT0a1eLCOX9qr14\",\"object\":\"charge\",\"created\":1523507472,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"37231523507471866B1523507472\",\"client_ip\":\"172.16.58.3\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx08dghNmEeHzhbeteCpj3vy8\",\"bank_type\":\"CMBC_DEBIT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523507478,\"time_expire\":1523514672,\"time_settle\":null,\"transaction_no\":\"4200000063201804127110758651\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_PGuLCK84azT0a1eLCOX9qr14\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_yvL8aPCKSeP8HqHKiP400KuP\",\"pending_webhooks\":0}', '37231523507471866B1523507472', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('105', '5', '44', '105', '2018041212341718992', '35', '18702612953', '敖玲雅', '江西省', '抚州市', '南城县', '建昌大道山水景园小区', '', '344000', '116.64562061076', '27.5665856971', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:34:17', '2018-04-12 12:34:23', '2018-04-13 12:34:17', '2018-04-12 12:34:17', '2018-04-12 12:34:23', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '43401523507657069B1523507657', '{\"id\":\"evt_401180412123423043194003\",\"created\":1523507662,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_S8GqLGbXbXDKXb9qHODKqjr9\",\"object\":\"charge\",\"created\":1523507657,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"43401523507657069B1523507657\",\"client_ip\":\"172.16.58.3\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx01B4R-f-iKb-2BWD4xmtbCo\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523507662,\"time_expire\":1523514857,\"time_settle\":null,\"transaction_no\":\"4200000080201804127101359553\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_S8GqLGbXbXDKXb9qHODKqjr9\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_SyvXDKqX5C8KKmvfLSzrHiTS\",\"pending_webhooks\":0}', '43401523507657069B1523507657', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('106', '5', '44', '106', '2018041212342968561', '35', '18702612953', '敖玲雅', '江西省', '抚州市', '南城县', '建昌大道山水景园小区', '', '344000', '116.64562061076', '27.5665856971', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:34:29', '2018-04-12 12:34:35', '2018-04-13 12:34:29', '2018-04-12 12:34:29', '2018-04-12 12:34:35', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '10541523507669022B1523507669', '{\"id\":\"evt_401180412123434043198503\",\"created\":1523507674,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_e188KOvf9K4KjTCazHS8mzHS\",\"object\":\"charge\",\"created\":1523507669,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"10541523507669022B1523507669\",\"client_ip\":\"172.16.58.3\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx01B4R-f-iKb-2BWD4xmtbCo\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523507674,\"time_expire\":1523514869,\"time_settle\":null,\"transaction_no\":\"4200000065201804127060093245\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_e188KOvf9K4KjTCazHS8mzHS\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_Cu98q1S0q504LqXjDSf5e54S\",\"pending_webhooks\":0}', '10541523507669022B1523507669', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('107', '5', '66', '107', '2018041212364271005', '47', '13621722765', '杨琼英', '上海', '上海市', '徐汇区', '上海番禺路950弄1号109室', '', '2000', '121.43446630128', '31.201862257053', '4.00', '4.00', '4.00', '0.00', '40.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 12:36:42', '2018-04-12 12:36:49', '2018-04-13 12:36:42', '2018-04-12 12:36:42', '2018-04-12 12:36:49', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '15501523507802260B1523507802', '{\"id\":\"evt_401180412123649043257003\",\"created\":1523507809,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_envnj1aTK0i15G04GC9yrrb1\",\"object\":\"charge\",\"created\":1523507802,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"15501523507802260B1523507802\",\"client_ip\":\"172.16.17.32\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0wiAEIUAWiqUy-VB2MQYoks\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523507808,\"time_expire\":1523515002,\"time_settle\":null,\"transaction_no\":\"4200000080201804127007531376\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_envnj1aTK0i15G04GC9yrrb1\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_DSqXPS5efDSGnDy1GG5iHWrL\",\"pending_webhooks\":0}', '15501523507802260B1523507802', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('108', '5', '46', '108', '2018041213133851352', '29', '15598282290', '万志芳', '内蒙古自治区', '呼和浩特市', '回民区', '内蒙古自冶区,呼和浩特市回民区新民街,星月斋旁', '', '010030', '111.66817785661', '40.811708232701', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 13:13:38', '2018-04-12 13:13:46', '2018-04-13 13:13:38', '2018-04-12 13:13:38', '2018-04-12 13:13:46', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '87101523510018945B1523510019', '{\"id\":\"evt_401180412131346044171503\",\"created\":1523510026,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_1mbDK41OaP04ibfrDKPqTyzT\",\"object\":\"charge\",\"created\":1523510019,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"87101523510018945B1523510019\",\"client_ip\":\"192.168.3.11\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx01z96bJLNimrDQn6DqexutA\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523510025,\"time_expire\":1523517219,\"time_settle\":null,\"transaction_no\":\"4200000051201804126607199412\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_1mbDK41OaP04ibfrDKPqTyzT\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_04CuLOLWz104KufrHCfHqn90\",\"pending_webhooks\":0}', '87101523510018945B1523510019', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('109', '5', '74', '109', '2018041213155770108', '48', '18930047948', '罗冬梅', '上海', '上海市', '嘉定区', '平城路2279号', '', '', '121.22758830032', '31.387412423664', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 13:15:57', '2018-04-12 13:16:04', '2018-04-13 13:15:57', '2018-04-12 13:15:57', '2018-04-12 13:16:04', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '87671523510157613B1523510157', '{\"id\":\"evt_401180412131604042583402\",\"created\":1523510163,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_zHu1i1W1GGa9y9WPSSijrn5G\",\"object\":\"charge\",\"created\":1523510157,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"87671523510157613B1523510157\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx0xRSncEF8FURbnJpzZWHCtI\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523510163,\"time_expire\":1523517357,\"time_settle\":null,\"transaction_no\":\"4200000077201804127149506310\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_zHu1i1W1GGa9y9WPSSijrn5G\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_ufjbz9aD4mXH5iDW1GzvzXz1\",\"pending_webhooks\":0}', '87671523510157613B1523510157', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('110', '5', '78', '110', '2018041213374341742', '49', '13306649420', '许女士', '浙江省', '宁波市', '海曙区', '车轿街69号恒泰大厦12B04室', '', '315010', '121.56442093701', '29.875934650239', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-12 13:37:43', '2018-04-12 13:37:50', '2018-04-13 13:37:43', '2018-04-12 13:37:43', '2018-04-12 13:37:50', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '86761523511463350B1523511463', '{\"id\":\"evt_401180412133750044760603\",\"created\":1523511470,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_bfLOGKjXr54SzDmXjT4yHuDK\",\"object\":\"charge\",\"created\":1523511463,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"86761523511463350B1523511463\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx01yl53qCZ5hSfCsCXiCAzqo\",\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523511470,\"time_expire\":1523518663,\"time_settle\":null,\"transaction_no\":\"4200000079201804126617776271\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_bfLOGKjXr54SzDmXjT4yHuDK\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_PKmPu5SCOiLO5yzzbPbLunvH\",\"pending_webhooks\":0}', '86761523511463350B1523511463', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('111', '5', '6', '111', '2018041214571190014', '16', '17681442898', '孙振华', '上海市', '上海市', '虹口区', '上海', '', '200000', '121.49191854079', '31.282497228987', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-12 14:57:11', '2018-04-12 14:57:23', '2018-04-13 14:57:11', '2018-04-12 14:57:11', '2018-04-12 14:57:23', '2018-04-12 15:17:58', '2018-04-12 15:18:05', '0000-00-00 00:00:00', '0', '支付宝', '55351523516231176B1523516231', '{\"id\":\"evt_401180412145723046523303\",\"created\":1523516242,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_KSSevLyDubzDnvDqfLP8mnDK\",\"object\":\"charge\",\"created\":1523516231,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"55351523516231176B1523516231\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088022688413525\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"176****2898\"},\"time_paid\":1523516241,\"time_expire\":1523602631,\"time_settle\":null,\"transaction_no\":\"2018041221001004520593161780\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_KSSevLyDubzDnvDqfLP8mnDK\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_eDK4e9iHeDmLnfbbT80m5Cq1\",\"pending_webhooks\":0}', '55351523516231176B1523516231', '0', '0', '', '483846967159', '中通速递', 'ZTO', '2018-04-12', '1', '0');INSERT INTO `th_order_merchants` VALUES ('112', '5', '13', '112', '2018041215490193905', '50', '17681442898', '工业园', '北京市', '北京市', '东城区', '滚滚滚', '', '', '116.42188470126', '39.938574012986', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'cancel', '', '0', '0', '0', '', '', '2018-04-12 15:49:01', '0000-00-00 00:00:00', '2018-04-13 15:49:01', '2018-04-12 15:49:16', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '', '', '', '', '0', '0', '', '', '', '', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('113', '5', '13', '113', '2018041215521710922', '50', '17681442898', '工业园', '北京市', '北京市', '东城区', '滚滚滚', '', '', '116.42188470126', '39.938574012986', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'end', '', '0', '0', '0', '', '', '2018-04-12 15:52:17', '2018-04-12 15:52:27', '2018-04-13 15:52:17', '2018-04-12 15:52:17', '2018-04-12 15:52:27', '2018-04-12 15:53:03', '2018-04-12 15:53:09', '0000-00-00 00:00:00', '0', '微信', '42611523519537339B1523519538', '{\"id\":\"evt_401180412155227047693803\",\"created\":1523519547,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_qTmP4Cf5WHuDOaX9mDi18G8K\",\"object\":\"charge\",\"created\":1523519539,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx\",\"order_no\":\"42611523519537339B1523519538\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"bank_type\":\"CFT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\",\"open_id\":\"osk6Aw5UVsM8spX3x3LTYt2XVomA\"},\"time_paid\":1523519546,\"time_expire\":1523526739,\"time_settle\":null,\"transaction_no\":\"4200000081201804127236976341\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_qTmP4Cf5WHuDOaX9mDi18G8K\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_fn9y9CmLqPS4ejzXXLyf54uP\",\"pending_webhooks\":0}', '42611523519537339B1523519538', '0', '0', '', '483846967159', '中通速递', 'ZTO', '2018-04-12', '0', '0');INSERT INTO `th_order_merchants` VALUES ('114', '5', '46', '114', '2018041618400364114', '29', '15598282290', '万志芳', '内蒙古自治区', '呼和浩特市', '回民区', '内蒙古自冶区,呼和浩特市回民区新民街,星月斋旁', '', '010030', '111.66817785661', '40.811708232701', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_send', '', '0', '0', '0', '', '', '2018-04-16 18:40:03', '2018-04-16 18:40:17', '2018-04-17 18:40:03', '2018-04-16 18:40:03', '2018-04-16 18:40:17', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '微信', '94601523875203882B1523875204', '{\"id\":\"evt_401180416184017155258302\",\"created\":1523875217,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_4ezbLCu5yX1KbbXDS4P8aL80\",\"object\":\"charge\",\"created\":1523875204,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"wx_pub\",\"order_no\":\"94601523875203882B1523875204\",\"client_ip\":\"172.16.58.3\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"open_id\":\"otopx01z96bJLNimrDQn6DqexutA\",\"bank_type\":\"PSBC_DEBIT\",\"cash_fee\":\"1\",\"is_subscribe\":\"N\"},\"time_paid\":1523875217,\"time_expire\":1523882404,\"time_settle\":null,\"transaction_no\":\"4200000071201804169807502372\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_4ezbLCu5yX1KbbXDS4P8aL80\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_P0eDaTCqXLuTKKuDS8vbHyLS\",\"pending_webhooks\":0}', '94601523875203882B1523875204', '0', '0', '', '', '', '', '2018-04-16', '0', '0');INSERT INTO `th_order_merchants` VALUES ('115', '5', '3', '115', '2018041712473485636', '17', '17681442898', '孙振华', '上海', '上海市', '浦东新区', '上海', '', '', '121.63848131409', '31.230895349134', '1.00', '1.00', '1.00', '0.00', '10.00', 'goods', 'wait_pay', '', '0', '0', '0', '', '', '2018-04-17 12:47:34', '0000-00-00 00:00:00', '2018-04-18 12:47:34', '2018-04-17 12:47:34', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '1', '', '', '', '', '0', '0', '', '', '', '', '2018-04-17', '0', '0');CREATE TABLE `th_order_refund` (
`refund_id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`order_merchants_id` int(11) NOT NULL,
`merchants_id` int(11) NOT NULL COMMENT '商户id',
`order_no` varchar(30) NOT NULL DEFAULT '',
`order_goods_id` int(11) NOT NULL,
`refund_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1:换订单 2:退货订单',
`refund_no` varchar(64) NOT NULL DEFAULT '' COMMENT '退款号',
`refund_count` int(11) NOT NULL COMMENT '退货数量',
`refund_reason` varchar(150) NOT NULL,
`refund_desc` varchar(255) NOT NULL DEFAULT '' COMMENT '退货原因描述',
`refund_img` text NOT NULL,
`refund_state` varchar(20) NOT NULL DEFAULT '' COMMENT 'wait_review:等待审核 accept:接受 refuse:拒绝 end:退款成功',
`refund_actual_price` decimal(10,2) NOT NULL COMMENT '实际退款',
`refund_price` decimal(10,2) NOT NULL COMMENT '退款金额',
`refund_reason_id` int(11) NOT NULL COMMENT '拒绝理由id',
`reason_name` varchar(255) NOT NULL DEFAULT '' COMMENT '拒绝理由内容',
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`is_delete` tinyint(1) NOT NULL DEFAULT '0' COMMENT '删除1',
`logistics_no` varchar(30) NOT NULL COMMENT '快递单号',
`logistics_name` varchar(50) NOT NULL COMMENT '快递公司',
`logistics_pinyin` varchar(50) NOT NULL DEFAULT '' COMMENT '快递拼音',
`accept_or_refuse_time` datetime DEFAULT NULL COMMENT '接受时间',
`refund_time` datetime DEFAULT NULL COMMENT '退款时间',
PRIMARY KEY (`refund_id`),
UNIQUE KEY `refund_id` (`refund_id`) USING BTREE,
KEY `order_merchants_id` (`order_merchants_id`,`order_goods_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COMMENT='订单退款申请';INSERT INTO `th_order_refund` VALUES ('6', '3', '24', '5', '2018041011180933690', '26', '2', '80171523330461041', '1', '货物有损坏', '不好', 'http://shop.100ytv.com/uploads/touxiang/20180410/7b48898660d679d729d8175e24d57ba8.jpg', 'end', '100.00', '100.00', '0', '', '2018-04-10 11:21:01', '2018-04-10 11:21:21', '0', '', '', '', '', '');INSERT INTO `th_order_refund` VALUES ('7', '3', '26', '5', '2018041011255764456', '28', '1', '27591523330822197', '1', '货物有损坏', '不好', 'http://shop.100ytv.com/uploads/touxiang/20180410/989aa0eef7ad80a6dfb6cd9ec22d47aa.png', 'end', '100.00', '100.00', '0', '', '2018-04-10 11:27:02', '2018-04-10 11:27:24', '0', '', '', '', '', '');INSERT INTO `th_order_refund` VALUES ('8', '10', '28', '5', '2018041015173099956', '30', '1', '84611523349777441', '1', '货物有损坏', '退货原因-1', 'http://shop.100ytv.com/uploads/touxiang/20180410/8e00ca73f3bad3015a3cbf3b4fe80e14.jpg', 'wait_review', '1.00', '1.00', '0', '', '2018-04-10 16:42:57', '0000-00-00 00:00:00', '0', '', '', '', '', '');INSERT INTO `th_order_refund` VALUES ('9', '10', '44', '5', '2018041016512693392', '48', '1', '63441523350381704', '1', '货物有损坏', '将计就计-2', '', 'refuse', '1.00', '1.00', '0', '测试的拒绝理由', '2018-04-10 16:53:01', '2018-04-11 14:43:10', '0', '', '', '', '', '');INSERT INTO `th_order_refund` VALUES ('10', '15', '43', '5', '2018041016493555009', '45', '1', '31111523411600402', '1', '货物有损坏', '。。。。', 'http://shop.100ytv.com/uploads/touxiang/20180411/ecaa70b90f2ecb311eb7c50a1c863db1.jpg', 'end', '1.00', '1.00', '0', '', '2018-04-11 09:53:20', '2018-04-11 15:07:52', '0', '', '', '', '2018-04-11 15:06:40', '2018-04-11 15:07:52');INSERT INTO `th_order_refund` VALUES ('11', '14', '51', '5', '2018041111265849821', '57', '1', '53141523425386160', '1', '货物有损坏', '测试退款', '', 'refuse', '1.00', '1.00', '0', '测试拒绝原因', '2018-04-11 13:43:06', '2018-04-11 14:12:02', '0', '', '', '', '', '');INSERT INTO `th_order_refund` VALUES ('12', '14', '57', '5', '2018041114355536332', '63', '1', '48781523429071387', '1', '货物有损坏', '测试售后', '', 'accept', '1.00', '1.00', '0', '', '2018-04-11 14:44:31', '2018-04-11 14:48:22', '0', '', '', '', '', '');INSERT INTO `th_order_refund` VALUES ('13', '14', '62', '5', '2018041114542566256', '70', '1', '24201523429773685', '1', '货物有损坏', '测试时间', '', 'refuse', '1.00', '1.00', '0', '12312', '2018-04-11 14:56:13', '2018-04-11 15:05:13', '0', '', '', '', '2018-04-11 15:05:13', '');INSERT INTO `th_order_refund` VALUES ('14', '10', '64', '5', '2018041116153952076', '72', '1', '86851523434717892', '1', '货物有损坏', '退货说明测试-1', 'http://shop.100ytv.com/uploads/touxiang/20180411/d27bbe413aa31e3f897645304c7bc599.jpg,http://shop.100ytv.com/uploads/touxiang/20180411/7d3ecfbacef96897947271c12916b95c.jpg,http://shop.100ytv.com/uploads/touxiang/20180411/1565a5137f8ebe040caa0a8192736453.jpg', 'wait_review', '1.00', '1.00', '0', '', '2018-04-11 16:18:37', '0000-00-00 00:00:00', '0', '', '', '', '', '');INSERT INTO `th_order_refund` VALUES ('15', '15', '56', '5', '2018041114285949814', '62', '1', '23571523504071228', '1', '货物有损坏', '', '', 'wait_review', '1.00', '1.00', '0', '', '2018-04-12 11:34:31', '0000-00-00 00:00:00', '0', '', '', '', '', '');CREATE TABLE `th_order_refund_reason` (
`refund_reason_id` int(11) NOT NULL AUTO_INCREMENT,
`reason_name` varchar(255) NOT NULL DEFAULT '',
`create_time` datetime NOT NULL,
`is_delete` tinyint(11) NOT NULL DEFAULT '0',
`sort` int(3) NOT NULL,
PRIMARY KEY (`refund_reason_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='退款原因表';INSERT INTO `th_order_refund_reason` VALUES ('2', '货物有损坏', '2018-04-10 11:20:05', '0', '2');CREATE TABLE `th_order_settlement` (
`order_settlement_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`order_merchants_id` int(10) unsigned NOT NULL,
`merchant_id` int(11) NOT NULL COMMENT '商家or主播or电视台',
`order_price` decimal(10,2) NOT NULL COMMENT '订单金额计算可供结算的金额,减去退款金额',
`settlement_price` decimal(10,2) NOT NULL COMMENT '结算金额',
`ratio` varchar(10) NOT NULL COMMENT '结算比例',
`create_time` datetime NOT NULL,
`date` varchar(20) NOT NULL COMMENT '日期',
`is_delete` tinyint(1) NOT NULL DEFAULT '0',
`type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1商家订单结算;2主播销售结算;3电视台',
`order_goods_id` int(11) NOT NULL COMMENT '订单id',
`content` varchar(64) NOT NULL COMMENT '解释',
PRIMARY KEY (`order_settlement_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;CREATE TABLE `th_price` (
`price_id` int(11) NOT NULL AUTO_INCREMENT,
`price` float(10,2) NOT NULL COMMENT '价格',
`meters` varchar(11) NOT NULL COMMENT '钻石',
`intime` int(11) NOT NULL,
`uptime` int(11) DEFAULT NULL,
`give` int(11) NOT NULL COMMENT '赠送',
`apple_id` varchar(45) NOT NULL,
PRIMARY KEY (`price_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='价格表';INSERT INTO `th_price` VALUES ('2', '6.00', '60', '1490841269', '1493197645', '1', '9086589332');INSERT INTO `th_price` VALUES ('4', '18.00', '180', '1490845854', '1493197657', '3', '9086589331');INSERT INTO `th_price` VALUES ('5', '98.00', '980', '1490845864', '1493197706', '15', '9086589334');INSERT INTO `th_price` VALUES ('7', '298.00', '2980', '1493207828', '1493208073', '50', '1970564948');INSERT INTO `th_price` VALUES ('8', '30.00', '300', '1493207844', '1493207924', '5', '9753788655');CREATE TABLE `th_price_list` (
`price_list_id` int(11) NOT NULL AUTO_INCREMENT,
`price` int(11) NOT NULL,
`diamond` int(11) NOT NULL,
`intime` int(11) NOT NULL,
`uptime` int(11) NOT NULL,
`zeng` int(11) NOT NULL,
`sign` varchar(20) NOT NULL COMMENT '苹果标记',
PRIMARY KEY (`price_list_id`)
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8;INSERT INTO `th_price_list` VALUES ('13', '32', '320', '1490324612', '1513674749', '20', '2017072418');INSERT INTO `th_price_list` VALUES ('14', '128', '1280', '1490324625', '1513674790', '0', '2017072498');INSERT INTO `th_price_list` VALUES ('15', '298', '2980', '1490324639', '1522139458', '0', '2017724298');INSERT INTO `th_price_list` VALUES ('24', '6', '60', '1508210020', '1513674736', '0', '2017101711');INSERT INTO `th_price_list` VALUES ('25', '68', '680', '1513665532', '1513674772', '0', '2017121914');CREATE TABLE `th_recharge` (
`recharge_record_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
`member_id` int(11) NOT NULL COMMENT '用户id',
`pay_number` varchar(20) NOT NULL COMMENT '编号',
`amount` decimal(10,2) NOT NULL COMMENT '充值金额',
`meters` int(11) NOT NULL COMMENT '充值钻石',
`pay_on` varchar(25) NOT NULL COMMENT '支付编号',
`pay_type` varchar(10) NOT NULL COMMENT '支付类型',
`pay_return` text NOT NULL COMMENT '支付成功返回数据',
`intime` datetime NOT NULL COMMENT '时间',
`uptime` datetime NOT NULL,
`pay_state` tinyint(4) NOT NULL DEFAULT '1' COMMENT '2支付成功',
`zeng` int(11) NOT NULL COMMENT '赠送钻石',
`is_del` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`recharge_record_id`),
KEY `is_del` (`is_del`) USING BTREE,
KEY `pay_number` (`pay_number`,`member_id`,`intime`,`pay_state`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='充值记录表';INSERT INTO `th_recharge` VALUES ('1', '6', '20180410105715879440', '298.00', '2980', '', 'alipay', '{\"id\":\"evt_401180410105739693798603\",\"created\":1523329058,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_qjnDWHLOWzT8uX94C05Ce9SS\",\"object\":\"charge\",\"created\":1523329035,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"20180410105715879440A1523329035\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088022688413525\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"176****2898\"},\"time_paid\":1523329058,\"time_expire\":1523415435,\"time_settle\":null,\"transaction_no\":\"2018041021001004520585140439\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_qjnDWHLOWzT8uX94C05Ce9SS\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_Xv1WX9vjvL4K18uHO4jfvPSK\",\"pending_webhooks\":0}', '2018-04-10 10:57:15', '2018-04-10 10:57:39', '2', '0', '1');INSERT INTO `th_recharge` VALUES ('2', '3', '20180412090746703002', '298.00', '2980', '', 'alipay', '', '2018-04-12 09:07:46', '0000-00-00 00:00:00', '1', '0', '1');INSERT INTO `th_recharge` VALUES ('3', '5', '20180412092536579326', '298.00', '2980', '', 'alipay', '{\"id\":\"evt_401180412092547038074702\",\"created\":1523496346,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_mrHqbP98qDG8bDmTGODGuHq9\",\"object\":\"charge\",\"created\":1523496336,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"20180412092536579326A1523496336\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088022688413525\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"176****2898\"},\"time_paid\":1523496345,\"time_expire\":1523582736,\"time_settle\":null,\"transaction_no\":\"2018041221001004520591574105\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_mrHqbP98qDG8bDmTGODGuHq9\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_1enfzH0mX5K4GqbLC8y5ebLO\",\"pending_webhooks\":0}', '2018-04-12 09:25:36', '2018-04-12 09:25:47', '2', '0', '1');INSERT INTO `th_recharge` VALUES ('4', '13', '20180412155157276447', '298.00', '2980', '', 'wx', '', '2018-04-12 15:51:57', '0000-00-00 00:00:00', '1', '0', '1');CREATE TABLE `th_system` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`url` varchar(255) DEFAULT '' COMMENT '详情页根地址',
`deposit` int(5) DEFAULT NULL,
`wx_name` varchar(255) DEFAULT '' COMMENT '微信公众号名称',
`wx_account` varchar(255) DEFAULT '' COMMENT '微信账号',
`wx_type` int(11) DEFAULT '1' COMMENT '微信类别',
`wx_qrcode` varchar(255) DEFAULT '' COMMENT '微信二维码',
`appid` varchar(255) DEFAULT '' COMMENT '微信appid',
`appsecret` varchar(255) DEFAULT '' COMMENT '微信appsecret',
`title` varchar(255) DEFAULT '' COMMENT '后台名称',
`apiid` varchar(255) DEFAULT '' COMMENT 'ping++',
`secretkey` varchar(255) DEFAULT '' COMMENT 'ping++',
`jg_appkey` varchar(255) DEFAULT NULL COMMENT '极光appkey',
`jg_secret` varchar(255) DEFAULT NULL COMMENT '极光Master Secret',
`hx_client_id` varchar(255) DEFAULT NULL COMMENT '环信client_id',
`hx_secret` varchar(255) DEFAULT NULL COMMENT '环信Secret',
`hx_appkey_1` varchar(30) DEFAULT NULL COMMENT '用户',
`hx_appkey_2` varchar(30) DEFAULT NULL COMMENT '用户',
`baidu_apikey` varchar(255) DEFAULT NULL COMMENT '百度apikey',
`activity_number` int(11) NOT NULL DEFAULT '1' COMMENT '显示的活动个数',
`ak` varchar(255) DEFAULT NULL COMMENT '七牛appkey',
`sk` varchar(255) DEFAULT NULL COMMENT '七牛Secret',
`ios_version` varchar(64) DEFAULT NULL COMMENT 'ios版本号',
`android_version` varchar(64) DEFAULT NULL COMMENT '安卓版本号',
`ios_merchant_version` varchar(64) DEFAULT NULL COMMENT '商户ios版本号',
`android_merchant_version` varchar(64) DEFAULT NULL COMMENT '商户ios版本号',
`ry_appkey` varchar(255) DEFAULT NULL COMMENT '融云appky',
`ry_secret` varchar(255) DEFAULT NULL COMMENT '融云Secret',
`sensitive_word` text COMMENT '敏感词',
`about_us` text COMMENT '关于我们',
`uptime` int(11) DEFAULT NULL,
`zhutong_username` varchar(20) DEFAULT NULL COMMENT '助通账号',
`zhutong_password` varchar(30) DEFAULT NULL COMMENT '助通密码',
`code_volidity` int(11) DEFAULT NULL COMMENT '短信验证码有效期(分钟)',
`publishurl` varchar(300) DEFAULT NULL COMMENT '七牛推流地址',
`playurl` varchar(300) DEFAULT NULL COMMENT '七牛播放地址',
`screen_price` int(11) NOT NULL DEFAULT '0' COMMENT '弹幕价格',
`experience` int(11) NOT NULL DEFAULT '0' COMMENT '弹幕返经验值',
`tengxun_appid` varchar(20) DEFAULT NULL COMMENT '腾讯云短信appid',
`tengxun_appkey` varchar(100) DEFAULT NULL COMMENT '腾讯云短信appkey',
`hubName` varchar(50) DEFAULT NULL COMMENT '气牛hubName',
`lowest_limit` int(11) NOT NULL DEFAULT '0' COMMENT '提现最低多少火力可提现',
`change_scale` int(11) NOT NULL DEFAULT '100' COMMENT '直播打赏折算百分比',
`convert_scale3` int(11) NOT NULL DEFAULT '0' COMMENT '龙票提现金额 (convert_scale4/convert_scale3)',
`convert_scale4` int(11) NOT NULL DEFAULT '0' COMMENT '龙票提现金额',
`convert_scale1` int(11) NOT NULL DEFAULT '0' COMMENT '龙票兑换钻石 (convert_scale1/convert_scale2)',
`convert_scale2` int(11) NOT NULL DEFAULT '0',
`default_verify` int(6) NOT NULL COMMENT '短信默认验证码',
`switch` tinyint(2) NOT NULL DEFAULT '1' COMMENT '每天登陆免费送钻石 1:开启 2:关闭',
`fir_distribution` tinyint(3) NOT NULL DEFAULT '0' COMMENT '一级收益奖励比例',
`sec_distribution` tinyint(3) NOT NULL DEFAULT '0' COMMENT '二级收益奖励比例',
`free_num` int(11) NOT NULL COMMENT '免费票数',
`approve_switch` tinyint(2) NOT NULL COMMENT 'approve_switch',
`live_most_num` int(11) NOT NULL COMMENT '直播间人数限制(人数达到这个现在,不再添加机器人)',
`one_minutes_num` int(11) NOT NULL COMMENT '每分钟添加机器人',
`settlement_ratio` varchar(20) NOT NULL COMMENT '订单结算比例',
`dashang_scale` tinyint(3) NOT NULL DEFAULT '100' COMMENT '平台直播收益默认百分比',
`sell_scale` tinyint(3) NOT NULL DEFAULT '100' COMMENT '平台商品分成默认百分比',
`tv_sell_scale` tinyint(3) NOT NULL DEFAULT '30' COMMENT '电视台商品销售分成默认百分比',
`spread_scale` tinyint(3) NOT NULL DEFAULT '3' COMMENT '默认供货电视台',
`spread_scale1` tinyint(3) NOT NULL COMMENT '电视台引流',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;INSERT INTO `th_system` VALUES ('1', '', '400', '8分钟', '', '6', '', 'wxf39823e8ac615f21', 'db9ba338711c0c2e70532b29bddd805a', '平台后台', 'app_CC8WDGjrLGyH94eP', 'sk_live_u58mn1XvX184DGer98qDOa5K', '7b411aed8c36576a86e12e4e', '0f88faf85533d57a3513dd97', 'YXA6Lqb_QPELEee0GfWbERWWWg', 'YXA6S28A-Ww9gAW_2mcF_AmrqGlQ-rE', '1184171027115484', 'bty', '8XI9j6DmK8Pz2YaqmepZd3qsndTpe8u4', '1', 'pR_CsEkFcTn1Kgf8ZNIh2zUB_w8bzaeLYEgjBItT', 'Vr2R_DMBvVHAtVmcwVGKF_C-ol6jDtCXqpiXlZZY', '1.2', '24', '0', '2', 'k51hidwq1iy3b', 'u7vyU9QEqtl', '草,艹,靠,tam,傻逼,你妈', '关于我们关于我们关于我们', '1488955530', 'weixiu01yzm', '8uLAqF', '5', 'longmailive.tstmobile.com', 'longmailiveplay.tstmobile.com', '1', '10', '1400024366', 'ebe54107b23599b511c9c0f3befc0563', 'vxiu1', '3000', '0', '1000', '10', '100', '100', '147589', '1', '40', '20', '1', '1', '200', '1', '90%', '58', '5', '33', '10', '2');CREATE TABLE `th_system_member` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`username` varchar(32) NOT NULL DEFAULT '' COMMENT '用户名',
`password` varchar(32) NOT NULL DEFAULT '' COMMENT '密码',
`realname` varchar(64) NOT NULL DEFAULT '' COMMENT '真实姓名',
`update_time` datetime NOT NULL,
`create_time` datetime NOT NULL COMMENT '创建时间',
`last_login_date` datetime NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '1',
`login_times` int(11) NOT NULL DEFAULT '0' COMMENT '登陆次数',
`last_login_ip` varchar(20) NOT NULL DEFAULT '' COMMENT '上次登陆ip',
`head_img` varchar(155) NOT NULL DEFAULT '' COMMENT '头像',
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`),
KEY `name` (`realname`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;INSERT INTO `th_system_member` VALUES ('10', 'admin', 'd52f65f4d0766aa18a10fae24c322c28', 'admin', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '2018-04-19 11:15:43', '1', '799', '172.16.31.10', '');CREATE TABLE `th_system_notice` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(200) NOT NULL DEFAULT '' COMMENT '标题',
`state` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1默认2开启',
`object` varchar(32) NOT NULL DEFAULT '0' COMMENT '公告对象',
`summary` varchar(150) NOT NULL DEFAULT '' COMMENT '摘要',
`content` text NOT NULL COMMENT '内容',
`is_top` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1默认2置顶',
`intime` datetime DEFAULT NULL,
`uptime` datetime DEFAULT NULL,
`url` varchar(150) NOT NULL COMMENT '外部链接',
`is_delete` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1正常;2删除',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;CREATE TABLE `th_television` (
`tv_id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '电视台tv_id',
`username` varchar(255) NOT NULL DEFAULT '' COMMENT '用户名',
`phone` varchar(255) NOT NULL DEFAULT '' COMMENT '手机号码',
`header_img` varchar(255) NOT NULL DEFAULT '' COMMENT '头像',
`password` varchar(255) NOT NULL DEFAULT '' COMMENT '登录密码',
`e_ticket` int(11) NOT NULL DEFAULT '0' COMMENT '电视台赏票余额',
`e_ticket_count` int(11) NOT NULL,
`cash_money` decimal(11,2) NOT NULL DEFAULT '0.00' COMMENT '提现金额',
`tv_dashang_scale` tinyint(3) NOT NULL DEFAULT '100' COMMENT '电视台直播收益百分比',
`dashang_scale` tinyint(3) NOT NULL DEFAULT '100' COMMENT '平台直播收益百分比',
`sell_scale` tinyint(3) NOT NULL DEFAULT '100' COMMENT '平台销售分成百分比',
`tv_sell_scale` tinyint(3) unsigned NOT NULL DEFAULT '100' COMMENT '电视台销售分成百分比',
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`is_del` tinyint(4) NOT NULL DEFAULT '1' COMMENT '删除:2',
`tv_type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1省级;2市级;3区县级',
`pid` int(11) NOT NULL COMMENT '上一级对应id',
`account_money` decimal(11,2) NOT NULL COMMENT '账户余额',
`money_count` decimal(11,2) NOT NULL COMMENT '总金额',
`withdraw_money` decimal(11,2) NOT NULL COMMENT '正在提现金额',
`withdrawal_money` decimal(11,2) NOT NULL COMMENT '已提现金额',
`qrcode_img` varchar(255) NOT NULL COMMENT '电视台二维码',
PRIMARY KEY (`tv_id`)
) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=utf8;INSERT INTO `th_television` VALUES ('1', '黑龙江省鸡西市鸡冠区电视台', 'jiguanquTV', 'http://shop.100ytv.com/uploads//image/banner/20180410/e2575cabd5ec35607635c149d818242c.jpg', '701b1dee13e43312dce205a9254e1ed7', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 09:42:02', '2018-04-10 09:47:00', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523324522788_qrcode.png');INSERT INTO `th_television` VALUES ('2', '大庆市广播电台', 'daqingfm', 'http://shop.100ytv.com/uploads//image/banner/20180410/03c9465740cf00b05e17d9801afbbda3.jpg', 'f37e587130a6a8157cb8d7382e8e19f1', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 09:44:33', '2018-04-10 09:47:23', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523324673498_qrcode.png');INSERT INTO `th_television` VALUES ('3', '濮阳市广播电视台', '濮阳市广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'ba674c64e962bc327807d94c9e252ecd', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 09:45:48', '2018-04-10 09:47:42', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523324748358_qrcode.png');INSERT INTO `th_television` VALUES ('4', '济宁市任城区电视台', 'renchengquTV', 'http://shop.100ytv.com/uploads/image/touxiang.png', '7bbb5c04aae3c7178d513a2459920599', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 09:48:27', '2018-04-10 09:49:03', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523324907854_qrcode.png');INSERT INTO `th_television` VALUES ('5', '洛安集团', '洛安资产管理集团', 'http://shop.100ytv.com/uploads//image/banner/20180410/34f150f61826c3698951a67557fdead2.png', 'd52f65f4d0766aa18a10fae24c322c28', '95', '95', '25.20', '100', '50', '50', '100', '2018-04-10 09:51:59', '2018-04-17 12:46:16', '1', '3', '-1', '25.20', '25.56', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523328430409_qrcode.png');INSERT INTO `th_television` VALUES ('6', '佳木斯市广播电视台', 'jiamusishiTV', 'http://shop.100ytv.com/uploads/image/touxiang.png', '0895187588055716fea4dd1cc43e511c', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 09:53:32', '2018-04-10 09:53:43', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523325212332_qrcode.png');INSERT INTO `th_television` VALUES ('7', '贵州铜仁广播电视台', 'tongrenshiTV', 'http://shop.100ytv.com/uploads//image/banner/20180410/c3ab374000bf3ba449d752e528112ad3.png', '3230f23eda9631d69e30b118127cb632', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 09:54:46', '2018-04-10 09:55:21', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523325286659_qrcode.png');INSERT INTO `th_television` VALUES ('8', '湖南新晃县广播电视台', 'xinhuangxianTV', 'http://shop.100ytv.com/uploads//image/banner/20180410/fbfa39db01e0e20e913d4c9171af484f.jpg', '598a633aac1eb5c62a98d965473e1857', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 09:56:58', '2018-04-10 13:52:13', '1', '3', '46', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523325418750_qrcode.png');INSERT INTO `th_television` VALUES ('9', '太和人民广播电台', '太和人民广播电台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '451d62c711f2ae76c54bcd7e433eda23', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 09:58:35', '2018-04-10 09:58:52', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523325515247_qrcode.png');INSERT INTO `th_television` VALUES ('10', '平顶山市广播电视台', '平顶山市广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '3703ef9d7c3a815508bf88568572da2b', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 09:59:34', '2018-04-10 09:59:59', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523325574706_qrcode.png');INSERT INTO `th_television` VALUES ('11', '荆门广播电视台', '荆门广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '5aafd6859dc65bf0ba3cfd80af656acf', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 10:02:59', '2018-04-10 10:03:23', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523325779819_qrcode.png');INSERT INTO `th_television` VALUES ('12', '邯郸广播电视台', '邯郸广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '9cc7d9c38160e1fbebf3bfab19857904', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 10:04:05', '0000-00-00 00:00:00', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523325845708_qrcode.png');INSERT INTO `th_television` VALUES ('13', '邢台广播电视台', '邢台广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'd27c4c55750643238cbe82c7f43486b8', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 10:05:01', '0000-00-00 00:00:00', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523325901273_qrcode.png');INSERT INTO `th_television` VALUES ('14', '庆云县广播电视台', '庆云县广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '45e754721a735e385e9210541c804287', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 10:05:49', '2018-04-10 15:00:06', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523325949432_qrcode.png');INSERT INTO `th_television` VALUES ('15', '茂名市广播电视台', '茂名市广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '726d83b1557f7351de50e3d66c04aa26', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 10:08:49', '2018-04-10 10:09:13', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523326129757_qrcode.png');INSERT INTO `th_television` VALUES ('16', '威海市广播电视台', '威海市广播电视台', 'http://shop.100ytv.com/uploads//image/banner/20180410/b8ff2e408c27ac517dc459d5567386f1.png', '8f5d7954ae77024b568278af693d078a', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 10:09:54', '2018-04-10 10:10:18', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523326194821_qrcode.png');INSERT INTO `th_television` VALUES ('17', '温州广播电视传媒集团', '温州广播电视传媒集团', 'http://shop.100ytv.com/uploads/image/touxiang.png', '808ad3b6a1ff84cbbf3b11a027d3b3c6', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 10:11:19', '2018-04-10 10:11:38', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523326279672_qrcode.png');INSERT INTO `th_television` VALUES ('18', '涉县广播电视台', '涉县广播电视台', 'http://shop.100ytv.com/uploads//image/banner/20180410/e1f6b98c77e27be75ffe477e1aeb5adb.jpg', '1b4ba32bcff6ab51afae5c2114dd7789', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 10:12:55', '2018-04-10 10:13:22', '1', '3', '12', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523326375692_qrcode.png');INSERT INTO `th_television` VALUES ('19', '盐城广播电视总台', '盐城广播电视总台', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'f1944b7cb417b4de693dcc51f567aa90', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 10:13:55', '2018-04-10 10:14:15', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523326435748_qrcode.png');INSERT INTO `th_television` VALUES ('20', '江苏淮安市广播电视台', '淮安市广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '6b55c9ad8a31f51aba398f064f60549f', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 10:14:50', '2018-04-10 10:15:07', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523326490181_qrcode.png');INSERT INTO `th_television` VALUES ('21', '南充交通音乐广播', '南充交通音乐广播', 'http://shop.100ytv.com/uploads//image/banner/20180410/1faa9cefb3d3d133498f9f26aaba0337.png', '27107e76ecd886ffa66c07ef68afb291', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 10:18:55', '2018-04-10 10:21:35', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523326736410_qrcode.png');INSERT INTO `th_television` VALUES ('22', '南宁市电视台', '南宁市电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '93421e5989579e8bd826677b5ca5c852', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 10:20:51', '2018-04-10 10:21:07', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523326851361_qrcode.png');INSERT INTO `th_television` VALUES ('23', '山西省洪洞县广播电视台', '洪洞县广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '37a5a93249a2e99e3166d1238899a172', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 10:22:37', '2018-04-10 10:22:57', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523326957526_qrcode.png');INSERT INTO `th_television` VALUES ('24', '湖北省仙桃市电视台', '仙桃市电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'c488d986701ac5d14387659e7c661d0e', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 10:25:31', '2018-04-17 12:33:25', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523327131770_qrcode.png');INSERT INTO `th_television` VALUES ('25', '江苏睢宁县电视台', '睢宁县电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'dfaf00f3ab97a3c6e515a38c9e7bbb7c', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 10:27:09', '2018-04-10 10:27:23', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523327229385_qrcode.png');INSERT INTO `th_television` VALUES ('26', '云浮广播电视台', '云浮广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '7a36a8cd59f295730b8e318dd96c09d2', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 10:29:22', '2018-04-10 10:30:49', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523327362108_qrcode.png');INSERT INTO `th_television` VALUES ('27', '四川省魅力传媒有限公司(巴中市电视台)', '巴中市电视台', 'http://shop.100ytv.com/uploads//image/banner/20180410/a1897cf8797bd320e08deefd917dbde4.jpg', 'cc50215256b27fcd6803dc57e989e8e6', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 10:31:42', '2018-04-10 13:03:41', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523336606928_qrcode.png');INSERT INTO `th_television` VALUES ('28', '新密广播电视台(新闻频道)', '新密广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'ed9d4a5aa5ab07cf91bb8f58ded6d26a', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 13:05:51', '2018-04-10 13:07:06', '1', '3', '29', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523336751929_qrcode.png');INSERT INTO `th_television` VALUES ('29', '郑州市电视台', '郑州市电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '375221ed1d3e9761558eee4901e9961d', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 13:06:56', '2018-04-10 13:07:23', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523336816121_qrcode.png');INSERT INTO `th_television` VALUES ('30', '桂林市电视台(桂林市鑫视广告有限责任公司)', '桂林市电视台', 'http://shop.100ytv.com/uploads//image/banner/20180410/fa4095a068018cd3c4fc6d7ae804ab1e.png', 'ac06c23d4bdc25f7ba72d6c9143acd4d', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 13:08:53', '2018-04-10 13:10:14', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523337014199_qrcode.png');INSERT INTO `th_television` VALUES ('31', '珠海电广传媒有限公司', '珠海广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'ee3fa09bd06848390d9d59209cdb277c', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 13:09:40', '2018-04-10 13:09:59', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523336980480_qrcode.png');INSERT INTO `th_television` VALUES ('32', '咸宁广电传媒有限公司', '咸宁广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '6bd9bdbe2b84abd071b925dd989bd513', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 13:10:50', '2018-04-10 13:11:10', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523337050506_qrcode.png');INSERT INTO `th_television` VALUES ('33', '张家口广播电视台和家车广播', '张家口广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '9a8df5b753ea7efb1dc3dbccf69373c4', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 13:19:59', '2018-04-10 13:20:22', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523337599370_qrcode.png');INSERT INTO `th_television` VALUES ('34', '宝应广播电台', '宝应广播电台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '534926c16ba4db2771137bb38ec4ff35', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 13:27:31', '2018-04-10 13:27:52', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523338051515_qrcode.png');INSERT INTO `th_television` VALUES ('35', '十堰广播电视台', '十堰广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '0eaaf9902eb8bec9b8bda8d352c3e3d0', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 13:28:30', '0000-00-00 00:00:00', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523338110493_qrcode.png');INSERT INTO `th_television` VALUES ('36', '湖北潜江广播电视台', '潜江广播电视台', 'http://shop.100ytv.com/uploads//image/banner/20180410/961d91566e11c3cc8dda7d62d613073f.png', '666a7f3641ddfb29cdb80db8c3a63112', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 13:29:27', '2018-04-17 12:33:25', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523338167832_qrcode.png');INSERT INTO `th_television` VALUES ('37', '黄冈广播电视台', '黄冈广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'a54bd99f1182a0e8a529802924ed6780', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 13:33:24', '2018-04-10 13:33:43', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523338404372_qrcode.png');INSERT INTO `th_television` VALUES ('38', '辽宁盘山广播电视台', '盘山广播电视台', 'http://shop.100ytv.com/uploads//image/banner/20180410/bfaf80061ea42b3b63f72239bc7b37af.jpg', '7013f29577c5a5a053bfee3151baab08', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 13:38:36', '2018-04-10 13:38:55', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523338716682_qrcode.png');INSERT INTO `th_television` VALUES ('39', '日照广播影视集团', '日照广播影视集团', 'http://shop.100ytv.com/uploads/image/touxiang.png', '9335cf6341391aa7a06f3cde1389d656', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 13:39:45', '2018-04-10 13:39:59', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523338785894_qrcode.png');INSERT INTO `th_television` VALUES ('40', '鹰潭市广播电视台', '鹰潭市广播电视台', 'http://shop.100ytv.com/uploads//image/banner/20180410/3883a73c0d0f1e534e1d5ff29d48e032.png', 'd5731edf42cf9300e98ef28d945ef231', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 13:40:35', '2018-04-10 13:40:58', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523338835759_qrcode.png');INSERT INTO `th_television` VALUES ('41', '偃师市广播电视台', '偃师市广播电视台', 'http://shop.100ytv.com/uploads//image/banner/20180410/3ac50f843e5795d5281aab17aefaec67.jpg', 'f2993ba2391063648c44d1bfd15826aa', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 13:42:06', '2018-04-10 13:42:29', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523338926692_qrcode.png');INSERT INTO `th_television` VALUES ('42', '鹤岗市广播电视台', '鹤岗市广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'd174c1f667d51ebdecf8deacd2646a33', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 13:43:06', '2018-04-10 13:43:26', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523338986247_qrcode.png');INSERT INTO `th_television` VALUES ('43', '宜昌三峡广播电视总台广播中心', '宜昌三峡广播电视总台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '3dcec61917e71f90e914e79638a1abaa', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 13:44:01', '2018-04-10 13:44:16', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523339041434_qrcode.png');INSERT INTO `th_television` VALUES ('44', '长治广播电视台', '长治广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '272161abe46623a484005aef0b5094e0', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 13:44:51', '2018-04-10 13:45:04', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523339091658_qrcode.png');INSERT INTO `th_television` VALUES ('45', '成都广播电视台', '成都广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '024178fb5a7c1a1ff049bd5b82de5d8b', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 13:45:42', '2018-04-10 13:45:59', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523339142708_qrcode.png');INSERT INTO `th_television` VALUES ('46', '怀化市广播电视台', '怀化市广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '54d9e776955c30ee45166bc8405069e3', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 13:51:37', '2018-04-10 13:57:18', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523339497567_qrcode.png');INSERT INTO `th_television` VALUES ('47', '芷江县电视台', '芷江县电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '4b8bcf67faa7dff59929a33868df3668', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 13:57:53', '2018-04-12 07:46:33', '1', '3', '46', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523339873569_qrcode.png');INSERT INTO `th_television` VALUES ('48', '河南汝州电视台', '汝州市电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '889be3cc5a4b23fd430a3bc6769d0ad0', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 13:58:43', '2018-04-10 13:59:02', '1', '3', '10', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523339923857_qrcode.png');INSERT INTO `th_television` VALUES ('49', '赤峰广播电视台', '赤峰广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '34a188541673fcf7ee861815562ad384', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 13:59:29', '2018-04-10 13:59:45', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523339969455_qrcode.png');INSERT INTO `th_television` VALUES ('50', '连云港电视台', '连云港电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'a6a9f5bec1cf7f09d5c4f94990116211', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 14:00:16', '2018-04-10 14:00:32', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523340016609_qrcode.png');INSERT INTO `th_television` VALUES ('51', '重庆市永川区广播电视台', '永川区广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '4b59a5553819a00ed41781cb63d40c0b', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 14:01:09', '2018-04-10 14:01:21', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523340069279_qrcode.png');INSERT INTO `th_television` VALUES ('52', '河南遂平县广播电视台', '遂平县广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '74948a6404b35773ab14fe36a0c912e3', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 14:02:18', '2018-04-10 14:02:32', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523340138861_qrcode.png');INSERT INTO `th_television` VALUES ('53', '开平广播电视台', '开平广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'cf9dd26f69e3e127f64378ac19147e0b', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 14:03:50', '2018-04-10 14:04:05', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523340230630_qrcode.png');INSERT INTO `th_television` VALUES ('54', '山西省翼城县广播电视台', '翼城县广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '2489e43cab474e2089b6743fdf4d11ae', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 14:04:50', '2018-04-10 14:05:27', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523340290836_qrcode.png');INSERT INTO `th_television` VALUES ('55', '湖北省钟祥广播电视台', '钟祥广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '4947779eb499bb92a74c76d7407b2307', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 14:06:19', '2018-04-10 14:06:34', '1', '3', '11', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523340379646_qrcode.png');INSERT INTO `th_television` VALUES ('56', '河南省卫辉市广电中心', '卫辉广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '30be364c2b9e2b24823c93ff786ff38c', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 14:07:19', '2018-04-10 14:07:32', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523340439396_qrcode.png');INSERT INTO `th_television` VALUES ('57', '黑龙江中智融媒文化发展有限公司(牡丹江市)', '中智融媒文化', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'f9cbe3b22810d2df068128d632b7be5b', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 14:08:56', '2018-04-10 14:09:09', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523340536939_qrcode.png');INSERT INTO `th_television` VALUES ('58', '山西交城广播电视台', '交城广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '031983f670aa2f141e9fe2fb542d4da2', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 14:10:00', '2018-04-10 14:10:13', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523340600361_qrcode.png');INSERT INTO `th_television` VALUES ('59', '沧州广播电视台', '沧州广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '272161abe46623a484005aef0b5094e0', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 14:10:40', '2018-04-10 14:10:53', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523340640705_qrcode.png');INSERT INTO `th_television` VALUES ('60', '丰宁县电视台', '丰宁县电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'ef95a996f6ef32d9221686c18cdfa374', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 14:11:34', '2018-04-10 14:11:47', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523340694958_qrcode.png');INSERT INTO `th_television` VALUES ('61', '介休市电视台', '介休市电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '8c661683136a9e2f998ce34de501921b', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 14:12:27', '2018-04-10 14:12:43', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523340747648_qrcode.png');INSERT INTO `th_television` VALUES ('62', '河南省商丘广播电视台', '商丘广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '7f2e6363b408ebb060ea78f35e1bebb9', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 14:13:17', '2018-04-10 14:13:31', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523340797118_qrcode.png');INSERT INTO `th_television` VALUES ('63', '孝义市广播电视台', '孝义广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '205ac7eac7a2ad1827a0d38e8d25a41b', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 14:14:19', '2018-04-10 15:40:23', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523340859771_qrcode.png');INSERT INTO `th_television` VALUES ('64', '宣城市广播电视台', '宣城市广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '5d6c48ce9ad82fb7f757d2302b1cd887', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 14:15:04', '2018-04-10 14:15:18', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523340904792_qrcode.png');INSERT INTO `th_television` VALUES ('65', '菏泽市牡丹电视台', '牡丹区电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '2743d860455a76230d199d3372fd5544', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 14:16:11', '2018-04-10 14:16:27', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523340971390_qrcode.png');INSERT INTO `th_television` VALUES ('66', '廊坊广播电视台', '廊坊广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '97a2934801296f2c1cbdde9acfe25571', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 14:27:06', '2018-04-10 14:27:21', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523341626876_qrcode.png');INSERT INTO `th_television` VALUES ('67', '西峡广播电视台', '西峡广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '59286a0d41fc459478da1c5db6619196', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 14:28:11', '2018-04-10 14:28:26', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523341691364_qrcode.png');INSERT INTO `th_television` VALUES ('68', '法库县广播电视台', '法库县广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '6fac1b6bdfd08a494c4927b0c37644b9', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 14:29:17', '2018-04-10 14:29:32', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523341757352_qrcode.png');INSERT INTO `th_television` VALUES ('69', '曹县广播电视台', '曹县广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '6b83a867426be90d8d307a3cb882f496', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 14:30:15', '2018-04-10 14:30:29', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523341815627_qrcode.png');INSERT INTO `th_television` VALUES ('70', '佛山市电视台', '佛山市电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'fc5e8fa5e320c6030d03bba4f474e0ad', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 14:30:51', '2018-04-10 14:31:05', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523341851467_qrcode.png');INSERT INTO `th_television` VALUES ('71', '丹阳市广播电视台', '丹阳广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '94dc1a09eb1d168a99b29d4fc8bbc4a5', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 14:31:54', '2018-04-10 14:32:33', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523341914734_qrcode.png');INSERT INTO `th_television` VALUES ('72', '鄂尔多斯市广电传媒集团公司', '鄂尔多斯广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '6e9e63c84b059cc7e537f1cec3cb68bb', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 14:33:01', '2018-04-10 14:33:14', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523341981821_qrcode.png');INSERT INTO `th_television` VALUES ('73', '临漳人民广播电台', '临漳人民广播电台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '43fe1a6fb72654c69019e9e0de3ba8ab', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 14:34:02', '2018-04-10 14:34:15', '1', '3', '12', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523342042701_qrcode.png');INSERT INTO `th_television` VALUES ('74', '东台市广播电视台', '东台广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'a54a982110a142a2936615a44791ad9b', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 14:35:12', '2018-04-10 14:35:25', '1', '3', '19', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523342113279_qrcode.png');INSERT INTO `th_television` VALUES ('75', '山东兖州广播电视台', '兖州广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '553e7c6f3f708afabc088d129c2b4062', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 15:21:05', '2018-04-10 15:36:16', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523344865872_qrcode.png');INSERT INTO `th_television` VALUES ('76', '辽宁绥中广播电视台', '绥中广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '4ac49456eaff199bafa8ae65f29da2da', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 15:37:47', '2018-04-10 15:38:00', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523345867867_qrcode.png');INSERT INTO `th_television` VALUES ('77', '桃江县广电传媒产业有限公司', '桃江广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'd3946bab14c12147e91dffb01f91c004', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 15:42:06', '2018-04-10 15:42:23', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523346126139_qrcode.png');INSERT INTO `th_television` VALUES ('78', '济南广播电视台', '济南广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '1b5d6e08df1770ee78a35c5deb2d5716', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 15:42:59', '2018-04-10 15:43:13', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523346179313_qrcode.png');INSERT INTO `th_television` VALUES ('79', '兰州星广电影视传媒集团有限公司', '兰州广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '8b8851e334d632104b606c70c17cfe35', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 15:43:55', '2018-04-10 15:44:28', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523346235726_qrcode.png');INSERT INTO `th_television` VALUES ('80', '福建泉州晋江电视台', '晋江市电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '0063ed44467c96f7187ea0b91ea406d1', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 15:49:23', '2018-04-10 15:49:37', '1', '3', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523346563788_qrcode.png');INSERT INTO `th_television` VALUES ('81', '河北邯郸馆陶电视台', '馆陶县电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'fe95b7b5ab1215d151d32d9d0fcd3006', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 15:50:17', '2018-04-10 15:50:29', '1', '3', '12', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523346617925_qrcode.png');INSERT INTO `th_television` VALUES ('82', '鹤壁市电视台', '鹤壁市电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '60e7dfe7dd6c329442ad93a6479aef42', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 15:51:24', '2018-04-10 15:51:42', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523346684434_qrcode.png');INSERT INTO `th_television` VALUES ('83', '辽宁抚顺电视台', '抚顺市电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'fc5e8fa5e320c6030d03bba4f474e0ad', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 15:52:11', '2018-04-10 15:52:39', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523346732731_qrcode.png');INSERT INTO `th_television` VALUES ('84', '新乡广播电视台', '新乡广播电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '59286a0d41fc459478da1c5db6619196', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-10 15:53:03', '2018-04-10 15:53:18', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523346783183_qrcode.png');INSERT INTO `th_television` VALUES ('85', '邯郸永年区电视台', '永年区电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', 'ebb5caa985c4f9587484cd8c98533f4a', '0', '0', '0.00', '100', '55', '55', '100', '2018-04-10 15:53:54', '2018-04-10 15:54:06', '1', '3', '12', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523346834133_qrcode.png');INSERT INTO `th_television` VALUES ('86', '河南漯河市电视台', '漯河市电视台', 'http://shop.100ytv.com/uploads/image/touxiang.png', '1be18367b2bc72d28125324e7c25ecfb', '0', '0', '0.00', '100', '35', '35', '100', '2018-04-16 10:02:15', '2018-04-16 10:02:34', '1', '2', '-1', '0.00', '0.00', '0.00', '0.00', 'http://shop.100ytv.com/qrcode/logo/1523844135751_qrcode.png');CREATE TABLE `th_television_earnings` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`tv_id` int(11) NOT NULL COMMENT '电视台id',
`give_gift_id` int(11) NOT NULL COMMENT '送礼记录id',
`anchor_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '主播id',
`cash_money` decimal(11,2) NOT NULL DEFAULT '0.00' COMMENT '电视台收益额',
`e_ticket` int(11) NOT NULL DEFAULT '0' COMMENT '赏票数量',
`tv_dashang_scale` int(11) NOT NULL DEFAULT '100' COMMENT '电视台直播收益百分比',
`member_type` tinyint(3) NOT NULL DEFAULT '1' COMMENT '产生收益对象:1主播;2商户',
`create_time` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `Revenue` (`cash_money`),
KEY `tv_id` (`tv_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;CREATE TABLE `th_television_relation` (
`tv_id` int(11) NOT NULL COMMENT '电视台id',
`gift_ratio` decimal(4,1) NOT NULL COMMENT '自己的礼物比例',
`shop_ratio` decimal(4,1) NOT NULL COMMENT '自己的销售推广比例',
`city_tv_id` int(11) NOT NULL,
`city_gift_ratio` decimal(4,1) NOT NULL COMMENT '上缴市礼物比例',
`city_shop_ratio` decimal(4,1) NOT NULL COMMENT '上缴市推广比例',
`province_tv_id` int(11) NOT NULL COMMENT '省电视台',
`province_gift_ratio` decimal(4,1) NOT NULL COMMENT '上缴省礼物比例',
`province_shop_ratio` decimal(4,1) NOT NULL COMMENT '上缴省推广比例',
KEY `tv_id` (`tv_id`,`city_tv_id`,`province_tv_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;INSERT INTO `th_television_relation` VALUES ('1', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('2', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('3', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('4', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('5', '50.0', '50.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('6', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('7', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('8', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('9', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('10', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('11', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('12', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('13', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('14', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('15', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('16', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('17', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('18', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('19', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('20', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('21', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('22', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('23', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('24', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('25', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('26', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('27', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('28', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('29', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('30', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('31', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('32', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('33', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('34', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('35', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('36', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('37', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('38', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('39', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('40', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('41', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('42', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('43', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('44', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('45', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('46', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('47', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('48', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('49', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('50', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('51', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('52', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('53', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('54', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('55', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('56', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('57', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('58', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('59', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('60', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('61', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('62', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('63', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('64', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('65', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('66', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('67', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('68', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('69', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('70', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('71', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('72', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('73', '55.0', '55.0', '12', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('74', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('75', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('76', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('77', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('78', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('79', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('80', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('81', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('82', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('83', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('84', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('85', '55.0', '55.0', '0', '0.0', '0.0', '0', '0.0', '0.0');INSERT INTO `th_television_relation` VALUES ('86', '35.0', '35.0', '0', '0.0', '0.0', '0', '0.0', '0.0');CREATE TABLE `th_text` (
`text_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(100) NOT NULL COMMENT '标题',
`content` longtext NOT NULL,
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`is_delete` tinyint(4) NOT NULL DEFAULT '0' COMMENT '1删除',
PRIMARY KEY (`text_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;CREATE TABLE `th_trade_record` (
`trade_id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`order_no` varchar(32) NOT NULL COMMENT '订单号',
`type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '交易类型:1商城;2充值',
`pay_no` varchar(32) NOT NULL DEFAULT '' COMMENT '订单记录',
`amount` decimal(10,2) NOT NULL COMMENT '交易金额',
`pay_type` varchar(32) NOT NULL DEFAULT '' COMMENT '支付方式',
`pay_return` text NOT NULL COMMENT '支付返回值',
`intime` datetime NOT NULL,
PRIMARY KEY (`trade_id`),
KEY `member_id` (`member_id`,`type`,`pay_type`,`intime`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;INSERT INTO `th_trade_record` VALUES ('20', '6', '20180410105715879440', '2', '20180410105715879440A1523329035', '0.01', '', '{\"id\":\"evt_401180410105739693798603\",\"created\":1523329058,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_qjnDWHLOWzT8uX94C05Ce9SS\",\"object\":\"charge\",\"created\":1523329035,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"20180410105715879440A1523329035\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088022688413525\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"176****2898\"},\"time_paid\":1523329058,\"time_expire\":1523415435,\"time_settle\":null,\"transaction_no\":\"2018041021001004520585140439\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_qjnDWHLOWzT8uX94C05Ce9SS\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_Xv1WX9vjvL4K18uHO4jfvPSK\",\"pending_webhooks\":0}', '2018-04-10 10:57:39');INSERT INTO `th_trade_record` VALUES ('21', '5', '20180412092536579326', '2', '20180412092536579326A1523496336', '0.01', '', '{\"id\":\"evt_401180412092547038074702\",\"created\":1523496346,\"livemode\":true,\"type\":\"charge.succeeded\",\"data\":{\"object\":{\"id\":\"ch_mrHqbP98qDG8bDmTGODGuHq9\",\"object\":\"charge\",\"created\":1523496336,\"livemode\":true,\"paid\":true,\"refunded\":false,\"reversed\":false,\"app\":\"app_CC8WDGjrLGyH94eP\",\"channel\":\"alipay\",\"order_no\":\"20180412092536579326A1523496336\",\"client_ip\":\"172.16.31.10\",\"amount\":1,\"amount_settle\":1,\"currency\":\"cny\",\"subject\":\"\\u767e\\u53f0\\u4e91\\u8ba2\\u5355\",\"body\":\"Your Body\",\"extra\":{\"buyer_user_id\":\"2088022688413525\",\"fund_bill_list\":[{\"amount\":1,\"fundChannel\":\"ALIPAYACCOUNT\"}],\"buyer_account\":\"176****2898\"},\"time_paid\":1523496345,\"time_expire\":1523582736,\"time_settle\":null,\"transaction_no\":\"2018041221001004520591574105\",\"refunds\":{\"object\":\"list\",\"url\":\"\\/v1\\/charges\\/ch_mrHqbP98qDG8bDmTGODGuHq9\\/refunds\",\"has_more\":false,\"data\":[]},\"amount_refunded\":0,\"failure_code\":null,\"failure_msg\":null,\"metadata\":[],\"credential\":[],\"description\":null}},\"object\":\"event\",\"request\":\"iar_1enfzH0mX5K4GqbLC8y5ebLO\",\"pending_webhooks\":0}', '2018-04-12 09:25:47');CREATE TABLE `th_video` (
`video_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(200) NOT NULL COMMENT '标题',
`member_id` int(11) NOT NULL COMMENT '用户id',
`video_img` varchar(500) NOT NULL COMMENT '视频封面',
`url` varchar(500) NOT NULL COMMENT '视频地址',
`watch_nums` int(11) NOT NULL DEFAULT '0' COMMENT '观看数',
`tuijian` int(11) NOT NULL DEFAULT '0' COMMENT '1表示推荐0未推荐',
`content` varchar(255) NOT NULL COMMENT '视频简介',
`comments` int(11) NOT NULL DEFAULT '0' COMMENT '评论数',
`uptime` int(11) NOT NULL,
`date` varchar(20) NOT NULL COMMENT '日期',
`share` int(11) NOT NULL DEFAULT '0' COMMENT '分享数',
`zan` int(11) NOT NULL DEFAULT '0' COMMENT '点赞数',
`intime` int(11) NOT NULL,
`is_del` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否删除 1:正常 2:删除',
`category_id` varchar(30) NOT NULL COMMENT '分类id,已,隔开',
`is_shenhe` tinyint(3) NOT NULL DEFAULT '1' COMMENT '1:待审核 2:审核通过 3:失败',
`why` varchar(200) NOT NULL DEFAULT '' COMMENT '审核失败原因',
PRIMARY KEY (`video_id`),
UNIQUE KEY `video_id` (`video_id`) USING BTREE,
KEY `member_id` (`member_id`,`is_del`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='视频表';INSERT INTO `th_video` VALUES ('1', '测试', '5', 'http://shop.100ytv.com/uploads//image/video/20180410/6559d7d0301eed6cc08742721dc9bd48.png', 'http://msplay.qqyswh.com/o_1camlcm1h1kegkravlm1jq91mm19.mp4', '4', '0', '测试', '0', '1523502598', '', '0', '0', '1523326914', '2', '', '2', '');INSERT INTO `th_video` VALUES ('2', '0023', '5', 'http://shop.100ytv.com/uploads//image/video/20180412/20abe129b074f749a2b34687a568c071.png', 'http://msplay.qqyswh.com/o_1carth8eq1tf2k0kvs37mo1a1d9.mp4', '2', '0', '1223', '0', '0', '', '0', '0', '1523503169', '2', '', '2', '');INSERT INTO `th_video` VALUES ('3', '003', '0', 'http://shop.100ytv.com/uploads//image/video/20180413/a40eb34ab34cd8611f6d20d0fdb6108e.png', 'http://dspxplay.tstmobile.com/o_1caud5slv1ijm6qtia14pq1cmf9.mp4', '0', '0', '1223', '0', '0', '2018-04-13 10:32', '0', '0', '1523586758', '2', '', '1', '');INSERT INTO `th_video` VALUES ('4', '洛安集团', '5', 'http://shop.100ytv.com/uploads//image/video/20180413/f6ebe7119af6fee450744b4c8f85a24a.png', 'http://msplay.qqyswh.com/o_1caug4bkirsv1peu1mgm1sub4h69.mp4', '4', '0', '洛安集团', '0', '1523590180', '', '0', '0', '1523589822', '1', '', '2', '');INSERT INTO `th_video` VALUES ('5', '百台云电商直播平台', '5', 'http://shop.100ytv.com/uploads//image/video/20180413/e28a2a2013446655d701520199653c31.png', 'http://msplay.qqyswh.com/o_1caugkj621fcd1hmgr3a6mr127a9.mp4', '2', '0', '百台云电商直播平台', '0', '0', '', '0', '0', '1523590224', '1', '', '2', '');CREATE TABLE `th_withdraw` (
`withdraw_id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`user_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '2电视台角色',
`k` int(11) NOT NULL COMMENT '提现的龙票',
`money` decimal(10,2) NOT NULL COMMENT '获得的金额',
`status` tinyint(3) NOT NULL DEFAULT '1' COMMENT '提现状态:1申请中,2驳回,3已返现',
`relname` varchar(255) DEFAULT '' COMMENT '账号用户的真实姓名',
`withdraw_type` varchar(60) NOT NULL COMMENT '提现到那儿',
`withdraw_way` varchar(60) NOT NULL COMMENT '提现账号',
`intime` int(11) NOT NULL,
`date` varchar(20) NOT NULL,
`uptime` int(11) NOT NULL,
`cash_time` int(11) NOT NULL COMMENT '返现时间',
`type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1钻石提现;2余额提现',
PRIMARY KEY (`withdraw_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='提现记录表';CREATE TABLE `th_work_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`table` varchar(32) NOT NULL COMMENT '操作表',
`record_id` int(11) NOT NULL COMMENT '操作的记录id',
`user_id` int(11) NOT NULL COMMENT '操作用户id',
`title` varchar(100) NOT NULL COMMENT '操作记录说明',
`intime` datetime NOT NULL COMMENT '操作时间',
`type` tinyint(3) NOT NULL DEFAULT '1' COMMENT '1常规修改;2修改账号和密码',
`user_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '后台用户;2前端用户',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=123 DEFAULT CHARSET=utf8;INSERT INTO `th_work_log` VALUES ('34', 'order_merchants', '22', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 11:01:34', '1', '2');INSERT INTO `th_work_log` VALUES ('35', 'order_merchants', '22', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-10 11:03:00', '1', '2');INSERT INTO `th_work_log` VALUES ('36', 'order_merchants', '24', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 11:19:15', '1', '2');INSERT INTO `th_work_log` VALUES ('37', 'order_merchants', '24', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-10 11:19:20', '1', '2');INSERT INTO `th_work_log` VALUES ('38', 'order_refund', '6', '5', '修改了售后订单状态,原订单状态是:等待审核', '2018-04-10 11:21:16', '1', '2');INSERT INTO `th_work_log` VALUES ('39', 'order_refund', '6', '5', '修改了售后订单状态,原订单状态是:接受审核', '2018-04-10 11:21:22', '1', '2');INSERT INTO `th_work_log` VALUES ('40', 'order_merchants', '26', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 11:26:34', '1', '2');INSERT INTO `th_work_log` VALUES ('41', 'order_merchants', '26', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-10 11:26:37', '1', '2');INSERT INTO `th_work_log` VALUES ('42', 'order_refund', '7', '5', '修改了售后订单状态,原订单状态是:等待审核', '2018-04-10 11:27:20', '1', '2');INSERT INTO `th_work_log` VALUES ('43', 'order_refund', '7', '5', '修改了售后订单状态,原订单状态是:接受审核', '2018-04-10 11:27:25', '1', '2');INSERT INTO `th_work_log` VALUES ('44', 'order_merchants', '27', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 12:57:47', '1', '2');INSERT INTO `th_work_log` VALUES ('45', 'order_merchants', '27', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-10 12:57:51', '1', '2');INSERT INTO `th_work_log` VALUES ('46', 'order_merchants', '28', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 15:21:03', '1', '2');INSERT INTO `th_work_log` VALUES ('47', 'order_merchants', '28', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-10 15:21:25', '1', '2');INSERT INTO `th_work_log` VALUES ('48', 'order_merchants', '29', '10', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 15:42:47', '1', '1');INSERT INTO `th_work_log` VALUES ('49', 'order_merchants', '29', '10', '修改了订单状态,原订单状态是:待发货', '2018-04-10 15:43:57', '1', '1');INSERT INTO `th_work_log` VALUES ('50', 'order_merchants', '30', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 15:48:57', '1', '2');INSERT INTO `th_work_log` VALUES ('51', 'order_merchants', '30', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-10 15:49:01', '1', '2');INSERT INTO `th_work_log` VALUES ('52', 'order_merchants', '31', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 15:51:14', '1', '2');INSERT INTO `th_work_log` VALUES ('53', 'order_merchants', '31', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-10 15:51:18', '1', '2');INSERT INTO `th_work_log` VALUES ('54', 'order_merchants', '33', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 15:59:23', '1', '2');INSERT INTO `th_work_log` VALUES ('55', 'order_merchants', '33', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-10 15:59:28', '1', '2');INSERT INTO `th_work_log` VALUES ('56', 'order_merchants', '35', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 16:01:26', '1', '2');INSERT INTO `th_work_log` VALUES ('57', 'order_merchants', '35', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-10 16:01:30', '1', '2');INSERT INTO `th_work_log` VALUES ('58', 'order_merchants', '36', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 16:03:05', '1', '2');INSERT INTO `th_work_log` VALUES ('59', 'order_merchants', '36', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-10 16:03:12', '1', '2');INSERT INTO `th_work_log` VALUES ('60', 'order_merchants', '32', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 16:04:02', '1', '2');INSERT INTO `th_work_log` VALUES ('61', 'order_merchants', '32', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-10 16:04:14', '1', '2');INSERT INTO `th_work_log` VALUES ('62', 'order_merchants', '42', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 16:46:04', '1', '2');INSERT INTO `th_work_log` VALUES ('63', 'order_merchants', '42', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-10 16:46:11', '1', '2');INSERT INTO `th_work_log` VALUES ('64', 'order_merchants', '43', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 16:50:39', '1', '2');INSERT INTO `th_work_log` VALUES ('65', 'order_merchants', '43', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-10 16:50:46', '1', '2');INSERT INTO `th_work_log` VALUES ('66', 'order_merchants', '44', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 16:52:27', '1', '2');INSERT INTO `th_work_log` VALUES ('67', 'order_merchants', '44', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-10 16:52:36', '1', '2');INSERT INTO `th_work_log` VALUES ('68', 'order_merchants', '45', '10', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 17:47:45', '1', '1');INSERT INTO `th_work_log` VALUES ('69', 'order_merchants', '45', '10', '修改了订单状态,原订单状态是:待发货', '2018-04-10 17:51:42', '1', '1');INSERT INTO `th_work_log` VALUES ('70', 'order_merchants', '47', '10', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 18:55:18', '1', '1');INSERT INTO `th_work_log` VALUES ('71', 'order_merchants', '47', '10', '修改了订单状态,原订单状态是:待发货', '2018-04-10 18:55:29', '1', '1');INSERT INTO `th_work_log` VALUES ('72', 'order_merchants', '48', '10', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 19:31:40', '1', '1');INSERT INTO `th_work_log` VALUES ('73', 'order_merchants', '48', '10', '修改了订单状态,原订单状态是:待发货', '2018-04-10 19:31:45', '1', '1');INSERT INTO `th_work_log` VALUES ('74', 'order_merchants', '46', '10', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 19:44:16', '1', '1');INSERT INTO `th_work_log` VALUES ('75', 'order_merchants', '46', '10', '修改了订单状态,原订单状态是:待发货', '2018-04-10 19:44:23', '1', '1');INSERT INTO `th_work_log` VALUES ('76', 'order_merchants', '49', '10', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 19:51:16', '1', '1');INSERT INTO `th_work_log` VALUES ('77', 'order_merchants', '49', '10', '修改了订单状态,原订单状态是:待发货', '2018-04-10 19:51:27', '1', '1');INSERT INTO `th_work_log` VALUES ('78', 'order_merchants', '50', '10', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-10 20:11:47', '1', '1');INSERT INTO `th_work_log` VALUES ('79', 'order_merchants', '50', '10', '修改了订单状态,原订单状态是:待发货', '2018-04-10 20:11:55', '1', '1');INSERT INTO `th_work_log` VALUES ('80', 'order_merchants', '51', '10', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-11 11:37:26', '1', '1');INSERT INTO `th_work_log` VALUES ('81', 'order_merchants', '51', '10', '修改了订单状态,原订单状态是:待发货', '2018-04-11 11:37:32', '1', '1');INSERT INTO `th_work_log` VALUES ('82', 'order_merchants', '53', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-11 12:38:31', '1', '2');INSERT INTO `th_work_log` VALUES ('83', 'order_merchants', '53', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-11 12:38:34', '1', '2');INSERT INTO `th_work_log` VALUES ('84', 'order_merchants', '54', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-11 12:54:50', '1', '2');INSERT INTO `th_work_log` VALUES ('85', 'order_merchants', '54', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-11 12:54:54', '1', '2');INSERT INTO `th_work_log` VALUES ('86', 'order_refund', '10', '10', '修改了售后订单状态,原订单状态是:等待审核', '2018-04-11 14:05:27', '1', '1');INSERT INTO `th_work_log` VALUES ('87', 'order_refund', '11', '10', '修改了售后订单状态,原订单状态是:等待审核', '2018-04-11 14:12:02', '1', '1');INSERT INTO `th_work_log` VALUES ('88', 'order_refund', '9', '10', '修改了售后订单状态,原订单状态是:等待审核', '2018-04-11 14:43:10', '1', '1');INSERT INTO `th_work_log` VALUES ('89', 'order_merchants', '57', '10', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-11 14:43:42', '1', '1');INSERT INTO `th_work_log` VALUES ('90', 'order_merchants', '57', '10', '修改了订单状态,原订单状态是:待发货', '2018-04-11 14:43:48', '1', '1');INSERT INTO `th_work_log` VALUES ('91', 'order_refund', '12', '10', '修改了售后订单状态,原订单状态是:等待审核', '2018-04-11 14:48:22', '1', '1');INSERT INTO `th_work_log` VALUES ('92', 'order_merchants', '62', '10', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-11 14:55:39', '1', '1');INSERT INTO `th_work_log` VALUES ('93', 'order_merchants', '62', '10', '修改了订单状态,原订单状态是:待发货', '2018-04-11 14:55:44', '1', '1');INSERT INTO `th_work_log` VALUES ('94', 'order_refund', '13', '10', '修改了售后订单状态,原订单状态是:等待审核', '2018-04-11 14:57:14', '1', '1');INSERT INTO `th_work_log` VALUES ('95', 'order_refund', '13', '10', '修改了售后订单状态,原订单状态是:等待审核', '2018-04-11 15:04:54', '1', '1');INSERT INTO `th_work_log` VALUES ('96', 'order_refund', '13', '10', '修改了售后订单状态,原订单状态是:接受审核', '2018-04-11 15:05:13', '1', '1');INSERT INTO `th_work_log` VALUES ('97', 'order_refund', '10', '10', '修改了售后订单状态,原订单状态是:等待审核', '2018-04-11 15:06:40', '1', '1');INSERT INTO `th_work_log` VALUES ('98', 'order_refund', '10', '10', '修改了售后订单状态,原订单状态是:接受审核', '2018-04-11 15:07:53', '1', '1');INSERT INTO `th_work_log` VALUES ('99', 'order_merchants', '43', '10', '修改了物流信息:原物流公司:CCES快递;', '2018-04-11 15:14:44', '1', '1');INSERT INTO `th_work_log` VALUES ('100', 'order_merchants', '43', '10', '修改了物流信息:原物流公司:高铁速递;', '2018-04-11 15:15:50', '1', '1');INSERT INTO `th_work_log` VALUES ('101', 'order_merchants', '59', '10', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-11 15:22:43', '1', '1');INSERT INTO `th_work_log` VALUES ('102', 'order_merchants', '59', '10', '修改了订单状态,原订单状态是:待发货', '2018-04-11 15:22:51', '1', '1');INSERT INTO `th_work_log` VALUES ('103', 'order_merchants', '58', '10', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-11 15:23:44', '1', '1');INSERT INTO `th_work_log` VALUES ('104', 'order_merchants', '58', '10', '修改了订单状态,原订单状态是:待发货', '2018-04-11 15:23:53', '1', '1');INSERT INTO `th_work_log` VALUES ('105', 'order_merchants', '63', '10', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-11 16:11:15', '1', '1');INSERT INTO `th_work_log` VALUES ('106', 'order_merchants', '63', '10', '修改了订单状态,原订单状态是:待发货', '2018-04-11 16:11:19', '1', '1');INSERT INTO `th_work_log` VALUES ('107', 'order_merchants', '64', '10', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-11 16:16:58', '1', '1');INSERT INTO `th_work_log` VALUES ('108', 'order_merchants', '64', '10', '修改了订单状态,原订单状态是:待发货', '2018-04-11 16:17:06', '1', '1');INSERT INTO `th_work_log` VALUES ('109', 'order_merchants', '65', '10', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-11 16:40:38', '1', '1');INSERT INTO `th_work_log` VALUES ('110', 'order_merchants', '65', '10', '修改了订单状态,原订单状态是:待发货', '2018-04-11 16:40:45', '1', '1');INSERT INTO `th_work_log` VALUES ('111', 'order_merchants', '66', '10', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-11 16:56:45', '1', '1');INSERT INTO `th_work_log` VALUES ('112', 'order_merchants', '66', '10', '修改了订单状态,原订单状态是:待发货', '2018-04-11 16:56:51', '1', '1');INSERT INTO `th_work_log` VALUES ('113', 'order_merchants', '70', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-12 09:15:04', '1', '2');INSERT INTO `th_work_log` VALUES ('114', 'order_merchants', '70', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-12 09:15:13', '1', '2');INSERT INTO `th_work_log` VALUES ('115', 'order_merchants', '69', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-12 09:15:26', '1', '2');INSERT INTO `th_work_log` VALUES ('116', 'order_merchants', '69', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-12 09:15:29', '1', '2');INSERT INTO `th_work_log` VALUES ('117', 'order_merchants', '68', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-12 09:15:40', '1', '2');INSERT INTO `th_work_log` VALUES ('118', 'order_merchants', '68', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-12 09:15:43', '1', '2');INSERT INTO `th_work_log` VALUES ('119', 'order_merchants', '111', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-12 15:17:51', '1', '2');INSERT INTO `th_work_log` VALUES ('120', 'order_merchants', '111', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-12 15:17:58', '1', '2');INSERT INTO `th_work_log` VALUES ('121', 'order_merchants', '113', '5', '修改了物流信息:原物流公司:;原物流单号是:;', '2018-04-12 15:53:00', '1', '2');INSERT INTO `th_work_log` VALUES ('122', 'order_merchants', '113', '5', '修改了订单状态,原订单状态是:待发货', '2018-04-12 15:53:03', '1', '2'); |
<reponame>deepest-stack/backend<filename>graph_algorithms/sql/v4/louvain.sql
CREATE OR REPLACE FUNCTION public.gen_rand_num(
IN seed BIGINT
) RETURNS INTEGER AS $$
BEGIN
RETURN (48271 * seed) % 255;
END;
$$ LANGUAGE plpgsql IMMUTABLE;
CREATE OR REPLACE FUNCTION public.modularity(
IN norm REAL
) RETURNS REAL AS $$
DECLARE
q REAL;
BEGIN
SELECT SUM(num_edges - tot_degree/norm/2*tot_degree)/2/norm INTO q FROM community_info;
RETURN q;
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION public.convert2canonical(
IN table2convert VARCHAR
) RETURNS VOID AS $$
BEGIN
EXECUTE
'CREATE TEMP TABLE tmp_t1 AS
SELECT t1.src_id, t1.dst_id, SUM(weight) AS weight FROM
(SELECT src_id, dst_id, weight FROM ' || table2convert || ' WHERE src_id <= dst_id
UNION
SELECT dst_id AS src_id, src_id AS dst_id, weight FROM ' || table2convert || ' WHERE src_id > dst_id) AS t1
GROUP BY src_id, dst_id
DISTRIBUTED BY (src_id)';
EXECUTE 'DROP TABLE ' || table2convert;
EXECUTE 'ALTER TABLE tmp_t1 RENAME TO ' || table2convert;
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION public.send_msg(
IN current_loop INTEGER
) RETURNS VOID AS $$
BEGIN
-- v_send_msg contains vertex that can send msg and its community
-- v_receive_msg contains vertex that can receive msg, i.e. vertex whose community has not update yet
-- odd --> even
IF current_loop % 2 = 0 THEN
CREATE TEMP TABLE v_send_msg AS
SELECT id, cid FROM vertex_state WHERE rand_num % 2 = 1
DISTRIBUTED BY (id);
CREATE TEMP TABLE v_receive_msg AS
SELECT id FROM vertex_state WHERE rand_num % 2 = 0 AND community_updated = 0
DISTRIBUTED BY (id);
-- even --> odd
ELSE
CREATE TEMP TABLE v_send_msg AS
SELECT id, cid FROM vertex_state WHERE rand_num % 2 = 0
DISTRIBUTED BY (id);
CREATE TEMP TABLE v_receive_msg AS
SELECT id FROM vertex_state WHERE rand_num % 2 = 1 AND community_updated = 0
DISTRIBUTED BY (id);
END IF;
-- message_tmp contains vertex that can receive msg and the new communities to choose from
CREATE TEMP TABLE message_tmp AS
SELECT DISTINCT t1.id, t1.cid FROM
(SELECT louvain_edges.src_id AS id, v_send_msg.cid FROM
v_receive_msg JOIN louvain_edges ON louvain_edges.src_id = v_receive_msg.id
JOIN v_send_msg ON v_send_msg.id = louvain_edges.dst_id
UNION
SELECT louvain_edges_mirror.dst_id AS id, v_send_msg.cid FROM
v_receive_msg JOIN louvain_edges_mirror ON louvain_edges_mirror.dst_id = v_receive_msg.id
JOIN v_send_msg ON v_send_msg.id = louvain_edges_mirror.src_id) AS t1
DISTRIBUTED BY (id);
DROP TABLE v_send_msg, v_receive_msg;
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION public.num_edges_v2c(
) RETURNS VOID AS $$
BEGIN
CREATE TEMP TABLE message_with_num_edges_tmp AS
SELECT t1.id, t1.cid, SUM(t1.weight) AS num_edges FROM
(SELECT message_tmp.id, message_tmp.cid, weight FROM
message_tmp JOIN louvain_edges ON message_tmp.id = louvain_edges.src_id
JOIN vertex_state ON louvain_edges.dst_id = vertex_state.id AND message_tmp.cid = vertex_state.cid
UNION
SELECT message_tmp.id, message_tmp.cid, weight FROM
message_tmp JOIN louvain_edges_mirror ON message_tmp.id = louvain_edges_mirror.dst_id
JOIN vertex_state ON louvain_edges_mirror.src_id = vertex_state.id AND message_tmp.cid = vertex_state.cid) AS t1
GROUP BY t1.id, t1.cid
DISTRIBUTED BY (id);
DROP TABLE message_tmp;
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION public.select_opt_community(
IN tot_weight REAL
) RETURNS VOID AS $$
BEGIN
CREATE TEMP TABLE delta_q_tmp AS
SELECT id,
message_with_num_edges_tmp.cid,
-- delta Q
(message_with_num_edges_tmp.num_edges-tot_degree/tot_weight*degree)/2/tot_weight AS q,
-- num_edges to community, used to update num_edges within community
message_with_num_edges_tmp.num_edges,
-- degree of vertex, used to update tot_degree of community
degree FROM
message_with_num_edges_tmp JOIN vertex_state USING (id)
JOIN community_info ON message_with_num_edges_tmp.cid = community_info.cid
DISTRIBUTED BY (id);
DROP TABLE message_with_num_edges_tmp;
-- select optimal community based on delta Q
CREATE TEMP TABLE opt_community_tmp AS
SELECT DISTINCT ON(t1.id) t1.id, cid, num_edges, degree FROM
(SELECT id, MAX(q) AS max_q FROM delta_q_tmp GROUP BY id HAVING MAX(q) > 0) AS t1
JOIN delta_q_tmp ON t1.id = delta_q_tmp.id AND ABS(max_q-q)<1E-6
DISTRIBUTED BY (id);
DROP TABLE delta_q_tmp;
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION public.update_community_info(
) RETURNS VOID AS $$
BEGIN
ALTER TABLE community_info RENAME TO old_community_info;
-- delete community(vertex) that has been merged
CREATE TEMP TABLE community_info AS
SELECT old_community_info.* FROM
old_community_info LEFT JOIN opt_community_tmp
ON old_community_info.cid = opt_community_tmp.id
WHERE opt_community_tmp.id IS NULL
DISTRIBUTED BY (cid);
-- update num_edges & tot_degree of community
UPDATE community_info SET num_edges=community_info.num_edges+t3.num_edges,
tot_degree=community_info.tot_degree+t3.degree FROM
(SELECT t1.cid, t1.num_edges+COALESCE(t2.num_edges, 0) AS num_edges, t1.degree FROM
(SELECT cid, SUM(num_edges) AS num_edges, SUM(degree) AS degree
FROM opt_community_tmp GROUP BY cid) AS t1
LEFT JOIN
-- vertices assigned to same community will additionally increase number of edges within community
(SELECT opt_community_tmp.cid, SUM(weight) AS num_edges
FROM opt_community_tmp JOIN louvain_edges ON opt_community_tmp.id = louvain_edges.src_id
JOIN opt_community_tmp AS t1 ON louvain_edges.dst_id = t1.id AND opt_community_tmp.cid = t1.cid
GROUP BY opt_community_tmp.cid) AS t2
USING (cid)) AS t3 WHERE community_info.cid = t3.cid;
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION public.update_vertex_state(
) RETURNS VOID AS $$
BEGIN
-- update community of vertex
UPDATE vertex_state SET cid = opt_community_tmp.cid
FROM opt_community_tmp WHERE vertex_state.id = opt_community_tmp.id;
-- update state of vertex whose community has updated
UPDATE vertex_state SET community_updated = 1
WHERE cid IN (SELECT DISTINCT cid FROM opt_community_tmp);
-- TODO performance compare with create new table
-- DONE no significant difference
UPDATE vertex_state SET rand_num = public.gen_rand_num(rand_num::BIGINT);
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION public.louvain_stage1(
IN max_iter_stage1 INTEGER,
IN max_iter_no_change_stage1 INTEGER,
IN tot_weight REAL
) RETURNS VOID AS $$
DECLARE
current_iter_stage1 INTEGER := 1;
iters_no_change INTEGER := 0;
num_vertices_changed INTEGER;
current_modularity REAL;
new_modularity REAL;
BEGIN
SELECT public.modularity(tot_weight) INTO current_modularity;
WHILE current_iter_stage1 <= max_iter_stage1 LOOP
-- send message
PERFORM public.send_msg(current_iter_stage1);
-- attach num_edges to message
PERFORM public.num_edges_v2c();
-- select community
PERFORM public.select_opt_community(tot_weight);
-- check vertex need to update
SELECT COUNT(1) INTO num_vertices_changed FROM opt_community_tmp;
IF num_vertices_changed < 1 THEN
iters_no_change := iters_no_change + 1;
-- no vertex update in last max_iter_no_change_stage1 iterations
IF iters_no_change >= max_iter_no_change_stage1 THEN
RAISE INFO 'no vertex change community in the last % iterations, break inner loop', max_iter_no_change_stage1;
DROP TABLE opt_community_tmp;
EXIT;
END IF;
ELSE
iters_no_change := 0;
END IF;
RAISE INFO '% vertices will be assigned to new community', num_vertices_changed;
-- update community info
PERFORM public.update_community_info();
-- check modularity change
SELECT public.modularity(tot_weight) INTO new_modularity;
RAISE INFO 'current inner iteration %, modularity %', current_iter_stage1, new_modularity;
IF new_modularity < current_modularity THEN
RAISE INFO 'modularity descend, break inner loop';
-- rollback community info
DROP TABLE community_info;
ALTER TABLE old_community_info RENAME TO community_info;
DROP TABLE opt_community_tmp;
EXIT;
ELSE
current_modularity := new_modularity;
DROP TABLE old_community_info;
END IF;
-- update vertex state
PERFORM public.update_vertex_state();
DROP TABLE opt_community_tmp;
current_iter_stage1 := current_iter_stage1 + 1;
END LOOP;
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION public.update_edges(
) RETURNS VOID AS $$
BEGIN
CREATE TEMP TABLE new_louvain_edges AS
SELECT vertex_state.cid AS src_id, t1.cid AS dst_id, SUM(weight) AS weight FROM
vertex_state JOIN louvain_edges ON vertex_state.id = louvain_edges.src_id
JOIN vertex_state AS t1 ON t1.id = louvain_edges.dst_id
GROUP BY vertex_state.cid, t1.cid
DISTRIBUTED BY (src_id);
DROP TABLE louvain_edges, louvain_edges_mirror, vertex_state;
ALTER TABLE new_louvain_edges RENAME TO louvain_edges;
PERFORM public.convert2canonical('louvain_edges');
CREATE TEMP TABLE louvain_edges_mirror AS
SELECT * FROM louvain_edges DISTRIBUTED BY (dst_id);
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION public.louvain_stage2(
) RETURNS VOID AS $$
BEGIN
PERFORM public.update_edges();
CREATE TEMP TABLE vertex_state AS
SELECT
cid AS id,
tot_degree AS degree,
round(random()*256)::INTEGER AS rand_num,
cid,
0 AS community_updated
FROM community_info DISTRIBUTED BY (id);
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION public.init_louvain(
) RETURNS VOID AS $$
BEGIN
-- init vertex state
CREATE TEMP TABLE vertex_state AS
SELECT
id,
(properties::json->>'1')::INTEGER + (properties::json->>'2')::INTEGER AS degree,
round(random()*256)::INTEGER AS rand_num,
id AS cid,
0 AS community_updated
FROM public.g_v DISTRIBUTED BY (id);
-- init community info
CREATE TEMP TABLE community_info AS
SELECT
id AS cid,
0 AS num_edges,
(properties::json->>'1')::INTEGER + (properties::json->>'2')::INTEGER AS tot_degree
FROM public.g_v DISTRIBUTED BY (cid);
-- init edges
CREATE TEMP TABLE louvain_edges AS
SELECT owner_vertex AS src_id, other_vertex AS dst_id, 1 AS weight
FROM public.g_oe DISTRIBUTED BY (src_id);
PERFORM public.convert2canonical('louvain_edges');
CREATE TEMP TABLE louvain_edges_mirror AS
SELECT * FROM louvain_edges DISTRIBUTED BY (dst_id);
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION public.init_louvain(
IN weight_column VARCHAR
) RETURNS VOID AS $$
BEGIN
-- init edges
EXECUTE
'CREATE TEMP TABLE louvain_edges AS
SELECT
owner_vertex AS src_id,
other_vertex AS dst_id,
(properties::json->>' || quote_literal(weight_column) || ')::REAL AS weight
FROM public.g_oe DISTRIBUTED BY (src_id)';
PERFORM public.convert2canonical('louvain_edges');
CREATE TEMP TABLE louvain_edges_mirror AS
SELECT * FROM louvain_edges DISTRIBUTED BY (dst_id);
-- init vertex state
CREATE TEMP TABLE vertex_state AS
SELECT COALESCE(t1.src_id, t2.dst_id) AS id,
COALESCE(t1.deg, 0) + COALESCE(t2.deg, 0) AS degree,
round(random()*256)::INTEGER AS rand_num,
COALESCE(t1.src_id, t2.dst_id) AS cid,
0 AS community_updated FROM
(SELECT src_id, SUM(weight) AS deg FROM louvain_edges GROUP BY src_id) AS t1
FULL JOIN
(SELECT dst_id, SUM(weight) AS deg FROM louvain_edges_mirror GROUP BY dst_id) AS t2
ON t1.src_id = t2.dst_id
DISTRIBUTED BY (id);
-- init community info
CREATE TEMP TABLE community_info AS
SELECT id AS cid, 0 AS num_edges, degree AS tot_degree
FROM vertex_state DISTRIBUTED BY (cid);
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION public.init_louvain(
IN edge_type_column VARCHAR,
IN edge_type_value INTEGER
) RETURNS VOID AS $$
BEGIN
-- init edges
EXECUTE
'CREATE TEMP TABLE louvain_edges AS
SELECT owner_vertex AS src_id, other_vertex AS dst_id, 1 AS weight
FROM public.g_oe WHERE g_oe.' || quote_ident(edge_type_column) || ' = ' || edge_type_value ||
' DISTRIBUTED BY (src_id)';
PERFORM public.convert2canonical('louvain_edges');
CREATE TEMP TABLE louvain_edges_mirror AS
SELECT * FROM louvain_edges DISTRIBUTED BY (dst_id);
-- init vertex state
CREATE TEMP TABLE vertex_state AS
SELECT COALESCE(t1.src_id, t2.dst_id) AS id,
COALESCE(t1.deg, 0) + COALESCE(t2.deg, 0) AS degree,
round(random()*256)::INTEGER AS rand_num,
COALESCE(t1.src_id, t2.dst_id) AS cid,
0 AS community_updated FROM
(SELECT src_id, SUM(weight) AS deg FROM louvain_edges GROUP BY src_id) AS t1
FULL JOIN
(SELECT dst_id, SUM(weight) AS deg FROM louvain_edges_mirror GROUP BY dst_id) AS t2
ON t1.src_id = t2.dst_id
DISTRIBUTED BY (id);
-- init community info
CREATE TEMP TABLE community_info AS
SELECT id AS cid, 0 AS num_edges, degree AS tot_degree
FROM vertex_state DISTRIBUTED BY (cid);
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION public.init_louvain(
IN weight_column VARCHAR,
IN edge_type_column VARCHAR,
IN edge_type_value INTEGER
) RETURNS VOID AS $$
BEGIN
-- init edges
EXECUTE
'CREATE TEMP TABLE louvain_edges AS
SELECT
owner_vertex AS src_id,
other_vertex AS dst_id,
(properties::json->>' || quote_literal(weight_column) || ')::REAL AS weight
FROM public.g_oe WHERE g_oe.' || quote_ident(edge_type_column) || ' = ' || edge_type_value ||
' DISTRIBUTED BY (src_id)';
PERFORM public.convert2canonical('louvain_edges');
CREATE TEMP TABLE louvain_edges_mirror AS
SELECT * FROM louvain_edges DISTRIBUTED BY (dst_id);
-- init vertex state
CREATE TEMP TABLE vertex_state AS
SELECT COALESCE(t1.src_id, t2.dst_id) AS id,
COALESCE(t1.deg, 0) + COALESCE(t2.deg, 0) AS degree,
round(random()*256)::INTEGER AS rand_num,
COALESCE(t1.src_id, t2.dst_id) AS cid,
0 AS community_updated FROM
(SELECT src_id, SUM(weight) AS deg FROM louvain_edges GROUP BY src_id) AS t1
FULL JOIN
(SELECT dst_id, SUM(weight) AS deg FROM louvain_edges_mirror GROUP BY dst_id) AS t2
ON t1.src_id = t2.dst_id
DISTRIBUTED BY (id);
-- init community info
CREATE TEMP TABLE community_info AS
SELECT id AS cid, 0 AS num_edges, degree AS tot_degree
FROM vertex_state DISTRIBUTED BY (cid);
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION public.louvain(
IN max_iter INTEGER,
IN max_iter_stage1 INTEGER,
IN max_iter_no_change_stage1 INTEGER,
IN weight_column VARCHAR,
IN result_table_name VARCHAR
) RETURNS VOID AS $$
DECLARE
current_iter INTEGER := 1;
tot_weight REAL;
num_communities INTEGER;
BEGIN
IF weight_column IS NULL THEN
PERFORM public.init_louvain();
ELSE
PERFORM public.init_louvain(weight_column);
END IF;
SELECT SUM(weight) INTO tot_weight FROM louvain_edges;
WHILE current_iter <= max_iter LOOP
SELECT COUNT(1) INTO num_communities FROM vertex_state;
RAISE INFO 'current outer iteration %, community count %', current_iter, num_communities;
PERFORM public.louvain_stage1(max_iter_stage1, max_iter_no_change_stage1, tot_weight);
IF current_iter = 1 THEN
CREATE UNLOGGED TABLE vertex_cid AS
SELECT id, cid FROM vertex_state
DISTRIBUTED BY (cid);
ELSE
CREATE UNLOGGED TABLE new_vertex_cid AS
SELECT vertex_cid.id, vertex_state.cid FROM
vertex_cid JOIN vertex_state ON vertex_cid.cid = vertex_state.id
DISTRIBUTED BY (cid);
DROP TABLE vertex_cid;
ALTER TABLE new_vertex_cid RENAME TO vertex_cid;
END IF;
PERFORM public.louvain_stage2();
current_iter := current_iter + 1;
END LOOP;
DROP TABLE IF EXISTS community_info, louvain_edges, louvain_edges_mirror, vertex_state;
ALTER TABLE vertex_cid RENAME COLUMN cid TO attr;
EXECUTE 'ALTER TABLE vertex_cid RENAME TO ' || result_table_name;
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION public.louvain(
IN max_iter INTEGER,
IN max_iter_stage1 INTEGER,
IN max_iter_no_change_stage1 INTEGER,
IN weight_column VARCHAR,
IN edge_type_column VARCHAR,
IN edge_type_value INTEGER,
IN result_table_name VARCHAR
) RETURNS VOID AS $$
DECLARE
current_iter INTEGER := 1;
tot_weight REAL;
num_communities INTEGER;
BEGIN
IF edge_type_column IS NULL OR edge_type_value IS NULL THEN
PERFORM public.louvain(max_iter, max_iter_stage1, max_iter_no_change_stage1, weight_column, result_table_name);
ELSE
IF weight_column IS NULL THEN
PERFORM public.init_louvain(edge_type_column, edge_type_value);
ELSE
PERFORM public.init_louvain(weight_column, edge_type_column, edge_type_value);
END IF;
SELECT SUM(weight) INTO tot_weight FROM louvain_edges;
WHILE current_iter <= max_iter LOOP
SELECT COUNT(1) INTO num_communities FROM vertex_state;
RAISE INFO 'current outer iteration %, community count %', current_iter, num_communities;
PERFORM public.louvain_stage1(max_iter_stage1, max_iter_no_change_stage1, tot_weight);
IF current_iter = 1 THEN
CREATE UNLOGGED TABLE vertex_cid AS
SELECT id, cid FROM vertex_state
DISTRIBUTED BY (cid);
ELSE
CREATE UNLOGGED TABLE new_vertex_cid AS
SELECT vertex_cid.id, vertex_state.cid FROM
vertex_cid JOIN vertex_state ON vertex_cid.cid = vertex_state.id
DISTRIBUTED BY (cid);
DROP TABLE vertex_cid;
ALTER TABLE new_vertex_cid RENAME TO vertex_cid;
END IF;
PERFORM public.louvain_stage2();
current_iter := current_iter + 1;
END LOOP;
DROP TABLE IF EXISTS community_info, louvain_edges, louvain_edges_mirror, vertex_state;
ALTER TABLE vertex_cid RENAME COLUMN cid TO attr;
EXECUTE 'ALTER TABLE vertex_cid RENAME TO ' || result_table_name;
END IF;
END;
$$ LANGUAGE plpgsql;
|
<reponame>kujalk/CSV-Upload-AzureSQL
DROP TABLE IF EXISTS Delta.income;
DROP TABLE IF EXISTS Delta.get_fit_now_check_in;
DROP TABLE IF EXISTS Delta.get_fit_now_member;
DROP TABLE IF EXISTS Delta.interview;
DROP TABLE IF EXISTS Delta.facebook_event_checkin;
DROP TABLE IF EXISTS Delta.person;
DROP TABLE IF EXISTS Delta.crime_scene_report;
DROP TABLE IF EXISTS Delta.drivers_license;
IF (NOT EXISTS (SELECT * FROM sys.schemas WHERE name = 'Delta'))
BEGIN
EXEC ('CREATE SCHEMA [Delta] AUTHORIZATION [dbo]')
END
CREATE TABLE Delta.crime_scene_report (
"date" integer,
"type" text,
"description" text,
"city" text
);
CREATE TABLE Delta.drivers_license (
"id" integer,
"age" integer,
"height" integer,
"eye_color" text,
"hair_color" text,
"gender" text,
"plate_number" text,
"car_make" text,
"car_model" text,
PRIMARY KEY("id")
);
CREATE TABLE Delta.person (
"id" integer,
"name" text,
"license_id" integer,
"address_number" integer,
"address_street_name" text,
"ssn" integer,
PRIMARY KEY("id"),
FOREIGN KEY("license_id") REFERENCES Delta.drivers_license("id")
);
CREATE TABLE Delta.facebook_event_checkin (
"person_id" integer,
"event_id" integer,
"event_name" text,
"date" integer,
FOREIGN KEY("person_id") REFERENCES Delta.person("id")
);
CREATE TABLE Delta.interview (
"person_id" integer,
"transcript" text,
FOREIGN KEY("person_id") REFERENCES Delta.person("id")
);
CREATE TABLE Delta.get_fit_now_member (
"id" VARCHAR(50),
"person_id" integer,
"name" text,
"membership_start_date" integer,
"membership_status" text,
PRIMARY KEY("id"),
FOREIGN KEY("person_id") REFERENCES Delta.person("id")
);
CREATE TABLE Delta.get_fit_now_check_in (
"membership_id" VARCHAR(50),
"check_in_date" integer,
"check_in_time" integer,
"check_out_time" integer,
FOREIGN KEY("membership_id") REFERENCES Delta.get_fit_now_member("id")
);
CREATE TABLE Delta.income (
"ssn" integer,
"annual_income" integer,
PRIMARY KEY("ssn")
); |
<reponame>MoDELSVGU/OCL2PSQL
CREATE DATABASE lam_test;
use lam_test;
DROP TABLE IF EXISTS role;
CREATE TABLE role(
role_id int NOT NULL AUTO_INCREMENT PRIMARY KEY,
name varchar(100)
);
INSERT role(name)VALUES("Admin"), ("Lecturer"), ("Student");
DROP TABLE IF EXISTS reg_user;
CREATE TABLE reg_user(
reg_user_id int NOT NULL AUTO_INCREMENT PRIMARY KEY,
given_name varchar(100),
middle_name varchar(100),
family_name varchar(100),
gender char(1),
data_birth DATE,
role int NOT NULL,
FOREIGN KEY(role)
REFERENCES role(role_id)
);
INSERT INTO reg_user(given_name, family_name,
gender, role) VALUES ("Aldiyar", "<NAME>", "M", 3);
INSERT INTO reg_user(given_name, middle_name, family_name,
gender, role) VALUES ("Trung", "Quốc", "Phạm", "M", 3);
INSERT INTO reg_user(given_name, middle_name, family_name,
gender, data_birth, role) VALUES("Manuel", "Garcia", "Clavel", "M", "1969-09-05", 2);
INSERT INTO reg_user(given_name, middle_name, family_name,
gender, data_birth, role) VALUES("Jaime", "Nubiola", "Aguilar", "M", "1959-09-05", 2);
INSERT INTO reg_user(given_name, middle_name, family_name,
gender, role) VALUES("Trang", "<NAME>", "Nguyen", "F", 1);
DROP TABLE IF EXISTS course;
CREATE TABLE course (
course_id int NOT NULL AUTO_INCREMENT PRIMARY KEY,
name varchar(100)
) ENGINE=InnoDB;
INSERT course(name)VALUES("System Architecture");
INSERT course(name)VALUES("Distributed Systems");
INSERT course(name)VALUES("Software Engineering");
DROP TABLE IF EXISTS student;
CREATE TABLE student (
student_id int NOT NULL AUTO_INCREMENT PRIMARY KEY,
reg_user int,
FOREIGN KEY (reg_user)
REFERENCES reg_user(reg_user_id)
) ENGINE=InnoDB;
INSERT INTO student(reg_user) VALUES (1);
INSERT INTO student(reg_user) VALUES (3);
DROP TABLE IF EXISTS course_student;
CREATE TABLE course_student (
course int,
student int,
FOREIGN KEY (course)
REFERENCES course(course_id),
FOREIGN KEY (student)
REFERENCES student(student_id)
) ENGINE=InnoDB;
INSERT INTO course_student VALUES (1,1);
DROP TABLE IF EXISTS lecturer;
CREATE TABLE lecturer (
lecturer_id int NOT NULL AUTO_INCREMENT PRIMARY KEY,
reg_user int,
FOREIGN KEY (reg_user)
REFERENCES reg_user(reg_user_id)
) ENGINE=InnoDB;
INSERT INTO lecturer(reg_user) VALUES (2);
DROP TABLE IF EXISTS course_lecturer;
CREATE TABLE course_lecturer (
course int,
lecturer int,
FOREIGN KEY (course)
REFERENCES course(course_id),
FOREIGN KEY (lecturer)
REFERENCES lecturer(lecturer_id)
) ENGINE=InnoDB;
INSERT INTO course_lecturer VALUES (1,1);
DROP PROCEDURE IF EXISTS GetCourseStudentList;
DELIMITER //
CREATE PROCEDURE GetCourseStudentList(IN course_id INT, IN caller_id INT)
BEGIN
SELECT family_name
FROM reg_user
INNER JOIN
(SELECT reg_user FROM Student
INNER JOIN
(SELECT student FROM course_student
WHERE course_student.course = course_id) AS TEMP_1
ON student_id = TEMP_1.student) AS TEMP_2
ON TEMP_2.reg_user = reg_user_id;
END //
DELIMITER ;
DROP PROCEDURE IF EXISTS GetLecturerCourseList;
DELIMITER //
CREATE PROCEDURE GetLecturerCourseList(IN lecturer_id INT, IN caller_id INT)
BEGIN
SELECT name
FROM course
INNER JOIN
(SELECT course FROM course_lecturer
WHERE course_lecturer.lecturer = lecturer_id) AS TEMP
ON course_id = TEMP.course;
END //
DELIMITER ;
SELECT TEMP_8.item OR TEMP_9.item AS item INTO result
FROM
(SELECT TEMP_2.item OR TEMP_7.item AS item
FROM
(SELECT TEMP_0.item = TEMP_1.item AS item
FROM (SELECT kself AS item) AS TEMP_0,
(SELECT kcaller AS item) AS TEMP_1)
AS TEMP_2,
(SELECT TEMP_5.item = TEMP_6.item AS item
FROM
(SELECT emailPrivacy AS item
FROM (SELECT * FROM Reg_User) AS TEMP_4
RIGHT JOIN (SELECT kself AS item) AS TEMP_3
ON TEMP_4.Reg_User_id = TEMP_3.item)
AS TEMP_5,
(SELECT 'Public' AS item) AS TEMP_6)
AS TEMP_7)
AS TEMP_8,
(SELECT (5) AS item) AS TEMP_9;
SELECT TEMP_13.item AND TEMP_18.item AS item INTO result
FROM
(SELECT TEMP_8.item OR TEMP_12.item AS item
FROM
(SELECT TEMP_2.item OR TEMP_7.item AS item FROM
(SELECT TEMP_0.item = TEMP_1.item AS item
FROM (SELECT kself AS item) AS TEMP_0,
(SELECT kcaller AS item) AS TEMP_1) AS TEMP_2,
(SELECT TEMP_5.item = TEMP_6.item AS item
FROM
(SELECT emailPrivacy AS item
FROM (SELECT * FROM Reg_User) AS TEMP_4
RIGHT JOIN (SELECT kself AS item) AS TEMP_3
ON TEMP_4.Reg_User_id = TEMP_3.item) AS TEMP_5,
(SELECT 'Public' AS item) AS TEMP_6) AS TEMP_7) AS TEMP_8,
(SELECT COUNT(TEMP_11.item) > 0 AS item
FROM (SELECT myFriends AS item
FROM (SELECT * FROM Reg_User_Reg_User) AS TEMP_10
RIGHT JOIN (SELECT kcaller AS item) AS TEMP_9
ON TEMP_10.friendOf = TEMP_9.item)
AS TEMP_11) AS TEMP_12)
AS TEMP_13,
(SELECT TEMP_16.item = TEMP_17.item AS item FROM
(SELECT emailPrivacy AS item
FROM (SELECT * FROM Reg_User) AS TEMP_15
RIGHT JOIN (SELECT kself AS item) AS TEMP_14
ON TEMP_15.Reg_User_id = TEMP_14.item) AS TEMP_16,
(SELECT 'Friends' AS item)
AS TEMP_17) AS TEMP_18;
DROP PROCEDURE IF EXISTS GetLecturerCourseStudentList;
DELIMITER //
CREATE PROCEDURE GetLecturerCourseStudentList(IN lecturer_id INT, course_id INT, IN caller_id INT)
BEGIN
SELECT family_name
FROM reg_user
INNER JOIN
(SELECT reg_user
FROM student
INNER JOIN
(SELECT student FROM course_student
INNER JOIN
(SELECT course FROM course_lecturer
WHERE course = course_id AND lecturer = lecturer_id) AS TEMP_1
ON course_student.course = TEMP_1.course) as TEMP_2
ON student_id = TEMP_2.student) AS TEMP_3
ON TEMP_3.reg_user = reg_user_id;
END //
DELIMITER ;
/* examples
* CALL GetCourseStudentList(1, 1, 3)
* CALL GetLecturerCourseList(1, 1, 3)
* CALL GetLecturerCourseStudentList(1, 1, 3)
*/
|
/****** Object: StoredProcedure [dbo].[AlterEventLogEntryUser] ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE AlterEventLogEntryUser
/****************************************************
**
** Desc: Updates the user associated with a given event log entry to be @NewUser
**
** If @ApplyTimeFilter is non-zero, then only matches entries made within the last
** @EntryTimeWindowSeconds seconds
**
** Use @infoOnly = 1 to preview updates
**
** Return values: 0: success, otherwise, error code
**
** Auth: mem
** Date: 02/29/2008 mem - Initial version (Ticket: #644)
** 05/23/2008 mem - Expanded @EntryDescription to varchar(512)
** 03/30/2009 mem - Ported to the Manager Control DB
**
*****************************************************/
(
@TargetType smallint, -- 1=Manager Enable/Disable
@TargetID int,
@TargetState int,
@NewUser varchar(128),
@ApplyTimeFilter tinyint = 1, -- If 1, then filters by the current date and time; if 0, looks for the most recent matching entry
@EntryTimeWindowSeconds int = 15, -- Only used if @ApplyTimeFilter = 1
@message varchar(512) = '' output,
@infoOnly tinyint = 0
)
As
Set nocount on
Declare @myRowCount int
Declare @myError int
Set @myRowCount = 0
Set @myError = 0
Declare @EntryDateStart datetime
Declare @EntryDateEnd datetime
Declare @EntryDescription varchar(512)
Declare @EventID int
Declare @MatchIndex int
Declare @EnteredBy varchar(255)
Declare @EnteredByNew varchar(255)
Set @EnteredByNew = ''
Declare @CurrentTime datetime
Set @CurrentTime = GetDate()
------------------------------------------------
-- Validate the inputs
------------------------------------------------
Set @NewUser = IsNull(@NewUser, '')
Set @ApplyTimeFilter = IsNull(@ApplyTimeFilter, 0)
Set @EntryTimeWindowSeconds = IsNull(@EntryTimeWindowSeconds, 15)
Set @message = ''
Set @infoOnly = IsNull(@infoOnly, 0)
If @TargetType Is Null Or @TargetID Is Null Or @TargetState Is Null
Begin
Set @message = '@TargetType and @TargetID and @TargetState must be defined; unable to continue'
Set @myError = 50201
Goto done
End
If Len(@NewUser) = 0
Begin
Set @message = '@NewUser is empty; unable to continue'
Set @myError = 50202
Goto done
End
Set @EntryDescription = 'ID ' + Convert(varchar(12), @TargetID) + ' (type ' + Convert(varchar(12), @TargetType) + ') with state ' + Convert(varchar(12), @TargetState)
If @ApplyTimeFilter <> 0 And IsNull(@EntryTimeWindowSeconds, 0) >= 1
Begin
------------------------------------------------
-- Filter using the current date/time
------------------------------------------------
--
Set @EntryDateStart = DateAdd(second, -@EntryTimeWindowSeconds, @CurrentTime)
Set @EntryDateEnd = DateAdd(second, 1, @CurrentTime)
If @infoOnly <> 0
Print 'Filtering on entries dated between ' + Convert(varchar(64), @EntryDateStart, 120) + ' and ' + Convert(varchar(64), @EntryDateEnd, 120) + ' (Window = ' + Convert(varchar(12), @EntryTimeWindowSeconds) + ' seconds)'
SELECT @EventID = EL.Event_ID,
@EnteredBy = EL.Entered_By
FROM T_Event_Log EL INNER JOIN
(SELECT MAX(Event_ID) AS Event_ID
FROM dbo.T_Event_Log
WHERE Target_Type = @TargetType AND
Target_ID = @TargetID AND
Target_State = @TargetState AND
Entered Between @EntryDateStart And @EntryDateEnd
) LookupQ ON EL.Event_ID = LookupQ.Event_ID
--
SELECT @myError = @@error, @myRowCount = @@rowcount
Set @EntryDescription = @EntryDescription + ' and Entry Time between ' + Convert(varchar(64), @EntryDateStart, 120) + ' and ' + Convert(varchar(64), @EntryDateEnd, 120)
End
Else
Begin
------------------------------------------------
-- Do not filter by time
------------------------------------------------
--
SELECT @EventID = EL.Event_ID,
@EnteredBy = EL.Entered_By
FROM T_Event_Log EL INNER JOIN
(SELECT MAX(Event_ID) AS Event_ID
FROM dbo.T_Event_Log
WHERE Target_Type = @TargetType AND
Target_ID = @TargetID AND
Target_State = @TargetState
) LookupQ ON EL.Event_ID = LookupQ.Event_ID
--
SELECT @myError = @@error, @myRowCount = @@rowcount
End
If @myError <> 0
Begin
Set @message = 'Error looking for ' + @EntryDescription
Goto done
End
If @myRowCount <= 0
Set @message = 'Match not found for ' + @EntryDescription
Else
Begin
-- Confirm that @EnteredBy doesn't already contain @NewUser
-- If it does, then there's no need to update it
Set @MatchIndex = CharIndex(@NewUser, @EnteredBy)
If @MatchIndex > 0
Begin
Set @message = 'Entry ' + @EntryDescription + ' is already attributed to ' + @NewUser + ': "' + @EnteredBy + '"'
Goto Done
End
-- Look for a semicolon in @EnteredBy
Set @MatchIndex = CharIndex(';', @EnteredBy)
If @MatchIndex > 0
Set @EnteredByNew = @NewUser + ' (via ' + SubString(@EnteredBy, 1, @MatchIndex-1) + ')' + SubString(@EnteredBy, @MatchIndex, Len(@EnteredBy))
Else
Set @EnteredByNew = @NewUser + ' (via ' + @EnteredBy + ')'
If Len(IsNull(@EnteredByNew, '')) > 0
Begin
If @infoOnly = 0
Begin
UPDATE T_Event_Log
SET Entered_By = @EnteredByNew
WHERE Event_ID = @EventID
--
SELECT @myError = @@error, @myRowCount = @@rowcount
If @myError <> 0
Begin
Set @message = 'Error updating ' + @EntryDescription
Exec PostLogEntry 'Error', @message, 'AlterEventLogEntryUser'
Goto Done
End
Else
Set @message = 'Updated ' + @EntryDescription + ' to indicate "' + @EnteredByNew + '"'
End
Else
Begin
SELECT Event_ID, Target_Type, Target_ID, Target_State,
Prev_Target_State, Entered,
Entered_By AS Entered_By_Old,
@EnteredByNew AS Entered_By_New
FROM T_Event_Log
WHERE Event_ID = @EventID
--
SELECT @myError = @@error, @myRowCount = @@rowcount
Set @message = 'Would update ' + @EntryDescription + ' to indicate "' + @EnteredByNew + '"'
End
End
Else
Set @Message = 'Match not found; unable to continue'
End
Done:
return @myError
GO
|
<gh_stars>10-100
-- migrate:up
UPDATE `sessions` SET expired_at = NOW();
ALTER TABLE `sessions` MODIFY expired_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP;
-- migrate:down
ALTER TABLE `sessions` MODIFY expired_at TIMESTAMP DEFAULT NULL; |
<filename>kata-files/lesson2/hsql/expected/MYLARGESCHEMA/sp/SP196.sql
CREATE PROCEDURE SP196(OUT MYCOUNT INTEGER) SPECIFIC SP196_52173 LANGUAGE SQL NOT DETERMINISTIC READS SQL DATA NEW SAVEPOINT LEVEL BEGIN ATOMIC DECLARE MYVAR INT;SELECT COUNT(*)INTO MYCOUNT FROM TABLE311;SELECT COUNT(*)INTO MYCOUNT FROM TABLE48;SELECT COUNT(*)INTO MYCOUNT FROM TABLE154;SELECT COUNT(*)INTO MYCOUNT FROM VIEW82;SELECT COUNT(*)INTO MYCOUNT FROM VIEW26;SELECT COUNT(*)INTO MYCOUNT FROM VIEW87;CALL SP29(MYVAR);CALL SP759(MYVAR);CALL SP839(MYVAR);CALL SP295(MYVAR);END
GO |
CREATE TEMP FUNCTION distance(x ANY TYPE, y ANY TYPE, x2 ANY TYPE, y2 ANY TYPE) AS (
(x-x2) * (x-x2) + (y-y2)*(y-y2)
);
CREATE TEMP FUNCTION angle(x ANY TYPE, y ANY TYPE, x2 ANY TYPE, y2 ANY TYPE) AS (
ACOS(-1) + ATAN2((x-x2),(y-y2))
);
CREATE TEMP FUNCTION rotated(x ANY TYPE) AS (
IF(x<=ACOS(-1), ACOS(-1)-x, 4*ACOS(-1)- x)
);
WITH data AS (SELECT
-- """.#..##.###...#######
-- ##.############..##.
-- .#.######.########.#
-- .###.#######.####.#.
-- #####.##.#.##.###.##
-- ..#####..#.#########
-- ####################
-- #.####....###.#.#.##
-- ##.#################
-- #####.##.###..####..
-- ..######..##.#######
-- ####.##.####...##..#
-- .#####..#.######.###
-- ##...#.##########...
-- #.##########.#######
-- .####.#.###.###.#.##
-- ....##.##.###..#####
-- .#.#.###########.###
-- #.#.#.#####.####.###
-- ###.##.####.##.#..##"""
"""#.#.###.#.#....#..##.#....
.....#..#..#..#.#..#.....#
.##.##.##.##.##..#...#...#
#.#...#.#####...###.#.#.#.
.#####.###.#.#.####.#####.
#.#.#.##.#.##...####.#.##.
##....###..#.#..#..#..###.
..##....#.#...##.#.#...###
#.....#.#######..##.##.#..
#.###.#..###.#.#..##.....#
##.#.#.##.#......#####..##
#..##.#.##..###.##.###..##
#..#.###...#.#...#..#.##.#
.#..#.#....###.#.#..##.#.#
#.##.#####..###...#.###.##
#...##..#..##.##.#.##..###
#.#.###.###.....####.##..#
######....#.##....###.#..#
..##.#.####.....###..##.#.
#..#..#...#.####..######..
#####.##...#.#....#....#.#
.#####.##.#.#####..##.#...
#..##..##.#.##.##.####..##
.##..####..#..####.#######
#.#..#.##.#.######....##..
.#.##.##.####......#.##.##"""
input
), parsed AS (
SELECT x,y, element
FROM UNNEST(SPLIT((SELECT * FROM data), '\n')) line WITH offset y, UNNEST(SPLIT(line, '')) element WITH offset x
), asteroids AS (
SELECT x,y
FROM parsed
WHERE element='#'
), calculations AS (
SELECT spaces, asteroids
, distance(spaces.x, spaces.y, asteroids.x, asteroids.y) distance
, angle(spaces.x, spaces.y, asteroids.x, asteroids.y) angle
FROM asteroids AS spaces, asteroids
WHERE (spaces.x!=asteroids.x OR spaces.y!=asteroids.y)
), bestxy AS (
SELECT x, y, COUNT(*) c
FROM (
SELECT spaces.x, spaces.y, angle, ARRAY_AGG(STRUCT(distance,angle, asteroids.x, asteroids.y, spaces.x!=asteroids.x AND spaces.y!=asteroids.y))
FROM calculations
GROUP BY 1,2,3
)
GROUP BY x,y
ORDER BY c DESC
LIMIT 1
)
SELECT x*100 + y xy, rotated, layer, ROW_NUMBER() OVER(ORDER BY layer, rotated) rn
FROM (
SELECT rotated(angle) rotated, ARRAY_AGG(STRUCT(asteroids.x, asteroids.y, distance) ORDER BY distance) layers
FROM calculations
JOIN bestxy
ON calculations.spaces.x = bestxy.x
AND calculations.spaces.y = bestxy.y
GROUP BY 1
), UNNEST(layers) WITH OFFSET layer
|
1050,12,3000
1053,48,6000
19300,1,10396000
19300,1,144480000
5579,1,10385000
5579,1,198000000
5580,1,10389000
5580,1,197950000
6009,1,10380000
6009,1,197850000
19298,1,148190000
19299,1,10383000
15793,1,99500000
10466,1,10400000
10466,1,144550000
17150,1,105607250
17150,1,132115800
17150,1,232335950
17154,1,105828000
17154,1,134597400
17154,1,232821600
17155,1,105572000
17155,1,131267600
17155,1,232258400
17158,1,105753250
17158,1,195695850
17158,1,174533000
17149,1,106152250
17149,1,131368800
17149,1,232412950
13251,1,200901000
15792,1,149320000
17162,1,51750000
17162,1,138945000
17162,1,59940000
17161,1,55125000
17161,1,136585000
17161,1,59850000
11334,1,316495000
11334,1,179760000
17145,1,150310000
17141,1,100285000
17141,1,226385000
17141,1,119730000
17143,1,150368750
17143,1,269745750
17143,1,226621400
15820,1,19720000
13411,1,147340000
18808,1,148140000
10465,1,147330000
18812,1,43820000
18812,1,43750000
18812,1,172650000
18813,1,43880000
18813,1,43780000
18813,1,172460000
18814,1,171060000
18815,1,170340000
5399,1,170300000
5395,1,170260000
5398,1,170270000
15441,1,147260000
15441,1,46870000
15441,1,46830000
15441,1,151600000
15442,1,46800000
15442,1,46750000
15443,1,147520000
15444,1,149420000
15445,1,147500000
15445,1,172420000
15779,1,199100000
15778,1,156466000
13459,1,7818000
13459,1,198137000
15777,1,199000000
15780,1,91525000
15781,1,133400000
15787,1,199658000
16474,1,199438000
8468,1,199638000
12318,1,148530000
15789,1,199172000
15822,1,638101200
15822,1,511088000
15822,1,466473300
15822,1,462916300
15822,1,106350200
5558,1,43880000
5555,1,44000000
5555,1,53900000
5557,1,43930000
5861,1,46850000
1539,2,289900
1539,1,239900
1539,3,289900
1539,2,209900
|
<reponame>PetrStudynka/Yii2_demo
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
DROP TABLE IF EXISTS `book`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `book` (
`id_book` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`author` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id_book`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
LOCK TABLES `book` WRITE;
/*!40000 ALTER TABLE `book` DISABLE KEYS */;
INSERT INTO `book` VALUES (1,'Válka s mloky','<NAME>'),(2,'Ostře sledované vlaky','Bohumil Hraba'),(3,'Pipi dlouhá punčocha','Astrid Lindgren');
/*!40000 ALTER TABLE `book` ENABLE KEYS */;
UNLOCK TABLES;
DROP TABLE IF EXISTS `borrowing`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `borrowing` (
`id_borrowing` int(11) NOT NULL AUTO_INCREMENT,
`user` int(11) NOT NULL,
`book` int(11) NOT NULL,
`borrowed` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`returned` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id_borrowing`),
KEY `bg_user_FK` (`user`),
KEY `bg_book_FK` (`book`),
CONSTRAINT `bg_book_FK` FOREIGN KEY (`book`) REFERENCES `book` (`id_book`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `bg_user_FK` FOREIGN KEY (`user`) REFERENCES `user` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
LOCK TABLES `borrowing` WRITE;
/*!40000 ALTER TABLE `borrowing` DISABLE KEYS */;
/*!40000 ALTER TABLE `borrowing` ENABLE KEYS */;
UNLOCK TABLES;
DROP TABLE IF EXISTS `genre`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `genre` (
`id_genre` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id_genre`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
LOCK TABLES `genre` WRITE;
/*!40000 ALTER TABLE `genre` DISABLE KEYS */;
INSERT INTO `genre` VALUES (3,'Dobrodružný'),(4,'Drama'),(1,'Fantasy'),(2,'Historický'),(6,'Pohádka'),(5,'Scifi');
/*!40000 ALTER TABLE `genre` ENABLE KEYS */;
UNLOCK TABLES;
DROP TABLE IF EXISTS `genre_book`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `genre_book` (
`id_genre_book` int(11) NOT NULL AUTO_INCREMENT,
`book` int(11) NOT NULL,
`genre` int(11) NOT NULL,
PRIMARY KEY (`id_genre_book`),
KEY `gk_book_FK` (`book`),
KEY `gk_genre_FK` (`genre`),
CONSTRAINT `gk_book_FK` FOREIGN KEY (`book`) REFERENCES `book` (`id_book`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `gk_genre_FK` FOREIGN KEY (`genre`) REFERENCES `genre` (`id_genre`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
LOCK TABLES `genre_book` WRITE;
/*!40000 ALTER TABLE `genre_book` DISABLE KEYS */;
INSERT INTO `genre_book` VALUES (1,1,1),(2,2,2),(3,3,3),(4,1,3);
/*!40000 ALTER TABLE `genre_book` ENABLE KEYS */;
UNLOCK TABLES;
DROP TABLE IF EXISTS `migration`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `migration` (
`version` varchar(180) COLLATE utf8mb4_unicode_ci NOT NULL,
`apply_time` int(11) DEFAULT NULL,
PRIMARY KEY (`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
LOCK TABLES `migration` WRITE;
/*!40000 ALTER TABLE `migration` DISABLE KEYS */;
INSERT INTO `migration` VALUES ('m000000_000000_base',1599977898),('m200913_000724_library',1599977906);
/*!40000 ALTER TABLE `migration` ENABLE KEYS */;
UNLOCK TABLES;
DROP TABLE IF EXISTS `user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user` (
`id_user` int(11) NOT NULL AUTO_INCREMENT,
`first_name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`last_name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id_user`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
LOCK TABLES `user` WRITE;
/*!40000 ALTER TABLE `user` DISABLE KEYS */;
INSERT INTO `user` VALUES (1,'Michal','David'),(2,'Andreas','Muntzer'),(3,'Tomáš','Fuk');
/*!40000 ALTER TABLE `user` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
<reponame>LBNL-ETA/BEDES-Manager<filename>bedes-backend/src/bedes/query/bedes-term/get-list-by-id.sql<gh_stars>1-10
-- retrieve a BedesConstrainedList by id
select
bt.id as "_id",
bt.name as "_name",
bt.description as "_description",
bt.term_category_id as "_termCategoryId",
bt.data_type_id as "_dataTypeId",
bt.definition_source_id as "_definitionSourceId",
bt.unit_id as "_unitId",
bt.uuid as "_uuid",
bt.url as "_url",
json_agg(o) as "_options"
from
public.bedes_term bt
left outer join
public.bedes_term_list_option o on o.term_id = bt.id
where
bt.id = ${_id}
group by
bt.id, bt.name, bt.description, bt.term_category_id, bt.data_type_id,
bt.definition_source_id, bt.unit_id, bt.uuid, bt.url
; |
-- MySQL Script generated by MySQL Workbench
-- Wed Apr 15 09:57:32 2020
-- Model: New Model Version: 1.0
-- MySQL Workbench Forward Engineering
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES';
-- -----------------------------------------------------
-- Schema oauth
-- -----------------------------------------------------
-- -----------------------------------------------------
-- Schema oauth
-- -----------------------------------------------------
CREATE SCHEMA IF NOT EXISTS `oauth` DEFAULT CHARACTER SET utf8 ;
USE `oauth` ;
-- -----------------------------------------------------
-- Table `oauth`.`user`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `oauth`.`user` (
`id` BIGINT(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`name` VARCHAR(100) NOT NULL DEFAULT 'default' COMMENT '账户名',
`password` VARCHAR(255) NOT NULL DEFAULT '<PASSWORD>' COMMENT '密码',
`nickname` VARCHAR(255) NOT NULL DEFAULT 'default' COMMENT '昵称',
`email` VARCHAR(245) NOT NULL DEFAULT 'default' COMMENT '邮箱',
`avater` VARCHAR(255) NOT NULL DEFAULT 'default' COMMENT '头像',
`created_at` BIGINT(20) NOT NULL DEFAULT 0 COMMENT '创建时间',
PRIMARY KEY (`id`),
UNIQUE INDEX `uniq_id` (`id` ASC))
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8
COMMENT = '用户表';
-- -----------------------------------------------------
-- Table `oauth`.`application`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `oauth`.`application` (
`id` BIGINT(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`user_id` VARCHAR(255) NOT NULL DEFAULT 'default' COMMENT '用户id',
`name` VARCHAR(255) NOT NULL DEFAULT 'default' COMMENT '应用名称',
`client_id` VARCHAR(255) NOT NULL DEFAULT 'default' COMMENT '客户端ID',
`private_key` VARCHAR(255) NOT NULL DEFAULT 'default' COMMENT '客户端私钥',
`callback` VARCHAR(255) NOT NULL DEFAULT 'default' COMMENT '客户端回调地址',
`mode` VARCHAR(255) NOT NULL DEFAULT 'default' COMMENT '客户端运行模式',
`open` TINYINT NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE INDEX `uniq_id` (`id` ASC))
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8
COMMENT = '应用表';
-- -----------------------------------------------------
-- Table `oauth`.`app_user_list`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `oauth`.`app_user_list` (
`id` BIGINT(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`user_id` BIGINT(20) NOT NULL DEFAULT 0 COMMENT '用户id',
`app_id` BIGINT(20) NOT NULL DEFAULT 0 COMMENT '应用id',
`category` VARCHAR(255) NOT NULL DEFAULT 'black' COMMENT '黑白名单',
`role_id` BIGINT(20) NOT NULL DEFAULT 0 COMMENT '角色id',
PRIMARY KEY (`id`),
UNIQUE INDEX `uniq_id` (`id` ASC))
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8
COMMENT = '应用的用户列表';
-- -----------------------------------------------------
-- Table `oauth`.`app_role`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `oauth`.`app_role` (
`id` BIGINT(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`app_id` BIGINT(20) NOT NULL DEFAULT 0 COMMENT '应用id',
`name` VARCHAR(255) NOT NULL DEFAULT 'default' COMMENT '角色名称',
PRIMARY KEY (`id`),
UNIQUE INDEX `uniq_id` (`id` ASC))
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8
COMMENT = '应用的角色信息表';
-- -----------------------------------------------------
-- Table `oauth`.`app_role_permission`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `oauth`.`app_role_permission` (
`id` BIGINT(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`role_id` BIGINT(20) NOT NULL DEFAULT 0 COMMENT '角色id',
`name` VARCHAR(255) NOT NULL DEFAULT 'default' COMMENT '权限别称',
`method` VARCHAR(45) NOT NULL DEFAULT 'GET' COMMENT 'HTTP方法',
`pattern` VARCHAR(255) NOT NULL DEFAULT '*' COMMENT '路径匹配正则',
PRIMARY KEY (`id`),
UNIQUE INDEX `uniq_id` (`id` ASC))
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8
COMMENT = '应用角色的权限列表';
SET SQL_MODE=@OLD_SQL_MODE;
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
|
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Server version: 10.1.21-MariaDB - mariadb.org binary distribution
-- Server OS: Win32
-- HeidiSQL Version: 9.4.0.5125
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping structure for table db_test.companynames
CREATE TABLE IF NOT EXISTS `companynames` (
`company_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`company_name` varchar(50) NOT NULL,
`status` int(1) NOT NULL DEFAULT '1' COMMENT '0=inactive, 1=active',
`created_by` int(10) unsigned NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updated_by` int(10) unsigned DEFAULT NULL,
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`company_id`),
UNIQUE KEY `company_name` (`company_name`),
KEY `FK_companynames_empinfos` (`created_by`),
KEY `FK_companynames_empinfos_2` (`updated_by`),
KEY `company_id` (`company_id`),
CONSTRAINT `FK_companynames_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_companynames_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=224 DEFAULT CHARSET=latin1;
-- Dumping data for table db_test.companynames: ~213 rows (approximately)
/*!40000 ALTER TABLE `companynames` DISABLE KEYS */;
INSERT INTO `companynames` (`company_id`, `company_name`, `status`, `created_by`, `created_at`, `updated_by`, `updated_at`) VALUES
(1, 'Uniliver', 1, 1, '2017-08-09 05:55:26', NULL, '0000-00-00 00:00:00'),
(2, 'Incepta Hygiene and Hospicare Ltd', 1, 1, '2017-08-09 06:23:58', NULL, '0000-00-00 00:00:00'),
(3, 'Jansin Health Products Pvt Limit', 1, 1, '2017-08-09 06:24:44', NULL, '0000-00-00 00:00:00'),
(4, 'M H Trade International', 1, 1, '2017-08-09 06:25:09', NULL, '0000-00-00 00:00:00'),
(5, 'MS Poly Enterprise', 1, 1, '2017-08-09 06:25:58', NULL, '0000-00-00 00:00:00'),
(6, 'MultiBrands Ltd', 1, 1, '2017-08-09 06:27:05', NULL, '0000-00-00 00:00:00'),
(7, 'Nature Care', 1, 1, '2017-08-09 06:27:41', NULL, '0000-00-00 00:00:00'),
(8, 'Needa Enterprise', 1, 1, '2017-08-09 06:28:04', NULL, '0000-00-00 00:00:00'),
(9, 'Olympic Industries Limited', 1, 1, '2017-08-09 06:28:36', NULL, '0000-00-00 00:00:00'),
(10, 'MS JS Trade International', 1, 1, '2017-08-09 06:29:28', NULL, '0000-00-00 00:00:00'),
(11, 'FAIR FOOD and LIFE STYLE LT Dano', 1, 1, '2017-08-09 06:29:53', NULL, '0000-00-00 00:00:00'),
(12, '<NAME>', 1, 1, '2017-08-09 06:30:07', NULL, '0000-00-00 00:00:00'),
(13, 'Safayet Trading', 1, 1, '2017-08-09 06:30:10', NULL, '0000-00-00 00:00:00'),
(14, 'S B DISTRIBUTION', 1, 1, '2017-08-09 06:30:28', NULL, '0000-00-00 00:00:00'),
(15, 'Spron Distributors Pvt Limited', 1, 1, '2017-08-09 06:30:50', NULL, '0000-00-00 00:00:00'),
(16, 'CONSUMER CARE', 1, 1, '2017-08-09 06:30:52', NULL, '0000-00-00 00:00:00'),
(17, 'CLASSIC DAIRY FOOD PROD', 1, 1, '2017-08-09 06:31:17', NULL, '0000-00-00 00:00:00'),
(18, 'THREE STAR CORPORATION', 1, 1, '2017-08-09 06:31:36', NULL, '0000-00-00 00:00:00'),
(19, '<NAME>', 1, 1, '2017-08-09 06:31:42', NULL, '0000-00-00 00:00:00'),
(20, '<NAME>', 1, 1, '2017-08-09 06:31:53', NULL, '0000-00-00 00:00:00'),
(21, 'CLASSIC CORPORATION', 1, 1, '2017-08-09 06:31:55', NULL, '0000-00-00 00:00:00'),
(22, '<NAME> DISTRIBUTION', 1, 1, '2017-08-09 06:32:09', NULL, '0000-00-00 00:00:00'),
(23, 'TOUCH AGRO DISTRIBUTION', 1, 1, '2017-08-09 06:32:28', NULL, '0000-00-00 00:00:00'),
(24, 'BESTIN BRANDS PRIVATE LTD', 1, 1, '2017-08-09 06:32:42', NULL, '0000-00-00 00:00:00'),
(25, '<NAME>D', 1, 1, '2017-08-09 06:33:01', NULL, '0000-00-00 00:00:00'),
(27, 'Protiva Trading Corporation', 1, 1, '2017-08-09 06:34:30', NULL, '0000-00-00 00:00:00'),
(28, 'SMART DISTRIBUTION PVT', 1, 1, '2017-08-09 06:34:55', NULL, '0000-00-00 00:00:00'),
(29, '<NAME> PRODUCTS', 1, 1, '2017-08-09 06:35:30', NULL, '0000-00-00 00:00:00'),
(31, 'UNION CORPORATION', 1, 1, '2017-08-09 06:36:33', NULL, '0000-00-00 00:00:00'),
(32, 'PACK N PICK TRADING HOUSE', 1, 1, '2017-08-09 06:36:49', NULL, '0000-00-00 00:00:00'),
(33, 'JM FOODS PROCESSING S', 1, 1, '2017-08-09 06:37:15', NULL, '0000-00-00 00:00:00'),
(34, 'HOME BRAND', 1, 1, '2017-08-09 06:37:30', NULL, '0000-00-00 00:00:00'),
(35, 'MB TRADE FAIR', 1, 1, '2017-08-09 06:37:43', NULL, '0000-00-00 00:00:00'),
(36, 'ACI Foods Ltd', 1, 1, '2017-08-09 06:37:44', NULL, '0000-00-00 00:00:00'),
(37, 'TAWAKKAL ENTERPRISE PVT', 1, 1, '2017-08-09 06:38:01', NULL, '0000-00-00 00:00:00'),
(38, 'BTME FOOD PRODUCTS', 1, 1, '2017-08-09 06:38:12', NULL, '0000-00-00 00:00:00'),
(39, 'Danish Condensed Milk BD Ltd', 1, 1, '2017-08-09 06:38:17', NULL, '0000-00-00 00:00:00'),
(40, 'QUASEM DRYCELLS LIMITED', 1, 1, '2017-08-09 06:38:24', NULL, '0000-00-00 00:00:00'),
(41, 'Agricultural Marketing Co Ltd', 1, 1, '2017-08-09 06:38:35', NULL, '0000-00-00 00:00:00'),
(42, 'Transcom Distribution Company', 1, 1, '2017-08-09 06:38:51', NULL, '0000-00-00 00:00:00'),
(43, 'TRANSCOM CONSUMER PRODUCT', 1, 1, '2017-08-09 06:38:54', NULL, '0000-00-00 00:00:00'),
(45, 'TRANSCOM BEVERAGES LTD', 1, 1, '2017-08-09 06:39:33', NULL, '0000-00-00 00:00:00'),
(46, 'INTERNATIONAL BRAND LTD', 1, 1, '2017-08-09 06:39:36', NULL, '0000-00-00 00:00:00'),
(47, 'Desh Trade International', 1, 1, '2017-08-09 06:39:47', NULL, '0000-00-00 00:00:00'),
(48, 'International Beverages Private Lim', 1, 1, '2017-08-09 06:40:08', NULL, '0000-00-00 00:00:00'),
(49, 'RIGS MARKETING', 1, 1, '2017-08-09 06:40:12', NULL, '0000-00-00 00:00:00'),
(50, 'New Zealand Dairy Products BdLtd', 1, 1, '2017-08-09 06:40:13', NULL, '0000-00-00 00:00:00'),
(51, '<NAME>', 1, 1, '2017-08-09 06:40:24', NULL, '0000-00-00 00:00:00'),
(52, 'G<NAME> and DAIRY MI', 1, 1, '2017-08-09 06:40:34', NULL, '0000-00-00 00:00:00'),
(53, 'Rainbow Internatonal', 1, 1, '2017-08-09 06:40:35', NULL, '0000-00-00 00:00:00'),
(54, 'ABDUL MONEM LTD', 1, 1, '2017-08-09 06:40:38', NULL, '0000-00-00 00:00:00'),
(55, 'TABIB ENTERPRISE', 1, 1, '2017-08-09 06:40:47', NULL, '0000-00-00 00:00:00'),
(56, 'DOLPHIN FOOD PRODUCTS', 1, 1, '2017-08-09 06:40:56', NULL, '0000-00-00 00:00:00'),
(57, 'Abul khair Company', 1, 1, '2017-08-09 06:40:56', NULL, '0000-00-00 00:00:00'),
(58, 'NEEM LABORATORIES PVT', 1, 1, '2017-08-09 06:41:13', NULL, '0000-00-00 00:00:00'),
(59, 'BRAC Dairy Food Project', 1, 1, '2017-08-09 06:41:16', NULL, '0000-00-00 00:00:00'),
(60, 'RATRI TRADING', 1, 1, '2017-08-09 06:41:22', NULL, '0000-00-00 00:00:00'),
(61, 'T R TRADING', 1, 1, '2017-08-09 06:41:28', NULL, '0000-00-00 00:00:00'),
(62, 'GERMAN COSMETICS', 1, 1, '2017-08-09 06:41:31', NULL, '0000-00-00 00:00:00'),
(63, '<NAME>', 1, 1, '2017-08-09 06:41:32', NULL, '0000-00-00 00:00:00'),
(64, 'MEEM INTERNATIONAL', 1, 1, '2017-08-09 06:41:41', NULL, '0000-00-00 00:00:00'),
(65, 'Cell Trading', 1, 1, '2017-08-09 06:41:48', NULL, '0000-00-00 00:00:00'),
(66, 'Akij Food Beverage LTD', 1, 1, '2017-08-09 06:41:48', NULL, '0000-00-00 00:00:00'),
(67, 'D K TRADE INTERNATIONAL', 1, 1, '2017-08-09 06:41:53', NULL, '0000-00-00 00:00:00'),
(68, 'PANNA TRADING', 1, 1, '2017-08-09 06:42:04', NULL, '0000-00-00 00:00:00'),
(69, 'FATEMA TRADING', 1, 1, '2017-08-09 06:42:06', NULL, '0000-00-00 00:00:00'),
(70, 'Tradesworth Household Limited', 1, 1, '2017-08-09 06:42:22', NULL, '0000-00-00 00:00:00'),
(71, 'FAITH and FAIR TRADE INTERN', 1, 1, '2017-08-09 06:42:22', NULL, '0000-00-00 00:00:00'),
(72, 'SONIC TRADE CORPORATION', 1, 1, '2017-08-09 06:42:30', NULL, '0000-00-00 00:00:00'),
(73, 'UNITED SYNDICATE', 1, 1, '2017-08-09 06:42:38', NULL, '0000-00-00 00:00:00'),
(74, 'Q Q TRADING LTD', 1, 1, '2017-08-09 06:42:56', NULL, '0000-00-00 00:00:00'),
(75, 'LINEAR CORPORATION', 1, 1, '2017-08-09 06:42:57', NULL, '0000-00-00 00:00:00'),
(76, 'MITHILA ENTERPRISE', 1, 1, '2017-08-09 06:43:08', NULL, '0000-00-00 00:00:00'),
(77, 'ARC Distributions', 1, 1, '2017-08-09 06:43:10', NULL, '0000-00-00 00:00:00'),
(78, 'Novera Products LTD ', 1, 1, '2017-08-09 06:43:25', NULL, '0000-00-00 00:00:00'),
(79, 'AHMED FOOD PRODUCTS PVT LTD', 1, 1, '2017-08-09 06:43:43', NULL, '0000-00-00 00:00:00'),
(80, 'R K INTERNATIONAL', 1, 1, '2017-08-09 06:43:57', NULL, '0000-00-00 00:00:00'),
(81, 'Hamid Trading', 1, 1, '2017-08-09 06:44:05', NULL, '0000-00-00 00:00:00'),
(82, 'SQUARE CONSUMER PRODUCTS', 1, 1, '2017-08-09 06:44:13', NULL, '0000-00-00 00:00:00'),
(83, 'ACI Limited', 1, 1, '2017-08-09 06:44:20', NULL, '0000-00-00 00:00:00'),
(84, 'Eshan Enterprise', 1, 1, '2017-08-09 06:44:35', NULL, '0000-00-00 00:00:00'),
(85, 'LIGION HERBAL LIMITED', 1, 1, '2017-08-09 06:44:39', NULL, '0000-00-00 00:00:00'),
(86, 'METRO SUPER CENTRE', 1, 1, '2017-08-09 06:44:42', NULL, '0000-00-00 00:00:00'),
(88, 'Harvest Rich Agro Industries Ltd', 1, 1, '2017-08-09 06:44:56', NULL, '0000-00-00 00:00:00'),
(89, 'CEYLON BISCUITS BANGLADESH PVT L', 1, 1, '2017-08-09 06:46:28', NULL, '0000-00-00 00:00:00'),
(90, 'OMEGA EXIM LTD', 1, 1, '2017-08-09 06:46:40', NULL, '0000-00-00 00:00:00'),
(91, 'MZ and T BANGLADESH LTD', 1, 1, '2017-08-09 06:47:09', NULL, '0000-00-00 00:00:00'),
(92, 'TRANSPARENT CORPORATION', 1, 1, '2017-08-09 06:47:18', NULL, '0000-00-00 00:00:00'),
(93, 'SPACE TRADING HOUSE', 1, 1, '2017-08-09 06:47:26', NULL, '0000-00-00 00:00:00'),
(94, 'MS MUNIBA TRADING', 1, 1, '2017-08-09 06:47:43', NULL, '0000-00-00 00:00:00'),
(95, 'Rafiqul Islam Mukul and Co', 1, 1, '2017-08-09 06:47:44', NULL, '0000-00-00 00:00:00'),
(96, 'Madina Corporation', 1, 1, '2017-08-09 06:47:47', NULL, '0000-00-00 00:00:00'),
(97, 'Ayurvedia Pharmacy Dacca Ltd', 1, 1, '2017-08-09 06:48:01', NULL, '0000-00-00 00:00:00'),
(98, 'Kazi Kazi Tea Estate Ltd', 1, 1, '2017-08-09 06:48:03', NULL, '0000-00-00 00:00:00'),
(99, 'Matador Tooth Brush Inds Ltd', 1, 1, '2017-08-09 06:48:05', NULL, '0000-00-00 00:00:00'),
(100, 'Mam Moni International', 1, 1, '2017-08-09 06:48:10', NULL, '0000-00-00 00:00:00'),
(101, 'Bhuiyan Trade Center', 1, 1, '2017-08-09 06:48:14', NULL, '0000-00-00 00:00:00'),
(102, 'KIKCO INTERNATIONAL', 1, 1, '2017-08-09 06:48:16', NULL, '0000-00-00 00:00:00'),
(103, '<NAME>', 1, 1, '2017-08-09 06:48:18', NULL, '0000-00-00 00:00:00'),
(104, 'ADVANCE DISTRIBUTION COMP', 1, 1, '2017-08-09 06:48:31', NULL, '0000-00-00 00:00:00'),
(105, 'Godrej Household Products BD Pvt L', 1, 1, '2017-08-09 06:48:36', NULL, '0000-00-00 00:00:00'),
(106, 'International Brands Ltd', 1, 1, '2017-08-09 06:48:42', NULL, '0000-00-00 00:00:00'),
(107, 'SHAJEEB CORPORATION', 1, 1, '2017-08-09 06:48:44', NULL, '0000-00-00 00:00:00'),
(108, 'GOOD TASTE', 1, 1, '2017-08-09 06:48:44', NULL, '0000-00-00 00:00:00'),
(109, 'PARAGON MARKETING AGENCY', 1, 1, '2017-08-09 06:48:53', NULL, '0000-00-00 00:00:00'),
(110, 'PARTEX BEVERAGE LTD', 1, 1, '2017-08-09 06:48:55', NULL, '0000-00-00 00:00:00'),
(112, '<NAME>', 1, 1, '2017-08-09 06:49:13', NULL, '0000-00-00 00:00:00'),
(113, '<NAME>', 1, 1, '2017-08-09 06:49:38', NULL, '0000-00-00 00:00:00'),
(114, 'Bashundhara Paper Mills Ltd', 1, 1, '2017-08-09 06:49:43', NULL, '0000-00-00 00:00:00'),
(115, 'SQUARE TOILETRIES LIMITED', 1, 1, '2017-08-09 06:49:53', NULL, '0000-00-00 00:00:00'),
(116, 'ACI Pure Flour Ltd ', 1, 1, '2017-08-09 06:49:58', NULL, '0000-00-00 00:00:00'),
(117, 'UNITRADE INTERNATIONAL', 1, 1, '2017-08-09 06:50:06', NULL, '0000-00-00 00:00:00'),
(118, 'FU-WANG FOODS LIMITED', 1, 1, '2017-08-09 06:50:08', NULL, '0000-00-00 00:00:00'),
(119, '<NAME>', 1, 1, '2017-08-09 06:50:21', NULL, '0000-00-00 00:00:00'),
(120, 'The Consolidated Tea and Lands Co BD', 1, 1, '2017-08-09 06:50:22', NULL, '0000-00-00 00:00:00'),
(121, 'PRESTIGE BENGAL LTD', 1, 1, '2017-08-09 06:50:22', NULL, '0000-00-00 00:00:00'),
(123, 'KALLOL LTD ', 1, 1, '2017-08-09 06:50:35', NULL, '0000-00-00 00:00:00'),
(124, 'M M Ispahani Ltd', 1, 1, '2017-08-09 06:50:46', NULL, '0000-00-00 00:00:00'),
(125, 'MOUNT INTERNATIONAL', 1, 1, '2017-08-09 06:50:47', NULL, '0000-00-00 00:00:00'),
(126, 'SUNAM ENTERPRISE', 1, 1, '2017-08-09 06:51:00', NULL, '0000-00-00 00:00:00'),
(127, 'Romania Food and Beverage Ltd', 1, 1, '2017-08-09 06:51:04', NULL, '0000-00-00 00:00:00'),
(129, 'KEYA COSMETICS LTD', 1, 1, '2017-08-09 06:51:15', NULL, '0000-00-00 00:00:00'),
(130, 'MOUSUMI ENTERPRISES LTD ', 1, 1, '2017-08-09 06:51:33', NULL, '0000-00-00 00:00:00'),
(131, 'BD FOODS LIMITED', 1, 1, '2017-08-09 06:51:42', NULL, '0000-00-00 00:00:00'),
(132, 'ARC Enterprise', 1, 1, '2017-08-09 06:51:52', NULL, '0000-00-00 00:00:00'),
(134, 'Design Doctor', 1, 1, '2017-08-09 06:52:04', NULL, '0000-00-00 00:00:00'),
(135, 'STB Asia Impex BD PVT Ltd', 1, 1, '2017-08-09 06:52:06', NULL, '0000-00-00 00:00:00'),
(136, 'HAQUE BROTHERS IND LTD', 1, 1, '2017-08-09 06:52:25', NULL, '0000-00-00 00:00:00'),
(137, 'Pearl International', 1, 1, '2017-08-09 06:52:26', NULL, '0000-00-00 00:00:00'),
(138, 'CP Bangladesh Co Ltd', 1, 1, '2017-08-09 06:52:33', NULL, '0000-00-00 00:00:00'),
(139, 'KAMAL GENERAL STORE', 1, 1, '2017-08-09 06:52:38', NULL, '0000-00-00 00:00:00'),
(140, 'PROVATI TRADING CORPORATI', 1, 1, '2017-08-09 06:52:45', NULL, '0000-00-00 00:00:00'),
(141, 'Meghna Group of Industries', 1, 1, '2017-08-09 06:52:49', NULL, '0000-00-00 00:00:00'),
(142, 'Foodex International', 1, 1, '2017-08-09 06:52:50', NULL, '0000-00-00 00:00:00'),
(143, 'TANRO LTD', 1, 1, '2017-08-09 06:52:59', NULL, '0000-00-00 00:00:00'),
(144, 'Aftab Bahumukhi Farms Ltd', 1, 1, '2017-08-09 06:53:17', NULL, '0000-00-00 00:00:00'),
(145, 'AMERICA COSMETICS HOUSE', 1, 1, '2017-08-09 06:53:37', NULL, '0000-00-00 00:00:00'),
(146, 'FAIR DISTRIBUTION LTD', 1, 1, '2017-08-09 06:54:02', NULL, '0000-00-00 00:00:00'),
(147, 'RANI FOOD INDUSTRIES LTD', 1, 1, '2017-08-09 06:54:17', NULL, '0000-00-00 00:00:00'),
(148, 'Provati Trading Corporation', 1, 1, '2017-08-09 06:54:35', NULL, '0000-00-00 00:00:00'),
(150, 'Organix GSK', 1, 1, '2017-08-09 06:54:56', NULL, '0000-00-00 00:00:00'),
(151, 'MSN Corporation', 1, 1, '2017-08-09 06:55:15', NULL, '0000-00-00 00:00:00'),
(152, 'MS DHAKA TRADING', 1, 1, '2017-08-09 06:55:32', NULL, '0000-00-00 00:00:00'),
(153, 'Aqeeda International', 1, 1, '2017-08-09 06:55:35', NULL, '0000-00-00 00:00:00'),
(154, 'PARAGON TRADING', 1, 1, '2017-08-09 06:55:46', NULL, '0000-00-00 00:00:00'),
(155, 'K K DISTRIBUTION', 1, 1, '2017-08-09 06:55:55', NULL, '0000-00-00 00:00:00'),
(156, '<NAME>', 1, 1, '2017-08-09 06:56:00', NULL, '0000-00-00 00:00:00'),
(157, 'IGLOO DAIRY LTD', 1, 1, '2017-08-09 06:56:07', NULL, '0000-00-00 00:00:00'),
(158, 'MR TRADERS', 1, 1, '2017-08-09 06:56:18', NULL, '0000-00-00 00:00:00'),
(159, 'Ifad Multi Products Ltd', 1, 1, '2017-08-09 06:56:25', NULL, '0000-00-00 00:00:00'),
(160, 'CRB FOODS', 1, 1, '2017-08-09 06:56:27', NULL, '0000-00-00 00:00:00'),
(161, 'RAIAN ENTERPRISE', 1, 1, '2017-08-09 06:56:36', NULL, '0000-00-00 00:00:00'),
(162, 'PAN ASIA TRADE HOUSE', 1, 1, '2017-08-09 06:56:48', NULL, '0000-00-00 00:00:00'),
(163, 'STAR ALLIANCE', 1, 1, '2017-08-09 06:56:49', NULL, '0000-00-00 00:00:00'),
(164, 'Organix', 1, 1, '2017-08-09 06:57:14', NULL, '0000-00-00 00:00:00'),
(165, 'EQUAL MARKETING LTD', 1, 1, '2017-08-09 06:57:20', NULL, '0000-00-00 00:00:00'),
(166, 'ARIK ENTERPRISE', 1, 1, '2017-08-09 06:57:37', NULL, '0000-00-00 00:00:00'),
(167, 'City Marketing International', 1, 1, '2017-08-09 06:57:39', NULL, '0000-00-00 00:00:00'),
(168, 'Paramount Trading Systems Ltd', 1, 1, '2017-08-09 06:57:59', NULL, '0000-00-00 00:00:00'),
(169, 'MOON STAR ALLIANCE', 1, 1, '2017-08-09 06:58:09', NULL, '0000-00-00 00:00:00'),
(170, 'GABY TRADE INTERNATIONAL', 1, 1, '2017-08-09 06:58:23', NULL, '0000-00-00 00:00:00'),
(171, '<NAME>', 1, 1, '2017-08-09 06:58:31', NULL, '0000-00-00 00:00:00'),
(172, 'BanglaDutch Developments Ltd', 1, 1, '2017-08-09 06:58:49', NULL, '0000-00-00 00:00:00'),
(173, 'Zebra Corporation Bd Ltd', 1, 1, '2017-08-09 06:59:02', NULL, '0000-00-00 00:00:00'),
(174, 'Empirical Consumer Products Ltd', 1, 1, '2017-08-09 06:59:05', NULL, '0000-00-00 00:00:00'),
(175, 'Shipserve Trading Distribution', 1, 1, '2017-08-09 06:59:38', NULL, '0000-00-00 00:00:00'),
(176, 'International Distribution Co BD Pvt', 1, 1, '2017-08-09 07:00:00', NULL, '0000-00-00 00:00:00'),
(177, 'HAIKO CONSUMER PRODUCT', 1, 1, '2017-08-09 07:00:02', NULL, '0000-00-00 00:00:00'),
(178, 'EON FOODS LIMITED', 1, 1, '2017-08-09 07:00:27', NULL, '0000-00-00 00:00:00'),
(179, 'COCOLA FOOD PRODUCTS LTD', 1, 1, '2017-08-09 07:00:32', NULL, '0000-00-00 00:00:00'),
(180, 'Asian Consumer Care', 1, 1, '2017-08-09 07:00:58', NULL, '0000-00-00 00:00:00'),
(181, 'KISWAN FOODS', 1, 1, '2017-08-09 07:01:08', NULL, '0000-00-00 00:00:00'),
(182, 'KAZI FOOD INDUSTRIES LTD', 1, 1, '2017-08-09 07:01:19', NULL, '0000-00-00 00:00:00'),
(183, '<NAME>', 1, 1, '2017-08-09 07:01:31', NULL, '0000-00-00 00:00:00'),
(184, 'Aponjon', 1, 1, '2017-08-09 07:58:37', NULL, '0000-00-00 00:00:00'),
(186, 'Kohinoor Chemical company Ltd', 1, 1, '2017-08-09 08:04:18', NULL, '0000-00-00 00:00:00'),
(187, 'Devine corporation Ltd', 1, 1, '2017-08-09 08:36:55', NULL, '0000-00-00 00:00:00'),
(188, 'Rekit benkezer ltd', 1, 1, '2017-08-09 09:04:57', NULL, '0000-00-00 00:00:00'),
(189, 'UNION BD CONSUMER LTD', 1, 1, '2017-08-09 09:13:03', NULL, '0000-00-00 00:00:00'),
(190, 'Mela International', 1, 1, '2017-08-09 10:29:14', NULL, '0000-00-00 00:00:00'),
(191, 'Banijjo international', 1, 1, '2017-08-09 10:44:12', NULL, '0000-00-00 00:00:00'),
(192, 'Glo Brands', 1, 1, '2017-08-09 10:55:30', NULL, '0000-00-00 00:00:00'),
(193, 'ELIT MARKETING CO', 1, 1, '2017-08-09 11:40:14', NULL, '0000-00-00 00:00:00'),
(194, 'BRAND CONNECT', 1, 1, '2017-08-09 12:25:00', NULL, '0000-00-00 00:00:00'),
(195, 'HOSSEN TREADING INT ', 1, 1, '2017-08-09 12:37:05', NULL, '0000-00-00 00:00:00'),
(196, 'Avijat Trading Crop', 1, 1, '2017-08-10 00:14:45', NULL, '0000-00-00 00:00:00'),
(197, 'Darkin Trade and Dristibution', 1, 1, '2017-08-10 00:15:21', NULL, '0000-00-00 00:00:00'),
(198, 'P And G ', 1, 1, '2017-08-10 01:03:54', NULL, '0000-00-00 00:00:00'),
(199, 'Rohto-Mentholatum BD LTD', 1, 1, '2017-08-10 03:20:34', NULL, '0000-00-00 00:00:00'),
(200, 'S M International', 1, 1, '2017-08-10 04:41:18', NULL, '0000-00-00 00:00:00'),
(201, 'Dynamic Little Star LTD', 1, 1, '2017-08-10 05:56:17', NULL, '0000-00-00 00:00:00'),
(202, 'Ayurbedik Himtaj Products BD LTD', 1, 1, '2017-08-10 06:28:00', NULL, '0000-00-00 00:00:00'),
(203, 'Nestle BD LTD', 1, 1, '2017-08-10 08:54:34', NULL, '0000-00-00 00:00:00'),
(204, 'Jhonson and Jhonson Pvt Ltd', 1, 1, '2017-08-10 08:54:52', NULL, '0000-00-00 00:00:00'),
(205, 'Al-Madina Pvt Ltd', 1, 1, '2017-08-10 09:25:22', NULL, '0000-00-00 00:00:00'),
(206, 'Arla Food BD LTD', 1, 1, '2017-08-10 09:27:34', NULL, '0000-00-00 00:00:00'),
(207, 'Ispahani Limited', 0, 1, '2017-08-09 21:03:36', NULL, '0000-00-00 00:00:00'),
(208, 'ACME Agrovet and Beverages Ltd', 1, 1, '2017-08-10 22:39:41', NULL, '0000-00-00 00:00:00'),
(209, 'Pran Company Ltd', 1, 1, '2017-08-10 10:23:31', 1, '2017-08-10 23:23:31'),
(210, 'Star Line Food Product Ltd', 1, 1, '2017-08-10 23:29:51', NULL, '0000-00-00 00:00:00'),
(211, 'Banoful And Company Ltd', 1, 1, '2017-08-10 23:42:05', NULL, '0000-00-00 00:00:00'),
(212, 'Roshmela Food Products Ltd', 1, 1, '2017-08-11 00:11:35', NULL, '0000-00-00 00:00:00'),
(213, 'Square Food and Beverage Ltd', 1, 1, '2017-08-11 01:03:47', NULL, '0000-00-00 00:00:00'),
(214, 'Omega Distribution LTD', 1, 1, '2017-08-11 05:24:59', NULL, '0000-00-00 00:00:00'),
(215, 'Cotton Mart International', 1, 1, '2017-08-11 05:30:06', NULL, '0000-00-00 00:00:00'),
(216, 'RSPL Health BD Ltd', 1, 1, '2017-08-11 23:10:24', NULL, '0000-00-00 00:00:00'),
(217, 'Bangladesh Adibol Oil Ltd', 1, 1, '2017-08-12 06:43:22', NULL, '0000-00-00 00:00:00'),
(218, 'Teer Oil LTD', 1, 1, '2017-08-12 06:52:00', NULL, '0000-00-00 00:00:00'),
(219, 'R<NAME> Mills LTD', 1, 1, '2017-08-12 07:12:08', NULL, '0000-00-00 00:00:00'),
(220, 'Bashundhara Group ', 1, 1, '2017-08-12 07:27:48', NULL, '0000-00-00 00:00:00'),
(221, 'Farlin Industrial Ltd', 1, 1, '2017-08-12 08:39:36', NULL, '0000-00-00 00:00:00'),
(222, 'Angel Yellow Care LTD', 1, 1, '2017-08-12 08:41:35', NULL, '0000-00-00 00:00:00'),
(223, 'Home Plus Own Collection', 1, 1, '2017-08-12 09:26:50', NULL, '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `companynames` ENABLE KEYS */;
-- Dumping structure for table db_test.companyprofiles
CREATE TABLE IF NOT EXISTS `companyprofiles` (
`company_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`company_name` text COLLATE utf8_unicode_ci NOT NULL,
`address` text COLLATE utf8_unicode_ci NOT NULL,
`mobile` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
`web_address` text COLLATE utf8_unicode_ci NOT NULL,
`return_policy` int(11) NOT NULL DEFAULT '0' COMMENT '0=No, 1=Yes',
`max_inv_dis_percent` int(3) NOT NULL,
`language` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`time_zone` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`print_recipt_a_sale` int(11) NOT NULL DEFAULT '0' COMMENT '0=No, 1=Yes',
`quick_sending_receiving` int(11) NOT NULL DEFAULT '0',
`theme` int(11) NOT NULL DEFAULT '0' COMMENT '0=style0, 1=style1, 2=style2, 3=style3',
`back_date_sales` int(11) NOT NULL DEFAULT '0' COMMENT '1=yes,0=no',
`back_date_purchase` int(11) NOT NULL COMMENT '1=yes,0=no',
`back_date_return` int(11) NOT NULL COMMENT '1=yes,0=no',
`install_complete` int(11) NOT NULL DEFAULT '0' COMMENT '0=No, 1=Yes',
`year` int(11) NOT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `company_id` (`company_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.companyprofiles: ~0 rows (approximately)
/*!40000 ALTER TABLE `companyprofiles` DISABLE KEYS */;
INSERT INTO `companyprofiles` (`company_id`, `company_name`, `address`, `mobile`, `web_address`, `return_policy`, `max_inv_dis_percent`, `language`, `time_zone`, `print_recipt_a_sale`, `quick_sending_receiving`, `theme`, `back_date_sales`, `back_date_purchase`, `back_date_return`, `install_complete`, `year`, `created_at`, `updated_at`) VALUES
(1, 'Home Plus', 'Latu Miah Complex, S.S.K. Road, FENI. Ground Floor MN-01847238358, MN-01719789432', '01717621795', 'asiabazar.com', 1, 0, 'english', 'asia/dhaka', 0, 1, 0, 1, 0, 0, 1, 2015, '2015-12-08 15:47:23', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `companyprofiles` ENABLE KEYS */;
-- Dumping structure for table db_test.cusduepayments
CREATE TABLE IF NOT EXISTS `cusduepayments` (
`c_due_payment_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`cus_id` int(10) unsigned NOT NULL,
`payment_type_id` int(10) unsigned NOT NULL,
`amount` double(12,3) NOT NULL,
`date` date NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `c_due_payment_id` (`c_due_payment_id`),
KEY `cusduepayments_c_due_payment_id_index` (`c_due_payment_id`),
KEY `cusduepayments_cus_id_foreign` (`cus_id`),
KEY `cusduepayments_payment_type_id_foreign` (`payment_type_id`),
KEY `cusduepayments_created_by_foreign` (`created_by`),
KEY `cusduepayments_updated_by_foreign` (`updated_by`),
CONSTRAINT `cusduepayments_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `cusduepayments_cus_id_foreign` FOREIGN KEY (`cus_id`) REFERENCES `customerinfos` (`cus_id`) ON UPDATE CASCADE,
CONSTRAINT `cusduepayments_payment_type_id_foreign` FOREIGN KEY (`payment_type_id`) REFERENCES `paymenttypes` (`payment_type_id`) ON UPDATE CASCADE,
CONSTRAINT `cusduepayments_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.cusduepayments: ~0 rows (approximately)
/*!40000 ALTER TABLE `cusduepayments` DISABLE KEYS */;
/*!40000 ALTER TABLE `cusduepayments` ENABLE KEYS */;
-- Dumping structure for table db_test.customerinfos
CREATE TABLE IF NOT EXISTS `customerinfos` (
`cus_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`cus_type_id` int(10) unsigned NOT NULL,
`full_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`user_name` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL,
`permanent_address` text COLLATE utf8_unicode_ci NOT NULL,
`present_address` text COLLATE utf8_unicode_ci NOT NULL,
`profile_image` text COLLATE utf8_unicode_ci,
`national_id` bigint(20) DEFAULT NULL,
`mobile` varchar(15) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`cus_card_id` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`advance_payment` int(11) NOT NULL DEFAULT '0',
`due` double NOT NULL DEFAULT '0',
`point` int(11) NOT NULL DEFAULT '0',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `cus_id` (`cus_id`),
UNIQUE KEY `customerinfos_user_name_unique` (`user_name`),
UNIQUE KEY `customerinfos_cus_card_id_unique` (`cus_card_id`),
UNIQUE KEY `national_id` (`national_id`),
KEY `customerinfos_cus_id_index` (`cus_id`),
KEY `customerinfos_cus_type_id_foreign` (`cus_type_id`),
KEY `customerinfos_created_by_foreign` (`created_by`),
KEY `customerinfos_updated_by_foreign` (`updated_by`),
CONSTRAINT `customerinfos_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `customerinfos_cus_type_id_foreign` FOREIGN KEY (`cus_type_id`) REFERENCES `customertypes` (`cus_type_id`) ON UPDATE CASCADE,
CONSTRAINT `customerinfos_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.customerinfos: ~0 rows (approximately)
/*!40000 ALTER TABLE `customerinfos` DISABLE KEYS */;
INSERT INTO `customerinfos` (`cus_id`, `cus_type_id`, `full_name`, `user_name`, `password`, `permanent_address`, `present_address`, `profile_image`, `national_id`, `mobile`, `email`, `cus_card_id`, `advance_payment`, `due`, `point`, `status`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(1, 1, '<NAME>', 'Rex-fahad', NULL, 'Feni', 'Feni', NULL, 0, '01717621795', '<EMAIL>', '1000000', 0, 0, 0, 1, 1, NULL, '2017-08-20 13:59:42', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `customerinfos` ENABLE KEYS */;
-- Dumping structure for table db_test.customertypes
CREATE TABLE IF NOT EXISTS `customertypes` (
`cus_type_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`cus_type_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`discount_percent` double(12,3) NOT NULL,
`point_unit` double(12,3) NOT NULL COMMENT 'per unit point =?',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `cus_type_id` (`cus_type_id`),
UNIQUE KEY `cus_type_name` (`cus_type_name`),
KEY `customertypes_cus_type_id_index` (`cus_type_id`),
KEY `customertypes_created_by_foreign` (`created_by`),
KEY `customertypes_updated_by_foreign` (`updated_by`),
CONSTRAINT `customertypes_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `customertypes_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.customertypes: ~0 rows (approximately)
/*!40000 ALTER TABLE `customertypes` DISABLE KEYS */;
INSERT INTO `customertypes` (`cus_type_id`, `cus_type_name`, `discount_percent`, `point_unit`, `status`, `year`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(1, 'Vip_Customer', 5.000, 0.000, 1, 0, 1, 1, '2017-08-20 13:58:39', '2017-08-20 16:56:31');
/*!40000 ALTER TABLE `customertypes` ENABLE KEYS */;
-- Dumping structure for table db_test.damageinvoices
CREATE TABLE IF NOT EXISTS `damageinvoices` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`damage_invoice_id` varchar(14) NOT NULL,
`amount` double(12,3) NOT NULL,
`date` date NOT NULL,
`status` int(1) NOT NULL DEFAULT '1' COMMENT '0=inactive, 1=active',
`created_by` int(10) unsigned NOT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_by` int(10) unsigned DEFAULT NULL,
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `damage_invoice_id` (`damage_invoice_id`),
KEY `FK_damageinvoices_empinfos` (`created_by`),
KEY `FK_damageinvoices_empinfos_2` (`updated_by`),
CONSTRAINT `FK_damageinvoices_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_damageinvoices_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- Dumping data for table db_test.damageinvoices: ~0 rows (approximately)
/*!40000 ALTER TABLE `damageinvoices` DISABLE KEYS */;
/*!40000 ALTER TABLE `damageinvoices` ENABLE KEYS */;
-- Dumping structure for table db_test.del_itempurchases
CREATE TABLE IF NOT EXISTS `del_itempurchases` (
`i_purchase_id` int(10) unsigned NOT NULL,
`del_sup_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`item_id` int(10) unsigned NOT NULL,
`price_id` int(10) unsigned NOT NULL,
`quantity` double(12,4) NOT NULL,
`discount` double(12,3) NOT NULL,
`amount` double(12,3) NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `i_purchase_id` (`i_purchase_id`),
KEY `itempurchases_i_purchase_id_index` (`i_purchase_id`),
KEY `itempurchases_sup_invoice_id_foreign` (`del_sup_invoice_id`),
KEY `itempurchases_item_id_foreign` (`item_id`),
KEY `itempurchases_price_id_foreign` (`price_id`),
KEY `itempurchases_created_by_foreign` (`created_by`),
KEY `itempurchases_updated_by_foreign` (`updated_by`),
CONSTRAINT `del_itempurchases_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `del_itempurchases_ibfk_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `del_itempurchases_ibfk_3` FOREIGN KEY (`item_id`) REFERENCES `iteminfos` (`item_id`) ON UPDATE CASCADE,
CONSTRAINT `del_itempurchases_ibfk_4` FOREIGN KEY (`price_id`) REFERENCES `priceinfos` (`price_id`) ON UPDATE CASCADE,
CONSTRAINT `del_itempurchases_ibfk_5` FOREIGN KEY (`del_sup_invoice_id`) REFERENCES `del_supinvoices` (`sup_invoice_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT;
-- Dumping data for table db_test.del_itempurchases: ~0 rows (approximately)
/*!40000 ALTER TABLE `del_itempurchases` DISABLE KEYS */;
/*!40000 ALTER TABLE `del_itempurchases` ENABLE KEYS */;
-- Dumping structure for table db_test.del_itemsales
CREATE TABLE IF NOT EXISTS `del_itemsales` (
`i_sale_id` int(10) unsigned NOT NULL,
`del_sale_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`item_id` int(10) unsigned NOT NULL,
`price_id` int(10) unsigned NOT NULL,
`quantity` double(12,4) NOT NULL,
`discount` double(12,3) NOT NULL,
`tax` double(12,3) NOT NULL,
`amount` double(12,3) NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `i_sale_id` (`i_sale_id`),
KEY `itemsales_i_sale_id_index` (`i_sale_id`),
KEY `itemsales_sale_invoice_id_foreign` (`del_sale_invoice_id`),
KEY `itemsales_item_id_foreign` (`item_id`),
KEY `itemsales_price_id_foreign` (`price_id`),
KEY `itemsales_created_by_foreign` (`created_by`),
KEY `itemsales_updated_by_foreign` (`updated_by`),
CONSTRAINT `del_itemsales_ibfk_1` FOREIGN KEY (`del_sale_invoice_id`) REFERENCES `del_saleinvoices` (`sale_invoice_id`),
CONSTRAINT `del_itemsales_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `del_itemsales_ibfk_3` FOREIGN KEY (`item_id`) REFERENCES `iteminfos` (`item_id`) ON UPDATE CASCADE,
CONSTRAINT `del_itemsales_ibfk_4` FOREIGN KEY (`price_id`) REFERENCES `priceinfos` (`price_id`) ON UPDATE CASCADE,
CONSTRAINT `del_itemsales_ibfk_5` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci CHECKSUM=1 ROW_FORMAT=COMPACT;
-- Dumping data for table db_test.del_itemsales: ~0 rows (approximately)
/*!40000 ALTER TABLE `del_itemsales` DISABLE KEYS */;
/*!40000 ALTER TABLE `del_itemsales` ENABLE KEYS */;
-- Dumping structure for table db_test.del_purchasereturntosupplier
CREATE TABLE IF NOT EXISTS `del_purchasereturntosupplier` (
`purchase_return_id` int(10) unsigned NOT NULL,
`del_sup_r_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`item_id` int(10) unsigned NOT NULL,
`price_id` int(10) unsigned NOT NULL,
`quantity` double(12,4) NOT NULL,
`discount` double(12,3) NOT NULL,
`amount` double(12,3) NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `i_sup_return_id` (`purchase_return_id`),
KEY `purchasertosuppliers_i_sup_return_id_index` (`purchase_return_id`),
KEY `purchasertosuppliers_sup_r_invoice_id_foreign` (`del_sup_r_invoice_id`),
KEY `purchasertosuppliers_item_id_foreign` (`item_id`),
KEY `purchasertosuppliers_price_id_foreign` (`price_id`),
KEY `purchasertosuppliers_created_by_foreign` (`created_by`),
KEY `purchasertosuppliers_updated_by_foreign` (`updated_by`),
CONSTRAINT `del_purchasereturntosupplier_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `del_purchasereturntosupplier_ibfk_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `del_purchasereturntosupplier_ibfk_3` FOREIGN KEY (`item_id`) REFERENCES `iteminfos` (`item_id`) ON UPDATE CASCADE,
CONSTRAINT `del_purchasereturntosupplier_ibfk_4` FOREIGN KEY (`price_id`) REFERENCES `priceinfos` (`price_id`) ON UPDATE CASCADE,
CONSTRAINT `del_purchasereturntosupplier_ibfk_5` FOREIGN KEY (`del_sup_r_invoice_id`) REFERENCES `del_supplierreturninvoices` (`sup_r_invoice_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT;
-- Dumping data for table db_test.del_purchasereturntosupplier: ~0 rows (approximately)
/*!40000 ALTER TABLE `del_purchasereturntosupplier` DISABLE KEYS */;
/*!40000 ALTER TABLE `del_purchasereturntosupplier` ENABLE KEYS */;
-- Dumping structure for table db_test.del_saleinvoices
CREATE TABLE IF NOT EXISTS `del_saleinvoices` (
`id` int(11) NOT NULL,
`sale_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`cus_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'can be 0 for unregister customer',
`payment_type_id` int(10) unsigned NOT NULL,
`discount` double(12,3) NOT NULL,
`point_use_taka` int(11) NOT NULL,
`amount` double NOT NULL COMMENT 'payable amount',
`pay` double(12,3) NOT NULL,
`due` double(12,3) NOT NULL,
`pay_note` int(11) NOT NULL,
`date` date NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `sale_invoice_id` (`sale_invoice_id`),
KEY `saleinvoices_payment_type_id_foreign` (`payment_type_id`),
KEY `saleinvoices_created_by_foreign` (`created_by`),
KEY `saleinvoices_updated_by_foreign` (`updated_by`),
KEY `FK_saleinvoices_customerinfos` (`cus_id`),
CONSTRAINT `del_saleinvoices_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `del_saleinvoices_ibfk_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `del_saleinvoices_ibfk_3` FOREIGN KEY (`payment_type_id`) REFERENCES `paymenttypes` (`payment_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT;
-- Dumping data for table db_test.del_saleinvoices: ~0 rows (approximately)
/*!40000 ALTER TABLE `del_saleinvoices` DISABLE KEYS */;
/*!40000 ALTER TABLE `del_saleinvoices` ENABLE KEYS */;
-- Dumping structure for table db_test.del_salereturninvoices
CREATE TABLE IF NOT EXISTS `del_salereturninvoices` (
`id` int(11) NOT NULL,
`sale_r_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`del_sale_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`cus_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'can be 0 for unregister customer',
`payment_type_id` int(10) unsigned NOT NULL,
`amount` double(12,3) NOT NULL,
`less_amount` double(12,3) NOT NULL COMMENT 'loss amount of customer for return',
`transaction_date` date NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `sale_return_invoice_id` (`sale_r_invoice_id`),
KEY `salereturninvoices_payment_type_id_foreign` (`payment_type_id`),
KEY `salereturninvoices_created_by_foreign` (`created_by`),
KEY `salereturninvoices_updated_by_foreign` (`updated_by`),
KEY `FK_salereturninvoices_saleinvoices` (`del_sale_invoice_id`),
KEY `FK_salereturninvoices_customerinfos` (`cus_id`),
CONSTRAINT `FK_del_salereturninvoices_del_saleinvoices` FOREIGN KEY (`del_sale_invoice_id`) REFERENCES `del_saleinvoices` (`sale_invoice_id`),
CONSTRAINT `del_salereturninvoices_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `del_salereturninvoices_ibfk_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `del_salereturninvoices_ibfk_3` FOREIGN KEY (`payment_type_id`) REFERENCES `paymenttypes` (`payment_type_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT;
-- Dumping data for table db_test.del_salereturninvoices: ~0 rows (approximately)
/*!40000 ALTER TABLE `del_salereturninvoices` DISABLE KEYS */;
/*!40000 ALTER TABLE `del_salereturninvoices` ENABLE KEYS */;
-- Dumping structure for table db_test.del_salereturntostocks
CREATE TABLE IF NOT EXISTS `del_salereturntostocks` (
`i_sale_return_id` int(10) unsigned NOT NULL,
`del_sale_r_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`item_id` int(10) unsigned NOT NULL,
`price_id` int(10) unsigned NOT NULL,
`quantity` double(12,4) NOT NULL,
`discount` double(12,3) NOT NULL,
`tax` double(12,4) NOT NULL,
`amount` double(12,3) NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `i_sale_return_id` (`i_sale_return_id`),
KEY `salereturntostocks_i_sale_return_id_index` (`i_sale_return_id`),
KEY `salereturntostocks_sale_r_invoice_id_foreign` (`del_sale_r_invoice_id`),
KEY `salereturntostocks_item_id_foreign` (`item_id`),
KEY `salereturntostocks_price_id_foreign` (`price_id`),
KEY `salereturntostocks_created_by_foreign` (`created_by`),
KEY `salereturntostocks_updated_by_foreign` (`updated_by`),
CONSTRAINT `FK_del_salereturntostocks_del_salereturninvoices` FOREIGN KEY (`del_sale_r_invoice_id`) REFERENCES `del_salereturninvoices` (`sale_r_invoice_id`) ON UPDATE CASCADE,
CONSTRAINT `del_salereturntostocks_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `del_salereturntostocks_ibfk_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `del_salereturntostocks_ibfk_3` FOREIGN KEY (`item_id`) REFERENCES `iteminfos` (`item_id`),
CONSTRAINT `del_salereturntostocks_ibfk_4` FOREIGN KEY (`price_id`) REFERENCES `priceinfos` (`price_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT;
-- Dumping data for table db_test.del_salereturntostocks: ~0 rows (approximately)
/*!40000 ALTER TABLE `del_salereturntostocks` DISABLE KEYS */;
/*!40000 ALTER TABLE `del_salereturntostocks` ENABLE KEYS */;
-- Dumping structure for table db_test.del_supinvoices
CREATE TABLE IF NOT EXISTS `del_supinvoices` (
`id` int(11) NOT NULL,
`sup_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`sup_memo_no` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`supp_id` int(10) unsigned DEFAULT '0' COMMENT '0 means unregistrad customer',
`payment_type_id` int(10) unsigned NOT NULL,
`discount` double(12,3) NOT NULL,
`amount` double NOT NULL COMMENT 'payable amount',
`pay` double(12,3) NOT NULL,
`due` double(12,3) NOT NULL,
`transaction_date` date NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `sup_invoice_id` (`sup_invoice_id`),
UNIQUE KEY `sup_memo_no` (`sup_memo_no`),
KEY `supinvoices_supp_id_foreign` (`supp_id`),
KEY `supinvoices_payment_type_id_foreign` (`payment_type_id`),
KEY `supinvoices_created_by_foreign` (`created_by`),
KEY `supinvoices_updated_by_foreign` (`updated_by`),
KEY `sup_invoice_id_2` (`sup_invoice_id`),
CONSTRAINT `del_supinvoices_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `del_supinvoices_ibfk_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `del_supinvoices_ibfk_3` FOREIGN KEY (`payment_type_id`) REFERENCES `paymenttypes` (`payment_type_id`) ON UPDATE CASCADE,
CONSTRAINT `del_supinvoices_ibfk_4` FOREIGN KEY (`supp_id`) REFERENCES `supplierinfos` (`supp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT;
-- Dumping data for table db_test.del_supinvoices: ~0 rows (approximately)
/*!40000 ALTER TABLE `del_supinvoices` DISABLE KEYS */;
/*!40000 ALTER TABLE `del_supinvoices` ENABLE KEYS */;
-- Dumping structure for table db_test.del_supplierreturninvoices
CREATE TABLE IF NOT EXISTS `del_supplierreturninvoices` (
`id` int(11) NOT NULL,
`sup_r_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`del_sup_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`supp_id` int(10) unsigned NOT NULL,
`payment_type_id` int(10) unsigned NOT NULL,
`amount` double(12,3) NOT NULL,
`less_amount` double(12,3) NOT NULL COMMENT 'loss amount of customer for return',
`transaction_date` date NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `sup_r_invoice_id` (`sup_r_invoice_id`),
KEY `supplierreturninvoices_supp_id_foreign` (`supp_id`),
KEY `supplierreturninvoices_payment_type_id_foreign` (`payment_type_id`),
KEY `supplierreturninvoices_created_by_foreign` (`created_by`),
KEY `supplierreturninvoices_updated_by_foreign` (`updated_by`),
KEY `FK_supplierreturninvoices_supinvoices` (`del_sup_invoice_id`),
CONSTRAINT `del_supplierreturninvoices_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `del_supplierreturninvoices_ibfk_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `del_supplierreturninvoices_ibfk_3` FOREIGN KEY (`payment_type_id`) REFERENCES `paymenttypes` (`payment_type_id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `del_supplierreturninvoices_ibfk_4` FOREIGN KEY (`del_sup_invoice_id`) REFERENCES `del_supinvoices` (`sup_invoice_id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `del_supplierreturninvoices_ibfk_5` FOREIGN KEY (`supp_id`) REFERENCES `supplierinfos` (`supp_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT;
-- Dumping data for table db_test.del_supplierreturninvoices: ~0 rows (approximately)
/*!40000 ALTER TABLE `del_supplierreturninvoices` DISABLE KEYS */;
/*!40000 ALTER TABLE `del_supplierreturninvoices` ENABLE KEYS */;
-- Dumping structure for table db_test.empinfos
CREATE TABLE IF NOT EXISTS `empinfos` (
`emp_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`role` int(11) NOT NULL DEFAULT '1' COMMENT '0=g_emp, 1=s_emp, 2=super_admin',
`f_name` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
`l_name` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
`father_name` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`mother_name` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`mobile` varchar(15) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`user_name` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(256) COLLATE utf8_unicode_ci NOT NULL,
`remember_token` varchar(256) COLLATE utf8_unicode_ci NOT NULL,
`permanent_address` text COLLATE utf8_unicode_ci NOT NULL,
`present_address` text COLLATE utf8_unicode_ci NOT NULL,
`profile_image` text COLLATE utf8_unicode_ci NOT NULL,
`national_id` bigint(20) NOT NULL,
`fixed_salary` int(11) NOT NULL,
`advance_salary` int(11) NOT NULL,
`due_salary` int(11) NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `emp_id` (`emp_id`),
UNIQUE KEY `empinfos_user_name_unique` (`user_name`),
KEY `empinfos_emp_id_index` (`emp_id`),
KEY `empinfos_created_by_foreign` (`created_by`),
KEY `empinfos_updated_by_foreign` (`updated_by`),
CONSTRAINT `empinfos_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `empinfos_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.empinfos: ~11 rows (approximately)
/*!40000 ALTER TABLE `empinfos` DISABLE KEYS */;
INSERT INTO `empinfos` (`emp_id`, `role`, `f_name`, `l_name`, `father_name`, `mother_name`, `mobile`, `email`, `user_name`, `password`, `remember_token`, `permanent_address`, `present_address`, `profile_image`, `national_id`, `fixed_salary`, `advance_salary`, `due_salary`, `status`, `year`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(1, 2, 'Ashik', '', '', '', '01817702053', '<EMAIL>', 'admin', '$2y$10$BTcDDTcd62l013eDIeZj5u6EQFMUG9BvtotO5CMX4caRy7Rg7u0a6', '<PASSWORD>', 'nil', 'nil', '', 1257489631, 1, 0, 0, 1, 2015, 1, 1, '2015-12-08 15:47:23', '2017-08-20 17:18:57'),
(2, 0, 'md', 'shaheen', 'asdf', 'fdsa', '12457845454545', '<EMAIL>', 'sha<PASSWORD>', '$2y$10$BTcDDTcd62l013eDIeZj5u6EQFMUG9BvtotO5CMX4caRy7Rg7u0a6', 'UJxXR8TfNIuO2uI70n0N7d2aFutQcnVYV7VZ3fPSR1uOyPsabv8z3faDATuG', 'fdc', 'jiujh', '', 0, 0, 0, 0, 0, 0, 1, 1, '2015-12-14 00:21:54', '2016-03-28 20:31:48'),
(3, 0, 'saddam', 'hossian', 'asf', 'asdf', '123456789876', '', 'sajeeb', '$2y$10$BTcDDTcd62l013eDIeZj5u6EQFMUG9BvtotO5CMX4caRy7Rg7u0a6', 'w15wzVc4Kbk54S1QNjukeIO9pg5FDca6inITwCbtygzCT7oTmuNobCohasvQ', 'nil', 'nil', '', 0, 0, 0, 0, 0, 0, 1, 1, '2016-01-22 12:11:44', '2016-03-29 13:06:08'),
(4, 1, 'Hamidur', 'Rahaman', '', '', '01232455454547', '', 'AZAD', '$2y$10$BTcDDTcd62l013eDIeZj5u6EQFMUG9BvtotO5CMX4caRy7Rg7u0a6', 'DizjBIw0OgiBlgMH0ayLbgdijrSEfUErOyp3qqoDtju8YWzlAM3ujpkiHK95', 'nil', '', '', 0, 0, 0, 0, 0, 0, 1, 1, '2016-01-22 12:23:44', '2016-04-25 16:35:41'),
(5, 1, 'Hasan', 'ahmed', '', '', '01234567892', '', 'Hasan', '$2y$10$BTcDDTcd62l013eDIeZj5u6EQFMUG9BvtotO5CMX4caRy7Rg7u0a6', 'UdLd6Y3DOQFUg3K5VHxL3g3EL0R6LgqUtgO8WrmcgYhOARXuJQwgBFxrrFNF', 'nil', 'nil', '', 0, 0, 0, 0, 0, 0, 1, 1, '2016-01-23 12:51:43', '2016-04-25 16:36:59'),
(6, 1, 'khaleq', 'abdul', '', '', '012345678912', '', 'Khaleq', '$2y$10$BTcDDTcd62l013eDIeZj5u6EQFMUG9BvtotO5CMX4caRy7Rg7u0a6', 'El3TpNhU169IBT0aDZrKoieQkmXNwGBun8WlNPlchRIZcZsk4wchtdBZxvZr', 'nil', 'nil', '', 0, 0, 0, 0, 0, 0, 1, 1, '2016-01-23 13:02:04', '2016-03-29 09:37:28'),
(7, 1, 'main', 'uddin', '', '', '0123456789456', '', 'mainuddin', '$2y$10$BTcDDTcd62l013eDIeZj5u6EQFMUG9BvtotO5CMX4caRy7Rg7u0a6', '6rkdtTRTLxCbGOOmmPrMr8InNyfcfjdhunRYIjGj0mLWz2eHevIIrPoBEou4', 'nil', 'nil', '', 0, 0, 0, 0, 0, 0, 1, 1, '2016-01-23 14:43:27', '2016-03-29 13:00:18'),
(8, 2, 'NIZAM', 'Uddin', '<NAME>', '<NAME>', '01682767535', '<EMAIL>', 'azim', '$2y$10$BTcDDTcd62l013eDIeZj5u6EQFMUG9BvtotO5CMX4caRy7Rg7u0a6', '3CXwHVcBKGVBhCHeeL6eKEBiju1uDm6mBKu5c21uigu693pZRRXPj56PZ7sS', 'FCI', 'FCI', '', 0, 0, 0, 0, 0, 0, 1, 1, '2016-01-24 09:29:04', '2016-03-07 21:33:22'),
(9, 2, 'Habibur', 'RHAMAN', 'AAAAAAAAAAAAAAAAAA', 'BBBBBBBBBBBBB', '123456789012', '', 'HAB', '$2y$10$BTcDDTcd62l013eDIeZj5u6EQFMUG9BvtotO5CMX4caRy7Rg7u0a6', '', 'feni', 'feni', '', 0, 0, 0, 0, 0, 0, 1, 1, '2016-01-25 09:27:59', '2016-03-07 10:53:27'),
(10, 1, 'shiblu', 'shiblu', '', '', '01234567892', '', 'shiblu', '$2y$10$BTcDDTcd62l013eDIeZj5u6EQFMUG9BvtotO5CMX4caRy7Rg7u0a6', 'RdZmTs2NvKKWebJarfOyAK1XTJlW7C0LYvVHP5F7uf4I4ER67ZDKihmScheJ', '', '', '', 0, 0, 0, 0, 0, 0, 1, 1, '2016-01-25 09:50:46', '2016-03-29 10:57:37'),
(11, 1, 'Mahfuz', 'Rahman', '', '', '01600000000', '', 'mahfuz', '$2y$10$rqK2HLMN1LkZi3zXiRIIN.WylTY2ya1a0iBb2l3OjDzPVWSaw8r5u', '0iJuqb7wLBy4XXkysBPMNqgR6FX7iARriK6IJ3lcHanEnIIzsMtzFygDtsOP', 'Feni', 'Feni', '', 19930101010101, 6000, 0, 0, 1, 0, 1, NULL, '2017-08-20 01:45:40', '2017-08-20 01:50:13'),
(12, 1, 'Shahadat', 'Hossain', '<NAME>', '<NAME>', '018301113471', '<EMAIL>', 'shahadat', '$2y$10$K8vOd4Ip577/VJsxIxLrs.tW2ocJqkD082eKQuFdJbSMIjcvTwc9u', '4btLufYteAsvSk6dErQrPYBOSCGwpROKKSjumGl74KenoAOuPfwXQ8Ss6w6U', 'Keroniya, Dagonbhuiyan,Feni', 'Keroniya, Dagonbhuiyan,Feni', '', 199400000000001, 5000, 0, 0, 1, 0, 1, NULL, '2017-08-20 14:15:56', '2017-08-20 17:03:04');
/*!40000 ALTER TABLE `empinfos` ENABLE KEYS */;
-- Dumping structure for table db_test.godownitems
CREATE TABLE IF NOT EXISTS `godownitems` (
`godown_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL,
`price_id` int(10) unsigned NOT NULL,
`available_quantity` double(12,4) NOT NULL,
`quantity_ability_flag` int(11) NOT NULL DEFAULT '1' COMMENT '0=quantity not available, 1=quentity available',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_by` int(10) unsigned DEFAULT NULL COMMENT 'last item quantity increasing id',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`sending_by` int(10) unsigned DEFAULT NULL COMMENT 'last item sending id to stock',
`sending_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`receiving_by` int(10) unsigned DEFAULT NULL COMMENT 'last item receiving id from stock',
`receiving_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`item_id`,`price_id`),
UNIQUE KEY `godown_item_id` (`godown_item_id`),
KEY `godownitems_godown_item_id_index` (`godown_item_id`),
KEY `godownitems_price_id_foreign` (`price_id`),
KEY `godownitems_created_by_foreign` (`created_by`),
KEY `godownitems_updated_by_foreign` (`updated_by`),
KEY `FK_godownitems_empinfos` (`sending_by`),
KEY `FK_godownitems_empinfos_2` (`receiving_by`),
CONSTRAINT `FK_godownitems_empinfos` FOREIGN KEY (`sending_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_godownitems_empinfos_2` FOREIGN KEY (`receiving_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `godownitems_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `godownitems_item_id_foreign` FOREIGN KEY (`item_id`) REFERENCES `iteminfos` (`item_id`) ON UPDATE CASCADE,
CONSTRAINT `godownitems_price_id_foreign` FOREIGN KEY (`price_id`) REFERENCES `priceinfos` (`price_id`) ON UPDATE CASCADE,
CONSTRAINT `godownitems_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.godownitems: ~15 rows (approximately)
/*!40000 ALTER TABLE `godownitems` DISABLE KEYS */;
INSERT INTO `godownitems` (`godown_item_id`, `item_id`, `price_id`, `available_quantity`, `quantity_ability_flag`, `status`, `year`, `created_by`, `created_at`, `updated_by`, `updated_at`, `sending_by`, `sending_at`, `receiving_by`, `receiving_at`) VALUES
(17, 17241, 38883, -10.0000, 1, 0, 0, 1, '2017-08-13 23:49:27', NULL, '0000-00-00 00:00:00', 1, '2017-08-13 11:49:42', NULL, '0000-00-00 00:00:00'),
(26, 17241, 38927, 0.0000, 1, 0, 0, 1, '2017-08-20 07:49:07', NULL, '0000-00-00 00:00:00', 1, '2017-08-20 02:02:14', NULL, '0000-00-00 00:00:00'),
(25, 17242, 38908, 0.0000, 1, 0, 0, 1, '2017-08-14 01:21:44', NULL, '0000-00-00 00:00:00', 1, '2017-08-20 02:04:16', NULL, '0000-00-00 00:00:00'),
(21, 17243, 38884, 0.0000, 1, 0, 0, 1, '2017-08-14 00:39:25', NULL, '0000-00-00 00:00:00', 1, '2017-08-20 04:46:37', NULL, '0000-00-00 00:00:00'),
(23, 17244, 38916, 0.0000, 1, 0, 0, 1, '2017-08-14 01:19:35', NULL, '0000-00-00 00:00:00', 1, '2017-08-20 02:02:14', NULL, '0000-00-00 00:00:00'),
(22, 17245, 38918, 0.0000, 1, 0, 0, 1, '2017-08-14 00:39:25', NULL, '0000-00-00 00:00:00', 1, '2017-08-14 12:39:30', NULL, '0000-00-00 00:00:00'),
(24, 17256, 38926, 0.0000, 1, 0, 0, 1, '2017-08-14 01:19:35', NULL, '0000-00-00 00:00:00', 1, '2017-08-14 01:19:39', NULL, '0000-00-00 00:00:00'),
(18, 17258, 38922, 0.0000, 1, 0, 0, 1, '2017-08-13 23:49:27', NULL, '0000-00-00 00:00:00', 1, '2017-08-13 11:49:42', NULL, '0000-00-00 00:00:00'),
(28, 17288, 38929, 0.0000, 1, 0, 0, 1, '2017-08-20 11:07:12', NULL, '0000-00-00 00:00:00', 1, '2017-08-20 11:07:15', NULL, '0000-00-00 00:00:00'),
(19, 17305, 38923, 0.0000, 1, 0, 0, 1, '2017-08-13 23:53:09', NULL, '0000-00-00 00:00:00', 1, '2017-08-14 12:34:49', NULL, '0000-00-00 00:00:00'),
(29, 17318, 38930, 0.0000, 1, 0, 0, 1, '2017-08-20 11:07:12', NULL, '0000-00-00 00:00:00', 1, '2017-08-20 11:07:15', NULL, '0000-00-00 00:00:00'),
(20, 17931, 38924, 0.0000, 1, 0, 0, 1, '2017-08-14 00:34:42', NULL, '0000-00-00 00:00:00', 1, '2017-08-14 12:34:49', NULL, '0000-00-00 00:00:00'),
(30, 18177, 38931, 0.0000, 1, 0, 0, 1, '2017-08-20 13:22:33', NULL, '0000-00-00 00:00:00', 1, '2017-08-20 01:29:47', NULL, '0000-00-00 00:00:00'),
(31, 18241, 38932, 0.0000, 1, 0, 0, 1, '2017-08-20 13:30:21', NULL, '0000-00-00 00:00:00', 1, '2017-08-20 01:30:24', NULL, '0000-00-00 00:00:00'),
(27, 19705, 38887, 0.0000, 1, 0, 0, 1, '2017-08-20 09:37:56', NULL, '0000-00-00 00:00:00', 1, '2017-08-20 09:38:10', NULL, '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `godownitems` ENABLE KEYS */;
-- Dumping structure for table db_test.incomeexpensetype
CREATE TABLE IF NOT EXISTS `incomeexpensetype` (
`type_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type_name` varchar(50) NOT NULL,
`used_for` int(1) NOT NULL COMMENT '1=for income, 2=for expense',
`status` int(1) NOT NULL DEFAULT '1' COMMENT '0=inactive, 1=active',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`created_by` int(11) unsigned NOT NULL,
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_by` int(11) unsigned DEFAULT NULL,
PRIMARY KEY (`type_id`),
UNIQUE KEY `type_name` (`type_name`),
KEY `FK_incomeexpensetype_empinfos` (`created_by`),
KEY `FK_incomeexpensetype_empinfos_2` (`updated_by`),
CONSTRAINT `FK_incomeexpensetype_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_incomeexpensetype_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='used for type setting of other income and other expense';
-- Dumping data for table db_test.incomeexpensetype: ~0 rows (approximately)
/*!40000 ALTER TABLE `incomeexpensetype` DISABLE KEYS */;
/*!40000 ALTER TABLE `incomeexpensetype` ENABLE KEYS */;
-- Dumping structure for table db_test.itembrands
CREATE TABLE IF NOT EXISTS `itembrands` (
`brand_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`brand_name` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`offer` int(4) NOT NULL DEFAULT '0',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `brand_id` (`brand_id`),
UNIQUE KEY `itembrands_brand_name_unique` (`brand_name`),
KEY `itembrands_brand_id_index` (`brand_id`),
KEY `itembrands_created_by_foreign` (`created_by`),
KEY `itembrands_updated_by_foreign` (`updated_by`),
CONSTRAINT `itembrands_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `itembrands_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=116 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.itembrands: ~0 rows (approximately)
/*!40000 ALTER TABLE `itembrands` DISABLE KEYS */;
INSERT INTO `itembrands` (`brand_id`, `brand_name`, `offer`, `status`, `year`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(115, 'Lux', 0, 1, 0, 1, NULL, '2017-08-09 05:54:44', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `itembrands` ENABLE KEYS */;
-- Dumping structure for table db_test.itemcategorys
CREATE TABLE IF NOT EXISTS `itemcategorys` (
`category_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_name` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`offer` int(4) NOT NULL DEFAULT '0',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `category_id` (`category_id`),
UNIQUE KEY `itemcategorys_category_name_unique` (`category_name`),
KEY `itemcategorys_category_id_index` (`category_id`),
KEY `itemcategorys_created_by_foreign` (`created_by`),
KEY `itemcategorys_updated_by_foreign` (`updated_by`),
CONSTRAINT `itemcategorys_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `itemcategorys_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.itemcategorys: ~24 rows (approximately)
/*!40000 ALTER TABLE `itemcategorys` DISABLE KEYS */;
INSERT INTO `itemcategorys` (`category_id`, `category_name`, `offer`, `status`, `year`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(24, 'Personal Care', 0, 1, 0, 1, NULL, '2017-08-09 05:54:24', '0000-00-00 00:00:00'),
(25, 'Baby Care', 0, 1, 0, 1, NULL, '2017-08-09 06:47:31', '0000-00-00 00:00:00'),
(26, 'Baby Food', 0, 1, 0, 1, NULL, '2017-08-09 06:47:57', '0000-00-00 00:00:00'),
(27, 'Bevarage And Tobaco', 0, 1, 0, 1, NULL, '2017-08-09 06:49:33', '0000-00-00 00:00:00'),
(28, 'Dairy', 0, 1, 0, 1, NULL, '2017-08-09 06:49:44', '0000-00-00 00:00:00'),
(29, 'Home care', 0, 1, 0, 1, NULL, '2017-08-09 06:49:59', '0000-00-00 00:00:00'),
(30, 'Kitchen Additivers', 0, 1, 0, 1, NULL, '2017-08-09 06:50:49', '0000-00-00 00:00:00'),
(31, 'Package Food', 0, 1, 0, 1, NULL, '2017-08-09 06:51:06', '0000-00-00 00:00:00'),
(33, 'Home Made', 0, 1, 0, 1, NULL, '2017-08-09 06:51:33', '0000-00-00 00:00:00'),
(34, 'Protein', 0, 1, 0, 1, NULL, '2017-08-09 06:51:47', '0000-00-00 00:00:00'),
(35, 'Perishabe', 0, 1, 0, 1, NULL, '2017-08-09 06:52:30', '0000-00-00 00:00:00'),
(36, 'Commodites', 0, 1, 0, 1, NULL, '2017-08-09 06:52:48', '0000-00-00 00:00:00'),
(37, 'Life Style', 0, 1, 0, 1, NULL, '2017-08-09 06:53:00', '0000-00-00 00:00:00'),
(38, 'Electronics', 0, 1, 0, 1, NULL, '2017-08-09 06:53:15', '0000-00-00 00:00:00'),
(39, 'Home Appliance', 0, 1, 0, 1, NULL, '2017-08-09 06:53:32', '0000-00-00 00:00:00'),
(40, 'Home Accessories', 0, 1, 0, 1, NULL, '2017-08-09 06:53:50', '0000-00-00 00:00:00'),
(41, 'Stationaries', 0, 1, 0, 1, NULL, '2017-08-09 06:54:18', '0000-00-00 00:00:00'),
(42, 'Gift And Toys', 0, 1, 0, 1, NULL, '2017-08-09 06:54:44', '0000-00-00 00:00:00'),
(43, 'Resturant', 0, 1, 0, 1, NULL, '2017-08-09 06:55:19', '0000-00-00 00:00:00'),
(44, 'Medicine', 0, 1, 0, 1, NULL, '2017-08-09 09:10:57', '0000-00-00 00:00:00'),
(45, 'NFD', 0, 1, 0, 1, NULL, '2017-08-13 05:50:22', '0000-00-00 00:00:00'),
(46, 'NFD Juwellary', 0, 1, 0, 1, NULL, '2017-08-13 09:11:21', '0000-00-00 00:00:00'),
(47, 'NFD Crockeries', 0, 1, 0, 1, NULL, '2017-08-13 13:24:50', '0000-00-00 00:00:00'),
(48, 'Cosmatices', 0, 1, 0, 1, NULL, '2017-08-13 16:18:21', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `itemcategorys` ENABLE KEYS */;
-- Dumping structure for table db_test.itemdamages
CREATE TABLE IF NOT EXISTS `itemdamages` (
`i_damage_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`damage_invoice_id` varchar(14) NOT NULL,
`item_id` int(10) unsigned NOT NULL,
`price_id` int(10) unsigned NOT NULL,
`quantity` double(12,4) NOT NULL,
`amount` double(12,3) NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`i_damage_id`),
KEY `FK_itemdamages_empinfos` (`created_by`),
KEY `FK_itemdamages_iteminfos` (`item_id`),
KEY `FK_itemdamages_empinfos_2` (`updated_by`),
KEY `FK_itemdamages_priceinfos` (`price_id`),
KEY `damageinvoices_itemdamages` (`damage_invoice_id`),
CONSTRAINT `FK_itemdamages_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_itemdamages_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_itemdamages_iteminfos` FOREIGN KEY (`item_id`) REFERENCES `iteminfos` (`item_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_itemdamages_priceinfos` FOREIGN KEY (`price_id`) REFERENCES `priceinfos` (`price_id`) ON UPDATE CASCADE,
CONSTRAINT `damageinvoices_itemdamages` FOREIGN KEY (`damage_invoice_id`) REFERENCES `damageinvoices` (`damage_invoice_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- Dumping data for table db_test.itemdamages: ~0 rows (approximately)
/*!40000 ALTER TABLE `itemdamages` DISABLE KEYS */;
/*!40000 ALTER TABLE `itemdamages` ENABLE KEYS */;
-- Dumping structure for table db_test.iteminfos
CREATE TABLE IF NOT EXISTS `iteminfos` (
`item_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`company_id` int(10) unsigned DEFAULT '0',
`item_point` double unsigned DEFAULT '0',
`supplier_id` int(10) unsigned DEFAULT '0',
`item_company_id` int(10) unsigned DEFAULT '0',
`item_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`upc_code` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`category_id` int(10) unsigned NOT NULL,
`brand_id` int(10) unsigned DEFAULT NULL,
`location_id` int(10) unsigned DEFAULT NULL,
`price_id` int(10) unsigned NOT NULL,
`tax_amount` double NOT NULL COMMENT 'tax in percentage',
`offer_type` int(1) unsigned NOT NULL COMMENT '1=item,2=category,3=brand',
`offer` int(11) NOT NULL,
`description` text COLLATE utf8_unicode_ci NOT NULL,
`status` int(1) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `item_id` (`item_id`),
UNIQUE KEY `item_name` (`item_name`),
UNIQUE KEY `upc_code` (`upc_code`),
KEY `iteminfos_item_id_index` (`item_id`),
KEY `iteminfos_category_id_foreign` (`category_id`),
KEY `iteminfos_brand_id_foreign` (`brand_id`),
KEY `iteminfos_created_by_foreign` (`created_by`),
KEY `iteminfos_updated_by_foreign` (`updated_by`),
KEY `location_id` (`location_id`),
CONSTRAINT `brand_id_foreign` FOREIGN KEY (`brand_id`) REFERENCES `itembrands` (`brand_id`) ON UPDATE CASCADE,
CONSTRAINT `iteminfos_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `itemcategorys` (`category_id`) ON UPDATE CASCADE,
CONSTRAINT `iteminfos_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `iteminfos_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `location_id_foreign` FOREIGN KEY (`location_id`) REFERENCES `itemlocations` (`location_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=19888 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.iteminfos: ~2,481 rows (approximately)
/*!40000 ALTER TABLE `iteminfos` DISABLE KEYS */;
INSERT INTO `iteminfos` (`item_id`, `company_id`, `item_point`, `supplier_id`, `item_company_id`, `item_name`, `upc_code`, `category_id`, `brand_id`, `location_id`, `price_id`, `tax_amount`, `offer_type`, `offer`, `description`, `status`, `year`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(17241, 1, 0, 388, 1, 'Lux', '11708091724100', 24, 115, 151, 38927, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 06:03:57', '2017-08-09 06:18:23'),
(17242, 1, 0, NULL, 105, 'Fair Glow Soap 100gm', '8901023011368♪', 24, NULL, NULL, 38908, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 07:38:55', '2017-08-09 07:38:55'),
(17243, 1, 0, NULL, 115, 'Meril Milk soap bar 150gm', '8941100502068', 24, NULL, 151, 38884, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 07:53:48', '2017-08-09 07:53:48'),
(17244, 1, 0, NULL, 115, 'Meril Milk soap bar 100gm', '8941100501726', 24, NULL, 151, 38916, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 07:55:45', '2017-08-09 07:55:45'),
(17245, 1, 0, NULL, 115, 'Meril Milk & Kiwi soap bar 100gm', '8941100500187', 24, NULL, 151, 38918, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 07:57:22', '2017-08-09 07:57:22'),
(17246, 1, 0, NULL, 115, 'Meril Milk & Beli soap bar 100gm', '11708091724600', 24, NULL, 151, 38917, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:00:19', '2017-08-09 08:00:19'),
(17247, 2, 50, NULL, 184, 'Potato-Chipper', '21708091724700', 30, NULL, NULL, 38915, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:01:31', '2017-08-09 08:01:31'),
(17248, 2, 25, NULL, 184, 'Poree', '6949123301868♪', 38, NULL, NULL, 36411, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:02:53', '2017-08-09 08:02:53'),
(17249, 2, 50, 388, 184, 'The Electric Lunch Box', '21708091724900', 38, NULL, NULL, 38919, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:03:42', '2017-08-09 08:39:42'),
(17251, 2, 8, 388, 184, '<NAME> 300ml', '21708091725100', 24, NULL, NULL, 38909, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:05:30', '2017-08-09 08:19:31'),
(17253, 2, 7, 388, 184, 'Adidas Get Ready Body spray 150ml ', '21708091725300', 37, NULL, NULL, 36414, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:06:33', '2017-08-09 08:08:13'),
(17254, 1, 0, NULL, 186, 'Bactrol cool soap 100gm', '11708091725400', 24, NULL, 151, 36415, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:07:12', '2017-08-09 08:07:12'),
(17255, 2, 25, NULL, 184, 'Comfort Plus Electric Hot Water Bag', '21708091725500', 38, NULL, NULL, 36416, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:10:27', '2017-08-09 08:10:27'),
(17256, 2, 4, 388, 184, 'Himalaya Fresh Wash 100ml', '21708091725600', 24, NULL, NULL, 38926, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:11:04', '2017-08-09 08:11:04'),
(17257, 2, 10, 388, 184, 'Ever Green Multi Action Beauty Bar 100g', '21708091725700', 24, NULL, NULL, 38920, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:12:06', '2017-08-09 08:21:59'),
(17258, 2, 25, NULL, 184, 'Water Purifier', '21708091725800', 30, NULL, NULL, 38922, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:12:41', '2017-08-09 08:12:41'),
(17259, 2, 2, 388, 184, 'Mediplus DS 140gm', '21708091725900', 24, NULL, NULL, 36420, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:13:07', '2017-08-09 08:13:07'),
(17260, 2, 50, 388, 184, 'Uposhom 120ml', '21708091726000', 24, NULL, NULL, 36421, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:14:03', '2017-08-09 08:14:03'),
(17261, 1, 0, NULL, 186, 'Tibet luxury soap 75gm', '11708091726100', 24, NULL, 151, 36422, 0, 0, 0, '', 0, 0, 1, 1, '2017-08-09 08:14:33', '2017-08-09 08:14:33'),
(17262, 2, 50, 388, 184, 'Soyvita Fat Reducer 380gm', '2120092012373', 27, NULL, NULL, 38904, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:14:40', '2017-08-09 08:22:26'),
(17263, 2, 2, 388, 184, 'Swarnali 25g', '21708091726300', 24, NULL, NULL, 36424, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:15:03', '2017-08-09 08:15:03'),
(17264, 2, 25, 388, 184, 'Soyvita Diabetes Care 400g', '21708091726400', 27, NULL, NULL, 36425, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:16:34', '2017-08-09 08:21:30'),
(17265, 2, 25, 388, 184, 'Soyvita Fat Reducer Balanced Diet 200gm', '21708091726500', 27, NULL, NULL, 36426, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:17:34', '2017-08-09 08:21:56'),
(17268, 2, 12, 388, 184, 'Hairton Hair Oil 250ml', '21708091726800', 24, NULL, NULL, 36428, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:23:59', '2017-08-09 08:23:59'),
(17269, 2, 12, 388, 184, 'Ever Green Deep Clean Face Wash 100ml', '21708091726900', 24, NULL, NULL, 36429, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:25:13', '2017-08-09 08:25:13'),
(17270, 2, 8, 388, 184, 'Hairton Hair Oil 150ml', '21708091727000', 24, NULL, NULL, 36430, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:26:15', '2017-08-09 08:26:15'),
(17271, 2, 5, 388, 184, 'Hairton Hair Oil 100ml', '21708091727100', 24, NULL, NULL, 36431, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:27:01', '2017-08-09 08:27:01'),
(17272, 2, 10, 388, 184, '<NAME> 250ml', '21708091727200', 24, NULL, NULL, 36432, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:27:47', '2017-08-09 08:27:47'),
(17273, 2, 50, NULL, 184, '<NAME> 380gm', '21708091727300', 27, NULL, NULL, 36433, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:28:06', '2017-08-09 08:28:06'),
(17274, 2, 5, 388, 184, 'Hairton Hair Oil 140ml', '21708091727400', 24, NULL, NULL, 36434, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:29:37', '2017-08-09 08:29:37'),
(17275, 1, 0, NULL, 186, 'Tibet luxury soap smooth care 75gm', '11708091727500', 24, NULL, NULL, 36435, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:30:04', '2017-08-09 08:30:04'),
(17276, 1, 0, NULL, 186, 'Tibet luxury soap natural glow 75gm', '11708091727600', 24, NULL, 151, 36436, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:31:00', '2017-08-09 08:31:00'),
(17277, 2, 8, 388, 184, '<NAME> 450ml', '21708091727700', 24, NULL, NULL, 36437, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:31:14', '2017-08-09 08:31:14'),
(17278, 1, 0, NULL, 1, 'Lifebuoy total 100gm', '8941100650721', 24, NULL, 151, 36438, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:32:42', '2017-08-09 08:32:42'),
(17279, 2, 25, 388, 184, 'Opshora Package 150gm', '21708091727900', 24, NULL, NULL, 36439, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:32:59', '2017-08-09 08:32:59'),
(17280, 2, 8, 388, 184, 'Opshora Spot Remover Cream 20g', '21708091728000', 24, NULL, NULL, 36440, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:33:02', '2017-08-09 08:33:02'),
(17281, 1, 0, NULL, 1, 'Lifebuoy care 100gm', '8941100650707', 24, NULL, 151, 36441, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:33:23', '2017-08-09 08:33:23'),
(17282, 2, 8, 388, 184, 'Opshora Day Time Therapy 20g', '21708091728200', 24, NULL, NULL, 36442, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:33:56', '2017-08-09 08:33:56'),
(17283, 2, 8, 388, 184, 'Opshora Ante-Acne Cream 20g', '21708091728300', 24, NULL, NULL, 36443, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:35:04', '2017-08-09 08:35:04'),
(17284, 2, 25, 388, 184, 'Khusbu Moshari without print', '21708091728400', 40, NULL, NULL, 36444, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:35:17', '2017-08-09 08:35:17'),
(17285, 2, 8, 388, 184, 'Opshora Night Care Therapy 20g', '21708091728500', 24, NULL, NULL, 36445, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:35:35', '2017-08-09 08:35:35'),
(17286, 2, 25, 388, 184, 'Khusbu Moshari with Print', '21708091728600', 40, NULL, NULL, 36446, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:36:06', '2017-08-09 08:36:06'),
(17287, 2, 15, 388, 184, 'Opshora Day Time Therapy 50g', '21708091728700', 24, NULL, NULL, 36447, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:37:30', '2017-08-09 08:37:30'),
(17288, 2, 25, 388, 184, '<NAME> Package', '21708091728800', 30, NULL, NULL, 38929, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:37:32', '2017-08-09 08:37:32'),
(17289, 2, 15, 388, 184, 'Opshora Night Care Therapy 50g', '21708091728900', 24, NULL, NULL, 36449, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:38:10', '2017-08-09 08:38:10'),
(17290, 1, 0, 388, 187, '<NAME> & Honey 75gm', '8906053740103', 24, NULL, 151, 36450, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:38:16', '2017-08-09 10:15:17'),
(17291, 2, 15, 388, 184, 'Opshora Ante-Acne Cream 50g', '21708091729100', 24, NULL, NULL, 36451, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:38:50', '2017-08-09 08:38:50'),
(17292, 2, 15, 388, 184, 'Opshora Spot Remover Cream 50g', '21708091729200', 24, NULL, NULL, 36452, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:39:20', '2017-08-09 08:39:20'),
(17293, 1, 0, NULL, 187, 'Aveon Neam & Tulshi 75gm', '8906053740066', 24, NULL, 151, 36453, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:40:06', '2017-08-09 08:40:06'),
(17294, 2, 4, 388, 184, 'Ever Green Multi Action Beauty Bar 30g', '21708091729400', 24, NULL, NULL, 36454, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:40:09', '2017-08-09 08:40:09'),
(17295, 2, 8, 388, 184, 'Ever Green Blassam Bar 80g', '21708091729500', 24, NULL, NULL, 36455, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:40:55', '2017-08-09 08:40:55'),
(17296, 1, 0, NULL, 105, 'Cinthol Confidance+ 100gm', '8901023006241', 24, NULL, 151, 36456, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:41:52', '2017-08-09 08:41:52'),
(17297, 2, 5, 388, 184, '<NAME> H582', '21708091729700', 24, NULL, NULL, 36457, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:42:13', '2017-08-09 08:42:13'),
(17298, 1, 0, NULL, 105, 'Cinthol Lime soap 100gm', '8901023009990', 24, NULL, 151, 36458, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:43:08', '2017-08-09 08:43:08'),
(17299, 2, 12, 388, 184, 'Swarnali Slimming Tea 45g', '21708091729900', 27, NULL, NULL, 36459, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:43:11', '2017-08-09 08:43:11'),
(17300, 2, 10, 388, 184, 'Swarnali Amalaki Tea 45g', '21708091730000', 27, NULL, NULL, 36460, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:43:52', '2017-08-09 08:43:52'),
(17301, 1, 0, NULL, 186, 'Sandalina soap 125gm', '8513692165404', 24, NULL, 151, 36461, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:44:45', '2017-08-09 08:44:45'),
(17302, 2, 10, 388, 184, 'Tulsi Tea-Plus 40g', '21708091730200', 27, NULL, NULL, 36462, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:45:00', '2017-08-09 08:45:00'),
(17303, 1, 0, NULL, 1, 'Lux velvet touch 150gm', '8941100648643', 24, NULL, 151, 36463, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:45:44', '2017-08-09 08:45:44'),
(17304, 2, 5, 388, 184, '<NAME>-D 400g', '21708091730400', 27, NULL, NULL, 36464, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:46:23', '2017-08-09 08:46:23'),
(17305, 1, 0, NULL, 1, 'Lux soft touch 150gm', '8941100648636', 24, NULL, 151, 38923, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:47:02', '2017-08-09 08:47:02'),
(17306, 2, 2, 388, 184, 'Mitali Glucose-D 200g', '21708091730600', 27, NULL, NULL, 36466, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:47:05', '2017-08-09 08:47:05'),
(17307, 2, 1, 388, 184, 'Mitali Glucose-D 100g', '21708091730700', 27, NULL, NULL, 36467, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:47:35', '2017-08-09 08:47:35'),
(17308, 1, 0, NULL, 1, 'Lux velvet touch 100gm', '8941100650042', 24, NULL, 151, 36468, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:47:43', '2017-08-09 08:47:43'),
(17309, 2, 50, 388, 184, 'Soyvita Diaba Cure 380gm', '21708091730900', 27, NULL, NULL, 36469, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:48:36', '2017-08-09 08:49:11'),
(17310, 1, 0, NULL, 1, 'Lux soft touch 100gm', '8941100650059', 24, NULL, 151, 36470, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:48:47', '2017-08-09 08:48:47'),
(17311, 1, 0, NULL, 130, 'Jasmine soap 125gm', '088021513051', 24, NULL, 151, 36471, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:50:45', '2017-08-09 08:50:45'),
(17312, 1, 0, NULL, 130, 'Cute rose soap 125gm', '088021512856', 24, NULL, 151, 36472, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:51:56', '2017-08-09 08:51:56'),
(17313, NULL, 0, NULL, 130, 'Cute lemon soap 125gm', '088021513006', 24, NULL, 151, 36473, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:52:35', '2017-08-09 08:52:35'),
(17314, 2, 4, 388, 184, 'Swarnali Orange 250g', '21708091731400', 27, NULL, NULL, 36474, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:53:21', '2017-08-09 08:53:21'),
(17315, 1, 0, NULL, 130, 'Cute neem soap 125gm', '088021512900', 24, NULL, 151, 36475, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:53:33', '2017-08-09 08:53:33'),
(17316, 2, 12, 388, 184, 'Ecogen Primix Fish 50g', '21708091731600', 31, NULL, NULL, 36476, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:55:56', '2017-08-09 08:55:56'),
(17317, 2, 12, 388, 184, '<NAME>estock 50g', '21708091731700', 31, NULL, NULL, 36477, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:57:08', '2017-08-09 08:57:08'),
(17318, 2, 25, 388, 184, '<NAME> 200gm', '21708091731800', 27, NULL, NULL, 38930, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:57:35', '2017-08-09 08:57:35'),
(17319, 1, 0, NULL, 130, 'Cute neem soap 75gm', '088021512917', 24, NULL, 151, 36479, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:57:47', '2017-08-09 08:57:47'),
(17320, 2, 2, 388, 184, 'Spice Powder 200g', '21708091732000', 30, NULL, NULL, 36480, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:58:52', '2017-08-09 08:58:52'),
(17321, 1, 0, NULL, 130, 'Jasmine soap 75gm', '088021513068', 24, NULL, 151, 36481, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:58:57', '2017-08-09 08:58:57'),
(17322, 2, 2.5, 388, 184, 'Chilli Powder 200g', '21708091732200', 30, NULL, NULL, 36482, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:59:47', '2017-08-09 08:59:47'),
(17323, 2, 25, 388, 184, 'Saba Washing Liquid 250ml', '21708091732300', 29, NULL, NULL, 36483, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:59:51', '2017-08-09 09:00:20'),
(17324, 1, 0, NULL, 130, 'Cute lemon soap 75gm', '088021513013', 24, NULL, 151, 36484, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 08:59:58', '2017-08-09 08:59:58'),
(17325, 2, 2, 388, 184, 'Coriander Powder 200g', '21708091732500', 30, NULL, NULL, 36485, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:00:26', '2017-08-09 09:00:26'),
(17326, 2, 3, 388, 184, 'Cumin Powder 100g', '21708091732600', 30, NULL, NULL, 36486, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:01:03', '2017-08-09 09:01:03'),
(17327, 2, 2, 388, 184, 'Apon Ginger Powder 35g', '21708091732700', 30, NULL, NULL, 36487, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:01:42', '2017-08-09 09:04:58'),
(17328, 2, 3, 388, 184, 'Apon Chicken Masala 100g', '21708091732800', 30, NULL, NULL, 36488, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:02:16', '2017-08-09 09:05:13'),
(17329, 2, 50, 388, 184, 'Keda Ladyshave ', '6941674401875♪', 24, NULL, NULL, 36489, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:03:23', '2017-08-09 09:03:23'),
(17330, 2, 7, 388, 184, 'Apon Black Seed Fry Powder 50g', '21708091733000', 30, NULL, NULL, 36490, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:04:02', '2017-08-09 09:04:02'),
(17331, 2, 15, 388, 184, 'Ever Green Breast Enlargement Cream 150 gm', '21708091733100', 24, NULL, NULL, 36491, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:04:49', '2017-08-09 09:04:49'),
(17332, 1, 0, NULL, 188, 'Dettol cool soap 125gm', '8941100283189', 24, NULL, 151, 36492, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:05:52', '2017-08-09 09:05:52'),
(17333, 2, 10, 388, 184, 'Golden Touch Mother Care Body Lotion 150gm', '21708091733300', 24, NULL, NULL, 36493, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:06:25', '2017-08-09 09:06:25'),
(17334, 1, 0, NULL, 188, 'Dettol skin care soap 75gm', '8941100283172', 24, NULL, 151, 36494, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:07:28', '2017-08-09 09:07:28'),
(17335, 2, 10, 388, 184, 'Ever Green Whitening & Body Tightening Lotion 150gm', '21708091733500', 24, NULL, NULL, 36495, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:07:57', '2017-08-09 09:07:57'),
(17336, 1, 0, NULL, 188, 'Dettol deep cleanse soap 75gm', '8941100283318', 24, NULL, 151, 36496, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:08:31', '2017-08-09 09:08:31'),
(17337, 2, 25, 388, 184, 'GreenMax Spirulina Plus ', '21708091733700', 44, NULL, NULL, 36497, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:12:18', '2017-08-09 09:12:18'),
(17338, 1, 0, NULL, 189, 'Yc papaya soap 100gm', '8857101115834', 24, NULL, 151, 36498, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:13:55', '2017-08-09 09:13:55'),
(17339, 2, 0.5, 388, 184, 'Savlon ANTISEPTIC CREAM', '21708091733900', 24, NULL, NULL, 36499, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:14:16', '2017-08-09 09:14:16'),
(17340, 2, 100, 388, 184, 'Gano Gold and oyster pro cap pakage', '21708091734000', 44, NULL, NULL, 36500, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:14:56', '2017-08-09 10:13:26'),
(17341, NULL, 10, 388, 184, 'Rong dhong Belt-4 ', '1708091734100', 37, NULL, NULL, 36501, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:27:29', '2017-08-09 09:27:29'),
(17342, 2, 12, 388, 184, 'Rong Dhong Belt-6 ', '21708091734200', 37, NULL, NULL, 36502, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:28:10', '2017-08-09 09:28:10'),
(17343, 2, 10, 388, 184, 'Rong Dhong Belt-3', '21708091734300', 37, NULL, NULL, 36503, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:30:42', '2017-08-09 09:30:42'),
(17344, 2, 10, 388, 184, 'Rong Dhong Belt-2', '21708091734400', 37, NULL, NULL, 36504, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:31:44', '2017-08-09 09:31:44'),
(17345, 2, 12, 388, 184, 'Rong Dhong Belt-8', '21708091734500', 37, NULL, NULL, 36505, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:32:12', '2017-08-09 09:32:12'),
(17346, 2, 12, 388, 184, 'Rong Dhong Money Bag 2', '21708091734600', 37, NULL, NULL, 36506, 0, 0, 0, '', 0, 0, 1, 1, '2017-08-09 09:39:45', '2017-08-09 09:40:41'),
(17347, 2, 10, 388, 184, 'Rong Dhong Money Bag-11', '21708091734700', 37, NULL, NULL, 36507, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:39:52', '2017-08-09 09:39:52'),
(17348, 2, 10, 388, 184, 'Rong Dhong Money Bag-1', '21708091734800', 37, NULL, NULL, 36508, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:41:34', '2017-08-09 09:49:23'),
(17349, 1, 0, 388, 189, 'Yc Honey with papaya soap 100gm', '8857101134194', 24, NULL, NULL, 36509, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:41:45', '2017-08-09 09:58:17'),
(17350, 2, 10, 388, 184, 'Rong Dhong Money Bag 8', '21708091735000', 37, NULL, NULL, 36510, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:41:55', '2017-08-09 09:41:55'),
(17351, 2, 10, 388, 184, 'Rong Dhong Money Bag Long1', '21708091735100', 37, NULL, NULL, 36511, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:42:45', '2017-08-09 09:42:45'),
(17352, 2, 12, 388, 184, 'Rong Dhong Money Bag-2', '21708091735200', 37, NULL, NULL, 36512, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:43:05', '2017-08-09 09:49:58'),
(17354, 1, 0, NULL, 189, 'Yc cucumbar soap 100gm', '8857101129503', 24, NULL, 151, 36513, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:44:17', '2017-08-09 09:44:17'),
(17355, 2, 12, 388, 184, 'Rong Dhong Money Bag 12', '21708091735500', 37, NULL, NULL, 36514, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:45:01', '2017-08-09 09:45:01'),
(17356, 2, 8, 388, 184, 'Rong Dhong Money Bag-14', '21708091735600', 37, NULL, NULL, 36515, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:45:07', '2017-08-09 09:45:07'),
(17357, 1, 0, NULL, 70, 'Prodental B breath spray', '9556311225119', 24, NULL, 151, 36516, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:45:34', '2017-08-09 09:45:34'),
(17358, 1, 0, NULL, 70, 'Prodental B dental floss 50m', '9556311223498', 24, NULL, 151, 36517, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:46:37', '2017-08-09 09:46:37'),
(17359, 2, 8, 388, 184, 'Rong Dhong Money Bag-15', '21708091735900', 37, NULL, NULL, 36518, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:47:39', '2017-08-09 09:47:39'),
(17360, 2, 8, 388, 184, 'Rong Dhong Money Bag 6', '21708091736000', 37, NULL, NULL, 36519, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:47:57', '2017-08-09 09:47:57'),
(17361, 1, 0, NULL, 70, 'Prodental B dental floss stick 24pcs', '9556311891321', 24, NULL, 151, 36520, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:48:02', '2017-08-09 09:48:02'),
(17362, 2, 25, 388, 184, 'Rong Dhong Long Purse-1', '21708091736200', 37, NULL, NULL, 36521, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:49:05', '2017-08-09 09:49:05'),
(17363, 1, 0, NULL, 70, 'Prodental B idal dental floss pick 50pcs', '9556311221272', 24, NULL, 151, 36522, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:49:29', '2017-08-09 09:49:29'),
(17364, 2, 12, 388, 184, 'Rong Dhong Money Bag 13', '21708091736400', 37, NULL, NULL, 36523, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:49:55', '2017-08-09 09:49:55'),
(17365, 2, 12, 388, 184, 'Rong Dhong Money Bag 9', '21708091736500', 37, NULL, NULL, 36524, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 09:51:32', '2017-08-09 09:51:32'),
(17366, 1, 0, 388, 1, 'Pepsodent Germi Check 200gm', '11708091736600', 24, NULL, NULL, 36525, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:02:37', '2017-08-09 10:02:37'),
(17367, 1, 0, 388, 1, 'White Plus Toothpaste 100gm', '11708091736700', 24, NULL, NULL, 36526, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:04:36', '2017-08-09 10:04:36'),
(17368, 1, 0, NULL, 180, 'Dabur Red Paste 100gm', '11708091736800', 24, NULL, NULL, 36527, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:10:16', '2017-08-09 10:10:16'),
(17369, 1, 0, 388, 1, 'Pepsodent pro sensitive tooth paste140gm', '8941100651025♪', 24, NULL, 151, 36528, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:19:02', '2017-08-09 10:19:02'),
(17370, 1, 0, NULL, 70, 'Prodental B fresh mint tooth paste 175gm', '9556311891208♪', 24, NULL, 151, 36529, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:20:27', '2017-08-09 10:20:27'),
(17371, 1, 0, NULL, 150, 'Sensodyne fresh mint toothpaste 130gm', '8901571005659♪', 24, NULL, 151, 36530, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:22:02', '2017-08-09 10:22:02'),
(17372, 1, 0, 388, 1, 'Pepsodent germi check toothpaste 100gm', '8941100651360♪', 24, NULL, 151, 36531, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:23:07', '2017-08-09 10:23:07'),
(17373, 1, 0, NULL, 83, 'Colgate visible white toothpaste 100gm', '8901314077790♪', 24, NULL, 151, 36532, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:24:29', '2017-08-09 10:24:29'),
(17374, 1, 0, NULL, 83, 'Colgate strong teeth 200gm', '8901314010025♪', 24, NULL, 151, 36533, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:25:23', '2017-08-09 10:25:23'),
(17375, 1, 0, NULL, 180, 'Meswak toothpase 100gm', '8901207500657♪', 24, NULL, 151, 36534, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:26:32', '2017-08-09 10:26:32'),
(17376, 1, 0, NULL, 190, 'Sensodyne original 100gm IMP ', '5000347016455♪', 24, NULL, 151, 36535, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:31:52', '2017-08-09 10:31:52'),
(17377, 1, 0, NULL, 190, 'Sensodyne total care 100gm IMP', '5000347016448♪', 24, NULL, 151, 36536, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:34:28', '2017-08-09 10:34:28'),
(17378, 1, 0, NULL, 180, 'Meswak toothpase 50gm', '8901207500633♪', 24, NULL, 151, 36537, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:35:09', '2017-08-09 10:35:09'),
(17379, 1, 0, 388, 1, 'Closeup Fresh Breath 145gm', '8941100651001♪', 24, NULL, 151, 36538, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:36:06', '2017-08-09 10:36:06'),
(17380, 1, 0, 388, 1, 'Closeup menthol fresh 145gm', '8941100650813♪', 24, NULL, 151, 36539, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:37:01', '2017-08-09 10:37:01'),
(17381, 1, 0, NULL, 83, 'Colgate Herbal 200gm IMP', '8901314021045♪', 24, NULL, 151, 36540, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:38:12', '2017-08-09 10:38:12'),
(17382, 1, 0, NULL, 83, 'Colgate active salt toothpaste 50gm IMP', '8901314009784♪', 24, NULL, 151, 36541, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:40:53', '2017-08-09 10:40:53'),
(17383, 1, 0, NULL, 83, 'Colgate strong teeth 100gm IMP', '8901314010520♪', 24, NULL, 151, 36542, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:42:40', '2017-08-09 10:42:40'),
(17384, 1, 0, 388, 1, 'Pepsodent germi check 45gm', '8941100651346♪', 24, NULL, 151, 36543, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:46:02', '2017-08-09 10:46:02'),
(17385, 1, 0, 388, 191, 'Colour Me Gold Perfum 90 ml', '025929122206', 24, NULL, 151, 36544, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:46:10', '2017-08-09 10:53:14'),
(17387, 1, 0, NULL, 150, 'Sensodyne fresh mint 40gm', '8901571004102♪', 24, NULL, 151, 36545, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:47:38', '2017-08-09 10:47:38'),
(17388, 1, 0, NULL, 150, 'Sensodyne fresh mint 70gm', '8901571004096♪', 24, NULL, 151, 36546, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:48:50', '2017-08-09 10:48:50'),
(17389, 1, 0, 388, 1, 'Closeup menthol fresh toothpaste 100gm', '8941100650820♪', 24, NULL, 151, 36547, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:51:38', '2017-08-09 10:51:38'),
(17391, 1, 0, 388, 1, 'closeup menthol fresh 50gm', '8941100651834♪', 24, NULL, 151, 36548, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:56:32', '2017-08-09 10:56:32'),
(17392, 1, 0, NULL, 192, 'Colour Me Gold Perfum 50 ml', '025929121957', 24, NULL, 151, 36549, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:57:26', '2017-08-09 10:57:26'),
(17393, 1, 0, NULL, 180, 'Dabur Red paste 200gm', '8901888000897♪', 24, NULL, 151, 36550, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:57:27', '2017-08-09 10:57:27'),
(17394, 1, 0, NULL, 180, 'Meswak Toothpaste 200gm', '8902714330072♪', 24, NULL, 151, 36551, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 10:58:23', '2017-08-09 10:58:23'),
(17395, 1, 0, NULL, 192, 'Colour Me Red Perfum 50 ml', '025929121506', 24, NULL, 151, 36552, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:00:52', '2017-08-09 11:00:52'),
(17396, 1, 0, NULL, 192, 'Colour Me Purple Perfum 50 ml', '025929121605', 24, NULL, 151, 36553, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:02:43', '2017-08-09 11:02:43'),
(17397, 1, 0, NULL, 83, 'Colgate active salt toothpaste 200gm IMP', '8901314009081♪', 24, NULL, 151, 36554, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:03:09', '2017-08-09 11:03:09'),
(17398, 1, 0, NULL, 115, 'White plus toothpaste 200gm', '8941100500736♪', 24, NULL, 151, 36555, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:04:50', '2017-08-09 11:04:50'),
(17399, 1, 0, NULL, 115, 'Magic Tooth powder 100gm', '8941100500132♪', 24, NULL, 151, 36556, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:06:13', '2017-08-09 11:06:13'),
(17400, 1, 0, NULL, 70, 'Procare Mouthwash fresh mint 100ml', '9556311222187♪', 24, NULL, 151, 36557, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:07:53', '2017-08-09 11:07:53'),
(17401, 1, 0, NULL, 176, 'Nivea Men B.D Energy Body Spray 120 ml', '4005900207975', 24, NULL, 151, 36558, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:08:22', '2017-08-09 11:08:22'),
(17402, 1, 0, NULL, 70, 'Procare mouthwash cool mint 250ml', '9556311991267♪', 24, NULL, 151, 36559, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:09:20', '2017-08-09 11:09:20'),
(17403, 1, 0, NULL, 176, 'Nivea Men B.D Sprint Body Spray 120 ml', '4005900332950', 24, NULL, 151, 36560, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:09:53', '2017-08-09 11:09:53'),
(17404, 1, 0, NULL, 70, 'Procare mouthwash cool mint 100ml', '9556311222170♪', 24, NULL, 151, 36561, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:10:22', '2017-08-09 11:10:22'),
(17405, 1, 0, NULL, 176, 'Nivea Men B.D intense Body Spray 120 ml', '4005900332943', 24, NULL, 151, 36562, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:18:38', '2017-08-09 11:18:38'),
(17406, 1, 0, NULL, 176, 'Nivea Men B.D ice cool Body Spray 120 ml', '4005900207999', 24, NULL, 151, 36563, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:21:12', '2017-08-09 11:21:12'),
(17407, 1, 0, NULL, 70, 'Procare mouthwash freshmint 250ml', '9556311221289♪', 24, NULL, 151, 36564, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:37:35', '2017-08-09 11:37:35'),
(17408, 1, 0, 388, 193, 'Cool breeze quantum energy body spray 200ml', '8696630130723', 24, NULL, 151, 36565, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:41:54', '2017-08-09 11:43:53'),
(17409, 1, 0, NULL, 191, 'Feminine Eau De Parfum 80ml', '11708091740900', 24, NULL, 151, 36566, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:42:06', '2017-08-09 11:42:06'),
(17410, 1, 0, NULL, 191, 'Love Elixir Eau De Parfum 80ml', '11708091741000', 24, NULL, 151, 36567, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:45:57', '2017-08-09 11:45:57'),
(17411, 1, 0, NULL, 193, 'Cool breeze cobalt reflect body spray 200ml', '8696630130693♪', 24, NULL, 151, 36568, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:47:27', '2017-08-09 11:47:27'),
(17412, 1, 0, NULL, 193, 'Cool breeze oxygen dose body spray 200ml', '8696630130792♪', 24, NULL, 151, 36569, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:48:45', '2017-08-09 11:48:45'),
(17413, 1, 0, NULL, 191, 'Sport Pour Homme Eau De Toilette Parfum 100ml', '8885009978985', 24, NULL, 151, 36570, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:49:46', '2017-08-09 11:49:46'),
(17414, 1, 0, NULL, 193, 'Cool breeze extreme limit body spray 200ml', '8696630130709♪', 24, NULL, 151, 36571, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:50:09', '2017-08-09 11:50:09'),
(17415, 1, 0, NULL, 193, 'Cool breeze cotton touch body spray 200ml', '8696630130648♪', 24, NULL, 151, 36572, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:51:15', '2017-08-09 11:51:15'),
(17416, 1, 0, NULL, 191, 'Knight Pour Homme Eau De Toilette Parfum 20ml', '8885009971801', 24, NULL, 151, 36573, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:52:05', '2017-08-09 11:52:05'),
(17417, 1, 0, NULL, NULL, 'Disguise reflection women perfume 100ml', '6295124024719♪', 24, NULL, 151, 36574, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:53:42', '2017-08-09 11:53:42'),
(17418, 1, 0, NULL, 191, 'Classic Pour Homme Eau De Toilette Parfum 100ml', '11708091741800', 24, NULL, 151, 36575, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:53:52', '2017-08-09 11:53:52'),
(17419, 1, 0, NULL, NULL, 'Disguise carnival women body spray 100ml', '6295124024672♪', 24, NULL, 151, 36576, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:54:59', '2017-08-09 11:54:59'),
(17420, 1, 0, NULL, NULL, 'Disguise deception perfume women 100ml', '6295124024696♪', 24, NULL, 151, 36577, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:56:11', '2017-08-09 11:56:11'),
(17421, 1, 0, NULL, 191, 'Knight Extreme Eau De Toilette Parfum 100ml', '8885009979807', 24, NULL, 151, 36578, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:56:25', '2017-08-09 11:56:25'),
(17422, 1, 0, NULL, NULL, 'Disguise Masquerade perfume women 100gm', '6295124024702♪', 24, NULL, 151, 36579, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:57:20', '2017-08-09 11:57:20'),
(17423, 1, 0, NULL, NULL, 'Disguise reflation perfume men 100ml', '6295124024658♪', 24, NULL, 151, 36580, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:58:29', '2017-08-09 11:58:29'),
(17424, 1, 0, NULL, 191, 'Aqua Bleu Eau De Toilette Parfum 100ml', '8885009979708', 24, NULL, 151, 36581, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 11:58:32', '2017-08-09 11:58:32'),
(17425, 1, 0, NULL, NULL, 'Disguise clandestine perfume men 100ml', '6295124024627♪', 24, NULL, 151, 36582, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:00:14', '2017-08-09 12:00:14'),
(17426, 1, 0, NULL, 191, 'Soul Essence Eau De Toilette Parfum 100ml', '8885009979753', 24, NULL, 151, 36583, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:00:19', '2017-08-09 12:00:19'),
(17427, 1, 0, NULL, NULL, 'Disguise carnival perfume men 100ml', '6295124024610♪', 24, NULL, 151, 36584, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:01:04', '2017-08-09 12:01:04'),
(17428, 1, 0, NULL, NULL, 'Disguise masqurade perfume men 100ml', '6295124024641♪', 24, NULL, 151, 36585, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:01:56', '2017-08-09 12:01:56'),
(17429, 1, 0, 388, 130, 'Cute Romance Eau De Parfum 60ml', '088021511149', 24, NULL, 151, 36586, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:03:11', '2017-08-09 12:05:30'),
(17430, 1, 0, NULL, NULL, 'Disguise deception perfume men 100ml', '6295124024634♪', 24, NULL, 151, 36587, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:03:14', '2017-08-09 12:03:14'),
(17431, 1, 0, NULL, NULL, 'Disguise stimulate perfume men 100ml', '6295124024986♪', 24, NULL, 151, 36588, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:04:40', '2017-08-09 12:04:40'),
(17432, 1, 0, NULL, 130, 'Cute Romance Eau De Parfum 15ml', '088021511156', 24, NULL, 151, 36589, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:04:41', '2017-08-09 12:04:41'),
(17433, 1, 0, NULL, NULL, 'Disguise stimulate body spray men 100ml', '6295124024979♪', 24, NULL, 151, 36590, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:05:59', '2017-08-09 12:05:59'),
(17434, 1, 0, NULL, NULL, 'Disguise deception body spray men 200ml', '6295124024924♪', 24, NULL, 151, 36591, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:07:27', '2017-08-09 12:07:27'),
(17435, NULL, 0, NULL, NULL, 'Disguise reflection body spray men 100ml', '6295124024955♪', 24, NULL, 151, 36592, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:08:43', '2017-08-09 12:08:43'),
(17436, 1, 0, NULL, 137, 'Layer\'r Shot Absolute Series Body Spray 135ml', '8906055790359', 24, NULL, 151, 36593, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:09:49', '2017-08-09 12:09:49'),
(17437, 1, 0, NULL, NULL, 'Disguise carnival body spray men 200ml', '6295124024870♪', 24, NULL, 151, 36594, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:10:07', '2017-08-09 12:10:07'),
(17438, 1, 0, NULL, 137, 'Layer\'r Shot Royal Jade Body Spray 135ml', '11708091743800', 24, NULL, 151, 36595, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:13:07', '2017-08-09 12:13:07'),
(17439, 1, 0, NULL, 137, 'Layer\'r Shot Power Play Body Spray 135ml', '8906055790281', 24, NULL, 151, 36596, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:14:33', '2017-08-09 12:14:33'),
(17440, 1, 0, NULL, 137, 'Layer\'r Shot Red Stallion Body Spray 135ml', '8906055790304', 24, NULL, 151, 36597, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:16:50', '2017-08-09 12:16:50'),
(17441, 1, 0, NULL, NULL, 'Disguise clandestine body spray women 200ml', '6295124024900♪', 24, NULL, 151, 36598, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:16:57', '2017-08-09 12:16:57'),
(17442, 1, 0, NULL, NULL, 'Disguise carnivals body spray women 200ml', '6295124024887♪', 24, NULL, 151, 36599, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:18:37', '2017-08-09 12:18:37'),
(17443, 1, 0, NULL, 137, 'Layer\'r Wattagirl Fresh Citrus Body Spray 135ml', '8906055790342', 24, NULL, 151, 36600, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:20:12', '2017-08-09 12:20:12'),
(17444, 1, 0, NULL, 192, 'ED celebrity estiara body spray 200ml', '6085010047225♪', 24, NULL, 151, 36601, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:20:46', '2017-08-09 12:20:46'),
(17445, 1, 0, NULL, 137, 'Layer\'r Wattagirl Mystic Island Body Spray 135ml', '8906055790182', 24, NULL, 151, 36602, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:21:49', '2017-08-09 12:21:49'),
(17446, NULL, 0, NULL, 192, 'ED groony body spray 200ml', '6085010047836♪', 24, NULL, 151, 36603, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:21:58', '2017-08-09 12:21:58'),
(17447, 1, 0, NULL, 137, 'Layer\'r Wattagirl Secret Crush Body Spray 135ml', '8906055790205', 24, NULL, 151, 36604, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:22:52', '2017-08-09 12:22:52'),
(17448, 1, 0, NULL, 192, 'ED magnificent body spray 200ml ', '6085010047997♪', 24, NULL, 151, 36605, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:23:47', '2017-08-09 12:23:47'),
(17449, 1, 0, NULL, 192, 'ED stag body spray 200ml', '6085010092119♪', 24, NULL, 151, 36606, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:24:27', '2017-08-09 12:24:27'),
(17450, 1, 0, NULL, 192, 'ED X-FASHION body spray 200ml', '6085010092171♪', 24, NULL, 151, 36607, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:25:51', '2017-08-09 12:25:51'),
(17451, 1, 0, NULL, 194, 'Layer\'r Shot Bullet Ammo Body Spray 120ml', '8906055790724', 24, NULL, 151, 36608, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:26:00', '2017-08-09 12:26:00'),
(17452, 1, 0, NULL, 194, 'Layer\'r Shot Bullet Burst Body Spray 120ml', '8906055790748', 24, NULL, 151, 36609, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:26:51', '2017-08-09 12:26:51'),
(17453, 1, 0, NULL, 192, 'ED backpack body spray 200ml', '6085010092126♪', 24, NULL, 151, 36610, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:26:53', '2017-08-09 12:26:53'),
(17454, 1, 0, NULL, 194, 'Layer\'r Shot Bullet Reload Body Spray 120ml', '8906055790755', 24, NULL, 151, 36611, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:27:41', '2017-08-09 12:27:41'),
(17455, 1, 0, NULL, 191, 'Nike turn it on body spray 150ml', '8414135630360♪', 24, NULL, 151, 36612, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:28:49', '2017-08-09 12:28:49'),
(17456, 1, 0, NULL, 194, 'Layer\'r Shot Bullet Bang Body Spray 120ml', '8906055790731', 24, NULL, 151, 36613, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:29:38', '2017-08-09 12:29:38'),
(17457, 1, 0, NULL, 191, 'Nike passion for vanilla body spray 150ml', '8414135100221♪', 24, NULL, 151, 36614, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:29:58', '2017-08-09 12:29:58'),
(17458, 1, 0, NULL, 191, 'Nike night fever body spray 150ml', '8414135630377♪', 24, NULL, 151, 36615, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:31:51', '2017-08-09 12:31:51'),
(17459, 1, 0, NULL, 191, 'Nike life on coconut body spray 150ml', '8414135100191♪', 24, NULL, 151, 36616, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:32:56', '2017-08-09 12:32:56'),
(17460, 1, 0, NULL, 191, 'Nike fruit burst body spray 150ml', '8414135100207♪', 24, NULL, 151, 36617, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:34:11', '2017-08-09 12:34:11'),
(17461, 1, 0, NULL, 137, 'Armaf C.D.N intense Men Body Spray 200ml', '6294015102413', 24, NULL, 151, 36618, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:34:18', '2017-08-09 12:34:18'),
(17462, 1, 0, NULL, 191, 'Nike ride body spray 200ml', '8414135255761♪', 24, NULL, 151, 36619, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:35:11', '2017-08-09 12:35:11'),
(17463, 1, 0, NULL, 137, 'Armaf C.D.N intense for Women Body Spray 200ml', '6085010041902', 24, NULL, 151, 36620, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:36:30', '2017-08-09 12:36:30'),
(17464, 1, 0, NULL, 195, 'Nike ON FIRE body spray 200ML', '8414135623256♪', 24, NULL, 151, 36621, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:39:15', '2017-08-09 12:39:15'),
(17465, 1, 0, NULL, 137, 'Armaf Blue Homme for Men Body Spray 200ml', '6085010041704', 24, NULL, 151, 36622, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:39:21', '2017-08-09 12:39:21'),
(17466, 1, 0, NULL, 191, 'Nike urban mask body spray 200ml', '8414135255754♪', 24, NULL, 151, 36623, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:40:19', '2017-08-09 12:40:19'),
(17467, 1, 0, NULL, 137, 'English Blazer Sailor for Men Body Spray 150ml', '6297000402833', 24, NULL, 151, 36624, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:42:16', '2017-08-09 12:42:16'),
(17468, 1, 0, NULL, 191, 'Nike casual body spray 200ml', '8414135255723♪', 24, NULL, 151, 36625, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:42:21', '2017-08-09 12:42:21'),
(17469, 1, 0, NULL, 176, 'Nivea men fresh active body spray 150ml', '4005808299195♪', 24, NULL, 151, 36626, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:43:35', '2017-08-09 12:43:35'),
(17470, 1, 0, NULL, 137, 'English Blazer London for Men Body Spray 150ml', '6297000402062', 24, NULL, 151, 36627, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:43:49', '2017-08-09 12:43:49'),
(17471, 1, 0, NULL, 176, 'Nivea fresh natural body spray 150ml', '4005808816019♪', 24, NULL, 151, 36628, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:44:56', '2017-08-09 12:44:56'),
(17472, 1, 0, NULL, 176, 'Nivea whitening body spray 150ml', '4005808594306♪', 24, NULL, 151, 36629, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:46:41', '2017-08-09 12:46:41'),
(17473, 1, 0, NULL, 176, 'Nivea pearl & beauty body spray 150ml', '4005808837311♪', 24, NULL, 151, 36630, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:48:23', '2017-08-09 12:48:23'),
(17474, 1, 0, NULL, 191, 'Kashmir Body Spray 150ml', '025929131802', 24, NULL, 151, 36631, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:48:44', '2017-08-09 12:48:44'),
(17475, 1, 0, NULL, 191, 'Colour me Gold Body Spray 150ml', '025929122282', 24, NULL, 151, 36632, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 12:52:19', '2017-08-09 12:52:19'),
(17476, 1, 0, 388, 194, 'X-London sex body spray 150ml', '8902682011065', 24, NULL, 151, 36633, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 23:36:46', '2017-08-09 23:40:12'),
(17477, 1, 0, NULL, 115, 'Kool Saint body spray 150ml', '8941100501078', 24, NULL, NULL, 36634, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 23:39:22', '2017-08-09 23:39:22'),
(17478, 1, 0, NULL, 115, 'Kool Blue Passion Body Spray 150ml', '8941100501054', 24, NULL, NULL, 36635, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 23:40:32', '2017-08-09 23:40:32'),
(17479, 1, 0, 388, 115, 'Kool Classic Body Spray 150ml', '8941100501023', 24, NULL, NULL, 36636, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 23:42:05', '2017-08-09 23:49:45'),
(17480, 1, 0, NULL, 194, 'X-London desire body spray 150ml', '8902682011058♪', 24, NULL, 151, 36637, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 23:42:29', '2017-08-09 23:42:29'),
(17481, 1, 0, 388, 197, 'Denim Black Body Spray 150ml', '7640129895083', 24, NULL, NULL, 36638, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 23:43:44', '2017-08-10 00:17:41'),
(17482, 1, 0, NULL, 194, 'X-London desperado body spray 150ml', '8902682011096♪', 24, NULL, 151, 36639, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 23:43:54', '2017-08-09 23:43:54'),
(17483, 1, 0, 388, 196, 'Denim Gold Body Spray 150ml', '7640142778585', 24, NULL, NULL, 36640, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 23:46:15', '2017-08-10 00:18:43'),
(17484, 1, 0, NULL, 194, 'X-London sexy-end body spray 150ml', '8902682011072♪', 24, NULL, 151, 36641, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 23:46:33', '2017-08-09 23:46:33'),
(17485, 1, 0, 388, 115, 'Kool Citrus Beat Body Spray 150ml', '8941100501061', 24, NULL, NULL, 36642, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 23:47:24', '2017-08-09 23:49:06'),
(17486, 1, 0, NULL, 115, 'Kool provoke body spray 150ml', '8941100501825♪', 24, NULL, 151, 36643, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 23:48:03', '2017-08-09 23:48:03'),
(17487, 1, 0, NULL, 115, 'Kool Ignite Body Spray 150ml', '8941100501818', 24, NULL, NULL, 36644, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 23:48:33', '2017-08-09 23:48:33'),
(17488, 1, 0, 388, 196, 'Denim Desire Body Spray 150ml', '7640142779230', 24, NULL, NULL, 36645, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-09 23:56:25', '2017-08-10 00:17:16'),
(17489, 1, 0, NULL, 191, 'America Body Spray White for Woman 150ml', '025929154849', 24, NULL, NULL, 36646, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:03:36', '2017-08-10 00:03:36'),
(17490, 1, 0, NULL, 191, 'America Body Spray Pink for Woman 150ml', '025929154801', 24, NULL, NULL, 36647, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:06:16', '2017-08-10 00:06:16'),
(17491, 1, 0, NULL, 191, 'America Body Spray Red for Woman 150ml', '025929154863', 24, NULL, NULL, 36648, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:06:59', '2017-08-10 00:06:59'),
(17492, 1, 0, NULL, 191, 'Colour Me Femme Gold Body Spray 150ml', '025929130287', 24, NULL, NULL, 36649, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:08:08', '2017-08-10 00:08:08'),
(17493, 1, 0, NULL, 191, 'America Colours Body Spray 150ml', '025929152302', 24, NULL, NULL, 36650, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:09:38', '2017-08-10 00:09:38'),
(17494, 1, 0, 388, 196, 'Denim Musk Body Spray 150ml', '7640129895076', 24, NULL, NULL, 36651, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:13:22', '2017-08-10 00:18:17'),
(17495, 1, 0, NULL, NULL, 'adidas deo body spray', '3607340898907♪', 24, NULL, NULL, 36652, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:16:55', '2017-08-10 00:16:55'),
(17496, 1, 0, NULL, NULL, 'Dexe black hair shampoo 25ml*10', '799439301702', 24, NULL, 151, 36653, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:18:18', '2017-08-10 00:18:18'),
(17498, 1, 0, NULL, 191, 'Colour Me Silver Body Spray 150ml', '025929123715', 24, NULL, NULL, 36654, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:19:32', '2017-08-10 00:19:32'),
(17499, 1, 0, NULL, 190, 'Selsun suspention M T Dandruff 150ml', '5010797007453', 24, NULL, 151, 36655, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:19:54', '2017-08-10 00:19:54'),
(17501, 1, 0, NULL, 193, '<NAME> B.Spray for Woman 150ml', '8696630132352', 24, NULL, NULL, 36656, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:20:28', '2017-08-10 00:20:28'),
(17502, 1, 0, NULL, 189, 'EverGlow facial scrub papaya & raspberry 175ml', '8857101159036', 24, NULL, 151, 36657, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:21:41', '2017-08-10 00:21:41'),
(17504, 1, 0, 388, 189, 'Romance B.Spray 200ml', '614514060056', 24, NULL, NULL, 36658, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:21:44', '2017-08-10 00:28:10'),
(17505, 1, 0, NULL, 194, 'X london sex', '8902682011065♪', 24, NULL, NULL, 36659, 0, 0, 0, '', 0, 0, 1, 1, '2017-08-10 00:22:38', '2017-08-10 00:22:38'),
(17506, 1, 0, NULL, 191, 'America Body Spray Black for Woman 150ml', '025929154825', 24, NULL, NULL, 36660, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:22:42', '2017-08-10 00:22:42'),
(17507, 1, 0, NULL, 115, 'Revive Perfect fresjmess b-spray 150ml', '8941100500972♪', 24, NULL, NULL, 36661, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:25:27', '2017-08-10 00:25:27'),
(17508, 1, 0, NULL, 191, 'Dove H.T color care condi. 355ml IMP', '045893038457', 24, NULL, 151, 36662, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:25:34', '2017-08-10 00:25:34'),
(17509, 1, 0, NULL, 191, 'Hollywood zero dandruff conditioner 360ml ', '754604500120', 24, NULL, 151, 36663, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:27:41', '2017-08-10 00:27:41'),
(17510, 1, 0, NULL, 189, 'Emotion Pour Femme B.Spray 200ml', '614514060094', 24, NULL, NULL, 36664, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:27:42', '2017-08-10 00:27:42'),
(17512, 1, 0, NULL, 191, 'America Musk B.Spray', '025929151206', 24, NULL, NULL, 36665, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:29:08', '2017-08-10 00:29:08'),
(17513, 1, 0, NULL, 42, 'Garnier ultra blends shampoo 340ml', '8901526989522', 24, NULL, 151, 36666, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:29:31', '2017-08-10 00:29:31'),
(17514, 1, 0, NULL, NULL, 'Garnier ultra blends shampoo 175ml', '8901526989539', 24, NULL, 151, 36667, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:30:32', '2017-08-10 00:30:32'),
(17515, 1, 0, NULL, NULL, 'Romance for men forever 200ml', '614514060179♪', 24, NULL, NULL, 36668, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:32:04', '2017-08-10 00:32:04'),
(17516, 1, 0, NULL, 193, 'Fawaris Football B.Spray for Man 150ml', '8696630132468', 24, NULL, NULL, 36669, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:33:23', '2017-08-10 00:33:23'),
(17517, 1, 0, 388, 1, 'Sunsilk hair fall solution shampoo 375ml', '8941100618790', 24, NULL, 151, 36670, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:34:20', '2017-08-10 00:34:20'),
(17518, 1, 0, NULL, 1, 'AXE Midnight B.spray 150ml', '8901030559433', 24, NULL, NULL, 36671, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:35:52', '2017-08-10 00:35:52'),
(17519, 1, 0, NULL, 193, 'Rex Rooter b-spray for man', '8696630136749', 24, NULL, 151, 36672, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:36:40', '2017-08-10 00:36:40'),
(17520, 1, 614514060025, NULL, 189, 'Blue for men 200ml', '11708101752000', 24, NULL, 151, 36673, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:39:33', '2017-08-10 00:39:33'),
(17521, 1, 0, NULL, 83, 'Savlon Antiseptic Cream 60gm', '813903000264', 24, NULL, 151, 36674, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:40:17', '2017-08-10 00:40:17'),
(17522, 1, 0, NULL, 189, 'Blue lady b-spray 200ml', '614514060018♪', 24, NULL, 151, 36675, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:40:39', '2017-08-10 00:40:39'),
(17523, 1, 0, NULL, 115, 'Kool Extra Moisture Saving Foam 100ml', '8941100500576', 24, NULL, NULL, 36676, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:42:04', '2017-08-10 00:42:04'),
(17524, 1, 0, NULL, 115, 'Kool Monsoon Moisture Saving Foam 50ml', '8941100500446', 24, NULL, NULL, 36677, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:43:26', '2017-08-10 00:43:26'),
(17525, 1, 0, NULL, 115, 'revive invigorative citrus b-spray 150ml', '8941100500965', 24, NULL, 151, 36678, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:43:33', '2017-08-10 00:43:33'),
(17526, 1, 0, NULL, 189, 'Royale pour homme b-spray 200ml ', '614514060063♪', 24, NULL, 151, 36679, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:45:51', '2017-08-10 00:45:51'),
(17527, 1, 0, NULL, 130, 'Cute After Shave Lotion 50ml', '088021511071', 24, NULL, NULL, 36680, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:46:37', '2017-08-10 00:46:37'),
(17528, 1, 0, NULL, 115, 'Kool blue passion b-spray 150ml', '8941100501054♪', 24, NULL, 151, 36681, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:47:51', '2017-08-10 00:47:51'),
(17529, 1, 0, NULL, 188, 'Dettol 50ml', '8941100283226', 24, NULL, NULL, 36682, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:50:04', '2017-08-10 00:50:04'),
(17530, 1, 0, NULL, 188, 'Dettol 100gm', '8941100283219', 24, NULL, 151, 36683, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:50:55', '2017-08-10 00:50:55'),
(17531, 1, 0, NULL, 176, 'Nivea men cooling shaving gel 200ml', '4005808943630♪', 24, NULL, 151, 36684, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:51:07', '2017-08-10 00:51:07'),
(17532, 1, 0, NULL, 83, 'Savlon antiseptic 56ml', '11708101753200', 24, NULL, 151, 36685, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:52:50', '2017-08-10 00:52:50'),
(17533, 1, 0, NULL, 130, 'Cute After Shave Lotion 100ml', '088021511064', 24, NULL, NULL, 36686, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:55:25', '2017-08-10 00:55:25'),
(17534, 1, 0, NULL, NULL, 'Kool After Shave Lotion 100ml', '8941100500996', 24, NULL, NULL, 36687, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:56:07', '2017-08-10 00:56:07'),
(17535, 1, 0, 388, 176, 'Nivea Post Shave Balm 100ml', '5025970023274', 24, NULL, NULL, 36688, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 00:58:11', '2017-08-10 01:02:39'),
(17536, 1, 0, NULL, NULL, ' Gillette Foam Regular 196gm', '4902430442671♪', 24, NULL, 151, 38903, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:00:29', '2017-08-10 01:00:29'),
(17537, 1, 0, NULL, 115, 'Kool Monsoon Moisture Shaving Cream 100gm', '8941100501689', 24, NULL, NULL, 36690, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:00:50', '2017-08-10 01:00:50'),
(17538, 1, 0, NULL, 176, 'Nivea Cooling After Shave Lotion 100ml', '6001051000890', 24, NULL, NULL, 36691, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:05:01', '2017-08-10 01:05:01'),
(17539, 1, 0, NULL, 198, 'Gillette Fusion', '7702018918041♪', 24, NULL, 151, 36692, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:05:23', '2017-08-10 01:05:23'),
(17540, 1, 0, NULL, 115, 'Kool After Shave Lotion 50ml', '8941100500989', 24, NULL, 151, 36693, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:06:20', '2017-08-10 01:06:20'),
(17541, 1, 0, NULL, 193, 'Elite Black Hair', '11708101754100', 24, NULL, 151, 36694, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:06:27', '2017-08-10 01:06:27'),
(17542, 1, 0, NULL, 115, 'Kool Frosty Saving Foam 50ml', '8941100500439', 24, NULL, NULL, 36695, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:08:01', '2017-08-10 01:08:01'),
(17543, 1, 0, NULL, 1, '<NAME>.D anti hair fall shampoo 375ml', '8941100648445', 24, NULL, 151, 36696, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:09:25', '2017-08-10 01:09:25'),
(17544, 1, 0, NULL, NULL, 'Bic 2 Sensitive', '3086126674740', 24, NULL, 151, 36697, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:09:26', '2017-08-10 01:09:26'),
(17545, 1, 0, NULL, 197, 'Denim Orginal After Shave 100ml', '7640129895007', 24, NULL, NULL, 36698, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:09:34', '2017-08-10 01:09:34'),
(17546, 1, 0, NULL, NULL, 'Bic Comfort 2', '4351785015502♪', 24, NULL, 151, 36699, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:10:22', '2017-08-10 01:10:22'),
(17547, 1, 0, NULL, 197, 'Denim Musk After Shave 100ml', '7640129895014', 24, NULL, NULL, 36700, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:10:49', '2017-08-10 01:10:49'),
(17548, 1, 0, NULL, 191, 'Dove men fortifying shampoo 355ml', '079400266545', 24, NULL, 151, 36701, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:10:53', '2017-08-10 01:10:53'),
(17549, 1, 0, NULL, NULL, 'Bic foam mousse 200ml', '3086123132887♪', 24, NULL, 151, 36702, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:11:22', '2017-08-10 01:11:22'),
(17550, 1, 0, NULL, 197, 'Denim Black After Shave 100ml', '7640129895021', 24, NULL, 151, 36703, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:11:26', '2017-08-10 01:11:26'),
(17551, 1, 0, NULL, NULL, 'Gillette Foam 98gm', '3014260656737', 24, NULL, NULL, 36704, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:12:18', '2017-08-10 01:12:18'),
(17552, 1, 0, NULL, NULL, 'Bic Metal ', '4351785015502', 24, NULL, 151, 36705, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:12:31', '2017-08-10 01:12:31'),
(17553, 1, 0, NULL, NULL, 'Gillette Gel 195gm', '3014260214692', 24, NULL, NULL, 36706, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:12:54', '2017-08-10 01:12:54'),
(17554, 1, 0, NULL, NULL, 'Gillette Foam Regular 418gm', '4902430602761', 24, NULL, 151, 36707, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:13:35', '2017-08-10 01:13:35'),
(17555, 1, 0, NULL, NULL, 'Gillette Splash After Shave 100ml', '3014260305697', 24, NULL, 151, 36708, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:14:22', '2017-08-10 01:14:22'),
(17556, 1, 0, 388, 105, 'Godrej natural black hair colour 3gm', '11708101755600', 24, NULL, 151, 36709, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:14:30', '2017-08-10 01:19:55'),
(17557, 1, 0, NULL, 115, 'Kool After Shave Gel 50ml', '8941100500569', 24, NULL, 151, 36710, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:15:59', '2017-08-10 01:15:59'),
(17558, 1, 0, NULL, 197, 'Hi-Speedy hear color 3gm', '11708101755800', 24, NULL, 151, 36711, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:16:27', '2017-08-10 01:16:27'),
(17559, 1, 0, NULL, 49, '<NAME> dryness control shampoo 200ml', '4791111106311', 24, NULL, 151, 36712, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:18:01', '2017-08-10 01:18:01'),
(17560, 1, 0, NULL, 105, 'Godrej aloe & milk protein hair color 20gm', '8901023010309♪', 24, NULL, 151, 36713, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:18:19', '2017-08-10 01:18:19'),
(17561, 1, 0, NULL, 83, 'Savlon Antiseptic 112gm', '11708101756100', 24, NULL, NULL, 36714, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:18:24', '2017-08-10 01:18:24'),
(17562, 1, 0, NULL, 130, 'Cute After Shave 40ml', '088021511088', 24, NULL, NULL, 36715, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:19:12', '2017-08-10 01:19:12'),
(17563, 1, 0, NULL, 1, 'Clear men A.D cool sport menthol shampoo 350ml', '8941100645543', 24, NULL, 151, 36716, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:20:13', '2017-08-10 01:20:13'),
(17564, 1, 0, NULL, 193, 'Elite Mehedi 25gm', '11708101756400', 24, NULL, 151, 36717, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:21:15', '2017-08-10 01:21:15'),
(17565, NULL, 0, NULL, 1, 'Clear A.D soft & shiny shampoo 350ml', '8941100648421', 24, NULL, 151, 36718, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:21:44', '2017-08-10 01:21:44'),
(17566, 1, 0, NULL, 193, 'Elite Nail Color Cream 15gm', '11708101756600', 24, NULL, 151, 36719, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:21:59', '2017-08-10 01:21:59'),
(17567, 1, 0, NULL, 123, 'Fay Cotton Buds 40pcs', '8941183007016♪', 24, NULL, 151, 36720, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:22:04', '2017-08-10 01:22:04'),
(17568, 1, 0, NULL, NULL, 'Clear A.D complete active care shampoo 350ml', '11708101756800', 24, NULL, 151, 36721, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:22:46', '2017-08-10 01:22:46'),
(17569, 1, 0, NULL, NULL, 'Gillete Blue 2', '8901358702436', 24, NULL, 151, 36722, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:22:52', '2017-08-10 01:22:52'),
(17570, 1, 0, NULL, NULL, 'Bic Body', '3086126636642', 24, NULL, 151, 36723, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:23:21', '2017-08-10 01:23:21'),
(17571, 1, 0, NULL, NULL, 'Bic 3 Sensitive', '3086126606570', 24, NULL, 151, 36724, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:24:13', '2017-08-10 01:24:13'),
(17572, 1, 0, NULL, 123, 'Fay Cotton Buds 80Pcs', '8941183007023', 24, NULL, 151, 36725, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:25:38', '2017-08-10 01:25:38'),
(17573, 1, 0, NULL, 189, 'EverGlow facial scrub lemon & lemi 175ml', '8857101159012', 24, NULL, 151, 36726, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:26:09', '2017-08-10 01:26:09'),
(17574, 1, 0, NULL, 197, 'Richenna Hair Color', '8806050294053', 24, NULL, 151, 36727, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:26:53', '2017-08-10 01:26:53'),
(17575, 1, 0, NULL, 70, 'Prodentalb Attitude', '9556311221005♪', 24, NULL, 151, 36728, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:27:12', '2017-08-10 01:27:12'),
(17576, 1, 0, NULL, 176, 'Nivea Men Shaving Foam 200ml', '4005808222698', 24, NULL, 151, 36729, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:28:04', '2017-08-10 01:28:04'),
(17577, 1, 0, NULL, 70, 'Prodentalab Champion', '9556311223467♪', 24, NULL, 151, 36730, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:28:20', '2017-08-10 01:28:20'),
(17578, 1, 0, NULL, 189, 'Yc whitening raspberry facial scrub 175ml', '8857101126090', 24, NULL, 151, 36731, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:28:50', '2017-08-10 01:28:50'),
(17579, 1, 0, NULL, 70, 'Prodentalb Ultra', '9556311891161♪', 24, NULL, 151, 36732, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:28:58', '2017-08-10 01:28:58'),
(17580, 1, 0, NULL, 115, 'Kool Shaving Foam 200ml', '8941100500583', 24, NULL, 151, 36733, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:29:21', '2017-08-10 01:29:21'),
(17582, 1, 0, NULL, 70, 'Prodentalb Miracle', '9556311222828♪', 24, NULL, 151, 36734, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:29:44', '2017-08-10 01:29:44'),
(17583, 1, 0, NULL, NULL, 'Bic Comfort Gel 200ml', '3086126747934', 24, NULL, NULL, 36735, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:30:39', '2017-08-10 01:30:39'),
(17584, 1, 0, NULL, 70, 'Prodentalb Venus', '9556311229063♪', 24, NULL, 151, 36736, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:30:43', '2017-08-10 01:30:43'),
(17585, 1, 0, NULL, 70, 'Prodentalb Excellent', '9556311221098♪', 24, NULL, 151, 36737, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:31:38', '2017-08-10 01:31:38'),
(17586, 1, 0, NULL, 188, 'Dettol 500gm', '8941102833344', 24, NULL, 151, 36738, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:31:57', '2017-08-10 01:31:57'),
(17587, 1, 0, NULL, 70, 'Prodentalb Xtreme', '9556311221340♪', 24, NULL, 151, 36739, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:32:07', '2017-08-10 01:32:07'),
(17588, 1, 0, NULL, 83, 'Savlon Antiseptic 1000ml', '813903000288', 24, NULL, 151, 36740, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:33:03', '2017-08-10 01:33:03'),
(17589, 1, 0, NULL, 70, 'Prodentalb Ambition', '9556311229018♪', 24, NULL, 151, 36741, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:33:08', '2017-08-10 01:33:08'),
(17590, 1, 0, NULL, 70, 'Prodentalb Power', '9556311223436♪', 24, NULL, 151, 36742, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:33:44', '2017-08-10 01:33:44'),
(17591, 1, 0, NULL, 83, 'Savlon Antiseptic 500ml', '813903000301', 24, NULL, 151, 36743, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:34:07', '2017-08-10 01:34:07'),
(17592, 1, 0, NULL, 70, 'prodentalb vision', '9556311223443♪', 24, NULL, 151, 36744, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:34:50', '2017-08-10 01:34:50'),
(17593, 1, 0, NULL, 197, 'Denim Shaving Foam 300ml', '7640129895144', 24, NULL, 151, 36745, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:35:21', '2017-08-10 01:35:21'),
(17594, 1, 0, NULL, 70, 'Prodentalb flexible', '9556311891130♪', 24, NULL, 151, 36746, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:35:31', '2017-08-10 01:35:31'),
(17595, 1, 0, NULL, 189, 'Yc whitening lemon & honey facial scrub 175ml', '8857101111171', 24, NULL, 151, 36747, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:35:33', '2017-08-10 01:35:33'),
(17596, 1, 0, NULL, 70, 'Prodentalb Super diamond Head', '9556311891192♪', 24, NULL, 151, 36748, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:36:58', '2017-08-10 01:36:58'),
(17597, 1, 0, NULL, 198, 'Oral-B All-Rounder', '4902430678896', 24, NULL, 151, 36749, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:40:21', '2017-08-10 01:40:21'),
(17598, 1, 0, NULL, 198, 'Oral-B Classic Supre Clean', '4902430668057', 24, NULL, 151, 36750, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:41:06', '2017-08-10 01:41:06'),
(17599, 1, 0, NULL, 198, 'Oral-B Shiny Clean', '4902430679800', 24, NULL, 151, 36751, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:41:40', '2017-08-10 01:41:40'),
(17600, 1, 0, NULL, 70, 'Prodentalb Precision', '9556311229001♪', 24, NULL, 151, 36752, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:42:22', '2017-08-10 01:42:22'),
(17601, 1, 0, NULL, 198, 'Oral-B Pro Health', '4902430663809', 24, NULL, 151, 36753, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:42:25', '2017-08-10 01:42:25'),
(17602, 1, 0, NULL, 194, 'Everyuth naturals E. walnut scrub 100g', '8901120141029', 24, NULL, 151, 36754, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:43:02', '2017-08-10 01:43:02'),
(17603, 1, 0, NULL, 70, 'Prodentalb Active', '9556311221159♪', 24, NULL, 151, 36755, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:43:07', '2017-08-10 01:43:07'),
(17604, 1, 0, NULL, 70, 'Prodentalb Dynamite', '9556311222798♪', 24, NULL, 151, 36756, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:44:32', '2017-08-10 01:44:32'),
(17605, 1, 0, NULL, 190, 'Trisha Organic', '7610196005326', 24, NULL, 151, 36757, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:45:06', '2017-08-10 01:45:06'),
(17606, 1, 0, NULL, 190, 'Trisha Super Soft', '7610196001045', 24, NULL, 151, 36758, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:45:49', '2017-08-10 01:45:49'),
(17607, 1, 0, NULL, 70, 'Prodentalb Explorer', '9556311225065♪', 24, NULL, 151, 36759, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:46:02', '2017-08-10 01:46:02'),
(17608, 1, 0, NULL, 1, 'Dove oxygen moisture condi. 180ml', '8901030547027', 24, NULL, 151, 36760, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:46:08', '2017-08-10 01:46:08'),
(17609, 1, 0, NULL, 70, 'Prodentalb Inspire', '9556311229049♪', 24, NULL, 151, 36761, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:47:02', '2017-08-10 01:47:02'),
(17610, 1, 0, NULL, 150, 'Sensodyne Toothbrush', '08901571005383', 24, NULL, 151, 36762, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:47:10', '2017-08-10 01:47:10'),
(17611, 1, 0, NULL, 1, 'Dove H.T intense repair shampoo 180ml', '8941100644621', 24, NULL, 151, 36763, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:47:41', '2017-08-10 01:47:41'),
(17612, 1, 0, NULL, 150, 'Sensodyne', '8901571005833', 24, NULL, 151, 36764, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:48:09', '2017-08-10 01:48:09'),
(17613, 1, 0, NULL, 70, 'Prodentalb Classic ', '8971511223450♪', 24, NULL, 151, 36765, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:48:18', '2017-08-10 01:48:18'),
(17614, 1, 0, 388, 1, 'Tresemme karatin smooth shampoo 190ml', '8901030622007', 24, NULL, 151, 36766, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:49:07', '2017-08-10 01:49:07'),
(17615, 1, 0, NULL, 70, 'Prodentalb Progrip', '9556311891314♪', 24, NULL, 151, 36767, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:49:22', '2017-08-10 01:49:22'),
(17616, 1, 0, NULL, 70, 'Prodentalb Arrow ', '9556311221357♪', 24, NULL, 151, 36768, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:50:30', '2017-08-10 01:50:30'),
(17617, 1, 0, 388, 1, 'Sunsilk black shine shampoo 375ml', '8941100618738', 24, NULL, 151, 36769, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:50:42', '2017-08-10 01:50:42'),
(17618, 1, 0, NULL, NULL, 'Ol<NAME>brush', '6959128401692', 24, NULL, 151, 36770, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:50:56', '2017-08-10 01:50:56'),
(17619, 1, 0, NULL, 70, 'Prodentalb Ultra Twin', '200812061701♪', 24, NULL, 151, 36771, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:51:43', '2017-08-10 01:51:43'),
(17620, 1, 0, 388, 1, 'Tresemme lonic strength shampoo 190ml', '8901030550287', 24, NULL, 151, 36772, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:52:13', '2017-08-10 01:52:13'),
(17621, 1, 0, NULL, 70, 'Prodentalb Creative', '9556311229025♪', 24, NULL, 151, 36773, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:53:09', '2017-08-10 01:53:09'),
(17622, 1, 0, NULL, 70, 'Prodentalb Dental Stain Remover', '9556311223504', 24, NULL, 151, 36774, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:56:20', '2017-08-10 01:56:20'),
(17624, 1, 0, NULL, 115, 'Select plus shampoo 75ml', '11708101762400', 24, NULL, 151, 36775, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 01:59:31', '2017-08-10 01:59:31'),
(17625, 1, 0, 388, 1, 'Dove H.T hair fall rescue condi. 355ml IMP', '8901030545412', 24, NULL, 151, 36776, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 02:01:06', '2017-08-10 02:01:06'),
(17626, 1, 0, 388, 1, 'Dove H.T intense repair conditioner 180ml', '8901030545382', 24, NULL, 151, 36777, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 02:03:43', '2017-08-10 02:03:43'),
(17627, 1, 0, NULL, 70, 'Prodentalb Tongue Cleaner', '9556311223511♪', 24, NULL, 151, 36778, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 02:04:08', '2017-08-10 02:04:08'),
(17628, 1, 0, NULL, 190, 'Neutrogena damage herbal shampoo 300ml', '070501016404', 24, NULL, 151, 36779, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 02:17:24', '2017-08-10 02:17:24'),
(17629, 1, 0, NULL, 49, '<NAME>.H.T black shine shampoo 200ml', '4791111106861', 24, NULL, 151, 36780, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 02:23:12', '2017-08-10 02:23:12'),
(17630, 1, 0, NULL, 180, 'Dabur vatika black olive & almond shampoo 200ml', '8901207004636', 24, NULL, 151, 36781, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 02:25:25', '2017-08-10 02:25:25'),
(17631, 1, 0, NULL, 189, 'Yc whitening cucumber facial scrub 175ml', '8857101111188', 24, NULL, 151, 36782, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 02:26:50', '2017-08-10 02:26:50'),
(17632, 1, 0, NULL, 191, 'Hollywood apricot facial scrub 150ml ', '754604755018', 24, NULL, 151, 36783, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 02:29:32', '2017-08-10 02:29:32'),
(17633, 1, 0, NULL, 115, 'Revive totti frotti shampoo 200ml', '8941100501436', 24, NULL, 151, 36784, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 02:31:30', '2017-08-10 02:31:30'),
(17634, 1, 0, NULL, 1, 'Sunsilk lusciously thick & long condi. 80ml', '8941100618899', 24, NULL, 151, 36785, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 02:41:04', '2017-08-10 02:41:04'),
(17635, 1, 0, NULL, 194, 'Everyuth naturals neem face wash 100g', '8901120146017', 24, NULL, 151, 36786, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 02:42:48', '2017-08-10 02:42:48'),
(17636, 1, 0, 388, 1, 'Sunsilk black shine shampoo 180ml', '8941100618745', 24, NULL, 151, 36787, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 02:44:37', '2017-08-10 02:44:37'),
(17637, 1, 0, NULL, 194, 'Everyuth naturals Fruit face wash 100g', '8901120146826', 24, NULL, 151, 36788, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 03:09:44', '2017-08-10 03:09:44'),
(17638, 1, 0, NULL, 199, 'Oxy perfect wash face wash 100gm', '8935006101357', 24, NULL, 151, 36789, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 03:21:23', '2017-08-10 03:21:23'),
(17639, 1, 0, 388, 191, 'Vaseline total moisture 295 ml', '11708101763900', 24, NULL, NULL, 36790, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:03:16', '2017-08-10 04:04:00'),
(17640, 1, 0, 388, 191, 'Dove body lotion', '8711600369443♪', 24, NULL, 151, 36791, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:04:28', '2017-08-10 04:04:28'),
(17641, 1, 0, NULL, 191, 'Vaseline Total Moisture 725 ml', '11708101764100', 24, NULL, 151, 36792, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:04:44', '2017-08-10 04:04:44'),
(17642, 1, 0, NULL, 191, 'Vaseline Intensive care 295ml', '11708101764200', 24, NULL, 151, 36793, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:05:31', '2017-08-10 04:05:31'),
(17643, 1, 0, NULL, 191, 'Vaseline intensive care aloe soothe 600ml', '11708101764300', 24, NULL, 151, 36794, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:06:31', '2017-08-10 04:06:31'),
(17644, 1, 0, NULL, 191, 'Vseline Intensive care Essential healing 600ml', '11708101764400', 24, NULL, 151, 36795, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:07:14', '2017-08-10 04:07:14'),
(17645, 1, 0, 388, 198, 'Pantene shampoo 340ml', '4902430401012♪', 24, NULL, 151, 36796, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:07:51', '2017-08-10 04:07:51'),
(17646, 1, 0, NULL, 191, 'Vseline Intensive care Cocoa Radiant 600ml', '11708101764600', 24, NULL, 151, 36797, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:07:56', '2017-08-10 04:07:56'),
(17647, 1, 0, NULL, 191, '<NAME>ourish && Protect Hair Creaam 140ml', '11708101764700', 24, NULL, 151, 36798, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:09:01', '2017-08-10 04:09:01'),
(17648, 1, 0, NULL, 198, 'Pantene hairfall control 340ml', '4902430400992♪', 24, NULL, 151, 36799, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:09:08', '2017-08-10 04:09:08'),
(17649, 1, 0, 388, 191, 'Natural Glycerin Cream 175ml', '11708101764900', 24, NULL, 151, 36800, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:09:41', '2017-08-10 04:10:06'),
(17650, 1, 0, NULL, 191, 'Baj<NAME>ola Nourish & Protect Hair Cream 140ml', '11708101765000', 24, NULL, 151, 36801, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:10:49', '2017-08-10 04:10:49'),
(17651, 1, 0, NULL, 191, 'Total moisture lotion 275ml', '754604501011♪', 24, NULL, 151, 36802, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:11:00', '2017-08-10 04:11:00'),
(17652, 1, 0, NULL, 191, 'Baj<NAME>ola Dandruff Control Hairr Cream 140ml', '11708101765200', 24, NULL, 151, 36803, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:11:53', '2017-08-10 04:11:53'),
(17653, 1, 0, NULL, 1, 'Dove oxyzen moisture shampoo 350ml', '8941100648704♪', 24, NULL, 151, 36804, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:13:53', '2017-08-10 04:13:53'),
(17654, 1, 0, NULL, 191, 'Herbal SoftMamcadamia Nut & Milk 175ml', '754604501158', 24, NULL, 151, 36805, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:14:29', '2017-08-10 04:14:29'),
(17655, 1, 0, NULL, 1, 'Dove Noursing oil care 350ml', '8941100644317♪', 24, NULL, 151, 36806, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:15:21', '2017-08-10 04:15:21'),
(17656, 1, 0, NULL, 191, 'Cleaning Cold Berries, Rose & Milk 175ml', '754604501172', 24, NULL, 151, 36807, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:15:59', '2017-08-10 04:15:59'),
(17657, 1, 0, NULL, 1, 'Dove hair fall rescue350ml', '8941100644171♪', 24, NULL, 151, 36808, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:16:25', '2017-08-10 04:16:25'),
(17658, 1, 0, 388, 187, '<NAME> Hair Colour Black 60g', '8900090255613', 24, NULL, 151, 36809, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:18:42', '2017-08-10 04:23:17'),
(17659, 1, 0, NULL, 197, 'HI speedy pro colour cream 125 gm', '8806050015078♪', 24, NULL, 151, 36810, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:18:43', '2017-08-10 04:18:43'),
(17660, 1, 0, 388, 187, '<NAME>enna Herbal Hair Colour Brown 60g', '8900090255620', 24, NULL, 151, 36811, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:19:58', '2017-08-10 04:24:19'),
(17661, 1, 0, NULL, 197, 'HI speedy pro colour cream 150gm', '8806050173013♪', 24, NULL, 151, 36812, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:20:21', '2017-08-10 04:20:21'),
(17662, 1, 0, 388, 198, 'Head & Shoulders Anti-dandruff shampoo Smooth & Silky 330ml', '4902430397827', 24, NULL, 151, 36813, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:21:43', '2017-08-10 04:46:42'),
(17663, 1, 0, NULL, 197, 'Hi speedy Gold colour cream 150gm', '8806050188536♪', 24, NULL, 151, 36814, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:24:46', '2017-08-10 04:24:46'),
(17664, 1, 0, NULL, 198, 'H & S cool menthol shampoo 170ml', '4902430396035', 24, NULL, 151, 36815, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:25:58', '2017-08-10 04:25:58'),
(17665, 1, 0, NULL, 115, 'Meril Olive Oil 150ml', '8941100500538', 24, NULL, 151, 36816, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:26:15', '2017-08-10 04:26:15'),
(17666, 1, 0, NULL, 176, 'Nivea men oil control50ml', '4005900196033♪', 24, NULL, 151, 36817, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:26:57', '2017-08-10 04:26:57'),
(17667, 1, 0, NULL, 188, 'Veet Hair Removal Cream Silk & Fresh 25g', '8901396351207', 24, NULL, 151, 36818, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:27:48', '2017-08-10 04:27:48'),
(17668, 1, 0, NULL, 1, 'Fair lovely ayurevedic cream50gm', '8941100651964♪', 24, NULL, 151, 36819, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:28:26', '2017-08-10 04:28:26'),
(17669, 1, 0, NULL, 1, 'Dove Purely Pampering Nourishing lotion 250ml', '8711700946766', 24, NULL, 151, 36820, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:28:58', '2017-08-10 04:28:58'),
(17670, 1, 0, NULL, 1, 'Fair lovely advanced multi vitamin 50gm', '8941100651513♪', 24, NULL, 151, 36821, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:29:23', '2017-08-10 04:29:23'),
(17671, 1, 0, NULL, 74, 'Borges Olive Massage oil 125ml', '8410179001777', 24, NULL, 151, 36822, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:30:22', '2017-08-10 04:30:22'),
(17672, 1, 0, NULL, 42, 'Garniger natutal Black29ml', '8901526204731♪', 24, NULL, 151, 36823, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:32:04', '2017-08-10 04:32:04'),
(17673, 1, 0, NULL, 190, 'Beautiful And Persistent Aceite DE Liva Olive Oil 150ml', '11708101767300', 24, NULL, 151, 36824, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:32:19', '2017-08-10 04:32:19'),
(17674, 1, 0, NULL, 189, 'Almond Oill B P 70ml', '5017848251056', 24, NULL, 151, 36825, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:33:29', '2017-08-10 04:33:29'),
(17675, 1, 0, NULL, 42, 'Garniger Burgundy color cream70ml', '8901526204472♪', 24, NULL, 151, 36826, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:33:41', '2017-08-10 04:33:41'),
(17676, 1, 0, NULL, 194, '<NAME> B P 70ml', '8420701708760', 24, NULL, 151, 36827, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:34:34', '2017-08-10 04:34:34'),
(17677, 1, 0, NULL, 197, 'Hi speedy color cream60gm', '8806050011070♪', 24, NULL, NULL, 36828, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:35:09', '2017-08-10 04:35:09'),
(17678, 1, 0, 388, 42, '<NAME> DRPS 200ml', '8906014765152', 24, NULL, 151, 36829, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:35:58', '2017-08-10 04:36:55'),
(17679, 1, 0, NULL, 42, 'B<NAME> DRPS 100ml', '8906014765145', 24, NULL, 151, 36830, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:37:59', '2017-08-10 04:37:59'),
(17680, 1, 0, NULL, 1, 'fair &lovely BB 40gm', '8901030545429♪', 24, NULL, 151, 36831, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:39:48', '2017-08-10 04:39:48'),
(17681, 1, 0, NULL, 1, 'Fair & lovely BB 18gm', '8901030537912♪', 24, NULL, 151, 36832, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:41:02', '2017-08-10 04:41:02'),
(17682, 1, 0, NULL, 130, 'Cute Perfumed Coconut lite Non sticky Hair Oil 330ml', '11708101768200', 24, NULL, 151, 36833, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:41:46', '2017-08-10 04:41:46'),
(17683, 1, 0, NULL, 1, 'Fair & lovely anti marks cream 25gm', '8941100650264♪', 24, NULL, 151, 36834, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:42:27', '2017-08-10 04:42:27'),
(17684, 1, 0, NULL, 200, 'Gohnsons Olive Oil 110 ml', '11708101768400', 24, NULL, 151, 36835, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:43:49', '2017-08-10 04:43:49'),
(17685, 1, 0, NULL, 42, 'Gerniger sun control 50ml', '8901526200375', 24, NULL, 151, 36836, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:44:48', '2017-08-10 04:44:48'),
(17686, 1, 0, NULL, 198, 'Head & Shoulders Anti-dandruff shampoo cool menthol 330ml ', '4902430411776', 24, NULL, 151, 36837, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:45:37', '2017-08-10 04:45:37'),
(17687, 1, 0, NULL, 42, 'Garniger burgundy color 29ml', '8901526206377♪', 24, NULL, 151, 36838, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:46:56', '2017-08-10 04:46:56'),
(17688, 1, 0, NULL, 189, 'YC Peel-off Mask 120ml', '8857101110464', 24, NULL, 151, 36839, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:47:46', '2017-08-10 04:47:46'),
(17689, 1, 0, NULL, 197, 'Hi speedy Black color cream40gm', '8806050127047♪', 24, NULL, 151, 36840, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:48:17', '2017-08-10 04:48:17'),
(17690, 1, 0, NULL, 74, 'Borges Olive Hair Oil 125ml', '8410179001791', 24, NULL, 151, 36841, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:48:35', '2017-08-10 04:48:35'),
(17691, 1, 0, NULL, 1, 'Fair & Lovely Advanced Multi Vitamin 25g', '8941100651520', 24, NULL, 151, 36842, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:49:52', '2017-08-10 04:49:52'),
(17693, 1, 0, NULL, 198, 'Olay day cream 20gm', '4902430360906♪', 24, NULL, 151, 36843, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:51:01', '2017-08-10 04:51:01'),
(17694, 1, 0, NULL, 49, 'Himalaya Herbal Natural Glow Fairness Cream 25g', '8901138504519', 24, NULL, 151, 36844, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:51:59', '2017-08-10 04:51:59'),
(17695, 1, 0, NULL, 198, 'Olay day cream 50gm', '4902430360111♪', 24, NULL, 151, 36845, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:52:47', '2017-08-10 04:52:47'),
(17696, 1, 0, NULL, 130, 'Cute Perfumed Coconut Lite Non Sticky Hair oil 160ml', '11708101769600', 24, NULL, 151, 36846, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:53:12', '2017-08-10 04:53:12'),
(17697, 1, 0, NULL, 197, 'Hi speedy black hair dye powder 6gm', '8806050011070', 24, NULL, 151, 36847, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:54:24', '2017-08-10 04:54:24'),
(17698, 1, 0, NULL, 1, 'POND\'S White Beauty 25g', '8941100639702', 24, NULL, 151, 36848, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:54:31', '2017-08-10 04:54:31'),
(17700, 1, 0, NULL, 49, 'Himalaya Herbal Natural Glow Fairness Cream 50g', '8901138500467', 24, NULL, 151, 36849, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:55:45', '2017-08-10 04:55:45'),
(17701, 1, 0, 388, 130, 'Cute french perfumed talc 350gm', '11708101770100', 24, NULL, 151, 36850, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:57:12', '2017-08-10 04:59:24'),
(17702, 1, 0, NULL, 1, 'POND\'S Age Miracle Cell ReGen Day Cream 50g', '8999999022440', 24, NULL, 151, 36851, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:57:13', '2017-08-10 04:57:13'),
(17703, 1, 0, NULL, 192, 'Queen Castor Oil BP 70ml', '8410269608817', 24, NULL, 151, 36852, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:58:02', '2017-08-10 04:58:02'),
(17704, 1, 0, NULL, 130, 'Cute Romance Talcum Powder 400g', '11708101770400', 24, NULL, 151, 36853, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 04:59:05', '2017-08-10 04:59:05'),
(17705, 1, 0, NULL, 105, 'Godrej Expert Cream Hair Colour 62g', '8901023014604', 24, NULL, 151, 36854, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:01:18', '2017-08-10 05:01:18'),
(17706, 1, 0, NULL, 186, 'Tibet Luxury Talcum Powder 100gm', '8513690404406', 24, NULL, 151, 36855, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:02:18', '2017-08-10 05:02:18'),
(17707, 1, 0, NULL, 200, 'jhonsons olive oil 220ml', '11708101770700', 24, NULL, 151, 36856, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:04:05', '2017-08-10 05:04:05'),
(17708, 1, 0, NULL, 186, 'Tibet Luxury Talcum Powder UV Sun Protection 200gm', '8513690414702', 24, NULL, 151, 36857, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:04:08', '2017-08-10 05:04:08'),
(17709, 1, 0, NULL, 1, 'Ponds day cream 25gm', '8851932221603♪', 24, NULL, 151, 36858, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:05:50', '2017-08-10 05:05:50'),
(17710, 1, 0, NULL, 186, 'Tibet Luxury Talcum Powder 50gm', '11708101771000', 24, NULL, 151, 36859, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:06:05', '2017-08-10 05:06:05'),
(17711, 1, 0, NULL, 1, 'Ponds white beauty cream 50gm', '8901030556340♪', 24, NULL, 151, 36860, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:06:56', '2017-08-10 05:06:56'),
(17712, 1, 0, NULL, 130, 'Romance Cute Talcum Powder 200gm', '11708101771200', 24, NULL, 151, 36861, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:07:19', '2017-08-10 05:07:19'),
(17713, 1, 0, NULL, 130, 'Cute French Perfumed Talcum Refreshing Delightful Deodorizin', '11708101771300', 24, NULL, 151, 36862, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:08:45', '2017-08-10 05:08:45'),
(17714, 1, 0, NULL, 115, 'Jui coconut oil 200ml', '8941100500507♪', 24, NULL, 151, 36863, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:09:19', '2017-08-10 05:09:19'),
(17715, 1, 0, 388, 130, 'Cute Flower Talc 200gm', '088021512726', 24, NULL, 151, 36864, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:09:43', '2017-08-10 05:10:27'),
(17716, 1, 0, NULL, 189, 'Yc peel off mask 120ml', '8857101110198♪', 24, NULL, 151, 36865, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:10:40', '2017-08-10 05:10:40'),
(17717, 1, 0, NULL, 193, 'Elite mesta Guard 50gm', '11708101771700', 24, NULL, 151, 36866, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:12:16', '2017-08-10 05:12:16'),
(17718, 1, 0, 388, 189, 'YC Black Head Remover Mask 50ml', '8857101157889', 24, NULL, 151, 36867, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:12:23', '2017-08-10 05:14:05'),
(17719, 1, 0, NULL, 196, 'DENIM Black Deodoranant Roll On DeoMax 50ml', '7640129895137', 24, NULL, 151, 36868, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:13:33', '2017-08-10 05:13:33'),
(17720, 1, 0, NULL, 115, 'Revive Active sunblock 100gm', '8941100500002♪', 24, NULL, 151, 36869, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:13:50', '2017-08-10 05:13:50'),
(17721, 1, 0, NULL, 186, 'Emolin Enriced Tibet Snow 50gm', '8513690101503', 24, NULL, 151, 36870, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:15:01', '2017-08-10 05:15:01'),
(17722, 1, 0, NULL, 189, 'Yc Peel off mask 120ml', '8857101110457♪', 24, NULL, 151, 36871, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:15:27', '2017-08-10 05:15:27'),
(17723, 1, 0, NULL, 186, 'Heel guard cream 25gm', '8513690034504♪', 24, NULL, 151, 36872, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:16:29', '2017-08-10 05:16:29'),
(17724, 1, 0, NULL, 115, '<NAME> 3ml', '11708101772400', 24, NULL, 151, 36873, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:17:19', '2017-08-10 05:17:19'),
(17725, 1, 0, NULL, 197, 'Hi speedy red medhi 50gm', '11708101772500', 24, NULL, 151, 36874, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:18:03', '2017-08-10 05:18:03'),
(17726, 1, 0, NULL, 115, '<NAME> 3ml', '11708101772600', 24, NULL, 151, 36875, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:18:46', '2017-08-10 05:18:46'),
(17727, 1, 0, NULL, 42, 'Garniger men power white 45gm', '8901526203550♪', 24, NULL, 151, 36876, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:19:42', '2017-08-10 05:19:42'),
(17728, 1, 0, NULL, 196, 'DENIM Illusion DeoMax Triple Action Formula 50ml', '7640129896844', 24, NULL, 151, 36877, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:19:56', '2017-08-10 05:19:56'),
(17729, 1, 0, NULL, 196, 'DENIM Fire Deodoran Roll On DeoMax 50ml', '7640142778721', 24, NULL, 151, 36878, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:20:41', '2017-08-10 05:20:41'),
(17730, 1, 0, NULL, 193, 'Elite spot out cream 15gm', '11708101773000', 24, NULL, 151, 36879, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:20:49', '2017-08-10 05:20:49'),
(17731, 1, 0, NULL, 176, 'NIVEA MEN Dark spot Reduction 10x Whitening Effect 50ml', '4005900196002', 24, NULL, 151, 36880, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:23:16', '2017-08-10 05:23:16'),
(17732, 1, 0, NULL, 105, 'Godrej alone & milk protein cream62gm', '8901023014581♪', 24, NULL, 151, 36881, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:23:45', '2017-08-10 05:23:45'),
(17733, 1, 0, NULL, 1, 'Rexona Motion Sense Shower Clean Dry & Fresh confidence 50ml', '4800888150639', 24, NULL, 151, 36882, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:24:13', '2017-08-10 05:24:13'),
(17734, 1, 0, NULL, 176, 'NIVEA MEN Cool Kick 50ml', '4005808301843', 24, NULL, 151, 36883, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:25:06', '2017-08-10 05:25:06'),
(17735, 1, 0, NULL, 189, 'Castor oil B.P 70ml', '5017848253647♪', 24, NULL, 151, 36884, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:25:47', '2017-08-10 05:25:47'),
(17736, 1, 0, NULL, 1, 'POSD\'S Vanishing Cream 50gm', '8941100647462', 24, NULL, 151, 36885, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:26:25', '2017-08-10 05:26:25'),
(17737, 1, 0, NULL, 42, 'Garniger white cream 40gm', '8901526208616♪', 24, NULL, 151, 36886, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:27:28', '2017-08-10 05:27:28'),
(17738, 1, 0, NULL, 176, 'NIVEA Soft Refreshingly SOft Moisturizing Cream 100ml', '4005900009715', 24, NULL, 151, 36887, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:27:39', '2017-08-10 05:27:39'),
(17739, 1, 0, NULL, 42, 'Garniger white cream 18gm', '8901526208609♪', 24, NULL, 151, 36888, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:29:28', '2017-08-10 05:29:28'),
(17740, 1, 0, NULL, 176, 'NIVEA anti-perspirant Pearl & Beauty Smooth & Beautiful Unde', '4005808837359', 24, NULL, 151, 36889, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:29:41', '2017-08-10 05:29:41'),
(17741, 1, 0, NULL, 176, 'NIVEA anti-perspirant Fresh natural fresh feeling 50ml', '42059226', 24, NULL, 151, 36890, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:31:02', '2017-08-10 05:31:02'),
(17742, 1, 0, NULL, 115, '<NAME>ine120gm', '8941100500910♪', 24, NULL, 151, 36891, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:31:08', '2017-08-10 05:31:08'),
(17743, 1, 0, NULL, 190, 'Fa Caribbean Lemon Citric fresh 50ml', '4015000280211', 24, NULL, 151, 36892, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:32:00', '2017-08-10 05:32:00'),
(17744, 1, 0, NULL, 1, 'Ponds vanishing cream 28 gm', '8941100647479♪', 24, NULL, 151, 36893, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:32:11', '2017-08-10 05:32:11'),
(17745, 1, 0, NULL, 1, 'Rexona motionsense powder dry ', '4800888158925♪', 24, NULL, 151, 36894, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:34:12', '2017-08-10 05:34:12'),
(17746, 1, 0, NULL, 190, 'Fa Exotic Garden Exotic fresh 50ml', '4015000280259', 24, NULL, 151, 36895, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:35:29', '2017-08-10 05:35:29'),
(17747, 1, 0, NULL, 200, 'jhonsons olive oil 65ml', '11708101774700', 24, NULL, 151, 36896, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:36:00', '2017-08-10 05:36:00'),
(17748, 1, 0, 388, 190, 'Fa AQUA Aquatic Fresh 50ml', '4015000280235', 24, NULL, 151, 36897, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:36:23', '2017-08-10 05:37:17'),
(17749, 1, 0, NULL, 115, 'Meril glycerine 60gm', '8941100500903♪', 24, NULL, 151, 36898, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:37:29', '2017-08-10 05:37:29'),
(17750, 1, 0, NULL, 190, 'Fa PINK Passion 50ml', '4015000519977', 24, NULL, 151, 36899, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:39:07', '2017-08-10 05:39:07'),
(17751, 1, 0, NULL, 180, '<NAME> Rose water 120ml', '89005590♪', 24, NULL, 151, 36900, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:39:14', '2017-08-10 05:39:14'),
(17752, 1, 0, NULL, 190, 'Fa Sport Invisible Powder 50ml', '4015000997423', 24, NULL, 151, 36901, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:40:31', '2017-08-10 05:40:31'),
(17753, 1, 0, NULL, 115, 'Meril nail polish remover 40ml', '8941100501047♪', 24, NULL, 151, 36902, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:41:34', '2017-08-10 05:41:34'),
(17754, 1, 0, NULL, 198, 'Whisper Maxi Nights 15 Pads ', '4902430709927', 24, NULL, 151, 36903, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:52:56', '2017-08-10 05:52:56'),
(17755, 1, 0, NULL, 83, 'Freedom Super Dry 8 Pads Heavy flow Wings', '813903000400', 24, NULL, 151, 36904, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:55:12', '2017-08-10 05:55:12'),
(17756, 1, 0, NULL, 115, 'Senora sanitary Napkins 5 pad', '8941100500330♪', 24, NULL, 151, 36905, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:56:00', '2017-08-10 05:56:00'),
(17757, 1, 0, NULL, 198, 'Whisper maxi fit 8pad', '4902430613583♪', 24, NULL, 151, 36906, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:57:09', '2017-08-10 05:57:09'),
(17760, 1, 0, NULL, 200, 'jhonsons sanitary napkins 8pad', '11708101776000', 24, NULL, 151, 36907, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:58:53', '2017-08-10 05:58:53'),
(17761, 1, 0, NULL, 201, 'Medicare Dependable Adult Nappies L 7 unit With Double Prot', '6928064842036', 24, NULL, 151, 36908, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 05:59:06', '2017-08-10 05:59:06'),
(17762, 1, 0, NULL, 198, 'Whisper Ultra Clean L 15 Pads', '4902430668286', 24, NULL, 151, 36909, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:00:23', '2017-08-10 06:00:23'),
(17763, 1, 0, NULL, 1, 'Head & Shoulders Anti-Dandruff Shampoo Cool Menthol 70ml', '4902430414296', 24, NULL, 151, 36910, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:00:39', '2017-08-10 06:00:39'),
(17764, 1, 0, NULL, 115, 'senora SN Belt system 10pad', '8941100500415♪', 24, NULL, 151, 36911, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:00:53', '2017-08-10 06:00:53'),
(17765, 1, 0, NULL, 83, 'Savlon Freedom Sanitary Napkin 10 Pads', '813903000431', 24, NULL, 151, 36912, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:01:17', '2017-08-10 06:01:17'),
(17766, 1, 0, NULL, 115, 'Senora Sanitary Napkin Regular Pack 10 Pads', '8941100500941', 24, NULL, 151, 36913, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:02:25', '2017-08-10 06:02:25'),
(17767, 1, 0, NULL, 198, 'Whisper MF sanitary Napkins 15 pads', '4902430709873♪', 24, NULL, 151, 36914, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:02:31', '2017-08-10 06:02:31'),
(17769, 1, 0, NULL, 198, 'Whisper MN sanitary napkins 7 pads', '4902430640268♪', 24, NULL, 151, 36915, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:03:56', '2017-08-10 06:03:56'),
(17770, 1, 0, NULL, 198, 'Whisper Ultra Clean L 8 Pads', '4902430667210', 24, NULL, 151, 36916, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:04:12', '2017-08-10 06:04:12'),
(17771, 1, 0, NULL, 115, 'Senora Sanitary Napkin (Belt System) 5 Pads', '8941100501030', 24, NULL, 151, 36917, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:05:46', '2017-08-10 06:05:46'),
(17772, 1, 0, NULL, 200, 'Jhonsons SN 8 pads', '11708101777200', 24, NULL, 151, 36918, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:06:33', '2017-08-10 06:06:33'),
(17773, 1, 0, NULL, 83, 'ACI Freedom Cotton Soft (Panty System) 10 p', '813903000448', 24, NULL, 151, 36919, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:06:38', '2017-08-10 06:06:38'),
(17774, 1, 0, NULL, 198, 'Whisper Maxi Nights 7 Pads XL Wings Extra Heavyflow', '4902430640268', 24, NULL, 151, 36920, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:07:43', '2017-08-10 06:07:43'),
(17775, 1, 0, 388, 115, 'Senora Condidence Ultra 8 Pads', '8941100500699', 24, NULL, 151, 36921, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:08:30', '2017-08-10 06:08:56'),
(17776, 1, 0, NULL, 198, 'Whisper Ultra clean 8 pads', '4902430667210♪', 24, NULL, 151, 36922, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:10:03', '2017-08-10 06:10:03'),
(17777, 1, 0, NULL, 1, 'Clear Anti-Dandruff Nourishing Shampoo 180ml', '11708101777700', 24, NULL, 151, 36923, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:10:37', '2017-08-10 06:10:37'),
(17778, 1, 0, NULL, 1, 'Clear Anti-Dandruff Complete Active Care Shampoo 90ml', '11708101777800', 24, NULL, 151, 36924, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:11:54', '2017-08-10 06:11:54'),
(17779, 1, 0, NULL, 187, 'AVEON Nutricare Hairj Oil 100ml', '8906053740523', 24, NULL, 151, 36925, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:12:34', '2017-08-10 06:12:34'),
(17780, 1, 0, NULL, 197, 'Sewha Hi-Speedy Body Hair Remover 25g', '11708101778000', 24, NULL, 151, 36926, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:14:07', '2017-08-10 06:14:07'),
(17781, 1, 0, NULL, 115, 'Jui coconut oil combo 350ml', '8941100500491♪', 24, NULL, 151, 36927, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:14:20', '2017-08-10 06:14:20'),
(17782, 1, 0, NULL, 1, 'Clear Anti-Dandruff Soft & Shiny Shampoo 180ml', '11708101778200', 24, NULL, 151, 36928, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:15:20', '2017-08-10 06:15:20'),
(17783, 1, 0, NULL, 193, 'Elite Moisturising Hair Removal Cream (Soft Smooth) 25g', '11708101778300', 24, NULL, 151, 36929, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:15:37', '2017-08-10 06:15:37'),
(17784, 1, 0, NULL, 180, 'Dabur Vatika CO Combo300ml', '8901207096662♪', 24, NULL, 151, 36930, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:15:56', '2017-08-10 06:15:56'),
(17785, 1, 0, NULL, 187, 'AVEON Nutricare Hair Oil Almond Nutritive oils (Hair Damage ', '8906053740516', 24, NULL, 151, 36931, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:16:57', '2017-08-10 06:16:57'),
(17786, 1, 0, NULL, 115, 'Jui coconut oil combo 200ml', '8941100500484', 24, NULL, 151, 36932, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:17:38', '2017-08-10 06:17:38'),
(17787, 1, 0, NULL, 187, 'B<NAME>ola Olive Nourishing Hair Oil Root Revival & Natural', '8906034831271', 24, NULL, 151, 36933, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:17:57', '2017-08-10 06:17:57'),
(17788, 1, 0, NULL, 1, 'Clear Anti-Dandruff Complete Active Care Shampoo 90ml', '11708101778800', 24, NULL, 151, 36934, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:18:25', '2017-08-10 06:18:25'),
(17789, 1, 0, NULL, 187, 'B<NAME>ola Pure Amla Hair Oil 200ml', '8900090050317', 24, NULL, 151, 36935, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:18:42', '2017-08-10 06:18:42'),
(17790, 1, 0, NULL, 186, 'Tibet Pumpkin Hair Oil 200ml', '8513690351250', 24, NULL, 151, 36936, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:19:41', '2017-08-10 06:19:41'),
(17791, 1, 0, NULL, 1, 'Clear Anti-Dandruff Anti Hair Fall Shampoo 90ml', '11708101779100', 24, NULL, 151, 36937, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:20:18', '2017-08-10 06:20:18'),
(17792, 1, 0, NULL, 186, 'Tibet Pumpkin Hair Oil 100ml', '8513690304850', 24, NULL, 151, 36938, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:20:41', '2017-08-10 06:20:41'),
(17793, 1, 0, NULL, 49, 'Kumarika hair oil 200 ml', '4791111106953♪', 24, NULL, 151, 36939, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:22:01', '2017-08-10 06:22:01'),
(17794, 1, 0, NULL, 49, 'Kumarika Hair Oil 100ml', '4791111106946', 24, NULL, 151, 36940, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:22:16', '2017-08-10 06:22:16'),
(17795, 1, 0, NULL, 49, 'Kumarika hair fall control oil 200ml', '4791111106885♪', 24, NULL, 151, 36941, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:23:34', '2017-08-10 06:23:34'),
(17796, 1, 0, NULL, 1, 'Clear Men Anti-Dandruff Cool Sport Menthol Shampoo 180ml', '11708101779600', 24, NULL, 151, 36942, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:25:07', '2017-08-10 06:25:07'),
(17797, 1, 0, NULL, 180, 'Dabur Amla hair oil 450ml', '8901207019029♪', 24, NULL, 151, 36943, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:27:59', '2017-08-10 06:27:59'),
(17798, 1, 0, NULL, 180, 'Dabur Amla 180ml', '8901207019005♪', 24, NULL, 151, 36944, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:28:45', '2017-08-10 06:28:45'),
(17799, 1, 0, NULL, 202, 'Himtaj oil 200ml', '11708101779900', 24, NULL, 151, 36945, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:29:06', '2017-08-10 06:29:06'),
(17800, 1, 0, NULL, 202, 'Himtaj Oil 300ml', '11708101780000', 24, NULL, 151, 36946, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:29:43', '2017-08-10 06:29:43'),
(17802, 1, 0, NULL, 130, 'Cute herbal hair tonic 330ml', '088021511248♪', 24, NULL, 151, 36947, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:30:19', '2017-08-10 06:30:19'),
(17804, 1, 0, NULL, 115, 'Jui Haircare Oil Hair Fall Control 200ml', '8941100501122', 24, NULL, 151, 36948, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:30:46', '2017-08-10 06:30:46'),
(17805, 1, 0, NULL, 1, 'Sunsilk Co-Creations Hairfall Solution Shampoo 90ml', '8941100618813', 24, NULL, 151, 36949, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:32:02', '2017-08-10 06:32:02'),
(17806, 1, 0, NULL, 115, 'Jui Haircare Oil Hair Fall Control 100ml', '11708101780600', 24, NULL, 151, 36950, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:32:05', '2017-08-10 06:32:05'),
(17807, 1, 0, NULL, 130, 'Cute herbal hair tonic 160ml', '088021511255♪', 24, NULL, 151, 36951, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:33:04', '2017-08-10 06:33:04'),
(17808, 1, 0, NULL, 1, 'Sunsilk Co-Creations Stunning Black Shine Shampoo 90ml', '11708101780800', 24, NULL, 151, 36952, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:33:43', '2017-08-10 06:33:43'),
(17809, 1, 0, NULL, 180, '<NAME> Enriched Coconut Hair Oil 75ml', '11708101780900', 24, NULL, 151, 36953, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:34:55', '2017-08-10 06:34:55'),
(17810, 1, 0, NULL, 115, 'Jui coconut oil 100ml', '8941100500477♪', 24, NULL, 151, 36954, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:35:32', '2017-08-10 06:35:32'),
(17811, 1, 0, NULL, 180, '<NAME> 180ml', '8901207019326', 24, NULL, 151, 36955, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:35:48', '2017-08-10 06:35:48'),
(17812, 1, 0, NULL, 1, 'Dove Hair Therapy Intense Repair Shampoo 180ml', '11708101781200', 24, NULL, 151, 36956, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:36:01', '2017-08-10 06:36:01'),
(17813, 1, 0, NULL, 180, '<NAME> 275ml', '8901207019333', 24, NULL, 151, 36957, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:36:44', '2017-08-10 06:36:44'),
(17814, 1, 0, NULL, 187, 'Bajaj veola badami hair & Body oil200ml', '8900090306216♪', 24, NULL, 151, 36958, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:37:56', '2017-08-10 06:37:56'),
(17815, 1, 0, NULL, 1, 'Dove Nutritive Solutions New Oxygen Moisture Shampoo 180ml', '11708101781500', 24, NULL, 151, 36959, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:39:19', '2017-08-10 06:39:19'),
(17816, 1, 0, NULL, 49, 'Kumarika hair fall control oil 50ml', '11708101781600', 24, NULL, 151, 36960, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:39:27', '2017-08-10 06:39:27'),
(17818, 1, 0, NULL, 180, '<NAME> 90ml', '11708101781800', 24, NULL, 151, 36961, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:39:47', '2017-08-10 06:39:47'),
(17819, 1, 0, NULL, 1, 'Dove Hair Therapy Intense Repair Shampoo 80ml', '11708101781900', 24, NULL, 151, 36962, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:40:37', '2017-08-10 06:40:37'),
(17820, 1, 0, NULL, 49, 'Kumarika hair fall control oil 100ml', '4791111106878', 24, NULL, 151, 36963, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:40:49', '2017-08-10 06:40:49'),
(17821, 1, 0, NULL, 49, 'Kumarika Hair Oil (Hair Fall Control) 415ml', '11708101782100', 24, NULL, 151, 36964, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:41:48', '2017-08-10 06:41:48'),
(17822, 1, 0, NULL, 180, 'Dabur hair oil combo 180ml ', '8901207019005', 24, NULL, 151, 36965, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:42:00', '2017-08-10 06:42:00'),
(17823, 1, 0, NULL, 1, 'Dove Hair Therapy Nourishing Oil Care Shampoo 180ml', '11708101782300', 24, NULL, 151, 36966, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:43:03', '2017-08-10 06:43:03'),
(17824, 1, 0, NULL, 49, 'Kumarika Hair Oil (Dandrauff Control & Lemon & Methi) 200ml', '11708101782400', 24, NULL, 151, 36967, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:43:09', '2017-08-10 06:43:09'),
(17825, 1, 0, NULL, 130, 'Cute Amla Hair Oil 110ml', '088021511286', 24, NULL, 151, 36968, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:43:49', '2017-08-10 06:43:49'),
(17826, 1, 0, NULL, 180, 'Dabur amla hair oil 90ml', '89006825', 24, NULL, 151, 36969, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:43:49', '2017-08-10 06:43:49'),
(17827, 1, 0, NULL, 180, 'Dabur Amla hair oil 45ml', '89006818', 24, NULL, 151, 36970, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:45:00', '2017-08-10 06:45:00'),
(17828, 1, 0, NULL, 180, 'Dabur Vatika Enriched Coconut Hair Oil 150ml', '8901207029691', 24, NULL, 151, 36971, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:45:28', '2017-08-10 06:45:28'),
(17829, 1, 0, NULL, 49, 'Kumarika splint End control hair oil 200ml', '4791111106236♪', 24, NULL, 151, 36972, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:46:43', '2017-08-10 06:46:43'),
(17830, 1, 0, 388, 198, 'Pantene Pro V Hair Fall Control Shampoo 170ml', '4902430400886', 24, NULL, 151, 36973, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:47:01', '2017-08-10 06:57:04'),
(17831, 1, 0, 388, 198, 'Pantene Pro V Hair Fall Control Shampoo 70ml', '4902430401142', 24, NULL, 151, 36974, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:48:50', '2017-08-10 06:56:19'),
(17832, 1, 0, NULL, 198, 'Pantene Pro V Conditioner Silky Smooth Care 75ml', '4902430400640', 24, NULL, 151, 36975, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 06:53:40', '2017-08-10 06:53:40'),
(17833, 1, 0, NULL, 180, 'Dabur Vatika Black Olive & Almond Shampoo 100ml', '11708101783300', 24, NULL, 151, 36976, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:00:02', '2017-08-10 07:00:02'),
(17834, 1, 0, NULL, 115, 'Revive Enhance And Repair Milk For Hair Shampoo 100ml', '8941100501429', 24, NULL, 151, 36977, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:02:42', '2017-08-10 07:02:42'),
(17835, 1, 0, NULL, 187, 'Aveon Hair Serum Super Shining Hair 50ml', '11708101783500', 24, NULL, 151, 36978, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:06:40', '2017-08-10 07:06:40'),
(17836, 1, 0, 388, 2, 'Neo Care Baby Diaper 30 pcs XL', '1403020424303', 25, NULL, 152, 36979, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:12:58', '2017-08-10 07:30:27'),
(17837, 1, 0, 388, 2, 'Neo Care Baby Diaper 25 pcs Large ', '1403020412256', 25, NULL, 152, 36980, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:14:36', '2017-08-10 07:31:17'),
(17838, 1, 0, 388, 2, 'Neo Care Baby Diaper 25 pcs (Medium 4-9 kg)', '1403020413253', 25, NULL, 152, 36981, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:15:37', '2017-08-10 07:32:06'),
(17839, 1, 0, NULL, 49, 'Himalaya Herbals Moisturizing Aloe Vera Prevents Drying Face', '8901138505530', 24, NULL, 151, 36982, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:18:30', '2017-08-10 07:18:30'),
(17840, 1, 0, NULL, 49, 'Himalaya Herbals Fairness Kesar Instant Glow Face Wash 100ml', '8901138819668', 24, NULL, 151, 36983, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:21:53', '2017-08-10 07:21:53'),
(17841, 1, 0, 388, 2, 'Neocare baby diaper 50pcs(large)', '1403020412508', 25, NULL, 152, 36984, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:24:18', '2017-08-10 07:28:59'),
(17842, 1, 0, NULL, 49, 'Himalaya Herbals Purifying Neem Pack Normal to Oil Skin Face', '11708101784200', 24, NULL, 151, 36985, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:24:58', '2017-08-10 07:24:58'),
(17843, 1, 0, 388, 2, 'Neo Care Baby Diaper 50pcs XL', '1403020424501', 25, NULL, 152, 36986, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:25:55', '2017-08-10 07:29:33'),
(17844, 1, 0, NULL, 49, 'Himalaya Herbals Purifying Neem Prevents Pimples Face Wash 5', '8908008142017', 24, NULL, 151, 36987, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:27:51', '2017-08-10 07:27:51'),
(17846, 1, 0, NULL, 2, 'Neocare baby diaper 50pcs(Xl)', '1403020424501♪', 25, NULL, 152, 36988, 0, 0, 0, '', 0, 0, 1, 1, '2017-08-10 07:30:31', '2017-08-10 07:30:31'),
(17847, 1, 0, NULL, 49, 'Himalaya Herbals Pimple Clear Neem Face Wash 50ml', '8901138835323', 24, NULL, 151, 36989, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:35:15', '2017-08-10 07:35:15'),
(17848, 1, 0, NULL, 2, 'Neocare baby diaper 32pcs(s)', '1403020419323♪', 25, NULL, 152, 36990, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:35:35', '2017-08-10 07:35:35'),
(17849, 1, 0, 388, 2, 'Neo Care Baby Diaper 25 pcs XL', '1403020424259', 25, NULL, 152, 36991, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:36:39', '2017-08-10 07:37:43'),
(17850, 1, 0, NULL, 193, 'Elite Hair Removal Cream', '11708101785000', 24, NULL, 151, 36992, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:39:02', '2017-08-10 07:39:02'),
(17851, 1, 0, NULL, 2, 'Neo Care Baby Diaper 4 pcs XL', '1403020424044', 25, NULL, 152, 36993, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:40:49', '2017-08-10 07:40:49'),
(17852, 1, 0, 388, 49, 'Kumarika Oil Control Face Wash 50gm', '4791111106977', 24, NULL, 151, 36994, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:41:06', '2017-08-10 07:50:35'),
(17853, 1, 0, NULL, 2, 'Neocare baby diaper 10pcs (XL)', '1403020424105♪', 25, NULL, 152, 36995, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:41:14', '2017-08-10 07:41:14'),
(17854, 1, 0, NULL, 194, 'Everyouth Fruit Face Wash 50gm', '8901120146819', 24, NULL, NULL, 36996, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:42:03', '2017-08-10 07:42:03'),
(17855, 1, 0, NULL, 2, 'Neocare baby diaper 25pcs (XL)', '1403020424259♪', 25, NULL, 152, 36997, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:42:42', '2017-08-10 07:42:42'),
(17856, 1, 0, NULL, 194, 'Everyouth Neem Face Wash 50gm', '8901120143528', 24, NULL, 151, 36998, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:44:13', '2017-08-10 07:44:13'),
(17857, 1, 0, NULL, 1, 'Fair & Lovely Face Wash 100gm', '8941100651544', 24, NULL, 151, 36999, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:45:16', '2017-08-10 07:45:16'),
(17858, 1, 0, NULL, 1, 'Pond\'s Daily Face Wash 60gm', '8941100651162', 24, NULL, 151, 37000, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:46:26', '2017-08-10 07:46:26'),
(17859, 1, 0, 388, 49, 'Kumarika Pimple Control Face Wash 100gm', '4791111106021', 24, NULL, 151, 37001, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:47:32', '2017-08-10 07:51:11'),
(17860, 1, 0, NULL, 2, 'Neo Care Baby Diaper 10 pcs Medium', '1403020413109', 25, NULL, 152, 37002, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:48:12', '2017-08-10 07:48:12'),
(17861, 1, 0, NULL, 2, 'Neocare baby diaper 4pcs(M)', '1403020413048♪', 25, NULL, 152, 37003, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:48:12', '2017-08-10 07:48:12'),
(17862, 1, 0, 388, 187, 'Aveon Neem Tulsi Face Wash 60ml', '8906053740233', 24, NULL, 151, 37004, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:48:35', '2017-08-10 08:31:52'),
(17863, 1, 0, NULL, 2, 'Neocd', '11708101786300', 25, NULL, 152, 37005, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:48:47', '2017-08-10 07:48:47'),
(17864, 1, 0, NULL, 2, 'Neo Care Baby Diaper 4pcs Small', '1403020419040', 25, NULL, 152, 37006, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:49:25', '2017-08-10 07:49:25'),
(17865, 1, 0, NULL, 2, 'Neocare baby diaper 10pcs(L)', '1403020412102♪', 25, NULL, 152, 37007, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:49:53', '2017-08-10 07:49:53'),
(17866, 1, 0, NULL, 49, 'Kumarika Pimple Control Face Wash 50gm', '4791111106991', 24, NULL, 151, 37008, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:51:53', '2017-08-10 07:51:53'),
(17867, 1, 0, NULL, 6, 'Huggies Wonder pants 20pcs(S)', '8904009616717♪', 25, NULL, 152, 37009, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:52:30', '2017-08-10 07:52:30'),
(17868, 1, 0, NULL, 6, 'Huggies Wonder Pants 20pcs S', '11708101786800', 25, NULL, 152, 37010, 0, 0, 0, '', 0, 0, 1, 1, '2017-08-10 07:52:38', '2017-08-10 07:52:38'),
(17869, 1, 0, NULL, 115, 'Revive Brightening Face Wash 100ml', '8941100501801', 24, NULL, 151, 37011, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:52:55', '2017-08-10 07:52:55'),
(17870, 1, 0, NULL, 194, 'Everyouth Lemon Face Wash 100gm', '8901120141227', 24, NULL, 151, 37012, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:53:54', '2017-08-10 07:53:54'),
(17871, 1, 0, NULL, 6, 'Huggies wonder pants .42pcs(S)', '8904009616724', 25, NULL, 152, 37013, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:54:38', '2017-08-10 07:54:38'),
(17872, 2, 0, NULL, 191, 'Sun Block SPF-45 150ml', '754604755315', 24, NULL, 151, 37014, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:55:15', '2017-08-10 07:55:15'),
(17873, 1, 0, NULL, 6, 'Huggies Wonder Pants 28 pcs XL', '8904009616748', 25, NULL, 152, 37015, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:55:30', '2017-08-10 07:55:30'),
(17874, 1, 0, NULL, 6, 'Huggies Wonder pants 32pcs(L)', '8904009616663♪', 25, NULL, 152, 37016, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:55:51', '2017-08-10 07:55:51'),
(17875, 1, 0, NULL, 6, 'Huggies Wonder Pants 16pcs XL', '8904009616731', 25, NULL, 152, 37017, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:56:46', '2017-08-10 07:56:46'),
(17876, 1, 0, NULL, 189, 'Whitening Face Wash Milk Extract 100ml', '8857101125703', 24, NULL, 151, 37018, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:56:47', '2017-08-10 07:56:47'),
(17877, 1, 0, NULL, 6, 'Huggies Wonder pants 38pcs(M)', '8904009616601♪', 25, NULL, 152, 37019, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:57:19', '2017-08-10 07:57:19'),
(17878, 1, 0, NULL, 199, 'Acnes Pure White Face Wash 50gm', '8935006101067', 24, NULL, 151, 37020, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:57:50', '2017-08-10 07:57:50'),
(17879, 1, 0, NULL, 6, 'Huggies Wonder Pants 16pcs L', '8904009616656', 25, NULL, 152, 37021, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:58:05', '2017-08-10 07:58:05'),
(17880, 1, 0, NULL, 6, 'Huggies Wonder pants 5pcs(M)', '8904009616571♪', 25, NULL, 152, 37022, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:58:36', '2017-08-10 07:58:36'),
(17881, 1, 0, NULL, 195, 'Papaya Soft Face Wash 100ml', '4792054005259', 24, NULL, 151, 37023, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 07:59:50', '2017-08-10 07:59:50'),
(17882, 1, 0, NULL, 6, 'Huggies Wonder Pants 18pcs(M)', '8904009616618♪', 25, NULL, 152, 37024, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:00:13', '2017-08-10 08:00:13'),
(17883, 1, 0, NULL, 195, 'Cucumber Facial Wash 100ml', '4792054005204', 24, NULL, 151, 37025, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:05:10', '2017-08-10 08:05:10'),
(17884, 1, 0, NULL, 199, 'Oxy Deep Wash 100gm', '8935006101371', 24, NULL, 151, 37026, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:06:38', '2017-08-10 08:06:38'),
(17885, 1, 0, NULL, 199, 'Oxy Whitening Wash 100gm', '8935006101418', 24, NULL, 151, 37027, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:08:23', '2017-08-10 08:08:23'),
(17886, 1, 0, 388, 6, 'Huggies Wonder Pants 5pcs L', '8904009616632', 25, NULL, 152, 37028, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:09:32', '2017-08-10 08:10:21'),
(17887, 1, 0, NULL, 176, 'Nivea Men Oli Control Face Wash 100gm', '4005808532988', 24, NULL, 151, 37029, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:10:16', '2017-08-10 08:10:16'),
(17888, 1, 0, NULL, 1, 'Dove Beauty Moisture Facial Cleanser 100gm', '8901030592928', 24, NULL, 151, 37030, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:12:33', '2017-08-10 08:12:33'),
(17889, 1, 0, NULL, 42, 'Garnier Men Oil Clear Face Wash 100gm', '8901526205561', 24, NULL, 151, 37031, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:13:53', '2017-08-10 08:13:53'),
(17890, 1, 0, 388, 83, 'Savlon Twinkle Baby Diaper 24pcs XL', '8139003002154', 25, NULL, 152, 37032, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:15:03', '2017-08-10 08:15:19'),
(17891, 1, 0, NULL, 191, 'Dark Sport Cream 150ml', '754604755438', 24, NULL, 151, 37033, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:15:17', '2017-08-10 08:15:17'),
(17892, 1, 0, NULL, 83, 'Twinkle baby diaper 4pcs(L)', '8139003002130♪', 25, NULL, 152, 37034, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:15:31', '2017-08-10 08:15:31'),
(17893, 1, 0, NULL, 83, 'Savlon Twinkle Baby Diaper 5pcs S', '8139003002093', 25, NULL, 152, 37035, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:16:14', '2017-08-10 08:16:14'),
(17894, 1, 0, NULL, 199, 'Acnes Pure White Face Wash 100gm', '8935006101074', 24, NULL, 151, 37036, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:17:19', '2017-08-10 08:17:19'),
(17895, 1, 0, NULL, 83, 'Twinkle Baby diaper 26pcs(L)', '8139003002147♪', 25, NULL, 152, 37037, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:18:00', '2017-08-10 08:18:00'),
(17896, 1, 0, NULL, 83, 'Savlon Twinkle Baby Diaper 4pcs M', '8139003002116', 25, NULL, 152, 37038, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:18:08', '2017-08-10 08:18:08'),
(17897, 1, 0, NULL, 42, 'Garnier Men White Complete Face Wash 100gm', '8901526204236', 24, NULL, 151, 37039, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:18:28', '2017-08-10 08:18:28'),
(17898, 1, 0, NULL, 83, 'Savlon Twinkle Baby Diaper 28pcs M', '8139003002123', 25, NULL, 152, 37040, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:19:00', '2017-08-10 08:19:00'),
(17899, 1, 0, NULL, 83, 'Twinkle Baby diaper 30pcs(S)', '8139003002109♪', 25, NULL, 152, 37041, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:19:22', '2017-08-10 08:19:22'),
(17900, 1, 0, NULL, 194, 'Everyouth Golden Glow Peel-Off Mask 90gm', '8901548147207', 24, NULL, 151, 37042, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:20:34', '2017-08-10 08:20:34'),
(17901, 1, 0, NULL, 83, 'Savlon Baby wipes80s ', '8139003001706♪', 25, NULL, 152, 37043, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:21:31', '2017-08-10 08:21:31'),
(17902, 1, 0, NULL, 1, 'Pond\'s White Beauty 100gm', '8851932179614', 24, NULL, 151, 37044, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:21:38', '2017-08-10 08:21:38'),
(17903, 1, 0, NULL, 199, 'Acnes Creamy Wash 100gm', '8935006100428', 24, NULL, 151, 37045, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:24:15', '2017-08-10 08:24:15'),
(17904, 1, 0, NULL, 189, 'Whitening Facial Scrub 175ml', '8857101126106', 24, NULL, 151, 37046, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:25:21', '2017-08-10 08:25:21'),
(17905, 1, 0, NULL, NULL, 'Angeur Baby wet Tissue 80 OH', '8809340490852', 25, NULL, 152, 37047, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:25:25', '2017-08-10 08:25:25'),
(17906, 1, 0, NULL, 1, 'Dove Beauty Moisture Facial Cleanser 50gm', '8901030592911', 24, NULL, 151, 37048, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:26:02', '2017-08-10 08:26:02'),
(17907, 1, 0, NULL, 176, 'Nivea Men Dark Spot Reduction Face Wash 100gm', '4005808933099', 24, NULL, 151, 37049, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:27:29', '2017-08-10 08:27:29'),
(17908, 1, 0, 388, 187, 'Aveon Aqua Sea Face Wash 60ml', '8906053740196', 24, NULL, 151, 37050, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:29:15', '2017-08-10 08:31:06'),
(17909, 1, 0, NULL, 200, 'Jhonsons baby wipes 150 sheet', '11708101790900', 25, NULL, 152, 37051, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:32:57', '2017-08-10 08:32:57'),
(17910, 1, 0, NULL, 189, 'Whitening Face Wash Clay Extract 100ml', '8857101157155', 24, NULL, 151, 37052, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:34:29', '2017-08-10 08:34:29'),
(17911, 1, 0, NULL, 200, 'Johnson\'s Baby Wipes 220 Sheet ', '11708101791100', 25, NULL, 152, 37053, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:34:57', '2017-08-10 08:34:57'),
(17912, 1, 0, NULL, 6, 'Freshy Baby wet wipes 150sheets', '11708101791200', 25, NULL, 152, 37054, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:36:22', '2017-08-10 08:36:22'),
(17914, NULL, 0, NULL, 200, 'Johnson\'s Baby Wipes 90 Sheet', '1708101791400', 25, NULL, 152, 37055, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:36:32', '2017-08-10 08:36:32'),
(17915, 1, 0, NULL, 176, 'Nivea Extra White Repair 100gm', '4005808867264', 24, NULL, 151, 37056, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:37:57', '2017-08-10 08:37:57'),
(17916, 1, 0, NULL, 199, 'Oxy Active Wash 50gm', '8935006100138', 24, NULL, 151, 37057, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:39:41', '2017-08-10 08:39:41'),
(17917, 1, 0, NULL, 194, 'Everyouth Walnut Scrub 50gm', '8901120141012', 24, NULL, 151, 37058, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:40:59', '2017-08-10 08:40:59'),
(17918, 1, 0, NULL, 1, 'Pond\'s Daily Face Wash 100gm', '8941100651148', 24, NULL, 151, 37059, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:43:07', '2017-08-10 08:43:07'),
(17919, 1, 0, NULL, 190, 'Deep Clean Facial Cleanser 100gm', '070501060971', 24, NULL, 151, 37060, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:44:05', '2017-08-10 08:44:05'),
(17920, 1, 0, NULL, 1, 'Pond\'s Nourishing Facial Scrub 100gm', '8941100651179', 24, NULL, 151, 37061, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:45:13', '2017-08-10 08:45:13'),
(17921, 1, 0, NULL, 42, 'Garnier White Complete Fairness Face Wash 50gm', '8901526204229', 24, NULL, 151, 37062, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:48:43', '2017-08-10 08:48:43'),
(17922, 1, 0, NULL, 190, 'Oil Free Acne Wash 80ml', '070501038604', 24, NULL, 151, 37063, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:51:12', '2017-08-10 08:51:12'),
(17923, 1, 0, NULL, 194, 'Everyouth Golden glow Peel-Off Mask 50gm', '8901548147191', 24, NULL, 151, 37064, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:52:45', '2017-08-10 08:52:45'),
(17924, 1, 0, NULL, 42, 'Gernier Men Power White Face Wash 50gm', '8901526204304', 24, NULL, 151, 37065, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:53:31', '2017-08-10 08:53:31'),
(17925, 1, 0, NULL, 204, 'Clean & Clear Foaming Face Wash 100ml', '8901012182185', 24, NULL, 151, 37066, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:55:46', '2017-08-10 08:55:46'),
(17926, 1, 0, NULL, 204, 'Clean & Clear Foaming Face Wash 50gm', '8901012182178', 24, NULL, 151, 37067, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:56:22', '2017-08-10 08:56:22'),
(17927, 1, 0, NULL, 203, 'Nestle Nido Fortified 900gm', '8941100290293', 26, NULL, 153, 37068, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:57:03', '2017-08-10 08:57:03'),
(17928, 1, 0, NULL, 1, 'Pond\'s White Beauty 50gm', '8851932179591', 24, NULL, 151, 37069, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:57:06', '2017-08-10 08:57:06'),
(17929, 1, 0, NULL, 203, 'Nestle Nido fortigrow 350gm', '8941100292907', 26, NULL, 153, 37070, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:57:27', '2017-08-10 08:57:27'),
(17930, 1, 0, NULL, 42, 'Garnier Men Acno Fight Face Wash 100gm', '8901526209637', 24, NULL, 151, 37071, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:57:59', '2017-08-10 08:57:59'),
(17931, 1, 0, NULL, 203, 'Nestle Nido 3+ Smartgrowth 350gm', '8941100292952♪', 26, NULL, 153, 38924, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 08:59:10', '2017-08-10 08:59:10'),
(17932, 1, 0, NULL, 42, 'Pedia Sure Vvanilla Delight Flavour 400gm', '8904145911080', 26, NULL, 153, 37073, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:00:18', '2017-08-10 09:00:18'),
(17933, 1, 0, NULL, 42, 'Pedia Sure vanilla delight 1kg', '8904145911097♪', 26, NULL, 153, 37074, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:00:35', '2017-08-10 09:00:35'),
(17934, 1, 0, NULL, 203, 'Nestle Koko Krunch 330gm', '4800361000239♪', 26, NULL, 153, 37075, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:02:01', '2017-08-10 09:02:01'),
(17935, 1, 0, NULL, 203, 'Nestle Cerelac Wheat & Honey 400gm', '8941100293492♪', 26, NULL, 153, 37076, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:03:54', '2017-08-10 09:03:54'),
(17936, 1, 0, NULL, 203, 'Nestle Corn Fiakes 275gm', '4800361005500', 26, NULL, 153, 37077, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:05:30', '2017-08-10 09:05:30'),
(17937, 1, 0, NULL, 107, 'Kolson Cocoa Crunch Chocolaty Delicious Breakfast 170gm', '4808647002120', 26, NULL, 153, 37078, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:06:28', '2017-08-10 09:06:28'),
(17938, 1, 0, NULL, 203, 'Nestle KokoKrunch 170gm', '4800361002851♪', 26, NULL, 153, 37079, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:07:53', '2017-08-10 09:07:53'),
(17939, 1, 0, NULL, 203, 'Nestle Lactogen 1 Gentle Start 400gm', '8901058850314', 26, NULL, 153, 37080, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:08:08', '2017-08-10 09:08:08'),
(17940, 1, 0, NULL, 203, 'Nestle Lactogen 3 Gentle Grow 400 gm', '8901058850352', 26, NULL, 153, 37081, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:08:56', '2017-08-10 09:08:56'),
(17941, 1, 0, NULL, 150, 'Mother Horlicks 350gm', '8941571002005', 27, NULL, 154, 37082, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:09:27', '2017-08-10 09:09:27'),
(17942, 1, 0, NULL, 203, 'Nestle Nan optipro1 400gm', '4800361370448', 26, NULL, 153, 37083, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:09:45', '2017-08-10 09:09:45'),
(17943, 1, 0, NULL, 203, 'Nestle Lactogen 2 Gentle Plus 400gm', '8901058143706', 26, NULL, 153, 37084, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:09:51', '2017-08-10 09:09:51'),
(17944, 1, 0, NULL, 203, 'Nestle Nan optipro2 400gm', '4800361375696♪', 26, NULL, 153, 37085, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:10:37', '2017-08-10 09:10:37'),
(17945, 1, 0, NULL, 150, 'Women\'s Horlicks Caramel Flavor 400gm', '8941571003286', 27, NULL, 154, 37086, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:10:38', '2017-08-10 09:10:38'),
(17947, 1, 0, NULL, 203, 'Nestle Nido FortiGrow 2.5kg', '8941100290507', 26, NULL, 153, 37087, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:11:47', '2017-08-10 09:11:47'),
(17948, 1, 0, NULL, 150, 'Horlicks Chocolete Flavor 400gm', '8941571000605', 27, NULL, 154, 37088, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:11:50', '2017-08-10 09:11:50'),
(17949, 1, 0, NULL, 107, 'Shezan Corn flakes 275gm', '8941170002086♪', 26, NULL, 153, 37089, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:11:52', '2017-08-10 09:11:52'),
(17950, 1, 0, NULL, 150, 'Horlicks Classic malt 550gm', '8940006100804', 27, NULL, 154, 37090, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:12:50', '2017-08-10 09:12:50'),
(17951, 1, 0, NULL, 107, 'Shezan Choko Crunch 170gm', '8941170002093♪', 26, NULL, 153, 37091, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:13:09', '2017-08-10 09:13:09'),
(17952, 1, 0, 388, 150, 'Junior Horlicks Orginal Flavor 400gm', '8941571000612', 27, NULL, 154, 37092, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:13:41', '2017-08-10 09:14:46'),
(17953, 1, 0, NULL, 203, 'Nestle Lactogen 1 Gentle Start 350gm', '8901058850307', 26, NULL, 153, 37093, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:14:09', '2017-08-10 09:14:09'),
(17954, 1, 0, NULL, 107, 'Sajeeb Mr.Chocoz 200gm', '8941170102045♪', 26, NULL, 153, 37094, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:14:25', '2017-08-10 09:14:25'),
(17956, 1, 0, NULL, 203, 'Nestle Lactogen 2 Gentle Plus 350gm', '8901058850321', 26, NULL, 153, 37095, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:14:57', '2017-08-10 09:14:57'),
(17957, 1, 0, NULL, 107, 'Sajeeb Corn Flakes 100gm', '8941170002017♪', 26, NULL, 153, 37096, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:15:34', '2017-08-10 09:15:34'),
(17958, 1, 0, NULL, 203, 'Nestle Lactogen 3 Gentle Grow 350gm', '8901058850345', 26, NULL, 153, 37097, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:15:36', '2017-08-10 09:15:36'),
(17959, 1, 0, NULL, 150, 'Lite Horlicks Regular Malt 330gm', '8941571029101', 27, NULL, 154, 37098, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:16:18', '2017-08-10 09:16:18'),
(17960, 1, 0, NULL, 107, 'Shezan Corn Flakes 150gm', '8941170002079♪', 26, NULL, 153, 37099, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:16:39', '2017-08-10 09:16:39'),
(17961, 1, 0, NULL, 150, 'Horlicks Classic Malt 1050gm', '8941571060548', 27, NULL, 154, 37100, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:17:03', '2017-08-10 09:17:03'),
(17962, 1, 0, NULL, 203, 'Nestle Cerelac Rice & Milk 400gm', '8941100293546', 26, NULL, 153, 37101, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:17:27', '2017-08-10 09:17:27'),
(17963, 1, 0, NULL, 150, 'Horlicks Classic Malt 200gm ', '8940006100798', 27, NULL, 154, 37102, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:17:48', '2017-08-10 09:17:48'),
(17964, 1, 0, NULL, 164, 'Nestle Cerelac Wheat with 3 fruits ', '8941100293454', 26, NULL, 153, 37103, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:18:17', '2017-08-10 09:18:17'),
(17965, 1, 0, NULL, 150, 'Horlicks Traditional 500gm', '5000347098376', 27, NULL, 154, 37104, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:18:30', '2017-08-10 09:18:30'),
(17966, 1, 0, NULL, 164, 'Nestle Nido 1+ Protection 350gm', '8941100292945♪', 26, NULL, 153, 37105, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:18:52', '2017-08-10 09:18:52'),
(17967, 1, 0, NULL, 164, 'Nestle Cerelac Wheat with Apple & Cornn Flakes 400gm', '8941100293461', 26, NULL, 153, 37106, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:19:06', '2017-08-10 09:19:06'),
(17968, 1, 0, NULL, 164, 'Nestle Cerelac Rice & Potato with Chicken 400gm', '8941100293485', 26, NULL, 153, 37107, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:20:11', '2017-08-10 09:20:11'),
(17969, 1, 0, NULL, 164, 'Nestle Cerelac Wheat & Milk 400gm', '8941100293508', 26, NULL, 153, 37108, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:20:50', '2017-08-10 09:20:50'),
(17970, 1, 0, NULL, 205, 'Bourn Vita 500gm', '8901233018331', 27, NULL, 154, 37109, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:26:01', '2017-08-10 09:26:01'),
(17971, 1, 0, NULL, 150, 'Glaxose-D 75gm', '11708101797100', 27, NULL, 154, 37110, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:26:40', '2017-08-10 09:26:40'),
(17972, 1, 0, NULL, 150, 'Glaxose-D (Glucose Powder) 200gm', '8941571004757', 27, NULL, 154, 37111, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:28:55', '2017-08-10 09:28:55'),
(17973, 1, 0, 388, NULL, 'Jasmine Green Tea 20 bags', '070177103071', 27, NULL, 154, 37112, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:29:15', '2017-08-10 09:33:20'),
(17974, 1, 0, NULL, 150, 'Glaxose-D (Glucse Powder) 400gm', '8941571004740', 27, NULL, 154, 37113, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:29:52', '2017-08-10 09:29:52'),
(17975, 1, 0, NULL, 206, 'Dano Milk Powder 200gm', '5760466987233♪', 28, NULL, 155, 37114, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:32:25', '2017-08-10 09:32:25'),
(17976, 1, 0, NULL, NULL, 'Danish Full Cream Milk Powder 500gm', '8941152010245', 28, NULL, 155, 37115, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:33:43', '2017-08-10 09:33:43'),
(17977, 1, 0, NULL, 141, 'Fresh Milk Powder 500gm', '8301100701050', 28, NULL, 155, 37116, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:34:30', '2017-08-10 09:34:30'),
(17978, 1, 0, NULL, 83, 'Tetlley Premium 100gm', '8941100150238', 27, NULL, 154, 37117, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:34:54', '2017-08-10 09:34:54'),
(17979, 1, 0, NULL, 206, 'Arla Dano Daily 1KG', '5711953052477', 28, NULL, 155, 37118, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:35:07', '2017-08-10 09:35:07'),
(17980, 1, 0, NULL, 141, 'Fresh Milk Powder 1kg', '8301100701067♪', 28, NULL, 155, 37119, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:35:48', '2017-08-10 09:35:48'),
(17981, 1, 0, NULL, 83, 'T<NAME> Tea Bags 50 pcs', '1215144151559', 27, NULL, 154, 37120, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:36:34', '2017-08-10 09:36:34'),
(17982, 1, 0, NULL, 74, '<NAME>\'s Mango 2.5KG', '5352101630958', 27, NULL, 154, 37121, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:36:49', '2017-08-10 09:36:49'),
(17983, 1, 0, NULL, 59, 'Aarong Dairy MIlk Powder 500gm', '8941101010807♪', 28, NULL, 155, 37122, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:37:25', '2017-08-10 09:37:25'),
(17984, 1, 0, NULL, 42, 'Glucon-D Instant Energy Nimbu Pani Flavour 400gm', '8901542013140', 27, NULL, 154, 37123, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:38:27', '2017-08-10 09:38:27'),
(17985, 1, 0, NULL, 141, 'Fresh Milk Powder 250gm', '8301100701036', 28, NULL, 155, 37124, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:38:50', '2017-08-10 09:38:50'),
(17986, 1, 0, NULL, 206, 'Arla Dano Full Cream Milk Powder 500gm', '5760466984201', 28, NULL, 155, 37125, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:39:34', '2017-08-10 09:39:34'),
(17987, 1, 0, 388, 124, 'Zareen Premium Tea 200gm', '8941100000502', 27, NULL, 154, 37126, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:39:46', '2017-08-10 09:59:54'),
(17988, 1, 0, NULL, 50, 'DIploma Milk Powder 200gm', '9415007013402', 28, NULL, 155, 37127, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:40:29', '2017-08-10 09:40:29'),
(17989, 1, 0, 388, 124, 'I<NAME> Black Tea 100gm', '8941100000229', 27, NULL, 154, 37128, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:40:38', '2017-08-10 10:00:13'),
(17990, 1, 0, NULL, 74, 'Foster Clark\'s Pineapple 225gm', '5352101064296', 27, NULL, 154, 37129, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:40:43', '2017-08-10 09:40:43'),
(17991, 1, 0, NULL, 141, 'Fresh insta Milk Powder 500gm', '8301100701098♪', 28, NULL, 155, 37130, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:41:46', '2017-08-10 09:41:46'),
(17992, 1, 0, 388, 124, 'Ispanani Mirzapore Black Tea 200gm', '8941100000236', 27, NULL, 154, 37131, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:41:47', '2017-08-10 10:00:33'),
(17993, 1, 0, NULL, 74, '<NAME>\'s Mango 500gm', '5352101395451', 27, NULL, 154, 37132, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:41:53', '2017-08-10 09:41:53'),
(17994, 1, 0, 388, 124, 'Ispahani Mirazapore Black Tea 400gm', '8941100000243', 27, NULL, 154, 37133, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:42:35', '2017-08-10 10:00:53'),
(17995, 1, 0, NULL, 50, 'Faemland Gold MIlk Powder 500gm', '94115007010968', 28, NULL, 155, 37134, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:43:23', '2017-08-10 09:43:23'),
(17996, 1, 0, NULL, 42, 'Glucon-D Instant Energy Tangy Orange Flavour 400gm', '8901542013010', 27, NULL, 154, 37135, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:43:32', '2017-08-10 09:43:32'),
(17997, 1, 0, 388, 124, 'Ispahani Blender\'s Choice Green Tea 25 Pcs', '89411100000242', 27, NULL, 154, 37136, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:44:12', '2017-08-10 10:01:12'),
(17998, 1, 0, NULL, 74, 'Foster Clark\'s Orange 225gm', '5352101300332', 27, NULL, 154, 37137, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:44:29', '2017-08-10 09:44:29'),
(17999, 1, 0, NULL, 74, 'Foster Clark\'s Mango 225gm', '5352101458118', 27, NULL, 154, 37138, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:45:16', '2017-08-10 09:45:16'),
(18000, 1, 0, NULL, 59, 'Aarong Diary Milk Powder 25gm', '8941101010425', 28, NULL, 155, 37139, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:45:33', '2017-08-10 09:45:33'),
(18001, 1, 0, 388, 124, 'Ispahani Blender\'s Choice Black Tea 200gm ', '894100000246', 27, NULL, 154, 37140, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:46:19', '2017-08-10 10:01:33'),
(18002, 1, 0, NULL, 123, 'Nutri-C American Sweet Orange 150gm', '749921106315', 27, NULL, 154, 37141, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:46:50', '2017-08-10 09:46:50'),
(18003, 1, 0, NULL, 150, 'Maltova 400gm', '8941571000216', 27, NULL, 154, 37142, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:47:10', '2017-08-10 09:47:10'),
(18004, 1, 0, 388, 124, '<NAME> Tea Bags 50 Pcs', '8941100000564', 27, NULL, 154, 37143, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:48:06', '2017-08-10 10:01:55'),
(18005, 1, 0, NULL, 123, 'Nutri-C American Sweet Orange 250gm', '749921106322', 27, NULL, 154, 37144, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:48:08', '2017-08-10 09:48:08'),
(18006, 1, 0, NULL, 123, 'Nutri-C American Sweet Orange 350gm', '749921106339', 27, NULL, 154, 37145, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:49:02', '2017-08-10 09:49:02'),
(18007, 1, 0, NULL, 49, 'Tulsi Pati Dai Tulsi 30 Bags', '8941156004448', 27, NULL, 154, 37146, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:49:32', '2017-08-10 09:49:32'),
(18008, 1, 0, NULL, 74, 'Foster clarks Mandarin 2.5kg', '5352101038204♪', 27, NULL, 154, 37147, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:50:18', '2017-08-10 09:50:18'),
(18009, 1, 0, NULL, 49, 'Tulsi Pati Lemon Ginger 30 Bags', '8941156004455', 27, NULL, 154, 37148, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:50:21', '2017-08-10 09:50:21'),
(18010, 1, 0, NULL, 150, 'Horlicks Classic Moult 550gm', '8940006101191', 27, NULL, 154, 37149, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:51:00', '2017-08-10 09:51:00'),
(18011, 1, 0, NULL, 49, 'Green Tea 30 Bags', '8941156004479', 27, NULL, 154, 37150, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:51:36', '2017-08-10 09:51:36'),
(18012, 1, 0, NULL, 74, '<NAME> Mango drinks 2.5kg', '5352101630958♪', 27, NULL, 154, 37151, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:51:39', '2017-08-10 09:51:39'),
(18013, 1, 0, NULL, 150, 'Junior Horlicks Original Flavour 400gm', '8941571002180', 27, NULL, 154, 37152, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:51:43', '2017-08-10 09:51:43'),
(18014, 1, 0, NULL, 49, 'Masala Tea 30 Bags', '8941156004462', 27, NULL, 154, 37153, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:52:29', '2017-08-10 09:52:29'),
(18015, 1, 0, NULL, 187, 'Savory Mango Drink (PQ)400g', '8906037693715♪', 27, NULL, 154, 38921, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:53:06', '2017-08-10 09:53:06'),
(18016, 1, 0, NULL, 49, 'Tulsi Pati Green Tea 30 Bags', '8941156004431', 27, NULL, 154, 37155, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:53:08', '2017-08-10 09:53:08'),
(18017, 1, 0, NULL, 74, '<NAME>\'s Mango 450gm', '5352101037344', 27, NULL, 154, 37156, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:53:10', '2017-08-10 09:53:10'),
(18018, 1, 0, NULL, 49, 'Tulsi Pati Tea & Ginger 30 Bags', '8941156004424', 27, NULL, 154, 37157, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:53:56', '2017-08-10 09:53:56'),
(18019, 1, 0, NULL, 74, '<NAME>\'s Mango 750gm', '5352101671111', 27, NULL, 154, 37158, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:54:03', '2017-08-10 09:54:03'),
(18020, 1, 0, NULL, 150, 'Boost 400gm', '8941571000599♪', 27, NULL, 154, 37159, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:54:13', '2017-08-10 09:54:13'),
(18021, 1, 0, NULL, 1, 'Taaza 50 Tea Bags', '8941100610336', 27, NULL, 154, 37160, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:54:45', '2017-08-10 09:54:45'),
(18022, 1, 0, NULL, 74, 'Foster Clark\'s Pineapple 450gm', '5352101501890', 27, NULL, 154, 37161, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:54:51', '2017-08-10 09:54:51'),
(18023, 1, 0, NULL, 123, 'Nutri-C Power Drink 350gm', '749921106292♪', 27, NULL, 154, 37162, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:55:37', '2017-08-10 09:55:37'),
(18024, 1, 0, NULL, 74, 'Foster Clark\'s Peach & Apricot 750gm', '5352101312793', 27, NULL, 154, 37163, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:55:38', '2017-08-10 09:55:38'),
(18025, 1, 0, NULL, 74, 'Foster Clark\'s 450gm', '5352101003639', 27, NULL, 154, 37164, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:56:11', '2017-08-10 09:56:11'),
(18026, 1, 0, 388, 124, 'Zareen Premium Tea 400 gm', '4627118225390', 27, NULL, 154, 37165, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:56:28', '2017-08-10 10:02:32'),
(18027, 1, 0, NULL, 74, '<NAME>\'s Valencia Orangee 750gm', '5352101018534', 27, NULL, 154, 37166, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:56:52', '2017-08-10 09:56:52'),
(18028, 1, 0, NULL, 187, 'Savory Orange Drink 750gm', '8906037690370♪', 27, NULL, 154, 37167, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:57:01', '2017-08-10 09:57:01'),
(18030, 1, 0, 388, 124, 'I<NAME> Black Tea 500 gm', '8941100000298', 27, NULL, 154, 37168, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 09:57:51', '2017-08-10 10:02:51'),
(18031, 1, 0, NULL, 206, 'Arla Dano Full Cream Milk Powder 1KG', '5760466984188', 27, NULL, 154, 37169, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:01:02', '2017-08-10 10:01:02'),
(18032, 1, 0, NULL, 205, 'Nestle Coffee-mate 400gm', '8850124011053♪', 27, NULL, 154, 37170, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:02:15', '2017-08-10 10:02:15'),
(18033, 1, 0, NULL, 203, 'Nestle Every Day 500gm', '8941100293720', 27, NULL, 154, 37171, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:02:29', '2017-08-10 10:02:29'),
(18034, 1, 0, NULL, 205, 'Nescafe Classic 100g', '7891000071786♪', 27, NULL, 154, 37172, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:04:31', '2017-08-10 10:04:31'),
(18035, 1, 0, NULL, 205, 'Nestle Coffee mate 450gm', '8850124006103♪', 27, NULL, 154, 37173, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:05:34', '2017-08-10 10:05:34'),
(18038, 1, 0, 388, 205, 'Nescafe Classic 100gm', '7891000071809', 27, NULL, 154, 37174, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:05:39', '2017-08-10 10:06:29'),
(18039, 1, 0, NULL, 141, 'Fresh Premium Tea 400gm', '8301100801040', 27, NULL, 154, 37175, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:05:55', '2017-08-10 10:05:55'),
(18040, 1, 0, NULL, 141, 'Fresh Premium Tea 500gm', '8301100801026', 27, NULL, 154, 37176, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:06:38', '2017-08-10 10:06:38'),
(18041, 1, 0, NULL, 205, 'Nescafe Classic 200gm', '8901058841091', 27, NULL, 154, 37177, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:07:26', '2017-08-10 10:07:26'),
(18042, 1, 0, NULL, 205, 'Nescafe Gold 100gm', '4005500210108', 27, NULL, 154, 37178, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:07:31', '2017-08-10 10:07:31'),
(18043, 1, 0, NULL, 205, 'Nescafe original 200gm', '8992696406711', 27, NULL, 154, 37179, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:08:10', '2017-08-10 10:08:10'),
(18044, 1, 0, NULL, NULL, 'Blackberry Special Black Tea 500gm', '11708101804400', 27, NULL, 154, 37180, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:08:21', '2017-08-10 10:08:21'),
(18045, 1, 0, NULL, 205, 'Nescafe Gold 50gm', '7613033097096', 27, NULL, 154, 37181, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:08:53', '2017-08-10 10:08:53'),
(18047, 1, 0, 388, 197, 'Sugar Free Natura 80gm', '8901120146710', 27, NULL, 154, 37182, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:10:33', '2017-08-10 10:22:36'),
(18048, 1, 0, NULL, 50, 'Diploma Instant Full Cream Milk Powder 1KG', '9415007013396', 27, NULL, 154, 37183, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:10:42', '2017-08-10 10:10:42'),
(18049, 1, 0, NULL, 59, 'Aarong UHT Milk 500ml', '8941101010289', 27, NULL, 154, 37184, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:10:56', '2017-08-10 10:10:56'),
(18050, 1, 0, 388, 50, 'Diploma Instant Full Cream Milk Powder 400gm', '9415007013390', 27, NULL, 154, 37185, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:11:40', '2017-08-10 10:12:11'),
(18052, 1, 0, 388, 197, 'Sugar Free Gold 500 pellets', '8901120143733', 27, NULL, 154, 37186, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:12:01', '2017-08-10 10:22:55'),
(18053, 1, 0, NULL, 206, 'Dano MIlk Powder BIB 400gm', '5760466984164♪', 28, NULL, 155, 37187, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:12:42', '2017-08-10 10:12:42'),
(18054, 1, 0, 388, 197, 'Sugar Free Gold 110pellets', '8901120143726', 27, NULL, 154, 37188, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:13:00', '2017-08-10 10:23:32'),
(18055, 1, 0, NULL, 164, 'Nescafe Original 10 sticks', '8941100293584', 27, NULL, 154, 37189, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:13:30', '2017-08-10 10:13:30'),
(18056, NULL, 0, NULL, 50, 'Shape Up Nonfat Milk Powder BIB 100gm', '9415007512585♪', 28, NULL, 155, 37190, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:14:13', '2017-08-10 10:14:13'),
(18057, 1, 0, NULL, 115, 'Zero CAL 110 teblets', '8941100500118', 27, NULL, 154, 37191, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:14:15', '2017-08-10 10:14:15'),
(18059, 1, 0, 388, 197, 'Sugar Free Gold 100gm', '8901120143917', 27, NULL, 154, 37192, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:15:35', '2017-08-10 10:23:50'),
(18060, 1, 0, NULL, 50, 'Red Cow Milk Powder 400gm', '9415007012955♪', 28, NULL, 155, 37193, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:16:07', '2017-08-10 10:16:07'),
(18061, 1, 0, NULL, 107, 'Joy Mango Fruit Drink 125ml', '831730000158', 27, NULL, 154, 37194, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:16:24', '2017-08-10 10:16:24'),
(18062, 1, 0, NULL, 115, 'Zero CAL 25 sachets', '8941100500101', 27, NULL, 154, 37195, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:16:38', '2017-08-10 10:16:38'),
(18063, 1, 0, NULL, 123, '<NAME>', '11708101806300', 27, NULL, 154, 37196, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:17:29', '2017-08-10 10:17:29'),
(18064, 1, 0, NULL, 115, 'Zero CAL 80 sachets', '8941100500521', 27, NULL, 154, 37197, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:17:33', '2017-08-10 10:17:33'),
(18065, 1, 0, NULL, 107, 'Shezan Classic Mango Drinks 250ml', '8941170030140', 27, NULL, 154, 37198, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:19:01', '2017-08-10 10:19:01'),
(18066, 1, 0, NULL, 107, 'Shezan Mango Fruit Drinks 1000ml', '8941170030287', 27, NULL, 154, 37199, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:19:48', '2017-08-10 10:19:48'),
(18067, 1, 0, NULL, 107, 'Shezan School Mango Drinkis 225ml', '8941170030973', 27, NULL, 154, 37200, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:20:58', '2017-08-10 10:20:58'),
(18068, 1, 0, NULL, 115, 'Zero CAL 150 sachets', '8941100501450', 27, NULL, 154, 37201, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:21:07', '2017-08-10 10:21:07'),
(18069, 1, 0, NULL, 205, 'Canderel Delicious 40gm', '7640110700068♪', 27, NULL, 154, 37202, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:21:30', '2017-08-10 10:21:30'),
(18071, 1, 0, NULL, 107, 'Shezan Mango Fruit Drinks 500ml', '8941170030294', 27, NULL, 154, 37203, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:25:25', '2017-08-10 10:25:25'),
(18072, 1, 0, NULL, 107, 'Shezan Mango Fruit Drinks 250ml', '11708101807200', 27, NULL, 154, 37204, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:26:42', '2017-08-10 10:26:42'),
(18073, 1, 0, NULL, 205, 'Red Bull Energy Drinks ', '90415081♪', 27, NULL, 154, 37205, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:26:44', '2017-08-10 10:26:44'),
(18074, 1, 0, NULL, 205, 'Hajmola 50 tablets', '89004869', 27, NULL, 154, 37206, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:27:15', '2017-08-10 10:27:15'),
(18075, 1, 0, NULL, 107, 'Shezan Mango Fruit Drinks 125ml', '8941170031192', 27, NULL, 154, 37207, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:27:24', '2017-08-10 10:27:24'),
(18076, 1, 0, NULL, 180, '<NAME> 500gm', '8901888000682♪', 27, NULL, 154, 37208, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:27:40', '2017-08-10 10:27:40'),
(18077, 1, 0, NULL, 107, 'Poppin Orange Flavoured 250ml', '8941170031161', 27, NULL, 154, 37209, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:28:08', '2017-08-10 10:28:08'),
(18078, 1, 0, NULL, 180, '<NAME>', '8901207900839', 27, NULL, 154, 37210, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:28:16', '2017-08-10 10:28:16'),
(18079, 1, 0, NULL, 180, 'Hajmola IMLI', '8901207062865', 27, NULL, 154, 37211, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 10:28:44', '2017-08-10 10:28:44'),
(18080, 1, 0, NULL, 146, 'Olitalia Apple Juice 500ml', '8007150909902', 27, NULL, 154, 37212, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 22:42:11', '2017-08-10 22:42:11'),
(18081, 1, 0, NULL, 146, 'Olitalia Pomegranate Juice 500ml', '8007150909988', 27, NULL, 154, 37213, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 22:42:59', '2017-08-10 22:42:59'),
(18082, 1, 0, NULL, 208, 'Acme Classic Mango Drinks 1000 ml', '8802548555934♪', 27, NULL, 154, 37214, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 22:43:02', '2017-08-10 22:43:02'),
(18083, 1, 0, NULL, 54, 'Coca-Cola 250ml', '8907525000015', 27, NULL, 154, 37215, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 22:44:15', '2017-08-10 22:44:15'),
(18084, 1, 0, NULL, 54, 'Di<NAME>', '11708101808400', 27, NULL, 154, 37216, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 22:45:44', '2017-08-10 22:45:44'),
(18085, 1, 0, NULL, 208, 'Acme Litchi Flavored Drink 170 ml', '116091200011♪', 27, NULL, 154, 37217, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 22:46:06', '2017-08-10 22:46:06'),
(18086, 1, 0, NULL, 31, '<NAME>ats 500gm', '6294002403011', 27, NULL, 154, 37218, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 22:47:26', '2017-08-10 22:47:26'),
(18087, 1, 0, NULL, 208, 'Acme Orange Drinks 170ml', '11708101808700', 27, NULL, 154, 37219, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 22:48:10', '2017-08-10 22:48:10'),
(18088, NULL, 0, NULL, 203, 'Nestle Milo 400gm', '8888082117722', 27, NULL, 154, 37220, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 22:48:50', '2017-08-10 22:48:50'),
(18089, 1, 0, 388, 205, 'Big Power 250ml', '9555487701212', 27, NULL, 154, 37221, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 22:50:28', '2017-08-10 22:56:22'),
(18090, 1, 0, NULL, 42, 'ACT 2 Popcorn 70gm', '8901512541901', 27, NULL, 154, 37222, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 22:52:01', '2017-08-10 22:52:01'),
(18091, 1, 0, NULL, 54, 'Sprite 250ml', '8907525040011♪', 27, NULL, 154, 37223, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 22:53:02', '2017-08-10 22:53:02'),
(18092, 1, 0, NULL, 54, 'Fanta 250gm', '8907525020013', 27, NULL, 154, 37224, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 22:53:07', '2017-08-10 22:53:07'),
(18093, 1, 0, NULL, 205, '<NAME> Juice 240ml', '8801887702849', 27, NULL, 154, 37225, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 22:53:57', '2017-08-10 22:53:57'),
(18094, 1, 0, NULL, 208, 'Acme Classic Mango Drinks', '8133358131026♪', 27, NULL, 154, 37226, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 22:57:21', '2017-08-10 22:57:21'),
(18095, 1, 0, NULL, 9, 'Olympic Daily Toast 300gm', '811124422339', 31, NULL, 156, 37227, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:14:45', '2017-08-10 23:14:45'),
(18096, 1, 0, NULL, 181, 'Kishwan Sweet Toast 350gm', '8941114000802', 31, NULL, 156, 37228, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:18:38', '2017-08-10 23:18:38'),
(18097, 1, 0, NULL, 209, 'Pran Delight Toast Biscuit ', '846656019313♪', 31, NULL, 156, 37229, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:25:14', '2017-08-10 23:25:14'),
(18098, 1, 0, NULL, 52, 'Glob Sweet Toast 400gm', '8941128002199', 31, NULL, 156, 37230, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:25:19', '2017-08-10 23:25:19'),
(18099, 1, 0, NULL, 9, 'Olympic Digestive 125gm', '811113240173', 31, NULL, 156, 37231, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:26:35', '2017-08-10 23:26:35'),
(18100, 1, 0, NULL, 136, '<NAME>', '8941194002888♪', 31, NULL, 156, 37232, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:26:39', '2017-08-10 23:26:39'),
(18101, 1, 0, NULL, 181, '<NAME>s Biscuit 350gm', '8941114006057', 31, NULL, 156, 37233, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:27:45', '2017-08-10 23:27:45'),
(18102, 1, 0, NULL, 9, 'Olympic Namkin Biscuit 300gm', '811121208332', 31, NULL, 156, 37234, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:30:09', '2017-08-10 23:30:09'),
(18103, 1, 0, NULL, 210, 'Star Line Milk Marie', '8946000018152♪', 31, NULL, 156, 37235, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:30:55', '2017-08-10 23:30:55'),
(18104, 1, 0, NULL, 9, 'Olympic Lexus Biscuit 240gm', '811114250249', 31, NULL, 156, 37236, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:31:30', '2017-08-10 23:31:30'),
(18105, 1, 0, NULL, 9, 'Olympic HILUX Biscuit 240gm', '811105070245', 31, NULL, 156, 37237, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:32:46', '2017-08-10 23:32:46'),
(18106, 1, 0, NULL, 209, 'Pran Sweet Toast ', '846656003480♪', 31, NULL, 156, 37238, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:32:52', '2017-08-10 23:32:52'),
(18107, 1, 0, NULL, 9, 'Olympic Dry Cake 350gm', '811116290298', 31, NULL, 156, 37239, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:33:41', '2017-08-10 23:33:41'),
(18108, 1, 0, NULL, 9, 'Olympic Coconut Biscuit 250gm', '811106186334', 31, NULL, 156, 37240, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:34:27', '2017-08-10 23:34:27'),
(18109, 1, 0, NULL, 127, 'Romania Milk Marie', '186002000344♪', 31, NULL, 156, 37241, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:34:55', '2017-08-10 23:34:55'),
(18110, 1, 0, NULL, 9, 'Olympic Milk Marie Biscuit 285gm', '811108181276', 31, NULL, 156, 37242, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:35:29', '2017-08-10 23:35:29'),
(18111, 1, 0, NULL, 183, 'Dan Cake Dry Cake', '8946000009648♪', 31, NULL, 156, 37243, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:36:08', '2017-08-10 23:36:08'),
(18112, 1, 0, 388, 9, 'Olympic Twinkle Twinkle Orange 74gm', '811156099349', 31, NULL, 156, 37244, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:36:17', '2017-08-10 23:37:09'),
(18113, 1, 0, NULL, 210, 'Star Line Sweet Toast ', '8946000018329', 31, NULL, 156, 37245, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:38:03', '2017-08-10 23:38:03'),
(18114, 1, 0, NULL, 9, 'Olympic Twinkle Twinkle Strawberry 74gm', '811156088343', 31, NULL, 156, 37246, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:38:04', '2017-08-10 23:38:04'),
(18115, 1, 0, NULL, 9, 'Olympic Twinkle Twinkle Chocolate 74gm', '811156077347', 31, NULL, 156, 37247, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:38:46', '2017-08-10 23:38:46'),
(18116, 1, 0, NULL, 181, '<NAME> Biscuit 300gm', '8941114006118', 31, NULL, 156, 37248, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:39:28', '2017-08-10 23:39:28'),
(18117, 1, 0, NULL, 181, '<NAME> Cake 350gm', '8941114006064', 31, NULL, 156, 37249, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:40:09', '2017-08-10 23:40:09'),
(18118, 1, 0, NULL, 52, 'Globe Digestive Biscuit 163gm', '8941128001758', 31, NULL, 156, 37250, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:41:10', '2017-08-10 23:41:10'),
(18119, NULL, 0, NULL, 127, '<NAME> Biscuits 255gm', '186002001464', 31, NULL, 156, 37251, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:42:07', '2017-08-10 23:42:07'),
(18120, 1, 0, NULL, 127, '<NAME> 250gm', '186002001204', 31, NULL, 156, 37252, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:42:45', '2017-08-10 23:42:45'),
(18121, 1, 0, NULL, 211, 'Banoful Chocolate Biscuit', '8941114001137♪', 31, NULL, 156, 37253, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:43:30', '2017-08-10 23:43:30'),
(18122, 1, 0, NULL, 136, 'Haque Digestive Biscuit 150gm', '8941194003816', 31, NULL, 156, 37254, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:43:47', '2017-08-10 23:43:47'),
(18123, 1, 0, NULL, 136, 'Haque Chocolate Digestive Biscuit 145gm', '8941194003717', 31, NULL, 156, 37255, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:44:40', '2017-08-10 23:44:40'),
(18124, 1, 0, NULL, 210, 'Star Line Ovaltine Cookies Biscuit ', '832605000020♪', 31, NULL, 156, 37256, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:45:06', '2017-08-10 23:45:06'),
(18125, NULL, 0, NULL, 209, 'Tik Tok Biscuits 80gm', '841165110797', 31, NULL, 156, 37257, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:45:46', '2017-08-10 23:45:46'),
(18126, 1, 0, NULL, 131, 'Bd Food Toast Biscuit', '8850356900309♪', 31, NULL, 156, 37258, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:46:47', '2017-08-10 23:46:47'),
(18127, 1, 0, NULL, 181, 'Kishwan Special toast 300gm', '8941114006019', 31, NULL, 156, 37259, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:46:59', '2017-08-10 23:46:59'),
(18128, 1, 0, NULL, 181, 'Kishwan Ovaltine Biscuit 350gm', '8941114006095', 31, NULL, 156, 37260, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:47:42', '2017-08-10 23:47:42'),
(18129, 1, 0, NULL, 127, '<NAME>', '186002000283♪', 31, NULL, 156, 37261, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:48:01', '2017-08-10 23:48:01'),
(18130, 1, 0, NULL, 181, 'Kishwan Toast Biscuit 320gm', '8941114005890', 31, NULL, 156, 37262, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:48:17', '2017-08-10 23:48:17'),
(18131, 1, 0, NULL, 136, 'Haque Mr.Cookie', '8941194002536', 31, NULL, 156, 37263, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:48:55', '2017-08-10 23:48:55'),
(18132, 1, 0, NULL, 127, '<NAME>', '186002000443♪', 31, NULL, 156, 37264, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:49:06', '2017-08-10 23:49:06'),
(18133, 1, 0, NULL, NULL, 'Kishwan Butter Cookies Biscuit 245gm', '8941114006330', 31, NULL, 156, 37265, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:50:55', '2017-08-10 23:50:55'),
(18134, 1, 0, 388, 181, 'Kishwan Chocolate Cookies 265gm', '8941114006255', 31, NULL, 156, 37266, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:51:45', '2017-08-10 23:52:04'),
(18135, 1, 0, 388, 9, 'Olympic Nutty Biscuits 80gm', '811106134144', 31, NULL, 156, 37267, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:52:49', '2017-08-11 00:18:51'),
(18136, 1, 0, NULL, 210, 'Star Line Cookies Biscuit 260 gm', '8946000018220', 31, NULL, 156, 37268, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:52:59', '2017-08-10 23:52:59'),
(18137, 1, 0, NULL, 9, 'Olympic Jeera Biscuit 80gm', '811106145157', 31, NULL, 156, 37269, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:53:30', '2017-08-10 23:53:30'),
(18138, 1, 0, NULL, 209, 'Pran Dry Cake 160 gm', '846656018736♪', 31, NULL, 156, 37270, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:53:48', '2017-08-10 23:53:48'),
(18139, NULL, 0, NULL, 9, 'Olympic Dry Cake 160gm', '811116280190', 31, NULL, 156, 37271, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:54:13', '2017-08-10 23:54:13'),
(18140, 1, 0, NULL, 9, 'Olympic Choco Marie 285gm', '811104062272', 31, NULL, 156, 37272, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:54:54', '2017-08-10 23:54:54'),
(18141, 1, 0, NULL, 210, 'Star Line Special Toast 240 gm ', '8946000018251', 31, NULL, 156, 37273, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:55:12', '2017-08-10 23:55:12'),
(18142, 1, 0, NULL, 9, 'Olympic Black Cream Sandwich Biscuit 85gm', '811156352451', 31, NULL, 156, 37274, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:55:52', '2017-08-10 23:55:52'),
(18143, 1, 0, NULL, 9, 'Olympic Saltes Biscuit 50gm', '811119308112', 31, NULL, 156, 37275, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:56:34', '2017-08-10 23:56:34'),
(18144, 1, 0, NULL, 209, 'Pran Special Toast 350 gm', '831730006907♪', 31, NULL, 156, 37276, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:57:00', '2017-08-10 23:57:00'),
(18145, 1, 0, NULL, 136, 'Haque Fata Futty Biscuit 80gm', '8941194005018', 31, NULL, 156, 37277, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:58:19', '2017-08-10 23:58:19'),
(18146, 1, 0, NULL, 136, 'Haque Mr. Milk Biscuit 210gm', '8941194002970', 31, NULL, 156, 37278, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:58:58', '2017-08-10 23:58:58'),
(18147, 1, 0, NULL, 209, 'Pran Europa 80 gm', '846656006375♪', 31, NULL, 156, 37279, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:59:08', '2017-08-10 23:59:08'),
(18148, 1, 0, NULL, 209, 'Pran Orange 75 gm', '841165100057♪', 31, NULL, 156, 37280, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-10 23:59:55', '2017-08-10 23:59:55'),
(18149, 1, 0, NULL, 181, 'Kishwan Continental Cookies Biscuit 1010gm', '8941114006378', 31, NULL, 156, 37281, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:00:21', '2017-08-11 00:00:21'),
(18150, 1, 0, NULL, 127, 'Romania Elachi Cream Biscuit 200gm', '186002000269', 31, NULL, 156, 37282, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:01:11', '2017-08-11 00:01:11'),
(18151, 1, 0, NULL, 209, 'Star Line Dry Cake Biscuit 350 gm', '8946000018244♪', 31, NULL, 156, 37283, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:01:25', '2017-08-11 00:01:25'),
(18152, 1, 0, NULL, 9, 'Olympic Butter Bite Biscuit 250gm', '811117318281', 31, NULL, 156, 37284, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:02:06', '2017-08-11 00:02:06'),
(18153, 1, 0, NULL, 127, 'Romania Elachi Cream 200 gm', '186002000269♪', 31, NULL, 156, 37285, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:02:19', '2017-08-11 00:02:19'),
(18154, 1, 0, NULL, 136, 'H<NAME> Nutty Biscuits 80gm', '8941194004943', 31, NULL, 156, 37286, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:03:06', '2017-08-11 00:03:06'),
(18155, 1, 0, NULL, 211, 'Banoful Coconut Cookies 250 gm', '8941114001267♪', 31, NULL, 156, 37287, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:03:26', '2017-08-11 00:03:26'),
(18156, 1, 0, NULL, 210, 'Star Line Choconut Milk Biscuit 260gm', '8946000018213', 31, NULL, 156, 37288, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:04:02', '2017-08-11 00:04:02'),
(18157, 1, 0, NULL, 210, 'Star Line Dry Cake 160 gm', '8946000018039♪', 31, NULL, 156, 37289, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:04:41', '2017-08-11 00:04:41'),
(18158, 1, 0, NULL, 209, 'Champion Biscuit', '846656000571', 31, NULL, 156, 37290, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:04:59', '2017-08-11 00:04:59'),
(18159, 1, 0, NULL, 210, 'Star Line Butter Choice Biscuit 100gm', '8946000018077', 31, NULL, 156, 37291, 0, 0, 0, '\r\n', 1, 0, 1, 1, '2017-08-11 00:07:17', '2017-08-11 00:07:17'),
(18160, 1, 0, NULL, 9, 'Olympic Badami Cookies Biscuit 315gm', '811121019310', 31, NULL, 156, 37292, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:08:06', '2017-08-11 00:08:06'),
(18161, 1, 0, NULL, 209, 'All Time Rusk Biscuit 300 gm ', '841165111480♪', 31, NULL, 156, 37293, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:08:19', '2017-08-11 00:08:19'),
(18162, 1, 0, NULL, 209, 'Pran Delight Ghee Toast Biscuit 300gm', '841165104680', 31, NULL, 156, 37294, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:09:10', '2017-08-11 00:09:10'),
(18163, 1, 0, NULL, 131, 'Bd Butter Toast 300 gm', '8850356900705♪', 31, NULL, 156, 37295, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:09:32', '2017-08-11 00:09:32'),
(18164, 1, 0, NULL, 9, 'Olympic Tip Biscuit 70gm', '811102030136', 31, NULL, 156, 37296, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:11:06', '2017-08-11 00:11:06'),
(18165, 1, 0, NULL, 181, 'Kishwan Rio Cashew & Peanut Cookies 230gm', '8941114005883', 31, NULL, 156, 37297, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:12:12', '2017-08-11 00:12:12'),
(18166, 1, 0, NULL, 181, 'Kishwan Horlicks Biscuit 70gm', '8941114005869', 31, NULL, 156, 37298, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:13:44', '2017-08-11 00:13:44'),
(18167, 1, 0, NULL, 212, 'Roshmela Tea Toast ', '11708111816700', 31, NULL, 156, 37299, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:14:21', '2017-08-11 00:14:21'),
(18168, 1, 0, NULL, 181, 'Kishwan Fiore Butter Biscuit 300gm', '8941114005951', 31, NULL, 156, 37300, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:14:40', '2017-08-11 00:14:40'),
(18169, 1, 0, NULL, 136, 'Haque Choco Nutty Biscuits 250gm', '8941194004950', 31, NULL, 156, 37301, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:15:44', '2017-08-11 00:15:44'),
(18170, 1, 0, NULL, 136, 'Haque Fata Futty Biscuit 250gm', '8941194005025', 31, NULL, 156, 37302, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:16:30', '2017-08-11 00:16:30'),
(18171, 1, 0, NULL, 9, 'Olympic First Choice Biscuit 100gm', '811119318166', 31, NULL, 156, 37303, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:17:16', '2017-08-11 00:17:16'),
(18172, 1, 0, NULL, 127, 'Romania P\'NUT Cookies Biscuit 250 gm', '186002001303♪', 31, NULL, 156, 37304, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:17:32', '2017-08-11 00:17:32'),
(18173, 1, 0, NULL, 9, 'Olympic Nutty Biscuits 250gm', '811106154333', 31, NULL, 156, 37305, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:18:28', '2017-08-11 00:18:28'),
(18174, 1, 0, NULL, 9, 'Olympic Dry Cake 40gm', '811116240101', 31, NULL, 156, 37306, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:19:29', '2017-08-11 00:19:29'),
(18175, 1, 0, NULL, 212, 'Roshmela Butter Cookies Biscuit ', '1234567801971♪', 31, NULL, 156, 37307, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:19:52', '2017-08-11 00:19:52'),
(18176, 1, 0, NULL, 9, 'Olympic Butter Bite Biscuit 73gm', '811117328150', 31, NULL, 156, 37308, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:20:51', '2017-08-11 00:20:51'),
(18177, 1, 0, NULL, 209, 'Patata Spicy Flavoured Biscuit 100 gm', '841165116751♪', 31, NULL, 156, 38931, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:21:39', '2017-08-11 00:21:39'),
(18179, 1, 0, NULL, 209, 'Fit Crackers Biscuits', '846656004814', 31, NULL, 156, 37310, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:22:04', '2017-08-11 00:22:04'),
(18181, 1, 0, NULL, 127, 'Romania Munchy Biscuit 52 gm', '186002000474♪', 31, NULL, 156, 37311, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:25:43', '2017-08-11 00:25:43'),
(18182, 1, 0, NULL, 212, 'Rosh mela Dry Cake Biscuit ', '11708111818200', 31, NULL, 156, 37312, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:25:47', '2017-08-11 00:25:47'),
(18183, 1, 0, NULL, 210, 'Star Line Tiffine Time 45 gm ', '8946000018183♪', 31, NULL, 156, 37313, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:27:04', '2017-08-11 00:27:04'),
(18184, 1, 0, NULL, 136, 'Haque Mr. Coconut Biscuit', '8941194004073', 31, NULL, 156, 37314, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:27:24', '2017-08-11 00:27:24'),
(18185, 1, 0, NULL, 52, 'Classic Chocolate Coated Sandwich Biscuit', '8941128001604', 31, NULL, 156, 37315, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:29:08', '2017-08-11 00:29:08'),
(18186, 1, 0, NULL, 52, 'Globe Tucc 50 gm', '8941128001949♪', 31, NULL, 156, 37316, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:29:35', '2017-08-11 00:29:35'),
(18187, 1, 0, NULL, 9, 'Olympic Tip Biscuit 255gm', '811102040258', 31, NULL, 156, 37317, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:30:10', '2017-08-11 00:30:10'),
(18188, 1, 0, NULL, 210, 'Star Line Pineapple Cream Sandwich Biscuit 75gm', '8946000018398', 31, NULL, 156, 37318, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:31:14', '2017-08-11 00:31:14'),
(18189, 1, 0, NULL, 210, 'Star Line Horlicks Cookies Biscuit 300 gm', '8946000018145♪', 31, NULL, 156, 37319, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:31:28', '2017-08-11 00:31:28'),
(18190, 1, 0, 388, 136, 'Haque Mr. Energy Biscuit 240gm', '8941194004004', 31, NULL, 156, 37320, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:32:11', '2017-08-11 00:32:43'),
(18192, 1, 0, NULL, 136, 'Olympic Energy Plus Biscuit 240gm', '811101020244', 31, NULL, 156, 37321, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:33:45', '2017-08-11 00:33:45'),
(18193, 1, 0, NULL, 209, 'Pran Bake Cookies Peanut Biscuit 165 gm', '841165112883♪', 31, NULL, 156, 37322, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:34:51', '2017-08-11 00:34:51'),
(18194, 1, 0, 388, 127, 'Romania Coconut Milk Biscuit 68gm', '186002000962', 31, NULL, 156, 37323, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:35:50', '2017-08-11 00:36:47'),
(18195, 1, 0, NULL, 212, 'Roshmela Special Biscuit ', '11708111819500', 31, NULL, 156, 37324, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:36:40', '2017-08-11 00:36:40'),
(18196, 1, 0, NULL, 210, 'Star Line Chocolate 160 GM', '832605000020', 31, NULL, NULL, 37325, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:37:27', '2017-08-11 00:37:27'),
(18197, 1, 0, NULL, 212, 'Roshmela Dry Cake', '11708111819700', 31, NULL, 156, 37326, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:38:12', '2017-08-11 00:38:12'),
(18198, 1, 0, NULL, 9, 'Olympic Milk Plus Biscuit 65gm', '811106091133', 31, NULL, 156, 37327, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:38:14', '2017-08-11 00:38:14'),
(18199, 1, 0, NULL, 181, '<NAME> 300gm', '8941114006101', 31, NULL, NULL, 37328, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:39:02', '2017-08-11 00:39:02'),
(18200, 1, 0, NULL, 212, '<NAME>', '11708111820000', 31, NULL, 156, 37329, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:39:18', '2017-08-11 00:39:18'),
(18201, 1, 0, NULL, 212, 'Roshmela special Toast ', '11708111820100', 31, NULL, 156, 37330, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:39:51', '2017-08-11 00:39:51'),
(18202, 1, 0, NULL, 9, 'Olympic Chocolate Plus Biscuit 65gm', '811106112135', 31, NULL, 156, 37331, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:39:55', '2017-08-11 00:39:55'),
(18203, 1, 0, NULL, 136, 'Mr Cookie 320gm', '8941194003205', 31, NULL, NULL, 37332, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:40:41', '2017-08-11 00:40:41'),
(18204, 1, 0, NULL, 209, '<NAME> 250 gm', '831730005672♪', 31, NULL, 156, 37333, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:41:22', '2017-08-11 00:41:22'),
(18205, 1, 0, NULL, 9, 'Olympic Lite Bite Sugar Free Biscuit 85gm', '811160999154', 31, NULL, 156, 37334, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:41:41', '2017-08-11 00:41:41'),
(18206, 1, 0, NULL, 127, '<NAME> Bite', '186002000344', 31, NULL, 156, 37335, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:41:57', '2017-08-11 00:41:57'),
(18207, 1, 0, NULL, 9, 'Olympic Elachi Biscuit 65gm', '811106123131', 31, NULL, 156, 37336, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:42:22', '2017-08-11 00:42:22'),
(18208, 1, 0, NULL, 127, '<NAME>', '186002000191', 31, NULL, 156, 37337, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:43:12', '2017-08-11 00:43:12'),
(18209, 1, 0, NULL, 211, 'Bono Full pure Joy', '8941114001519', 31, NULL, NULL, 37338, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:44:08', '2017-08-11 00:44:08'),
(18210, 1, 0, NULL, 136, 'Haque Checkers Biscuit 80gm', '8941194004196', 31, NULL, 156, 37339, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:44:23', '2017-08-11 00:44:23'),
(18211, 1, 0, NULL, 212, 'Roshmela Cookies Biscuit', '11708111821100', 31, NULL, 156, 37340, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:44:57', '2017-08-11 00:44:57'),
(18212, 1, 0, NULL, 136, 'Haque Mr. Energy Biscuit 80gm', '8941194003991', 31, NULL, 156, 37341, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:45:54', '2017-08-11 00:45:54'),
(18213, 1, 0, NULL, 136, 'Hoque Mr Milk', '8886213500344', 31, NULL, NULL, 37342, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:45:58', '2017-08-11 00:45:58'),
(18214, 1, 0, NULL, 9, 'Olympic Energy Biscuit 45gm', '811156055109', 31, NULL, 156, 37343, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:46:47', '2017-08-11 00:46:47'),
(18215, 1, 0, NULL, 210, 'Star Line Nice Time 70 gm', '8946000018466♪', 31, NULL, 156, 37344, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:46:56', '2017-08-11 00:46:56'),
(18217, 1, 0, NULL, 9, 'Olympic Coconut Plus Biscuit 65gm', '811101010146', 31, NULL, 156, 37345, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:48:14', '2017-08-11 00:48:14'),
(18218, 1, 0, NULL, 9, 'Olympic Choco Chips 200gm', '811117442238', 31, NULL, NULL, 37346, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:48:38', '2017-08-11 00:48:38'),
(18219, 1, 0, NULL, 212, 'Roshmela Nimki Biscuit ', '1234567801988♪', 31, NULL, 156, 37347, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:49:02', '2017-08-11 00:49:02'),
(18220, 1, 0, NULL, 209, 'Fit Crakers Milk Flavoure Biscuit 65 gm', '846656004890♪', 31, NULL, 156, 37348, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:50:27', '2017-08-11 00:50:27'),
(18221, 1, 0, NULL, 136, 'Haque Mr. Cookie Butter Coconut 55gm', '8941194002550', 31, NULL, 156, 37349, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:50:47', '2017-08-11 00:50:47'),
(18224, 1, 0, NULL, 181, 'Kishwan Biscuit 850gm', '8941114005845', 31, NULL, 156, 37350, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:52:21', '2017-08-11 00:52:21'),
(18225, 1, 0, NULL, 52, 'Globe Tiffin Choco Milk Biscuits ', '8941128001727♪', 31, NULL, 156, 37351, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:53:11', '2017-08-11 00:53:11'),
(18227, 1, 0, NULL, 212, 'Roshmela Cookies Chocolet Biscuit ', '11708111822700', 31, NULL, 156, 37352, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 00:55:03', '2017-08-11 00:55:03'),
(18228, 1, 0, NULL, 131, 'BD Bar-B-Q Chanachur 150gm', '8850356205152', 31, NULL, 156, 37353, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:02:08', '2017-08-11 01:02:08'),
(18229, 1, 0, NULL, 213, 'Ruchi Chanachur 350gm', '8941100513064', 31, NULL, 156, 37354, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:04:29', '2017-08-11 01:04:29'),
(18230, 1, 0, NULL, 213, 'Ruchi Chanachur 600gm', '8941100513200', 31, NULL, 156, 37355, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:05:05', '2017-08-11 01:05:05'),
(18231, 1, 0, NULL, 213, 'Ruchi Chanachur 35gm', '8941100513170', 31, NULL, 156, 37356, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:05:41', '2017-08-11 01:05:41'),
(18232, 1, 0, NULL, 213, 'Ruchi Bar-B-Q Dal 30 gm ', '8941100513842♪', 31, NULL, 156, 37357, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:06:19', '2017-08-11 01:06:19'),
(18233, 1, 0, NULL, 213, '<NAME> 150gm', '8941100513163', 31, NULL, 156, 37358, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:06:36', '2017-08-11 01:06:36'),
(18234, 1, 0, NULL, 213, '<NAME> 35gm', '8941100513149', 31, NULL, 156, 37359, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:07:20', '2017-08-11 01:07:20'),
(18235, 1, 0, NULL, 213, '<NAME> 35gm', '8941100513712', 31, NULL, 156, 37360, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:08:16', '2017-08-11 01:08:16'),
(18236, 1, 0, NULL, 213, 'Ruchi Classic Fried Dal 30 gm', '8941100513651', 31, NULL, 156, 37361, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:08:17', '2017-08-11 01:08:17'),
(18237, 1, 0, NULL, 213, '<NAME> 20gm', '8941100513880', 31, NULL, 156, 37362, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:09:26', '2017-08-11 01:09:26'),
(18238, 1, 0, NULL, 50, '<NAME> 25 gm', '9415007976486♪', 31, NULL, 156, 37363, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:09:51', '2017-08-11 01:09:51'),
(18239, 1, 0, NULL, 210, '<NAME> 32gm', '8946000018497', 31, NULL, 156, 37364, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:10:36', '2017-08-11 01:10:36'),
(18240, 1, 0, NULL, 50, 'Poppers Choco Ring Crackers 30 gm', '9415007663040', 31, NULL, 156, 37365, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:10:59', '2017-08-11 01:10:59'),
(18241, 1, 0, NULL, 210, '<NAME> 25gm', '8946000018015', 31, NULL, 156, 38932, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:11:25', '2017-08-11 01:11:25'),
(18243, 1, 0, NULL, 210, '<NAME> 35gm', '8946000018169', 31, NULL, 156, 37367, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:12:16', '2017-08-11 01:12:16'),
(18244, 1, 0, NULL, 210, 'Baby Sweet Toast Biscuit 48gm', '8946000018107', 31, NULL, 156, 37368, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:13:11', '2017-08-11 01:13:11'),
(18245, 1, 0, NULL, 131, 'BD Chanachur 350gm', '8850356200409', 31, NULL, 156, 37369, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:13:55', '2017-08-11 01:13:55'),
(18246, 1, 0, NULL, 211, 'Banoful Bar-B-Q Chanachur 350 gm', '8941114000178', 31, NULL, 156, 37370, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:13:57', '2017-08-11 01:13:57'),
(18247, 1, 0, NULL, 131, 'BD Chanachur 140gm', '8850356200140', 31, NULL, 156, 37371, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:14:25', '2017-08-11 01:14:25'),
(18248, 1, 0, NULL, 211, 'Banoful Chanachur 150 gm', '8941114000048♪', 31, NULL, 156, 37372, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:14:48', '2017-08-11 01:14:48'),
(18249, 1, 0, NULL, 131, 'BD Fried Dal 25gm', '8850356510027', 31, NULL, 156, 37373, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:15:11', '2017-08-11 01:15:11'),
(18250, 1, 0, NULL, 210, 'Star Line Magic Spicy Toast 48gm', '8946000018022', 31, NULL, 156, 37374, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:16:30', '2017-08-11 01:16:30'),
(18251, 1, 0, 388, 209, 'Mr. Noodles Chicken 310gm', '841165109760', 31, NULL, 156, 37375, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:22:19', '2017-08-11 01:35:13'),
(18252, 1, 0, 388, 209, 'Mr. Noodles Magic Masala 744gm', ' 846656017746', 31, NULL, 156, 37376, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:24:59', '2017-08-11 01:32:00'),
(18253, 1, 0, NULL, 123, 'Mama Hot Spicy Noodles 620 gm', '8941181000286♪', 31, NULL, 156, 37377, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:26:12', '2017-08-11 01:26:12'),
(18254, 1, 0, 388, 209, 'Mr. Noodles Magic Masala 310gm', '841165109746', 31, NULL, 156, 37378, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:26:44', '2017-08-11 01:33:57'),
(18255, 1, 0, NULL, 123, 'Mama Tandoori Noodles 248 gm', '8941181000194♪', 31, NULL, 156, 37379, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:31:53', '2017-08-11 01:31:53'),
(18256, 1, 0, NULL, 123, 'Mma Masala Noodles 620 gm', '8941181000279♪', 31, NULL, 156, 37380, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:33:00', '2017-08-11 01:33:00'),
(18257, 1, 0, NULL, 209, 'Mr. Noodles Magic Masala 248gm', '846656004029', 31, NULL, 156, 37381, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:35:55', '2017-08-11 01:35:55'),
(18258, 1, 0, NULL, 209, 'Mr. Noodles Chicken 496gm', '846656006535', 31, NULL, 156, 37382, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:37:00', '2017-08-11 01:37:00'),
(18259, 1, 0, NULL, 123, 'Mama Chicken Flavour 620 gm', '8941181000255♪', 31, NULL, 156, 37383, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:37:02', '2017-08-11 01:37:02'),
(18260, 1, 0, NULL, 123, 'Mama Hot and Spicy 496 gm', '8941181000163♪', 31, NULL, 156, 37384, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:38:20', '2017-08-11 01:38:20'),
(18261, 1, 0, NULL, 123, 'Mama Chicken Flavoor 496 gm', '8941181000132♪', 31, NULL, 156, 37385, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:49:24', '2017-08-11 01:49:24'),
(18262, 1, 0, NULL, 107, '<NAME> 200gm', '8941170015222', 31, NULL, 156, 37386, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:49:57', '2017-08-11 01:49:57'),
(18263, 1, 0, NULL, 123, 'Mama Chicken Flavoor 248 gm', '8941181000057♪', 31, NULL, 156, 37387, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:51:05', '2017-08-11 01:51:05'),
(18264, 1, 0, NULL, 209, '<NAME> 200gm', '846656000540', 31, NULL, 156, 37388, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:51:20', '2017-08-11 01:51:20'),
(18265, 1, 0, NULL, 164, 'Maggi Masala Noodles 744 gm', '8941100292556♪', 31, NULL, 156, 37389, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:52:07', '2017-08-11 01:52:07'),
(18266, 1, 0, NULL, 209, 'Mr. Noodles 160gm', '846656010051', 31, NULL, 156, 37390, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:52:17', '2017-08-11 01:52:17'),
(18267, 1, 0, NULL, 1, 'Knorr Chicken Sizzler 520 gm', '8941100651445♪', 31, NULL, 156, 37391, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:54:44', '2017-08-11 01:54:44'),
(18268, 1, 0, NULL, 209, 'Pran Noodles Classic Masala 620gm', '841165109074', 31, NULL, 156, 37392, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:55:22', '2017-08-11 01:55:22'),
(18269, 1, 0, NULL, 1, 'Knorr Classic Chicken 520 gm', '8941100651438♪', 31, NULL, 156, 37393, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:55:36', '2017-08-11 01:55:36'),
(18270, 1, 0, NULL, 209, 'Mr. Noodles Magic Masala 992gm', '841165110315', 31, NULL, 156, 37394, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:57:08', '2017-08-11 01:57:08'),
(18271, 1, 0, NULL, 213, 'Chopstick instant Noodles 496 gm', '8941100515174♪', 31, NULL, 156, 37395, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:57:34', '2017-08-11 01:57:34'),
(18272, 1, 0, NULL, 209, 'Metro Deshi Masala Noodles 496 gm', '841165115105♪', 31, NULL, 156, 37396, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:58:53', '2017-08-11 01:58:53'),
(18273, 1, 0, NULL, 50, 'Doodles Noodles Masala 576gm', '9415007916598', 31, NULL, 156, 37397, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 01:58:54', '2017-08-11 01:58:54'),
(18274, 1, 0, NULL, 50, 'Doodles Noodles Chicken Curry 288gm', '9415007231981', 31, NULL, 156, 37398, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 02:00:15', '2017-08-11 02:00:15'),
(18275, 1, 0, NULL, NULL, 'Doodles Noodles Masala 288gm', '9415007551478', 31, NULL, 156, 37399, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 02:01:18', '2017-08-11 02:01:18'),
(18276, 1, 0, NULL, 164, 'Maggi Chicken Soups 25 gm', '8941100291344♪', 31, NULL, 156, 37400, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 02:04:22', '2017-08-11 02:04:22'),
(18277, 1, 0, NULL, 164, '<NAME> Noodles 248 gm', '8941100292860♪', 31, NULL, 156, 37401, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 02:06:48', '2017-08-11 02:06:48'),
(18278, 1, 0, NULL, 164, 'Mag<NAME> Noodles 248gm', '8941100292846', 31, NULL, 156, 37402, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 02:06:51', '2017-08-11 02:06:51'),
(18279, 1, 0, NULL, 107, 'Kolson special Semai 200 gm', '571866149801♪', 31, NULL, 156, 37403, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 02:08:03', '2017-08-11 02:08:03'),
(18280, 1, 0, NULL, 211, 'Fried Noodles Chicken Flavor 650gm', '8941114003766', 31, NULL, 156, 37404, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 02:08:43', '2017-08-11 02:08:43'),
(18281, 1, 0, NULL, 107, 'Sakeeb Cook Noodles 160 gm', '8941170015130♪', 31, NULL, 156, 37405, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 02:09:08', '2017-08-11 02:09:08'),
(18282, 1, 0, NULL, 209, 'Mr. Noodles Magic Masala 62gm', '846656002902', 31, NULL, 156, 37406, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 02:09:33', '2017-08-11 02:09:33'),
(18283, 1, 0, NULL, 179, 'Cocola Chicken Masala 744 gm', '8941155013694♪', 31, NULL, 156, 37407, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 02:10:38', '2017-08-11 02:10:38'),
(18284, 1, 0, NULL, 179, 'Cocola Chicken Masala ', '8941155013519', 31, NULL, 156, 37408, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 02:12:18', '2017-08-11 02:12:18'),
(18285, 1, 0, NULL, 50, 'Doodles Stick Noodles Chicken Masala 300 gm', '9415007463300', 31, NULL, 156, 37409, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 02:12:35', '2017-08-11 02:12:35'),
(18286, 1, 0, NULL, 209, 'Mr. Noodles Egg Noodles 180gm', '831730009335', 31, NULL, 156, 37410, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 02:13:22', '2017-08-11 02:13:22'),
(18287, 1, 0, NULL, 107, 'Sajeeb Thai Noodles 180gm', '8941170014607', 31, NULL, 156, 37411, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:01:28', '2017-08-11 04:01:28'),
(18288, 1, 0, NULL, 164, 'Mama Tandoori Noodles 62gm', '8941181000170♪', 31, NULL, 156, 37412, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:01:47', '2017-08-11 04:01:47'),
(18289, 1, 0, NULL, NULL, 'Mama Chicken Noodles 62gm', '11708111828900', 31, NULL, 156, 37413, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:02:33', '2017-08-11 04:02:33'),
(18290, 1, 0, NULL, 107, 'Sajeeb Bar B Q Noodles 180gm', 'xx8941170014638', 31, NULL, 156, 37414, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:03:17', '2017-08-11 04:03:17'),
(18292, 1, 0, NULL, 164, 'Mama Hot & Spicy Noodles 62gm', '8941181000040♪', 31, NULL, 156, 37415, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:04:57', '2017-08-11 04:04:57'),
(18293, 1, 0, NULL, 107, 'Sajeeb Chicken Tandoori Noodles 180gm', '8941170014621', 31, NULL, 156, 37416, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:06:15', '2017-08-11 04:06:15'),
(18294, 1, 0, NULL, 50, 'Doodles Chicken Masala Noodles 180gm', '9415007463180', 31, NULL, 156, 37417, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:06:38', '2017-08-11 04:06:38'),
(18295, 1, 0, NULL, 107, 'Sajeeb Egg Noodles 180gm', '8941170014614', 31, NULL, 156, 37418, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:06:57', '2017-08-11 04:06:57'),
(18296, 1, 0, NULL, 107, 'Kolson Egg Noodles 180gm', '11708111829600', 31, NULL, 156, 37419, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:09:01', '2017-08-11 04:09:01'),
(18297, 1, 0, NULL, 211, 'Banoful Masala Stick Noodles 200gm', '8941114003759♪', 31, NULL, 156, 37420, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:09:06', '2017-08-11 04:09:06'),
(18298, 1, 0, NULL, 210, 'Star line Egg Noodles 180gm', '8946000018121♪', 31, NULL, 156, 37421, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:10:35', '2017-08-11 04:10:35'),
(18299, 1, 0, NULL, 107, 'MR. Noodles Easy 14 pack', '846656014776', 31, NULL, 156, 37422, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:12:55', '2017-08-11 04:12:55'),
(18300, 1, 0, NULL, 107, '<NAME> 200gmm', '8941170014935', 31, NULL, 156, 37423, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:14:04', '2017-08-11 04:14:04'),
(18301, 1, 0, NULL, 213, 'Ruchi Mixedd Fruit Jam 250gm', '8941100514689', 31, NULL, 156, 37424, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:15:54', '2017-08-11 04:15:54'),
(18302, 1, 0, NULL, 123, 'Mama Chicken Oriental Instant Noodles 62gm', '8941181000330♪', 31, NULL, 156, 37425, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:16:09', '2017-08-11 04:16:09'),
(18303, 1, 0, NULL, 213, 'Ruchi Orange Jam 250gm', '8941100514672', 31, NULL, 156, 37426, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:16:59', '2017-08-11 04:16:59'),
(18304, 1, 0, NULL, 213, 'Ruchi Orange Jam 480gm', '8941100514696', 31, NULL, 156, 37427, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:17:56', '2017-08-11 04:17:56'),
(18305, 1, 0, NULL, 209, 'The Spaghetti Noodles 500gm ', '841165125869♪', 31, NULL, 156, 37428, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:18:56', '2017-08-11 04:18:56'),
(18306, 1, 0, NULL, 180, '<NAME> 250gm', '8901207035364', 31, NULL, 156, 37429, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:19:03', '2017-08-11 04:19:03'),
(18307, 1, 0, NULL, 180, '<NAME> 50gm', '8901207045370', 31, NULL, 156, 37430, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:19:49', '2017-08-11 04:19:49'),
(18308, 1, 0, NULL, 107, '<NAME> 250gm', '894117001501', 31, NULL, 156, 37431, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:20:05', '2017-08-11 04:20:05'),
(18309, 1, 0, NULL, 180, '<NAME> 100gm', '8901207005374', 31, NULL, 156, 37432, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:20:24', '2017-08-11 04:20:24'),
(18310, 1, 0, NULL, 209, '<NAME> 165gm', '846656003107♪', 31, NULL, 156, 37433, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:21:11', '2017-08-11 04:21:11'),
(18311, 1, 0, NULL, 107, '<NAME>elly 440gm', '11708111831100', 31, NULL, 156, 37434, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:21:28', '2017-08-11 04:21:28'),
(18312, 1, 0, NULL, 211, '<NAME> semai 400gm', '8941114003858♪', 31, NULL, 156, 37435, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:22:32', '2017-08-11 04:22:32'),
(18313, 1, 0, NULL, 209, '<NAME> 375gm', '831730002589', 31, NULL, 156, 37436, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:22:59', '2017-08-11 04:22:59'),
(18314, 1, 0, NULL, 107, 'Sajeeb soya Nugget 500gm', '8941170015055♪', 31, NULL, 156, 37437, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:23:32', '2017-08-11 04:23:32'),
(18315, 1, 0, NULL, 131, 'BD Mango Jam 360gm', '8850356466355', 31, NULL, 156, 37438, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:23:55', '2017-08-11 04:23:55'),
(18316, 1, 0, NULL, 209, 'Pran Orange Jelly 400gm', '831730002565♪', 31, NULL, 156, 37439, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:24:23', '2017-08-11 04:24:23'),
(18317, 1, 0, NULL, 146, 'Pasta Zara 500gm', '8004350130310♪', 31, NULL, 156, 37440, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:25:15', '2017-08-11 04:25:15'),
(18318, 1, 0, NULL, 209, 'Pran Mixed Fruit Jam 375gm', '831730002695', 31, NULL, 156, 37441, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:25:25', '2017-08-11 04:25:25'),
(18319, 1, 0, NULL, 209, '<NAME> 375gm', '831730002473', 31, NULL, 156, 37442, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:26:03', '2017-08-11 04:26:03'),
(18320, 1, 0, NULL, 209, 'Mr. Noodles (instant) 40gm', '41165111833', 31, NULL, 156, 37443, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:26:44', '2017-08-11 04:26:44'),
(18321, 1, 0, NULL, 209, '<NAME> 375gm', '841165109777', 31, NULL, 156, 37444, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:27:00', '2017-08-11 04:27:00'),
(18322, 1, 0, NULL, 107, '<NAME> 440gm', '8941170035503', 31, NULL, 156, 37445, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:27:59', '2017-08-11 04:27:59'),
(18323, 1, 0, NULL, 146, 'Pasta Zara Penne Rifats 625gm', '8004350130495♪', 31, NULL, 156, 37446, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:28:30', '2017-08-11 04:28:30'),
(18324, 1, 0, NULL, 107, 'Shezan Mixed Fruit Jam 440gm', '8941170035497', 31, NULL, 156, 37447, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:28:40', '2017-08-11 04:28:40'),
(18325, 1, 0, NULL, 107, 'Shezan Apple Jelly 440gm', '8941170035510', 31, NULL, 156, 37448, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:29:17', '2017-08-11 04:29:17'),
(18326, 1, 0, NULL, 131, 'BD Pineapplee Jam 360gm', '11708111832600', 31, NULL, 156, 37449, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:30:49', '2017-08-11 04:30:49'),
(18328, 1, 0, NULL, 131, 'BD Orange Jelly 500gm', '8850356450507', 31, NULL, 156, 37450, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:31:49', '2017-08-11 04:31:49'),
(18329, 1, 0, NULL, 131, 'BD Fruits Jam 360gm', '8850356467352', 31, NULL, 156, 37451, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:32:26', '2017-08-11 04:32:26'),
(18330, 1, 0, NULL, 131, 'BD Orange Jelly', '8850356450309', 31, NULL, 156, 37452, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:32:58', '2017-08-11 04:32:58'),
(18331, 1, 0, NULL, 189, 'Tat Makarana 500gm', '8690325009011♪', 31, NULL, 156, 37453, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:33:02', '2017-08-11 04:33:02'),
(18332, 1, 0, NULL, 213, 'Ruchi Mixed Fruit Jam 480gm', '8941100514702', 31, NULL, 156, 37454, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:33:54', '2017-08-11 04:33:54'),
(18334, 1, 0, NULL, 189, 'Tat Makarana 120gm', '11708111833400', 31, NULL, 156, 37455, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:36:20', '2017-08-11 04:36:20'),
(18335, 1, 0, NULL, 179, 'Cocola Bowl Chicken Noodles 70gm', '8941155032701♪', 31, NULL, 156, 37456, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:38:32', '2017-08-11 04:38:32'),
(18337, 1, 0, NULL, 107, '<NAME> 400gm', '8941170014942', 31, NULL, 156, 37457, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:39:59', '2017-08-11 04:39:59'),
(18338, 1, 0, NULL, 211, '<NAME>ai200gm', '8941114003919♪', 31, NULL, 156, 37458, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:40:09', '2017-08-11 04:40:09'),
(18339, 1, 0, 388, 131, '<NAME> 500gm', '8850356300017', 30, NULL, 157, 37459, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:47:25', '2017-08-11 04:56:01'),
(18340, 1, 0, 388, 213, '<NAME> 400gm', '8941100514900', 30, NULL, 157, 37460, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:47:40', '2017-08-11 04:56:22'),
(18341, 1, 0, 388, 131, 'BD Olive Pickle 400gm', '8850356260403', 30, NULL, 157, 37461, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:48:19', '2017-08-11 04:56:57'),
(18342, 1, 0, 388, 131, 'BD Boroi Chutney 500gm', '8850356320015', 30, NULL, 157, 37462, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:48:59', '2017-08-11 04:57:24'),
(18343, 1, 0, 388, 131, 'BD Mixed Pickle 400gm', '8850356280401', 30, NULL, 157, 37463, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:49:43', '2017-08-11 04:57:39'),
(18344, 1, 0, 388, 107, 'Nocilla Chocolate Cream 320gm', '8410014443571', 30, NULL, 157, 37464, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:54:36', '2017-08-11 04:56:38'),
(18345, 1, 0, NULL, 131, 'BD Mango Pickle 400gm', '8850356250404', 30, NULL, 157, 37465, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 04:59:07', '2017-08-11 04:59:07'),
(18346, 1, 0, NULL, 209, 'Pran Plum Sweet Pickle 350gm', '831730001766', 30, NULL, 157, 37466, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:00:08', '2017-08-11 05:00:08'),
(18347, 1, 0, NULL, 213, '<NAME> 450gm', '8941100514511♪', 30, NULL, 157, 37467, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:00:11', '2017-08-11 05:00:11'),
(18348, 1, 0, NULL, 209, 'Pran Chalta Pickle 300gm', '846656008034', 30, NULL, 157, 37468, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:01:12', '2017-08-11 05:01:12'),
(18349, 1, 0, NULL, 209, 'Pran Mango Pickle 300gm', '831730001612', 30, NULL, 157, 37469, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:01:54', '2017-08-11 05:01:54'),
(18350, 1, 0, NULL, 209, 'Mughal Green olive 300gm', '841165103904♪', 30, NULL, 157, 37470, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:02:35', '2017-08-11 05:02:35'),
(18352, 1, 0, NULL, 209, 'Pran Mixed Pickle 300gm', '831730001919', 30, NULL, 157, 37471, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:02:35', '2017-08-11 05:02:35'),
(18354, 1, 0, NULL, 209, 'Mughal Green Mango 300gm', '841165103898♪', 30, NULL, 157, 37472, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:03:33', '2017-08-11 05:03:33'),
(18357, 1, 0, NULL, 213, 'Ruchi Mixed Pickle 400gm', '89411005147711', 30, NULL, 157, 37473, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:05:07', '2017-08-11 05:05:07'),
(18359, 1, 0, NULL, 209, '<NAME>ki Pickle 300gm', '831730001841', 30, NULL, 157, 37474, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:06:03', '2017-08-11 05:06:03'),
(18360, 1, 0, NULL, 209, 'Pran Olive Pickle 300gm', '831730001698', 30, NULL, 157, 37475, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:06:45', '2017-08-11 05:06:45'),
(18361, 1, 0, NULL, 107, 'Nocillla chocolate Cream 200gm', '8410014896896♪', 30, NULL, 157, 37476, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:07:18', '2017-08-11 05:07:18'),
(18362, 1, 0, NULL, 209, 'Pran Tatul Chutney 300gm', '846656015759', 30, NULL, 157, 37477, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:07:57', '2017-08-11 05:07:57'),
(18363, 1, 0, 388, 187, 'Divine Chocolate Peanut Butter 277gm', '8906068760844', 30, NULL, 157, 37478, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:08:42', '2017-08-11 05:10:22'),
(18365, 1, 0, NULL, 213, 'Ruchi Garlic Pickle 200gm', '8941100594759', 30, NULL, 157, 37479, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:11:45', '2017-08-11 05:11:45'),
(18366, 1, 0, 388, 31, '<NAME> <NAME> 340gm', '6294002406340', 30, NULL, 157, 37480, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:12:24', '2017-08-11 05:13:56'),
(18367, 1, 0, NULL, 213, '<NAME> 200gm', '8941100514733', 30, NULL, 157, 37481, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:12:50', '2017-08-11 05:12:50'),
(18368, 1, 0, NULL, 209, '<NAME> 300gm', '846656008010', 30, NULL, 157, 37482, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:13:57', '2017-08-11 05:13:57'),
(18369, 1, 0, NULL, 209, '<NAME> 20gm', '831730002114', 30, NULL, 157, 37483, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:16:10', '2017-08-11 05:16:10'),
(18370, 1, 0, NULL, 31, '<NAME> 340gm', '6294002406388♪', 30, NULL, 157, 37484, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:16:16', '2017-08-11 05:16:16'),
(18371, 1, 0, NULL, 209, '<NAME> 35gm', '846656006702', 30, NULL, 157, 37485, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:17:20', '2017-08-11 05:17:20'),
(18372, 1, 0, NULL, 205, '<NAME> 350gm', '80177173♪', 30, NULL, 157, 37486, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:18:02', '2017-08-11 05:18:02'),
(18373, 1, 0, NULL, 205, '<NAME> 946ml', '6291003191022', 30, NULL, 157, 37487, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:18:52', '2017-08-11 05:18:52'),
(18374, 1, 0, NULL, 205, 'Bonalita Hazelnut spread 400gm', '5200303830709♪', 30, NULL, 157, 37488, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:19:38', '2017-08-11 05:19:38'),
(18375, 1, 0, NULL, 205, 'Alfa Mayonnaise 473ml', '6291003191275', 30, NULL, 157, 37489, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:19:40', '2017-08-11 05:19:40'),
(18376, 1, 0, NULL, 187, 'Divine Creamy Peanut Butter 340gm', '8906068760851♪', 30, NULL, 157, 37490, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:21:39', '2017-08-11 05:21:39'),
(18377, 1, 0, NULL, 107, 'Nocilla Energetic Food Dairy and Hazelnut Cream 200gm', '8410014434456', 30, NULL, 157, 37491, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:22:26', '2017-08-11 05:22:26'),
(18378, 1, 0, NULL, 187, 'Divine Chocolate Peanut Butter 340gm', '8906068760875♪', 30, NULL, 157, 37492, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:23:10', '2017-08-11 05:23:10'),
(18379, 1, 0, NULL, 107, 'Nocilla Energetic Food Two Colour Chocolate Cream 200gm', '8410014896902', 30, NULL, 157, 37493, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:23:35', '2017-08-11 05:23:35'),
(18380, 1, 0, 388, 214, 'Garden Fresh Mushroom 425gm', '6935897612637', 30, NULL, 157, 37494, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:24:38', '2017-08-11 05:25:30'),
(18381, 1, 0, NULL, NULL, 'Discovery Peanut Butter Smooth & Creamy 340gm', '8906021073417', 30, NULL, 157, 37495, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:26:49', '2017-08-11 05:26:49'),
(18382, 1, 0, NULL, NULL, 'Discovery Peanut Butter Smooth & Creamy 510gm', '8942643422738', 30, NULL, 157, 37496, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:27:41', '2017-08-11 05:27:41'),
(18383, 1, 0, NULL, NULL, 'Discovery Peanut Butter Chumkey 340gm', '8906021073424', 30, NULL, 157, 37497, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:28:34', '2017-08-11 05:28:34'),
(18384, 1, 0, NULL, NULL, 'Discovery Peanut Butter Chumkey 510gm', '8942643488734', 30, NULL, 157, 37498, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:29:27', '2017-08-11 05:29:27'),
(18385, 1, 0, NULL, 215, 'Hibiscus Premium SK corn 425gm', '8848701050779♪', 30, NULL, 157, 37499, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:32:15', '2017-08-11 05:32:15'),
(18386, 1, 0, NULL, 70, 'Suree Fish Sauce 354gm', '8850344000134♪', 30, NULL, 157, 37500, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:39:12', '2017-08-11 05:39:12'),
(18387, 1, 0, NULL, 209, 'Pran Hot Tomato Sauce 1 KG', '841165100842', 30, NULL, 157, 37501, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:39:42', '2017-08-11 05:39:42'),
(18388, 1, 0, NULL, 209, 'Pran Hot Taomato Sauce 550gm', '846656006405', 30, NULL, 157, 37502, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:40:34', '2017-08-11 05:40:34'),
(18389, 1, 0, NULL, 209, 'Pran Rose Water 180ml', '831730008406', 30, NULL, 157, 37503, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:41:56', '2017-08-11 05:41:56'),
(18390, 1, 0, NULL, 209, 'Pran Soy Sauce 300ml', '846656008119', 30, NULL, 157, 37504, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:42:51', '2017-08-11 05:42:51'),
(18391, 1, 0, NULL, 74, 'Umami BBQ Sauce 300ml ', '8850534100309♪', 30, NULL, 157, 37505, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:43:22', '2017-08-11 05:43:22'),
(18392, 1, 0, NULL, 209, 'Pran Chilli Sauce Green Chilli 340gm', '846656014318', 30, NULL, 157, 37506, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:43:48', '2017-08-11 05:43:48'),
(18393, 1, 0, NULL, 209, 'Pran Hot Tomato Sauce 215gm', '846656001790', 30, NULL, 157, 37507, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:44:21', '2017-08-11 05:44:21'),
(18394, 1, 0, NULL, 209, 'Pran Hot Tomato Sauce 295gm', '831730002251', 30, NULL, 157, 37508, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:45:07', '2017-08-11 05:45:07'),
(18395, 1, 0, NULL, 119, 'Bests chilli sauce 340gm', '9556086000003♪', 30, NULL, 157, 37509, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:45:13', '2017-08-11 05:45:13'),
(18396, 1, 0, NULL, 131, 'BD Soya Sauce 250ml', '8850356345254', 30, NULL, 157, 37510, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:45:48', '2017-08-11 05:45:48'),
(18397, 1, 0, NULL, 177, 'Haiko Soya sauce 250ml', '180119790488♪', 30, NULL, 157, 37511, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:46:14', '2017-08-11 05:46:14'),
(18398, 1, 0, NULL, 131, 'BD Tomato Sauce 340gm', '8850356350302', 30, NULL, 157, 37512, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:46:24', '2017-08-11 05:46:24'),
(18399, 1, 0, NULL, 131, 'BD Chilli Sauce 360gm', '8850356330304', 30, NULL, 157, 37513, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:47:10', '2017-08-11 05:47:10'),
(18400, 1, 0, NULL, 205, 'Berghun Oyster sauce 350ml', '6926548642172♪', 30, NULL, 157, 37514, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:47:25', '2017-08-11 05:47:25'),
(18401, 1, 0, NULL, 131, 'BD Green Chilli Sauce 380gm', ' 8850356340303', 30, NULL, 157, 37515, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:48:00', '2017-08-11 05:48:00'),
(18402, 1, 0, NULL, 131, 'BD Soya Sauce 500ml', '8850356345506', 30, NULL, 157, 37516, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:48:33', '2017-08-11 05:48:33'),
(18403, 1, 0, NULL, 205, 'Kikkoman Soy Sauce 500ml ', '4901515118128♪', 30, NULL, 157, 37517, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:48:40', '2017-08-11 05:48:40'),
(18404, 1, 0, NULL, 209, 'Pran Hot Tomato Sauce 1KG', '831730002282', 30, NULL, 157, 37518, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:49:26', '2017-08-11 05:49:26'),
(18405, 1, 0, NULL, 131, 'BD Synthetic Vinegar 300ml', '8850356162059', 30, NULL, 157, 37519, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:50:11', '2017-08-11 05:50:11'),
(18407, 1, 0, NULL, 107, 'Shezan Tomato Ketchup 1 KG', '8941170038863', 30, NULL, 157, 37520, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:50:47', '2017-08-11 05:50:47'),
(18408, 1, 0, NULL, 107, 'Shezan Tomato Ketchup 340gm', '8941170038832', 30, NULL, 157, 37521, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:51:37', '2017-08-11 05:51:37'),
(18409, 1, 0, NULL, 205, 'HP Sauce 255gm', '5000111001007♪', 30, NULL, 157, 37522, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:51:48', '2017-08-11 05:51:48'),
(18411, 1, 0, NULL, 205, 'American Garden BBQ Sauce 510gm', '717273501577♪', 30, NULL, 157, 37523, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:52:47', '2017-08-11 05:52:47'),
(18412, 1, 0, NULL, 213, 'Ruchi Tamarind Sauce 370gm', '8941100514344', 30, NULL, 157, 37524, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:53:06', '2017-08-11 05:53:06'),
(18413, 1, 0, NULL, 213, 'Ruchi Tomato Ketchup 1KG', '8941100514290', 30, NULL, 157, 37525, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:53:40', '2017-08-11 05:53:40'),
(18414, 1, 0, NULL, 209, 'The Safe White Vineger 330ml', '841165123445♪', 30, NULL, 157, 37526, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:53:48', '2017-08-11 05:53:48'),
(18415, 1, 0, NULL, 74, '<NAME>auce 300ml', '8850534003211♪', 30, NULL, 157, 37527, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:54:34', '2017-08-11 05:54:34'),
(18416, 1, 0, NULL, 213, '<NAME> 285ml', '8941100511763', 30, NULL, 157, 37528, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:54:53', '2017-08-11 05:54:53'),
(18417, 1, 0, NULL, 213, 'R<NAME>ato Ketchup 350gm', '8941100514313', 30, NULL, 157, 37529, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:55:52', '2017-08-11 05:55:52'),
(18418, 1, 0, NULL, 74, '<NAME> Sauce 300ml', '8850534003112', 30, NULL, 157, 37530, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:56:34', '2017-08-11 05:56:34'),
(18419, 1, 0, NULL, 209, '<NAME>inegar 300ml', '831730005559', 30, NULL, 157, 37531, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:57:17', '2017-08-11 05:57:17'),
(18421, 1, 0, NULL, 209, '<NAME>ce 340ml', '831730002367', 30, NULL, 157, 37532, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:58:49', '2017-08-11 05:58:49'),
(18422, 1, 0, NULL, 164, '<NAME> ', '8850124065414♪', 30, NULL, 157, 37533, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 05:58:57', '2017-08-11 05:58:57'),
(18424, 1, 0, NULL, 213, 'R<NAME>illi Sauce 360gm', '8941100514337', 30, NULL, 157, 37534, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:00:33', '2017-08-11 06:00:33'),
(18425, 1, 0, NULL, 177, ' <NAME> 180ml ', '180119790563♪', 30, NULL, 157, 37535, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:01:00', '2017-08-11 06:01:00'),
(18426, 1, 0, NULL, 107, '<NAME>ce 215ml', '11708111842600', 30, NULL, 157, 37536, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:01:36', '2017-08-11 06:01:36'),
(18427, 1, 0, NULL, 177, '<NAME> Sauce 500ml ', '180119790495♪', 30, NULL, 157, 37537, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:02:03', '2017-08-11 06:02:03'),
(18428, 1, 0, NULL, 107, 'Sajeeb Soya Sauce 150ml', '11708111842800', 30, NULL, 157, 37538, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:02:45', '2017-08-11 06:02:45'),
(18429, 1, 0, NULL, 74, '<NAME> 473ml', '5352101443398♪', 30, NULL, 157, 37539, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:03:30', '2017-08-11 06:03:30'),
(18430, 1, 0, NULL, 70, '<NAME> Dipping Sauce 295ml', '8850344000011', 30, NULL, 157, 37540, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:05:25', '2017-08-11 06:05:25'),
(18431, 1, 0, NULL, 107, 'Shejan Hot Tamato Sauce 10gm', '0341289756', 30, NULL, 157, 37541, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:06:29', '2017-08-11 06:06:29'),
(18432, 1, 0, NULL, 177, '<NAME> 100gm', '180119791256♪', 30, NULL, 157, 37542, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:15:18', '2017-08-11 06:15:18'),
(18433, 1, 0, NULL, 177, 'Haiko Black Seed Oil 80gm', '180119790969', 30, NULL, 157, 37543, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:15:22', '2017-08-11 06:15:22'),
(18434, 1, 0, NULL, 177, '<NAME>amon Powder 50gm', '180119790204', 30, NULL, 157, 37544, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:16:14', '2017-08-11 06:16:14'),
(18435, 1, 0, NULL, 177, '<NAME> 10gm', '180119790983', 30, NULL, 157, 37545, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:16:53', '2017-08-11 06:16:53'),
(18436, 1, 0, NULL, 177, 'Memory But Dal 500gm', '8802711128286♪', 30, NULL, 157, 37546, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:17:23', '2017-08-11 06:17:23'),
(18437, 1, 0, NULL, 177, 'Haiko Ground Cardamon 20gm', '180119790259', 30, NULL, 157, 37547, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:17:39', '2017-08-11 06:17:39'),
(18438, 1, 0, NULL, 177, 'Haiko Black Pepper 25gm', '180119790051', 30, NULL, 157, 37548, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:18:15', '2017-08-11 06:18:15'),
(18439, 1, 0, NULL, 177, '<NAME> 10gm', '180119790617', 30, NULL, 157, 37549, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:18:45', '2017-08-11 06:18:45'),
(18440, 1, 0, NULL, 177, 'Taste Breadcrumbs 200gm', '9555234101111', 30, NULL, 157, 37550, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:19:09', '2017-08-11 06:19:09'),
(18441, 1, 0, NULL, 177, 'Haiko Ground Nutmeg Powder 20gm', '180119790228', 30, NULL, 157, 37551, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:19:32', '2017-08-11 06:19:32'),
(18442, 1, 0, NULL, 177, 'Haiko Pachforon 200gm', '180119791232', 30, NULL, 157, 37552, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:20:17', '2017-08-11 06:20:17'),
(18443, 1, 0, NULL, 177, 'Haiko Black Pepper 50gm', '180119791072♪', 30, NULL, 157, 37553, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:20:18', '2017-08-11 06:20:18'),
(18444, 1, 0, NULL, 177, 'Haiko Gelatine 50gm', '180119790471', 30, NULL, 157, 37554, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:20:48', '2017-08-11 06:20:48'),
(18445, 1, 0, NULL, 177, 'Khabar Soda 200gm', '180119790655♪', 30, NULL, 157, 37555, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:21:05', '2017-08-11 06:21:05'),
(18446, 1, 0, NULL, 177, 'Haiko Cocoa Powder 30gm', '180119790372', 30, NULL, 157, 37556, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:21:23', '2017-08-11 06:21:23'),
(18447, 1, 0, NULL, 177, 'Haiko China Grass 10gm', '180119790280♪', 30, NULL, 157, 37557, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:21:57', '2017-08-11 06:21:57'),
(18448, 1, 0, NULL, 177, 'Haiko Icing Sugar 150gm', '180119790402', 30, NULL, 157, 37558, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:22:05', '2017-08-11 06:22:05'),
(18449, 1, 0, NULL, 177, 'Haiko White Pepper 50gm', '180119791065♪', 30, NULL, 157, 37559, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:22:37', '2017-08-11 06:22:37'),
(18450, 1, 0, NULL, 177, 'Haiko yeast 10gm', '180119790525', 30, NULL, 157, 37560, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:22:40', '2017-08-11 06:22:40'),
(18451, 1, 0, NULL, 177, 'Haiko Cocoa Powder 100gm', '180119790389', 30, NULL, 157, 37561, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:23:32', '2017-08-11 06:23:32'),
(18452, 1, 0, NULL, 177, 'Haiko White Sesame200gm', '180119791416♪', 30, NULL, 157, 37562, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:24:05', '2017-08-11 06:24:05'),
(18453, 1, 0, NULL, 74, '<NAME>\'s <NAME>/Strawberry 85gm', '5352101006531', 30, NULL, 157, 37563, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:25:11', '2017-08-11 06:25:11'),
(18454, 1, 0, NULL, 177, '<NAME> 100gm', '180119791317♪', 30, NULL, 157, 37564, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:25:13', '2017-08-11 06:25:13'),
(18455, 1, 0, NULL, 74, 'Foster Clark\'s Corn Flour 400gm', '5352101910814', 30, NULL, 157, 37565, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:26:00', '2017-08-11 06:26:00'),
(18456, 1, 0, NULL, 205, ' Cadbary Drinking Chocolate 500gm', '5000312000687♪', 30, NULL, 157, 37566, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:27:29', '2017-08-11 06:27:29'),
(18457, 1, 0, NULL, 74, 'Foster Clark\'s Vanilla Essence 28ml', '5352101434501', 30, NULL, 157, 37567, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:27:31', '2017-08-11 06:27:31'),
(18458, 1, 0, NULL, 74, 'Foster Clark\'s Chocolate Essence 28ml', '5352101283352', 30, NULL, 157, 37568, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:28:43', '2017-08-11 06:28:43'),
(18459, 1, 0, NULL, 205, 'Hershey\'s Chocolate Syrup 680gm', '03431209', 30, NULL, 157, 37569, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:29:02', '2017-08-11 06:29:02'),
(18460, 1, 0, NULL, 74, 'Foster Clark\'s Colour Reb Rouge 28ml', '5352101557224', 30, NULL, 157, 37570, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:29:27', '2017-08-11 06:29:27'),
(18461, 1, 0, NULL, 177, 'Memory Baking Powder 160gm', '8802711126268♪', 30, NULL, 157, 37571, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:30:03', '2017-08-11 06:30:03'),
(18462, 1, 0, NULL, 74, 'Foster Clark\'s Essence Strawberry 28ml', '5352101204616', 30, NULL, 157, 37572, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:30:11', '2017-08-11 06:30:11'),
(18463, 1, 0, NULL, 177, 'Memory Corn Flour 160gm', '8802711126367♪', 30, NULL, 157, 37573, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:30:49', '2017-08-11 06:30:49'),
(18464, 1, 0, NULL, 74, 'Foster Clark\'s Essence Orange 28ml', '5352101787812', 30, NULL, 157, 37574, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:30:57', '2017-08-11 06:30:57'),
(18465, 1, 0, NULL, 74, 'Foster Clark\'s Essence Rose 28ml', '5352101667633', 30, NULL, 157, 37575, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:31:35', '2017-08-11 06:31:35'),
(18466, 1, 0, NULL, 177, 'Memory Custard Powder 160gm', '8802711126381♪', 30, NULL, 157, 37576, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:32:06', '2017-08-11 06:32:06'),
(18467, 1, 0, NULL, 107, 'Sajeeb Isobgul Orange 100gm', '8941170034131', 30, NULL, 157, 37577, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:32:31', '2017-08-11 06:32:31'),
(18468, 1, 0, NULL, 177, 'Friends Corn Flour ', '11708111846800', 30, NULL, 157, 37578, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:33:15', '2017-08-11 06:33:15'),
(18469, 1, 0, NULL, 107, 'Sajeeb Isobgul Lemon 100gm', '8941170034148', 30, NULL, 157, 37579, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:33:32', '2017-08-11 06:33:32'),
(18471, 1, 0, NULL, 209, '<NAME> 50gm', '846656000069♪', 30, NULL, 157, 37580, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:35:55', '2017-08-11 06:35:55'),
(18472, 1, 0, NULL, 74, 'Foster Clark\'s Colour Yellow Jaune 28ml', '5352101732331', 30, NULL, 157, 37581, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:36:01', '2017-08-11 06:36:01'),
(18473, 1, 0, NULL, 74, 'Foster Clark\'s Essence Mango 28ml', '5352101139512', 30, NULL, 157, 37582, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:36:40', '2017-08-11 06:36:40'),
(18474, 1, 0, NULL, 177, '<NAME> 50gm', '180119791119♪', 30, NULL, 157, 37583, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:37:01', '2017-08-11 06:37:01'),
(18476, 1, 0, NULL, 74, 'Foster Clark\'s Colour Blue Bleu', '5352101196515', 30, NULL, 157, 37584, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:37:56', '2017-08-11 06:37:56'),
(18477, 1, 0, NULL, 177, '<NAME> 100gm', '180119791164♪', 30, NULL, 157, 37585, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:38:40', '2017-08-11 06:38:40'),
(18478, 1, 0, 388, 177, '<NAME> 28ml', '180119790839', 30, NULL, 157, 37586, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:39:07', '2017-08-11 06:44:58'),
(18479, 1, 0, NULL, 177, 'Haiko Baking Powder BIB 150gm', '180119790440♪', 30, NULL, 157, 37587, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:39:59', '2017-08-11 06:39:59'),
(18481, 1, 0, 388, 177, 'Dreem Orange Colour Essence 28ml', '180119790860', 30, NULL, 157, 37588, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:40:03', '2017-08-11 06:44:42'),
(18482, 1, 0, 388, 177, 'Dreem Orange Essence 28ml', '180119790808', 30, NULL, 157, 37589, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:40:43', '2017-08-11 06:45:15'),
(18483, 1, 0, NULL, 74, '<NAME>\'s Creme Caramel 50gm', '5352101422614♪', 30, NULL, 157, 37590, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:41:10', '2017-08-11 06:41:10'),
(18484, 1, 0, 388, 177, 'Dreem Mango Essence 28ml', '180119790792', 30, NULL, 157, 37591, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:41:18', '2017-08-11 06:44:22'),
(18485, 1, 0, 388, 177, 'Dreem Vanilla Essence 28ml', '180119790778', 30, NULL, 157, 37592, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:42:01', '2017-08-11 06:44:08'),
(18486, 1, 0, NULL, 74, '<NAME>\'s Whipped Cream 72gm', '5352101097287♪', 30, NULL, 157, 37593, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:42:23', '2017-08-11 06:42:23'),
(18487, 1, 0, 388, 177, 'Dreem Chocolate Colour 28ml', '180119790891', 30, NULL, 157, 37594, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:42:52', '2017-08-11 06:43:54'),
(18488, 1, 0, NULL, 177, 'Haiko Ice cream Powder Vanilla 160gm', '180119790327♪', 30, NULL, 157, 37595, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:43:36', '2017-08-11 06:43:36'),
(18489, 1, 0, NULL, 177, '<NAME> 10gm', '180119790624♪', 30, NULL, 157, 37596, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:44:36', '2017-08-11 06:44:36'),
(18490, 1, 0, NULL, 177, '<NAME> Powder 20gm', '180119790631♪', 30, NULL, 157, 37597, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:45:29', '2017-08-11 06:45:29'),
(18491, 1, 0, NULL, 177, 'Dreem Strawberry Jelly Powder 70gm', '180119790754', 30, NULL, 157, 37598, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:46:17', '2017-08-11 06:46:17'),
(18492, 1, 0, NULL, 177, 'Memory Bit Salt 100gm', '8802711126565♪', 30, NULL, 157, 37599, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:46:21', '2017-08-11 06:46:21'),
(18493, 1, 0, NULL, 177, 'Dreem Mango Jelly Powder 70gm', '180119790747', 30, NULL, 157, 37600, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:47:04', '2017-08-11 06:47:04'),
(18494, 1, 0, NULL, 177, '<NAME> 10gm', '180119790976♪', 30, NULL, 157, 37601, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:47:21', '2017-08-11 06:47:21'),
(18495, 1, 0, NULL, 177, '<NAME> Jelly Powder 70gm', '180119790730', 30, NULL, 157, 37602, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:47:47', '2017-08-11 06:47:47'),
(18496, 1, 0, NULL, 177, '<NAME> 20gm', '11708111849600', 30, NULL, 157, 37603, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:48:16', '2017-08-11 06:48:16'),
(18497, 1, 0, NULL, 177, '<NAME> 70gm', '180119790761', 30, NULL, 157, 37604, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:48:25', '2017-08-11 06:48:25'),
(18498, 1, 0, NULL, 177, '<NAME> 20gm', '180119790228♪', 30, NULL, 157, 37605, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:49:44', '2017-08-11 06:49:44'),
(18499, 1, 0, NULL, 187, '<NAME> Vanilla Culinary Essence 28ml', '8906037691933', 30, NULL, 157, 37606, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:50:18', '2017-08-11 06:50:18'),
(18500, 1, 0, NULL, 177, 'Haiko White Pepper 25gm', '180119790044♪', 37, NULL, 157, 37607, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:50:56', '2017-08-11 06:50:56'),
(18501, 1, 0, NULL, 187, 'Bajaj Savory Chocolate Culinary Essence 28ml ', '8906037692107', 30, NULL, 157, 37608, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:51:03', '2017-08-11 06:51:03'),
(18502, 1, 0, NULL, 177, '<NAME> Powder 30gm', '11708111850200', 30, NULL, 157, 37609, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:51:44', '2017-08-11 06:51:44'),
(18503, 1, 0, NULL, 187, 'Bajaj Savory Chocolate Food Colouring 28ml', '8906037692008', 30, NULL, 157, 37610, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:52:13', '2017-08-11 06:52:13'),
(18504, 1, 0, NULL, 187, '<NAME> Strawberry Culinary Essence 28ml', '8906037691988', 30, NULL, 157, 37611, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:53:02', '2017-08-11 06:53:02'),
(18505, 1, 0, NULL, 187, '<NAME> Banana Culinary Essence 28ml', '8906037692268', 30, NULL, 157, 37612, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:53:39', '2017-08-11 06:53:39'),
(18506, 1, 0, NULL, 177, 'Haiko Clove Powder 20gm', '180119790266♪', 30, NULL, 157, 37613, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:53:44', '2017-08-11 06:53:44'),
(18508, 1, 0, NULL, 187, '<NAME> Reb Food Colouring 28ml', '8906037692046', 30, NULL, 157, 37614, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:54:28', '2017-08-11 06:54:28'),
(18509, 1, 0, NULL, 74, 'Foster Clark\'s Baking Powder 110gm', '5352101825736♪', 30, NULL, 157, 37615, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:54:56', '2017-08-11 06:54:56'),
(18510, 1, 0, NULL, 187, '<NAME> Culinary Essence 28ml', '8906037691964', 30, NULL, 157, 37616, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:55:53', '2017-08-11 06:55:53'),
(18511, 1, 0, NULL, 187, '<NAME> Yellow Food Colouring 28ml', '8906037692022', 30, NULL, 157, 37617, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:56:46', '2017-08-11 06:56:46'),
(18513, 1, 0, NULL, 187, '<NAME> Green Food Colouring Green 28ml', '8900090240220', 30, NULL, 157, 37618, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:57:36', '2017-08-11 06:57:36'),
(18514, 1, 0, NULL, 187, '<NAME> Rose Culinary Essence 28ml', '8906037691940', 30, NULL, 157, 37619, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:58:24', '2017-08-11 06:58:24'),
(18515, 1, 0, NULL, 177, 'Haiko Tasting Salt 100gm', '1801119790600', 30, NULL, 157, 37620, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 06:59:01', '2017-08-11 06:59:01'),
(18517, 1, 0, NULL, 107, 'Tasting salt 100gm', '8941170011040', 30, NULL, 157, 37621, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:01:31', '2017-08-11 07:01:31'),
(18518, 1, 0, NULL, 177, '<NAME> 28ml', '180119790709', 30, NULL, 157, 37622, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:02:24', '2017-08-11 07:02:24'),
(18519, 1, 0, NULL, 107, 'Tasting Salt 454gm', '8941170011057', 30, NULL, 157, 37623, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:03:22', '2017-08-11 07:03:22'),
(18520, 1, 0, NULL, 177, '<NAME> 100gm', '11708111852000', 30, NULL, 157, 37624, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:03:52', '2017-08-11 07:03:52'),
(18522, 1, 0, NULL, 74, 'Foster Clark\'s Bicarbonate of Soda 150gm', '5352101665769', 30, NULL, 157, 37625, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:06:44', '2017-08-11 07:06:44'),
(18523, 1, 0, NULL, 177, 'Memory Hot Salt 100gm', '8802711128262', 30, NULL, 157, 37626, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:06:59', '2017-08-11 07:06:59'),
(18524, 1, 0, NULL, 74, 'Foster Clark\'s Baking Powder 225gm', '5352101142611', 30, NULL, 157, 37627, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:07:28', '2017-08-11 07:07:28'),
(18525, 1, 0, NULL, 187, '<NAME> Pineapple Culinary Essence 28ml', '8906037691957', 30, NULL, 157, 37628, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:08:21', '2017-08-11 07:08:21'),
(18526, 1, 0, NULL, 74, 'Foster Clark\'s Corn Flour 200gm', '5352101947193♪', 30, NULL, 157, 37629, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:08:37', '2017-08-11 07:08:37'),
(18527, 1, 0, NULL, 107, 'Sajeeb Isobgul Natural 100gm', '8941170034155', 30, NULL, 157, 37630, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:09:05', '2017-08-11 07:09:05'),
(18528, 1, 0, NULL, 107, 'Sajeeb Pure Isobgul Bhushi 22gm', '8941170034162', 30, NULL, 157, 37631, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:11:19', '2017-08-11 07:11:19'),
(18529, 1, 0, NULL, 131, 'BD Isobgul 50gm', '8850356970067', 30, NULL, 157, 37632, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:12:46', '2017-08-11 07:12:46'),
(18530, 1, 0, NULL, 177, 'Haiko Corn Flour 150gm', '180119790433', 30, NULL, 157, 37633, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:13:16', '2017-08-11 07:13:16'),
(18531, 1, 0, NULL, 213, 'Radhuni Turmeric Powder 1kg', '8941100510063', 30, NULL, 157, 37634, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:13:37', '2017-08-11 07:13:37'),
(18533, 1, 0, NULL, 177, '<NAME> Powder 150gm', '180119790457', 30, NULL, 157, 37635, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:14:01', '2017-08-11 07:14:01'),
(18534, 1, 0, NULL, 213, 'Radhuni Chilli Powder 1kg', '8941100510148♪', 30, NULL, 157, 37636, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:14:39', '2017-08-11 07:14:39'),
(18536, 1, 0, NULL, 131, 'BD Turmeric Powder 200gm', '8850356100204', 30, NULL, 157, 37637, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:15:39', '2017-08-11 07:15:39'),
(18537, 1, 0, NULL, 213, 'Radhuni Coriander Powder 500gm', '8941100510216♪', 30, NULL, 157, 37638, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:15:59', '2017-08-11 07:15:59'),
(18539, 1, 0, NULL, 131, 'BD Chilli Powder 500gm', '8850356110456', 30, NULL, 157, 37639, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:17:12', '2017-08-11 07:17:12'),
(18540, 1, 0, NULL, 213, 'Radhuni Turmeric Powder 500gm', '8941100510056', 30, NULL, 157, 37640, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:17:22', '2017-08-11 07:17:22'),
(18541, 1, 0, NULL, 131, 'BD Panchforan 50gm', '8850356750010', 30, NULL, 157, 37641, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:18:17', '2017-08-11 07:18:17'),
(18542, 1, 0, NULL, 213, '<NAME> 500gm', '8941100510131♪', 30, NULL, 157, 37642, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:18:28', '2017-08-11 07:18:28'),
(18543, 1, 0, NULL, 131, 'BD Chilli Powder 200gm', '8850356110203', 30, NULL, 157, 37643, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:19:30', '2017-08-11 07:19:30'),
(18544, 1, 0, NULL, 213, '<NAME> 1kg', '8941100510223', 30, NULL, 157, 37644, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:20:19', '2017-08-11 07:20:19'),
(18545, 1, 0, NULL, 131, 'BD Turmeric Powder 100gm', '8850356100105', 30, NULL, 157, 37645, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:20:22', '2017-08-11 07:20:22'),
(18546, 1, 0, NULL, 213, 'Radhuni Cumin Powder 500gm', '8941100510308♪', 30, NULL, 157, 37646, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:22:00', '2017-08-11 07:22:00'),
(18547, 1, 0, NULL, 131, 'BD Farm Raised Chicken Curry Spices 20gm', '88503356640052', 30, NULL, 157, 37647, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:22:30', '2017-08-11 07:22:30'),
(18548, 1, 0, NULL, 213, 'Radhuni Cumin Powder 200gm', '8941100510285♪', 30, NULL, 157, 37648, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:23:20', '2017-08-11 07:23:20'),
(18549, 1, 0, NULL, 131, 'BD Curry Powder 100gm', '8850356610109', 30, NULL, 157, 37649, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:23:24', '2017-08-11 07:23:24'),
(18550, 1, 0, NULL, 131, 'BD Kheer Mix 150gm', '8850356810301', 30, NULL, 157, 37650, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:24:03', '2017-08-11 07:24:03'),
(18551, 1, 0, NULL, 213, '<NAME>der 200gm', '8941100510116', 30, NULL, 157, 37651, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:24:46', '2017-08-11 07:24:46'),
(18552, 1, 0, NULL, 131, 'BD Turmeric Powder 500gm ', '8850356100457', 30, NULL, 157, 37652, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:25:15', '2017-08-11 07:25:15'),
(18553, 1, 0, NULL, 131, 'BD Haleem Mix 175gm', '8850356400205', 30, NULL, 157, 37653, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:25:57', '2017-08-11 07:25:57'),
(18554, 1, 0, NULL, 213, '<NAME> 20gm', '8941100511138', 30, NULL, 157, 37654, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:26:48', '2017-08-11 07:26:48'),
(18555, 1, 0, NULL, 131, 'BD Chilli Powder 50gm', '8850356110050', 30, NULL, 157, 37655, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:27:04', '2017-08-11 07:27:04'),
(18556, 1, 0, NULL, 131, 'BD Coriander Powder 200gm', '8850356120202', 30, NULL, 157, 37656, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:27:53', '2017-08-11 07:27:53'),
(18557, 1, 0, NULL, 213, 'Radhuni Coriander Powder 15gm', '8941100510247', 30, NULL, 157, 37657, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:28:12', '2017-08-11 07:28:12'),
(18558, 1, 0, NULL, 131, 'BD Garam Masala 15gm', '8850356700022', 30, NULL, 157, 37658, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:29:03', '2017-08-11 07:29:03'),
(18559, 1, 0, NULL, 131, 'BD Cumin Powder 200gm', '8850356130201', 30, NULL, 157, 37659, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:29:31', '2017-08-11 07:29:31'),
(18560, 1, 0, NULL, NULL, 'Radhuni coriander powder50gm', '8941100510179', 30, NULL, 157, 37660, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:29:56', '2017-08-11 07:29:56'),
(18561, 1, 0, NULL, 213, 'Radhuni Chicken Masala 100gm', '8941100511282', 30, NULL, 157, 37661, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:30:25', '2017-08-11 07:30:25'),
(18562, 1, 0, NULL, 213, 'Radhuni Chicken Tandoori Masala 50gm', '8941100511411', 30, NULL, 157, 37662, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:31:01', '2017-08-11 07:31:01'),
(18563, 1, 0, NULL, 213, 'Radhuni panchforan powdered 50gm', '8941100510988♪', 30, NULL, 157, 37663, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:32:21', '2017-08-11 07:32:21'),
(18564, 1, 0, NULL, 213, 'Radhuni Roast Masala 35gm', '8941100511206', 30, NULL, 157, 37664, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:32:22', '2017-08-11 07:32:22'),
(18565, 1, 0, NULL, 213, 'Radhuni Khichuri Mix 500gm', '8941100511787', 30, NULL, 157, 37665, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:32:59', '2017-08-11 07:32:59'),
(18566, 1, 0, NULL, 213, '<NAME> 50gm', '8941100511053', 30, NULL, 157, 37666, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:33:43', '2017-08-11 07:33:43'),
(18567, 1, 0, NULL, 213, 'Radhuni coriander powder 200gm', '8941100510193♪', 30, NULL, 157, 37667, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:34:08', '2017-08-11 07:34:08'),
(18568, 1, 0, NULL, 213, 'Radhuni Haleem Mix 200gm', '8941100511725', 30, NULL, 157, 37668, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:34:13', '2017-08-11 07:34:13'),
(18569, 1, 0, NULL, 213, 'Radhuni Mejbani Beef Masala 68gm', '8941100511435', 30, NULL, 157, 37669, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:35:00', '2017-08-11 07:35:00'),
(18570, 1, 0, NULL, 213, 'Radhuni chili powder 100gm', '8941100510100♪', 30, NULL, 157, 37670, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:35:30', '2017-08-11 07:35:30'),
(18571, 1, 0, NULL, 213, 'cumin powder50gm', '11708111857100', 30, NULL, 157, 37671, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:36:49', '2017-08-11 07:36:49'),
(18572, 1, 0, NULL, 213, 'Radhuni Borhani Masala 50gm', '8941100511084', 30, NULL, 157, 37672, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:37:12', '2017-08-11 07:37:12'),
(18573, 1, 0, NULL, 213, 'Radhuni Falooda Mix Mango Flavor 250gm', '8941100511855', 30, NULL, 157, 37673, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:38:00', '2017-08-11 07:38:00'),
(18574, 1, 0, NULL, 213, 'Radhuni cumin powder 50g', '8941100510254♪', 30, NULL, 157, 37674, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:38:24', '2017-08-11 07:38:24'),
(18575, 1, 0, NULL, 213, 'Radhuni Fish Curry Masala 100gm', '8941100511176', 30, NULL, 157, 37675, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:38:50', '2017-08-11 07:38:50'),
(18576, 1, 0, NULL, 213, 'Radhuni Firni Mix 150gm', '8941100511756', 30, NULL, 157, 37676, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:39:46', '2017-08-11 07:39:46'),
(18577, 1, 0, NULL, 213, 'Radhuni cumin powder 100gm', '8941100510261♪', 30, NULL, 157, 37677, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:40:14', '2017-08-11 07:40:14'),
(18578, 1, 0, NULL, 213, 'Radhuni Tehari Masala 45gm', '8941100511404', 30, NULL, 157, 37678, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:40:50', '2017-08-11 07:40:50'),
(18579, 1, 0, NULL, 213, 'Radhuni Kabab Masala 50gm', '8941100511060', 30, NULL, 157, 37679, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:41:25', '2017-08-11 07:41:25'),
(18580, 1, 0, NULL, 213, 'Radhuni turmeric powder 200gm', '8941100510032♪', 30, NULL, 157, 37680, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:41:52', '2017-08-11 07:41:52'),
(18581, 1, 0, NULL, 213, '<NAME> 40gm', '8941100511374', 30, NULL, 157, 37681, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:42:05', '2017-08-11 07:42:05'),
(18582, 1, 0, NULL, 177, '<NAME> 35gm', '180119790082', 30, NULL, 157, 37682, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:43:24', '2017-08-11 07:43:24'),
(18583, 1, 0, NULL, 213, 'Radhuni turmeric 15 gm', '8941100510001', 30, NULL, 157, 37683, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:43:57', '2017-08-11 07:43:57'),
(18584, 1, 0, NULL, 209, 'Pran Turmeric Spice Powder 200gm', '846656008225', 30, NULL, 157, 37684, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:44:21', '2017-08-11 07:44:21'),
(18585, 1, 0, NULL, 209, 'Pran Coriander Spice Powder 200gm', '846656008232', 30, NULL, 157, 37685, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:45:34', '2017-08-11 07:45:34'),
(18586, 1, 0, NULL, 213, 'Radhuni chili powder15gm', '8941100510087', 30, NULL, 157, 37686, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:45:45', '2017-08-11 07:45:45'),
(18587, 1, 0, NULL, 209, 'Pran Chilli Spice Powder 200gm', '846656008218', 30, NULL, 157, 37687, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:46:32', '2017-08-11 07:46:32'),
(18588, 1, 0, NULL, 177, 'Haiko Kabab Masala 35gm', '180119790112', 30, NULL, 157, 37688, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:48:02', '2017-08-11 07:48:02'),
(18589, 1, 0, NULL, 213, 'Radhuni Beef masala25gm', '8941100511305', 30, NULL, 157, 37689, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:48:07', '2017-08-11 07:48:07'),
(18590, 1, 0, NULL, 177, 'Haiko Chat Masala 40gm', '180119790150', 30, NULL, 157, 37690, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:48:44', '2017-08-11 07:48:44'),
(18591, 1, 0, NULL, 177, '<NAME> 35gm', '180119790105', 30, NULL, 157, 37691, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:49:31', '2017-08-11 07:49:31'),
(18592, 1, 0, NULL, 213, '<NAME> powder 100 gm', '8941100510186', 30, NULL, 157, 37692, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:49:55', '2017-08-11 07:49:55'),
(18593, 1, 0, NULL, 177, '<NAME>', '180119790235', 30, NULL, 157, 37693, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:49:55', '2017-08-11 07:49:55'),
(18594, 1, 0, NULL, 177, '<NAME> 35gm', '180119790129', 30, NULL, 157, 37694, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:50:29', '2017-08-11 07:50:29'),
(18596, 1, 0, NULL, 213, 'Radhuni Garam masala powder 15 gm', '8941100511015', 30, NULL, 157, 37695, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:52:21', '2017-08-11 07:52:21'),
(18598, 1, 0, NULL, 177, '<NAME> 35gm', '180119790075', 30, NULL, 157, 37696, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:52:34', '2017-08-11 07:52:34'),
(18599, 1, 0, NULL, 177, '<NAME> 40gm', '180119790136', 30, NULL, 157, 37697, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:53:08', '2017-08-11 07:53:08'),
(18601, 1, 0, NULL, 213, 'Radhuni turmeric powder 100gm', '8941100510025♪', 30, NULL, 157, 37698, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:55:28', '2017-08-11 07:55:28'),
(18603, 1, 0, NULL, 177, 'Memory kakab Masala BIB 50gm', '802711126602', 30, NULL, 157, 37699, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:56:45', '2017-08-11 07:56:45'),
(18605, 1, 0, NULL, NULL, 'Memory Mixed Masla Powder ', '01269051', 30, NULL, 157, 37700, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:57:26', '2017-08-11 07:57:26'),
(18607, 1, 0, 388, 177, 'Friends china grass120gm', '260317191208', 30, NULL, 157, 37701, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:58:40', '2017-08-11 08:03:30'),
(18609, 1, 0, NULL, 177, '<NAME>thi Powder 100gm', '180119790273', 30, NULL, 157, 37702, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 07:59:57', '2017-08-11 07:59:57'),
(18610, 1, 0, NULL, 177, 'Friends kheer mix150gm', '2611813241504♪', 30, NULL, 157, 37703, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:00:25', '2017-08-11 08:00:25'),
(18611, 1, 0, NULL, 177, 'Haiko Noodles Masala 35gm', '180119790099', 30, NULL, 157, 37704, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:01:03', '2017-08-11 08:01:03'),
(18612, 1, 0, NULL, 177, 'Haiko Tandoori Chicken 40gm', '180119790167', 30, NULL, 157, 37705, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:01:54', '2017-08-11 08:01:54'),
(18613, 1, 0, NULL, 177, 'Friends Falooda', '2606061242304', 30, NULL, 157, 37706, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:02:16', '2017-08-11 08:02:16'),
(18616, 1, 0, NULL, 177, 'Friends Haleem200gm', '260813132002♪', 30, NULL, 157, 37707, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:05:11', '2017-08-11 08:05:11'),
(18617, 1, 0, NULL, 141, 'Fresh Drinking Water 2litre', '1152009', 27, NULL, 154, 37708, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:07:34', '2017-08-11 08:07:34'),
(18618, 1, 0, NULL, 141, 'Fresh Drinking Water 1 Litre', '11510000', 27, NULL, 154, 37709, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:08:50', '2017-08-11 08:08:50'),
(18619, 1, 0, NULL, 177, 'Memory jhal Nimky 200gm', '8802711125872♪', 33, NULL, 158, 37710, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:10:04', '2017-08-11 08:10:04'),
(18621, 1, 0, NULL, 141, 'Fresh Drinking Water 500ml', '8308660011107', 27, NULL, 154, 37711, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:10:13', '2017-08-11 08:10:13'),
(18622, 1, 0, NULL, 177, 'Memory Narikel Chira 100gm', '8802711126039♪', 33, NULL, 158, 37712, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:10:52', '2017-08-11 08:10:52'),
(18623, 1, 0, NULL, 177, 'Memory Jhenuk 200gm', '8802711125926♪', 33, NULL, 158, 37713, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:11:31', '2017-08-11 08:11:31'),
(18624, 1, 0, NULL, 177, 'Memory Muruli 200gm', '8802711126022♪', 33, NULL, 158, 37714, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:12:23', '2017-08-11 08:12:23'),
(18625, 1, 0, 388, 110, 'Mum Drinking Water 1.5 Litre', '8801962686354', 27, NULL, 154, 37715, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:12:50', '2017-08-11 08:14:21'),
(18626, 1, 0, NULL, 177, 'Memory Star Monekka 200gm', '8802711128211', 33, NULL, 158, 37716, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:13:32', '2017-08-11 08:13:32'),
(18627, 1, 0, 388, 110, 'Mum Drinking Water 330ml', '880196268619', 27, NULL, 154, 37717, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:13:34', '2017-08-11 08:15:04'),
(18628, 1, 0, NULL, 177, 'Memory Pesta Papor 150gm', '8802711126527♪', 33, NULL, 158, 37718, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:14:37', '2017-08-11 08:14:37'),
(18629, 1, 0, NULL, 177, 'Memory Diabetis Murli 200gm', '8802711126619♪', 33, NULL, 158, 37719, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:15:41', '2017-08-11 08:15:41'),
(18630, 1, 0, NULL, 110, 'Mum Drinking Water 500ml', '8801962686156', 27, NULL, 154, 37720, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:15:44', '2017-08-11 08:15:44'),
(18631, 1, 0, NULL, 177, 'Ha<NAME>anuts 200gm', '180119791263♪', 33, NULL, 158, 37721, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:16:41', '2017-08-11 08:16:41'),
(18632, 1, 0, NULL, 208, 'ACME Premium Drinking Water 1 Litre', '8941189504991', 27, NULL, 154, 37722, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:17:47', '2017-08-11 08:17:47'),
(18633, 1, 0, NULL, 177, 'Memory Jhuri Bhaja 200gm', '8802711125902♪', 33, NULL, 158, 37723, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:18:22', '2017-08-11 08:18:22'),
(18635, 1, 0, NULL, 177, 'Memory chui Pitha 200gm', '8282711125933♪', 33, NULL, 158, 37724, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:19:20', '2017-08-11 08:19:20'),
(18636, 1, 0, NULL, 177, 'Memory White Peanut 100gm', '8802711125957♪', 33, NULL, 158, 37725, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:20:08', '2017-08-11 08:20:08'),
(18637, 1, 0, NULL, 179, 'Kinley Drinking Water 500ml', '8907525100159', 27, NULL, 154, 37726, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:20:17', '2017-08-11 08:20:17'),
(18638, 1, 0, NULL, 177, 'Memory Bundia paket 200gm', '8802711126640♪', 33, NULL, 158, 37727, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:21:09', '2017-08-11 08:21:09'),
(18639, 1, 0, NULL, 209, 'Pran Seasoning tasty 12pcs ', '846656013359♪', 33, NULL, 158, 37728, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:23:05', '2017-08-11 08:23:05'),
(18640, 1, 0, NULL, 177, 'Memory Chingri Monekka 200gm', '8802711128200', 33, NULL, 158, 37729, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:23:17', '2017-08-11 08:23:17'),
(18641, 1, 0, NULL, 177, 'Parents Chutkey Pitha 400gm', '11708111864100', 33, NULL, 158, 37730, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:24:36', '2017-08-11 08:24:36'),
(18642, 1, 0, NULL, 213, 'Radhuni cumin powder 15gm', '89411005110247', 30, NULL, 157, 37731, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:24:57', '2017-08-11 08:24:57'),
(18643, 1, 0, NULL, 177, 'Memory Misty Monekka 200gm', '8802711126084♪', 33, NULL, 158, 37732, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:25:38', '2017-08-11 08:25:38'),
(18644, 1, 0, NULL, 177, 'Haiko Coconut Cumber 100gm', '180119790501', 33, NULL, 158, 37733, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:26:33', '2017-08-11 08:26:33'),
(18645, 1, 0, NULL, 177, 'Memory Mixed Fruits Box 150gm', '8802711126244♪', 33, NULL, 158, 37734, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:26:37', '2017-08-11 08:26:37'),
(18646, 1, 0, NULL, 177, 'Memory Mug Dal 200gm', '8802711126053♪', 33, NULL, 158, 37735, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:27:17', '2017-08-11 08:27:17'),
(18647, 1, 841165119929, NULL, 209, 'The Chef Chips 100gm', '11708111864700', 33, NULL, 158, 37736, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:27:35', '2017-08-11 08:27:35'),
(18648, 1, 0, NULL, 177, 'Memory chanacur 200gm', '8802711125919♪', 33, NULL, 158, 37737, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:28:04', '2017-08-11 08:28:04'),
(18649, 1, 0, NULL, 209, 'The Chef Fuchka 200gm', '841165117000', 33, NULL, 158, 37738, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:28:10', '2017-08-11 08:28:10'),
(18650, 1, 0, NULL, 177, 'Memory Dubli vaja 200gm', '8802711125988♪', 33, NULL, 158, 37739, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:28:54', '2017-08-11 08:28:54'),
(18651, 1, 0, NULL, 177, 'Memory masla Badam100gm', '8802711125865♪', 33, NULL, 158, 37740, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:29:41', '2017-08-11 08:29:41'),
(18652, 1, 0, NULL, 1, 'Vim Dishwash liquid 500ml', '8941100611609♪', 29, NULL, 159, 37741, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:35:07', '2017-08-11 08:35:07'),
(18653, 1, 0, NULL, 83, 'Savlon Aloe Vera Antiseptic Handwash 250ml', '813903000615', 29, NULL, 159, 37742, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:35:20', '2017-08-11 08:35:20'),
(18654, 1, 0, NULL, 1, 'New Lifebuoy 200ml', '8941100614600♪', 29, NULL, 159, 37743, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:36:29', '2017-08-11 08:36:29'),
(18655, 1, 0, NULL, 1, 'Lifebuoy Mild care 180ml', '8941100614631♪', 29, NULL, 159, 37744, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:37:40', '2017-08-11 08:37:40'),
(18656, 1, 0, NULL, 115, 'Sepnil Hand Sanitizer 40ml', '8941100500606♪', 29, NULL, 159, 37745, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:39:00', '2017-08-11 08:39:00'),
(18657, 1, 0, NULL, 83, 'ACI Aerosol Insect Spray 800ml', '813903000042', 29, NULL, 159, 37746, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:39:46', '2017-08-11 08:39:46'),
(18658, 1, 0, NULL, 83, 'ACI Cockrosch spray 250ml ', '8139003000891♪', 29, NULL, 159, 37747, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:40:25', '2017-08-11 08:40:25'),
(18659, 1, 0, 388, 105, 'Hit <NAME> ', '8901023010002', 29, NULL, 159, 37748, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:41:50', '2017-08-11 08:42:44'),
(18661, 1, 0, NULL, 105, 'Hit lime mosqutoes 625ml', '8901023014321', 29, NULL, 159, 37749, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:42:30', '2017-08-11 08:42:30'),
(18662, 1, 0, NULL, 105, 'Hit lime mosqutoes', '8901023014291', 29, NULL, 159, 37750, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:43:57', '2017-08-11 08:43:57'),
(18663, 1, 0, NULL, 123, 'Jet BIB 1kg', '8941183001076♪', 29, NULL, 159, 37751, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:44:12', '2017-08-11 08:44:12'),
(18664, 1, 0, NULL, 123, 'Jet BIB 400gm', '8941183001052♪', 29, NULL, 159, 37752, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:44:46', '2017-08-11 08:44:46'),
(18665, 1, 0, NULL, 115, 'Xpel Aerosol', '8941100500392', 29, NULL, 159, 37753, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:45:10', '2017-08-11 08:45:10'),
(18666, 1, 0, NULL, 115, 'Sepnil Tea Oil Handwash180ml', '8941100502112♪', 29, NULL, 159, 37754, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:46:30', '2017-08-11 08:46:30'),
(18667, 1, 0, NULL, 188, 'Dettol cool handwash', '8941102833405', 29, NULL, 159, 37755, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:46:53', '2017-08-11 08:46:53'),
(18668, 1, 0, NULL, 83, 'ACI Aerosol Insect Spray 250gm', '813903000127', 29, NULL, 159, 37756, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:48:17', '2017-08-11 08:48:17'),
(18669, 1, 0, NULL, 115, '<NAME> Handwash 180ml', '8941100501276♪', 29, NULL, 159, 37757, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:48:18', '2017-08-11 08:48:18'),
(18671, 1, 0, NULL, 188, 'Dettpl Cool Handwash 170ml', '8941102833412♪', 29, NULL, 159, 37758, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:49:58', '2017-08-11 08:49:58'),
(18672, 1, 0, NULL, 115, 'Shakti toilet cleaner', '8941100501085', 29, NULL, 159, 37759, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:50:13', '2017-08-11 08:50:13'),
(18674, 1, 0, NULL, 123, 'Jet Liquid 600ml ', '8941183001526♪', 29, NULL, 159, 37760, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:53:58', '2017-08-11 08:53:58'),
(18675, 1, 0, NULL, 180, 'odofresh ultra toilet cleaner', '8901207500459', 29, NULL, 159, 37761, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:54:00', '2017-08-11 08:54:00'),
(18676, 1, 0, NULL, 105, 'Hit cockroaches 200ml', '8901157025071', 29, NULL, 159, 37762, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:56:09', '2017-08-11 08:56:09'),
(18677, 1, 0, NULL, 115, 'Xpel aerosol 250ml', '8941100500385', 29, NULL, 159, 37763, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:57:43', '2017-08-11 08:57:43'),
(18678, 1, 0, NULL, 123, 'Jet BIB 110gm', '8941183001038♪', 29, NULL, 159, 37764, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 08:59:42', '2017-08-11 08:59:42'),
(18679, 1, 0, NULL, 105, 'Hit cockroaches 400ml', '8901157025200', 29, NULL, 159, 37765, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:00:18', '2017-08-11 09:00:18'),
(18680, 1, 0, NULL, 123, 'Jee BIB 220gm ', '8941183001045♪', 29, NULL, 159, 37766, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:00:30', '2017-08-11 09:00:30'),
(18681, 1, 0, NULL, 123, 'Jet Liquid Detergent 1000ml', '8941183001533♪', 29, NULL, 159, 37767, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:01:52', '2017-08-11 09:01:52'),
(18682, 1, 0, NULL, 1, 'Lifebuoy Mild Care 200ml', '8941100614617♪', 29, NULL, 159, 37768, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:03:02', '2017-08-11 09:03:02'),
(18683, 1, 0, NULL, 188, 'Harpic Turbo Gel 1Litre', '8941102833337', 29, NULL, 159, 37769, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:03:11', '2017-08-11 09:03:11'),
(18684, 1, 0, NULL, 1, 'Lifebuoy Handwash 180ml', '8941100614624♪', 29, NULL, 159, 37770, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:03:54', '2017-08-11 09:03:54'),
(18685, 1, 0, NULL, 188, 'Harpic Turbo Gel 500ml', '8941100282212', 29, NULL, 159, 37771, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:04:38', '2017-08-11 09:04:38'),
(18686, 1, 0, NULL, 115, 'Maxclean Dishwash liquid 250ml', '8941100502075♪', 29, NULL, 159, 37772, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:04:47', '2017-08-11 09:04:47'),
(18687, 1, 0, NULL, 188, 'Harpic Bathroom Cleaner 500ml', '8941100283301', 29, NULL, 159, 37773, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:05:35', '2017-08-11 09:05:35'),
(18688, 1, 0, NULL, 115, 'Maxclean Antibactrial Dishwash 500ml', '8941100501672♪', 29, NULL, 159, 37774, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:06:04', '2017-08-11 09:06:04'),
(18689, 1, 0, NULL, 70, 'Unik Power Thicker Formula 500ml', '200812060602', 29, NULL, 159, 37775, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:06:37', '2017-08-11 09:06:37'),
(18690, 1, 0, NULL, 115, 'Sepnil Hand Sanitizer 200ml', '8941100500613♪', 29, NULL, 159, 37776, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:07:00', '2017-08-11 09:07:00'),
(18691, 1, 0, NULL, 105, 'Good Knight Advanced Silver Refiill 45 Night ', '8901157001068', 29, NULL, 159, 37777, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:08:12', '2017-08-11 09:08:12'),
(18693, 1, 0, NULL, 83, 'Wonder Antibacterial Dishwash Liquid 500ml', '8139003001188♪', 29, NULL, 159, 37778, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:08:14', '2017-08-11 09:08:14'),
(18694, 1, 0, NULL, 115, 'Chamak Fabric Brightner 50ml', '8941100501221♪', 29, NULL, 159, 37779, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:09:23', '2017-08-11 09:09:23'),
(18695, 1, 0, NULL, 105, 'Good Knight Advanced Powerlite Combi Pack 45 Night', '8901157003055', 29, NULL, 159, 37780, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:09:43', '2017-08-11 09:09:43'),
(18696, 1, 0, NULL, 105, 'Good Knight Advanced Dual Power Mode', '8901157001136', 29, NULL, 159, 37781, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:10:39', '2017-08-11 09:10:39'),
(18697, 1, 0, NULL, 188, '<NAME> 250ml ', '8941100280621♪', 29, NULL, 159, 37782, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:11:05', '2017-08-11 09:11:05'),
(18699, 1, 0, NULL, 105, 'Good Knight Xpress System Liquid Vapouriser', '8901023011719', 29, NULL, 159, 37783, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:11:33', '2017-08-11 09:11:33'),
(18700, 1, 0, NULL, 188, 'Trix Lemon Dishwash Liquid 500ml', '8941100280607♪', 29, NULL, 159, 37784, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:12:22', '2017-08-11 09:12:22'),
(18701, 1, 0, NULL, 105, 'Good Knight Advanced 2x Power', '8901157001143', 29, NULL, 159, 37785, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:12:36', '2017-08-11 09:12:36'),
(18702, 1, 0, NULL, 105, 'Good Knight Advanced Vapouriser System 45 Night', '8901157003017', 29, NULL, 159, 37786, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:13:31', '2017-08-11 09:13:31'),
(18703, 1, 0, NULL, 115, 'Sepnil Hand shop 75gm', '8941100501559♪', 29, NULL, 159, 37787, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:13:53', '2017-08-11 09:13:53'),
(18704, 1, 0, NULL, 105, 'Good Knight Xpress System Liquid Vapouriser 2x Dual Power Mo', '8901023011726', 29, NULL, 159, 37788, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:14:20', '2017-08-11 09:14:20'),
(18705, 1, 0, NULL, 123, 'Jet BIB 45gm', '941183001021', 29, NULL, 159, 37789, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:14:49', '2017-08-11 09:14:49'),
(18706, 1, 0, 388, 180, 'Odonil Laverder Meadows Nature Air Freshener Hanger Pack', '8901207502996', 29, NULL, 159, 37790, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:54:59', '2017-08-11 09:55:54'),
(18707, 1, 0, NULL, 74, 'Cocorex Lemon Bleach ', '9556202801026♪', 29, NULL, 159, 37791, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:55:13', '2017-08-11 09:55:13'),
(18708, 1, 0, NULL, 180, 'Odomos MOsquito Cream 50gm', '8901207500046♪', 29, NULL, 159, 37792, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:56:19', '2017-08-11 09:56:19'),
(18709, 1, 0, NULL, 180, 'Odonil Jasmine Mist Air Freshener Hanger Pack', '8901207502934', 29, NULL, 159, 37793, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:56:47', '2017-08-11 09:56:47'),
(18710, 1, 0, NULL, 180, 'Odonil Mystic Rose Air Freshener Hanger Pack', '8901207503436', 29, NULL, 159, 37794, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:57:35', '2017-08-11 09:57:35'),
(18711, 1, 0, NULL, 105, 'Aer Surf Blue Spray 300ml', '8901157045116♪', 29, NULL, 159, 37795, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:58:17', '2017-08-11 09:58:17'),
(18712, 1, 0, NULL, 180, 'Odonil Orchid Dew Air Freshener', '8901207502965', 29, NULL, 159, 37796, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:58:24', '2017-08-11 09:58:24'),
(18714, 1, 0, NULL, 192, 'Armaf Enchanted Spring 300ml', '6294015102376♪', 29, NULL, 159, 37797, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 09:59:43', '2017-08-11 09:59:43'),
(18716, 1, 0, NULL, 192, 'Armaf Enchanted Bloom 300ml', '6294015102345♪', 29, NULL, 152, 37798, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 10:00:44', '2017-08-11 10:00:44'),
(18717, 1, 0, NULL, 123, 'Fay Rose Air Freshener e300ml', '8941183005081', 29, NULL, 159, 37799, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 10:00:50', '2017-08-11 10:00:50'),
(18718, 1, 0, NULL, 123, 'Fay Narcissus e300ml', '8941183005050', 29, NULL, 159, 37800, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 10:01:29', '2017-08-11 10:01:29'),
(18719, 1, 0, NULL, 192, 'Armaf enchanted Romance ', '6294015102369♪', 29, NULL, 159, 37801, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 10:01:30', '2017-08-11 10:01:30'),
(18720, 1, 0, NULL, 123, 'Fay Anti Tabacco Air Freshener e300ml', '5086230025339', 29, NULL, 159, 37802, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 10:02:15', '2017-08-11 10:02:15'),
(18721, 1, 0, NULL, 105, 'Aer Petal Crush Pink Spray 300ml', '8901157045093♪', 29, NULL, 159, 37803, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 10:02:45', '2017-08-11 10:02:45'),
(18722, 1, 0, NULL, 123, 'Fay Jasmine Air Freshener e300ml', '8941183005128', 29, NULL, 159, 37804, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 10:02:50', '2017-08-11 10:02:50'),
(18723, 1, 0, NULL, 123, 'Fay Lily Air Freshener', '8941183005135', 29, NULL, 159, 37805, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 10:03:12', '2017-08-11 10:03:12'),
(18724, 1, 0, NULL, 123, 'Fay Orchid Air Freshener e300ml', '8941183005111', 29, NULL, 159, 37806, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 10:03:43', '2017-08-11 10:03:43'),
(18725, 1, 0, NULL, 115, 'Spring Anti Tobacco Air Freshener 300ml', '8941100501832♪', 29, NULL, 159, 37807, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 10:04:00', '2017-08-11 10:04:00'),
(18726, 1, 0, NULL, 194, 'Clariss Jasmine Air Freshener 300ml e', '3587925336812', 29, NULL, 159, 37808, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 10:04:28', '2017-08-11 10:04:28'),
(18727, 1, 0, NULL, 194, 'Clariss Dark Fantasy Air Freshener 300ml e', '3587925344626', 29, NULL, 159, 37809, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 10:05:11', '2017-08-11 10:05:11'),
(18728, 1, 0, NULL, 115, 'Spring Floral Fresh Air Freshener 300ml', '8941100500293♪', 29, NULL, 159, 37810, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 10:05:14', '2017-08-11 10:05:14'),
(18729, 1, 0, NULL, 194, 'Clariss Lemon Air Freshener 300ml e', '3587925336829', 29, NULL, 159, 37811, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 10:06:18', '2017-08-11 10:06:18'),
(18730, 1, 0, NULL, 115, 'Spring Orange Fresh Air Freshener300ml', '8941100501191♪', 29, NULL, 159, 37812, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 10:06:19', '2017-08-11 10:06:19'),
(18731, 1, 0, NULL, 194, 'Spring Lemon Fresh Ari Freshener', '8941100501207', 29, NULL, 159, 37813, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 10:06:57', '2017-08-11 10:06:57'),
(18732, 1, 0, NULL, 192, 'Armaf Enchanted Ovintage Air Freshener 300ml', '6294015102390♪', 29, NULL, 159, 37814, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 10:07:41', '2017-08-11 10:07:41'),
(18733, 1, 0, 388, 114, 'Bashundhara White Facial Tissue 240 pcs', '8941193073728', 29, NULL, 159, 37815, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 22:44:21', '2017-08-11 22:50:30'),
(18734, 1, 0, 388, 141, 'Fresh White Tissue 120 sheets', '8941161000411', 29, NULL, 159, 37816, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 22:45:34', '2017-08-11 22:47:57'),
(18735, 1, 0, 388, 141, 'Fresh White Tissue 240 sheets', '8941161000961', 29, NULL, 159, 37817, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 22:46:18', '2017-08-11 22:48:32'),
(18736, 1, 0, 388, 114, 'Bashundhara White Facial Tissue 120 pcs', '8941193073513', 29, NULL, 159, 37818, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 22:47:14', '2017-08-11 22:50:59'),
(18737, 1, 0, NULL, 141, 'Fresh Perfumed Tissue 240 sheets', '8941161000978', 29, NULL, 159, 37819, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 22:49:20', '2017-08-11 22:49:20'),
(18739, 1, 0, NULL, 123, 'Fay Facial Tissue 180 sheets', '8941183002530', 29, NULL, 159, 37820, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 22:51:10', '2017-08-11 22:51:10'),
(18740, 1, 0, NULL, 123, 'Fay Facial Tissue 280 sheets', '8941183002561', 29, NULL, 159, 37821, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 22:52:10', '2017-08-11 22:52:10'),
(18742, 1, 0, NULL, 141, 'Fresh White Tissue 200 sheets', '8941161000664', 29, NULL, 159, 37822, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 22:52:53', '2017-08-11 22:52:53'),
(18743, 1, 0, NULL, 141, 'Fresh White Tissue 300 sheets', '8941161001265', 29, NULL, 159, 37823, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 22:55:05', '2017-08-11 22:55:05'),
(18745, 1, 0, NULL, 114, 'Bashundhara Kitchen Towels', '8941193078020', 29, NULL, 159, 37824, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:00:39', '2017-08-11 23:00:39'),
(18746, 1, 0, NULL, 114, 'Bashundhara White Facial Tissue', '8941193073599', 29, NULL, 159, 37825, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:01:32', '2017-08-11 23:01:32'),
(18747, 1, 0, NULL, 114, 'Bashundhara Gold Toilet Tissue', '8941193067017', 29, NULL, 159, 37826, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:03:00', '2017-08-11 23:03:00'),
(18748, 1, 0, NULL, 123, 'Fay Toilet Tissues ', '8941183004527', 29, NULL, 159, 37827, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:05:24', '2017-08-11 23:05:24'),
(18749, 1, 0, NULL, 114, 'Bashundhara Paper napkin', '8941193064054', 29, NULL, 159, 37828, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:08:49', '2017-08-11 23:08:49'),
(18750, 1, 0, NULL, 114, 'Bashundhara Green Tissue ', '11708111875000', 29, NULL, 159, 37829, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:09:08', '2017-08-11 23:09:08'),
(18751, 1, 0, NULL, 1, 'Wheel 2 in 1 Clean & Rose Fresh 500 gm', '8941100651230', 29, NULL, 159, 37830, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:11:17', '2017-08-11 23:11:17'),
(18752, 1, 0, NULL, 216, 'Ghari Detergent Power1kg', '701197886681', 29, NULL, 159, 37831, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:11:27', '2017-08-11 23:11:27'),
(18753, 1, 0, NULL, 216, 'Ghari Detergent Power 500gm', '701197886674', 29, NULL, 159, 37832, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:12:01', '2017-08-11 23:12:01'),
(18754, 1, 0, NULL, 115, 'Chaka Supper White 500 gm', '8941100501320', 29, NULL, 159, 37833, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:12:50', '2017-08-11 23:12:50'),
(18755, 1, 0, NULL, 188, 'Harpic Cleaning Powder 200gm', '8941100282113', 29, NULL, 159, 37834, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:13:55', '2017-08-11 23:13:55'),
(18756, 1, 0, NULL, 1, 'Wheel 2 in 1 Clean & Rose Fresh 1 kg', '8941100651254', 29, NULL, 159, 37835, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:14:04', '2017-08-11 23:14:04'),
(18757, 1, 0, 388, 188, 'Harpic Cleaning Powder 400gm', '8941100282120', 29, NULL, 159, 37836, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:14:38', '2017-08-11 23:15:10'),
(18758, 1, 0, NULL, 1, 'Rin Power Bright 1 kg', '8941100649886', 29, NULL, 159, 37837, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:15:13', '2017-08-11 23:15:13'),
(18759, NULL, 0, NULL, 115, 'Chaka Supper White 1000 gm', '8941100501337', 29, NULL, 159, 37838, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:16:36', '2017-08-11 23:16:36'),
(18760, 1, 0, NULL, 186, 'Tibet Laundry Soap Blue', '8513692123183', 29, NULL, 159, 37839, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:16:44', '2017-08-11 23:16:44'),
(18761, 1, 0, NULL, 115, '<NAME>', '8941100501443', 29, NULL, 159, 37840, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:17:45', '2017-08-11 23:17:45'),
(18762, 1, 0, NULL, 1, 'Wheel 2 in 1 Clean & Fresh 500 gm', '8941100651216', 29, NULL, 159, 37841, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:18:29', '2017-08-11 23:18:29'),
(18763, 1, 0, NULL, 115, 'Maxclean Dishwash Bar 325gm', '8941100501382', 29, NULL, 159, 37842, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:18:37', '2017-08-11 23:18:37'),
(18764, 1, 0, NULL, 115, 'Maxclean Dishwash Bar 110gm', '8941100501399', 29, NULL, 159, 37843, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:19:24', '2017-08-11 23:19:24'),
(18765, 1, 0, NULL, 1, 'Rin Power Bright 500 gm', '8941100649893', 29, NULL, 159, 37844, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:19:35', '2017-08-11 23:19:35'),
(18766, 1, 0, NULL, 216, 'Ghari Laundry Soap', '8901331003680', 29, NULL, 159, 37845, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:20:58', '2017-08-11 23:20:58'),
(18767, 1, 0, NULL, 115, 'Chaka Advanced Smartest Ever Formulation 1000gm', '8941100500361', 29, NULL, 159, 37846, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:21:06', '2017-08-11 23:21:06'),
(18768, 1, 0, NULL, 1, 'Vim Lemon Bar 325gm', '8941100651209', 29, NULL, 159, 37847, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:21:56', '2017-08-11 23:21:56'),
(18769, 1, 0, NULL, 115, 'Chaka Advanced Smartest Ever Formulation 500 gm', '8941100500354', 29, NULL, 159, 37848, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:22:25', '2017-08-11 23:22:25'),
(18770, 1, 0, NULL, 1, 'Vim Lemon Bar 125gm', '8941100617700', 29, NULL, 159, 37849, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:22:39', '2017-08-11 23:22:39'),
(18771, 1, 0, NULL, 83, 'Wonder Dishwash Bar', '8139003000952', 24, NULL, 159, 37850, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:24:10', '2017-08-11 23:24:10'),
(18773, 1, 0, NULL, 188, 'Trix Dish Washing Bar', '8941102833481', 29, NULL, 159, 37851, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:25:09', '2017-08-11 23:25:09'),
(18774, 1, 0, NULL, 188, '<NAME>matic', '8901396159001', 29, NULL, 159, 37852, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:25:59', '2017-08-11 23:25:59'),
(18775, NULL, 0, NULL, 186, 'Fast Wash Brilliant White 500 gm', '8513691417481', 29, NULL, 159, 37853, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:26:25', '2017-08-11 23:26:25'),
(18776, 1, 0, NULL, 83, 'Wonder Steel Scrubber', '8139003001652', 29, NULL, 159, 37854, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:27:19', '2017-08-11 23:27:19'),
(18777, 1, 0, NULL, 1, 'Surf Excel Quick Wash 1 Kg ', '8941100651896', 29, NULL, 159, 37855, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:28:09', '2017-08-11 23:28:09'),
(18778, 1, 0, NULL, 216, 'Uni Wash Detergent Powder 500gm', '701197886735', 29, NULL, 159, 37856, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:28:22', '2017-08-11 23:28:22'),
(18779, 1, 0, NULL, 1, 'Surf Excel Quick Wash 500 gm', '8941100651872', 29, NULL, 159, 37857, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:29:29', '2017-08-11 23:29:29'),
(18780, 1, 0, NULL, 186, 'Tibet Laundry Soap Green', '8513692123176', 29, NULL, 159, 37858, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:29:34', '2017-08-11 23:29:34'),
(18781, 1, 0, NULL, 70, 'Rok Bleaching Powder 500gm', '200812190301', 29, NULL, 159, 37859, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:30:31', '2017-08-11 23:30:31'),
(18782, 1, 0, NULL, 186, 'Fast Wash Brilliant White 1000 gm', '8513691411908', 29, NULL, 159, 37860, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:31:03', '2017-08-11 23:31:03'),
(18783, 1, 0, NULL, 70, 'Rok Bleaching Powder 200gm', '200812190302', 29, NULL, 159, 37861, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:31:52', '2017-08-11 23:31:52'),
(18784, 1, 0, NULL, 70, 'Rok Floor Cleaner Lemon 900ml', '200812060303', 29, NULL, 159, 37862, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:33:46', '2017-08-11 23:33:46'),
(18785, 1, 0, 388, 188, 'Mr.Brasso Refill 350 ml', '8941100285008', 29, NULL, 159, 37863, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:36:00', '2017-08-11 23:50:26'),
(18786, 1, 0, NULL, 70, 'Rok Floor Cleaner Lemon 500ml', '200812060308', 29, NULL, 159, 37864, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:37:01', '2017-08-11 23:37:01'),
(18787, 1, 0, NULL, 70, 'Rok Floor Cleaner Jasminen 900ml', '200812060305', 29, NULL, 159, 37865, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:38:40', '2017-08-11 23:38:40'),
(18788, 1, 0, 388, 188, 'Lijol Disinffectant Surface Clener Jasmine 500 ml', '8941100289525', 29, NULL, 159, 37866, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:39:37', '2017-08-11 23:44:38'),
(18789, 1, 0, NULL, 70, 'Rok Floor Cleaner Rose 900ml', '200812060304', 29, NULL, 159, 37867, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:40:17', '2017-08-11 23:40:17'),
(18790, 1, 0, NULL, 83, 'Septex Floor Cleaner 500 ml', '8139003001911', 29, NULL, 159, 37868, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:40:51', '2017-08-11 23:40:51'),
(18791, 1, 0, NULL, 70, 'Rok Floor Cleaner Rose 500ml', '200812060309', 29, NULL, 159, 37869, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:42:19', '2017-08-11 23:42:19'),
(18792, 1, 0, NULL, 83, 'Septex Floor Cleaner 1 Ltr ', '8139003001577', 29, NULL, 159, 37870, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:42:21', '2017-08-11 23:42:21'),
(18793, 1, 0, NULL, 70, 'Rok Dishwashing Liquid 500ml', '200812060201', 29, NULL, 159, 37871, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:43:41', '2017-08-11 23:43:41'),
(18794, 1, 0, NULL, 188, 'Lijol Disinffectant Surface Clener Citrus 500 ml', '8941100289501', 29, NULL, 159, 37872, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:44:02', '2017-08-11 23:44:02'),
(18795, 1, 0, NULL, 70, 'Rok Glasso Glass Cleaner 350ml', '200812060401', 29, NULL, 159, 37873, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:45:16', '2017-08-11 23:45:16'),
(18796, 1, 0, NULL, 188, 'Lijol Disinffectant Surface Clener Citrus 200 ml', '8941100284209', 29, NULL, 159, 37874, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:46:32', '2017-08-11 23:46:32'),
(18797, 1, 0, NULL, 70, 'Rok Woody Wood Cleaner 350ml', '200812061002', 29, NULL, 159, 37875, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:47:24', '2017-08-11 23:47:24'),
(18798, 1, 0, NULL, 188, 'Mr.Brasso Spray gun 350 ml', '8941100284018', 29, NULL, 159, 37876, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:49:37', '2017-08-11 23:49:37'),
(18799, 1, 0, NULL, 70, 'Rok Glasso Glass Cleaner Spray 350ml', '200812060402', 29, NULL, 159, 37877, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:50:29', '2017-08-11 23:50:29'),
(18800, 1, 0, NULL, 188, 'Lijol Disinffectant Surface Clener Floral 200 ml', '8941100284100', 29, NULL, 159, 37878, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:52:38', '2017-08-11 23:52:38'),
(18801, 1, 0, NULL, 70, 'Rok Floor Cleaner Pine 3litre', '200812060314', 29, NULL, 159, 37879, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:53:06', '2017-08-11 23:53:06'),
(18802, 1, 0, NULL, 83, 'Cleanit Shinex 350 ml', '813903000585', 29, NULL, 159, 37880, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:53:47', '2017-08-11 23:53:47'),
(18803, 1, 0, NULL, 70, 'Rok Phenyle 3 litre', '2008121090401', 29, NULL, 159, 37881, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:53:55', '2017-08-11 23:53:55'),
(18804, 1, 0, NULL, 70, 'Rok Sol 1 litre', '200812060502', 29, NULL, 159, 37882, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:55:04', '2017-08-11 23:55:04'),
(18805, 1, 0, NULL, 70, 'Rok Floor Cleaner 1000ml', '200812060301', 29, NULL, 159, 37883, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:55:33', '2017-08-11 23:55:33'),
(18806, 1, 0, NULL, 70, 'Rok Sol 500ml', '200812060501', 29, NULL, 159, 37884, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:56:05', '2017-08-11 23:56:05'),
(18807, 1, 0, NULL, 205, 'FOX\'S Fruits', '8992696415409', 31, NULL, 156, 37885, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-11 23:59:40', '2017-08-11 23:59:40'),
(18808, 1, 0, NULL, 205, 'Smarties 38 g ', '11708121880800', 31, NULL, 156, 37886, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:01:41', '2017-08-12 00:01:41'),
(18809, 1, 0, NULL, 146, 'Tong Garden Cashew Nut', '8850291211409', 31, NULL, 159, 37887, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:01:48', '2017-08-12 00:01:48'),
(18810, 1, 0, NULL, 205, 'Tong Garden Cocktail Nut', '8850291531309', 31, NULL, 159, 37888, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:02:57', '2017-08-12 00:02:57'),
(18811, 1, 0, NULL, 205, 'KitKat 27.5 g', ' 8901058144345', 31, NULL, 156, 37889, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:04:15', '2017-08-12 00:04:15'),
(18812, 1, 0, NULL, 205, 'Tong Garden Almonds', '8850291291500', 31, NULL, 156, 37890, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:05:00', '2017-08-12 00:05:00'),
(18813, 1, 0, NULL, 205, 'Tong Garden Pistachios', '8850291281303', 31, NULL, 156, 37891, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:05:34', '2017-08-12 00:05:34'),
(18814, 1, 0, NULL, 205, 'Cadbary 5star 25g', '8901233021171', 31, NULL, 156, 37892, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:07:23', '2017-08-12 00:07:23'),
(18815, 1, 0, NULL, 146, 'Tong Garden Green Pea', '8850291102165', 31, NULL, 156, 37893, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:08:07', '2017-08-12 00:08:07'),
(18816, 1, 0, NULL, 205, 'Milk Chocolate 33 gm', '11708121881600', 31, NULL, 156, 37894, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:08:33', '2017-08-12 00:08:33'),
(18817, 1, 0, NULL, 146, '<NAME>', '8850291104909', 31, NULL, 156, 37895, 0, 0, 0, '\r\n', 1, 0, 1, 1, '2017-08-12 00:09:03', '2017-08-12 00:09:03'),
(18818, 1, 0, 388, 74, 'Mister Potato Chips Orginal 45gm', '9557062321129', 31, NULL, 156, 37896, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:10:17', '2017-08-12 00:56:29'),
(18819, 1, 0, NULL, 205, 'Polo 15gm', '89007976', 31, NULL, 156, 37897, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:11:09', '2017-08-12 00:11:09'),
(18820, 1, 0, NULL, 146, 'Tong Garden Salted Pistachios', '8850291010408', 31, NULL, 156, 37898, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:11:58', '2017-08-12 00:11:58'),
(18821, 1, 0, NULL, 146, 'Tong Garden salted Cashew Nut', '8850291210464', 31, NULL, 156, 37899, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:12:49', '2017-08-12 00:12:49'),
(18822, 1, 0, NULL, 146, 'Tong Garden Salted Cocktail Nut', '8850291530463', 31, NULL, 156, 37900, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:13:41', '2017-08-12 00:13:41'),
(18823, 1, 0, NULL, 146, 'Tong Garden Salted Almonds', '8140491290510', 31, NULL, 156, 37901, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:14:28', '2017-08-12 00:14:28'),
(18824, 1, 0, NULL, 205, 'Brownly Umbrella Chocolate 23g', '8992730002909', 31, NULL, 156, 37902, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:14:45', '2017-08-12 00:14:45'),
(18825, 1, 0, NULL, 146, 'Tong Garden Party Snack', '8850291510410', 31, NULL, 156, 37903, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:15:12', '2017-08-12 00:15:12'),
(18826, 1, 0, NULL, 205, 'Milkbary 13g', '89006931', 31, NULL, 156, 37904, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:16:36', '2017-08-12 00:16:36'),
(18827, 1, 0, 388, 123, 'Cadbury Choclairs 409.5gm', '8901233023496', 31, NULL, 156, 37905, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:17:34', '2017-08-12 00:19:18'),
(18828, 1, 0, NULL, 205, 'Twix 50g', '5000159459228', 31, NULL, 156, 37906, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:17:46', '2017-08-12 00:17:46'),
(18829, 1, 0, NULL, 123, 'Cadbury Choclairs 196gm', '8901233023489', 31, NULL, 156, 37907, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:18:46', '2017-08-12 00:18:46'),
(18830, 1, 0, NULL, 205, 'Cadbary Dairy Milk Chocolate 6.3g', '8901233024011', 31, NULL, 156, 37908, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:19:01', '2017-08-12 00:19:01'),
(18831, 1, 0, NULL, 205, 'Ferrero Rocher 37.5g', '80050278', 31, NULL, 156, 37909, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:20:53', '2017-08-12 00:20:53'),
(18832, 1, 0, NULL, 209, 'Pran Peanut Bar 30gm', '846656004296', 31, NULL, 156, 37910, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:21:32', '2017-08-12 00:21:32'),
(18833, 1, 0, NULL, 209, 'Pran Big Mama wafer Biscuit', '841165116430', 31, NULL, 156, 37911, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:23:32', '2017-08-12 00:23:32'),
(18834, 1, 0, NULL, 205, 'Fox\'s Crystal Clear Fruits 90g', '8992696418936', 31, NULL, 156, 37912, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:25:04', '2017-08-12 00:25:04'),
(18835, 1, 0, NULL, 107, 'Sajeeb Mango Bar', '8941170038610', 31, NULL, 156, 37913, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:25:22', '2017-08-12 00:25:22'),
(18836, 1, 0, NULL, 205, 'Cadbary Dairy Milk Chocolate 25g', '89101233023533', 31, NULL, 156, 37914, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:27:02', '2017-08-12 00:27:02'),
(18837, 1, 0, NULL, 205, 'Toblerone 150g', '7622210660848', 31, NULL, 156, 37915, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:28:16', '2017-08-12 00:28:16'),
(18838, 1, 0, NULL, 209, 'All Time Sandwich Bread 325gm', '831730008314', 33, NULL, 158, 37916, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:28:52', '2017-08-12 00:28:52'),
(18839, 1, 0, 388, 205, 'Kinder Joy For Girls 20 gm', '80768258', 31, NULL, 156, 37917, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:29:28', '2017-08-12 00:32:02'),
(18840, 1, 0, 388, 212, 'Roshmela White Bread', '11708121884000', 33, NULL, 158, 37918, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:30:05', '2017-08-12 00:34:56'),
(18841, 1, 0, NULL, 212, 'Roshmela Bread', '11708121884100', 33, NULL, 158, 37919, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:31:05', '2017-08-12 00:31:05'),
(18842, 1, 0, NULL, 205, 'Kinder Joy For Boys 20 gm', '80974482', 31, NULL, 156, 37920, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:31:34', '2017-08-12 00:31:34'),
(18843, 1, 0, NULL, 209, 'All Time Milk Bread', '846656014011', 33, NULL, 158, 37921, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:32:51', '2017-08-12 00:32:51'),
(18844, 1, 0, NULL, 205, 'Maltesers 37 gm', '5000159020312', 31, NULL, 156, 37922, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:33:02', '2017-08-12 00:33:02'),
(18845, 1, 0, NULL, 212, 'Roshmela Fruit Bun', '11708121884500', 33, NULL, 158, 37923, 0, 0, 0, '\r\n', 1, 0, 1, 1, '2017-08-12 00:33:35', '2017-08-12 00:33:35'),
(18846, 1, 0, NULL, 205, 'Eno Fruit Salt 2.07 g', '8901571006878', 31, NULL, 156, 37924, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:34:06', '2017-08-12 00:34:06'),
(18847, 1, 0, NULL, 209, 'All Time Honey Comb', '846656004548', 33, NULL, 158, 37925, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:34:08', '2017-08-12 00:34:08'),
(18848, 1, 0, NULL, 205, 'Fox\'s Crystal Clear Fruits 125g', '8992696415324', 31, NULL, 156, 37926, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:34:57', '2017-08-12 00:34:57'),
(18849, 1, 0, NULL, 212, 'Roshmela Special Dry Cake', '11708121884900', 33, NULL, 158, 37927, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:35:45', '2017-08-12 00:35:45'),
(18850, 1, 0, NULL, 205, 'Cadbary Bournville 80 gm', '8901233021720', 31, NULL, 156, 37928, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:36:34', '2017-08-12 00:36:34'),
(18851, 1, 0, NULL, 212, '<NAME>', '11708121885100', 33, NULL, 158, 37929, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:37:46', '2017-08-12 00:37:46'),
(18852, 1, 0, NULL, 205, 'Koh-kae Plus 33 gm', '8852023664675', 31, NULL, 156, 37930, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:38:46', '2017-08-12 00:38:46'),
(18853, 1, 0, NULL, 209, 'All Time Dny Cake Biscuit', '841165118823', 33, NULL, 158, 37931, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:39:15', '2017-08-12 00:39:15'),
(18854, 1, 0, NULL, 205, 'Chocoberry 10 gm', '8941114000215', 31, NULL, 156, 37932, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:39:46', '2017-08-12 00:39:46'),
(18855, 1, 0, NULL, 212, '<NAME>', '11708121885500', 33, NULL, 158, 37933, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:40:33', '2017-08-12 00:40:33'),
(18856, 1, 0, NULL, 205, 'KitKat 18 gm', '89005637', 31, NULL, 156, 37934, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:41:00', '2017-08-12 00:41:00'),
(18857, 1, 0, NULL, 209, 'All Time Cookies Biscuit', '846656004371', 33, NULL, 158, 37935, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:42:41', '2017-08-12 00:42:41'),
(18858, 1, 0, NULL, 205, 'Cadbary Milk Silk 55 gm', '8901233021829', 31, NULL, 156, 37936, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:43:55', '2017-08-12 00:43:55'),
(18859, 1, 0, NULL, 205, 'Center Fresh 20gm', '8944000195576', 31, NULL, 156, 37937, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:44:52', '2017-08-12 00:44:52'),
(18860, 1, 0, NULL, 209, 'All Time Family Cake', '846656004081', 33, NULL, 158, 37938, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:45:13', '2017-08-12 00:45:13'),
(18861, 1, 0, NULL, 205, 'Coffee Kep Candy 50 Pcs', '8941128000867', 31, NULL, 156, 37939, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:46:53', '2017-08-12 00:46:53'),
(18862, 1, 0, NULL, 205, 'Snigkers 50g', '5000159461122', 31, NULL, 156, 37940, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:47:45', '2017-08-12 00:47:45'),
(18863, 1, 0, 388, 205, 'Lotte Spout Spearmint 23.80 gm', '8801062118274', 31, NULL, 156, 37941, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:49:04', '2017-08-12 00:52:31'),
(18864, 1, 0, NULL, 205, 'Perk 13 gm', '8901233024042', 31, NULL, 156, 37942, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:50:03', '2017-08-12 00:50:03'),
(18866, 1, 0, NULL, 205, 'Lotte Spout Cinnamon 23.80 gm', '8801062118250', 31, NULL, 156, 37943, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:51:31', '2017-08-12 00:51:31'),
(18867, 1, 0, NULL, 205, 'TicTac Mint 3.8 gm', '11708121886700', 31, NULL, 156, 37944, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:54:23', '2017-08-12 00:54:23'),
(18868, 1, 0, NULL, 205, '<NAME>', '8852023003078', 31, NULL, 156, 37945, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:54:44', '2017-08-12 00:54:44'),
(18869, 1, 0, NULL, 205, '<NAME>', '8852023664668', 31, NULL, 156, 37946, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:55:28', '2017-08-12 00:55:28'),
(18870, 1, 0, NULL, 205, 'Cadbary Gems Surprise17.8 gm', '8901233022369', 31, NULL, 156, 37947, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:55:56', '2017-08-12 00:55:56'),
(18871, 1, 0, NULL, 205, 'Choc Coin 168 gm', '8850305320264', 31, NULL, 156, 37948, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:57:16', '2017-08-12 00:57:16'),
(18872, 1, 0, NULL, 74, 'Mister Potato Chips Original 75gm', '9557062301145', 31, NULL, 156, 37949, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:57:36', '2017-08-12 00:57:36'),
(18873, 1, 0, 388, 74, 'Mister Potato Chips Barbecue 75gm', '9557062301169', 31, NULL, 156, 37950, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:58:06', '2017-08-12 01:01:16'),
(18874, 1, 0, NULL, 74, 'Mister Potato Chips Hot & Spicy', '9557062321150', 31, NULL, 156, 37951, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:58:47', '2017-08-12 00:58:47'),
(18875, 1, 0, 388, 74, 'Mister Potato Chips Barbecue 45gm', '9557062321143', 31, NULL, 156, 37952, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 00:59:47', '2017-08-12 01:00:32'),
(18876, 1, 0, NULL, 74, 'Mister Potato Chips Sour Green & Onion', '9557062321136', 31, NULL, 156, 37953, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:02:20', '2017-08-12 01:02:20'),
(18877, 1, 0, NULL, NULL, 'Alpen<NAME> Jelly 132 gm', '8944000196818', 31, NULL, 156, 37954, 0, 0, 0, '', 0, 0, 1, 1, '2017-08-12 01:04:25', '2017-08-12 01:04:25'),
(18878, 1, 0, NULL, NULL, 'Mentos 145gm', '8944000194814', 31, NULL, 156, 37955, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:12:24', '2017-08-12 01:12:24'),
(18881, 1, 0, NULL, NULL, 'Alpenliee Smooth 75 pcs', '8944000196887', 31, NULL, 156, 37956, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:15:42', '2017-08-12 01:15:42'),
(18884, 1, 0, NULL, NULL, 'Alpenliebe POP', '8944000196917', 31, NULL, 156, 37957, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:17:59', '2017-08-12 01:17:59'),
(18886, 1, 0, NULL, NULL, 'Center Fruit 20 gm', '8944000195804', 31, NULL, 156, 37958, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:18:51', '2017-08-12 01:18:51'),
(18887, 1, 0, NULL, NULL, 'Mentos Marbels Sour 9.9 gm', '11708121888700', 31, NULL, 156, 37959, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:20:00', '2017-08-12 01:20:00'),
(18888, 1, 0, NULL, NULL, 'Mentos 23gm', '8944000194692', 31, NULL, 156, 37960, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:20:01', '2017-08-12 01:20:01'),
(18889, 1, 0, NULL, 209, '<NAME> Bin 13Tablets', '11708121888900', 31, NULL, 156, 37961, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:21:29', '2017-08-12 01:21:29'),
(18890, 1, 0, NULL, 189, 'Dark Spot Fade Out Cream', '8855322000502', 24, NULL, 151, 37962, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:37:34', '2017-08-12 01:37:34'),
(18891, 1, 0, NULL, 189, 'Whitening Face Wash Green Tea Extract 50 ml', '8857101141222', 24, NULL, 151, 37963, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:38:07', '2017-08-12 01:38:07'),
(18892, 2, 0, NULL, 14, 'White Tone Face Powder', '8908001158022', 24, NULL, 151, 37964, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:38:59', '2017-08-12 01:38:59'),
(18893, 1, 0, NULL, 189, 'Blue Lady Deo Roll-On', '614514070017', 24, NULL, 151, 37965, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:40:31', '2017-08-12 01:40:31'),
(18894, 1, 0, NULL, 189, 'Whitening Face Deep Cleasing Oil control 100 ml', '8857101125390', 24, NULL, 151, 37966, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:40:45', '2017-08-12 01:40:45'),
(18895, 1, 0, NULL, 189, 'Ever Glow Face Wash Foam', '8857101158961', 24, NULL, 151, 37967, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:41:51', '2017-08-12 01:41:51'),
(18896, 1, 0, NULL, 189, 'EverGlow Face Wash Gel Lemon Extract 100 ml', '8857101158985', 24, NULL, 151, 37968, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:43:55', '2017-08-12 01:43:55'),
(18897, 1, 0, NULL, 189, 'EverGlow Face Wash Gel Neem Extract 100 ml', '8857101158978', 24, NULL, 156, 37969, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:45:14', '2017-08-12 01:45:14'),
(18898, 1, 0, NULL, 14, 'FOGG Fresh Spicy', '8908001158572', 24, NULL, 151, 37970, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:46:09', '2017-08-12 01:46:09'),
(18899, 1, 0, NULL, 14, 'FOGG Fresh Aqua', '8908001158596', 24, NULL, 151, 37971, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:47:33', '2017-08-12 01:47:33'),
(18900, 1, 0, NULL, 14, 'FOGG Blue Mountain', '8908001158695', 24, NULL, 151, 37972, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 01:48:19', '2017-08-12 01:48:19'),
(18901, 1, 0, NULL, 213, 'Radhuni Pure Mustard Oil 500ml', '8941100512654', 36, NULL, 160, 37973, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:39:25', '2017-08-12 06:39:25'),
(18902, 1, 0, NULL, 213, 'Radhuni Pure Mustard Oil 1Litre', '8941100512661', 36, NULL, 160, 37974, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:40:06', '2017-08-12 06:40:06'),
(18903, 1, 0, NULL, 141, 'Fresh Mustard Oil 250ml', '8301100203028', 36, NULL, 160, 37975, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:42:15', '2017-08-12 06:42:15'),
(18904, 1, 0, NULL, 213, 'Radhuni Pured Mustard Oil 250ml', '8941100512647', 36, NULL, 160, 37976, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:43:27', '2017-08-12 06:43:27'),
(18905, 1, 0, NULL, 141, 'Fresh Fortified Soyabean Oil 1Litre', '8301100201086', 36, NULL, 160, 37977, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:44:29', '2017-08-12 06:44:29'),
(18906, 1, 0, NULL, 217, 'Rupchanda Fortified Soyabean Oil 1L', '8941052011045', 36, NULL, 160, 37978, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:44:33', '2017-08-12 06:44:33'),
(18907, 1, 0, NULL, 209, 'Pran Mustard Oil 500ml', '831730005450', 36, NULL, 160, 37979, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:45:44', '2017-08-12 06:45:44'),
(18908, 1, 0, NULL, 217, 'Rupchanda Fortified Soyabean Oil 2L', '8941052011052', 36, NULL, 160, 37980, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:45:46', '2017-08-12 06:45:46'),
(18910, 1, 0, NULL, 209, '<NAME> 100ml', '831730005634', 36, NULL, 160, 37981, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:46:26', '2017-08-12 06:46:26'),
(18911, 1, 0, NULL, 209, 'Pran Mustard Oil 200ml', '831730005498', 36, NULL, 160, 37982, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:47:10', '2017-08-12 06:47:10'),
(18912, 1, 0, NULL, 217, 'Rupchanda Poly soyabean Oil 1L', '8941052011441', 36, NULL, 160, 37983, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:47:18', '2017-08-12 06:47:18'),
(18913, 1, 0, NULL, 209, '<NAME> Oil 1Litre', '841165107223', 36, NULL, 160, 37984, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:47:40', '2017-08-12 06:47:40'),
(18914, 1, 0, NULL, NULL, 'Meizan Plam Oil 1L', '8941052022447', 36, NULL, 160, 37985, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:48:11', '2017-08-12 06:48:11'),
(18915, 1, 0, NULL, 59, '<NAME> 900gm', '8941101010555', 28, NULL, 155, 37986, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:48:37', '2017-08-12 06:48:37'),
(18916, 1, 0, NULL, 146, '<NAME> 1L', '8007150900015', 36, NULL, 160, 37987, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:49:08', '2017-08-12 06:49:08'),
(18917, 1, 0, NULL, 59, '<NAME> 400gm', '8941101010548', 28, NULL, 155, 37988, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:49:11', '2017-08-12 06:49:11'),
(18918, 1, 0, NULL, 59, '<NAME> 200gm', '8941101010531', 28, NULL, 155, 37989, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:49:50', '2017-08-12 06:49:50'),
(18919, 1, 0, NULL, 59, '<NAME> 100gm', '8941101010012', 28, NULL, 155, 37990, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:50:27', '2017-08-12 06:50:27'),
(18920, 1, 0, NULL, 83, 'White Gold Fortified Oil 1L', '7150203040044', 36, NULL, 160, 37991, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:51:06', '2017-08-12 06:51:06'),
(18922, 1, 0, NULL, 36, 'ACI Nutrilife Rice Bran Oil 2L', '8153003000507', 36, NULL, 160, 37992, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:52:38', '2017-08-12 06:52:38'),
(18923, 1, 0, NULL, 218, 'Teer Pure Mustard Oil 100ml', '811486166018', 36, NULL, 160, 37993, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:52:42', '2017-08-12 06:52:42'),
(18924, 1, 0, NULL, 218, 'Teer Pure Mustard Oil 250ml', '811486166025', 36, NULL, 160, 37994, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:53:20', '2017-08-12 06:53:20'),
(18925, 1, 0, NULL, NULL, 'Orkide Sunflower Oil 1L', '8691313010248', 36, NULL, 160, 37995, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:53:21', '2017-08-12 06:53:21'),
(18926, 1, 0, NULL, 218, 'Teer Pure Mustardd Oil 500ml', '811486166056', 36, NULL, 160, 37996, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:53:51', '2017-08-12 06:53:51'),
(18928, 1, 0, NULL, 218, 'Teer Advanced Fortified Soyabean Oil 2Litre', '81254615912', 36, NULL, 160, 37997, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:55:06', '2017-08-12 06:55:06'),
(18929, 1, 0, NULL, NULL, 'White Gold Fortified RIce Bran Oil 2L', '7150203040068', 36, NULL, 160, 37998, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:55:30', '2017-08-12 06:55:30'),
(18930, 1, 0, NULL, NULL, 'White Gold Fortified RIce Bran Oil 5L', '715020303023', 36, NULL, 160, 37999, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 06:59:33', '2017-08-12 06:59:33'),
(18931, 1, 0, NULL, 50, 'Red Cow Butter Oil 200gm', '9415007015468', 28, NULL, 155, 38000, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:00:34', '2017-08-12 07:00:34'),
(18932, 1, 0, NULL, 146, 'Olitalia Sunflower Oil 3L', '8007150906802', 36, NULL, 160, 38001, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:01:04', '2017-08-12 07:01:04'),
(18934, 1, 0, NULL, 209, 'Pran Premium Ghee 200gm', '846656008072', 28, NULL, 155, 38002, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:02:04', '2017-08-12 07:02:04'),
(18935, 1, 0, 388, 146, 'Olitalia Fortified Sunflower Oil 2L', '8007150903504', 36, NULL, 160, 38003, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:02:34', '2017-08-12 07:04:01'),
(18936, 1, 0, NULL, 31, 'Orkide Pure Olive Oil 250ml', '8691313020506', 36, NULL, 160, 38004, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:03:16', '2017-08-12 07:03:16'),
(18939, 1, 0, NULL, NULL, 'Olitalia Olive OIl 500ml', '657738000484', 36, NULL, 160, 38005, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:04:42', '2017-08-12 07:04:42'),
(18941, 1, 0, NULL, 137, 'RS <NAME> 1 Litre', '8420701103510', 36, NULL, 160, 38006, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:05:29', '2017-08-12 07:05:29'),
(18942, 1, 0, NULL, 146, 'Olitalia Vergin Olive Oil 250ml ', '8007150901784', 36, NULL, 160, 38007, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:06:24', '2017-08-12 07:06:24'),
(18946, 1, 0, NULL, 74, 'Borges Extra Virgin Olive Oil 1Litre', '8410179100012', 36, NULL, 160, 38008, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:06:35', '2017-08-12 07:06:35'),
(18947, 1, 0, NULL, 83, 'ACI Pure Fortified Soyabean Oil 5Litre', '8153003000699', 36, NULL, 160, 38009, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:07:37', '2017-08-12 07:07:37'),
(18948, 1, 0, NULL, 217, 'Fortune Fortified Rice Bran Oil 5L', '8906007280716', 36, NULL, 160, 38010, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:07:39', '2017-08-12 07:07:39'),
(18949, 1, 0, 388, 219, 'White Gold Fortified Rice Rran Oil 5 Litre', '7150203040020', 36, NULL, 160, 38011, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:11:21', '2017-08-12 07:12:31'),
(18950, 1, 0, NULL, 141, 'Fresh Fortified Soyabean Oil 5L', '8301100201055♪', 36, NULL, 160, 38012, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:12:30', '2017-08-12 07:12:30'),
(18951, 1, 0, NULL, 219, 'White Gold Fortified Rice Bran Oil 8 Litre', '7150203040037', 43, NULL, NULL, 38013, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:15:37', '2017-08-12 07:15:37'),
(18952, 1, 0, 388, 218, 'Teer 5 liter', '812546159230', 36, NULL, NULL, 38014, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:15:45', '2017-08-12 07:15:45'),
(18953, 1, 0, NULL, 36, 'Aci Nutrilife Rice Bran Oil 5L', '8153003000422♪', 36, NULL, 160, 38015, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:16:14', '2017-08-12 07:16:14'),
(18954, 1, 0, 388, 36, 'Aci Pure salt 1kg', '813163615109', 36, NULL, NULL, 38016, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:16:58', '2017-08-12 07:20:42'),
(18955, 1, 0, NULL, 209, 'Metro Rice Bran Oil 5 Litre', '846656008751', 36, NULL, 160, 38017, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:17:28', '2017-08-12 07:17:28'),
(18956, 1, 0, 388, 36, 'Aci Pure Atta 1kg', '8153003000354', 36, NULL, NULL, 38018, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:18:03', '2017-08-12 07:20:12'),
(18957, 1, 0, NULL, 146, 'Olitalia Fortified Sunflower Oil 5L', '8007150900930♪', 36, NULL, 160, 38019, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:18:05', '2017-08-12 07:18:05'),
(18958, 1, 0, NULL, 31, 'Orkide Sunflowerr Oil 3 Litre', '8691313010262', 36, NULL, 160, 38020, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:18:12', '2017-08-12 07:18:12'),
(18959, 1, 0, NULL, 31, 'Orkide Sunflower Oil 5L', '8691313987649♪', 36, NULL, 160, 38021, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:19:06', '2017-08-12 07:19:06'),
(18960, 1, 0, 388, 141, 'Fresh Atta 1kg', '8301100401035', 36, NULL, NULL, 38022, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:19:22', '2017-08-12 07:19:22'),
(18961, 1, 0, NULL, 74, 'Borges Sun Flower 5Litre', '8410179013398', 36, NULL, 160, 38023, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:19:33', '2017-08-12 07:19:33'),
(18962, 1, 0, NULL, 107, 'Sajeeb Suji 500g', '4808647010576', 36, NULL, 160, 38024, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:20:51', '2017-08-12 07:20:51'),
(18963, 1, 0, 388, 116, 'Aci Pure Maida 1kg', '11708121896300', 36, NULL, NULL, 38025, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:23:27', '2017-08-12 07:23:27'),
(18964, 1, 0, NULL, 107, 'Sajeeb Atta 1KG', '4808647010514', 36, NULL, 160, 38026, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:24:32', '2017-08-12 07:24:32'),
(18965, 1, 0, NULL, 218, 'Teer Swmolina 500gm', '814396244050♪', 36, NULL, 160, 38027, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:24:58', '2017-08-12 07:24:58'),
(18966, 1, 0, NULL, NULL, 'Teer Atta 1KG', '814216221100', 36, NULL, 160, 38028, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:25:56', '2017-08-12 07:25:56'),
(18967, 1, 0, NULL, NULL, 'Teer Flour 1 KG', '814336236107', 36, NULL, 160, 38029, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:27:42', '2017-08-12 07:27:42'),
(18968, 1, 0, 388, NULL, 'Teer Sugar 1kg', '820466533108', 36, NULL, NULL, 38030, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:27:45', '2017-08-12 07:27:45'),
(18969, 1, 0, NULL, 220, 'Mashudhara Maida 1KG', '8941193000540♪', 36, NULL, 160, 38031, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:28:38', '2017-08-12 07:28:38'),
(18970, 1, 0, NULL, 220, 'Bashundara Atta 1kg', '8941193000519', 36, NULL, NULL, 38032, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:28:40', '2017-08-12 07:28:40'),
(18971, 1, 0, NULL, 107, 'Sajeeb Maida 1KG', '4808647010545', 36, NULL, 160, 38033, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:29:01', '2017-08-12 07:29:01'),
(18972, 1, 0, NULL, 141, 'Fresh Super Premium Salt 1Kg', '8301100501025♪', 36, NULL, 158, 38034, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:29:41', '2017-08-12 07:29:41'),
(18973, 1, 0, NULL, 83, 'ACI Pure Suji 500gm', '8153003000385', 36, NULL, 160, 38035, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:29:50', '2017-08-12 07:29:50'),
(18974, 1, 0, 388, 141, 'Fresh Actifit Premium Atta 1KG', '8301100401059', 36, NULL, NULL, 38036, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:30:00', '2017-08-12 07:31:49'),
(18975, 1, 0, NULL, 141, 'Fresh Deshi Red Lentil 500g', '11708121897500', 36, NULL, NULL, 38037, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:38:11', '2017-08-12 07:38:11'),
(18976, 1, 0, NULL, 213, 'Chashi Chinigura Chal 1Kg', '8941100512104♪', 36, NULL, 160, 38038, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:38:35', '2017-08-12 07:38:35'),
(18977, 1, 0, NULL, 209, '<NAME> 500gm', '846656001424', 36, NULL, 160, 38039, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:38:40', '2017-08-12 07:38:40'),
(18978, 1, 0, 388, 99, 'Fresh Chinigura Rice 1kg', '8017111289431', 36, NULL, NULL, 38040, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:39:09', '2017-08-12 07:39:35'),
(18979, 1, 0, NULL, 213, 'Chashi Chinigura Chal 5kg', '8941100512128♪', 36, NULL, 160, 38041, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:39:43', '2017-08-12 07:39:43'),
(18980, 1, 0, NULL, 209, 'Pran Chinigura Aromatic Rice Primium Quality 1KG', '831730004149', 36, NULL, 160, 38042, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:39:50', '2017-08-12 07:39:50'),
(18981, 1, 0, 388, 141, 'Fresh Deshi Red Lentil 1kg', '11708121898100', 36, NULL, NULL, 38043, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:40:33', '2017-08-12 07:40:33'),
(18982, 1, 0, NULL, 83, 'ACI Premium Minikate Rice 10KG', '8169003005572', 36, NULL, 160, 38044, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:40:47', '2017-08-12 07:40:47'),
(18983, 1, 0, NULL, 213, '<NAME> Chal 2KG', '8941100512111♪', 36, NULL, 160, 38045, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:41:27', '2017-08-12 07:41:27'),
(18984, 1, 0, NULL, 209, 'Pran Red Lentil 500gm', '831730009038', 36, NULL, 160, 38046, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:41:42', '2017-08-12 07:41:42'),
(18985, 1, 0, NULL, 217, '<NAME> chal 1kg', '880225150014♪', 36, NULL, 160, 38047, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:42:34', '2017-08-12 07:42:34'),
(18986, 1, 0, NULL, 209, 'Pran Minicate Rice 5KG', '831730009250', 36, NULL, 160, 38048, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:42:34', '2017-08-12 07:42:34'),
(18987, 1, 0, 388, NULL, 'Four Seasons Basmati Rice 1kg', '11708121898700', 36, NULL, NULL, 38049, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:43:13', '2017-08-12 07:43:13'),
(18988, 1, 0, NULL, 209, 'Pran Nazirshail Rice 5KG', '831730004125', 36, NULL, 160, 38050, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:43:26', '2017-08-12 07:43:26'),
(18989, 1, 0, NULL, 209, 'Metro Basmati Rice 1Kg', '846656007112♪', 36, NULL, 160, 38051, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:44:10', '2017-08-12 07:44:10'),
(18990, 1, 0, NULL, 83, 'ACI Pure Mosur Dal 500gm', '815300000205', 36, NULL, 160, 38052, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:44:24', '2017-08-12 07:44:24'),
(18991, 1, 0, NULL, 209, 'Pran Red Lentil 1Kg', '831730008468♪', 36, NULL, 160, 38053, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:44:55', '2017-08-12 07:44:55'),
(18992, 1, 0, NULL, 83, 'ACI Pure Premium Minicate Rice 5KG', '8153003000750', 36, NULL, 160, 38054, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:45:13', '2017-08-12 07:45:13'),
(18993, 1, 0, NULL, 83, 'ACI Pure Mosur Dal 1KG', '815300000007', 36, NULL, 160, 38055, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 07:45:41', '2017-08-12 07:45:41'),
(18994, 1, 0, NULL, 221, '<NAME> ', '4710962443093♪', 25, NULL, 152, 38056, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:40:41', '2017-08-12 08:40:41'),
(18995, 1, 0, 388, 146, 'Farlin Anti Colic S Nipple 360cc', '4710962128068', 25, NULL, 152, 38057, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:42:03', '2017-08-12 08:43:36'),
(18996, 1, 0, NULL, 222, 'Angel S Size Anti-Colic Nipple', '8850851532920', 25, NULL, 152, 38058, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:44:05', '2017-08-12 08:44:05'),
(18997, 1, 0, NULL, 221, 'Farlin Anti Colic S Nipple 120cc', '4710962128686♪', 25, NULL, 152, 38059, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:44:24', '2017-08-12 08:44:24'),
(18998, 1, 0, NULL, 221, 'Farlin Anti Colic S Nipple 60cc', '4710962120260♪', 25, NULL, 152, 38060, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:45:06', '2017-08-12 08:45:06'),
(18999, 1, 0, NULL, 222, 'Angel L size Anti-colic Nipple', '8850851532647', 25, NULL, 152, 38061, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:45:16', '2017-08-12 08:45:16'),
(19000, 1, 0, NULL, NULL, 'Farli', '11708121900000', 25, NULL, 152, 38062, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:45:25', '2017-08-12 08:45:25'),
(19001, 1, 0, NULL, 222, 'Angel M size Anti-Coic Nipple', '8850851110012', 25, NULL, 152, 38063, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:45:56', '2017-08-12 08:45:56'),
(19002, 1, 0, NULL, 222, 'Angel Food Feeder 140ml', '8850851701715', 25, NULL, 152, 38064, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:46:52', '2017-08-12 08:46:52'),
(19003, 1, 0, NULL, 221, 'Farlin DJ Anti BFN Aspirator', '4710962431397♪', 25, NULL, 152, 38065, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:47:11', '2017-08-12 08:47:11'),
(19004, 1, 0, NULL, 222, 'Angel L size 240ml', '8850851110029', 25, NULL, 152, 38066, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:47:29', '2017-08-12 08:47:29'),
(19006, 1, 0, NULL, 221, '<NAME> Nipple 2nd Step', '4710962224210♪', 25, NULL, 152, 38067, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:49:11', '2017-08-12 08:49:11'),
(19007, 1, 0, NULL, 221, 'Farlin Silicone Nipple 1Step ', '4710962224203♪', 25, NULL, 152, 38068, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:50:40', '2017-08-12 08:50:40'),
(19009, 1, 0, NULL, 221, 'Farlin Silicone Nipple 3step ', '4710962224227♪', 25, NULL, 152, 38069, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:51:47', '2017-08-12 08:51:47'),
(19010, 1, 0, NULL, 222, 'Angel Silicone Nipple S size', '8850851511222', 25, NULL, 152, 38070, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:52:09', '2017-08-12 08:52:09'),
(19011, 1, 0, NULL, 222, 'Angel Breast Pump', '8850851701050♪', 25, NULL, 152, 38071, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:52:55', '2017-08-12 08:52:55'),
(19012, 1, 0, NULL, 222, 'Angel Silicone Nipple M size', '8850851511239', 25, NULL, 152, 38072, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:53:02', '2017-08-12 08:53:02'),
(19013, 1, 0, NULL, 222, 'Angel Silicone L size', '8850851511246', 25, NULL, 152, 38073, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:53:50', '2017-08-12 08:53:50'),
(19014, 1, 0, NULL, 221, '<NAME>', '4710962444311♪', 25, NULL, 152, 38074, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:54:34', '2017-08-12 08:54:34'),
(19016, 1, 0, NULL, 222, 'Angel Amazing glow L size 240ml', '8850851534085', 25, NULL, 152, 38075, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:55:04', '2017-08-12 08:55:04'),
(19018, 1, 0, NULL, 222, 'Angel Drinking Cup', '8850851702187♪', 25, NULL, 152, 38076, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:55:55', '2017-08-12 08:55:55'),
(19022, 1, 0, NULL, 222, 'Angel Lovely Day ', '8850851700398♪', 25, NULL, 152, 38077, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:57:09', '2017-08-12 08:57:09'),
(19025, 1, 0, NULL, 221, 'Farlin Baby Wet Wipes 100Pcs', '4710962421084♪', 25, NULL, 152, 38078, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:58:17', '2017-08-12 08:58:17'),
(19026, 1, 0, 388, 222, 'Angel M Anti Colic Nipple 3+', '8850851534092', 25, NULL, 152, 38079, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 08:59:26', '2017-08-12 09:03:22'),
(19029, 1, 0, NULL, 222, 'Angel Liquid Cleanser 300ml', '8850851700428', 25, NULL, 152, 38080, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:02:36', '2017-08-12 09:02:36'),
(19030, 1, 0, NULL, 222, 'Angel L Anti Colic Nipple 6+', '8850851534085♪', 25, NULL, 152, 38081, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:02:36', '2017-08-12 09:02:36'),
(19032, 1, 0, NULL, 222, 'Angell Liquid Cleanser 500ml', '8850851700411', 25, NULL, 152, 38082, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:04:02', '2017-08-12 09:04:02'),
(19033, 1, 0, NULL, 222, 'Angel Power Puff with Sound', '8850851700237', 25, NULL, 152, 38083, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:05:09', '2017-08-12 09:05:09'),
(19034, 1, 0, NULL, 222, 'Angel Bottle Brush ', '8850851700336♪', 25, NULL, 152, 38084, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:05:27', '2017-08-12 09:05:27'),
(19035, 1, 0, NULL, 222, 'Angel Double Handle', '8850851700404', 25, NULL, 152, 38085, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:06:21', '2017-08-12 09:06:21'),
(19036, 1, 0, NULL, 222, 'Angel Powder Puff ', '8850851700275', 25, NULL, 152, 38086, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:07:18', '2017-08-12 09:07:18'),
(19037, 1, 0, 388, 222, 'Angel D Drinking Cup', '8850851702170', 25, NULL, 152, 38087, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:07:45', '2017-08-12 09:08:36'),
(19039, 1, 0, NULL, 222, 'Angel Water-Filled Teether', '8850851700015', 25, NULL, 152, 38088, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:09:42', '2017-08-12 09:09:42'),
(19040, 1, 0, NULL, 222, 'Angel Water F teether ', '8850851700015♪', 25, NULL, 152, 38089, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:09:45', '2017-08-12 09:09:45'),
(19041, 1, 0, NULL, 221, '<NAME> ', '4710962141043♪', 25, NULL, 152, 38090, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:10:42', '2017-08-12 09:10:42'),
(19042, 1, 0, NULL, 222, 'Farlin Natural Feeding Design 2 step 3M+', '4710962127672', 25, NULL, 152, 38091, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:11:36', '2017-08-12 09:11:36'),
(19045, 1, 0, NULL, 222, 'Farlin Natural Feeding Design 1 step OM+', '4710962128686', 25, NULL, 152, 38092, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:12:54', '2017-08-12 09:12:54'),
(19046, 1, 0, NULL, 221, 'Farlin Baby Wet Wipes 35pcs ', '4710962451050♪', 25, NULL, 152, 38093, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:13:21', '2017-08-12 09:13:21'),
(19048, 1, 0, NULL, 222, 'Farlin L size Concern', '4710962443109', 25, NULL, 152, 38094, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:14:51', '2017-08-12 09:14:51'),
(19049, 1, 0, NULL, 221, 'Farlin DJ Floss Pick ', '4710962401239♪', 25, NULL, 152, 38095, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:15:08', '2017-08-12 09:15:08'),
(19050, 1, 0, NULL, 115, '<NAME> Toothbrush ', '8941100501351♪', 25, NULL, 152, 38096, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:29:55', '2017-08-12 09:29:55'),
(19051, 1, 0, NULL, 70, 'Prodental B Children Toothbrush ', '9556311891291♪', 25, NULL, 152, 38097, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:31:22', '2017-08-12 09:31:22'),
(19052, 1, 0, NULL, 222, 'Lil Angels Feed & Fun Time 125ml', '815176110206', 25, NULL, 152, 38098, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:32:27', '2017-08-12 09:32:27'),
(19053, 1, 0, NULL, 70, 'ProdentalB Junior Toothbrush ', '9556311891116♪', 25, NULL, 152, 38099, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:32:50', '2017-08-12 09:32:50'),
(19054, 1, 0, NULL, 222, '<NAME> 125ml Sterilisable', '831177120501', 25, NULL, 152, 38100, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:33:15', '2017-08-12 09:33:15'),
(19055, 1, 0, NULL, 222, 'L<NAME> Sterilisable 125ml ', '831176010148', 25, NULL, 152, 38101, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:33:55', '2017-08-12 09:33:55'),
(19056, 1, 0, NULL, 70, 'ProdentalB Orange Junior Toothpaste ', '200812061602', 25, NULL, 153, 38102, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:34:25', '2017-08-12 09:34:25'),
(19057, 1, 0, NULL, 222, 'Lil Angels Biberon 250ml', '831176110145', 25, NULL, 152, 38103, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:34:32', '2017-08-12 09:34:32'),
(19059, 1, 0, NULL, 222, 'Lil Angels Water Filled Teether', '831176110855', 25, NULL, 152, 38104, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:35:34', '2017-08-12 09:35:34'),
(19063, 1, 0, NULL, 200, 'Jhonsons Baby Cream 30gm', '8901012114179♪', 25, NULL, 152, 38105, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:38:12', '2017-08-12 09:38:12'),
(19064, 1, 0, NULL, 200, 'Jhonsons Baby lotion 100ml', '8901012115022♪', 25, NULL, 152, 38106, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:38:59', '2017-08-12 09:38:59'),
(19065, 1, 0, NULL, 222, 'Lil Angels Comb & Brush Set Brosse ET Peigne Oval', '831176010384', 25, NULL, 152, 38107, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:39:45', '2017-08-12 09:39:45'),
(19067, 1, 0, NULL, 222, 'Lil Angels Feed & Fun Time 250ml', '831176110060', 25, NULL, 152, 38108, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:40:46', '2017-08-12 09:40:46'),
(19068, 1, 0, NULL, 115, 'Meril Baby Strawberry Toothpaste ', '8941100501214♪', 25, NULL, 152, 38109, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:41:19', '2017-08-12 09:41:19'),
(19069, 1, 0, NULL, 222, 'Lil Angels Two Handle Spill proof cup', '831176010902', 25, NULL, 152, 38110, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:41:24', '2017-08-12 09:41:24'),
(19071, 1, 0, NULL, 222, 'Angel Cereal Feeder Bottle ', '831177120662', 25, NULL, 152, 38111, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:42:34', '2017-08-12 09:42:34'),
(19072, 1, 0, NULL, 222, 'Lil Angel Baby Bath Sponge', '831176110381', 25, NULL, 152, 38112, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:42:40', '2017-08-12 09:42:40'),
(19074, 1, 0, NULL, 222, '<NAME>ls Lollipop Ring Rattle', '831177120624', 25, NULL, 152, 38113, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:43:55', '2017-08-12 09:43:55'),
(19075, 1, 0, NULL, 222, 'L<NAME>ls Nasal Aspirator', '831177120617', 25, NULL, 152, 38114, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:44:39', '2017-08-12 09:44:39'),
(19076, 1, 0, NULL, 115, 'Meril Baby Powder 100gm', '8941100500279♪', 25, NULL, 152, 38115, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:44:53', '2017-08-12 09:44:53'),
(19078, 1, 0, NULL, 200, 'Jhonsons Baby Cream 50gm', '8901012114025♪', 25, NULL, 152, 38116, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:45:41', '2017-08-12 09:45:41'),
(19079, 1, 0, NULL, 70, 'ProdentanB Pixie C Brush ', '9556311225522♪', 25, NULL, 152, 38117, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:46:26', '2017-08-12 09:46:26'),
(19081, 1, 0, NULL, 200, 'Jhonsons Baby Oil 100ml', '8901012113387♪', 25, NULL, 152, 38118, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:47:26', '2017-08-12 09:47:26'),
(19082, 1, 0, NULL, 222, 'Lil Angels Spill Proof Sippy Cup', '831177120631', 25, NULL, 152, 38119, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:47:35', '2017-08-12 09:47:35'),
(19083, 1, 0, NULL, 222, 'Lil Angels BPA Free', '831177120655', 25, NULL, 152, 38120, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:48:37', '2017-08-12 09:48:37'),
(19084, 1, 0, NULL, 7, 'Panda Rathmal Baby Soap ', '4792054006263♪', 25, NULL, 152, 38121, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:49:06', '2017-08-12 09:49:06'),
(19085, 1, 0, NULL, 222, 'Angel Avec Poigent 250ml', '831176110145♪', 25, NULL, 152, 38122, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:50:34', '2017-08-12 09:50:34'),
(19086, 1, 0, NULL, 222, 'Angel Feeding Bottle O+', '831177120464♪', 25, NULL, 152, 38123, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:51:51', '2017-08-12 09:51:51'),
(19087, 1, 0, NULL, 222, 'Lil Angels Bottle & Nipple Brush', '831177120341', 25, NULL, 152, 38124, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:53:38', '2017-08-12 09:53:38'),
(19088, 1, 0, NULL, 222, 'Angel Feeding Bottle O1', '831177120471♪', 25, NULL, 152, 38125, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:53:40', '2017-08-12 09:53:40'),
(19089, 1, 0, NULL, 200, 'jhonsons Baby Powder 100gm', '8901012111024♪', 25, NULL, 152, 38126, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:54:28', '2017-08-12 09:54:28'),
(19090, 1, 0, NULL, 222, '<NAME> Nipple', '831177120488', 25, NULL, 152, 38127, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:54:42', '2017-08-12 09:54:42'),
(19092, 1, 0, NULL, 115, '<NAME>aby Orange Toothpaste ', '8941100500064♪', 25, NULL, 152, 38128, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:55:38', '2017-08-12 09:55:38'),
(19093, 1, 0, NULL, 222, '<NAME>', '831176110862', 25, NULL, 152, 38129, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:55:59', '2017-08-12 09:55:59'),
(19094, 1, 0, NULL, 200, 'jhonsons Baby Feeder 150ml', '11708121909400', 25, NULL, 152, 38130, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:57:01', '2017-08-12 09:57:01'),
(19097, 1, 0, NULL, 222, '<NAME> Nipple 01', '831177120488♪', 25, NULL, 152, 38131, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:57:50', '2017-08-12 09:57:50'),
(19098, 1, 0, NULL, 222, 'Borges Olive Baby Oil 125ml', '8410179001784', 25, NULL, 152, 38132, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:58:13', '2017-08-12 09:58:13'),
(19099, 1, 0, NULL, 200, 'Jhonsons Baby shampoo 100ml', '8901012116340♪', 25, NULL, 152, 38133, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:58:40', '2017-08-12 09:58:40'),
(19100, 1, 0, 388, 115, 'Meril Baby Shampoo With Mild Conditioner 110ml', '8941100500262', 25, NULL, 152, 38134, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:58:57', '2017-08-12 09:59:43'),
(19101, 1, 0, NULL, 200, 'Jhonsons Baby Powder 200gm', '8901012111031♪', 25, NULL, 152, 38135, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 09:59:24', '2017-08-12 09:59:24'),
(19102, 1, 0, NULL, 115, 'Meril Baby Soap 75gm', '8941100501580', 25, NULL, 152, 38136, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 10:00:22', '2017-08-12 10:00:22'),
(19103, 1, 0, NULL, 70, 'ProdentalB Children Toothbrush ', '9556311891338♪', 25, NULL, 152, 38137, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 10:00:25', '2017-08-12 10:00:25'),
(19104, 1, 0, NULL, 200, 'Jhonsons Baby Shampoo 60ml', '8901012116333♪', 25, NULL, 152, 38138, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-12 10:01:13', '2017-08-12 10:01:13'),
(19105, 1, 15, NULL, 223, 'Banity Bag VM00501', '11708131910500', 45, NULL, 161, 38139, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 05:57:45', '2017-08-13 05:57:45'),
(19106, 1, 15, NULL, 223, 'Banity Bag VM00502', '11708131910600', 45, NULL, 161, 38140, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 05:58:11', '2017-08-13 05:58:11'),
(19107, 1, 15, NULL, 223, 'Banity Bag VM00503', '11708131910700', 45, NULL, 161, 38141, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 05:58:33', '2017-08-13 05:58:33'),
(19108, 1, 15, NULL, 223, 'Banity Bag VM00504', '11708131910800', 45, NULL, 161, 38142, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 05:58:53', '2017-08-13 05:58:53'),
(19109, 1, 15, NULL, 223, 'Banity Bag VM00505', '11708131910900', 45, NULL, 161, 38143, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 05:59:13', '2017-08-13 05:59:13'),
(19110, 1, 15, NULL, 223, 'Banity Bag VM00506', '11708131911000', 45, NULL, 161, 38144, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:00:14', '2017-08-13 06:00:14'),
(19111, 1, 10, NULL, 223, 'Banity Bag VM00507', '11708131911100', 45, NULL, 161, 38145, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:00:34', '2017-08-13 06:00:34'),
(19112, 1, 10, NULL, 223, 'Banity Bag VM00508', '11708131911200', 45, NULL, 161, 38146, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:00:53', '2017-08-13 06:00:53'),
(19113, 1, 15, NULL, 223, 'Banity Bag VM00509', '11708131911300', 45, NULL, 161, 38147, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:01:28', '2017-08-13 06:01:28'),
(19114, 1, 15, NULL, 223, 'Banity Bag VM00510', '11708131911400', 45, NULL, 161, 38148, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:01:52', '2017-08-13 06:01:52'),
(19115, 1, 15, NULL, 223, 'Banity Bag VM005011', '11708131911500', 45, NULL, 161, 38149, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:02:07', '2017-08-13 06:02:07'),
(19116, 1, 15, NULL, 223, 'Banity Bag VM00512', '11708131911600', 45, NULL, 161, 38150, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:02:30', '2017-08-13 06:02:30'),
(19117, 1, 15, NULL, 223, 'Banity Bag VM00513', '11708131911700', 45, NULL, 161, 38151, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:02:44', '2017-08-13 06:02:44'),
(19118, 1, 10, NULL, 223, 'Banity Bag VM00514', '11708131911800', 45, NULL, 161, 38152, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:02:59', '2017-08-13 06:02:59'),
(19120, 1, 10, NULL, 223, 'Banity Bag VM00515', '11708131912000', 45, NULL, 161, 38153, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:04:05', '2017-08-13 06:04:05'),
(19121, 1, 10, NULL, 223, 'Banity Bag VM00516', '11708131912100', 45, NULL, 161, 38154, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:04:23', '2017-08-13 06:04:23'),
(19122, 1, 10, NULL, 223, 'Banity Bag VM00517', '11708131912200', 45, NULL, 161, 38155, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:04:41', '2017-08-13 06:04:41'),
(19123, 1, 15, NULL, 223, 'Banity Bag VM005018', '11708131912300', 45, NULL, 161, 38156, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:05:28', '2017-08-13 06:05:28'),
(19124, 1, 20, NULL, 223, 'Banity Bag VM00519', '11708131912400', 45, NULL, 161, 38157, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:05:48', '2017-08-13 06:05:48'),
(19125, 1, 10, NULL, 223, 'Juta YM000401', '11708131912500', 45, NULL, 161, 38158, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:06:42', '2017-08-13 06:06:42'),
(19126, 1, 10, NULL, 223, 'Juta YM0004012', '11708131912600', 45, NULL, 161, 38159, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:07:25', '2017-08-13 06:07:25'),
(19127, 1, 10, NULL, 223, 'Juta YM000403', '11708131912700', 45, NULL, 161, 38160, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:07:43', '2017-08-13 06:07:43'),
(19128, 1, 10, NULL, 223, 'Juta YM000404', '11708131912800', 45, NULL, 161, 38161, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:08:30', '2017-08-13 06:08:30'),
(19129, 1, 10, NULL, 223, 'Juta YM000405', '11708131912900', 45, NULL, 161, 38162, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:08:54', '2017-08-13 06:08:54'),
(19130, 1, 10, NULL, 223, 'Juta YM000406', '11708131913000', 45, NULL, 161, 38163, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:09:21', '2017-08-13 06:09:21'),
(19131, 1, 10, NULL, 223, 'Juta YM000407', '11708131913100', 45, NULL, 161, 38164, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:09:34', '2017-08-13 06:09:34'),
(19132, 1, 10, NULL, 223, 'Juta YM000408', '11708131913200', 45, NULL, 161, 38165, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:09:57', '2017-08-13 06:09:57'),
(19134, 1, 10, NULL, 223, 'Juta YM000409', '11708131913400', 45, NULL, 161, 38166, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:10:55', '2017-08-13 06:10:55'),
(19135, 1, 10, NULL, 223, 'Juta YM000410', '11708131913500', 45, NULL, 161, 38167, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:13:35', '2017-08-13 06:13:35'),
(19136, 1, 25, NULL, 223, 'Juta YM000411', '11708131913600', 45, NULL, 161, 38168, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:13:51', '2017-08-13 06:13:51'),
(19137, 1, 10, NULL, 223, 'Juta YM000412', '11708131913700', 45, NULL, 161, 38169, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:14:05', '2017-08-13 06:14:05'),
(19138, 1, 25, NULL, 223, 'Juta YM000413', '11708131913800', 45, NULL, 161, 38170, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:14:23', '2017-08-13 06:14:23'),
(19139, 1, 25, NULL, 223, 'Juta YM000414', '11708131913900', 45, NULL, 161, 38171, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:15:01', '2017-08-13 06:15:01'),
(19140, 1, 25, NULL, 223, 'Juta YM000415', '11708131914000', 45, NULL, 161, 38172, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:15:21', '2017-08-13 06:15:21'),
(19141, 1, 10, NULL, 223, 'Average Product SM000352', '11708131914100', 45, NULL, 161, 38173, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:15:24', '2017-08-13 06:15:24'),
(19142, 1, 25, NULL, 223, 'Juta YM000416', '11708131914200', 45, NULL, 161, 38174, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:15:57', '2017-08-13 06:15:57'),
(19143, 1, 25, NULL, 223, 'Juta YM000417', '11708131914300', 45, NULL, 161, 38175, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:16:13', '2017-08-13 06:16:13'),
(19144, 1, 10, NULL, 223, 'Juta YM000418', '11708131914400', 45, NULL, 161, 38176, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:16:30', '2017-08-13 06:16:30'),
(19145, 1, 8, NULL, 223, 'Juta YM000419', '11708131914500', 45, NULL, 161, 38177, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:16:44', '2017-08-13 06:16:44'),
(19146, 1, 5, NULL, 223, 'Average Product SM000353', '11708131914600', 45, NULL, 161, 38178, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:16:47', '2017-08-13 06:16:47'),
(19147, 1, 10, NULL, 223, 'Juta YM000420', '11708131914700', 45, NULL, 161, 38179, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:16:58', '2017-08-13 06:16:58'),
(19148, 1, 10, NULL, 223, 'Juta YM000421', '11708131914800', 45, NULL, 161, 38180, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:17:12', '2017-08-13 06:17:12'),
(19149, 1, 10, NULL, 223, 'Juta YM000422', '11708131914900', 45, NULL, 161, 38181, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:17:39', '2017-08-13 06:17:39'),
(19150, 1, 10, NULL, 223, 'Juta YM000423', '11708131915000', 45, NULL, 161, 38182, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:17:53', '2017-08-13 06:17:53'),
(19151, 1, 5, NULL, 3, 'Average Product SM000354', '11708131915100', 45, NULL, 161, 38183, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:17:57', '2017-08-13 06:17:57'),
(19152, 1, 8, NULL, 223, 'Juta YM000424', '11708131915200', 45, NULL, 161, 38184, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:18:09', '2017-08-13 06:18:09'),
(19153, 1, 0, NULL, NULL, 'Avera', '11708131915300', 45, NULL, 161, 38185, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:18:20', '2017-08-13 06:18:20'),
(19154, 1, 10, NULL, 223, 'Juta YM000425', '11708131915400', 45, NULL, 161, 38186, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:18:50', '2017-08-13 06:18:50'),
(19155, 1, 11, NULL, 223, 'Juta YM000426', '11708131915500', 45, NULL, 161, 38187, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:19:10', '2017-08-13 06:19:10'),
(19156, 1, 10, NULL, 223, 'Juta YM000427', '11708131915600', 45, NULL, 161, 38188, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:19:26', '2017-08-13 06:19:26'),
(19157, 1, 10, NULL, 223, 'Juta YM000428', '11708131915700', 45, NULL, 161, 38189, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:19:47', '2017-08-13 06:19:47'),
(19158, 1, 10, NULL, 223, 'Juta YM000429', '11708131915800', 45, NULL, 161, 38190, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:20:09', '2017-08-13 06:20:09'),
(19159, 1, 10, NULL, 223, 'Juta YM000430', '11708131915900', 45, NULL, 161, 38191, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:20:28', '2017-08-13 06:20:28'),
(19160, 1, 5, NULL, 223, 'Juta YM000431', '11708131916000', 45, NULL, 161, 38192, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:20:49', '2017-08-13 06:20:49'),
(19161, 1, 5, NULL, 223, 'Average Product SM000356', '11708131916100', 45, NULL, 161, 38193, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:21:04', '2017-08-13 06:21:04'),
(19162, 1, 10, NULL, 223, 'Juta YM000432', '11708131916200', 45, NULL, 161, 38194, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:21:50', '2017-08-13 06:21:50'),
(19163, 1, 20, NULL, 22, 'Average Product SM000357', '11708131916300', 45, NULL, 161, 38195, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:22:21', '2017-08-13 06:22:21'),
(19164, 1, 10, NULL, 223, 'Juta YM000433', '11708131916400', 45, NULL, 161, 38196, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:23:25', '2017-08-13 06:23:25'),
(19165, 1, 10, NULL, 223, 'Juta YM000434', '11708131916500', 45, NULL, 161, 38197, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:23:49', '2017-08-13 06:23:49'),
(19166, 1, 25, NULL, 223, 'Average Product SM000358', '11708131916600', 45, NULL, 161, 38198, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:23:50', '2017-08-13 06:23:50'),
(19167, 1, 5, NULL, 223, 'Juta YM000435', '11708131916700', 45, NULL, 161, 38199, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:24:05', '2017-08-13 06:24:05'),
(19168, 1, 20, NULL, 223, 'Pant PI000201', '11708131916800', 45, NULL, 161, 38200, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:24:49', '2017-08-13 06:24:49'),
(19169, 1, 20, NULL, 223, 'Average Product SM000359', '11708131916900', 45, NULL, 161, 38201, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:24:52', '2017-08-13 06:24:52'),
(19170, 1, 20, NULL, 223, 'Pant PI000202', '11708131917000', 45, NULL, 161, 38202, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:25:17', '2017-08-13 06:25:17'),
(19171, 1, 20, NULL, 223, 'Pant PI000203', '11708131917100', 45, NULL, 161, 38203, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:25:38', '2017-08-13 06:25:38'),
(19172, 1, 20, NULL, 223, 'Average Product SM000360', '11708131917200', 45, NULL, 161, 38204, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:25:47', '2017-08-13 06:25:47'),
(19173, 1, 20, NULL, 223, 'Pant PI000204', '11708131917300', 45, NULL, 161, 38205, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:26:23', '2017-08-13 06:26:23'),
(19174, 1, 20, NULL, 223, 'Pant PI000205', '11708131917400', 45, NULL, 161, 38206, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:26:48', '2017-08-13 06:26:48'),
(19175, 1, 20, NULL, 223, 'Pant PI000206', '11708131917500', 45, NULL, 161, 38207, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:27:09', '2017-08-13 06:27:09'),
(19176, 1, 20, NULL, 223, 'Average Product SM000361', '11708131917600', 45, NULL, 161, 38208, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:27:10', '2017-08-13 06:27:10'),
(19177, 1, 20, NULL, 223, 'Pant PI000207', '11708131917700', 45, NULL, 161, 38209, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:27:30', '2017-08-13 06:27:30'),
(19178, 1, 20, NULL, 223, 'Pant PI000208', '11708131917800', 45, NULL, 161, 38210, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:27:45', '2017-08-13 06:27:45'),
(19179, 1, 15, NULL, 223, 'Pant PI000209', '11708131917900', 45, NULL, 161, 38211, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:28:04', '2017-08-13 06:28:04'),
(19180, 1, 20, NULL, 223, 'Average Product SM000362', '11708131918000', 45, NULL, 161, 38212, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:28:05', '2017-08-13 06:28:05'),
(19181, 1, 15, NULL, 223, 'Pant PI000210', '11708131918100', 45, NULL, 161, 38213, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:28:24', '2017-08-13 06:28:24'),
(19182, 1, 20, NULL, 223, 'Average Product SM000363', '11708131918200', 45, NULL, 161, 38214, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:28:51', '2017-08-13 06:28:51'),
(19183, 1, 20, NULL, 223, 'Average Product SM000364', '11708131918300', 45, NULL, 161, 38215, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:29:58', '2017-08-13 06:29:58'),
(19184, 1, 20, NULL, 223, 'Average Product SM000365', '11708131918400', 45, NULL, 161, 38216, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:30:42', '2017-08-13 06:30:42'),
(19185, 1, 10, NULL, 223, 'Pant PI000211', '11708131918500', 45, NULL, 161, 38217, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:30:53', '2017-08-13 06:30:53'),
(19186, 1, 10, NULL, 223, 'Pant PI000212', '11708131918600', 45, NULL, 161, 38218, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:31:14', '2017-08-13 06:31:14'),
(19187, 1, 0, NULL, 223, 'Average Product SM000366', '10', 45, NULL, 161, 38219, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:31:18', '2017-08-13 06:31:18'),
(19188, 1, 10, NULL, 223, 'Pant PI000213', '11708131918800', 45, NULL, 161, 38220, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:31:32', '2017-08-13 06:31:32'),
(19189, 1, 20, NULL, 223, 'Average Product SM000367', '11708131918900', 45, NULL, 161, 38221, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:32:14', '2017-08-13 06:32:14'),
(19190, 1, 5, NULL, 223, 'Belt/Mani Bag VK000501', '11708131919000', 45, NULL, 161, 38222, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:32:35', '2017-08-13 06:32:35'),
(19191, 1, 10, NULL, 223, 'Belt/Mani Bag VK000502', '11708131919100', 45, NULL, 161, 38223, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:32:54', '2017-08-13 06:32:54'),
(19192, 1, 20, NULL, 223, 'Average Product SM000368', '11708131919200', 45, NULL, 161, 38224, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:32:58', '2017-08-13 06:32:58'),
(19193, 1, 10, NULL, 223, 'Belt/Mani Bag VK000503', '11708131919300', 45, NULL, 161, 38225, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:33:08', '2017-08-13 06:33:08'),
(19194, 1, 10, NULL, 223, 'Belt/Mani Bag VK000504', '11708131919400', 45, NULL, 161, 38226, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:33:22', '2017-08-13 06:33:22'),
(19195, 1, 10, NULL, 223, 'Belt/Mani Bag VK000505', '11708131919500', 45, NULL, 161, 38227, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:33:37', '2017-08-13 06:33:37'),
(19196, 1, 20, NULL, 223, 'Average Product SM000369', '11708131919600', 45, NULL, 161, 38228, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:33:47', '2017-08-13 06:33:47'),
(19197, 1, 10, NULL, 223, 'Belt/Mani Bag VK000506', '11708131919700', 45, NULL, 161, 38229, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:33:54', '2017-08-13 06:33:54'),
(19198, 1, 10, NULL, 223, 'Belt/Mani Bag VK000507', '11708131919800', 45, NULL, 161, 38230, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:34:14', '2017-08-13 06:34:14'),
(19199, 1, 10, NULL, 223, 'Belt/Mani Bag VK000508', '11708131919900', 45, NULL, 161, 38231, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:34:43', '2017-08-13 06:34:43'),
(19200, 1, 20, NULL, 223, 'Average Product SM000370', '11708131920000', 45, NULL, 161, 38232, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:34:50', '2017-08-13 06:34:50'),
(19201, 1, 10, NULL, 223, 'Belt/Mani Bag VK000509', '11708131920100', 45, NULL, 161, 38233, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:34:59', '2017-08-13 06:34:59'),
(19202, 1, 10, NULL, 223, 'Belt/Mani Bag VK000510', '11708131920200', 45, NULL, 161, 38234, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:35:19', '2017-08-13 06:35:19'),
(19203, 1, 5, NULL, 223, 'Belt/Mani Bag VK000511', '11708131920300', 45, NULL, 161, 38235, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:36:08', '2017-08-13 06:36:08'),
(19204, 1, 10, NULL, 223, 'Belt/Mani Bag VK000512', '11708131920400', 45, NULL, 161, 38236, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:36:25', '2017-08-13 06:36:25'),
(19205, 1, 10, NULL, 223, 'Belt/Mani Bag VK000513', '11708131920500', 45, NULL, 161, 38237, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:36:44', '2017-08-13 06:36:44'),
(19206, 1, 25, NULL, 223, 'Average Product SM000371', '11708131920600', 45, NULL, 161, 38238, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:37:00', '2017-08-13 06:37:00'),
(19207, 1, 10, NULL, 223, 'Belt/Mani Bag VK000514', '11708131920700', 45, NULL, 161, 38239, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:37:18', '2017-08-13 06:37:18'),
(19208, 1, 10, NULL, 223, 'Belt/Mani Bag VK000515', '11708131920800', 45, NULL, 161, 38240, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:37:37', '2017-08-13 06:37:37'),
(19209, 1, 25, NULL, 223, 'Average Product SM000372', '11708131920900', 45, NULL, 161, 38241, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:37:40', '2017-08-13 06:37:40'),
(19210, 1, 25, NULL, 223, 'Average Product SM000373', '11708131921000', 45, NULL, 161, 38242, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:38:10', '2017-08-13 06:38:10'),
(19211, 1, 10, NULL, 223, 'Average Product SM000301', '11708131921100', 45, NULL, 161, 38243, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:38:24', '2017-08-13 06:38:24'),
(19212, 1, 10, NULL, 223, 'Average Product SM000302', '11708131921200', 45, NULL, 161, 38244, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:38:45', '2017-08-13 06:38:45'),
(19213, 1, 0, NULL, 223, 'Average Product SM000374', '11708131921300', 45, NULL, 161, 38245, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:39:00', '2017-08-13 06:39:00'),
(19215, 1, 5, NULL, 223, 'Average Product SM000303', '11708131921500', 45, NULL, 161, 38246, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:39:06', '2017-08-13 06:39:06'),
(19216, 1, 15, NULL, 223, 'Average Product SM000304', '11708131921600', 45, NULL, 161, 38247, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:39:31', '2017-08-13 06:39:31'),
(19217, 1, 10, NULL, 223, 'Average Product SM000305', '11708131921700', 45, NULL, 161, 38248, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:39:45', '2017-08-13 06:39:45'),
(19218, 1, 20, NULL, 223, 'Average Product SM000375', '11708131921800', 45, NULL, 161, 38249, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:39:54', '2017-08-13 06:39:54'),
(19219, 1, 10, NULL, 223, 'Average Product SM000306', '11708131921900', 45, NULL, 161, 38250, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:40:03', '2017-08-13 06:40:03'),
(19220, 1, 10, NULL, 223, 'Average Product SM000307', '11708131922000', 45, NULL, 161, 38251, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:40:25', '2017-08-13 06:40:25'),
(19221, 1, 10, NULL, 223, 'Average Product SM000308', '11708131922100', 45, NULL, 161, 38252, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:40:38', '2017-08-13 06:40:38'),
(19222, 1, 0, NULL, 223, 'Average Product SM000376', '11708131922200', 45, NULL, 161, 38253, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:40:44', '2017-08-13 06:40:44'),
(19223, 1, 10, NULL, 223, 'Average Product SM000309', '11708131922300', 45, NULL, 161, 38254, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:40:53', '2017-08-13 06:40:53'),
(19224, 1, 25, NULL, 223, 'Average Product SM000377', '11708131922400', 45, NULL, 161, 38255, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:41:48', '2017-08-13 06:41:48'),
(19225, 1, 25, NULL, 223, 'Average Product SM000378', '11708131922500', 45, NULL, 161, 38256, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:42:23', '2017-08-13 06:42:23'),
(19226, 1, 10, NULL, 223, 'Average Product SM000310', '11708131922600', 45, NULL, 161, 38257, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:43:32', '2017-08-13 06:43:32'),
(19227, 1, 0, NULL, 223, 'Average Product SM000311', '11708131922700', 45, NULL, 161, 38258, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:43:46', '2017-08-13 06:43:46'),
(19228, 1, 25, NULL, 223, 'Average Product SM000379', '11708131922800', 45, NULL, 161, 38259, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:43:51', '2017-08-13 06:43:51'),
(19229, 1, 10, NULL, 223, 'Average Product SM000312', '11708131922900', 45, NULL, 161, 38260, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:44:09', '2017-08-13 06:44:09'),
(19230, 1, 25, NULL, 223, 'Average Product SM000380', '11708131923000', 45, NULL, 161, 38261, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:44:38', '2017-08-13 06:44:38'),
(19231, 1, 25, NULL, 223, 'Average Product SM000381', '11708131923100', 45, NULL, 161, 38262, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:46:22', '2017-08-13 06:46:22'),
(19232, 1, 10, NULL, 223, 'Average Product SM000313', '11708131923200', 45, NULL, 161, 38263, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:46:35', '2017-08-13 06:46:35'),
(19233, 1, 20, NULL, 223, 'Average Product SM000314', '11708131923300', 45, NULL, 161, 38264, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:46:48', '2017-08-13 06:46:48'),
(19234, 1, 10, NULL, 223, 'Average Product SM000315', '11708131923400', 45, NULL, 161, 38265, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:47:02', '2017-08-13 06:47:02'),
(19235, 1, 10, NULL, 223, 'Average Product SM000382', '11708131923500', 45, NULL, 161, 38266, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:47:33', '2017-08-13 06:47:33'),
(19236, 1, 5, NULL, 223, 'Average Product SM000383', '11708131923600', 45, NULL, 161, 38267, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:48:22', '2017-08-13 06:48:22'),
(19237, 1, 25, NULL, 223, 'Average Product SM000384', '11708131923700', 45, NULL, 161, 38268, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:49:18', '2017-08-13 06:49:18'),
(19238, 1, 25, NULL, 223, 'Average Product SM000385', '11708131923800', 45, NULL, 161, 38269, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:49:55', '2017-08-13 06:49:55'),
(19239, 1, 25, NULL, 223, 'Average Product SM000386', '11708131923900', 45, NULL, 161, 38270, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:50:31', '2017-08-13 06:50:31'),
(19240, 1, 25, NULL, 223, 'Average Product SM000387', '11708131924000', 45, NULL, 161, 38271, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:51:19', '2017-08-13 06:51:19'),
(19241, 1, 10, NULL, 223, 'Average Product SM000316', '11708131924100', 45, NULL, 161, 38272, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:51:40', '2017-08-13 06:51:40'),
(19242, 1, 10, NULL, 223, 'Average Product SM000317', '11708131924200', 45, NULL, 161, 38273, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:52:08', '2017-08-13 06:52:08'),
(19243, 1, 10, NULL, 223, 'Average Product SM000318', '11708131924300', 45, NULL, 161, 38274, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:52:22', '2017-08-13 06:52:22'),
(19244, 1, 10, NULL, 223, 'Average Product SM000319', '11708131924400', 45, NULL, 161, 38275, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:52:36', '2017-08-13 06:52:36'),
(19245, 1, 25, NULL, 223, 'Average Product SM000388', '11708131924500', 45, NULL, 161, 38276, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:52:38', '2017-08-13 06:52:38'),
(19246, 1, 10, NULL, 223, 'Average Product SM000320', '11708131924600', 45, NULL, 161, 38277, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:52:48', '2017-08-13 06:52:48'),
(19247, 1, 5, NULL, 223, 'Average Product SM000321', '11708131924700', 45, NULL, 161, 38278, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:53:03', '2017-08-13 06:53:03'),
(19248, 1, 5, NULL, 223, 'Average Product SM000322', '11708131924800', 45, NULL, 161, 38279, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:53:20', '2017-08-13 06:53:20'),
(19249, 1, 25, NULL, 223, 'Average Product SM000389', '11708131924900', 45, NULL, 161, 38280, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:53:21', '2017-08-13 06:53:21'),
(19250, 1, 5, NULL, 223, 'Average Product SM000323', '11708131925000', 45, NULL, 161, 38281, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:53:34', '2017-08-13 06:53:34'),
(19251, 1, 5, NULL, 223, 'Average Product SM000324', '11708131925100', 45, NULL, 161, 38282, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:53:46', '2017-08-13 06:53:46'),
(19252, 1, 10, NULL, 223, 'Average Product SM000390', '11708131925200', 45, NULL, 161, 38283, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:53:55', '2017-08-13 06:53:55'),
(19253, 1, 5, NULL, 223, 'Average Product SM000325', '11708131925300', 45, NULL, 161, 38284, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:53:59', '2017-08-13 06:53:59'),
(19254, 1, 5, NULL, 223, 'Average Product SM000326', '11708131925400', 45, NULL, 161, 38285, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:54:14', '2017-08-13 06:54:14'),
(19255, 1, 10, NULL, 223, 'Average Product SM000391', '11708131925500', 45, NULL, 161, 38286, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:54:28', '2017-08-13 06:54:28'),
(19256, 1, 5, NULL, 223, 'Average Product SM000327', '11708131925600', 45, NULL, 161, 38287, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:54:29', '2017-08-13 06:54:29'),
(19257, 1, 5, NULL, 223, 'Average Product SM000328', '11708131925700', 45, NULL, 161, 38288, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:55:41', '2017-08-13 06:55:41'),
(19258, 1, 10, NULL, 223, 'Average Product SM000392', '11708131925800', 45, NULL, 161, 38289, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:55:54', '2017-08-13 06:55:54'),
(19259, 1, 5, NULL, 223, 'Average Product SM000329', '11708131925900', 45, NULL, 161, 38290, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:55:56', '2017-08-13 06:55:56'),
(19260, 1, 0, NULL, 223, 'Average Product SM000330', '5', 45, NULL, 161, 38291, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:56:14', '2017-08-13 06:56:14'),
(19261, 1, 10, NULL, 223, 'Average Product SM000331', '11708131926100', 45, NULL, 161, 38292, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:56:38', '2017-08-13 06:56:38'),
(19262, 1, 10, NULL, 223, 'Average Product SM000393', '11708131926200', 45, NULL, 161, 38293, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:56:50', '2017-08-13 06:56:50'),
(19263, 1, 10, NULL, 223, 'Average Product SM000332', '11708131926300', 45, NULL, 161, 38294, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:56:58', '2017-08-13 06:56:58'),
(19264, 1, 10, NULL, 223, 'Average Product SM000333', '11708131926400', 45, NULL, 161, 38295, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:57:17', '2017-08-13 06:57:17'),
(19265, 1, 10, NULL, 223, 'Average Product SM000394', '11708131926500', 45, NULL, 161, 38296, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:57:39', '2017-08-13 06:57:39'),
(19266, 1, 5, NULL, 223, 'Average Product SM000334', '11708131926600', 45, NULL, 161, 38297, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:57:41', '2017-08-13 06:57:41'),
(19267, 1, 5, NULL, 223, 'Average Product SM000335', '11708131926700', 45, NULL, 161, 38298, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:57:55', '2017-08-13 06:57:55'),
(19268, 1, 10, NULL, 223, 'Average Product SM000336', '11708131926800', 45, NULL, 161, 38299, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:58:09', '2017-08-13 06:58:09'),
(19269, 1, 10, NULL, 223, 'Average Product SM000395', '11708131926900', 45, NULL, 161, 38300, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:58:16', '2017-08-13 06:58:16'),
(19270, 1, 5, NULL, 223, 'Average Product SM000337', '11708131927000', 45, NULL, 161, 38301, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:58:26', '2017-08-13 06:58:26'),
(19271, 1, 5, NULL, 223, 'Average Product SM000338', '11708131927100', 45, NULL, 161, 38302, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:58:40', '2017-08-13 06:58:40'),
(19272, 1, 5, NULL, 223, 'Average Product SM000339', '11708131927200', 45, NULL, 161, 38303, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:58:55', '2017-08-13 06:58:55'),
(19273, 1, 5, NULL, 223, 'Average Product SM000340', '11708131927300', 45, NULL, 161, 38304, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:59:25', '2017-08-13 06:59:25'),
(19274, 1, 5, NULL, 223, 'Average Product SM000341', '11708131927400', 45, NULL, 161, 38305, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:59:38', '2017-08-13 06:59:38'),
(19275, 1, 10, NULL, 223, 'Average Product SM000396', '11708131927500', 45, NULL, 161, 38306, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:59:43', '2017-08-13 06:59:43'),
(19276, 1, 5, NULL, 223, 'Average Product SM000342', '11708131927600', 45, NULL, 161, 38307, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 06:59:54', '2017-08-13 06:59:54'),
(19277, 1, 5, NULL, 223, 'Average Product SM000343', '11708131927700', 45, NULL, 161, 38308, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:00:15', '2017-08-13 07:00:15'),
(19278, 1, 5, NULL, 223, 'Average Product SM000344', '11708131927800', 45, NULL, 161, 38309, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:00:29', '2017-08-13 07:00:29'),
(19279, 1, 10, NULL, 223, 'Average Product SM000345', '11708131927900', 45, NULL, 161, 38310, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:00:41', '2017-08-13 07:00:41'),
(19280, 1, 10, NULL, 223, 'Average Product SM000397', '11708131928000', 45, NULL, 161, 38311, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:00:48', '2017-08-13 07:00:48'),
(19281, 1, 10, NULL, 223, 'Average Product SM000346', '11708131928100', 45, NULL, 161, 38312, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:01:05', '2017-08-13 07:01:05'),
(19282, 1, 0, NULL, NULL, 'Average Product SM000398', '11708131928200', 45, NULL, 161, 38313, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:01:13', '2017-08-13 07:01:13'),
(19283, 1, 10, NULL, 223, 'Average Product SM000347', '11708131928300', 45, NULL, 161, 38314, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:01:19', '2017-08-13 07:01:19'),
(19285, 1, 5, NULL, 223, 'Average Product SM000348', '11708131928500', 45, NULL, 161, 38315, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:01:36', '2017-08-13 07:01:36'),
(19286, 1, 5, NULL, 223, 'Average Product SM000349', '11708131928600', 45, NULL, 161, 38316, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:02:05', '2017-08-13 07:02:05'),
(19287, 1, 10, NULL, 223, 'Average Product SM000399', '11708131928700', 45, NULL, 161, 38317, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:02:10', '2017-08-13 07:02:10'),
(19288, 1, 5, NULL, 223, 'Average Product SM000350', '11708131928800', 45, NULL, 161, 38318, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:02:49', '2017-08-13 07:02:49'),
(19289, 1, 5, NULL, 223, 'Average Product SM000351', '11708131928900', 45, NULL, 161, 38319, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:03:03', '2017-08-13 07:03:03'),
(19290, 1, 10, NULL, 223, 'Average Product SM000400', '11708131929000', 45, NULL, 161, 38320, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:03:11', '2017-08-13 07:03:11'),
(19291, 1, 10, NULL, 223, 'Average Product SM000401', '11708131929100', 45, NULL, 161, 38321, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:04:23', '2017-08-13 07:04:23'),
(19292, 1, 20, NULL, 223, 'Average Product SM000403', '11708131929200', 45, NULL, 161, 38322, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:05:11', '2017-08-13 07:05:11'),
(19293, 1, 25, NULL, 223, 'Average Product SM000404', '11708131929300', 45, NULL, 161, 38323, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:05:58', '2017-08-13 07:05:58'),
(19294, 1, 25, NULL, 223, 'Average Product SM000405', '11708131929400', 45, NULL, 161, 38324, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:06:31', '2017-08-13 07:06:31'),
(19295, 1, 6, NULL, 223, 'Kids Item K000001', '11708131929500', 45, NULL, 161, 38325, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:15:32', '2017-08-13 07:15:32'),
(19296, 1, 9, NULL, 223, 'Kids Item K000002', '11708131929600', 45, NULL, 161, 38326, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:15:46', '2017-08-13 07:15:46'),
(19297, 1, 11, NULL, 223, 'Kids Item K000003', '11708131929700', 45, NULL, 161, 38327, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:16:01', '2017-08-13 07:16:01'),
(19298, 1, 11, NULL, 223, 'Kids Item K000004', '11708131929800', 45, NULL, 161, 38328, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:16:14', '2017-08-13 07:16:14'),
(19299, 1, 20, NULL, 223, 'Kids Item K000005', '11708131929900', 45, NULL, 161, 38329, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:17:05', '2017-08-13 07:17:05'),
(19300, 1, 10, NULL, 223, 'Kids Item K000006', '11708131930000', 45, NULL, 161, 38330, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:17:21', '2017-08-13 07:17:21'),
(19301, 1, 10, NULL, 223, 'Kids Item K000007', '11708131930100', 45, NULL, 161, 38331, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:17:34', '2017-08-13 07:17:34'),
(19302, 1, 11, NULL, 223, 'Kids Item K000008', '11708131930200', 45, NULL, 161, 38332, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:17:56', '2017-08-13 07:17:56'),
(19303, 1, 22, NULL, 223, 'Kids Item K000009', '11708131930300', 45, NULL, 161, 38333, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:18:39', '2017-08-13 07:18:39'),
(19304, 1, 9, NULL, 223, 'Kids Item K000010', '11708131930400', 45, NULL, 161, 38334, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:19:04', '2017-08-13 07:19:04'),
(19305, 1, 8, NULL, 223, 'Kids Item K000011', '11708131930500', 45, NULL, 161, 38335, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:19:23', '2017-08-13 07:19:23'),
(19306, 1, 6, NULL, 223, 'Kids Item K000012', '11708131930600', 45, NULL, 161, 38336, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:19:39', '2017-08-13 07:19:39'),
(19307, 1, 5, NULL, 223, 'Crockeries Yc 000501', '11708131930700', 45, NULL, 161, 38337, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:19:57', '2017-08-13 07:19:57'),
(19308, 1, 10, NULL, 223, 'Kids Item K000013', '11708131930800', 45, NULL, 161, 38338, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:20:04', '2017-08-13 07:20:04'),
(19309, 1, 12, NULL, 223, 'Kids Item K000014', '11708131930900', 45, NULL, 161, 38339, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:20:20', '2017-08-13 07:20:20'),
(19310, 1, 10, NULL, 223, 'Kids Item K000015', '11708131931000', 45, NULL, 161, 38340, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:20:35', '2017-08-13 07:20:35'),
(19311, 1, 5, NULL, 223, 'Crockeries Yc000502', '11708131931100', 45, NULL, 161, 38341, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:21:01', '2017-08-13 07:21:01'),
(19312, 1, 5, NULL, 223, 'Kids Item K000016', '11708131931200', 45, NULL, 161, 38342, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:21:06', '2017-08-13 07:21:06'),
(19313, 1, 15, NULL, 223, 'Kids Item K000017', '11708131931300', 45, NULL, 161, 38343, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:21:28', '2017-08-13 07:21:28'),
(19314, 1, 8, NULL, 223, 'Kids Item K000018', '11708131931400', 45, NULL, 161, 38344, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:22:10', '2017-08-13 07:22:10'),
(19315, 1, 15, NULL, 223, 'Kids Item K000019', '11708131931500', 45, NULL, 161, 38345, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:22:23', '2017-08-13 07:22:23'),
(19316, 1, 5, NULL, 223, 'Crockeries Yc000503', '11708131931600', 45, NULL, 161, 38346, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:23:04', '2017-08-13 07:23:04'),
(19317, 1, 18, NULL, 223, 'Kids Item K000020', '11708131931700', 45, NULL, 161, 38347, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:23:05', '2017-08-13 07:23:05'),
(19318, 1, 18, NULL, 223, 'Kids Item K000021', '11708131931800', 45, NULL, 161, 38348, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:23:23', '2017-08-13 07:23:23'),
(19319, 1, 5, NULL, 223, 'Crockeries Yc000504', '11708131931900', 45, NULL, 161, 38349, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:23:35', '2017-08-13 07:23:35'),
(19320, 1, 11, NULL, 223, 'Kids Item K000022', '11708131932000', 45, NULL, 161, 38350, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:23:41', '2017-08-13 07:23:41'),
(19321, 1, 5, NULL, 223, 'Crockeries Yc000505', '11708131932100', 45, NULL, 161, 38351, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:24:03', '2017-08-13 07:24:03'),
(19322, 1, 5, NULL, 223, 'Kids Item K000023', '11708131932200', 45, NULL, 161, 38352, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:24:03', '2017-08-13 07:24:03'),
(19323, 1, 8, NULL, 223, 'Kids Item K000024', '11708131932300', 45, NULL, 161, 38353, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:24:20', '2017-08-13 07:24:20'),
(19324, 1, 5, NULL, 223, 'Crockeries Yc000506', '11708131932400', 45, NULL, 161, 38354, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:24:33', '2017-08-13 07:24:33'),
(19325, 1, 13, NULL, 223, 'Kids Item K000025', '11708131932500', 45, NULL, 161, 38355, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:24:38', '2017-08-13 07:24:38'),
(19326, 1, 7, NULL, 223, 'Kids Item K000026', '11708131932600', 45, NULL, 161, 38356, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:24:52', '2017-08-13 07:24:52'),
(19327, 1, 10, NULL, 223, 'Crockeries Yc000507', '11708131932700', 45, NULL, 161, 38357, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:25:03', '2017-08-13 07:25:03'),
(19328, 1, 10, NULL, 223, 'Kids Item K000027', '11708131932800', 45, NULL, 161, 38358, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:25:09', '2017-08-13 07:25:09'),
(19329, 1, 15, NULL, 223, 'Kids Item K000028', '11708131932900', 45, NULL, 161, 38359, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:25:23', '2017-08-13 07:25:23'),
(19330, 1, 10, NULL, 223, 'Crockeries Yc000508', '11708131933000', 45, NULL, 161, 38360, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:25:41', '2017-08-13 07:25:41'),
(19331, 1, 11, NULL, 223, 'Kids Item K000029', '11708131933100', 45, NULL, 161, 38361, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:25:45', '2017-08-13 07:25:45'),
(19332, 1, 11, NULL, 223, 'Kids Item K000030', '11708131933200', 45, NULL, 161, 38362, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:26:06', '2017-08-13 07:26:06'),
(19333, 1, 10, NULL, 223, 'Crockeries Yc000509', '11708131933300', 45, NULL, 161, 38363, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:26:18', '2017-08-13 07:26:18'),
(19334, 1, 7, NULL, 223, 'Kids Item K000031', '11708131933400', 45, NULL, 161, 38364, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:26:21', '2017-08-13 07:26:21'),
(19335, 1, 8, NULL, 223, 'Kids Item K000032', '11708131933500', 45, NULL, 161, 38365, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:26:38', '2017-08-13 07:26:38'),
(19336, 1, 10, NULL, 223, 'Crockeries Yc000510', '11708131933600', 45, NULL, 161, 38366, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:26:55', '2017-08-13 07:26:55'),
(19337, 1, 10, NULL, 223, 'Kids Item K000033', '11708131933700', 45, NULL, 161, 38367, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:27:13', '2017-08-13 07:27:13'),
(19338, 1, 11, NULL, 223, 'Kids Item K000034', '11708131933800', 45, NULL, 161, 38368, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:27:30', '2017-08-13 07:27:30'),
(19339, 1, 10, NULL, 223, 'Kids Item K000035', '11708131933900', 45, NULL, 161, 38369, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:27:45', '2017-08-13 07:27:45'),
(19340, 1, 10, NULL, 223, 'Kids Item K000036', '11708131934000', 45, NULL, 161, 38370, 0, 0, 0, '\r\n', 1, 0, 1, 1, '2017-08-13 07:27:59', '2017-08-13 07:27:59'),
(19341, 1, 10, NULL, 223, ' Crockeries Yc000511', '11708131934100', 45, NULL, 161, 38371, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:27:59', '2017-08-13 07:27:59'),
(19342, 1, 11, NULL, 223, 'Kids Item K000037', '11708131934200', 45, NULL, 161, 38372, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:28:14', '2017-08-13 07:28:14'),
(19343, 1, 12, NULL, 223, 'Kids Item K000038', '11708131934300', 45, NULL, 161, 38373, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:28:30', '2017-08-13 07:28:30'),
(19344, 1, 10, NULL, 223, ' Crockeries Yc000512', '11708131934400', 45, NULL, 161, 38374, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:28:31', '2017-08-13 07:28:31'),
(19345, 1, 10, NULL, 223, 'Kids Item K000039', '11708131934500', 45, NULL, 161, 38375, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:28:47', '2017-08-13 07:28:47'),
(19346, 1, 8, NULL, 223, 'Kids Item K000040', '11708131934600', 45, NULL, 161, 38376, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:29:03', '2017-08-13 07:29:03'),
(19347, 1, 5, NULL, 223, ' Crockeries Yc000513', '11708131934700', 45, NULL, 161, 38377, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:29:16', '2017-08-13 07:29:16'),
(19348, 1, 10, NULL, 223, 'Kids Item K000041', '11708131934800', 45, NULL, 161, 38378, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:29:35', '2017-08-13 07:29:35'),
(19349, 1, 5, NULL, 223, ' Crockeries Yc000514', '11708131934900', 45, NULL, 161, 38379, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:29:44', '2017-08-13 07:29:44'),
(19350, 1, 10, NULL, 223, 'Kids Item K000042', '11708131935000', 45, NULL, 161, 38380, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:29:50', '2017-08-13 07:29:50'),
(19351, 1, 5, NULL, 223, ' Crockeries Yc000515', '11708131935100', 45, NULL, 161, 38381, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:30:17', '2017-08-13 07:30:17'),
(19352, 1, 20, NULL, 223, 'Kids Item K000043', '11708131935200', 45, NULL, 161, 38382, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:30:29', '2017-08-13 07:30:29'),
(19353, 1, 10, NULL, 223, ' Crockeries Yc000516', '11708131935300', 45, NULL, 161, 38383, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:30:43', '2017-08-13 07:30:43'),
(19354, 1, 15, NULL, 223, 'Kids Item K000044', '11708131935400', 45, NULL, 161, 38384, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:30:45', '2017-08-13 07:30:45'),
(19355, 1, 10, NULL, 223, 'Kids Item K000045', '11708131935500', 45, NULL, 161, 38385, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:31:03', '2017-08-13 07:31:03'),
(19356, 1, 15, NULL, 223, ' Crockeries Yc000517', '11708131935600', 45, NULL, 161, 38386, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:31:18', '2017-08-13 07:31:18'),
(19357, 1, 6, NULL, 223, 'Kids Item K000046', '11708131935700', 45, NULL, 161, 38387, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:31:21', '2017-08-13 07:31:21'),
(19358, 1, 5, NULL, 223, 'Kids Item K000047', '11708131935800', 45, NULL, 161, 38388, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:31:37', '2017-08-13 07:31:37'),
(19359, 1, 8, NULL, 223, 'Kids Item K000048', '11708131935900', 45, NULL, 161, 38389, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:31:54', '2017-08-13 07:31:54'),
(19360, 1, 15, NULL, 223, 'Crockeries Yc000518', '11708131936000', 45, NULL, 161, 38390, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:32:00', '2017-08-13 07:32:00'),
(19361, 1, 13, NULL, 223, 'Kids Item K000049', '11708131936100', 45, NULL, 161, 38391, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:32:09', '2017-08-13 07:32:09'),
(19362, 1, 5, NULL, 223, 'Kids Item K000050', '11708131936200', 45, NULL, 161, 38392, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:32:23', '2017-08-13 07:32:23'),
(19363, 1, 10, NULL, 223, ' Crockeries Yc000519', '11708131936300', 45, NULL, 161, 38393, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:32:43', '2017-08-13 07:32:43'),
(19364, 1, 10, NULL, 223, ' Crockeries Yc000521', '11708131936400', 45, NULL, 161, 38394, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:33:42', '2017-08-13 07:33:42'),
(19365, 1, 10, NULL, 223, ' Crockeries Yc000522', '11708131936500', 45, NULL, 161, 38395, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:34:20', '2017-08-13 07:34:20'),
(19366, 1, 12, NULL, 223, 'Kids Item K000051', '11708131936600', 45, NULL, 161, 38396, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:34:42', '2017-08-13 07:34:42'),
(19367, 1, 0, NULL, NULL, ' Crockeries Yc0005', '11708131936700', 45, NULL, 161, 38397, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:34:48', '2017-08-13 07:34:48'),
(19368, 1, 12, NULL, 223, 'Kids Item K000052', '11708131936800', 45, NULL, 161, 38398, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:34:58', '2017-08-13 07:34:58'),
(19369, 1, 12, NULL, 223, 'Kids Item K000053', '11708131936900', 45, NULL, 161, 38399, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:35:22', '2017-08-13 07:35:22'),
(19370, 1, 15, NULL, 223, ' Crockeries Yc000523', '11708131937000', 45, NULL, 161, 38400, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:35:29', '2017-08-13 07:35:29'),
(19371, 1, 10, 388, 223, 'Kids Item B000054', '11708131937100', 45, NULL, 161, 38401, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:35:37', '2017-08-13 07:52:16'),
(19372, 1, 11, 388, 223, 'Kids Item B000055', '11708131937200', 45, NULL, 161, 38402, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:35:55', '2017-08-13 07:52:38'),
(19373, 1, 15, NULL, 223, ' Crockeries Yc000524', '11708131937300', 45, NULL, 161, 38403, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:36:10', '2017-08-13 07:36:10'),
(19374, 1, 9, 388, 223, 'Kids Item B000056', '11708131937400', 45, NULL, 161, 38404, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:36:19', '2017-08-13 07:53:02'),
(19375, 1, 10, 388, 223, 'Kids Item B000057', '11708131937500', 45, NULL, 161, 38405, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:36:40', '2017-08-13 07:53:26'),
(19376, 1, 15, NULL, 223, ' Crockeries Yc000525', '11708131937600', 45, NULL, 161, 38406, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:36:52', '2017-08-13 07:36:52'),
(19377, 1, 15, NULL, 223, ' Crockeries Yc000526', '11708131937700', 45, NULL, 161, 38407, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:37:26', '2017-08-13 07:37:26'),
(19378, 1, 10, NULL, 223, ' Crockeries Yc000527', '11708131937800', 45, NULL, 161, 38408, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:38:03', '2017-08-13 07:38:03'),
(19379, 1, 10, 388, 223, 'Kids Item B000058', '11708131937900', 45, NULL, 161, 38409, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:38:07', '2017-08-13 07:53:51'),
(19380, 1, 27, 388, 223, 'Kids Item B000059', '11708131938000', 45, NULL, 161, 38410, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:38:40', '2017-08-13 07:54:07'),
(19381, 1, 10, NULL, 223, ' Crockeries Yc000528', '11708131938100', 45, NULL, 161, 38411, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:38:45', '2017-08-13 07:38:45'),
(19382, 1, 22, 388, 223, 'Kids Item B000060', '11708131938200', 45, NULL, 161, 38412, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:39:15', '2017-08-13 07:54:37'),
(19383, 1, 11, 388, 223, 'Kids Item B000061', '11708131938300', 45, NULL, 161, 38413, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:40:00', '2017-08-13 07:54:57'),
(19384, 1, 15, NULL, 223, ' Crockeries Yc000529', '11708131938400', 45, NULL, 161, 38414, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:42:09', '2017-08-13 07:42:09'),
(19385, 1, 10, NULL, 223, ' Crockeries Yc000530', '11708131938500', 45, NULL, 161, 38415, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:42:50', '2017-08-13 07:42:50'),
(19386, 1, 5, NULL, 223, ' Crockeries Yc000531', '11708131938600', 45, NULL, 161, 38416, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:43:52', '2017-08-13 07:43:52'),
(19387, 1, 5, NULL, 223, 'Crockeries Yc000532', '11708131938700', 45, NULL, 161, 38417, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:44:54', '2017-08-13 07:44:54'),
(19388, 1, 5, NULL, 223, 'Crockeries Yc000533', '11708131938800', 45, NULL, 161, 38418, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:45:26', '2017-08-13 07:45:26'),
(19389, 1, 5, NULL, 223, 'Crockeries Yc000534', '11708131938900', 45, NULL, 161, 38419, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:45:56', '2017-08-13 07:45:56'),
(19390, 1, 0, NULL, 223, 'Crockeries Yc000535', '11708131939000', 45, NULL, 161, 38420, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:46:22', '2017-08-13 07:46:22'),
(19391, 1, 11, 388, 223, 'Kids Item B000062', '11708131939100', 45, NULL, 161, 38421, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:46:35', '2017-08-13 07:55:26'),
(19392, 1, 5, NULL, NULL, 'Crockeries Yc000536', '11708131939200', 45, NULL, 161, 38422, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:46:47', '2017-08-13 07:46:47'),
(19393, 1, 16, 388, 223, 'Kids Item L000063', '11708131939300', 45, NULL, 161, 38423, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:46:59', '2017-08-13 07:56:07'),
(19394, 1, 15, 388, 223, 'Kids Item L000064', '11708131939400', 45, NULL, 161, 38424, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:47:20', '2017-08-13 07:56:34'),
(19395, 1, 10, NULL, 223, 'Crockeries Yc000537', '11708131939500', 45, NULL, 161, 38425, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:47:28', '2017-08-13 07:47:28'),
(19396, 1, 0, 388, 223, 'Kids Item L000065', '11708131939600', 45, NULL, 161, 38426, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:47:37', '2017-08-13 07:57:01'),
(19397, 1, 16, 388, 223, 'Kids Item L000066', '11708131939700', 45, NULL, 161, 38427, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:47:58', '2017-08-13 07:57:29'),
(19398, 1, 5, NULL, 223, 'Crockeries Yc000538', '11708131939800', 45, NULL, 161, 38428, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:48:09', '2017-08-13 07:48:09'),
(19399, 1, 5, NULL, 223, 'Crockeries Yc000539', '11708131939900', 45, NULL, 161, 38429, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:48:46', '2017-08-13 07:48:46'),
(19400, 1, 10, 388, 223, 'Kids Item L000067', '11708131940000', 45, NULL, 161, 38430, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:48:49', '2017-08-13 07:57:55'),
(19401, 1, 0, 388, 223, 'Kids Item L000068', '11708131940100', 45, NULL, 161, 38431, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:49:01', '2017-08-13 07:58:20'),
(19402, 1, 5, NULL, 223, 'Crockeries Yc000540', '11708131940200', 45, NULL, 161, 38432, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:49:19', '2017-08-13 07:49:19'),
(19403, 1, 45, 388, 223, 'Kids Item L000069', '11708131940300', 45, NULL, 161, 38433, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:49:34', '2017-08-13 07:58:49'),
(19404, 1, 85, 388, 223, 'Kids Item L000070', '11708131940400', 45, NULL, 161, 38434, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:49:54', '2017-08-13 07:59:09'),
(19405, 1, 10, NULL, 223, 'Crockeries Yc000541', '11708131940500', 45, NULL, 161, 38435, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:50:00', '2017-08-13 07:50:00'),
(19406, 1, 65, 388, 223, 'Kids Item L000071', '11708131940600', 45, NULL, 161, 38436, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:50:15', '2017-08-13 07:59:35'),
(19407, 1, 10, 388, 223, 'Kids Item L000072', '11708131940700', 45, NULL, 161, 38437, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:50:33', '2017-08-13 08:00:00'),
(19408, 1, 10, NULL, 223, 'Crockeries Yc000542', '11708131940800', 45, NULL, 161, 38438, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:50:41', '2017-08-13 07:50:41'),
(19409, 1, 10, NULL, 223, 'Crockeries Yc000543', '11708131940900', 45, NULL, 157, 38439, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:51:34', '2017-08-13 07:51:34'),
(19410, 1, 10, NULL, 223, 'Crockeries Yc000544', '11708131941000', 45, NULL, 161, 38440, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:52:26', '2017-08-13 07:52:26'),
(19411, 1, 10, NULL, 223, 'Crockeries Yc000545', '11708131941100', 45, NULL, 161, 38441, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:52:57', '2017-08-13 07:52:57'),
(19412, 1, 10, NULL, 223, 'Crockeries Yc000546', '11708131941200', 45, NULL, 161, 38442, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:53:58', '2017-08-13 07:53:58'),
(19413, 1, 5, NULL, 223, 'Crockeries Yc000547', '11708131941300', 45, NULL, 161, 38443, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:54:32', '2017-08-13 07:54:32'),
(19414, 1, 5, NULL, 223, 'Crockeries Yc000548', '11708131941400', 45, NULL, 157, 38444, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:55:14', '2017-08-13 07:55:14'),
(19415, 1, 5, NULL, 223, 'Crockeries Yc000549', '11708131941500', 45, NULL, 161, 38445, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:55:53', '2017-08-13 07:55:53'),
(19416, 1, 15, NULL, 223, 'Crockeries Yc000550', '11708131941600', 45, NULL, 161, 38446, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:56:22', '2017-08-13 07:56:22'),
(19417, 1, 15, NULL, 223, 'Crockeries Yc000551', '11708131941700', 45, NULL, 161, 38447, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:56:57', '2017-08-13 07:56:57'),
(19418, 1, 0, NULL, 223, 'Crockeries Yc000552', '11708131941800', 45, NULL, 161, 38448, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:57:31', '2017-08-13 07:57:31'),
(19419, 1, 5, NULL, 223, 'Crockeries Yc000553', '11708131941900', 45, NULL, 161, 38449, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:58:19', '2017-08-13 07:58:19'),
(19420, 1, 5, NULL, 223, 'Crockeries Yc000554', '11708131942000', 45, NULL, 161, 38450, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 07:58:58', '2017-08-13 07:58:58'),
(19421, 1, 20, NULL, 223, 'Crockeries Yc000555', '11708131942100', 45, NULL, 161, 38451, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:00:40', '2017-08-13 08:00:40'),
(19422, 1, 10, NULL, 223, 'Crockeries Yc000556', '11708131942200', 45, NULL, 161, 38452, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:01:23', '2017-08-13 08:01:23'),
(19423, 1, 15, 388, 223, 'Toale T000073', '11708131942300', 45, NULL, 161, 38453, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:01:55', '2017-08-13 08:03:03'),
(19424, 1, 10, 388, 223, 'Toale T000074', '11708131942400', 45, NULL, 161, 38454, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:02:14', '2017-08-13 08:02:46'),
(19425, 1, 5, NULL, 223, 'Crockeries Yc000557', '11708131942500', 45, NULL, 161, 38455, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:02:17', '2017-08-13 08:02:17'),
(19426, 1, 10, NULL, 223, 'Crockeries Yc000558', '11708131942600', 45, NULL, 161, 38456, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:02:55', '2017-08-13 08:02:55'),
(19427, 1, 3, NULL, 223, 'Crockeries Yc000559', '11708131942700', 45, NULL, 161, 38457, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:03:28', '2017-08-13 08:03:28'),
(19428, 1, 11, NULL, 223, 'Toale T000075', '11708131942800', 45, NULL, 161, 38458, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:03:29', '2017-08-13 08:03:29'),
(19429, 1, 11, NULL, 223, 'Toale T000076', '11708131942900', 45, NULL, 161, 38459, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:03:52', '2017-08-13 08:03:52'),
(19430, 1, 10, NULL, 223, 'Toale T000077', '11708131943000', 45, NULL, 161, 38460, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:04:07', '2017-08-13 08:04:07'),
(19431, 1, 0, NULL, 223, 'Crockeries Yc000560', '11708131943100', 45, NULL, 161, 38461, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:04:12', '2017-08-13 08:04:12'),
(19432, 1, 11, NULL, 223, 'Toale T000078', '11708131943200', 45, NULL, 161, 38462, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:04:25', '2017-08-13 08:04:25'),
(19433, 1, 11, NULL, 223, 'Toale T000079', '11708131943300', 45, NULL, 161, 38463, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:04:40', '2017-08-13 08:04:40'),
(19434, 1, 10, NULL, 223, 'Toale T000080', '11708131943400', 45, NULL, 161, 38464, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:04:57', '2017-08-13 08:04:57'),
(19435, 1, 6, NULL, 223, 'Toale T000081', '11708131943500', 45, NULL, 161, 38465, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:05:22', '2017-08-13 08:05:22'),
(19436, 1, 5, NULL, 223, 'Toale T000082', '11708131943600', 45, NULL, 161, 38466, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:05:35', '2017-08-13 08:05:35'),
(19437, 1, 3, NULL, 223, 'Crockeries Yc000561', '11708131943700', 45, NULL, 161, 38467, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:05:52', '2017-08-13 08:05:52'),
(19438, 1, 10, NULL, 223, 'Toale T000083', '11708131943800', 45, NULL, 161, 38468, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:05:53', '2017-08-13 08:05:53'),
(19439, 1, 10, NULL, 223, 'Toale T000084', '11708131943900', 45, NULL, 161, 38469, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:06:15', '2017-08-13 08:06:15'),
(19440, 1, 20, NULL, 223, 'Crockeries Yc000562', '11708131944000', 45, NULL, 161, 38470, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:06:28', '2017-08-13 08:06:28'),
(19441, 1, 10, NULL, 223, 'Toale T000085', '11708131944100', 45, NULL, 161, 38471, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:07:55', '2017-08-13 08:07:55'),
(19442, 1, 8, NULL, 223, 'Toale T000086', '11708131944200', 45, NULL, 161, 38472, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:08:34', '2017-08-13 08:08:34'),
(19443, 1, 15, NULL, 223, 'Crockeries Yc000563', '11708131944300', 45, NULL, 161, 38473, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:08:45', '2017-08-13 08:08:45'),
(19444, 1, 8, NULL, 223, 'Toale T000087', '11708131944400', 45, NULL, 161, 38474, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:08:51', '2017-08-13 08:08:51'),
(19445, 1, 11, NULL, 223, 'Toale T000088', '11708131944500', 45, NULL, 161, 38475, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:09:06', '2017-08-13 08:09:06'),
(19446, 1, 20, NULL, 223, 'Crockeries Yc000564', '11708131944600', 45, NULL, 161, 38476, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:09:23', '2017-08-13 08:09:23'),
(19447, 1, 5, 388, 223, 'Bra V000089', '11708131944700', 45, NULL, 161, 38477, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:09:47', '2017-08-13 08:09:59'),
(19448, 1, 5, NULL, 223, 'Crockeries Yc000565', '11708131944800', 45, NULL, 161, 38478, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:09:57', '2017-08-13 08:09:57'),
(19449, 1, 5, NULL, 223, 'Crockeries Yc000566', '11708131944900', 45, NULL, 161, 38479, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:10:24', '2017-08-13 08:10:24'),
(19450, 1, 5, NULL, 223, 'Bra V000090', '11708131945000', 45, NULL, 161, 38480, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:10:38', '2017-08-13 08:10:38'),
(19451, 1, 5, NULL, 223, 'Crockeries Yc000567', '11708131945100', 45, NULL, 161, 38481, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:10:50', '2017-08-13 08:10:50'),
(19452, 1, 5, NULL, 223, 'Bra V000091', '11708131945200', 45, NULL, 161, 38482, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:10:58', '2017-08-13 08:10:58'),
(19453, 1, 3, NULL, 223, 'Bra V000093', '11708131945300', 45, NULL, 161, 38483, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:11:24', '2017-08-13 08:11:24'),
(19455, 1, 5, NULL, 223, 'Crockeries Yc000568', '11708131945500', 45, NULL, 161, 38484, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:11:54', '2017-08-13 08:11:54'),
(19456, 1, 5, NULL, 223, 'Bra V000094', '11708131945600', 45, NULL, 161, 38485, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:12:02', '2017-08-13 08:12:02'),
(19457, 1, 5, NULL, 223, 'Bra V000095', '11708131945700', 45, NULL, 161, 38486, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:12:20', '2017-08-13 08:12:20'),
(19458, 1, 5, NULL, 223, 'Crockeries Yc000569', '11708131945800', 45, NULL, 161, 38487, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:12:21', '2017-08-13 08:12:21'),
(19459, 1, 5, NULL, 223, 'Bra V000096', '11708131945900', 45, NULL, 161, 38488, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:12:39', '2017-08-13 08:12:39'),
(19460, 1, 5, NULL, 223, 'Bra V000097', '11708131946000', 45, NULL, 161, 38489, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:12:52', '2017-08-13 08:12:52'),
(19461, 1, 5, NULL, 223, 'Crockeries Yc000570', '11708131946100', 45, NULL, 161, 38490, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:12:54', '2017-08-13 08:12:54'),
(19462, 1, 5, NULL, 223, 'Bra V000098', '11708131946200', 45, NULL, 161, 38491, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:13:16', '2017-08-13 08:13:16'),
(19463, 1, 5, NULL, 223, 'Crockeries Yc000571', '11708131946300', 45, NULL, 161, 38492, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:13:36', '2017-08-13 08:13:36'),
(19464, 1, 5, NULL, 223, 'Bra V000099', '11708131946400', 45, NULL, 161, 38493, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:13:41', '2017-08-13 08:13:41'),
(19465, 1, 5, NULL, 223, 'Bra V000100', '11708131946500', 45, NULL, 161, 38494, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:14:06', '2017-08-13 08:14:06'),
(19466, 1, 5, NULL, 223, 'Bra V000101', '11708131946600', 45, NULL, 161, 38495, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:14:23', '2017-08-13 08:14:23'),
(19467, 1, 2, NULL, 223, 'Bra V000102', '11708131946700', 45, NULL, 161, 38496, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:14:41', '2017-08-13 08:14:41'),
(19468, 1, 4, NULL, 223, 'Bra V000103', '11708131946800', 45, NULL, 161, 38497, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:14:54', '2017-08-13 08:14:54'),
(19469, 1, 10, NULL, 223, 'Crockeries Yc000572', '11708131946900', 45, NULL, 161, 38498, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:15:25', '2017-08-13 08:15:25'),
(19470, 1, 5, NULL, 223, 'Bra V000104', '11708131947000', 45, NULL, 161, 38499, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:16:04', '2017-08-13 08:16:04'),
(19471, 1, 5, NULL, 223, 'Bra V000105', '11708131947100', 45, NULL, 161, 38500, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:16:14', '2017-08-13 08:16:14'),
(19472, 1, 5, NULL, 223, 'Bra V000106', '11708131947200', 45, NULL, 161, 38501, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:16:29', '2017-08-13 08:16:29'),
(19473, 1, 5, NULL, 223, 'Bra V000107', '11708131947300', 45, NULL, 161, 38502, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:16:44', '2017-08-13 08:16:44'),
(19474, 1, 5, NULL, 223, 'Crockeries Yc000573', '11708131947400', 45, NULL, 161, 38503, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:16:57', '2017-08-13 08:16:57'),
(19475, 1, 5, NULL, 223, 'Jangiya J000108', '11708131947500', 45, NULL, 161, 38504, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:17:56', '2017-08-13 08:17:56'),
(19476, 1, 5, NULL, 223, 'Crockeries Yc000574', '11708131947600', 45, NULL, 161, 38505, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:18:00', '2017-08-13 08:18:00'),
(19477, 1, 3, NULL, 223, 'Jangiya J000109', '11708131947700', 45, NULL, 161, 38506, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:18:11', '2017-08-13 08:18:11'),
(19478, 1, 10, NULL, 223, 'Crockeries Yc000575', '11708131947800', 45, NULL, 161, 38507, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:18:24', '2017-08-13 08:18:24'),
(19480, 1, 10, NULL, 223, 'Crockeries Yc000576', '11708131948000', 45, NULL, 161, 38508, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:18:50', '2017-08-13 08:18:50'),
(19481, 1, 5, NULL, 223, 'Jangiya J000110', '11708131948100', 45, NULL, 161, 38509, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:18:52', '2017-08-13 08:18:52'),
(19482, 1, 5, NULL, 223, 'Jangiya J000111', '11708131948200', 45, NULL, 161, 38510, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:19:15', '2017-08-13 08:19:15'),
(19483, 1, 10, NULL, 223, 'Crockeries Yc000577', '11708131948300', 45, NULL, 161, 38511, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:19:27', '2017-08-13 08:19:27'),
(19484, 1, 5, NULL, 223, 'Jangiya J000112', '11708131948400', 45, NULL, 161, 38512, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:19:34', '2017-08-13 08:19:34'),
(19485, 1, 3, NULL, 223, 'Jangiya J000113', '11708131948500', 45, NULL, 161, 38513, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:19:55', '2017-08-13 08:19:55'),
(19486, 1, 5, NULL, 223, 'Crockeries Yc000578', '11708131948600', 45, NULL, 161, 38514, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:20:00', '2017-08-13 08:20:00'),
(19487, 1, 5, NULL, 223, 'Jangiya J000114', '11708131948700', 45, NULL, 161, 38515, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:20:22', '2017-08-13 08:20:22'),
(19488, 1, 2, NULL, 223, 'Jangiya J000115', '11708131948800', 45, NULL, 161, 38516, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:20:41', '2017-08-13 08:20:41'),
(19489, 1, 3, NULL, 223, 'Crockeries Yc000579', '11708131948900', 45, NULL, 161, 38517, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:20:43', '2017-08-13 08:20:43'),
(19490, 1, 3, NULL, 223, 'Jangiya J000116', '11708131949000', 45, NULL, 161, 38518, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:20:59', '2017-08-13 08:20:59'),
(19491, 1, 5, NULL, 223, 'Jangiya J000117', '11708131949100', 45, NULL, 161, 38519, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:21:14', '2017-08-13 08:21:14'),
(19492, 1, 5, NULL, 223, 'Jangiya J000118', '11708131949200', 45, NULL, 161, 38520, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:21:30', '2017-08-13 08:21:30'),
(19493, 1, 3, NULL, 223, 'Crockeries Yc000580', '11708131949300', 45, NULL, 161, 38521, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:21:35', '2017-08-13 08:21:35'),
(19494, 1, 5, NULL, 223, 'Jangiya J000119', '11708131949400', 45, NULL, 161, 38522, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:21:46', '2017-08-13 08:21:46'),
(19495, 1, 5, NULL, 223, 'Jangiya J000120', '11708131949500', 45, NULL, 161, 38523, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:22:12', '2017-08-13 08:22:12'),
(19496, 1, 5, NULL, 223, 'Jangiya J000121', '11708131949600', 45, NULL, 161, 38524, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:22:32', '2017-08-13 08:22:32'),
(19497, 1, 0.33, NULL, 223, 'Crockeries Yc000581', '11708131949700', 45, NULL, 161, 38525, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:22:39', '2017-08-13 08:22:39'),
(19498, 1, 4, NULL, 223, 'Jangiya J000122', '11708131949800', 45, NULL, 161, 38526, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:22:49', '2017-08-13 08:22:49'),
(19499, 1, 5, NULL, 223, 'Jangiya J000123', '11708131949900', 45, NULL, 161, 38527, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:23:05', '2017-08-13 08:23:05'),
(19500, 1, 1, NULL, 223, 'Crockeries Yc000582', '11708131950000', 45, NULL, 161, 38528, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:23:15', '2017-08-13 08:23:15'),
(19501, 1, 4, NULL, 223, 'Jangiya J000124', '11708131950100', 45, NULL, 161, 38529, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:23:26', '2017-08-13 08:23:26'),
(19502, 1, 5, NULL, 223, 'Jangiya J000125', '11708131950200', 45, NULL, 161, 38530, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:23:44', '2017-08-13 08:23:44'),
(19503, 1, 0.5, NULL, 223, 'Crockeries Yc000583', '11708131950300', 45, NULL, 161, 38531, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:23:52', '2017-08-13 08:23:52'),
(19504, 1, 5, NULL, 223, 'Jangiya J000126', '11708131950400', 45, NULL, 161, 38532, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:24:00', '2017-08-13 08:24:00'),
(19505, 1, 4, NULL, 223, 'Jangiya J000127', '11708131950500', 45, NULL, 161, 38533, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:24:17', '2017-08-13 08:24:17'),
(19506, 1, 0.5, NULL, 223, 'Crockeries Yc000584', '11708131950600', 45, NULL, 161, 38534, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:24:19', '2017-08-13 08:24:19'),
(19507, 1, 3, NULL, 223, 'Jangiya J000128', '11708131950700', 45, NULL, 161, 38535, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:24:44', '2017-08-13 08:24:44'),
(19508, 1, 2, NULL, 223, 'Crockeries Yc000585', '11708131950800', 45, NULL, 161, 38536, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:24:44', '2017-08-13 08:24:44'),
(19509, 1, 2, NULL, 223, 'Crockeries Yc000586', '11708131950900', 45, NULL, 161, 38537, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:25:51', '2017-08-13 08:25:51'),
(19510, 1, 1, NULL, 223, 'Crockeries Yc000587', '11708131951000', 45, NULL, 161, 38538, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:26:41', '2017-08-13 08:26:41'),
(19511, 1, 2, NULL, 223, 'Crockeries YC000588', '11708131951100', 45, NULL, 161, 38539, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:28:28', '2017-08-13 08:28:28'),
(19512, 1, 16, NULL, 223, 'Juta (Kids) XM000142', '11708131951200', 45, NULL, 161, 38540, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:28:57', '2017-08-13 08:28:57'),
(19513, 1, 16, NULL, 223, 'Juta (Kids) XM000143', '11708131951300', 45, NULL, 161, 38541, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:29:22', '2017-08-13 08:29:22'),
(19514, 1, 2, NULL, 223, 'Crockeries YC000589', '11708131951400', 45, NULL, 161, 38542, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:29:25', '2017-08-13 08:29:25'),
(19515, 1, 16, NULL, 223, 'Juta (Kids) XM000144', '11708131951500', 45, NULL, 161, 38543, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:29:42', '2017-08-13 08:29:42'),
(19516, 1, 13, NULL, 223, 'Juta (Kids) XM000145', '11708131951600', 45, NULL, 161, 38544, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:29:56', '2017-08-13 08:29:56'),
(19517, 1, 20, NULL, 223, 'Crockeries YC000590', '11708131951700', 45, NULL, 161, 38545, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:30:02', '2017-08-13 08:30:02'),
(19518, 1, 16, NULL, 223, 'Juta (Kids) XM000146', '11708131951800', 45, NULL, 161, 38546, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:30:16', '2017-08-13 08:30:16'),
(19519, 1, 18, NULL, 223, 'Juta (Kids) XM000147', '11708131951900', 45, NULL, 161, 38547, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:30:34', '2017-08-13 08:30:34'),
(19520, 1, 5, NULL, 223, ' Crockeries YC000591', '11708131952000', 45, NULL, 161, 38548, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:30:43', '2017-08-13 08:30:43'),
(19521, 1, 16, NULL, 223, 'Juta (Kids) XM000148', '11708131952100', 45, NULL, 161, 38549, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:30:59', '2017-08-13 08:30:59'),
(19522, 1, 16, NULL, 223, 'Juta (Kids) XM000149', '11708131952200', 45, NULL, 161, 38550, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:31:19', '2017-08-13 08:31:19'),
(19523, 1, 20, 388, 223, 'Baniti Bag XM000150', '11708131952300', 45, NULL, 161, 38551, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:31:43', '2017-08-13 08:34:46'),
(19524, 1, 10, NULL, 223, ' Crockeries YC000592', '11708131952400', 45, NULL, 161, 38552, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:31:57', '2017-08-13 08:31:57'),
(19525, 1, 20, 388, 223, 'Baniti Bag XM000151', '11708131952500', 45, NULL, 161, 38553, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:32:15', '2017-08-13 08:33:38'),
(19526, 1, 8, NULL, 223, ' Crockeries YC000593', '11708131952600', 45, NULL, 161, 38554, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:32:35', '2017-08-13 08:32:35'),
(19527, 1, 10, NULL, 223, ' Crockeries YC000594', '11708131952700', 45, NULL, 161, 38555, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:33:15', '2017-08-13 08:33:15'),
(19528, 1, 15, NULL, 223, ' Crockeries YC000595', '11708131952800', 45, NULL, 161, 38556, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:34:17', '2017-08-13 08:34:17'),
(19529, 1, 0, NULL, 223, ' Crockeries YC000596', '11708131952900', 45, NULL, 161, 38557, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:34:49', '2017-08-13 08:34:49'),
(19530, 1, 15, NULL, 223, ' Crockeries YC000597', '11708131953000', 45, NULL, 161, 38558, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:35:24', '2017-08-13 08:35:24'),
(19531, 1, 30, NULL, 223, 'Baniti Bag XM000152', '11708131953100', 45, NULL, 161, 38559, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:36:13', '2017-08-13 08:36:13'),
(19532, 1, 5, NULL, 223, ' Crockeries YC000598', '11708131953200', 45, NULL, 161, 38560, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:36:32', '2017-08-13 08:36:32'),
(19533, 1, 30, NULL, 223, 'Juta/Shue XM000153', '11708131953300', 45, NULL, 161, 38561, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:36:56', '2017-08-13 08:36:56'),
(19534, 1, 1, NULL, 223, ' Crockeries YC000599', '11708131953400', 45, NULL, 161, 38562, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:36:58', '2017-08-13 08:36:58'),
(19535, 1, 25, NULL, 223, 'Juta/Shue XM000154', '11708131953500', 45, NULL, 161, 38563, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:37:12', '2017-08-13 08:37:12'),
(19536, 1, 1, NULL, 223, ' Crockeries YC000600', '11708131953600', 45, NULL, 161, 38564, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:37:52', '2017-08-13 08:37:52'),
(19538, 1, 12, NULL, 223, 'Juta/Shue XM000155', '11708131953800', 45, NULL, 161, 38565, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:38:19', '2017-08-13 08:38:19'),
(19539, 1, 0.5, NULL, 223, ' Crockeries Yc000601', '11708131953900', 45, NULL, 161, 38914, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:38:21', '2017-08-13 08:38:21'),
(19540, 1, 25, NULL, 223, 'Juta/Shue XM000156', '11708131954000', 45, NULL, 161, 38567, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:39:06', '2017-08-13 08:39:06'),
(19541, 1, 0.5, NULL, 223, ' Crockeries YC000602', '11708131954100', 45, NULL, 161, 38568, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:39:16', '2017-08-13 08:39:16'),
(19542, 1, 25, NULL, 223, ' Crockeries YC000603', '11708131954200', 45, NULL, 161, 38569, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:39:57', '2017-08-13 08:39:57'),
(19543, 1, 25, NULL, 223, 'Juta/Shue XM000157', '11708131954300', 45, NULL, 161, 38570, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:40:22', '2017-08-13 08:40:22'),
(19544, 1, 10, NULL, 223, ' Crockeries YC000604', '11708131954400', 45, NULL, 161, 38571, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:40:26', '2017-08-13 08:40:26'),
(19545, 1, 25, NULL, 223, 'Juta/Shue XM000158', '11708131954500', 45, NULL, 161, 38572, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:40:37', '2017-08-13 08:40:37'),
(19546, 1, 25, NULL, 223, ' Crockeries YC000605', '11708131954600', 45, NULL, 161, 38573, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:41:11', '2017-08-13 08:41:11'),
(19547, 1, 25, NULL, 223, ' Crockeries YC000606', '11708131954700', 45, NULL, 161, 38574, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:42:34', '2017-08-13 08:42:34'),
(19548, 1, 25, NULL, 223, 'Juta/Shue XM000159', '11708131954800', 45, NULL, 161, 38575, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:42:41', '2017-08-13 08:42:41'),
(19549, 1, 25, NULL, 223, 'Juta/Shue XM000160', '11708131954900', 45, NULL, 161, 38576, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:42:54', '2017-08-13 08:42:54'),
(19550, 1, 25, NULL, 223, ' Crockeries YC000607', '11708131955000', 45, NULL, 161, 38577, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:43:02', '2017-08-13 08:43:02'),
(19551, 1, 25, NULL, 223, 'Juta/Shue XM000161', '11708131955100', 45, NULL, 161, 38578, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:43:06', '2017-08-13 08:43:06'),
(19553, 1, 25, NULL, 223, 'Juta/Shue XM000162', '11708131955300', 45, NULL, 161, 38579, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:43:37', '2017-08-13 08:43:37'),
(19554, 1, 35, 388, 223, 'Juta/Shue XM000163', '11708131955400', 45, NULL, 161, 38580, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:43:54', '2017-08-13 08:44:21'),
(19555, 1, 25, NULL, 223, 'Juta/Shue XM000164', '11708131955500', 45, NULL, 161, 38581, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:46:07', '2017-08-13 08:46:07'),
(19556, 1, 25, NULL, 223, 'Juta/Shue XM000165', '11708131955600', 45, NULL, 161, 38582, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:46:22', '2017-08-13 08:46:22'),
(19558, 1, 25, NULL, 223, 'Juta/Shue XM000166', '11708131955800', 45, NULL, 161, 38583, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:47:15', '2017-08-13 08:47:15'),
(19559, 1, 25, NULL, 223, 'Juta/Shue XM000167', '11708131955900', 45, NULL, 161, 38584, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:47:26', '2017-08-13 08:47:26'),
(19560, 1, 25, NULL, 223, 'Juta/Shue XM000168', '11708131956000', 45, NULL, 161, 38585, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:47:38', '2017-08-13 08:47:38'),
(19561, 1, 25, NULL, 223, 'Juta/Shue XM000169', '11708131956100', 45, NULL, 161, 38586, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:48:11', '2017-08-13 08:48:11'),
(19562, 1, 25, NULL, 223, 'Juta/Shue XM000170', '11708131956200', 45, NULL, 161, 38587, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:49:17', '2017-08-13 08:49:17'),
(19563, 1, 25, NULL, 223, 'Juta/Shue XM000171', '11708131956300', 45, NULL, 161, 38588, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:49:34', '2017-08-13 08:49:34'),
(19564, 1, 25, NULL, 223, 'Juta/Shue XM000172', '11708131956400', 45, NULL, 161, 38589, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:50:08', '2017-08-13 08:50:08'),
(19565, 1, 25, NULL, 223, 'Juta/Shue XM000173', '11708131956500', 45, NULL, 161, 38590, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:50:20', '2017-08-13 08:50:20'),
(19566, 1, 25, NULL, 223, 'Juta/Shue XM000174', '11708131956600', 45, NULL, 161, 38591, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:50:34', '2017-08-13 08:50:34'),
(19567, 1, 25, NULL, 223, 'Juta/Shue XM000175', '11708131956700', 45, NULL, 161, 38592, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:50:45', '2017-08-13 08:50:45'),
(19568, 1, 25, NULL, 223, 'Juta/Shue XM000176', '11708131956800', 45, NULL, 161, 38593, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:50:57', '2017-08-13 08:50:57'),
(19569, 1, 25, NULL, 223, 'Juta/Shue XM000177', '11708131956900', 45, NULL, 161, 38594, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:51:09', '2017-08-13 08:51:09'),
(19570, 1, 25, NULL, 223, 'Juta/Shue XM000178', '11708131957000', 45, NULL, 161, 38595, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:51:27', '2017-08-13 08:51:27'),
(19571, 1, 20, NULL, 223, 'Juta/Shue XM000179', '11708131957100', 45, NULL, 161, 38596, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:51:40', '2017-08-13 08:51:40'),
(19572, 1, 25, NULL, 223, 'Juta/Shue XM000180', '11708131957200', 45, NULL, 161, 38597, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:51:53', '2017-08-13 08:51:53'),
(19573, 1, 25, NULL, 223, 'Juta/Shue XM000181', '11708131957300', 45, NULL, 161, 38598, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:52:13', '2017-08-13 08:52:13'),
(19574, 1, 25, NULL, 223, 'Juta/Shue XM000182', '11708131957400', 45, NULL, 161, 38599, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:52:26', '2017-08-13 08:52:26'),
(19575, 1, 25, NULL, 223, 'Juta/Shue XM000183', '11708131957500', 45, NULL, 161, 38600, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:52:44', '2017-08-13 08:52:44'),
(19576, 1, 25, NULL, 223, 'Juta/Shue XM000184', '11708131957600', 45, NULL, 161, 38601, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:52:58', '2017-08-13 08:52:58'),
(19577, 1, 25, NULL, 223, 'Juta/Shue XM000185', '11708131957700', 45, NULL, 161, 38602, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:53:20', '2017-08-13 08:53:20'),
(19578, 1, 25, NULL, 223, 'Juta/Shue XM000186', '11708131957800', 45, NULL, 161, 38603, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:53:35', '2017-08-13 08:53:35'),
(19579, 1, 25, NULL, 223, 'Juta/Shue XM000187', '11708131957900', 45, NULL, 161, 38604, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:53:46', '2017-08-13 08:53:46'),
(19580, 1, 5, NULL, 223, 'Gents XM000188', '11708131958000', 45, NULL, 161, 38605, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:54:18', '2017-08-13 08:54:18'),
(19581, 1, 25, NULL, 223, 'Gents XM000189', '11708131958100', 45, NULL, 161, 38606, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:54:28', '2017-08-13 08:54:28'),
(19582, 1, 10, NULL, 223, 'Gents XM000190', '11708131958200', 45, NULL, 161, 38607, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:54:46', '2017-08-13 08:54:46'),
(19583, 1, 25, NULL, 223, 'Gents XM000191', '11708131958300', 45, NULL, 161, 38608, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:55:03', '2017-08-13 08:55:03'),
(19584, 1, 10, NULL, 223, 'Gents XM000192', '11708131958400', 45, NULL, 161, 38609, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:55:20', '2017-08-13 08:55:20'),
(19585, 1, 10, NULL, 223, 'Cloth Item A000200', '11708131958500', 45, NULL, 161, 38610, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:55:58', '2017-08-13 08:55:58'),
(19586, 1, 10, NULL, 223, 'Cloth Item A000201', '11708131958600', 45, NULL, 161, 38611, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:56:09', '2017-08-13 08:56:09'),
(19587, 1, 10, NULL, 223, 'Cloth Item A000202', '11708131958700', 45, NULL, 161, 38612, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:56:19', '2017-08-13 08:56:19'),
(19588, 1, 10, NULL, 223, 'Cloth Item A000203', '11708131958800', 45, NULL, 161, 38613, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:56:31', '2017-08-13 08:56:31'),
(19589, 1, 10, NULL, 223, 'Cloth Item A000204', '11708131958900', 45, NULL, 161, 38614, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:56:44', '2017-08-13 08:56:44'),
(19590, 1, 10, NULL, 223, 'Cloth Item A000205', '11708131959000', 45, NULL, 161, 38615, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:56:55', '2017-08-13 08:56:55'),
(19591, 1, 10, 388, 223, 'Cloth Item A000206', '11708131959100', 45, NULL, 161, 38616, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:57:19', '2017-08-13 08:57:40'),
(19592, 1, 10, NULL, 223, 'Cloth Item A000207', '11708131959200', 45, NULL, 161, 38617, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:57:56', '2017-08-13 08:57:56'),
(19593, 1, 10, NULL, 223, 'Cloth Item A000208', '11708131959300', 45, NULL, 161, 38618, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:58:11', '2017-08-13 08:58:11'),
(19595, 1, 10, NULL, 223, 'Cloth Item A000209', '11708131959500', 45, NULL, 161, 38619, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:58:41', '2017-08-13 08:58:41'),
(19596, 1, 10, NULL, 223, 'Cloth Item A000210', '11708131959600', 45, NULL, 161, 38620, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:58:53', '2017-08-13 08:58:53'),
(19597, 1, 10, NULL, 223, 'Cloth Item A000211', '11708131959700', 45, NULL, 161, 38621, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 08:59:44', '2017-08-13 08:59:44'),
(19598, 1, 10, NULL, 223, 'Cloth Item A000212', '11708131959800', 45, NULL, 161, 38622, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:00:02', '2017-08-13 09:00:02'),
(19599, 1, 10, NULL, 223, 'Cloth Item A000213', '11708131959900', 45, NULL, 161, 38623, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:00:26', '2017-08-13 09:00:26'),
(19600, 1, 10, NULL, 223, 'Cloth Item A000214', '11708131960000', 45, NULL, 161, 38624, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:00:39', '2017-08-13 09:00:39'),
(19601, 1, 10, NULL, 223, 'Cloth Item A000215', '11708131960100', 45, NULL, 161, 38625, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:00:54', '2017-08-13 09:00:54'),
(19602, 1, 10, NULL, 223, 'Cloth Item A000216', '11708131960200', 45, NULL, 161, 38626, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:01:06', '2017-08-13 09:01:06'),
(19603, 1, 10, NULL, 223, 'Cloth Item A000217', '11708131960300', 45, NULL, 161, 38627, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:01:28', '2017-08-13 09:01:28'),
(19604, 1, 10, NULL, 223, 'Cloth Item A000218', '11708131960400', 45, NULL, 161, 38628, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:01:46', '2017-08-13 09:01:46'),
(19605, 1, 10, NULL, 223, 'Cloth Item A000219', '11708131960500', 45, NULL, 161, 38629, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:02:18', '2017-08-13 09:02:18'),
(19606, 1, 10, NULL, 223, 'Cloth Item A000220', '11708131960600', 45, NULL, 161, 38630, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:02:31', '2017-08-13 09:02:31'),
(19607, 1, 10, NULL, 223, 'Cloth Item A000221', '11708131960700', 45, NULL, 161, 38631, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:02:42', '2017-08-13 09:02:42'),
(19608, 1, 10, NULL, 223, 'Cloth Item A000222', '11708131960800', 45, NULL, 161, 38632, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:02:54', '2017-08-13 09:02:54'),
(19609, 1, 10, NULL, 223, 'Cloth Item A000223', '11708131960900', 45, NULL, 161, 38633, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:03:06', '2017-08-13 09:03:06'),
(19610, 1, 10, NULL, 223, 'Cloth Item A000224', '11708131961000', 45, NULL, 161, 38634, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:03:22', '2017-08-13 09:03:22'),
(19611, 1, 10, NULL, 223, 'Cloth Item A000225', '11708131961100', 45, NULL, 161, 38635, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:03:35', '2017-08-13 09:03:35'),
(19612, 1, 10, NULL, 223, 'Cloth Item A000226', '11708131961200', 45, NULL, 161, 38636, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:03:47', '2017-08-13 09:03:47'),
(19613, 1, 8, 388, 223, 'Cloth Item A000231', '11708131961300', 45, NULL, 161, 38637, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:04:06', '2017-08-13 09:04:33'),
(19614, 1, 8, NULL, 223, 'Cloth Item A000232', '11708131961400', 45, NULL, 161, 38638, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:04:51', '2017-08-13 09:04:51'),
(19615, 1, 10, NULL, 223, 'Cloth Item A000233', '11708131961500', 45, NULL, 161, 38639, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:05:04', '2017-08-13 09:05:04'),
(19616, 1, 10, NULL, 223, 'Cloth Item A000234', '11708131961600', 45, NULL, 161, 38640, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:05:19', '2017-08-13 09:05:19'),
(19617, 1, 10, NULL, 223, 'Cloth Item A000235', '11708131961700', 45, NULL, 161, 38641, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:05:34', '2017-08-13 09:05:34'),
(19618, 1, 10, NULL, 223, 'Cloth Item A000236', '11708131961800', 45, NULL, 161, 38642, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:05:51', '2017-08-13 09:05:51'),
(19620, 1, 10, NULL, 223, 'Cloth Item A000237', '11708131962000', 45, NULL, 161, 38643, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:06:32', '2017-08-13 09:06:32'),
(19621, 1, 10, NULL, 223, 'Cloth Item A000238', '11708131962100', 45, NULL, 161, 38644, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:06:55', '2017-08-13 09:06:55'),
(19622, 1, 5, NULL, 223, 'Cloth Item A000239', '11708131962200', 45, NULL, 161, 38645, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:07:07', '2017-08-13 09:07:07'),
(19623, 1, 10, NULL, 223, 'Cloth Item A000240', '11708131962300', 45, NULL, 161, 38646, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:07:26', '2017-08-13 09:07:26'),
(19624, 1, 10, NULL, 223, 'Cloth Item A000241', '11708131962400', 45, NULL, 161, 38647, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:07:36', '2017-08-13 09:07:36'),
(19625, 1, 10, NULL, 223, 'Cloth Item A000242', '11708131962500', 45, NULL, 161, 38648, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:07:51', '2017-08-13 09:07:51'),
(19626, 1, 10, NULL, 223, 'Cloth Item A000243', '11708131962600', 45, NULL, 161, 38649, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:08:02', '2017-08-13 09:08:02'),
(19627, 1, 10, NULL, 223, 'Cloth Item A000244', '11708131962700', 45, NULL, 161, 38650, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:08:17', '2017-08-13 09:08:17'),
(19628, 1, 5, NULL, 223, 'Cloth Item A000245', '11708131962800', 45, NULL, 161, 38651, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:08:31', '2017-08-13 09:08:31'),
(19629, 1, 10, NULL, 223, 'Cloth Item A000246', '11708131962900', 45, NULL, 161, 38652, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:08:45', '2017-08-13 09:08:45'),
(19630, 1, 10, NULL, 223, 'Cloth Item A000247', '11708131963000', 45, NULL, 161, 38653, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:09:15', '2017-08-13 09:09:15'),
(19631, 1, 10, NULL, 223, 'Cloth Item A000248', '11708131963100', 45, NULL, 161, 38654, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:09:26', '2017-08-13 09:09:26'),
(19632, 1, 10, NULL, 223, 'Baniti Bag B000249', '11708131963200', 45, NULL, 161, 38655, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:09:55', '2017-08-13 09:09:55'),
(19633, 1, 30, NULL, 223, 'Panjabi/Pant/Shirt A000253', '11708131963300', 45, NULL, 161, 38656, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:10:39', '2017-08-13 09:10:39'),
(19634, 1, 15, NULL, 223, 'Juwellary OF000371', '11708131963400', 46, NULL, 162, 38657, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:13:13', '2017-08-13 09:13:13'),
(19635, 1, 15, NULL, 223, 'Juwellary OF000211', '11708131963500', 46, NULL, 162, 38658, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:13:30', '2017-08-13 09:13:30'),
(19636, 1, 10, NULL, 223, 'Juwellary OF000372', '11708131963600', 46, NULL, 162, 38659, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:13:47', '2017-08-13 09:13:47'),
(19637, 1, 10, NULL, 223, 'Juwellary OF000370', '11708131963700', 46, NULL, 162, 38660, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:14:06', '2017-08-13 09:14:06'),
(19638, 1, 20, NULL, 223, 'Juwellary OF000374', '11708131963800', 46, NULL, 162, 38661, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:14:23', '2017-08-13 09:14:23'),
(19639, 1, 10, NULL, 223, 'Juwellary OF000373', '11708131963900', 46, NULL, 162, 38662, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:14:40', '2017-08-13 09:14:40'),
(19640, 1, 20, NULL, 223, 'Juwellary OF000366', '11708131964000', 46, NULL, 162, 38663, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:15:00', '2017-08-13 09:15:00'),
(19641, 1, 5, NULL, 223, 'Juwellary OF000229', '11708131964100', 46, NULL, 162, 38664, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:15:19', '2017-08-13 09:15:19'),
(19642, 1, 10, NULL, 223, 'Juwellary OF000362', '11708131964200', 46, NULL, 162, 38665, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:15:34', '2017-08-13 09:15:34'),
(19643, 1, 5, NULL, 223, 'Juwellary OF000204', '11708131964300', 46, NULL, 162, 38666, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:15:51', '2017-08-13 09:15:51'),
(19644, 1, 25, NULL, 223, 'Juwellary OF000363', '11708131964400', 46, NULL, 162, 38667, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:16:11', '2017-08-13 09:16:11'),
(19645, 1, 10, NULL, 223, 'Juwellary OF000205', '11708131964500', 46, NULL, 162, 38668, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:16:29', '2017-08-13 09:16:29'),
(19646, 1, 10, NULL, 223, 'Juwellary OF000359', '11708131964600', 46, NULL, 162, 38669, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:16:52', '2017-08-13 09:16:52'),
(19647, 1, 20, NULL, 223, 'Juwellary OF000368', '11708131964700', 46, NULL, 162, 38670, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:17:11', '2017-08-13 09:17:11'),
(19648, 1, 20, NULL, 223, 'Juwellary OF000365', '11708131964800', 46, NULL, 162, 38671, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:17:23', '2017-08-13 09:17:23'),
(19649, 1, 5, NULL, 223, 'Juwellary OF000306', '11708131964900', 46, NULL, 162, 38672, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:17:37', '2017-08-13 09:17:37'),
(19650, 1, 20, NULL, 223, 'Juwellary OF000364', '11708131965000', 46, NULL, 162, 38673, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:17:55', '2017-08-13 09:17:55'),
(19651, 1, 10, NULL, 223, 'Juwellary OF000361', '11708131965100', 46, NULL, 162, 38674, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:18:15', '2017-08-13 09:18:15'),
(19652, 1, 5, NULL, 223, 'Juwellary OF000307', '11708131965200', 46, NULL, 162, 38675, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:18:28', '2017-08-13 09:18:28'),
(19653, 1, 10, NULL, 223, 'Juwellary OF000412', '11708131965300', 46, NULL, 162, 38676, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:18:45', '2017-08-13 09:18:45'),
(19654, 1, 10, NULL, 223, 'Juwellary OF000413', '11708131965400', 46, NULL, 162, 38677, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:19:01', '2017-08-13 09:19:01'),
(19655, 1, 10, NULL, 223, 'Juwellary OF000375', '11708131965500', 46, NULL, 162, 38678, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:19:16', '2017-08-13 09:19:16'),
(19656, 1, 20, NULL, 223, 'Juwellary OF000367', '11708131965600', 46, NULL, 162, 38679, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:19:29', '2017-08-13 09:19:29'),
(19657, 1, 5, NULL, 223, 'Juwellary OF000201', '11708131965700', 46, NULL, 162, 38680, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:19:43', '2017-08-13 09:19:43'),
(19658, 1, 5, NULL, 223, 'Juwellary OF000202', '11708131965800', 46, NULL, 162, 38681, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:19:58', '2017-08-13 09:19:58'),
(19659, 1, 5, NULL, 223, 'Juwellary OF000203', '11708131965900', 46, NULL, 162, 38682, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:20:13', '2017-08-13 09:20:13'),
(19660, 1, 25, NULL, 223, 'Juwellary OF000208', '11708131966000', 46, NULL, 162, 38683, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:21:22', '2017-08-13 09:21:22'),
(19661, 1, 25, NULL, 223, 'Juwellary OF000209', '11708131966100', 46, NULL, 162, 38684, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:23:52', '2017-08-13 09:23:52'),
(19662, 1, 15, NULL, 223, 'Juwellary OF000349', '11708131966200', 46, NULL, 162, 38685, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:24:20', '2017-08-13 09:24:20'),
(19663, 2, 10, NULL, 223, 'Juwellary OF000348', '21708131966300', 46, NULL, 162, 38686, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:24:38', '2017-08-13 09:24:38'),
(19664, 1, 25, NULL, 223, 'Juwellary OF000358', '11708131966400', 46, NULL, 162, 38687, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:25:00', '2017-08-13 09:25:00'),
(19665, 1, 25, NULL, 223, 'Juwellary OF000207', '11708131966500', 46, NULL, 162, 38688, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:25:17', '2017-08-13 09:25:17'),
(19666, 1, 2, NULL, 223, 'Juwellary OF000336', '11708131966600', 46, NULL, 162, 38689, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:25:37', '2017-08-13 09:25:37'),
(19667, 1, 4, NULL, 223, 'Juwellary OF000414', '11708131966700', 46, NULL, 162, 38690, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:26:54', '2017-08-13 09:26:54'),
(19668, 1, 2, NULL, 223, 'Juwellary OF000411', '11708131966800', 46, NULL, 162, 38691, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:27:12', '2017-08-13 09:27:12'),
(19669, 1, 2, NULL, 223, 'Juwellary OF000308', '11708131966900', 46, NULL, 162, 38692, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:27:41', '2017-08-13 09:27:41'),
(19670, 1, 2, NULL, 223, 'Juwellary OF000354', '11708131967000', 46, NULL, 162, 38693, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:28:06', '2017-08-13 09:28:06'),
(19671, 1, 2, NULL, 223, 'Juwellary OF000355', '11708131967100', 46, NULL, 162, 38694, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:28:47', '2017-08-13 09:28:47'),
(19672, 1, 2, NULL, 223, 'Juwellary OF000356', '11708131967200', 46, NULL, 162, 38695, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:30:10', '2017-08-13 09:30:10'),
(19673, 1, 10, NULL, 223, 'Juwellary OF000398', '11708131967300', 46, 115, 162, 38696, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:31:00', '2017-08-13 09:31:00'),
(19674, 1, 10, NULL, 223, 'Juwellary OF000387', '11708131967400', 46, NULL, 162, 38697, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:31:36', '2017-08-13 09:31:36'),
(19675, 1, 10, NULL, 223, 'Juwellary OF000400', '11708131967500', 46, NULL, 162, 38698, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:32:14', '2017-08-13 09:32:14'),
(19676, 1, 10, NULL, 223, 'Juwellary OF000341', '11708131967600', 46, NULL, 162, 38699, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:32:46', '2017-08-13 09:32:46'),
(19677, 1, 5, NULL, 223, 'Juwellary OF000401', '11708131967700', 46, NULL, 162, 38700, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:33:31', '2017-08-13 09:33:31'),
(19678, 1, 10, NULL, 223, 'Juwellary OF000264', '11708131967800', 46, NULL, 162, 38701, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:34:04', '2017-08-13 09:34:04'),
(19679, 1, 5, NULL, 223, 'Juwellary OF000342', '11708131967900', 46, NULL, 162, 38702, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:34:38', '2017-08-13 09:34:38'),
(19680, 1, 5, NULL, 223, 'Juwellary OF000337', '11708131968000', 46, NULL, 162, 38703, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:35:18', '2017-08-13 09:35:18'),
(19681, 1, 5, NULL, 223, 'Juwellary OF000407', '11708131968100', 46, NULL, 162, 38704, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:35:50', '2017-08-13 09:35:50'),
(19682, 1, 5, NULL, 223, 'Juwellary OF000343', '11708131968200', 46, NULL, 162, 38705, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:36:21', '2017-08-13 09:36:21'),
(19683, 1, 5, NULL, 223, 'Juwellary OF000340', '11708131968300', 46, NULL, 162, 38706, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:36:52', '2017-08-13 09:36:52'),
(19684, 1, 5, NULL, 223, 'Juwellary OF000347', '11708131968400', 46, NULL, 162, 38707, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:37:28', '2017-08-13 09:37:28'),
(19685, 1, 10, NULL, 223, 'Juwellary OF000396', '11708131968500', 46, NULL, 162, 38708, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:37:57', '2017-08-13 09:37:57'),
(19686, 1, 10, NULL, 223, 'Juwellary OF000217', '11708131968600', 46, NULL, 162, 38709, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:38:39', '2017-08-13 09:38:39'),
(19687, 1, 2, NULL, 223, 'Juwellary OF000241', '11708131968700', 46, NULL, 161, 38710, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:39:13', '2017-08-13 09:39:13'),
(19688, 1, 5, NULL, 223, 'Juwellary OF000346', '11708131968800', 46, NULL, 162, 38711, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:39:50', '2017-08-13 09:39:50'),
(19689, 1, 5, NULL, 223, 'Juwellary OF000395', '11708131968900', 46, NULL, 162, 38712, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:40:28', '2017-08-13 09:40:28'),
(19690, 1, 10, NULL, 223, 'Juwellary OF000232', '11708131969000', 46, NULL, 162, 38713, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:40:57', '2017-08-13 09:40:57'),
(19691, 1, 5, NULL, 223, 'Juwellary OF000230', '11708131969100', 46, NULL, 162, 38714, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:41:28', '2017-08-13 09:41:28'),
(19693, 1, 10, NULL, 223, 'Juwellary OF000397', '11708131969300', 46, NULL, 162, 38715, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:42:41', '2017-08-13 09:42:41'),
(19694, 1, 5, NULL, 223, 'Juwellary OF000233', '11708131969400', 46, NULL, 162, 38716, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:43:39', '2017-08-13 09:43:39'),
(19695, 1, 3, NULL, 223, 'Juwellary OF000235', '11708131969500', 46, NULL, 162, 38717, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:44:08', '2017-08-13 09:44:08'),
(19696, 1, 10, NULL, 223, 'Juwellary OF000402', '11708131969600', 46, NULL, 162, 38718, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:44:56', '2017-08-13 09:44:56'),
(19697, 1, 10, NULL, 223, 'Juwellary OF000399', '11708131969700', 46, NULL, 162, 38719, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:45:27', '2017-08-13 09:45:27'),
(19698, 1, 3, NULL, 223, 'Juwellary OF000234', '11708131969800', 46, NULL, 162, 38720, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:45:57', '2017-08-13 09:45:57'),
(19699, 1, 5, NULL, 223, 'Juwellary OF000339', '11708131969900', 46, NULL, 162, 38721, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:46:30', '2017-08-13 09:46:30'),
(19700, 1, 4, NULL, 223, 'Juwellary OF000236', '11708131970000', 46, NULL, 162, 38722, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:47:11', '2017-08-13 09:47:11'),
(19701, 1, 2, NULL, 223, 'Juwellary OF000242', '11708131970100', 46, NULL, 162, 38723, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 09:47:41', '2017-08-13 09:47:41'),
(19702, 1, 10, NULL, 223, 'Golden Churi 0F000403', '11708131970200', 46, NULL, 162, 38724, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 10:33:01', '2017-08-13 10:33:01'),
(19703, 1, 5, NULL, 223, 'Golden Churi 0F000346', '11708131970300', 46, NULL, 162, 38725, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 10:37:09', '2017-08-13 10:37:09'),
(19704, 1, 5, NULL, 223, 'Golden Churi 0F000338', '11708131970400', 46, NULL, 162, 38913, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 10:39:09', '2017-08-13 10:39:09'),
(19705, 1, 2, NULL, 223, 'churi 0F000378', '11708131970500', 46, NULL, 162, 38887, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 10:40:23', '2017-08-13 10:40:23'),
(19706, 1, 10, 388, 223, 'Golar Har 0F000357', '11708131970600', 46, NULL, 162, 38728, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 10:41:51', '2017-08-13 10:43:09'),
(19707, 1, 10, NULL, 223, 'Chain 0F000351', '11708131970700', 46, NULL, 162, 38729, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 10:46:51', '2017-08-13 10:46:51'),
(19708, 1, 10, NULL, 223, 'Chain 0F000352', '11708131970800', 46, NULL, 162, 38730, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 10:47:49', '2017-08-13 10:47:49'),
(19709, 1, 15, NULL, 223, 'Har 0F000376', '11708131970900', 46, NULL, 162, 38731, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 10:49:27', '2017-08-13 10:49:27'),
(19710, 1, 2, NULL, 223, 'Aunti 0F000416', '11708131971000', 46, NULL, 162, 38732, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 10:54:04', '2017-08-13 10:54:04'),
(19711, 1, 2, NULL, 223, '<NAME> 0F000335', '11708131971100', 46, NULL, 162, 38733, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 10:55:26', '2017-08-13 10:55:26'),
(19712, 1, 10, NULL, 223, 'Har 0F000369', '11708131971200', 46, NULL, 162, 38734, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 10:56:44', '2017-08-13 10:56:44'),
(19713, 1, 2, NULL, 223, 'Tikli 0F000304', '11708131971300', 46, NULL, 162, 38735, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 10:57:52', '2017-08-13 10:57:52'),
(19714, 1, 2, NULL, 223, 'Juwellary 0F000415', '11708131971400', 46, NULL, 162, 38736, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:02:52', '2017-08-13 11:02:52'),
(19715, 1, 1, NULL, 223, 'Juwellary 0F000382', '11708131971500', 46, NULL, 162, 38737, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:04:03', '2017-08-13 11:04:03'),
(19716, 1, 10, NULL, 223, 'Juwellary 0F000360', '11708131971600', 46, NULL, 162, 38738, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:04:57', '2017-08-13 11:04:57'),
(19717, 1, 2, NULL, 223, 'Juwellary 0F000251', '11708131971700', 46, NULL, 162, 38739, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:05:45', '2017-08-13 11:05:45'),
(19718, 1, 10, NULL, 223, 'Juwellary 0F000353', '11708131971800', 46, NULL, 162, 38740, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:06:26', '2017-08-13 11:06:26'),
(19719, 1, 1, NULL, 223, 'Juwellary 0F000239', '11708131971900', 46, NULL, 162, 38741, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:07:17', '2017-08-13 11:07:17'),
(19720, 1, 1, NULL, 223, 'Juwellary 0F000240', '11708131972000', 46, NULL, 162, 38742, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:08:01', '2017-08-13 11:08:01'),
(19721, 1, 1, NULL, 223, 'Juwellary 0F000237', '11708131972100', 46, NULL, 162, 38743, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:08:35', '2017-08-13 11:08:35'),
(19722, 1, 5, NULL, 223, 'Juwellary 0F000418', '11708131972200', 46, NULL, 162, 38744, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:09:18', '2017-08-13 11:09:18'),
(19723, 1, 1, NULL, 223, 'Juwellary 0F000238', '11708131972300', 46, NULL, 162, 38745, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:09:51', '2017-08-13 11:09:51'),
(19724, 1, 2, NULL, 223, 'Juwellary 0F000417', '11708131972400', 46, NULL, 162, 38746, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:11:02', '2017-08-13 11:11:02'),
(19725, 1, 15, NULL, 223, 'Juwellary 0F000213', '11708131972500', 46, NULL, 162, 38747, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:11:39', '2017-08-13 11:11:39'),
(19726, 1, 5, NULL, 223, 'Juwellary 0F000218', '11708131972600', 46, NULL, 162, 38748, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:12:26', '2017-08-13 11:12:26'),
(19727, 1, 5, NULL, 223, 'Juwellary 0F000219', '11708131972700', 46, NULL, 162, 38749, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:13:01', '2017-08-13 11:13:01'),
(19728, 1, 5, NULL, 223, 'Juwellary 0F000220', '11708131972800', 46, NULL, 162, 38750, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:13:56', '2017-08-13 11:13:56'),
(19729, 1, 2, NULL, 223, 'Juwellary 0F000332', '11708131972900', 46, NULL, 162, 38751, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:14:54', '2017-08-13 11:14:54'),
(19730, 1, 1, NULL, 223, 'Juwellary 0F000290', '11708131973000', 46, NULL, 162, 38752, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:15:40', '2017-08-13 11:15:40'),
(19731, 1, 0.5, NULL, 223, 'Juwellary 0F000292', '11708131973100', 46, NULL, 162, 38753, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:16:52', '2017-08-13 11:16:52'),
(19732, 1, 1, NULL, 223, 'Juwellary 0F000294', '11708131973200', 46, NULL, 162, 38754, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:17:32', '2017-08-13 11:17:32'),
(19733, 1, 0.5, NULL, 223, 'Juwellary 0F000296', '11708131973300', 46, NULL, 162, 38755, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:18:13', '2017-08-13 11:18:13'),
(19734, 1, 0.5, NULL, 223, 'Juwellary 0F000293', '11708131973400', 46, NULL, 162, 38756, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:18:47', '2017-08-13 11:18:47'),
(19735, 1, 0.5, NULL, 223, 'Juwellary 0F000295', '11708131973500', 46, NULL, 162, 38757, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:19:32', '2017-08-13 11:19:32'),
(19736, 1, 10, NULL, 223, 'Juwellary 0F000390', '11708131973600', 46, NULL, 162, 38758, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:20:28', '2017-08-13 11:20:28'),
(19737, 1, 10, NULL, 223, 'Juwellary 0F000389', '11708131973700', 46, NULL, 162, 38759, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:21:31', '2017-08-13 11:21:31'),
(19738, 1, 5, NULL, 223, 'Juwellary 0F000344', '11708131973800', 46, NULL, 162, 38760, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:22:22', '2017-08-13 11:22:22'),
(19739, 1, 5, NULL, 223, 'Juwellary 0F000345', '11708131973900', 46, NULL, 162, 38761, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:23:04', '2017-08-13 11:23:04'),
(19740, 1, 10, NULL, 223, 'Juwellary 0F000404', '11708131974000', 46, NULL, 162, 38762, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:23:59', '2017-08-13 11:23:59'),
(19742, 1, 5, NULL, 223, 'Juwellary 0F000406', '11708131974200', 46, NULL, 162, 38763, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:30:18', '2017-08-13 11:30:18'),
(19743, 1, 10, NULL, 223, 'Juwellary 0F000405', '11708131974300', 46, NULL, 162, 38764, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:31:09', '2017-08-13 11:31:09'),
(19744, 1, 15, NULL, 223, 'Juwellary 0F000388', '11708131974400', 46, NULL, 162, 38765, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:31:51', '2017-08-13 11:31:51'),
(19745, 1, 1, NULL, 223, 'Juwellary 0F000385', '11708131974500', 46, NULL, 162, 38766, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:32:36', '2017-08-13 11:32:36'),
(19746, 1, 1, NULL, 223, 'Juwellary 0F000386', '11708131974600', 46, NULL, 162, 38767, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:33:27', '2017-08-13 11:33:27'),
(19747, 1, 2, NULL, 223, 'Juwellary 0F000383', '11708131974700', 46, NULL, 162, 38768, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:36:27', '2017-08-13 11:36:27'),
(19748, 1, 1, NULL, 223, 'Juwellary 0F000350', '11708131974800', 46, NULL, 162, 38769, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:37:01', '2017-08-13 11:37:01'),
(19749, 1, 1, NULL, 223, 'Juwellary 0F000381', '11708131974900', 46, NULL, 162, 38770, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:37:33', '2017-08-13 11:37:33'),
(19750, 1, 1, NULL, 223, 'Juwellary 0F000384', '11708131975000', 46, NULL, 162, 38771, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:38:05', '2017-08-13 11:38:05'),
(19751, 1, 2, NULL, 223, 'Juwellary 0F000247', '11708131975100', 46, NULL, 162, 38772, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:39:06', '2017-08-13 11:39:06'),
(19752, 1, 2, NULL, 223, 'Juwellary 0F000410', '11708131975200', 46, NULL, 162, 38773, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:39:44', '2017-08-13 11:39:44'),
(19753, 1, 2, NULL, 223, 'Juwellary 0F000246', '11708131975300', 46, NULL, 162, 38774, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:40:38', '2017-08-13 11:40:38'),
(19754, 1, 2, NULL, 223, 'Juwellary 0F000260', '11708131975400', 46, NULL, 162, 38775, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:42:37', '2017-08-13 11:42:37'),
(19755, 1, 2, NULL, 223, 'Juwellary 0F000261', '11708131975500', 46, NULL, 162, 38776, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:43:17', '2017-08-13 11:43:17'),
(19756, 1, 2, NULL, 223, 'Juwellary 0F000244', '11708131975600', 46, NULL, 162, 38777, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:44:06', '2017-08-13 11:44:06'),
(19757, 1, 2, NULL, 223, 'Juwellary 0F000262', '11708131975700', 46, NULL, 162, 38778, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:44:58', '2017-08-13 11:44:58'),
(19758, 1, 2, NULL, 223, 'Juwellary 0F000319', '11708131975800', 46, NULL, 162, 38779, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:45:46', '2017-08-13 11:45:46'),
(19759, 1, 2, NULL, 223, 'Juwellary 0F000322', '11708131975900', 46, NULL, 162, 38780, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:46:36', '2017-08-13 11:46:36'),
(19760, 1, 2, NULL, 223, 'Juwellary 0F000321', '11708131976000', 46, NULL, 162, 38781, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:47:42', '2017-08-13 11:47:42'),
(19761, 1, 1, NULL, 223, 'Juwellary 0F000314', '11708131976100', 46, NULL, 162, 38782, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:48:37', '2017-08-13 11:48:37'),
(19762, 1, 2, NULL, 223, 'Juwellary 0F000254', '11708131976200', 46, NULL, 162, 38783, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:49:10', '2017-08-13 11:49:10'),
(19763, 1, 1, NULL, 223, 'Juwellary 0F000316', '11708131976300', 46, NULL, 162, 38784, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:50:24', '2017-08-13 11:50:24'),
(19764, 1, 5, NULL, 223, 'Juwellary 0F000221', '11708131976400', 46, NULL, 162, 38785, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:51:03', '2017-08-13 11:51:03'),
(19765, 1, 2, NULL, 223, 'Juwellary 0F000223', '11708131976500', 46, NULL, 162, 38786, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:51:36', '2017-08-13 11:51:36'),
(19766, 1, 5, NULL, 223, 'Juwellary 0F000222', '11708131976600', 46, NULL, 162, 38787, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:52:18', '2017-08-13 11:52:18'),
(19767, 1, 1, NULL, 223, 'Juwellary 0F000380', '11708131976700', 46, NULL, 162, 38788, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:53:05', '2017-08-13 11:53:05'),
(19768, 1, 2, NULL, 223, 'Juwellary 0F000259', '11708131976800', 46, NULL, 162, 38789, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:53:37', '2017-08-13 11:53:37'),
(19769, 1, 3, NULL, 223, 'Juwellary 0F000250', '11708131976900', 46, NULL, 162, 38790, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:55:51', '2017-08-13 11:55:51'),
(19770, 1, 3, NULL, 223, 'Juwellary 0F000245', '11708131977000', 46, NULL, 162, 38791, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:56:52', '2017-08-13 11:56:52'),
(19772, 1, 15, NULL, 223, 'Juwellary 0F000371', '11708131977200', 46, NULL, 162, 38792, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:59:17', '2017-08-13 11:59:17'),
(19773, 1, 15, NULL, 223, 'Juwellary 0F000211', '11708131977300', 46, NULL, 162, 38793, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 11:59:48', '2017-08-13 11:59:48'),
(19774, 1, 10, NULL, 223, 'Juwellary 0F000372', '11708131977400', 46, NULL, 162, 38794, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:01:03', '2017-08-13 12:01:03'),
(19775, 1, 10, NULL, 223, 'Juwellary 0F000215', '11708131977500', 46, NULL, 162, 38795, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:01:40', '2017-08-13 12:01:40'),
(19776, 1, 10, NULL, 223, 'Juwellary 0F000214', '11708131977600', 46, NULL, 162, 38796, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:02:14', '2017-08-13 12:02:14'),
(19777, 1, 3, NULL, 223, 'Juwellary 0F000252', '11708131977700', 46, NULL, 162, 38797, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:02:55', '2017-08-13 12:02:55'),
(19778, 1, 1, NULL, 223, 'Juwellary 0F000313', '11708131977800', 46, NULL, 162, 38798, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:03:35', '2017-08-13 12:03:35'),
(19779, 1, 10, NULL, 223, 'Juwellary 0F000206', '11708131977900', 46, NULL, 162, 38799, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:04:08', '2017-08-13 12:04:08'),
(19780, 1, 5, NULL, 223, 'Juwellary 0F000255', '11708131978000', 46, NULL, 162, 38800, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:04:57', '2017-08-13 12:04:57'),
(19781, 1, 5, NULL, 223, 'Juwellary 0F000258', '11708131978100', 46, NULL, 162, 38801, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:05:33', '2017-08-13 12:05:33'),
(19782, 1, 3, NULL, 223, 'Juwellary 0F000257', '11708131978200', 46, NULL, 162, 38802, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:06:00', '2017-08-13 12:06:00'),
(19783, 1, 3, NULL, 223, 'Juwellary 0F000256', '11708131978300', 46, NULL, 162, 38803, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:06:19', '2017-08-13 12:06:19'),
(19784, 1, 10, NULL, 223, 'Juwellary 0F000370', '11708131978400', 46, NULL, 162, 38804, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:06:23', '2017-08-13 12:06:23'),
(19785, 1, 2, NULL, 223, 'Juwellary 0F000249', '11708131978500', 46, NULL, 162, 38805, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:06:52', '2017-08-13 12:06:52'),
(19786, 1, 3, NULL, 223, 'Juwellary 0F000263', '11708131978600', 46, NULL, 162, 38806, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:07:21', '2017-08-13 12:07:21'),
(19787, 1, 20, NULL, 223, 'Juwellary 0F000374', '11708131978700', 46, NULL, 162, 38807, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:07:24', '2017-08-13 12:07:24'),
(19788, 1, 1, NULL, 223, 'Juwellary 0F000333', '11708131978800', 46, NULL, 162, 38808, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:07:55', '2017-08-13 12:07:55'),
(19789, 1, 1, NULL, 223, 'Juwellary 0F000334', '11708131978900', 46, NULL, 162, 38809, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:08:20', '2017-08-13 12:08:20'),
(19790, 1, 10, NULL, 223, 'Juwellary 0F000266', '11708131979000', 46, NULL, 162, 38810, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:09:30', '2017-08-13 12:09:30'),
(19791, 1, 10, NULL, 223, 'Juwellary 0F000373', '11708131979100', 46, NULL, 162, 38811, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:09:41', '2017-08-13 12:09:41'),
(19792, 1, 20, NULL, 223, 'Juwellary 0F000366', '11708131979200', 46, NULL, 162, 38812, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:13:55', '2017-08-13 12:13:55'),
(19793, 1, 5, NULL, 223, 'Juwellary 0F000229', '11708131979300', 46, NULL, 162, 38813, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 12:51:14', '2017-08-13 12:51:14'),
(19794, 1, 5, NULL, 223, 'Juwellary 0F000269', '11708131979400', 46, NULL, 162, 38814, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:01:25', '2017-08-13 13:01:25'),
(19795, 1, 10, NULL, 223, 'Juwellary 0F000268', '11708131979500', 46, NULL, 162, 38815, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:01:35', '2017-08-13 13:01:35'),
(19796, 1, 5, NULL, 223, 'Juwellary 0F000270', '11708131979600', 46, NULL, 162, 38816, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:01:53', '2017-08-13 13:01:53'),
(19797, 1, 0.5, NULL, 223, 'Juwellary 0F000309', '11708131979700', 46, NULL, 162, 38817, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:02:28', '2017-08-13 13:02:28'),
(19798, 1, 1, NULL, 223, 'Juwellary 0F000323', '11708131979800', 46, NULL, 162, 38818, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:02:39', '2017-08-13 13:02:39'),
(19799, 1, 1, NULL, 223, 'Juwellary 0F000310', '11708131979900', 46, NULL, 162, 38819, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:04:58', '2017-08-13 13:04:58'),
(19800, 1, 2, NULL, 223, 'Juwellary 0F000302', '11708131980000', 46, NULL, 162, 38820, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:05:35', '2017-08-13 13:05:35'),
(19801, 1, 2, NULL, 223, 'Juwellary 0F000378', '11708131980100', 46, NULL, 162, 38821, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:05:50', '2017-08-13 13:05:50'),
(19802, 1, 1, NULL, 223, 'Juwellary 0F000303', '11708131980200', 46, NULL, 162, 38822, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:05:58', '2017-08-13 13:05:58'),
(19803, 1, 2, NULL, 223, 'Juwellary 0F000377', '11708131980300', 46, NULL, 162, 38823, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:06:06', '2017-08-13 13:06:06'),
(19804, 1, 2, NULL, 223, 'Juwellary 0F000331', '11708131980400', 46, NULL, 162, 38824, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:06:13', '2017-08-13 13:06:13'),
(19805, 1, 2, NULL, 223, 'Juwellary 0F000330', '11708131980500', 46, NULL, 162, 38825, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:06:20', '2017-08-13 13:06:20'),
(19806, 1, 0, NULL, 223, 'Juwellary 0F000277', '11708131980600', 46, NULL, 162, 38826, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:06:29', '2017-08-13 13:06:29'),
(19807, 1, 0, NULL, 223, 'Juwellary 0F000278', '11708131980700', 46, NULL, 162, 38827, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:06:34', '2017-08-13 13:06:34'),
(19808, 1, 5, NULL, 223, 'Juwellary 0F000409', '11708131980800', 46, NULL, 162, 38828, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:06:58', '2017-08-13 13:06:58'),
(19809, 1, 0.5, NULL, 223, 'Juwellary 0F000291', '11708131980900', 46, NULL, 162, 38829, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:07:53', '2017-08-13 13:07:53'),
(19810, 1, 2, NULL, 223, 'Juwellary 0F000226', '11708131981000', 46, NULL, 162, 38830, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:08:03', '2017-08-13 13:08:03'),
(19811, 1, 2, NULL, 223, 'Juwellary 0F000225', '11708131981100', 46, NULL, 162, 38831, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:08:11', '2017-08-13 13:08:11'),
(19812, 1, 1, NULL, 223, 'Juwellary 0F000379', '11708131981200', 46, NULL, 162, 38832, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:08:21', '2017-08-13 13:08:21'),
(19813, 1, 1, NULL, 223, 'Juwellary 0F000227', '11708131981300', 46, NULL, 162, 38833, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:08:38', '2017-08-13 13:08:38'),
(19814, 1, 0, NULL, 223, 'Juwellary 0F000286', '11708131981400', 46, NULL, 162, 38834, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:09:11', '2017-08-13 13:09:11'),
(19815, 1, 1, NULL, 223, 'Juwellary 0F000279', '11708131981500', 46, NULL, 162, 38835, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:09:26', '2017-08-13 13:09:26'),
(19816, 1, 0.5, NULL, 223, 'Juwellary 0F000312', '11708131981600', 46, NULL, 162, 38836, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:09:36', '2017-08-13 13:09:36'),
(19817, 1, 0, NULL, 223, 'Juwellary 0F000289', '11708131981700', 46, NULL, 162, 38837, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:10:03', '2017-08-13 13:10:03'),
(19818, 1, 0, NULL, 223, 'Juwellary 0F000288', '11708131981800', 46, NULL, 162, 38838, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:10:13', '2017-08-13 13:10:13'),
(19819, 1, 2, NULL, 223, 'Juwellary 0F000282', '11708131981900', 46, NULL, 162, 38839, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:10:28', '2017-08-13 13:10:28'),
(19820, 1, 2, NULL, 223, 'Juwellary 0F000284', '11708131982000', 46, NULL, 162, 38840, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:10:40', '2017-08-13 13:10:40'),
(19821, 1, 2, NULL, 223, 'Juwellary 0F000287', '11708131982100', 46, NULL, 162, 38841, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:10:49', '2017-08-13 13:10:49'),
(19822, 1, 0, NULL, 223, 'Juwellary 0F000280', '11708131982200', 46, NULL, 162, 38842, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:10:56', '2017-08-13 13:10:56'),
(19823, 1, 1, NULL, 223, 'Juwellary 0F000281', '11708131982300', 46, NULL, 162, 38843, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:11:04', '2017-08-13 13:11:04'),
(19824, 1, 0, NULL, 223, 'Juwellary 0F000273', '11708131982400', 46, NULL, 162, 38844, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:11:10', '2017-08-13 13:11:10'),
(19825, 1, 0, NULL, 223, 'Juwellary 0F000297', '11708131982500', 46, NULL, 162, 38845, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:11:20', '2017-08-13 13:11:20'),
(19826, 1, 0.5, NULL, 223, 'Juwellary 0F000311', '11708131982600', 46, NULL, 162, 38846, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:11:27', '2017-08-13 13:11:27'),
(19827, 1, 0, NULL, 223, 'Juwellary 0F000271', '11708131982700', 46, NULL, 162, 38847, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:11:43', '2017-08-13 13:11:43'),
(19828, 1, 0, NULL, 223, 'Juwellary 0F000276', '11708131982800', 46, NULL, 162, 38848, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:11:51', '2017-08-13 13:11:51'),
(19829, 1, 0, NULL, 223, 'Juwellary 0F000275', '11708131982900', 46, NULL, 162, 38849, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:11:58', '2017-08-13 13:11:58'),
(19830, 1, 0, NULL, 223, 'Juwellary 0F000274', '11708131983000', 46, NULL, 162, 38850, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:12:05', '2017-08-13 13:12:05'),
(19831, 1, 0, NULL, 223, 'Juwellary 0F000272', '11708131983100', 46, NULL, 162, 38851, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:12:12', '2017-08-13 13:12:12'),
(19832, 1, 2, NULL, 223, 'Juwellary 0F000298', '11708131983200', 46, NULL, 162, 38852, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:12:21', '2017-08-13 13:12:21'),
(19833, 1, 2, NULL, 223, 'Juwellary 0F000299', '11708131983300', 46, NULL, 162, 38853, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:12:27', '2017-08-13 13:12:27'),
(19834, 1, 1, NULL, 223, 'Juwellary 0F000285', '11708131983400', 46, NULL, 162, 38854, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:12:34', '2017-08-13 13:12:34'),
(19835, 1, 2, NULL, 223, 'Juwellary 0F000305', '11708131983500', 46, NULL, 162, 38855, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:12:46', '2017-08-13 13:12:46'),
(19836, 1, 3, NULL, 223, 'Juwellary 0F000248', '11708131983600', 46, NULL, 162, 38856, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:12:52', '2017-08-13 13:12:52'),
(19837, 1, 4, NULL, 223, 'Juwellary 0F000253', '11708131983700', 46, NULL, 162, 38857, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:13:01', '2017-08-13 13:13:01'),
(19838, 1, 5, NULL, 223, 'Watch 0F000328', '11708131983800', 46, NULL, 162, 38858, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:13:55', '2017-08-13 13:13:55'),
(19839, 1, 5, NULL, 223, 'Watch 0F000329', '11708131983900', 46, NULL, 162, 38859, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:14:04', '2017-08-13 13:14:04'),
(19840, 1, 5, NULL, 223, 'Watch 0F000325', '11708131984000', 46, NULL, 162, 38860, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:14:13', '2017-08-13 13:14:13'),
(19841, 1, 5, NULL, 223, 'Watch 0F000326', '11708131984100', 46, NULL, 162, 38861, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:14:20', '2017-08-13 13:14:20'),
(19842, 1, 5, NULL, 223, 'Watch 0F000324', '11708131984200', 46, NULL, 162, 38862, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:14:24', '2017-08-13 13:14:24'),
(19843, 1, 5, NULL, 223, 'Watch 0F000327', '11708131984300', 46, NULL, 162, 38863, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:14:31', '2017-08-13 13:14:31'),
(19844, 1, 5, NULL, 223, 'Crockeries YC000501', '11708131984400', 47, NULL, 163, 38864, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 13:27:37', '2017-08-13 13:27:37'),
(19854, 1, 0, NULL, 137, 'Flormar perfect coverage foundation n:100 30ml', '8690604365890', 36, NULL, 151, 38873, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 16:20:59', '2017-08-13 16:20:59'),
(19855, 1, 0, 388, 137, 'Flormar perfect coverage foundation n:102 30ml', '8690604085903', 48, NULL, 151, 38874, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 16:22:11', '2017-08-13 16:22:55'),
(19856, 1, 0, NULL, 137, 'Flormar perfect coverage foundation n:105 30ml', '8690604085934', 48, NULL, 151, 38875, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 16:24:17', '2017-08-13 16:24:17'),
(19857, 1, 0, NULL, 137, 'Flormar perfect coverage foundation n:101 30ml', '8690604085897', 48, NULL, 151, 38876, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 16:26:07', '2017-08-13 16:26:07'),
(19858, 1, 0, NULL, 137, 'Flormar perfect coverage foundation n:107 30ml', '8690604085958', 48, NULL, 151, 38877, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 16:27:06', '2017-08-13 16:27:06'),
(19859, 1, 0, NULL, 137, 'Flormar perfect coverage foundation n:108 30ml', '8690604098675', 48, NULL, 151, 38878, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 16:28:44', '2017-08-13 16:28:44'),
(19860, 1, 0, NULL, 137, 'Flormar perfect coverage foundation n:113 30ml', '8690604247813', 48, NULL, 151, 38879, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 16:29:42', '2017-08-13 16:29:42'),
(19861, 1, 0, NULL, 137, 'Flormar perfect coverage foundation n:114 30ml', '8690604247820', 48, NULL, 151, 38880, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 16:54:57', '2017-08-13 16:54:57'),
(19862, 1, 0, NULL, 137, 'Flormar illuminating Primer base 30ml', '8690604164660', 48, NULL, 151, 38881, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:03:26', '2017-08-13 17:03:26'),
(19863, 1, 0, NULL, 137, 'Flormar BB 7+ n:03 40ml', '8690604251438', 48, NULL, 151, 38882, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:04:58', '2017-08-13 17:04:58'),
(19864, 1, 0, NULL, 137, 'Flormar BB 7+ n:04 40ml', '8690604251445', 48, NULL, 151, 38885, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:05:43', '2017-08-13 17:05:43'),
(19865, 1, 0, NULL, 137, 'Flormar BB 7+ n:05 40ml', '8690604251452', 48, NULL, 151, 38886, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:07:31', '2017-08-13 17:07:31'),
(19866, 1, 0, NULL, 137, 'Flormar BB 7+ n:06 40ml', '8690604251469', 48, NULL, 151, 38888, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:09:25', '2017-08-13 17:09:25'),
(19867, 1, 0, NULL, 137, 'Flormar perfect coverage liquide concealer n:01 30ml', '8690604044863', 48, NULL, 151, 38889, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:12:15', '2017-08-13 17:12:15'),
(19868, 1, 0, NULL, 137, 'Flormar perfect coverage liquid concealer n:02 5ml', '8690604044894', 31, NULL, 151, 38890, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:15:59', '2017-08-13 17:15:59'),
(19869, 1, 0, NULL, 137, 'Flormar perfect coverage liquid concealer n:03 5ml', '8690604044924', 48, NULL, 151, 38891, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:17:27', '2017-08-13 17:17:27'),
(19870, 1, 0, NULL, 137, 'Flormar perfect coverage liquid concealer n:04 5ml', '8690604044955', 48, NULL, 151, 38892, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:18:42', '2017-08-13 17:18:42'),
(19871, 1, 0, NULL, 137, 'Flormar perfect coverage liquid concealer n:05 5ml', '8690604044986', 48, NULL, 151, 38893, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:21:19', '2017-08-13 17:21:19'),
(19872, 1, 0, NULL, 137, 'Flormar supper matte lipstick n;201 4.2gm', '8690604054619', 48, NULL, 151, 38894, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:24:32', '2017-08-13 17:24:32'),
(19873, 1, 0, NULL, 137, 'Flormar supper matte lipstick n;202 4.2gm', '8690604054626', 48, NULL, 151, 38895, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:25:48', '2017-08-13 17:25:48'),
(19874, 1, 0, NULL, 137, 'Flormar supper matte lipstick n;203 4.2gm', '8690604054633', 36, NULL, 151, 38896, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:27:41', '2017-08-13 17:27:41'),
(19875, 1, 0, NULL, 137, 'Flormar supper matte lipstick n;204 4.2gm', '8690604054640', 48, NULL, 151, 38897, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:28:38', '2017-08-13 17:28:38'),
(19876, 1, 0, NULL, 137, 'Flormar supper matte lipstick n;205 4.2gm', '8690604054657', 48, NULL, 151, 38898, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:29:39', '2017-08-13 17:29:39'),
(19877, 1, 0, NULL, 137, 'Flormar supper matte lipstick n;206 4.2gm', '8690604054664', 48, NULL, 151, 38899, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:30:45', '2017-08-13 17:30:45'),
(19878, 1, 0, NULL, 137, 'Flormar supper matte lipstick n;207 4.2gm', '8690604054671', 48, NULL, 151, 38900, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:32:06', '2017-08-13 17:32:06'),
(19879, 1, 0, NULL, 137, 'Flormar supper matte lipstick n;208 4.2gm', '8690604054688', 48, NULL, 151, 38901, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:33:35', '2017-08-13 17:33:35'),
(19880, 1, 0, NULL, 137, 'Flormar supper matte lipstick n;209 4.2gm', '8690604054695', 48, NULL, 151, 38902, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:35:01', '2017-08-13 17:35:01'),
(19881, 1, 0, NULL, 137, 'Flormar supper matte lipstick n;210 4.2gm', '8690604054701', 48, NULL, 151, 38905, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:36:39', '2017-08-13 17:36:39'),
(19882, 1, 0, NULL, 137, 'Flormar supper matte lipstick n;211 4.2gm', '8690604054718', 48, NULL, 151, 38906, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:37:48', '2017-08-13 17:37:48'),
(19883, 1, 0, NULL, 137, 'Flormar supper matte lipstick n;212 4.2gm', '8690604054725', 48, NULL, 151, 38907, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:39:01', '2017-08-13 17:39:01'),
(19884, 1, 0, NULL, 137, 'Flormar long wearing lipstick n;L01 3.9gm', '8690604107711', 48, NULL, 151, 38910, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:44:38', '2017-08-13 17:44:38'),
(19885, 1, 0, NULL, 137, 'Flormar long wearing lipstick n;L02 3.9gm', '8690604107728', 48, NULL, 151, 38911, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:45:56', '2017-08-13 17:45:56'),
(19886, 1, 0, NULL, 137, 'Flormar long wearing lipstick n;L05 3.9gm', '8690604107759', 48, NULL, 151, 38912, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-13 17:47:01', '2017-08-13 17:47:01'),
(19887, 1, 1, 0, 74, 'yan yan venila 50gm', '8888077101200', 31, NULL, 156, 38933, 0, 0, 0, '', 1, 0, 1, 1, '2017-08-20 15:01:13', '2017-08-20 15:01:13');
/*!40000 ALTER TABLE `iteminfos` ENABLE KEYS */;
-- Dumping structure for table db_test.itemlocations
CREATE TABLE IF NOT EXISTS `itemlocations` (
`location_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`location_name` varchar(30) NOT NULL,
`status` int(10) unsigned NOT NULL DEFAULT '1',
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`location_id`),
UNIQUE KEY `location_name` (`location_name`),
KEY `FK_itemlocations_empinfos_2` (`updated_by`),
KEY `FK_itemlocations_empinfos` (`created_by`),
CONSTRAINT `FK_itemlocations_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_itemlocations_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=164 DEFAULT CHARSET=latin1;
-- Dumping data for table db_test.itemlocations: ~13 rows (approximately)
/*!40000 ALTER TABLE `itemlocations` DISABLE KEYS */;
INSERT INTO `itemlocations` (`location_id`, `location_name`, `status`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(151, 'Personal Care', 1, 1, NULL, '2017-08-09 05:55:09', '0000-00-00 00:00:00'),
(152, 'Baby Care', 1, 1, NULL, '2017-08-10 07:28:03', '0000-00-00 00:00:00'),
(153, 'Baby Food', 1, 1, NULL, '2017-08-10 08:56:21', '0000-00-00 00:00:00'),
(154, 'Bevarage And Tobaco', 1, 1, NULL, '2017-08-10 09:08:28', '0000-00-00 00:00:00'),
(155, 'Dairy', 1, 1, NULL, '2017-08-10 09:31:05', '0000-00-00 00:00:00'),
(156, 'Package Food', 1, 1, NULL, '2017-08-10 23:14:12', '0000-00-00 00:00:00'),
(157, 'Kitchen Additivers', 1, 1, NULL, '2017-08-11 04:55:31', '0000-00-00 00:00:00'),
(158, 'Home Made', 1, 1, NULL, '2017-08-11 08:06:46', '0000-00-00 00:00:00'),
(159, 'Home Care', 1, 1, NULL, '2017-08-11 08:32:51', '0000-00-00 00:00:00'),
(160, 'Commodites', 1, 1, 1, '2017-08-11 17:38:32', '2017-08-12 06:38:32'),
(161, 'NFD', 1, 1, NULL, '2017-08-13 05:50:29', '0000-00-00 00:00:00'),
(162, 'NFD Juwellary', 1, 1, NULL, '2017-08-13 09:11:37', '0000-00-00 00:00:00'),
(163, 'NFD Crockeries', 1, 1, NULL, '2017-08-13 13:25:12', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `itemlocations` ENABLE KEYS */;
-- Dumping structure for table db_test.itempurchases
CREATE TABLE IF NOT EXISTS `itempurchases` (
`i_purchase_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`sup_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`item_id` int(10) unsigned NOT NULL,
`price_id` int(10) unsigned NOT NULL,
`quantity` double(12,4) NOT NULL,
`discount` double(12,3) NOT NULL,
`amount` double(12,3) NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `i_purchase_id` (`i_purchase_id`),
KEY `itempurchases_i_purchase_id_index` (`i_purchase_id`),
KEY `itempurchases_sup_invoice_id_foreign` (`sup_invoice_id`),
KEY `itempurchases_item_id_foreign` (`item_id`),
KEY `itempurchases_price_id_foreign` (`price_id`),
KEY `itempurchases_created_by_foreign` (`created_by`),
KEY `itempurchases_updated_by_foreign` (`updated_by`),
CONSTRAINT `FK_itempurchases_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_itempurchases_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_itempurchases_iteminfos` FOREIGN KEY (`item_id`) REFERENCES `iteminfos` (`item_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_itempurchases_priceinfos` FOREIGN KEY (`price_id`) REFERENCES `priceinfos` (`price_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_itempurchases_supinvoices` FOREIGN KEY (`sup_invoice_id`) REFERENCES `supinvoices` (`sup_invoice_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.itempurchases: ~46 rows (approximately)
/*!40000 ALTER TABLE `itempurchases` DISABLE KEYS */;
INSERT INTO `itempurchases` (`i_purchase_id`, `sup_invoice_id`, `item_id`, `price_id`, `quantity`, `discount`, `amount`, `status`, `year`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(1, '17081310000000', 17241, 38883, 10.0000, 0.000, 1000.000, 1, 0, 1, NULL, '2017-08-13 17:05:31', '0000-00-00 00:00:00'),
(2, '17081310000000', 17243, 38884, 10.0000, 0.000, 200.000, 1, 0, 1, NULL, '2017-08-13 17:05:31', '0000-00-00 00:00:00'),
(3, '17081310000001', 19705, 38887, 10.0000, 0.000, 200.000, 1, 0, 1, NULL, '2017-08-13 17:07:40', '0000-00-00 00:00:00'),
(4, '17081310000002', 19705, 38887, 10.0000, 0.000, 200.000, 1, 0, 1, NULL, '2017-08-13 17:22:36', '0000-00-00 00:00:00'),
(5, '17081310000003', 17536, 38903, 100.0000, 0.000, 10000.000, 1, 0, 1, NULL, '2017-08-13 17:36:22', '0000-00-00 00:00:00'),
(6, '17081310000003', 17262, 38904, 10.0000, 0.000, 1000.000, 1, 0, 1, NULL, '2017-08-13 17:36:22', '0000-00-00 00:00:00'),
(7, '17081310000004', 17241, 38883, 1.0000, 0.000, 100.000, 1, 0, 1, NULL, '2017-08-13 17:40:02', '0000-00-00 00:00:00'),
(8, '17081310000004', 17242, 38908, 5.0000, 0.000, 2500.000, 1, 0, 1, NULL, '2017-08-13 17:40:02', '0000-00-00 00:00:00'),
(9, '17081310000004', 17251, 38909, 5.0000, 0.000, 500.000, 1, 0, 1, NULL, '2017-08-13 17:40:02', '0000-00-00 00:00:00'),
(10, '17081310000004', 19705, 38887, 1.0000, 0.000, 20.000, 1, 0, 1, NULL, '2017-08-13 17:40:02', '0000-00-00 00:00:00'),
(11, '17081310000005', 17242, 38908, 5.0000, 0.000, 2500.000, 1, 0, 1, NULL, '2017-08-13 21:11:38', '0000-00-00 00:00:00'),
(12, '17081310000005', 17243, 38884, 1.0000, 0.000, 20.000, 1, 0, 1, NULL, '2017-08-13 21:11:38', '0000-00-00 00:00:00'),
(13, '17081310000006', 17243, 38884, 1.0000, 0.000, 20.000, 1, 0, 1, NULL, '2017-08-13 21:14:43', '0000-00-00 00:00:00'),
(14, '17081310000007', 17242, 38908, 1.0000, 0.000, 500.000, 1, 0, 1, NULL, '2017-08-13 21:14:58', '0000-00-00 00:00:00'),
(15, '17081310000008', 19704, 38913, 10.0000, 0.000, 200.000, 1, 0, 1, NULL, '2017-08-13 21:38:25', '0000-00-00 00:00:00'),
(16, '17081310000009', 19539, 38914, 10.0000, 0.000, 200.000, 1, 0, 1, NULL, '2017-08-13 21:45:07', '0000-00-00 00:00:00'),
(17, '17081310000010', 17243, 38884, 1.0000, 0.000, 20.000, 1, 0, 1, NULL, '2017-08-13 23:40:10', '0000-00-00 00:00:00'),
(18, '17081310000010', 17247, 38915, 10.0000, 0.000, 500.000, 1, 0, 1, NULL, '2017-08-13 23:40:10', '0000-00-00 00:00:00'),
(19, '17081310000011', 17242, 38908, 2.0000, 0.000, 1000.000, 1, 0, 1, NULL, '2017-08-13 23:44:32', '0000-00-00 00:00:00'),
(20, '17081310000011', 17244, 38916, 1.0000, 0.000, 55.000, 1, 0, 1, NULL, '2017-08-13 23:44:32', '0000-00-00 00:00:00'),
(21, '17081310000011', 17251, 38909, 1.0000, 0.000, 100.000, 1, 0, 1, NULL, '2017-08-13 23:44:32', '0000-00-00 00:00:00'),
(22, '17081310000011', 17246, 38917, 1.0000, 0.000, 50.000, 1, 0, 1, NULL, '2017-08-13 23:44:32', '0000-00-00 00:00:00'),
(23, '17081310000011', 17245, 38918, 1.0000, 0.000, 100.000, 1, 0, 1, NULL, '2017-08-13 23:44:32', '0000-00-00 00:00:00'),
(24, '17081310000012', 17249, 38919, 1.0000, 0.000, 100.000, 1, 0, 1, NULL, '2017-08-13 23:45:02', '0000-00-00 00:00:00'),
(25, '17081310000012', 17257, 38920, 1.0000, 0.000, 100.000, 1, 0, 1, NULL, '2017-08-13 23:45:02', '0000-00-00 00:00:00'),
(26, '17081310000013', 18015, 38921, 100.0000, 0.000, 50000.000, 1, 0, 1, NULL, '2017-08-13 23:47:56', '0000-00-00 00:00:00'),
(27, '17081310000013', 17246, 38917, 20.0000, 0.000, 1000.000, 1, 0, 1, NULL, '2017-08-13 23:47:56', '0000-00-00 00:00:00'),
(28, '17081310000014', 17241, 38883, 10.0000, 0.000, 1000.000, 1, 0, 1, NULL, '2017-08-13 23:49:27', '0000-00-00 00:00:00'),
(29, '17081310000014', 17258, 38922, 10.0000, 0.000, 1000.000, 1, 0, 1, NULL, '2017-08-13 23:49:27', '0000-00-00 00:00:00'),
(30, '17081310000015', 17305, 38923, 100.0000, 0.000, 2000.000, 1, 0, 1, NULL, '2017-08-13 23:53:09', '0000-00-00 00:00:00'),
(31, '17081410000000', 17931, 38924, 1.0000, 0.000, 1.000, 1, 0, 1, NULL, '2017-08-14 00:34:42', '0000-00-00 00:00:00'),
(32, '17081410000001', 17243, 38884, 1.0000, 0.000, 20.000, 1, 0, 1, NULL, '2017-08-14 00:39:25', '0000-00-00 00:00:00'),
(33, '17081410000001', 17245, 38918, 1.0000, 0.000, 100.000, 1, 0, 1, NULL, '2017-08-14 00:39:25', '0000-00-00 00:00:00'),
(34, '17081410000002', 17244, 38916, 1.0000, 0.000, 55.000, 1, 0, 1, NULL, '2017-08-14 01:19:35', '0000-00-00 00:00:00'),
(35, '17081410000002', 17256, 38926, 10.0000, 0.000, 1000.000, 1, 0, 1, NULL, '2017-08-14 01:19:35', '0000-00-00 00:00:00'),
(36, '17081410000003', 17242, 38908, 5.0000, 0.000, 2500.000, 1, 0, 1, NULL, '2017-08-14 01:21:44', '0000-00-00 00:00:00'),
(37, '17081410000003', 17244, 38916, 5.0000, 0.000, 275.000, 1, 0, 1, NULL, '2017-08-14 01:21:44', '0000-00-00 00:00:00'),
(38, '17082010000000', 17241, 38927, 5.0000, 0.000, 550.000, 1, 0, 1, NULL, '2017-08-20 07:49:07', '0000-00-00 00:00:00'),
(39, '17082010000001', 19705, 38887, 10.0000, 0.000, 200.000, 1, 0, 1, NULL, '2017-08-20 09:37:56', '0000-00-00 00:00:00'),
(40, '17082010000001', 17242, 38908, 10.0000, 0.000, 5000.000, 1, 0, 1, NULL, '2017-08-20 09:37:56', '0000-00-00 00:00:00'),
(41, '17082010000002', 17288, 38929, 10.0000, 0.000, 1000.000, 1, 0, 1, NULL, '2017-08-20 11:07:12', '0000-00-00 00:00:00'),
(42, '17082010000002', 17318, 38930, 10.0000, 0.000, 1000.000, 1, 0, 1, NULL, '2017-08-20 11:07:12', '0000-00-00 00:00:00'),
(43, '17082010000003', 18177, 38931, 100.0000, 0.000, 2000.000, 1, 0, 1, NULL, '2017-08-20 13:22:33', '0000-00-00 00:00:00'),
(44, '17082010000004', 18177, 38931, 100.0000, 0.000, 2000.000, 1, 0, 1, NULL, '2017-08-20 13:29:45', '0000-00-00 00:00:00'),
(45, '17082010000005', 18241, 38932, 100.0000, 0.000, 300.000, 1, 0, 1, NULL, '2017-08-20 13:30:21', '0000-00-00 00:00:00'),
(46, '17082010000006', 17241, 38927, 10.0000, 0.000, 1100.000, 1, 0, 1, NULL, '2017-08-20 13:49:25', '0000-00-00 00:00:00'),
(47, '17082010000007', 17241, 38927, 10.0000, 0.000, 1100.000, 1, 0, 1, NULL, '2017-08-20 14:01:14', '0000-00-00 00:00:00'),
(48, '17082010000007', 17244, 38916, 10.0000, 0.000, 550.000, 1, 0, 1, NULL, '2017-08-20 14:01:14', '0000-00-00 00:00:00'),
(49, '17082010000008', 17242, 38908, 10.0000, 0.000, 5000.000, 1, 0, 1, NULL, '2017-08-20 14:04:14', '0000-00-00 00:00:00'),
(50, '17082010000009', 17243, 38884, 10.0000, 0.000, 200.000, 1, 0, 1, NULL, '2017-08-20 16:43:07', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `itempurchases` ENABLE KEYS */;
-- Dumping structure for table db_test.itemsales
CREATE TABLE IF NOT EXISTS `itemsales` (
`i_sale_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`sale_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`item_id` int(10) unsigned NOT NULL,
`price_id` int(10) unsigned NOT NULL,
`quantity` double(12,4) NOT NULL,
`discount` double(12,3) NOT NULL,
`tax` double(12,3) NOT NULL,
`amount` double(12,3) NOT NULL,
`item_point` double(12,3) NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `i_sale_id` (`i_sale_id`),
KEY `itemsales_i_sale_id_index` (`i_sale_id`),
KEY `itemsales_sale_invoice_id_foreign` (`sale_invoice_id`),
KEY `itemsales_item_id_foreign` (`item_id`),
KEY `itemsales_price_id_foreign` (`price_id`),
KEY `itemsales_created_by_foreign` (`created_by`),
KEY `itemsales_updated_by_foreign` (`updated_by`),
CONSTRAINT `FK_itemsales_saleinvoices` FOREIGN KEY (`sale_invoice_id`) REFERENCES `saleinvoices` (`sale_invoice_id`) ON UPDATE CASCADE,
CONSTRAINT `itemsales_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `itemsales_item_id_foreign` FOREIGN KEY (`item_id`) REFERENCES `iteminfos` (`item_id`) ON UPDATE CASCADE,
CONSTRAINT `itemsales_price_id_foreign` FOREIGN KEY (`price_id`) REFERENCES `priceinfos` (`price_id`) ON UPDATE CASCADE,
CONSTRAINT `itemsales_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=90 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.itemsales: ~85 rows (approximately)
/*!40000 ALTER TABLE `itemsales` DISABLE KEYS */;
INSERT INTO `itemsales` (`i_sale_id`, `sale_invoice_id`, `item_id`, `price_id`, `quantity`, `discount`, `tax`, `amount`, `item_point`, `status`, `year`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(5, '17081310000000', 19705, 38887, 5.0000, 0.000, 0.000, 125.000, 2.000, 1, 0, 1, NULL, '2017-08-13 17:34:06', '0000-00-00 00:00:00'),
(6, '17081310000000', 17243, 38884, 2.0000, 0.000, 0.000, 50.000, 0.000, 1, 0, 1, NULL, '2017-08-13 17:34:06', '0000-00-00 00:00:00'),
(7, '17081310000001', 19705, 38887, 1.0000, 0.000, 0.000, 25.000, 2.000, 1, 0, 1, NULL, '2017-08-13 17:46:08', '0000-00-00 00:00:00'),
(8, '17081310000002', 19705, 38887, 2.0000, 0.000, 0.000, 50.000, 2.000, 1, 0, 1, NULL, '2017-08-13 17:53:28', '0000-00-00 00:00:00'),
(9, '17081310000003', 17536, 38903, 2.0000, 0.000, 0.000, 240.000, 0.000, 1, 0, 1, NULL, '2017-08-13 21:39:29', '0000-00-00 00:00:00'),
(10, '17081310000003', 19705, 38887, 3.0000, 0.000, 0.000, 75.000, 2.000, 1, 0, 1, NULL, '2017-08-13 21:39:29', '0000-00-00 00:00:00'),
(11, '17081310000003', 19704, 38913, 3.0000, 0.000, 0.000, 75.000, 5.000, 1, 0, 1, NULL, '2017-08-13 21:39:29', '0000-00-00 00:00:00'),
(12, '17081310000004', 19705, 38887, 2.0000, 0.000, 0.000, 50.000, 2.000, 1, 0, 1, NULL, '2017-08-13 21:45:52', '0000-00-00 00:00:00'),
(13, '17081310000004', 19704, 38913, 1.0000, 0.000, 0.000, 25.000, 5.000, 1, 0, 1, NULL, '2017-08-13 21:45:52', '0000-00-00 00:00:00'),
(14, '17081310000004', 19539, 38914, 2.0000, 0.000, 0.000, 50.000, 0.500, 1, 0, 1, NULL, '2017-08-13 21:45:52', '0000-00-00 00:00:00'),
(15, '17081310000005', 19539, 38914, 1.0000, 0.000, 0.000, 25.000, 0.500, 1, 0, 1, NULL, '2017-08-13 21:46:25', '0000-00-00 00:00:00'),
(16, '17081310000005', 19705, 38887, 1.0000, 0.000, 0.000, 25.000, 2.000, 1, 0, 1, NULL, '2017-08-13 21:46:25', '0000-00-00 00:00:00'),
(17, '17081310000006', 19704, 38913, 1.0000, 0.000, 0.000, 25.000, 5.000, 1, 0, 1, NULL, '2017-08-13 22:34:59', '0000-00-00 00:00:00'),
(18, '17081310000006', 19539, 38914, 1.0000, 0.000, 0.000, 25.000, 0.500, 1, 0, 1, NULL, '2017-08-13 22:34:59', '0000-00-00 00:00:00'),
(19, '17081310000007', 19539, 38914, 1.0000, 0.000, 0.000, 25.000, 0.500, 1, 0, 1, NULL, '2017-08-13 22:43:49', '0000-00-00 00:00:00'),
(20, '17081310000007', 19705, 38887, 1.0000, 0.000, 0.000, 25.000, 2.000, 1, 0, 1, NULL, '2017-08-13 22:43:49', '0000-00-00 00:00:00'),
(21, '17081310000007', 19704, 38913, 1.0000, 0.000, 0.000, 25.000, 5.000, 1, 0, 1, NULL, '2017-08-13 22:43:49', '0000-00-00 00:00:00'),
(22, '17081310000008', 17536, 38903, 1.0000, 0.000, 0.000, 120.000, 0.000, 1, 0, 1, NULL, '2017-08-13 23:00:46', '0000-00-00 00:00:00'),
(23, '17081410000000', 17242, 38908, 1.0000, 0.000, 0.000, 520.000, 0.000, 1, 0, 1, NULL, '2017-08-14 01:23:08', '0000-00-00 00:00:00'),
(24, '17081410000001', 17243, 38884, 1.0000, 0.000, 0.000, 25.000, 0.000, 1, 0, 1, NULL, '2017-08-14 01:35:20', '0000-00-00 00:00:00'),
(25, '17081410000001', 17242, 38908, 2.0000, 0.000, 0.000, 1040.000, 0.000, 1, 0, 1, NULL, '2017-08-14 01:35:20', '0000-00-00 00:00:00'),
(26, '17081410000001', 17244, 38916, 1.0000, 0.000, 0.000, 59.000, 0.000, 1, 0, 1, NULL, '2017-08-14 01:35:20', '0000-00-00 00:00:00'),
(27, '17081410000001', 17245, 38918, 1.0000, 0.000, 0.000, 150.000, 0.000, 1, 0, 1, NULL, '2017-08-14 01:35:20', '0000-00-00 00:00:00'),
(28, '17081410000001', 17256, 38926, 2.0000, 0.000, 0.000, 240.000, 4.000, 1, 0, 1, NULL, '2017-08-14 01:35:20', '0000-00-00 00:00:00'),
(29, '17081410000001', 17305, 38923, 1.0000, 0.000, 0.000, 25.000, 0.000, 1, 0, 1, NULL, '2017-08-14 01:35:20', '0000-00-00 00:00:00'),
(30, '17081410000001', 17931, 38925, 1.0000, 0.000, 0.000, 110.000, 0.000, 1, 0, 1, NULL, '2017-08-14 01:35:20', '0000-00-00 00:00:00'),
(31, '17081410000001', 17258, 38922, 1.0000, 0.000, 0.000, 110.000, 25.000, 1, 0, 1, NULL, '2017-08-14 01:35:20', '0000-00-00 00:00:00'),
(32, '17081410000001', 17241, 38883, 1.0000, 0.000, 0.000, 110.000, 0.000, 1, 0, 1, NULL, '2017-08-14 01:35:20', '0000-00-00 00:00:00'),
(33, '17081610000000', 17242, 38908, 1.0000, 0.000, 0.000, 520.000, 0.000, 1, 0, 1, NULL, '2017-08-16 01:51:49', '0000-00-00 00:00:00'),
(34, '17081610000000', 17256, 38926, 1.0000, 0.000, 0.000, 120.000, 4.000, 1, 0, 1, NULL, '2017-08-16 01:51:49', '0000-00-00 00:00:00'),
(35, '17081610000000', 17305, 38923, 1.0000, 0.000, 0.000, 25.000, 0.000, 1, 0, 1, NULL, '2017-08-16 01:51:49', '0000-00-00 00:00:00'),
(36, '17082010000000', 17256, 38926, 1.0000, 0.000, 0.000, 120.000, 4.000, 1, 0, 11, NULL, '2017-08-20 01:49:27', '0000-00-00 00:00:00'),
(37, '17082010000000', 17244, 38916, 1.0000, 0.000, 0.000, 59.000, 0.000, 1, 0, 11, NULL, '2017-08-20 01:49:27', '0000-00-00 00:00:00'),
(38, '17082010000001', 17241, 38883, 2.0000, 0.000, 0.000, 220.000, 0.000, 1, 0, 11, NULL, '2017-08-20 01:53:50', '0000-00-00 00:00:00'),
(39, '17082010000002', 17241, 38883, 2.0000, 0.000, 0.000, 220.000, 0.000, 1, 0, 11, NULL, '2017-08-20 01:55:23', '0000-00-00 00:00:00'),
(40, '17082010000002', 17244, 38916, 2.0000, 0.000, 0.000, 118.000, 0.000, 1, 0, 11, NULL, '2017-08-20 01:55:23', '0000-00-00 00:00:00'),
(41, '17082010000003', 17256, 38926, 2.0000, 0.000, 0.000, 240.000, 4.000, 1, 0, 1, NULL, '2017-08-20 09:19:01', '0000-00-00 00:00:00'),
(42, '17082010000003', 17258, 38922, 1.0000, 0.000, 0.000, 110.000, 25.000, 1, 0, 1, NULL, '2017-08-20 09:19:01', '0000-00-00 00:00:00'),
(43, '17082010000003', 17536, 38903, 1.0000, 0.000, 0.000, 120.000, 0.000, 1, 0, 1, NULL, '2017-08-20 09:19:01', '0000-00-00 00:00:00'),
(44, '17082010000004', 17256, 38926, 1.0000, 0.000, 0.000, 120.000, 4.000, 1, 0, 1, NULL, '2017-08-20 09:27:49', '0000-00-00 00:00:00'),
(45, '17082010000004', 17305, 38923, 1.0000, 0.000, 0.000, 25.000, 0.000, 1, 0, 1, NULL, '2017-08-20 09:27:49', '0000-00-00 00:00:00'),
(46, '17082010000004', 17536, 38903, 1.0000, 0.000, 0.000, 120.000, 0.000, 1, 0, 1, NULL, '2017-08-20 09:27:49', '0000-00-00 00:00:00'),
(47, '17082010000005', 19705, 38887, 1.0000, 0.000, 0.000, 25.000, 2.000, 1, 0, 1, NULL, '2017-08-20 10:22:33', '0000-00-00 00:00:00'),
(48, '17082010000005', 17242, 38908, 1.0000, 0.000, 0.000, 520.000, 0.000, 1, 0, 1, NULL, '2017-08-20 10:22:33', '0000-00-00 00:00:00'),
(49, '17082010000006', 17305, 38923, 1.0000, 0.000, 0.000, 25.000, 0.000, 1, 0, 1, NULL, '2017-08-20 10:34:19', '0000-00-00 00:00:00'),
(50, '17082010000006', 17244, 38916, 1.0000, 0.000, 0.000, 59.000, 0.000, 1, 0, 1, NULL, '2017-08-20 10:34:19', '0000-00-00 00:00:00'),
(51, '17082010000007', 17305, 38923, 1.0000, 0.000, 0.000, 25.000, 0.000, 1, 0, 1, NULL, '2017-08-20 10:42:27', '0000-00-00 00:00:00'),
(52, '17082010000008', 17256, 38926, 1.0000, 0.000, 0.000, 120.000, 4.000, 1, 0, 1, NULL, '2017-08-20 10:46:35', '0000-00-00 00:00:00'),
(53, '17082010000009', 17242, 38908, 1.0000, 0.000, 0.000, 520.000, 0.000, 1, 0, 1, NULL, '2017-08-20 10:48:00', '0000-00-00 00:00:00'),
(54, '17082010000010', 17242, 38908, 1.0000, 0.000, 0.000, 520.000, 0.000, 1, 0, 1, NULL, '2017-08-20 10:49:15', '0000-00-00 00:00:00'),
(55, '17082010000011', 17242, 38908, 1.0000, 0.000, 0.000, 520.000, 0.000, 1, 0, 1, NULL, '2017-08-20 10:49:46', '0000-00-00 00:00:00'),
(56, '17082010000012', 17244, 38916, 1.0000, 0.000, 0.000, 59.000, 0.000, 1, 0, 1, NULL, '2017-08-20 10:50:18', '0000-00-00 00:00:00'),
(57, '17082010000013', 17242, 38908, 1.0000, 0.000, 0.000, 520.000, 0.000, 1, 0, 1, NULL, '2017-08-20 10:51:54', '0000-00-00 00:00:00'),
(58, '17082010000014', 17242, 38908, 1.0000, 0.000, 0.000, 520.000, 0.000, 1, 0, 1, NULL, '2017-08-20 10:52:32', '0000-00-00 00:00:00'),
(59, '17082010000015', 17256, 38926, 1.0000, 0.000, 0.000, 120.000, 4.000, 1, 0, 1, NULL, '2017-08-20 10:54:18', '0000-00-00 00:00:00'),
(60, '17082010000016', 17244, 38916, 1.0000, 0.000, 0.000, 59.000, 0.000, 1, 0, 1, NULL, '2017-08-20 10:55:36', '0000-00-00 00:00:00'),
(61, '17082010000017', 17242, 38908, 1.0000, 0.000, 0.000, 520.000, 0.000, 1, 0, 1, NULL, '2017-08-20 10:57:01', '0000-00-00 00:00:00'),
(62, '17082010000018', 17305, 38923, 1.0000, 0.000, 0.000, 25.000, 0.000, 1, 0, 1, NULL, '2017-08-20 10:58:05', '0000-00-00 00:00:00'),
(63, '17082010000019', 17305, 38923, 1.0000, 0.000, 0.000, 25.000, 0.000, 1, 0, 1, NULL, '2017-08-20 10:58:54', '0000-00-00 00:00:00'),
(64, '17082010000020', 17241, 38927, 1.0000, 0.000, 0.000, 120.000, 0.000, 1, 0, 1, NULL, '2017-08-20 10:59:17', '0000-00-00 00:00:00'),
(65, '17082010000021', 17305, 38923, 1.0000, 0.000, 0.000, 25.000, 0.000, 1, 0, 1, NULL, '2017-08-20 10:59:42', '0000-00-00 00:00:00'),
(66, '17082010000022', 17305, 38923, 1.0000, 0.000, 0.000, 25.000, 0.000, 1, 0, 1, NULL, '2017-08-20 11:01:35', '0000-00-00 00:00:00'),
(67, '17082010000023', 17305, 38923, 1.0000, 0.000, 0.000, 25.000, 0.000, 1, 0, 1, NULL, '2017-08-20 11:03:07', '0000-00-00 00:00:00'),
(68, '17082010000024', 19705, 38887, 5.0000, 0.000, 0.000, 125.000, 2.000, 1, 0, 1, NULL, '2017-08-20 11:03:40', '0000-00-00 00:00:00'),
(69, '17082010000024', 17305, 38923, 1.0000, 0.000, 0.000, 25.000, 0.000, 1, 0, 1, NULL, '2017-08-20 11:03:40', '0000-00-00 00:00:00'),
(70, '17082010000025', 19705, 38887, 2.0000, 0.000, 0.000, 50.000, 2.000, 1, 0, 1, NULL, '2017-08-20 11:06:23', '0000-00-00 00:00:00'),
(71, '17082010000025', 17305, 38923, 1.0000, 0.000, 0.000, 25.000, 0.000, 1, 0, 1, NULL, '2017-08-20 11:06:23', '0000-00-00 00:00:00'),
(72, '17082010000026', 17288, 38929, 3.0000, 0.000, 0.000, 330.000, 25.000, 1, 0, 1, NULL, '2017-08-20 11:08:03', '0000-00-00 00:00:00'),
(73, '17082010000026', 17318, 38930, 2.0000, 0.000, 0.000, 240.000, 25.000, 1, 0, 1, NULL, '2017-08-20 11:08:03', '0000-00-00 00:00:00'),
(74, '17082010000027', 17305, 38923, 1.0000, 0.000, 0.000, 25.000, 0.000, 1, 0, 1, NULL, '2017-08-20 11:11:12', '0000-00-00 00:00:00'),
(75, '17082010000028', 17288, 38929, 2.0000, 0.000, 0.000, 220.000, 25.000, 1, 0, 1, NULL, '2017-08-20 11:16:14', '0000-00-00 00:00:00'),
(76, '17082010000028', 17305, 38923, 1.0000, 0.000, 0.000, 25.000, 0.000, 1, 0, 1, NULL, '2017-08-20 11:16:14', '0000-00-00 00:00:00'),
(77, '17082010000029', 18177, 38931, 50.0000, 0.000, 0.000, 1250.000, 0.000, 1, 0, 1, NULL, '2017-08-20 13:23:21', '0000-00-00 00:00:00'),
(78, '17082010000030', 18177, 38931, 49.0000, 0.000, 0.000, 1225.000, 0.000, 1, 0, 1, NULL, '2017-08-20 13:26:32', '0000-00-00 00:00:00'),
(79, '17082010000031', 18241, 38932, 5.0000, 0.000, 0.000, 25.000, 0.000, 1, 0, 1, NULL, '2017-08-20 13:30:53', '0000-00-00 00:00:00'),
(80, '17082010000032', 18241, 38932, 5.0000, 0.000, 0.000, 25.000, 0.000, 1, 0, 1, NULL, '2017-08-20 13:33:35', '0000-00-00 00:00:00'),
(81, '17082010000033', 19705, 38887, 2.0000, 0.000, 0.000, 50.000, 2.000, 1, 0, 1, NULL, '2017-08-20 13:35:45', '0000-00-00 00:00:00'),
(82, '17082010000033', 18241, 38932, 5.0000, 0.000, 0.000, 25.000, 0.000, 1, 0, 1, NULL, '2017-08-20 13:35:45', '0000-00-00 00:00:00'),
(83, '17082010000034', 17288, 38929, 5.0000, 0.000, 0.000, 550.000, 25.000, 1, 0, 1, NULL, '2017-08-20 13:36:49', '0000-00-00 00:00:00'),
(84, '17082010000034', 17318, 38930, 3.0000, 0.000, 0.000, 360.000, 25.000, 1, 0, 1, NULL, '2017-08-20 13:36:49', '0000-00-00 00:00:00'),
(85, '17082010000035', 17242, 38908, 3.0000, 0.000, 0.000, 1560.000, 0.000, 1, 0, 1, NULL, '2017-08-20 14:03:32', '0000-00-00 00:00:00'),
(86, '17082010000036', 17244, 38916, 10.0000, 0.000, 0.000, 590.000, 0.000, 1, 0, 12, NULL, '2017-08-20 14:18:07', '0000-00-00 00:00:00'),
(87, '17082010000037', 17242, 38908, 1.0000, 0.000, 0.000, 520.000, 0.000, 1, 0, 1, NULL, '2017-08-20 16:56:02', '0000-00-00 00:00:00'),
(88, '17082010000038', 17242, 38908, 1.0000, 0.000, 0.000, 520.000, 0.000, 1, 0, 12, NULL, '2017-08-20 17:02:39', '0000-00-00 00:00:00'),
(89, '17082010000039', 17256, 38926, 1.0000, 0.000, 0.000, 120.000, 4.000, 1, 0, 12, NULL, '2017-08-20 17:02:49', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `itemsales` ENABLE KEYS */;
-- Dumping structure for table db_test.loangottens
CREATE TABLE IF NOT EXISTS `loangottens` (
`loan_gotten_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`company_person_name` text COLLATE utf8_unicode_ci NOT NULL COMMENT 'it can be person or company name',
`amount` double(12,3) NOT NULL,
`reasion` text COLLATE utf8_unicode_ci NOT NULL,
`comment` text COLLATE utf8_unicode_ci NOT NULL,
`date` date NOT NULL,
`pay_amount` double(12,3) NOT NULL DEFAULT '0.000' COMMENT 'will be update after each paid transaction',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '1=not paid, 0=paid',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `loan_gotten_id` (`loan_gotten_id`),
KEY `loangottens_loan_gotten_id_index` (`loan_gotten_id`),
KEY `loangottens_created_by_foreign` (`created_by`),
KEY `loangottens_updated_by_foreign` (`updated_by`),
CONSTRAINT `loangottens_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `loangottens_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.loangottens: ~0 rows (approximately)
/*!40000 ALTER TABLE `loangottens` DISABLE KEYS */;
/*!40000 ALTER TABLE `loangottens` ENABLE KEYS */;
-- Dumping structure for table db_test.loanpays
CREATE TABLE IF NOT EXISTS `loanpays` (
`loan_pay_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`company_person_name` text COLLATE utf8_unicode_ci NOT NULL COMMENT 'it can be person or company name',
`amount` double(12,3) NOT NULL,
`comment` text COLLATE utf8_unicode_ci NOT NULL,
`date` date NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '1=Active, 0=Inactive',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `loan_pay_id` (`loan_pay_id`),
KEY `loanpays_loan_pay_id_index` (`loan_pay_id`),
KEY `loanpays_created_by_foreign` (`created_by`),
KEY `loanpays_updated_by_foreign` (`updated_by`),
CONSTRAINT `loanpays_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `loanpays_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.loanpays: ~0 rows (approximately)
/*!40000 ALTER TABLE `loanpays` DISABLE KEYS */;
/*!40000 ALTER TABLE `loanpays` ENABLE KEYS */;
-- Dumping structure for table db_test.loanprovides
CREATE TABLE IF NOT EXISTS `loanprovides` (
`loan_provide_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`company_person_name` text COLLATE utf8_unicode_ci NOT NULL COMMENT 'it can be person or company name',
`amount` double(12,3) NOT NULL,
`reasion` text COLLATE utf8_unicode_ci NOT NULL,
`comment` text COLLATE utf8_unicode_ci NOT NULL,
`date` date NOT NULL,
`pay_amount` double(12,3) NOT NULL DEFAULT '0.000' COMMENT 'will be update after each paid transaction',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '1=not paid, 0=paid',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `loan_provide_id` (`loan_provide_id`),
KEY `loanprovides_loan_provide_id_index` (`loan_provide_id`),
KEY `loanprovides_created_by_foreign` (`created_by`),
KEY `loanprovides_updated_by_foreign` (`updated_by`),
CONSTRAINT `loanprovides_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `loanprovides_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.loanprovides: ~0 rows (approximately)
/*!40000 ALTER TABLE `loanprovides` DISABLE KEYS */;
/*!40000 ALTER TABLE `loanprovides` ENABLE KEYS */;
-- Dumping structure for table db_test.loanreceives
CREATE TABLE IF NOT EXISTS `loanreceives` (
`loan_receive_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`company_person_name` text COLLATE utf8_unicode_ci NOT NULL COMMENT 'it can be person or company name',
`amount` double(12,3) NOT NULL,
`comment` text COLLATE utf8_unicode_ci NOT NULL,
`date` date NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '1=Active, 0=Inactive',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `loan_receive_id` (`loan_receive_id`),
KEY `loanreceives_loan_receive_id_index` (`loan_receive_id`),
KEY `loanreceives_created_by_foreign` (`created_by`),
KEY `loanreceives_updated_by_foreign` (`updated_by`),
CONSTRAINT `loanreceives_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `loanreceives_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.loanreceives: ~0 rows (approximately)
/*!40000 ALTER TABLE `loanreceives` DISABLE KEYS */;
/*!40000 ALTER TABLE `loanreceives` ENABLE KEYS */;
-- Dumping structure for table db_test.migrations
CREATE TABLE IF NOT EXISTS `migrations` (
`migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.migrations: ~0 rows (approximately)
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
-- Dumping structure for table db_test.moduleemppermissions
CREATE TABLE IF NOT EXISTS `moduleemppermissions` (
`module_emp_p_id` int(11) NOT NULL AUTO_INCREMENT,
`module_id` int(10) unsigned NOT NULL,
`emp_id` int(10) unsigned NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`module_id`,`emp_id`),
UNIQUE KEY `module_emp_p_id` (`module_emp_p_id`),
KEY `moduleemppermissions_module_emp_p_id_index` (`module_emp_p_id`),
KEY `moduleemppermissions_emp_id_foreign` (`emp_id`),
KEY `moduleemppermissions_created_by_foreign` (`created_by`),
KEY `moduleemppermissions_updated_by_foreign` (`updated_by`),
CONSTRAINT `FK_moduleemppermissions_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_moduleemppermissions_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_moduleemppermissions_empinfos_3` FOREIGN KEY (`emp_id`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=133 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.moduleemppermissions: ~65 rows (approximately)
/*!40000 ALTER TABLE `moduleemppermissions` DISABLE KEYS */;
INSERT INTO `moduleemppermissions` (`module_emp_p_id`, `module_id`, `emp_id`, `status`, `year`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(1, 1, 1, 1, 0, 1, NULL, '2015-12-08 15:47:23', '0000-00-00 00:00:00'),
(117, 1, 8, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(2, 2, 1, 1, 0, 1, NULL, '2015-12-08 15:47:23', '0000-00-00 00:00:00'),
(3, 3, 1, 1, 0, 1, NULL, '2015-12-08 15:47:23', '0000-00-00 00:00:00'),
(118, 3, 8, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(127, 3, 11, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(130, 3, 12, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(4, 4, 1, 1, 0, 0, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(119, 4, 8, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(5, 5, 1, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(17, 5, 2, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(26, 5, 3, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(78, 5, 8, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(89, 5, 9, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(6, 6, 1, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(18, 6, 2, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(27, 6, 3, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(79, 6, 8, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(90, 6, 9, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(7, 7, 1, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(114, 7, 2, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(115, 7, 3, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(124, 7, 4, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(116, 7, 8, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(125, 7, 9, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(8, 8, 1, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(19, 8, 2, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(28, 8, 3, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(80, 8, 8, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(9, 9, 1, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(126, 9, 3, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(38, 9, 4, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(49, 9, 5, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(60, 9, 6, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(70, 9, 7, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(120, 9, 8, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(103, 9, 10, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(128, 9, 11, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(131, 9, 12, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(10, 12, 1, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(82, 12, 8, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(93, 12, 9, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(11, 15, 1, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(24, 15, 2, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(31, 15, 3, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(121, 15, 8, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(94, 15, 9, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(12, 16, 1, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(22, 16, 2, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(32, 16, 3, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(112, 16, 4, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(122, 16, 8, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(13, 17, 1, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(23, 17, 2, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(33, 17, 3, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(113, 17, 4, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(123, 17, 8, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(14, 18, 1, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(110, 18, 2, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(111, 18, 3, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(43, 18, 4, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(54, 18, 5, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(65, 18, 6, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(75, 18, 7, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(86, 18, 8, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(97, 18, 9, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(108, 18, 10, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(129, 18, 11, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(132, 18, 12, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(15, 19, 1, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(87, 19, 8, 1, 0, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `moduleemppermissions` ENABLE KEYS */;
-- Dumping structure for table db_test.modulenames
CREATE TABLE IF NOT EXISTS `modulenames` (
`module_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`module_name` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`module_url` text COLLATE utf8_unicode_ci NOT NULL,
`icon` text COLLATE utf8_unicode_ci NOT NULL,
`sorting` int(11) NOT NULL COMMENT 'For showing module with user define sequence',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `module_id` (`module_id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.modulenames: ~15 rows (approximately)
/*!40000 ALTER TABLE `modulenames` DISABLE KEYS */;
INSERT INTO `modulenames` (`module_id`, `module_name`, `module_url`, `icon`, `sorting`, `status`, `year`, `created_at`, `updated_at`) VALUES
(1, 'Permission', 'admin.permission', 'permission.png', 17, 1, 2015, '2015-02-19 18:11:23', '2015-02-19 18:11:23'),
(3, 'Dashboard', 'admin.dashboard', 'dashboard.png', 1, 0, 2015, '2015-02-19 18:11:23', '2015-02-19 18:11:23'),
(4, 'Employees', 'admin.EmployeeView', 'employees.png', 14, 1, 2015, '2015-02-19 18:11:23', '2015-02-19 18:11:23'),
(5, 'Items', 'admin.itemView', 'items.png', 2, 0, 2015, '2015-02-19 18:11:23', '2015-02-19 18:11:23'),
(6, 'Suppliers', 'admin.suppliers', 'suppliers.png', 4, 1, 2015, '2015-02-19 18:11:23', '2015-02-19 18:11:23'),
(7, 'Customers', 'admin.customer', 'customers.png', 5, 1, 2015, '2015-02-19 18:11:23', '2015-02-19 18:11:23'),
(8, 'Purchase', 'perchase.index', 'purchase.png', 6, 1, 2015, '2015-02-19 18:11:23', '2015-02-19 18:11:23'),
(9, 'Sales', 'sale.index', 'sales.png', 3, 1, 2015, '2015-02-19 18:11:23', '2015-02-19 18:11:23'),
(12, 'Reports', 'reports.index', 'reports.png', 10, 1, 2015, '2015-02-19 18:11:23', '2015-02-19 18:11:23'),
(14, 'Projects', 'projects', 'projects.png', 12, 1, 2015, '2015-02-19 18:11:23', '2015-02-19 18:11:23'),
(15, 'Setup', 'admin.setup', 'settings.png', 13, 1, 2015, '2015-02-19 18:11:23', '2015-02-19 18:11:23'),
(16, 'Sending', 'send', 'sending.png', 15, 1, 0, '2015-03-11 16:23:34', '0000-00-00 00:00:00'),
(17, 'Receiving', 'receive', 'receiving.png', 15, 1, 0, '2015-03-13 21:42:00', '0000-00-00 00:00:00'),
(18, 'Return', 'return.index', 'return.png', 16, 1, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(19, 'Others', 'other.index', 'other.png', 18, 1, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `modulenames` ENABLE KEYS */;
-- Dumping structure for table db_test.modulepermissions
CREATE TABLE IF NOT EXISTS `modulepermissions` (
`m_permission_id` int(11) NOT NULL AUTO_INCREMENT,
`module_id` int(10) unsigned NOT NULL,
`company_id` int(10) unsigned NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`module_id`,`company_id`),
UNIQUE KEY `m_permission_id` (`m_permission_id`),
KEY `modulepermissions_m_permission_id_index` (`m_permission_id`),
KEY `modulepermissions_company_id_foreign` (`company_id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.modulepermissions: ~14 rows (approximately)
/*!40000 ALTER TABLE `modulepermissions` DISABLE KEYS */;
INSERT INTO `modulepermissions` (`m_permission_id`, `module_id`, `company_id`, `status`, `year`, `created_at`, `updated_at`) VALUES
(6, 1, 1, 1, 2015, '2015-12-08 15:47:23', '0000-00-00 00:00:00'),
(2, 3, 1, 1, 2015, '2015-12-08 15:47:23', '0000-00-00 00:00:00'),
(3, 4, 1, 1, 2015, '2015-12-08 15:47:23', '0000-00-00 00:00:00'),
(4, 5, 1, 1, 2015, '2015-12-08 15:47:23', '0000-00-00 00:00:00'),
(14, 6, 1, 1, 2015, '2015-12-08 15:47:23', '0000-00-00 00:00:00'),
(1, 7, 1, 1, 2015, '2015-12-08 15:47:23', '0000-00-00 00:00:00'),
(7, 8, 1, 1, 2015, '2015-12-08 15:47:23', '0000-00-00 00:00:00'),
(11, 9, 1, 1, 2015, '2015-12-08 15:47:23', '0000-00-00 00:00:00'),
(9, 12, 1, 1, 2015, '2015-12-08 15:47:23', '0000-00-00 00:00:00'),
(13, 15, 1, 1, 2015, '2015-12-08 15:47:23', '0000-00-00 00:00:00'),
(12, 16, 1, 1, 2015, '2015-12-08 15:47:23', '0000-00-00 00:00:00'),
(8, 17, 1, 1, 2015, '2015-12-08 15:47:23', '0000-00-00 00:00:00'),
(10, 18, 1, 1, 2015, '2015-12-08 15:47:23', '0000-00-00 00:00:00'),
(5, 19, 1, 1, 2015, '2015-12-08 15:47:23', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `modulepermissions` ENABLE KEYS */;
-- Dumping structure for table db_test.otherexpenses
CREATE TABLE IF NOT EXISTS `otherexpenses` (
`other_expense_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`expense_type_id` int(10) unsigned NOT NULL,
`amount` double(12,3) NOT NULL,
`comment` text COLLATE utf8_unicode_ci NOT NULL,
`date` date NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '1=pending, 0=received',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `other_expense_id` (`other_expense_id`),
KEY `otherexpenses_other_expense_id_index` (`other_expense_id`),
KEY `otherexpenses_created_by_foreign` (`created_by`),
KEY `otherexpenses_updated_by_foreign` (`updated_by`),
KEY `FK_otherexpenses_incomeexpensetype` (`expense_type_id`),
CONSTRAINT `FK_otherexpenses_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_otherexpenses_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_otherexpenses_incomeexpensetype` FOREIGN KEY (`expense_type_id`) REFERENCES `incomeexpensetype` (`type_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.otherexpenses: ~0 rows (approximately)
/*!40000 ALTER TABLE `otherexpenses` DISABLE KEYS */;
/*!40000 ALTER TABLE `otherexpenses` ENABLE KEYS */;
-- Dumping structure for table db_test.otherincomes
CREATE TABLE IF NOT EXISTS `otherincomes` (
`other_income_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`income_type_id` int(11) unsigned NOT NULL,
`amount` double(12,3) NOT NULL,
`comment` text COLLATE utf8_unicode_ci NOT NULL,
`date` date NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '1=pending, 0=received',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `other_income_id` (`other_income_id`),
KEY `otherincomes_other_income_id_index` (`other_income_id`),
KEY `otherincomes_created_by_foreign` (`created_by`),
KEY `otherincomes_updated_by_foreign` (`updated_by`),
KEY `FK_otherincomes_incomeexpensetype` (`income_type_id`),
CONSTRAINT `FK_otherincomes_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_otherincomes_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_otherincomes_incomeexpensetype` FOREIGN KEY (`income_type_id`) REFERENCES `incomeexpensetype` (`type_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.otherincomes: ~0 rows (approximately)
/*!40000 ALTER TABLE `otherincomes` DISABLE KEYS */;
/*!40000 ALTER TABLE `otherincomes` ENABLE KEYS */;
-- Dumping structure for table db_test.paymenttypes
CREATE TABLE IF NOT EXISTS `paymenttypes` (
`payment_type_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`payment_type_name` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `payment_type_id` (`payment_type_id`),
UNIQUE KEY `paymenttypes_payment_type_name_unique` (`payment_type_name`),
KEY `paymenttypes_payment_type_id_index` (`payment_type_id`),
KEY `paymenttypes_created_by_foreign` (`created_by`),
KEY `paymenttypes_updated_by_foreign` (`updated_by`),
CONSTRAINT `FK_paymenttypes_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_paymenttypes_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.paymenttypes: ~3 rows (approximately)
/*!40000 ALTER TABLE `paymenttypes` DISABLE KEYS */;
INSERT INTO `paymenttypes` (`payment_type_id`, `payment_type_name`, `status`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(1, 'Cash', 1, 1, NULL, '2015-04-28 07:00:00', '0000-00-00 00:00:00'),
(2, 'Debit Card', 1, 1, NULL, '2015-04-28 15:00:00', '0000-00-00 00:00:00'),
(3, 'Credit Card', 1, 1, NULL, '2015-04-28 13:35:00', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `paymenttypes` ENABLE KEYS */;
-- Dumping structure for table db_test.pointincreasingrecords
CREATE TABLE IF NOT EXISTS `pointincreasingrecords` (
`point_increasing_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`cus_id` int(10) unsigned NOT NULL,
`no_of_point` int(11) NOT NULL,
`sale_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`date` date NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '1=Active, 0=Inactive',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `point_increasing_id` (`point_increasing_id`),
KEY `pointincreasingrecords_point_increasing_id_index` (`point_increasing_id`),
KEY `pointincreasingrecords_cus_id_foreign` (`cus_id`),
KEY `pointincreasingrecords_sale_invoice_id_foreign` (`sale_invoice_id`),
KEY `pointincreasingrecords_created_by_foreign` (`created_by`),
KEY `pointincreasingrecords_updated_by_foreign` (`updated_by`),
CONSTRAINT `FK_pointincreasingrecords_customerinfos` FOREIGN KEY (`cus_id`) REFERENCES `customerinfos` (`cus_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_pointincreasingrecords_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_pointincreasingrecords_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_pointincreasingrecords_saleinvoices` FOREIGN KEY (`sale_invoice_id`) REFERENCES `saleinvoices` (`sale_invoice_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.pointincreasingrecords: ~0 rows (approximately)
/*!40000 ALTER TABLE `pointincreasingrecords` DISABLE KEYS */;
/*!40000 ALTER TABLE `pointincreasingrecords` ENABLE KEYS */;
-- Dumping structure for table db_test.pointusingrecords
CREATE TABLE IF NOT EXISTS `pointusingrecords` (
`point_using_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`cus_id` int(10) unsigned NOT NULL,
`use_point` int(11) NOT NULL,
`point_taka` int(11) NOT NULL,
`benifited_way` int(11) NOT NULL DEFAULT '1' COMMENT '1=on item, 0=hand cash',
`sale_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`date` date NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '1=Active, 0=Inactive',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `point_using_id` (`point_using_id`),
KEY `pointusingrecords_point_using_id_index` (`point_using_id`),
KEY `pointusingrecords_cus_id_foreign` (`cus_id`),
KEY `pointusingrecords_sale_invoice_id_foreign` (`sale_invoice_id`),
KEY `pointusingrecords_created_by_foreign` (`created_by`),
KEY `pointusingrecords_updated_by_foreign` (`updated_by`),
CONSTRAINT `FK_pointusingrecords_customerinfos` FOREIGN KEY (`cus_id`) REFERENCES `customerinfos` (`cus_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_pointusingrecords_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_pointusingrecords_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_pointusingrecords_saleinvoices` FOREIGN KEY (`sale_invoice_id`) REFERENCES `saleinvoices` (`sale_invoice_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.pointusingrecords: ~0 rows (approximately)
/*!40000 ALTER TABLE `pointusingrecords` DISABLE KEYS */;
/*!40000 ALTER TABLE `pointusingrecords` ENABLE KEYS */;
-- Dumping structure for table db_test.priceinfos
CREATE TABLE IF NOT EXISTS `priceinfos` (
`price_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL,
`purchase_price` double(12,2) NOT NULL,
`sale_price` double(12,2) NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`item_id`,`purchase_price`,`sale_price`),
UNIQUE KEY `price_id` (`price_id`),
KEY `priceinfos_price_id_index` (`price_id`),
KEY `priceinfos_created_by_foreign` (`created_by`),
KEY `priceinfos_updated_by_foreign` (`updated_by`),
CONSTRAINT `FK_priceinfos_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_priceinfos_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_priceinfos_iteminfos` FOREIGN KEY (`item_id`) REFERENCES `iteminfos` (`item_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=38934 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.priceinfos: ~2,468 rows (approximately)
/*!40000 ALTER TABLE `priceinfos` DISABLE KEYS */;
INSERT INTO `priceinfos` (`price_id`, `item_id`, `purchase_price`, `sale_price`, `status`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(36404, 17241, 0.00, 0.00, 0, 1, NULL, '2017-08-09 06:03:57', '0000-00-00 00:00:00'),
(38883, 17241, 100.00, 110.00, 0, 1, NULL, '2017-08-13 17:05:31', '0000-00-00 00:00:00'),
(38928, 17241, 100.00, 120.00, 0, 1, NULL, '2017-08-20 07:49:13', '0000-00-00 00:00:00'),
(38927, 17241, 110.00, 120.00, 1, 1, NULL, '2017-08-20 07:49:07', '0000-00-00 00:00:00'),
(36405, 17242, 0.00, 0.00, 0, 1, NULL, '2017-08-09 07:38:55', '0000-00-00 00:00:00'),
(38908, 17242, 500.00, 520.00, 1, 1, NULL, '2017-08-13 17:40:02', '0000-00-00 00:00:00'),
(36406, 17243, 0.00, 0.00, 0, 1, NULL, '2017-08-09 07:53:48', '0000-00-00 00:00:00'),
(38884, 17243, 20.00, 25.00, 1, 1, NULL, '2017-08-13 17:05:31', '0000-00-00 00:00:00'),
(36407, 17244, 0.00, 0.00, 0, 1, NULL, '2017-08-09 07:55:45', '0000-00-00 00:00:00'),
(38916, 17244, 55.00, 59.00, 1, 1, NULL, '2017-08-13 23:44:32', '0000-00-00 00:00:00'),
(36408, 17245, 0.00, 0.00, 0, 1, NULL, '2017-08-09 07:57:22', '0000-00-00 00:00:00'),
(38918, 17245, 100.00, 150.00, 1, 1, NULL, '2017-08-13 23:44:32', '0000-00-00 00:00:00'),
(36409, 17246, 0.00, 0.00, 0, 1, NULL, '2017-08-09 08:00:19', '0000-00-00 00:00:00'),
(38917, 17246, 50.00, 55.00, 1, 1, NULL, '2017-08-13 23:44:32', '0000-00-00 00:00:00'),
(36410, 17247, 0.00, 0.00, 0, 1, NULL, '2017-08-09 08:01:31', '0000-00-00 00:00:00'),
(38915, 17247, 50.00, 55.00, 1, 1, NULL, '2017-08-13 23:40:10', '0000-00-00 00:00:00'),
(36411, 17248, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:02:53', '0000-00-00 00:00:00'),
(36412, 17249, 0.00, 0.00, 0, 1, NULL, '2017-08-09 08:03:42', '0000-00-00 00:00:00'),
(38919, 17249, 100.00, 110.00, 1, 1, NULL, '2017-08-13 23:45:02', '0000-00-00 00:00:00'),
(36413, 17251, 0.00, 0.00, 0, 1, NULL, '2017-08-09 08:05:30', '0000-00-00 00:00:00'),
(38909, 17251, 100.00, 120.00, 1, 1, NULL, '2017-08-13 17:40:02', '0000-00-00 00:00:00'),
(36414, 17253, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:06:33', '0000-00-00 00:00:00'),
(36415, 17254, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:07:12', '0000-00-00 00:00:00'),
(36416, 17255, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:10:27', '0000-00-00 00:00:00'),
(36417, 17256, 0.00, 0.00, 0, 1, NULL, '2017-08-09 08:11:04', '0000-00-00 00:00:00'),
(38926, 17256, 100.00, 120.00, 1, 1, NULL, '2017-08-14 01:19:35', '0000-00-00 00:00:00'),
(36418, 17257, 0.00, 0.00, 0, 1, NULL, '2017-08-09 08:12:06', '0000-00-00 00:00:00'),
(38920, 17257, 100.00, 120.00, 1, 1, NULL, '2017-08-13 23:45:02', '0000-00-00 00:00:00'),
(36419, 17258, 0.00, 0.00, 0, 1, NULL, '2017-08-09 08:12:41', '0000-00-00 00:00:00'),
(38922, 17258, 100.00, 110.00, 1, 1, NULL, '2017-08-13 23:49:27', '0000-00-00 00:00:00'),
(36420, 17259, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:13:07', '0000-00-00 00:00:00'),
(36421, 17260, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:14:03', '0000-00-00 00:00:00'),
(36422, 17261, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:14:33', '0000-00-00 00:00:00'),
(36423, 17262, 0.00, 0.00, 0, 1, NULL, '2017-08-09 08:14:40', '0000-00-00 00:00:00'),
(38904, 17262, 100.00, 110.00, 1, 1, NULL, '2017-08-13 17:36:22', '0000-00-00 00:00:00'),
(36424, 17263, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:15:03', '0000-00-00 00:00:00'),
(36425, 17264, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:16:34', '0000-00-00 00:00:00'),
(36426, 17265, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:17:34', '0000-00-00 00:00:00'),
(36428, 17268, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:23:59', '0000-00-00 00:00:00'),
(36429, 17269, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:25:13', '0000-00-00 00:00:00'),
(36430, 17270, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:26:15', '0000-00-00 00:00:00'),
(36431, 17271, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:27:01', '0000-00-00 00:00:00'),
(36432, 17272, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:27:47', '0000-00-00 00:00:00'),
(36433, 17273, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:28:06', '0000-00-00 00:00:00'),
(36434, 17274, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:29:37', '0000-00-00 00:00:00'),
(36435, 17275, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:30:04', '0000-00-00 00:00:00'),
(36436, 17276, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:31:00', '0000-00-00 00:00:00'),
(36437, 17277, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:31:14', '0000-00-00 00:00:00'),
(36438, 17278, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:32:42', '0000-00-00 00:00:00'),
(36439, 17279, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:32:59', '0000-00-00 00:00:00'),
(36440, 17280, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:33:02', '0000-00-00 00:00:00'),
(36441, 17281, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:33:23', '0000-00-00 00:00:00'),
(36442, 17282, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:33:56', '0000-00-00 00:00:00'),
(36443, 17283, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:35:04', '0000-00-00 00:00:00'),
(36444, 17284, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:35:17', '0000-00-00 00:00:00'),
(36445, 17285, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:35:35', '0000-00-00 00:00:00'),
(36446, 17286, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:36:06', '0000-00-00 00:00:00'),
(36447, 17287, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:37:30', '0000-00-00 00:00:00'),
(36448, 17288, 0.00, 0.00, 0, 1, NULL, '2017-08-09 08:37:32', '0000-00-00 00:00:00'),
(38929, 17288, 100.00, 110.00, 1, 1, NULL, '2017-08-20 11:07:12', '0000-00-00 00:00:00'),
(36449, 17289, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:38:10', '0000-00-00 00:00:00'),
(36450, 17290, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:38:16', '0000-00-00 00:00:00'),
(36451, 17291, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:38:50', '0000-00-00 00:00:00'),
(36452, 17292, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:39:20', '0000-00-00 00:00:00'),
(36453, 17293, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:40:06', '0000-00-00 00:00:00'),
(36454, 17294, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:40:09', '0000-00-00 00:00:00'),
(36455, 17295, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:40:55', '0000-00-00 00:00:00'),
(36456, 17296, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:41:52', '0000-00-00 00:00:00'),
(36457, 17297, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:42:13', '0000-00-00 00:00:00'),
(36458, 17298, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:43:08', '0000-00-00 00:00:00'),
(36459, 17299, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:43:11', '0000-00-00 00:00:00'),
(36460, 17300, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:43:52', '0000-00-00 00:00:00'),
(36461, 17301, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:44:45', '0000-00-00 00:00:00'),
(36462, 17302, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:45:00', '0000-00-00 00:00:00'),
(36463, 17303, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:45:44', '0000-00-00 00:00:00'),
(36464, 17304, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:46:23', '0000-00-00 00:00:00'),
(36465, 17305, 0.00, 0.00, 0, 1, NULL, '2017-08-09 08:47:02', '0000-00-00 00:00:00'),
(38923, 17305, 20.00, 25.00, 1, 1, NULL, '2017-08-13 23:53:09', '0000-00-00 00:00:00'),
(36466, 17306, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:47:05', '0000-00-00 00:00:00'),
(36467, 17307, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:47:35', '0000-00-00 00:00:00'),
(36468, 17308, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:47:43', '0000-00-00 00:00:00'),
(36469, 17309, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:48:36', '0000-00-00 00:00:00'),
(36470, 17310, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:48:47', '0000-00-00 00:00:00'),
(36471, 17311, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:50:45', '0000-00-00 00:00:00'),
(36472, 17312, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:51:56', '0000-00-00 00:00:00'),
(36473, 17313, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:52:35', '0000-00-00 00:00:00'),
(36474, 17314, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:53:21', '0000-00-00 00:00:00'),
(36475, 17315, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:53:33', '0000-00-00 00:00:00'),
(36476, 17316, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:55:56', '0000-00-00 00:00:00'),
(36477, 17317, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:57:08', '0000-00-00 00:00:00'),
(36478, 17318, 0.00, 0.00, 0, 1, NULL, '2017-08-09 08:57:35', '0000-00-00 00:00:00'),
(38930, 17318, 100.00, 120.00, 1, 1, NULL, '2017-08-20 11:07:12', '0000-00-00 00:00:00'),
(36479, 17319, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:57:47', '0000-00-00 00:00:00'),
(36480, 17320, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:58:52', '0000-00-00 00:00:00'),
(36481, 17321, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:58:57', '0000-00-00 00:00:00'),
(36482, 17322, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:59:47', '0000-00-00 00:00:00'),
(36483, 17323, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:59:51', '0000-00-00 00:00:00'),
(36484, 17324, 0.00, 0.00, 1, 1, NULL, '2017-08-09 08:59:58', '0000-00-00 00:00:00'),
(36485, 17325, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:00:26', '0000-00-00 00:00:00'),
(36486, 17326, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:01:03', '0000-00-00 00:00:00'),
(36487, 17327, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:01:42', '0000-00-00 00:00:00'),
(36488, 17328, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:02:16', '0000-00-00 00:00:00'),
(36489, 17329, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:03:23', '0000-00-00 00:00:00'),
(36490, 17330, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:04:02', '0000-00-00 00:00:00'),
(36491, 17331, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:04:49', '0000-00-00 00:00:00'),
(36492, 17332, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:05:52', '0000-00-00 00:00:00'),
(36493, 17333, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:06:25', '0000-00-00 00:00:00'),
(36494, 17334, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:07:28', '0000-00-00 00:00:00'),
(36495, 17335, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:07:57', '0000-00-00 00:00:00'),
(36496, 17336, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:08:31', '0000-00-00 00:00:00'),
(36497, 17337, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:12:18', '0000-00-00 00:00:00'),
(36498, 17338, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:13:55', '0000-00-00 00:00:00'),
(36499, 17339, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:14:16', '0000-00-00 00:00:00'),
(36500, 17340, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:14:56', '0000-00-00 00:00:00'),
(36501, 17341, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:27:29', '0000-00-00 00:00:00'),
(36502, 17342, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:28:10', '0000-00-00 00:00:00'),
(36503, 17343, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:30:42', '0000-00-00 00:00:00'),
(36504, 17344, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:31:44', '0000-00-00 00:00:00'),
(36505, 17345, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:32:12', '0000-00-00 00:00:00'),
(36506, 17346, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:39:45', '0000-00-00 00:00:00'),
(36507, 17347, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:39:52', '0000-00-00 00:00:00'),
(36508, 17348, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:41:34', '0000-00-00 00:00:00'),
(36509, 17349, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:41:45', '0000-00-00 00:00:00'),
(36510, 17350, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:41:55', '0000-00-00 00:00:00'),
(36511, 17351, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:42:45', '0000-00-00 00:00:00'),
(36512, 17352, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:43:05', '0000-00-00 00:00:00'),
(36513, 17354, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:44:17', '0000-00-00 00:00:00'),
(36514, 17355, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:45:01', '0000-00-00 00:00:00'),
(36515, 17356, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:45:07', '0000-00-00 00:00:00'),
(36516, 17357, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:45:34', '0000-00-00 00:00:00'),
(36517, 17358, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:46:37', '0000-00-00 00:00:00'),
(36518, 17359, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:47:39', '0000-00-00 00:00:00'),
(36519, 17360, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:47:57', '0000-00-00 00:00:00'),
(36520, 17361, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:48:02', '0000-00-00 00:00:00'),
(36521, 17362, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:49:05', '0000-00-00 00:00:00'),
(36522, 17363, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:49:29', '0000-00-00 00:00:00'),
(36523, 17364, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:49:55', '0000-00-00 00:00:00'),
(36524, 17365, 0.00, 0.00, 1, 1, NULL, '2017-08-09 09:51:32', '0000-00-00 00:00:00'),
(36525, 17366, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:02:37', '0000-00-00 00:00:00'),
(36526, 17367, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:04:36', '0000-00-00 00:00:00'),
(36527, 17368, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:10:16', '0000-00-00 00:00:00'),
(36528, 17369, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:19:02', '0000-00-00 00:00:00'),
(36529, 17370, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:20:27', '0000-00-00 00:00:00'),
(36530, 17371, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:22:02', '0000-00-00 00:00:00'),
(36531, 17372, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:23:07', '0000-00-00 00:00:00'),
(36532, 17373, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:24:29', '0000-00-00 00:00:00'),
(36533, 17374, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:25:23', '0000-00-00 00:00:00'),
(36534, 17375, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:26:32', '0000-00-00 00:00:00'),
(36535, 17376, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:31:52', '0000-00-00 00:00:00'),
(36536, 17377, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:34:28', '0000-00-00 00:00:00'),
(36537, 17378, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:35:09', '0000-00-00 00:00:00'),
(36538, 17379, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:36:06', '0000-00-00 00:00:00'),
(36539, 17380, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:37:01', '0000-00-00 00:00:00'),
(36540, 17381, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:38:12', '0000-00-00 00:00:00'),
(36541, 17382, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:40:53', '0000-00-00 00:00:00'),
(36542, 17383, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:42:40', '0000-00-00 00:00:00'),
(36543, 17384, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:46:02', '0000-00-00 00:00:00'),
(36544, 17385, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:46:10', '0000-00-00 00:00:00'),
(36545, 17387, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:47:38', '0000-00-00 00:00:00'),
(36546, 17388, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:48:50', '0000-00-00 00:00:00'),
(36547, 17389, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:51:38', '0000-00-00 00:00:00'),
(36548, 17391, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:56:32', '0000-00-00 00:00:00'),
(36549, 17392, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:57:26', '0000-00-00 00:00:00'),
(36550, 17393, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:57:27', '0000-00-00 00:00:00'),
(36551, 17394, 0.00, 0.00, 1, 1, NULL, '2017-08-09 10:58:23', '0000-00-00 00:00:00'),
(36552, 17395, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:00:52', '0000-00-00 00:00:00'),
(36553, 17396, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:02:43', '0000-00-00 00:00:00'),
(36554, 17397, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:03:09', '0000-00-00 00:00:00'),
(36555, 17398, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:04:50', '0000-00-00 00:00:00'),
(36556, 17399, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:06:13', '0000-00-00 00:00:00'),
(36557, 17400, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:07:53', '0000-00-00 00:00:00'),
(36558, 17401, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:08:22', '0000-00-00 00:00:00'),
(36559, 17402, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:09:20', '0000-00-00 00:00:00'),
(36560, 17403, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:09:53', '0000-00-00 00:00:00'),
(36561, 17404, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:10:22', '0000-00-00 00:00:00'),
(36562, 17405, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:18:38', '0000-00-00 00:00:00'),
(36563, 17406, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:21:12', '0000-00-00 00:00:00'),
(36564, 17407, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:37:35', '0000-00-00 00:00:00'),
(36565, 17408, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:41:54', '0000-00-00 00:00:00'),
(36566, 17409, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:42:06', '0000-00-00 00:00:00'),
(36567, 17410, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:45:57', '0000-00-00 00:00:00'),
(36568, 17411, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:47:27', '0000-00-00 00:00:00'),
(36569, 17412, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:48:45', '0000-00-00 00:00:00'),
(36570, 17413, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:49:46', '0000-00-00 00:00:00'),
(36571, 17414, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:50:09', '0000-00-00 00:00:00'),
(36572, 17415, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:51:15', '0000-00-00 00:00:00'),
(36573, 17416, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:52:05', '0000-00-00 00:00:00'),
(36574, 17417, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:53:42', '0000-00-00 00:00:00'),
(36575, 17418, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:53:52', '0000-00-00 00:00:00'),
(36576, 17419, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:54:59', '0000-00-00 00:00:00'),
(36577, 17420, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:56:11', '0000-00-00 00:00:00'),
(36578, 17421, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:56:25', '0000-00-00 00:00:00'),
(36579, 17422, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:57:20', '0000-00-00 00:00:00'),
(36580, 17423, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:58:29', '0000-00-00 00:00:00'),
(36581, 17424, 0.00, 0.00, 1, 1, NULL, '2017-08-09 11:58:32', '0000-00-00 00:00:00'),
(36582, 17425, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:00:14', '0000-00-00 00:00:00'),
(36583, 17426, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:00:19', '0000-00-00 00:00:00'),
(36584, 17427, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:01:04', '0000-00-00 00:00:00'),
(36585, 17428, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:01:56', '0000-00-00 00:00:00'),
(36586, 17429, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:03:11', '0000-00-00 00:00:00'),
(36587, 17430, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:03:14', '0000-00-00 00:00:00'),
(36588, 17431, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:04:40', '0000-00-00 00:00:00'),
(36589, 17432, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:04:41', '0000-00-00 00:00:00'),
(36590, 17433, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:05:59', '0000-00-00 00:00:00'),
(36591, 17434, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:07:27', '0000-00-00 00:00:00'),
(36592, 17435, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:08:43', '0000-00-00 00:00:00'),
(36593, 17436, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:09:49', '0000-00-00 00:00:00'),
(36594, 17437, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:10:07', '0000-00-00 00:00:00'),
(36595, 17438, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:13:07', '0000-00-00 00:00:00'),
(36596, 17439, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:14:33', '0000-00-00 00:00:00'),
(36597, 17440, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:16:50', '0000-00-00 00:00:00'),
(36598, 17441, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:16:57', '0000-00-00 00:00:00'),
(36599, 17442, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:18:37', '0000-00-00 00:00:00'),
(36600, 17443, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:20:12', '0000-00-00 00:00:00'),
(36601, 17444, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:20:46', '0000-00-00 00:00:00'),
(36602, 17445, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:21:49', '0000-00-00 00:00:00'),
(36603, 17446, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:21:58', '0000-00-00 00:00:00'),
(36604, 17447, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:22:52', '0000-00-00 00:00:00'),
(36605, 17448, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:23:47', '0000-00-00 00:00:00'),
(36606, 17449, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:24:27', '0000-00-00 00:00:00'),
(36607, 17450, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:25:51', '0000-00-00 00:00:00'),
(36608, 17451, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:26:00', '0000-00-00 00:00:00'),
(36609, 17452, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:26:51', '0000-00-00 00:00:00'),
(36610, 17453, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:26:53', '0000-00-00 00:00:00'),
(36611, 17454, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:27:41', '0000-00-00 00:00:00'),
(36612, 17455, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:28:49', '0000-00-00 00:00:00'),
(36613, 17456, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:29:38', '0000-00-00 00:00:00'),
(36614, 17457, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:29:58', '0000-00-00 00:00:00'),
(36615, 17458, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:31:51', '0000-00-00 00:00:00'),
(36616, 17459, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:32:56', '0000-00-00 00:00:00'),
(36617, 17460, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:34:11', '0000-00-00 00:00:00'),
(36618, 17461, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:34:18', '0000-00-00 00:00:00'),
(36619, 17462, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:35:11', '0000-00-00 00:00:00'),
(36620, 17463, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:36:30', '0000-00-00 00:00:00'),
(36621, 17464, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:39:15', '0000-00-00 00:00:00'),
(36622, 17465, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:39:21', '0000-00-00 00:00:00'),
(36623, 17466, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:40:19', '0000-00-00 00:00:00'),
(36624, 17467, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:42:16', '0000-00-00 00:00:00'),
(36625, 17468, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:42:21', '0000-00-00 00:00:00'),
(36626, 17469, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:43:35', '0000-00-00 00:00:00'),
(36627, 17470, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:43:49', '0000-00-00 00:00:00'),
(36628, 17471, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:44:56', '0000-00-00 00:00:00'),
(36629, 17472, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:46:41', '0000-00-00 00:00:00'),
(36630, 17473, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:48:23', '0000-00-00 00:00:00'),
(36631, 17474, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:48:44', '0000-00-00 00:00:00'),
(36632, 17475, 0.00, 0.00, 1, 1, NULL, '2017-08-09 12:52:19', '0000-00-00 00:00:00'),
(36633, 17476, 0.00, 0.00, 1, 1, NULL, '2017-08-09 23:36:46', '0000-00-00 00:00:00'),
(36634, 17477, 0.00, 0.00, 1, 1, NULL, '2017-08-09 23:39:22', '0000-00-00 00:00:00'),
(36635, 17478, 0.00, 0.00, 1, 1, NULL, '2017-08-09 23:40:32', '0000-00-00 00:00:00'),
(36636, 17479, 0.00, 0.00, 1, 1, NULL, '2017-08-09 23:42:05', '0000-00-00 00:00:00'),
(36637, 17480, 0.00, 0.00, 1, 1, NULL, '2017-08-09 23:42:29', '0000-00-00 00:00:00'),
(36638, 17481, 0.00, 0.00, 1, 1, NULL, '2017-08-09 23:43:44', '0000-00-00 00:00:00'),
(36639, 17482, 0.00, 0.00, 1, 1, NULL, '2017-08-09 23:43:54', '0000-00-00 00:00:00'),
(36640, 17483, 0.00, 0.00, 1, 1, NULL, '2017-08-09 23:46:15', '0000-00-00 00:00:00'),
(36641, 17484, 0.00, 0.00, 1, 1, NULL, '2017-08-09 23:46:33', '0000-00-00 00:00:00'),
(36642, 17485, 0.00, 0.00, 1, 1, NULL, '2017-08-09 23:47:24', '0000-00-00 00:00:00'),
(36643, 17486, 0.00, 0.00, 1, 1, NULL, '2017-08-09 23:48:03', '0000-00-00 00:00:00'),
(36644, 17487, 0.00, 0.00, 1, 1, NULL, '2017-08-09 23:48:33', '0000-00-00 00:00:00'),
(36645, 17488, 0.00, 0.00, 1, 1, NULL, '2017-08-09 23:56:25', '0000-00-00 00:00:00'),
(36646, 17489, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:03:36', '0000-00-00 00:00:00'),
(36647, 17490, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:06:16', '0000-00-00 00:00:00'),
(36648, 17491, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:06:59', '0000-00-00 00:00:00'),
(36649, 17492, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:08:08', '0000-00-00 00:00:00'),
(36650, 17493, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:09:38', '0000-00-00 00:00:00'),
(36651, 17494, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:13:22', '0000-00-00 00:00:00'),
(36652, 17495, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:16:55', '0000-00-00 00:00:00'),
(36653, 17496, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:18:18', '0000-00-00 00:00:00'),
(36654, 17498, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:19:32', '0000-00-00 00:00:00'),
(36655, 17499, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:19:54', '0000-00-00 00:00:00'),
(36656, 17501, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:20:28', '0000-00-00 00:00:00'),
(36657, 17502, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:21:41', '0000-00-00 00:00:00'),
(36658, 17504, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:21:44', '0000-00-00 00:00:00'),
(36659, 17505, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:22:38', '0000-00-00 00:00:00'),
(36660, 17506, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:22:42', '0000-00-00 00:00:00'),
(36661, 17507, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:25:27', '0000-00-00 00:00:00'),
(36662, 17508, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:25:34', '0000-00-00 00:00:00'),
(36663, 17509, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:27:41', '0000-00-00 00:00:00'),
(36664, 17510, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:27:42', '0000-00-00 00:00:00'),
(36665, 17512, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:29:08', '0000-00-00 00:00:00'),
(36666, 17513, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:29:31', '0000-00-00 00:00:00'),
(36667, 17514, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:30:32', '0000-00-00 00:00:00'),
(36668, 17515, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:32:04', '0000-00-00 00:00:00'),
(36669, 17516, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:33:23', '0000-00-00 00:00:00'),
(36670, 17517, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:34:20', '0000-00-00 00:00:00'),
(36671, 17518, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:35:52', '0000-00-00 00:00:00'),
(36672, 17519, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:36:40', '0000-00-00 00:00:00'),
(36673, 17520, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:39:33', '0000-00-00 00:00:00'),
(36674, 17521, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:40:17', '0000-00-00 00:00:00'),
(36675, 17522, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:40:39', '0000-00-00 00:00:00'),
(36676, 17523, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:42:04', '0000-00-00 00:00:00'),
(36677, 17524, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:43:26', '0000-00-00 00:00:00'),
(36678, 17525, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:43:33', '0000-00-00 00:00:00'),
(36679, 17526, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:45:51', '0000-00-00 00:00:00'),
(36680, 17527, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:46:37', '0000-00-00 00:00:00'),
(36681, 17528, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:47:51', '0000-00-00 00:00:00'),
(36682, 17529, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:50:04', '0000-00-00 00:00:00'),
(36683, 17530, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:50:55', '0000-00-00 00:00:00'),
(36684, 17531, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:51:07', '0000-00-00 00:00:00'),
(36685, 17532, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:52:50', '0000-00-00 00:00:00'),
(36686, 17533, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:55:25', '0000-00-00 00:00:00'),
(36687, 17534, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:56:07', '0000-00-00 00:00:00'),
(36688, 17535, 0.00, 0.00, 1, 1, NULL, '2017-08-10 00:58:11', '0000-00-00 00:00:00'),
(36689, 17536, 0.00, 0.00, 0, 1, NULL, '2017-08-10 01:00:29', '0000-00-00 00:00:00'),
(38903, 17536, 100.00, 120.00, 1, 1, NULL, '2017-08-13 17:36:22', '0000-00-00 00:00:00'),
(36690, 17537, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:00:50', '0000-00-00 00:00:00'),
(36691, 17538, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:05:01', '0000-00-00 00:00:00'),
(36692, 17539, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:05:23', '0000-00-00 00:00:00'),
(36693, 17540, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:06:20', '0000-00-00 00:00:00'),
(36694, 17541, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:06:27', '0000-00-00 00:00:00'),
(36695, 17542, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:08:01', '0000-00-00 00:00:00'),
(36696, 17543, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:09:25', '0000-00-00 00:00:00'),
(36697, 17544, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:09:26', '0000-00-00 00:00:00'),
(36698, 17545, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:09:34', '0000-00-00 00:00:00'),
(36699, 17546, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:10:22', '0000-00-00 00:00:00'),
(36700, 17547, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:10:49', '0000-00-00 00:00:00'),
(36701, 17548, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:10:53', '0000-00-00 00:00:00'),
(36702, 17549, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:11:22', '0000-00-00 00:00:00'),
(36703, 17550, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:11:26', '0000-00-00 00:00:00'),
(36704, 17551, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:12:18', '0000-00-00 00:00:00'),
(36705, 17552, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:12:31', '0000-00-00 00:00:00'),
(36706, 17553, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:12:54', '0000-00-00 00:00:00'),
(36707, 17554, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:13:35', '0000-00-00 00:00:00'),
(36708, 17555, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:14:22', '0000-00-00 00:00:00'),
(36709, 17556, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:14:30', '0000-00-00 00:00:00'),
(36710, 17557, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:15:59', '0000-00-00 00:00:00'),
(36711, 17558, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:16:27', '0000-00-00 00:00:00'),
(36712, 17559, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:18:01', '0000-00-00 00:00:00'),
(36713, 17560, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:18:19', '0000-00-00 00:00:00'),
(36714, 17561, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:18:24', '0000-00-00 00:00:00'),
(36715, 17562, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:19:12', '0000-00-00 00:00:00'),
(36716, 17563, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:20:13', '0000-00-00 00:00:00'),
(36717, 17564, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:21:15', '0000-00-00 00:00:00'),
(36718, 17565, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:21:44', '0000-00-00 00:00:00'),
(36719, 17566, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:21:59', '0000-00-00 00:00:00'),
(36720, 17567, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:22:04', '0000-00-00 00:00:00'),
(36721, 17568, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:22:46', '0000-00-00 00:00:00'),
(36722, 17569, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:22:52', '0000-00-00 00:00:00'),
(36723, 17570, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:23:21', '0000-00-00 00:00:00'),
(36724, 17571, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:24:13', '0000-00-00 00:00:00'),
(36725, 17572, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:25:38', '0000-00-00 00:00:00'),
(36726, 17573, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:26:09', '0000-00-00 00:00:00'),
(36727, 17574, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:26:53', '0000-00-00 00:00:00'),
(36728, 17575, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:27:12', '0000-00-00 00:00:00'),
(36729, 17576, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:28:04', '0000-00-00 00:00:00'),
(36730, 17577, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:28:20', '0000-00-00 00:00:00'),
(36731, 17578, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:28:50', '0000-00-00 00:00:00'),
(36732, 17579, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:28:58', '0000-00-00 00:00:00'),
(36733, 17580, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:29:21', '0000-00-00 00:00:00'),
(36734, 17582, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:29:44', '0000-00-00 00:00:00'),
(36735, 17583, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:30:39', '0000-00-00 00:00:00'),
(36736, 17584, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:30:43', '0000-00-00 00:00:00'),
(36737, 17585, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:31:38', '0000-00-00 00:00:00'),
(36738, 17586, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:31:57', '0000-00-00 00:00:00'),
(36739, 17587, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:32:07', '0000-00-00 00:00:00'),
(36740, 17588, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:33:03', '0000-00-00 00:00:00'),
(36741, 17589, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:33:08', '0000-00-00 00:00:00'),
(36742, 17590, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:33:44', '0000-00-00 00:00:00'),
(36743, 17591, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:34:07', '0000-00-00 00:00:00'),
(36744, 17592, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:34:50', '0000-00-00 00:00:00'),
(36745, 17593, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:35:21', '0000-00-00 00:00:00'),
(36746, 17594, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:35:31', '0000-00-00 00:00:00'),
(36747, 17595, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:35:33', '0000-00-00 00:00:00'),
(36748, 17596, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:36:58', '0000-00-00 00:00:00'),
(36749, 17597, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:40:21', '0000-00-00 00:00:00'),
(36750, 17598, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:41:06', '0000-00-00 00:00:00'),
(36751, 17599, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:41:40', '0000-00-00 00:00:00'),
(36752, 17600, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:42:22', '0000-00-00 00:00:00'),
(36753, 17601, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:42:25', '0000-00-00 00:00:00'),
(36754, 17602, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:43:02', '0000-00-00 00:00:00'),
(36755, 17603, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:43:07', '0000-00-00 00:00:00'),
(36756, 17604, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:44:32', '0000-00-00 00:00:00'),
(36757, 17605, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:45:06', '0000-00-00 00:00:00'),
(36758, 17606, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:45:49', '0000-00-00 00:00:00'),
(36759, 17607, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:46:02', '0000-00-00 00:00:00'),
(36760, 17608, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:46:08', '0000-00-00 00:00:00'),
(36761, 17609, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:47:02', '0000-00-00 00:00:00'),
(36762, 17610, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:47:10', '0000-00-00 00:00:00'),
(36763, 17611, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:47:41', '0000-00-00 00:00:00'),
(36764, 17612, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:48:09', '0000-00-00 00:00:00'),
(36765, 17613, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:48:18', '0000-00-00 00:00:00'),
(36766, 17614, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:49:07', '0000-00-00 00:00:00'),
(36767, 17615, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:49:22', '0000-00-00 00:00:00'),
(36768, 17616, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:50:30', '0000-00-00 00:00:00'),
(36769, 17617, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:50:42', '0000-00-00 00:00:00'),
(36770, 17618, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:50:56', '0000-00-00 00:00:00'),
(36771, 17619, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:51:43', '0000-00-00 00:00:00'),
(36772, 17620, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:52:13', '0000-00-00 00:00:00'),
(36773, 17621, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:53:09', '0000-00-00 00:00:00'),
(36774, 17622, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:56:20', '0000-00-00 00:00:00'),
(36775, 17624, 0.00, 0.00, 1, 1, NULL, '2017-08-10 01:59:31', '0000-00-00 00:00:00'),
(36776, 17625, 0.00, 0.00, 1, 1, NULL, '2017-08-10 02:01:06', '0000-00-00 00:00:00'),
(36777, 17626, 0.00, 0.00, 1, 1, NULL, '2017-08-10 02:03:43', '0000-00-00 00:00:00'),
(36778, 17627, 0.00, 0.00, 1, 1, NULL, '2017-08-10 02:04:08', '0000-00-00 00:00:00'),
(36779, 17628, 0.00, 0.00, 1, 1, NULL, '2017-08-10 02:17:24', '0000-00-00 00:00:00'),
(36780, 17629, 0.00, 0.00, 1, 1, NULL, '2017-08-10 02:23:12', '0000-00-00 00:00:00'),
(36781, 17630, 0.00, 0.00, 1, 1, NULL, '2017-08-10 02:25:25', '0000-00-00 00:00:00'),
(36782, 17631, 0.00, 0.00, 1, 1, NULL, '2017-08-10 02:26:50', '0000-00-00 00:00:00'),
(36783, 17632, 0.00, 0.00, 1, 1, NULL, '2017-08-10 02:29:32', '0000-00-00 00:00:00'),
(36784, 17633, 0.00, 0.00, 1, 1, NULL, '2017-08-10 02:31:30', '0000-00-00 00:00:00'),
(36785, 17634, 0.00, 0.00, 1, 1, NULL, '2017-08-10 02:41:04', '0000-00-00 00:00:00'),
(36786, 17635, 0.00, 0.00, 1, 1, NULL, '2017-08-10 02:42:48', '0000-00-00 00:00:00'),
(36787, 17636, 0.00, 0.00, 1, 1, NULL, '2017-08-10 02:44:37', '0000-00-00 00:00:00'),
(36788, 17637, 0.00, 0.00, 1, 1, NULL, '2017-08-10 03:09:44', '0000-00-00 00:00:00'),
(36789, 17638, 0.00, 0.00, 1, 1, NULL, '2017-08-10 03:21:23', '0000-00-00 00:00:00'),
(36790, 17639, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:03:16', '0000-00-00 00:00:00'),
(36791, 17640, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:04:28', '0000-00-00 00:00:00'),
(36792, 17641, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:04:44', '0000-00-00 00:00:00'),
(36793, 17642, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:05:31', '0000-00-00 00:00:00'),
(36794, 17643, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:06:31', '0000-00-00 00:00:00'),
(36795, 17644, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:07:14', '0000-00-00 00:00:00'),
(36796, 17645, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:07:51', '0000-00-00 00:00:00'),
(36797, 17646, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:07:56', '0000-00-00 00:00:00'),
(36798, 17647, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:09:01', '0000-00-00 00:00:00'),
(36799, 17648, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:09:08', '0000-00-00 00:00:00'),
(36800, 17649, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:09:41', '0000-00-00 00:00:00'),
(36801, 17650, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:10:49', '0000-00-00 00:00:00'),
(36802, 17651, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:11:00', '0000-00-00 00:00:00'),
(36803, 17652, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:11:53', '0000-00-00 00:00:00'),
(36804, 17653, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:13:53', '0000-00-00 00:00:00'),
(36805, 17654, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:14:29', '0000-00-00 00:00:00'),
(36806, 17655, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:15:21', '0000-00-00 00:00:00'),
(36807, 17656, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:15:59', '0000-00-00 00:00:00'),
(36808, 17657, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:16:25', '0000-00-00 00:00:00'),
(36809, 17658, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:18:42', '0000-00-00 00:00:00'),
(36810, 17659, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:18:43', '0000-00-00 00:00:00'),
(36811, 17660, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:19:58', '0000-00-00 00:00:00'),
(36812, 17661, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:20:21', '0000-00-00 00:00:00'),
(36813, 17662, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:21:43', '0000-00-00 00:00:00'),
(36814, 17663, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:24:46', '0000-00-00 00:00:00'),
(36815, 17664, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:25:58', '0000-00-00 00:00:00'),
(36816, 17665, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:26:15', '0000-00-00 00:00:00'),
(36817, 17666, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:26:57', '0000-00-00 00:00:00'),
(36818, 17667, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:27:48', '0000-00-00 00:00:00'),
(36819, 17668, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:28:26', '0000-00-00 00:00:00'),
(36820, 17669, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:28:58', '0000-00-00 00:00:00'),
(36821, 17670, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:29:23', '0000-00-00 00:00:00'),
(36822, 17671, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:30:22', '0000-00-00 00:00:00'),
(36823, 17672, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:32:04', '0000-00-00 00:00:00'),
(36824, 17673, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:32:19', '0000-00-00 00:00:00'),
(36825, 17674, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:33:29', '0000-00-00 00:00:00'),
(36826, 17675, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:33:41', '0000-00-00 00:00:00'),
(36827, 17676, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:34:34', '0000-00-00 00:00:00'),
(36828, 17677, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:35:09', '0000-00-00 00:00:00'),
(36829, 17678, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:35:58', '0000-00-00 00:00:00'),
(36830, 17679, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:37:59', '0000-00-00 00:00:00'),
(36831, 17680, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:39:48', '0000-00-00 00:00:00'),
(36832, 17681, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:41:02', '0000-00-00 00:00:00'),
(36833, 17682, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:41:46', '0000-00-00 00:00:00'),
(36834, 17683, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:42:27', '0000-00-00 00:00:00'),
(36835, 17684, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:43:49', '0000-00-00 00:00:00'),
(36836, 17685, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:44:48', '0000-00-00 00:00:00'),
(36837, 17686, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:45:37', '0000-00-00 00:00:00'),
(36838, 17687, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:46:56', '0000-00-00 00:00:00'),
(36839, 17688, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:47:46', '0000-00-00 00:00:00'),
(36840, 17689, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:48:17', '0000-00-00 00:00:00'),
(36841, 17690, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:48:35', '0000-00-00 00:00:00'),
(36842, 17691, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:49:52', '0000-00-00 00:00:00'),
(36843, 17693, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:51:01', '0000-00-00 00:00:00'),
(36844, 17694, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:51:59', '0000-00-00 00:00:00'),
(36845, 17695, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:52:47', '0000-00-00 00:00:00'),
(36846, 17696, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:53:12', '0000-00-00 00:00:00'),
(36847, 17697, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:54:24', '0000-00-00 00:00:00'),
(36848, 17698, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:54:31', '0000-00-00 00:00:00'),
(36849, 17700, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:55:45', '0000-00-00 00:00:00'),
(36850, 17701, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:57:12', '0000-00-00 00:00:00'),
(36851, 17702, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:57:13', '0000-00-00 00:00:00'),
(36852, 17703, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:58:02', '0000-00-00 00:00:00'),
(36853, 17704, 0.00, 0.00, 1, 1, NULL, '2017-08-10 04:59:05', '0000-00-00 00:00:00'),
(36854, 17705, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:01:18', '0000-00-00 00:00:00'),
(36855, 17706, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:02:18', '0000-00-00 00:00:00'),
(36856, 17707, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:04:05', '0000-00-00 00:00:00'),
(36857, 17708, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:04:08', '0000-00-00 00:00:00'),
(36858, 17709, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:05:50', '0000-00-00 00:00:00'),
(36859, 17710, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:06:05', '0000-00-00 00:00:00'),
(36860, 17711, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:06:56', '0000-00-00 00:00:00'),
(36861, 17712, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:07:19', '0000-00-00 00:00:00'),
(36862, 17713, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:08:45', '0000-00-00 00:00:00'),
(36863, 17714, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:09:19', '0000-00-00 00:00:00'),
(36864, 17715, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:09:43', '0000-00-00 00:00:00'),
(36865, 17716, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:10:40', '0000-00-00 00:00:00'),
(36866, 17717, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:12:16', '0000-00-00 00:00:00'),
(36867, 17718, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:12:23', '0000-00-00 00:00:00'),
(36868, 17719, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:13:33', '0000-00-00 00:00:00'),
(36869, 17720, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:13:50', '0000-00-00 00:00:00'),
(36870, 17721, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:15:01', '0000-00-00 00:00:00'),
(36871, 17722, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:15:27', '0000-00-00 00:00:00'),
(36872, 17723, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:16:29', '0000-00-00 00:00:00'),
(36873, 17724, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:17:19', '0000-00-00 00:00:00'),
(36874, 17725, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:18:03', '0000-00-00 00:00:00'),
(36875, 17726, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:18:46', '0000-00-00 00:00:00'),
(36876, 17727, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:19:42', '0000-00-00 00:00:00'),
(36877, 17728, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:19:56', '0000-00-00 00:00:00'),
(36878, 17729, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:20:41', '0000-00-00 00:00:00'),
(36879, 17730, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:20:49', '0000-00-00 00:00:00'),
(36880, 17731, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:23:16', '0000-00-00 00:00:00'),
(36881, 17732, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:23:45', '0000-00-00 00:00:00'),
(36882, 17733, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:24:13', '0000-00-00 00:00:00'),
(36883, 17734, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:25:06', '0000-00-00 00:00:00'),
(36884, 17735, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:25:47', '0000-00-00 00:00:00'),
(36885, 17736, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:26:25', '0000-00-00 00:00:00'),
(36886, 17737, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:27:28', '0000-00-00 00:00:00'),
(36887, 17738, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:27:39', '0000-00-00 00:00:00'),
(36888, 17739, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:29:28', '0000-00-00 00:00:00'),
(36889, 17740, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:29:41', '0000-00-00 00:00:00'),
(36890, 17741, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:31:02', '0000-00-00 00:00:00'),
(36891, 17742, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:31:08', '0000-00-00 00:00:00'),
(36892, 17743, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:32:00', '0000-00-00 00:00:00'),
(36893, 17744, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:32:11', '0000-00-00 00:00:00'),
(36894, 17745, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:34:12', '0000-00-00 00:00:00'),
(36895, 17746, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:35:29', '0000-00-00 00:00:00'),
(36896, 17747, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:36:00', '0000-00-00 00:00:00'),
(36897, 17748, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:36:23', '0000-00-00 00:00:00'),
(36898, 17749, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:37:29', '0000-00-00 00:00:00'),
(36899, 17750, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:39:07', '0000-00-00 00:00:00'),
(36900, 17751, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:39:14', '0000-00-00 00:00:00'),
(36901, 17752, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:40:31', '0000-00-00 00:00:00'),
(36902, 17753, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:41:34', '0000-00-00 00:00:00'),
(36903, 17754, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:52:56', '0000-00-00 00:00:00'),
(36904, 17755, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:55:12', '0000-00-00 00:00:00'),
(36905, 17756, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:56:00', '0000-00-00 00:00:00'),
(36906, 17757, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:57:09', '0000-00-00 00:00:00'),
(36907, 17760, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:58:53', '0000-00-00 00:00:00'),
(36908, 17761, 0.00, 0.00, 1, 1, NULL, '2017-08-10 05:59:06', '0000-00-00 00:00:00'),
(36909, 17762, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:00:23', '0000-00-00 00:00:00'),
(36910, 17763, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:00:39', '0000-00-00 00:00:00'),
(36911, 17764, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:00:53', '0000-00-00 00:00:00'),
(36912, 17765, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:01:17', '0000-00-00 00:00:00'),
(36913, 17766, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:02:25', '0000-00-00 00:00:00'),
(36914, 17767, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:02:31', '0000-00-00 00:00:00'),
(36915, 17769, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:03:56', '0000-00-00 00:00:00'),
(36916, 17770, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:04:12', '0000-00-00 00:00:00'),
(36917, 17771, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:05:46', '0000-00-00 00:00:00'),
(36918, 17772, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:06:33', '0000-00-00 00:00:00'),
(36919, 17773, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:06:38', '0000-00-00 00:00:00'),
(36920, 17774, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:07:43', '0000-00-00 00:00:00'),
(36921, 17775, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:08:30', '0000-00-00 00:00:00'),
(36922, 17776, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:10:03', '0000-00-00 00:00:00'),
(36923, 17777, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:10:37', '0000-00-00 00:00:00'),
(36924, 17778, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:11:54', '0000-00-00 00:00:00'),
(36925, 17779, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:12:34', '0000-00-00 00:00:00'),
(36926, 17780, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:14:07', '0000-00-00 00:00:00'),
(36927, 17781, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:14:20', '0000-00-00 00:00:00'),
(36928, 17782, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:15:20', '0000-00-00 00:00:00'),
(36929, 17783, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:15:37', '0000-00-00 00:00:00'),
(36930, 17784, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:15:56', '0000-00-00 00:00:00'),
(36931, 17785, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:16:57', '0000-00-00 00:00:00'),
(36932, 17786, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:17:38', '0000-00-00 00:00:00'),
(36933, 17787, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:17:57', '0000-00-00 00:00:00'),
(36934, 17788, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:18:25', '0000-00-00 00:00:00'),
(36935, 17789, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:18:42', '0000-00-00 00:00:00'),
(36936, 17790, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:19:41', '0000-00-00 00:00:00'),
(36937, 17791, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:20:18', '0000-00-00 00:00:00'),
(36938, 17792, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:20:41', '0000-00-00 00:00:00'),
(36939, 17793, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:22:01', '0000-00-00 00:00:00'),
(36940, 17794, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:22:16', '0000-00-00 00:00:00'),
(36941, 17795, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:23:34', '0000-00-00 00:00:00'),
(36942, 17796, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:25:07', '0000-00-00 00:00:00'),
(36943, 17797, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:27:59', '0000-00-00 00:00:00'),
(36944, 17798, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:28:45', '0000-00-00 00:00:00'),
(36945, 17799, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:29:06', '0000-00-00 00:00:00'),
(36946, 17800, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:29:43', '0000-00-00 00:00:00'),
(36947, 17802, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:30:19', '0000-00-00 00:00:00'),
(36948, 17804, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:30:46', '0000-00-00 00:00:00'),
(36949, 17805, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:32:02', '0000-00-00 00:00:00'),
(36950, 17806, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:32:05', '0000-00-00 00:00:00'),
(36951, 17807, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:33:04', '0000-00-00 00:00:00'),
(36952, 17808, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:33:43', '0000-00-00 00:00:00'),
(36953, 17809, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:34:55', '0000-00-00 00:00:00'),
(36954, 17810, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:35:32', '0000-00-00 00:00:00'),
(36955, 17811, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:35:48', '0000-00-00 00:00:00'),
(36956, 17812, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:36:01', '0000-00-00 00:00:00'),
(36957, 17813, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:36:44', '0000-00-00 00:00:00'),
(36958, 17814, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:37:56', '0000-00-00 00:00:00'),
(36959, 17815, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:39:19', '0000-00-00 00:00:00'),
(36960, 17816, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:39:27', '0000-00-00 00:00:00'),
(36961, 17818, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:39:47', '0000-00-00 00:00:00'),
(36962, 17819, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:40:37', '0000-00-00 00:00:00'),
(36963, 17820, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:40:49', '0000-00-00 00:00:00'),
(36964, 17821, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:41:48', '0000-00-00 00:00:00'),
(36965, 17822, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:42:00', '0000-00-00 00:00:00'),
(36966, 17823, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:43:03', '0000-00-00 00:00:00'),
(36967, 17824, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:43:09', '0000-00-00 00:00:00'),
(36968, 17825, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:43:49', '0000-00-00 00:00:00'),
(36969, 17826, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:43:49', '0000-00-00 00:00:00'),
(36970, 17827, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:45:00', '0000-00-00 00:00:00'),
(36971, 17828, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:45:28', '0000-00-00 00:00:00'),
(36972, 17829, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:46:43', '0000-00-00 00:00:00'),
(36973, 17830, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:47:01', '0000-00-00 00:00:00'),
(36974, 17831, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:48:50', '0000-00-00 00:00:00'),
(36975, 17832, 0.00, 0.00, 1, 1, NULL, '2017-08-10 06:53:40', '0000-00-00 00:00:00'),
(36976, 17833, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:00:02', '0000-00-00 00:00:00'),
(36977, 17834, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:02:42', '0000-00-00 00:00:00'),
(36978, 17835, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:06:40', '0000-00-00 00:00:00'),
(36979, 17836, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:12:58', '0000-00-00 00:00:00'),
(36980, 17837, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:14:36', '0000-00-00 00:00:00'),
(36981, 17838, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:15:37', '0000-00-00 00:00:00'),
(36982, 17839, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:18:30', '0000-00-00 00:00:00'),
(36983, 17840, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:21:53', '0000-00-00 00:00:00'),
(36984, 17841, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:24:18', '0000-00-00 00:00:00'),
(36985, 17842, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:24:58', '0000-00-00 00:00:00'),
(36986, 17843, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:25:55', '0000-00-00 00:00:00'),
(36987, 17844, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:27:51', '0000-00-00 00:00:00'),
(36988, 17846, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:30:31', '0000-00-00 00:00:00'),
(36989, 17847, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:35:15', '0000-00-00 00:00:00'),
(36990, 17848, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:35:35', '0000-00-00 00:00:00'),
(36991, 17849, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:36:39', '0000-00-00 00:00:00'),
(36992, 17850, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:39:02', '0000-00-00 00:00:00'),
(36993, 17851, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:40:49', '0000-00-00 00:00:00'),
(36994, 17852, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:41:06', '0000-00-00 00:00:00'),
(36995, 17853, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:41:14', '0000-00-00 00:00:00'),
(36996, 17854, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:42:03', '0000-00-00 00:00:00'),
(36997, 17855, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:42:42', '0000-00-00 00:00:00'),
(36998, 17856, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:44:13', '0000-00-00 00:00:00'),
(36999, 17857, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:45:16', '0000-00-00 00:00:00'),
(37000, 17858, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:46:26', '0000-00-00 00:00:00'),
(37001, 17859, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:47:32', '0000-00-00 00:00:00'),
(37002, 17860, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:48:12', '0000-00-00 00:00:00'),
(37003, 17861, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:48:12', '0000-00-00 00:00:00'),
(37004, 17862, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:48:35', '0000-00-00 00:00:00'),
(37005, 17863, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:48:47', '0000-00-00 00:00:00'),
(37006, 17864, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:49:25', '0000-00-00 00:00:00'),
(37007, 17865, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:49:53', '0000-00-00 00:00:00'),
(37008, 17866, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:51:53', '0000-00-00 00:00:00'),
(37009, 17867, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:52:30', '0000-00-00 00:00:00'),
(37010, 17868, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:52:38', '0000-00-00 00:00:00'),
(37011, 17869, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:52:55', '0000-00-00 00:00:00'),
(37012, 17870, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:53:54', '0000-00-00 00:00:00'),
(37013, 17871, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:54:38', '0000-00-00 00:00:00'),
(37014, 17872, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:55:15', '0000-00-00 00:00:00'),
(37015, 17873, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:55:30', '0000-00-00 00:00:00'),
(37016, 17874, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:55:51', '0000-00-00 00:00:00'),
(37017, 17875, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:56:46', '0000-00-00 00:00:00'),
(37018, 17876, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:56:47', '0000-00-00 00:00:00'),
(37019, 17877, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:57:19', '0000-00-00 00:00:00'),
(37020, 17878, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:57:50', '0000-00-00 00:00:00'),
(37021, 17879, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:58:05', '0000-00-00 00:00:00'),
(37022, 17880, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:58:36', '0000-00-00 00:00:00'),
(37023, 17881, 0.00, 0.00, 1, 1, NULL, '2017-08-10 07:59:50', '0000-00-00 00:00:00'),
(37024, 17882, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:00:13', '0000-00-00 00:00:00'),
(37025, 17883, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:05:10', '0000-00-00 00:00:00'),
(37026, 17884, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:06:38', '0000-00-00 00:00:00'),
(37027, 17885, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:08:23', '0000-00-00 00:00:00'),
(37028, 17886, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:09:32', '0000-00-00 00:00:00'),
(37029, 17887, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:10:16', '0000-00-00 00:00:00'),
(37030, 17888, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:12:33', '0000-00-00 00:00:00'),
(37031, 17889, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:13:53', '0000-00-00 00:00:00'),
(37032, 17890, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:15:03', '0000-00-00 00:00:00'),
(37033, 17891, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:15:17', '0000-00-00 00:00:00'),
(37034, 17892, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:15:31', '0000-00-00 00:00:00'),
(37035, 17893, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:16:14', '0000-00-00 00:00:00'),
(37036, 17894, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:17:19', '0000-00-00 00:00:00'),
(37037, 17895, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:18:00', '0000-00-00 00:00:00'),
(37038, 17896, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:18:08', '0000-00-00 00:00:00'),
(37039, 17897, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:18:28', '0000-00-00 00:00:00'),
(37040, 17898, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:19:00', '0000-00-00 00:00:00'),
(37041, 17899, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:19:22', '0000-00-00 00:00:00'),
(37042, 17900, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:20:34', '0000-00-00 00:00:00'),
(37043, 17901, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:21:31', '0000-00-00 00:00:00'),
(37044, 17902, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:21:38', '0000-00-00 00:00:00'),
(37045, 17903, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:24:15', '0000-00-00 00:00:00'),
(37046, 17904, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:25:21', '0000-00-00 00:00:00'),
(37047, 17905, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:25:25', '0000-00-00 00:00:00'),
(37048, 17906, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:26:02', '0000-00-00 00:00:00'),
(37049, 17907, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:27:29', '0000-00-00 00:00:00'),
(37050, 17908, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:29:15', '0000-00-00 00:00:00'),
(37051, 17909, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:32:57', '0000-00-00 00:00:00'),
(37052, 17910, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:34:29', '0000-00-00 00:00:00'),
(37053, 17911, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:34:57', '0000-00-00 00:00:00'),
(37054, 17912, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:36:22', '0000-00-00 00:00:00'),
(37055, 17914, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:36:32', '0000-00-00 00:00:00'),
(37056, 17915, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:37:57', '0000-00-00 00:00:00'),
(37057, 17916, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:39:41', '0000-00-00 00:00:00'),
(37058, 17917, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:40:59', '0000-00-00 00:00:00'),
(37059, 17918, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:43:07', '0000-00-00 00:00:00'),
(37060, 17919, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:44:05', '0000-00-00 00:00:00'),
(37061, 17920, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:45:13', '0000-00-00 00:00:00'),
(37062, 17921, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:48:43', '0000-00-00 00:00:00'),
(37063, 17922, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:51:12', '0000-00-00 00:00:00'),
(37064, 17923, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:52:45', '0000-00-00 00:00:00'),
(37065, 17924, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:53:31', '0000-00-00 00:00:00'),
(37066, 17925, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:55:46', '0000-00-00 00:00:00'),
(37067, 17926, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:56:22', '0000-00-00 00:00:00'),
(37068, 17927, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:57:03', '0000-00-00 00:00:00'),
(37069, 17928, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:57:06', '0000-00-00 00:00:00'),
(37070, 17929, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:57:27', '0000-00-00 00:00:00'),
(37071, 17930, 0.00, 0.00, 1, 1, NULL, '2017-08-10 08:57:59', '0000-00-00 00:00:00'),
(37072, 17931, 0.00, 0.00, 0, 1, NULL, '2017-08-10 08:59:10', '0000-00-00 00:00:00'),
(38924, 17931, 1.00, 1.00, 1, 1, NULL, '2017-08-14 00:34:42', '0000-00-00 00:00:00'),
(38925, 17931, 100.00, 110.00, 0, 1, NULL, '2017-08-14 00:35:23', '0000-00-00 00:00:00'),
(37073, 17932, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:00:18', '0000-00-00 00:00:00'),
(37074, 17933, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:00:35', '0000-00-00 00:00:00'),
(37075, 17934, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:02:01', '0000-00-00 00:00:00'),
(37076, 17935, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:03:54', '0000-00-00 00:00:00'),
(37077, 17936, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:05:30', '0000-00-00 00:00:00'),
(37078, 17937, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:06:28', '0000-00-00 00:00:00'),
(37079, 17938, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:07:53', '0000-00-00 00:00:00'),
(37080, 17939, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:08:08', '0000-00-00 00:00:00'),
(37081, 17940, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:08:56', '0000-00-00 00:00:00'),
(37082, 17941, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:09:27', '0000-00-00 00:00:00'),
(37083, 17942, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:09:45', '0000-00-00 00:00:00'),
(37084, 17943, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:09:51', '0000-00-00 00:00:00'),
(37085, 17944, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:10:37', '0000-00-00 00:00:00'),
(37086, 17945, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:10:38', '0000-00-00 00:00:00'),
(37087, 17947, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:11:47', '0000-00-00 00:00:00'),
(37088, 17948, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:11:50', '0000-00-00 00:00:00'),
(37089, 17949, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:11:52', '0000-00-00 00:00:00'),
(37090, 17950, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:12:50', '0000-00-00 00:00:00'),
(37091, 17951, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:13:09', '0000-00-00 00:00:00'),
(37092, 17952, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:13:41', '0000-00-00 00:00:00'),
(37093, 17953, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:14:09', '0000-00-00 00:00:00'),
(37094, 17954, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:14:25', '0000-00-00 00:00:00'),
(37095, 17956, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:14:57', '0000-00-00 00:00:00'),
(37096, 17957, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:15:34', '0000-00-00 00:00:00'),
(37097, 17958, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:15:36', '0000-00-00 00:00:00'),
(37098, 17959, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:16:18', '0000-00-00 00:00:00'),
(37099, 17960, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:16:39', '0000-00-00 00:00:00'),
(37100, 17961, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:17:03', '0000-00-00 00:00:00'),
(37101, 17962, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:17:27', '0000-00-00 00:00:00'),
(37102, 17963, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:17:48', '0000-00-00 00:00:00'),
(37103, 17964, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:18:17', '0000-00-00 00:00:00'),
(37104, 17965, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:18:30', '0000-00-00 00:00:00'),
(37105, 17966, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:18:52', '0000-00-00 00:00:00'),
(37106, 17967, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:19:06', '0000-00-00 00:00:00'),
(37107, 17968, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:20:11', '0000-00-00 00:00:00'),
(37108, 17969, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:20:50', '0000-00-00 00:00:00'),
(37109, 17970, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:26:01', '0000-00-00 00:00:00'),
(37110, 17971, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:26:40', '0000-00-00 00:00:00'),
(37111, 17972, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:28:55', '0000-00-00 00:00:00'),
(37112, 17973, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:29:15', '0000-00-00 00:00:00'),
(37113, 17974, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:29:52', '0000-00-00 00:00:00'),
(37114, 17975, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:32:25', '0000-00-00 00:00:00'),
(37115, 17976, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:33:43', '0000-00-00 00:00:00'),
(37116, 17977, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:34:30', '0000-00-00 00:00:00'),
(37117, 17978, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:34:54', '0000-00-00 00:00:00'),
(37118, 17979, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:35:07', '0000-00-00 00:00:00'),
(37119, 17980, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:35:48', '0000-00-00 00:00:00'),
(37120, 17981, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:36:34', '0000-00-00 00:00:00'),
(37121, 17982, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:36:49', '0000-00-00 00:00:00'),
(37122, 17983, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:37:25', '0000-00-00 00:00:00'),
(37123, 17984, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:38:27', '0000-00-00 00:00:00'),
(37124, 17985, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:38:50', '0000-00-00 00:00:00'),
(37125, 17986, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:39:34', '0000-00-00 00:00:00'),
(37126, 17987, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:39:46', '0000-00-00 00:00:00'),
(37127, 17988, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:40:29', '0000-00-00 00:00:00'),
(37128, 17989, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:40:38', '0000-00-00 00:00:00'),
(37129, 17990, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:40:43', '0000-00-00 00:00:00'),
(37130, 17991, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:41:46', '0000-00-00 00:00:00'),
(37131, 17992, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:41:47', '0000-00-00 00:00:00'),
(37132, 17993, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:41:53', '0000-00-00 00:00:00'),
(37133, 17994, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:42:35', '0000-00-00 00:00:00'),
(37134, 17995, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:43:23', '0000-00-00 00:00:00'),
(37135, 17996, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:43:32', '0000-00-00 00:00:00'),
(37136, 17997, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:44:12', '0000-00-00 00:00:00'),
(37137, 17998, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:44:29', '0000-00-00 00:00:00'),
(37138, 17999, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:45:16', '0000-00-00 00:00:00'),
(37139, 18000, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:45:33', '0000-00-00 00:00:00'),
(37140, 18001, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:46:19', '0000-00-00 00:00:00'),
(37141, 18002, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:46:50', '0000-00-00 00:00:00'),
(37142, 18003, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:47:10', '0000-00-00 00:00:00'),
(37143, 18004, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:48:06', '0000-00-00 00:00:00'),
(37144, 18005, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:48:08', '0000-00-00 00:00:00'),
(37145, 18006, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:49:02', '0000-00-00 00:00:00'),
(37146, 18007, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:49:32', '0000-00-00 00:00:00'),
(37147, 18008, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:50:18', '0000-00-00 00:00:00'),
(37148, 18009, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:50:21', '0000-00-00 00:00:00'),
(37149, 18010, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:51:00', '0000-00-00 00:00:00'),
(37150, 18011, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:51:36', '0000-00-00 00:00:00'),
(37151, 18012, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:51:39', '0000-00-00 00:00:00'),
(37152, 18013, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:51:43', '0000-00-00 00:00:00'),
(37153, 18014, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:52:29', '0000-00-00 00:00:00'),
(37154, 18015, 0.00, 0.00, 0, 1, NULL, '2017-08-10 09:53:06', '0000-00-00 00:00:00'),
(38921, 18015, 500.00, 585.00, 1, 1, NULL, '2017-08-13 23:47:56', '0000-00-00 00:00:00'),
(37155, 18016, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:53:08', '0000-00-00 00:00:00'),
(37156, 18017, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:53:10', '0000-00-00 00:00:00'),
(37157, 18018, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:53:56', '0000-00-00 00:00:00'),
(37158, 18019, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:54:03', '0000-00-00 00:00:00'),
(37159, 18020, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:54:13', '0000-00-00 00:00:00'),
(37160, 18021, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:54:45', '0000-00-00 00:00:00'),
(37161, 18022, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:54:51', '0000-00-00 00:00:00'),
(37162, 18023, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:55:37', '0000-00-00 00:00:00'),
(37163, 18024, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:55:38', '0000-00-00 00:00:00'),
(37164, 18025, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:56:11', '0000-00-00 00:00:00'),
(37165, 18026, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:56:28', '0000-00-00 00:00:00'),
(37166, 18027, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:56:52', '0000-00-00 00:00:00'),
(37167, 18028, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:57:01', '0000-00-00 00:00:00'),
(37168, 18030, 0.00, 0.00, 1, 1, NULL, '2017-08-10 09:57:51', '0000-00-00 00:00:00'),
(37169, 18031, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:01:02', '0000-00-00 00:00:00'),
(37170, 18032, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:02:15', '0000-00-00 00:00:00'),
(37171, 18033, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:02:29', '0000-00-00 00:00:00'),
(37172, 18034, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:04:31', '0000-00-00 00:00:00'),
(37173, 18035, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:05:34', '0000-00-00 00:00:00'),
(37174, 18038, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:05:39', '0000-00-00 00:00:00'),
(37175, 18039, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:05:55', '0000-00-00 00:00:00'),
(37176, 18040, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:06:38', '0000-00-00 00:00:00'),
(37177, 18041, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:07:26', '0000-00-00 00:00:00'),
(37178, 18042, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:07:31', '0000-00-00 00:00:00'),
(37179, 18043, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:08:10', '0000-00-00 00:00:00'),
(37180, 18044, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:08:21', '0000-00-00 00:00:00'),
(37181, 18045, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:08:53', '0000-00-00 00:00:00'),
(37182, 18047, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:10:33', '0000-00-00 00:00:00'),
(37183, 18048, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:10:42', '0000-00-00 00:00:00'),
(37184, 18049, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:10:56', '0000-00-00 00:00:00'),
(37185, 18050, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:11:40', '0000-00-00 00:00:00'),
(37186, 18052, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:12:01', '0000-00-00 00:00:00'),
(37187, 18053, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:12:42', '0000-00-00 00:00:00'),
(37188, 18054, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:13:00', '0000-00-00 00:00:00'),
(37189, 18055, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:13:30', '0000-00-00 00:00:00'),
(37190, 18056, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:14:13', '0000-00-00 00:00:00'),
(37191, 18057, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:14:15', '0000-00-00 00:00:00'),
(37192, 18059, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:15:35', '0000-00-00 00:00:00'),
(37193, 18060, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:16:07', '0000-00-00 00:00:00'),
(37194, 18061, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:16:24', '0000-00-00 00:00:00'),
(37195, 18062, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:16:38', '0000-00-00 00:00:00'),
(37196, 18063, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:17:29', '0000-00-00 00:00:00'),
(37197, 18064, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:17:33', '0000-00-00 00:00:00'),
(37198, 18065, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:19:01', '0000-00-00 00:00:00'),
(37199, 18066, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:19:48', '0000-00-00 00:00:00'),
(37200, 18067, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:20:58', '0000-00-00 00:00:00'),
(37201, 18068, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:21:07', '0000-00-00 00:00:00'),
(37202, 18069, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:21:30', '0000-00-00 00:00:00'),
(37203, 18071, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:25:25', '0000-00-00 00:00:00'),
(37204, 18072, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:26:42', '0000-00-00 00:00:00'),
(37205, 18073, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:26:44', '0000-00-00 00:00:00'),
(37206, 18074, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:27:15', '0000-00-00 00:00:00'),
(37207, 18075, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:27:24', '0000-00-00 00:00:00'),
(37208, 18076, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:27:40', '0000-00-00 00:00:00'),
(37209, 18077, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:28:08', '0000-00-00 00:00:00'),
(37210, 18078, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:28:16', '0000-00-00 00:00:00'),
(37211, 18079, 0.00, 0.00, 1, 1, NULL, '2017-08-10 10:28:44', '0000-00-00 00:00:00'),
(37212, 18080, 0.00, 0.00, 1, 1, NULL, '2017-08-10 22:42:11', '0000-00-00 00:00:00'),
(37213, 18081, 0.00, 0.00, 1, 1, NULL, '2017-08-10 22:42:59', '0000-00-00 00:00:00'),
(37214, 18082, 0.00, 0.00, 1, 1, NULL, '2017-08-10 22:43:02', '0000-00-00 00:00:00'),
(37215, 18083, 0.00, 0.00, 1, 1, NULL, '2017-08-10 22:44:15', '0000-00-00 00:00:00'),
(37216, 18084, 0.00, 0.00, 1, 1, NULL, '2017-08-10 22:45:44', '0000-00-00 00:00:00'),
(37217, 18085, 0.00, 0.00, 1, 1, NULL, '2017-08-10 22:46:06', '0000-00-00 00:00:00'),
(37218, 18086, 0.00, 0.00, 1, 1, NULL, '2017-08-10 22:47:26', '0000-00-00 00:00:00'),
(37219, 18087, 0.00, 0.00, 1, 1, NULL, '2017-08-10 22:48:10', '0000-00-00 00:00:00'),
(37220, 18088, 0.00, 0.00, 1, 1, NULL, '2017-08-10 22:48:50', '0000-00-00 00:00:00'),
(37221, 18089, 0.00, 0.00, 1, 1, NULL, '2017-08-10 22:50:28', '0000-00-00 00:00:00'),
(37222, 18090, 0.00, 0.00, 1, 1, NULL, '2017-08-10 22:52:01', '0000-00-00 00:00:00'),
(37223, 18091, 0.00, 0.00, 1, 1, NULL, '2017-08-10 22:53:02', '0000-00-00 00:00:00'),
(37224, 18092, 0.00, 0.00, 1, 1, NULL, '2017-08-10 22:53:07', '0000-00-00 00:00:00'),
(37225, 18093, 0.00, 0.00, 1, 1, NULL, '2017-08-10 22:53:57', '0000-00-00 00:00:00'),
(37226, 18094, 0.00, 0.00, 1, 1, NULL, '2017-08-10 22:57:21', '0000-00-00 00:00:00'),
(37227, 18095, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:14:45', '0000-00-00 00:00:00'),
(37228, 18096, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:18:38', '0000-00-00 00:00:00'),
(37229, 18097, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:25:14', '0000-00-00 00:00:00'),
(37230, 18098, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:25:19', '0000-00-00 00:00:00'),
(37231, 18099, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:26:35', '0000-00-00 00:00:00'),
(37232, 18100, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:26:39', '0000-00-00 00:00:00'),
(37233, 18101, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:27:45', '0000-00-00 00:00:00'),
(37234, 18102, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:30:09', '0000-00-00 00:00:00'),
(37235, 18103, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:30:55', '0000-00-00 00:00:00'),
(37236, 18104, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:31:30', '0000-00-00 00:00:00'),
(37237, 18105, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:32:46', '0000-00-00 00:00:00'),
(37238, 18106, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:32:52', '0000-00-00 00:00:00'),
(37239, 18107, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:33:41', '0000-00-00 00:00:00'),
(37240, 18108, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:34:27', '0000-00-00 00:00:00'),
(37241, 18109, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:34:55', '0000-00-00 00:00:00'),
(37242, 18110, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:35:29', '0000-00-00 00:00:00'),
(37243, 18111, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:36:08', '0000-00-00 00:00:00'),
(37244, 18112, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:36:17', '0000-00-00 00:00:00'),
(37245, 18113, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:38:03', '0000-00-00 00:00:00'),
(37246, 18114, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:38:04', '0000-00-00 00:00:00'),
(37247, 18115, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:38:46', '0000-00-00 00:00:00'),
(37248, 18116, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:39:28', '0000-00-00 00:00:00'),
(37249, 18117, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:40:09', '0000-00-00 00:00:00'),
(37250, 18118, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:41:10', '0000-00-00 00:00:00'),
(37251, 18119, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:42:07', '0000-00-00 00:00:00'),
(37252, 18120, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:42:45', '0000-00-00 00:00:00'),
(37253, 18121, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:43:30', '0000-00-00 00:00:00'),
(37254, 18122, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:43:47', '0000-00-00 00:00:00'),
(37255, 18123, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:44:40', '0000-00-00 00:00:00'),
(37256, 18124, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:45:06', '0000-00-00 00:00:00'),
(37257, 18125, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:45:46', '0000-00-00 00:00:00'),
(37258, 18126, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:46:47', '0000-00-00 00:00:00'),
(37259, 18127, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:46:59', '0000-00-00 00:00:00'),
(37260, 18128, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:47:42', '0000-00-00 00:00:00'),
(37261, 18129, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:48:01', '0000-00-00 00:00:00'),
(37262, 18130, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:48:17', '0000-00-00 00:00:00'),
(37263, 18131, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:48:55', '0000-00-00 00:00:00'),
(37264, 18132, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:49:06', '0000-00-00 00:00:00'),
(37265, 18133, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:50:55', '0000-00-00 00:00:00'),
(37266, 18134, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:51:45', '0000-00-00 00:00:00'),
(37267, 18135, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:52:49', '0000-00-00 00:00:00'),
(37268, 18136, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:52:59', '0000-00-00 00:00:00'),
(37269, 18137, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:53:30', '0000-00-00 00:00:00'),
(37270, 18138, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:53:48', '0000-00-00 00:00:00'),
(37271, 18139, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:54:13', '0000-00-00 00:00:00'),
(37272, 18140, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:54:54', '0000-00-00 00:00:00'),
(37273, 18141, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:55:12', '0000-00-00 00:00:00'),
(37274, 18142, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:55:52', '0000-00-00 00:00:00'),
(37275, 18143, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:56:34', '0000-00-00 00:00:00'),
(37276, 18144, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:57:00', '0000-00-00 00:00:00'),
(37277, 18145, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:58:19', '0000-00-00 00:00:00'),
(37278, 18146, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:58:58', '0000-00-00 00:00:00'),
(37279, 18147, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:59:08', '0000-00-00 00:00:00'),
(37280, 18148, 0.00, 0.00, 1, 1, NULL, '2017-08-10 23:59:55', '0000-00-00 00:00:00'),
(37281, 18149, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:00:21', '0000-00-00 00:00:00'),
(37282, 18150, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:01:11', '0000-00-00 00:00:00'),
(37283, 18151, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:01:25', '0000-00-00 00:00:00'),
(37284, 18152, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:02:06', '0000-00-00 00:00:00'),
(37285, 18153, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:02:19', '0000-00-00 00:00:00'),
(37286, 18154, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:03:06', '0000-00-00 00:00:00'),
(37287, 18155, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:03:26', '0000-00-00 00:00:00'),
(37288, 18156, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:04:02', '0000-00-00 00:00:00'),
(37289, 18157, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:04:41', '0000-00-00 00:00:00'),
(37290, 18158, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:04:59', '0000-00-00 00:00:00'),
(37291, 18159, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:07:17', '0000-00-00 00:00:00'),
(37292, 18160, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:08:06', '0000-00-00 00:00:00'),
(37293, 18161, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:08:19', '0000-00-00 00:00:00'),
(37294, 18162, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:09:10', '0000-00-00 00:00:00'),
(37295, 18163, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:09:32', '0000-00-00 00:00:00'),
(37296, 18164, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:11:06', '0000-00-00 00:00:00'),
(37297, 18165, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:12:12', '0000-00-00 00:00:00'),
(37298, 18166, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:13:44', '0000-00-00 00:00:00'),
(37299, 18167, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:14:21', '0000-00-00 00:00:00'),
(37300, 18168, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:14:40', '0000-00-00 00:00:00'),
(37301, 18169, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:15:44', '0000-00-00 00:00:00'),
(37302, 18170, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:16:30', '0000-00-00 00:00:00'),
(37303, 18171, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:17:16', '0000-00-00 00:00:00'),
(37304, 18172, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:17:32', '0000-00-00 00:00:00'),
(37305, 18173, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:18:28', '0000-00-00 00:00:00'),
(37306, 18174, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:19:29', '0000-00-00 00:00:00'),
(37307, 18175, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:19:52', '0000-00-00 00:00:00'),
(37308, 18176, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:20:51', '0000-00-00 00:00:00'),
(37309, 18177, 0.00, 0.00, 0, 1, NULL, '2017-08-11 00:21:39', '0000-00-00 00:00:00'),
(38931, 18177, 20.00, 25.00, 1, 1, NULL, '2017-08-20 13:22:33', '0000-00-00 00:00:00'),
(37310, 18179, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:22:04', '0000-00-00 00:00:00'),
(37311, 18181, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:25:43', '0000-00-00 00:00:00'),
(37312, 18182, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:25:47', '0000-00-00 00:00:00'),
(37313, 18183, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:27:04', '0000-00-00 00:00:00'),
(37314, 18184, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:27:24', '0000-00-00 00:00:00'),
(37315, 18185, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:29:08', '0000-00-00 00:00:00'),
(37316, 18186, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:29:35', '0000-00-00 00:00:00'),
(37317, 18187, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:30:10', '0000-00-00 00:00:00'),
(37318, 18188, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:31:14', '0000-00-00 00:00:00'),
(37319, 18189, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:31:28', '0000-00-00 00:00:00'),
(37320, 18190, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:32:11', '0000-00-00 00:00:00'),
(37321, 18192, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:33:45', '0000-00-00 00:00:00'),
(37322, 18193, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:34:51', '0000-00-00 00:00:00'),
(37323, 18194, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:35:50', '0000-00-00 00:00:00'),
(37324, 18195, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:36:40', '0000-00-00 00:00:00'),
(37325, 18196, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:37:27', '0000-00-00 00:00:00'),
(37326, 18197, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:38:12', '0000-00-00 00:00:00'),
(37327, 18198, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:38:14', '0000-00-00 00:00:00'),
(37328, 18199, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:39:02', '0000-00-00 00:00:00'),
(37329, 18200, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:39:18', '0000-00-00 00:00:00'),
(37330, 18201, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:39:51', '0000-00-00 00:00:00'),
(37331, 18202, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:39:55', '0000-00-00 00:00:00'),
(37332, 18203, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:40:41', '0000-00-00 00:00:00'),
(37333, 18204, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:41:22', '0000-00-00 00:00:00'),
(37334, 18205, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:41:41', '0000-00-00 00:00:00'),
(37335, 18206, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:41:57', '0000-00-00 00:00:00'),
(37336, 18207, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:42:22', '0000-00-00 00:00:00'),
(37337, 18208, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:43:12', '0000-00-00 00:00:00'),
(37338, 18209, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:44:08', '0000-00-00 00:00:00'),
(37339, 18210, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:44:23', '0000-00-00 00:00:00'),
(37340, 18211, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:44:57', '0000-00-00 00:00:00'),
(37341, 18212, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:45:54', '0000-00-00 00:00:00'),
(37342, 18213, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:45:58', '0000-00-00 00:00:00'),
(37343, 18214, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:46:47', '0000-00-00 00:00:00'),
(37344, 18215, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:46:56', '0000-00-00 00:00:00'),
(37345, 18217, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:48:14', '0000-00-00 00:00:00'),
(37346, 18218, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:48:38', '0000-00-00 00:00:00'),
(37347, 18219, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:49:02', '0000-00-00 00:00:00'),
(37348, 18220, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:50:27', '0000-00-00 00:00:00'),
(37349, 18221, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:50:47', '0000-00-00 00:00:00'),
(37350, 18224, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:52:21', '0000-00-00 00:00:00'),
(37351, 18225, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:53:11', '0000-00-00 00:00:00'),
(37352, 18227, 0.00, 0.00, 1, 1, NULL, '2017-08-11 00:55:03', '0000-00-00 00:00:00'),
(37353, 18228, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:02:08', '0000-00-00 00:00:00'),
(37354, 18229, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:04:29', '0000-00-00 00:00:00'),
(37355, 18230, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:05:05', '0000-00-00 00:00:00'),
(37356, 18231, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:05:41', '0000-00-00 00:00:00'),
(37357, 18232, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:06:19', '0000-00-00 00:00:00'),
(37358, 18233, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:06:36', '0000-00-00 00:00:00'),
(37359, 18234, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:07:20', '0000-00-00 00:00:00'),
(37360, 18235, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:08:16', '0000-00-00 00:00:00'),
(37361, 18236, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:08:17', '0000-00-00 00:00:00'),
(37362, 18237, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:09:26', '0000-00-00 00:00:00'),
(37363, 18238, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:09:51', '0000-00-00 00:00:00'),
(37364, 18239, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:10:36', '0000-00-00 00:00:00'),
(37365, 18240, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:10:59', '0000-00-00 00:00:00'),
(37366, 18241, 0.00, 0.00, 0, 1, NULL, '2017-08-11 01:11:25', '0000-00-00 00:00:00'),
(38932, 18241, 3.00, 5.00, 1, 1, NULL, '2017-08-20 13:30:21', '0000-00-00 00:00:00'),
(37367, 18243, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:12:16', '0000-00-00 00:00:00'),
(37368, 18244, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:13:11', '0000-00-00 00:00:00'),
(37369, 18245, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:13:55', '0000-00-00 00:00:00'),
(37370, 18246, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:13:57', '0000-00-00 00:00:00'),
(37371, 18247, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:14:25', '0000-00-00 00:00:00'),
(37372, 18248, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:14:48', '0000-00-00 00:00:00'),
(37373, 18249, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:15:11', '0000-00-00 00:00:00'),
(37374, 18250, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:16:30', '0000-00-00 00:00:00'),
(37375, 18251, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:22:19', '0000-00-00 00:00:00'),
(37376, 18252, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:24:59', '0000-00-00 00:00:00'),
(37377, 18253, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:26:12', '0000-00-00 00:00:00'),
(37378, 18254, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:26:44', '0000-00-00 00:00:00'),
(37379, 18255, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:31:53', '0000-00-00 00:00:00'),
(37380, 18256, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:33:00', '0000-00-00 00:00:00'),
(37381, 18257, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:35:55', '0000-00-00 00:00:00'),
(37382, 18258, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:37:00', '0000-00-00 00:00:00'),
(37383, 18259, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:37:02', '0000-00-00 00:00:00'),
(37384, 18260, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:38:20', '0000-00-00 00:00:00'),
(37385, 18261, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:49:24', '0000-00-00 00:00:00'),
(37386, 18262, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:49:57', '0000-00-00 00:00:00'),
(37387, 18263, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:51:05', '0000-00-00 00:00:00'),
(37388, 18264, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:51:20', '0000-00-00 00:00:00'),
(37389, 18265, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:52:07', '0000-00-00 00:00:00'),
(37390, 18266, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:52:17', '0000-00-00 00:00:00'),
(37391, 18267, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:54:44', '0000-00-00 00:00:00'),
(37392, 18268, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:55:22', '0000-00-00 00:00:00'),
(37393, 18269, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:55:36', '0000-00-00 00:00:00'),
(37394, 18270, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:57:08', '0000-00-00 00:00:00'),
(37395, 18271, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:57:34', '0000-00-00 00:00:00'),
(37396, 18272, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:58:53', '0000-00-00 00:00:00'),
(37397, 18273, 0.00, 0.00, 1, 1, NULL, '2017-08-11 01:58:54', '0000-00-00 00:00:00'),
(37398, 18274, 0.00, 0.00, 1, 1, NULL, '2017-08-11 02:00:15', '0000-00-00 00:00:00'),
(37399, 18275, 0.00, 0.00, 1, 1, NULL, '2017-08-11 02:01:18', '0000-00-00 00:00:00'),
(37400, 18276, 0.00, 0.00, 1, 1, NULL, '2017-08-11 02:04:22', '0000-00-00 00:00:00'),
(37401, 18277, 0.00, 0.00, 1, 1, NULL, '2017-08-11 02:06:48', '0000-00-00 00:00:00'),
(37402, 18278, 0.00, 0.00, 1, 1, NULL, '2017-08-11 02:06:51', '0000-00-00 00:00:00'),
(37403, 18279, 0.00, 0.00, 1, 1, NULL, '2017-08-11 02:08:03', '0000-00-00 00:00:00'),
(37404, 18280, 0.00, 0.00, 1, 1, NULL, '2017-08-11 02:08:43', '0000-00-00 00:00:00'),
(37405, 18281, 0.00, 0.00, 1, 1, NULL, '2017-08-11 02:09:08', '0000-00-00 00:00:00'),
(37406, 18282, 0.00, 0.00, 1, 1, NULL, '2017-08-11 02:09:33', '0000-00-00 00:00:00'),
(37407, 18283, 0.00, 0.00, 1, 1, NULL, '2017-08-11 02:10:38', '0000-00-00 00:00:00'),
(37408, 18284, 0.00, 0.00, 1, 1, NULL, '2017-08-11 02:12:18', '0000-00-00 00:00:00'),
(37409, 18285, 0.00, 0.00, 1, 1, NULL, '2017-08-11 02:12:35', '0000-00-00 00:00:00'),
(37410, 18286, 0.00, 0.00, 1, 1, NULL, '2017-08-11 02:13:22', '0000-00-00 00:00:00'),
(37411, 18287, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:01:28', '0000-00-00 00:00:00'),
(37412, 18288, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:01:47', '0000-00-00 00:00:00'),
(37413, 18289, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:02:33', '0000-00-00 00:00:00'),
(37414, 18290, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:03:17', '0000-00-00 00:00:00'),
(37415, 18292, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:04:57', '0000-00-00 00:00:00'),
(37416, 18293, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:06:15', '0000-00-00 00:00:00'),
(37417, 18294, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:06:38', '0000-00-00 00:00:00'),
(37418, 18295, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:06:57', '0000-00-00 00:00:00'),
(37419, 18296, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:09:01', '0000-00-00 00:00:00'),
(37420, 18297, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:09:06', '0000-00-00 00:00:00'),
(37421, 18298, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:10:35', '0000-00-00 00:00:00'),
(37422, 18299, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:12:55', '0000-00-00 00:00:00'),
(37423, 18300, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:14:04', '0000-00-00 00:00:00'),
(37424, 18301, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:15:54', '0000-00-00 00:00:00'),
(37425, 18302, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:16:09', '0000-00-00 00:00:00'),
(37426, 18303, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:16:59', '0000-00-00 00:00:00'),
(37427, 18304, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:17:56', '0000-00-00 00:00:00'),
(37428, 18305, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:18:56', '0000-00-00 00:00:00'),
(37429, 18306, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:19:03', '0000-00-00 00:00:00'),
(37430, 18307, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:19:49', '0000-00-00 00:00:00'),
(37431, 18308, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:20:05', '0000-00-00 00:00:00'),
(37432, 18309, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:20:24', '0000-00-00 00:00:00'),
(37433, 18310, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:21:11', '0000-00-00 00:00:00'),
(37434, 18311, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:21:28', '0000-00-00 00:00:00'),
(37435, 18312, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:22:32', '0000-00-00 00:00:00'),
(37436, 18313, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:22:59', '0000-00-00 00:00:00'),
(37437, 18314, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:23:32', '0000-00-00 00:00:00'),
(37438, 18315, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:23:55', '0000-00-00 00:00:00'),
(37439, 18316, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:24:23', '0000-00-00 00:00:00'),
(37440, 18317, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:25:15', '0000-00-00 00:00:00'),
(37441, 18318, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:25:25', '0000-00-00 00:00:00'),
(37442, 18319, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:26:03', '0000-00-00 00:00:00'),
(37443, 18320, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:26:44', '0000-00-00 00:00:00'),
(37444, 18321, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:27:00', '0000-00-00 00:00:00'),
(37445, 18322, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:27:59', '0000-00-00 00:00:00'),
(37446, 18323, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:28:30', '0000-00-00 00:00:00'),
(37447, 18324, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:28:40', '0000-00-00 00:00:00'),
(37448, 18325, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:29:17', '0000-00-00 00:00:00'),
(37449, 18326, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:30:49', '0000-00-00 00:00:00'),
(37450, 18328, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:31:49', '0000-00-00 00:00:00'),
(37451, 18329, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:32:26', '0000-00-00 00:00:00'),
(37452, 18330, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:32:58', '0000-00-00 00:00:00'),
(37453, 18331, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:33:02', '0000-00-00 00:00:00'),
(37454, 18332, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:33:54', '0000-00-00 00:00:00'),
(37455, 18334, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:36:20', '0000-00-00 00:00:00'),
(37456, 18335, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:38:32', '0000-00-00 00:00:00'),
(37457, 18337, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:39:59', '0000-00-00 00:00:00'),
(37458, 18338, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:40:09', '0000-00-00 00:00:00'),
(37459, 18339, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:47:25', '0000-00-00 00:00:00'),
(37460, 18340, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:47:40', '0000-00-00 00:00:00'),
(37461, 18341, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:48:19', '0000-00-00 00:00:00'),
(37462, 18342, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:48:59', '0000-00-00 00:00:00'),
(37463, 18343, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:49:43', '0000-00-00 00:00:00'),
(37464, 18344, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:54:36', '0000-00-00 00:00:00'),
(37465, 18345, 0.00, 0.00, 1, 1, NULL, '2017-08-11 04:59:07', '0000-00-00 00:00:00'),
(37466, 18346, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:00:08', '0000-00-00 00:00:00'),
(37467, 18347, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:00:11', '0000-00-00 00:00:00'),
(37468, 18348, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:01:12', '0000-00-00 00:00:00'),
(37469, 18349, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:01:54', '0000-00-00 00:00:00'),
(37470, 18350, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:02:35', '0000-00-00 00:00:00'),
(37471, 18352, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:02:35', '0000-00-00 00:00:00'),
(37472, 18354, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:03:33', '0000-00-00 00:00:00'),
(37473, 18357, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:05:07', '0000-00-00 00:00:00'),
(37474, 18359, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:06:03', '0000-00-00 00:00:00'),
(37475, 18360, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:06:45', '0000-00-00 00:00:00'),
(37476, 18361, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:07:18', '0000-00-00 00:00:00'),
(37477, 18362, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:07:57', '0000-00-00 00:00:00'),
(37478, 18363, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:08:42', '0000-00-00 00:00:00'),
(37479, 18365, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:11:45', '0000-00-00 00:00:00'),
(37480, 18366, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:12:24', '0000-00-00 00:00:00'),
(37481, 18367, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:12:50', '0000-00-00 00:00:00'),
(37482, 18368, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:13:57', '0000-00-00 00:00:00'),
(37483, 18369, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:16:10', '0000-00-00 00:00:00'),
(37484, 18370, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:16:16', '0000-00-00 00:00:00'),
(37485, 18371, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:17:20', '0000-00-00 00:00:00'),
(37486, 18372, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:18:02', '0000-00-00 00:00:00'),
(37487, 18373, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:18:52', '0000-00-00 00:00:00'),
(37488, 18374, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:19:38', '0000-00-00 00:00:00'),
(37489, 18375, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:19:40', '0000-00-00 00:00:00'),
(37490, 18376, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:21:39', '0000-00-00 00:00:00'),
(37491, 18377, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:22:26', '0000-00-00 00:00:00'),
(37492, 18378, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:23:10', '0000-00-00 00:00:00'),
(37493, 18379, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:23:35', '0000-00-00 00:00:00'),
(37494, 18380, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:24:38', '0000-00-00 00:00:00'),
(37495, 18381, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:26:49', '0000-00-00 00:00:00'),
(37496, 18382, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:27:41', '0000-00-00 00:00:00'),
(37497, 18383, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:28:34', '0000-00-00 00:00:00'),
(37498, 18384, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:29:27', '0000-00-00 00:00:00'),
(37499, 18385, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:32:15', '0000-00-00 00:00:00'),
(37500, 18386, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:39:12', '0000-00-00 00:00:00'),
(37501, 18387, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:39:42', '0000-00-00 00:00:00'),
(37502, 18388, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:40:34', '0000-00-00 00:00:00'),
(37503, 18389, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:41:56', '0000-00-00 00:00:00'),
(37504, 18390, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:42:51', '0000-00-00 00:00:00'),
(37505, 18391, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:43:22', '0000-00-00 00:00:00'),
(37506, 18392, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:43:48', '0000-00-00 00:00:00'),
(37507, 18393, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:44:21', '0000-00-00 00:00:00'),
(37508, 18394, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:45:07', '0000-00-00 00:00:00'),
(37509, 18395, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:45:13', '0000-00-00 00:00:00'),
(37510, 18396, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:45:48', '0000-00-00 00:00:00'),
(37511, 18397, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:46:14', '0000-00-00 00:00:00'),
(37512, 18398, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:46:24', '0000-00-00 00:00:00'),
(37513, 18399, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:47:10', '0000-00-00 00:00:00'),
(37514, 18400, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:47:25', '0000-00-00 00:00:00'),
(37515, 18401, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:48:00', '0000-00-00 00:00:00'),
(37516, 18402, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:48:33', '0000-00-00 00:00:00'),
(37517, 18403, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:48:40', '0000-00-00 00:00:00'),
(37518, 18404, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:49:26', '0000-00-00 00:00:00'),
(37519, 18405, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:50:11', '0000-00-00 00:00:00'),
(37520, 18407, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:50:47', '0000-00-00 00:00:00'),
(37521, 18408, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:51:37', '0000-00-00 00:00:00'),
(37522, 18409, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:51:48', '0000-00-00 00:00:00'),
(37523, 18411, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:52:47', '0000-00-00 00:00:00'),
(37524, 18412, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:53:06', '0000-00-00 00:00:00'),
(37525, 18413, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:53:40', '0000-00-00 00:00:00'),
(37526, 18414, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:53:48', '0000-00-00 00:00:00'),
(37527, 18415, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:54:34', '0000-00-00 00:00:00'),
(37528, 18416, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:54:53', '0000-00-00 00:00:00'),
(37529, 18417, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:55:52', '0000-00-00 00:00:00'),
(37530, 18418, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:56:34', '0000-00-00 00:00:00'),
(37531, 18419, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:57:17', '0000-00-00 00:00:00'),
(37532, 18421, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:58:49', '0000-00-00 00:00:00'),
(37533, 18422, 0.00, 0.00, 1, 1, NULL, '2017-08-11 05:58:57', '0000-00-00 00:00:00'),
(37534, 18424, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:00:33', '0000-00-00 00:00:00'),
(37535, 18425, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:01:00', '0000-00-00 00:00:00'),
(37536, 18426, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:01:36', '0000-00-00 00:00:00'),
(37537, 18427, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:02:03', '0000-00-00 00:00:00'),
(37538, 18428, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:02:45', '0000-00-00 00:00:00'),
(37539, 18429, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:03:30', '0000-00-00 00:00:00'),
(37540, 18430, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:05:25', '0000-00-00 00:00:00'),
(37541, 18431, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:06:29', '0000-00-00 00:00:00'),
(37542, 18432, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:15:18', '0000-00-00 00:00:00'),
(37543, 18433, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:15:22', '0000-00-00 00:00:00'),
(37544, 18434, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:16:14', '0000-00-00 00:00:00'),
(37545, 18435, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:16:53', '0000-00-00 00:00:00'),
(37546, 18436, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:17:23', '0000-00-00 00:00:00'),
(37547, 18437, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:17:39', '0000-00-00 00:00:00'),
(37548, 18438, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:18:15', '0000-00-00 00:00:00'),
(37549, 18439, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:18:45', '0000-00-00 00:00:00'),
(37550, 18440, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:19:09', '0000-00-00 00:00:00'),
(37551, 18441, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:19:32', '0000-00-00 00:00:00'),
(37552, 18442, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:20:17', '0000-00-00 00:00:00'),
(37553, 18443, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:20:18', '0000-00-00 00:00:00'),
(37554, 18444, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:20:48', '0000-00-00 00:00:00'),
(37555, 18445, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:21:05', '0000-00-00 00:00:00'),
(37556, 18446, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:21:23', '0000-00-00 00:00:00'),
(37557, 18447, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:21:57', '0000-00-00 00:00:00'),
(37558, 18448, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:22:05', '0000-00-00 00:00:00'),
(37559, 18449, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:22:37', '0000-00-00 00:00:00'),
(37560, 18450, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:22:40', '0000-00-00 00:00:00'),
(37561, 18451, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:23:32', '0000-00-00 00:00:00'),
(37562, 18452, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:24:05', '0000-00-00 00:00:00'),
(37563, 18453, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:25:11', '0000-00-00 00:00:00'),
(37564, 18454, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:25:13', '0000-00-00 00:00:00'),
(37565, 18455, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:26:00', '0000-00-00 00:00:00'),
(37566, 18456, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:27:29', '0000-00-00 00:00:00'),
(37567, 18457, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:27:31', '0000-00-00 00:00:00'),
(37568, 18458, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:28:43', '0000-00-00 00:00:00'),
(37569, 18459, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:29:02', '0000-00-00 00:00:00'),
(37570, 18460, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:29:27', '0000-00-00 00:00:00'),
(37571, 18461, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:30:03', '0000-00-00 00:00:00'),
(37572, 18462, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:30:11', '0000-00-00 00:00:00'),
(37573, 18463, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:30:49', '0000-00-00 00:00:00'),
(37574, 18464, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:30:57', '0000-00-00 00:00:00'),
(37575, 18465, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:31:35', '0000-00-00 00:00:00'),
(37576, 18466, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:32:06', '0000-00-00 00:00:00'),
(37577, 18467, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:32:31', '0000-00-00 00:00:00'),
(37578, 18468, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:33:15', '0000-00-00 00:00:00'),
(37579, 18469, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:33:32', '0000-00-00 00:00:00'),
(37580, 18471, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:35:55', '0000-00-00 00:00:00'),
(37581, 18472, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:36:01', '0000-00-00 00:00:00'),
(37582, 18473, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:36:40', '0000-00-00 00:00:00'),
(37583, 18474, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:37:01', '0000-00-00 00:00:00'),
(37584, 18476, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:37:56', '0000-00-00 00:00:00'),
(37585, 18477, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:38:40', '0000-00-00 00:00:00'),
(37586, 18478, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:39:07', '0000-00-00 00:00:00'),
(37587, 18479, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:39:59', '0000-00-00 00:00:00'),
(37588, 18481, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:40:03', '0000-00-00 00:00:00'),
(37589, 18482, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:40:43', '0000-00-00 00:00:00'),
(37590, 18483, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:41:10', '0000-00-00 00:00:00'),
(37591, 18484, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:41:18', '0000-00-00 00:00:00'),
(37592, 18485, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:42:01', '0000-00-00 00:00:00'),
(37593, 18486, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:42:23', '0000-00-00 00:00:00'),
(37594, 18487, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:42:52', '0000-00-00 00:00:00'),
(37595, 18488, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:43:36', '0000-00-00 00:00:00'),
(37596, 18489, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:44:36', '0000-00-00 00:00:00'),
(37597, 18490, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:45:29', '0000-00-00 00:00:00'),
(37598, 18491, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:46:17', '0000-00-00 00:00:00'),
(37599, 18492, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:46:21', '0000-00-00 00:00:00'),
(37600, 18493, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:47:04', '0000-00-00 00:00:00'),
(37601, 18494, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:47:21', '0000-00-00 00:00:00'),
(37602, 18495, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:47:47', '0000-00-00 00:00:00'),
(37603, 18496, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:48:16', '0000-00-00 00:00:00'),
(37604, 18497, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:48:25', '0000-00-00 00:00:00'),
(37605, 18498, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:49:44', '0000-00-00 00:00:00'),
(37606, 18499, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:50:18', '0000-00-00 00:00:00'),
(37607, 18500, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:50:56', '0000-00-00 00:00:00'),
(37608, 18501, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:51:03', '0000-00-00 00:00:00'),
(37609, 18502, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:51:44', '0000-00-00 00:00:00'),
(37610, 18503, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:52:13', '0000-00-00 00:00:00'),
(37611, 18504, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:53:02', '0000-00-00 00:00:00'),
(37612, 18505, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:53:39', '0000-00-00 00:00:00'),
(37613, 18506, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:53:44', '0000-00-00 00:00:00'),
(37614, 18508, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:54:28', '0000-00-00 00:00:00'),
(37615, 18509, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:54:56', '0000-00-00 00:00:00'),
(37616, 18510, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:55:53', '0000-00-00 00:00:00'),
(37617, 18511, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:56:46', '0000-00-00 00:00:00'),
(37618, 18513, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:57:36', '0000-00-00 00:00:00'),
(37619, 18514, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:58:24', '0000-00-00 00:00:00'),
(37620, 18515, 0.00, 0.00, 1, 1, NULL, '2017-08-11 06:59:01', '0000-00-00 00:00:00'),
(37621, 18517, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:01:31', '0000-00-00 00:00:00'),
(37622, 18518, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:02:24', '0000-00-00 00:00:00'),
(37623, 18519, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:03:22', '0000-00-00 00:00:00'),
(37624, 18520, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:03:52', '0000-00-00 00:00:00'),
(37625, 18522, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:06:44', '0000-00-00 00:00:00'),
(37626, 18523, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:06:59', '0000-00-00 00:00:00'),
(37627, 18524, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:07:28', '0000-00-00 00:00:00'),
(37628, 18525, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:08:21', '0000-00-00 00:00:00'),
(37629, 18526, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:08:37', '0000-00-00 00:00:00'),
(37630, 18527, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:09:05', '0000-00-00 00:00:00'),
(37631, 18528, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:11:19', '0000-00-00 00:00:00'),
(37632, 18529, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:12:46', '0000-00-00 00:00:00'),
(37633, 18530, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:13:16', '0000-00-00 00:00:00'),
(37634, 18531, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:13:37', '0000-00-00 00:00:00'),
(37635, 18533, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:14:01', '0000-00-00 00:00:00'),
(37636, 18534, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:14:39', '0000-00-00 00:00:00'),
(37637, 18536, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:15:39', '0000-00-00 00:00:00'),
(37638, 18537, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:15:59', '0000-00-00 00:00:00'),
(37639, 18539, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:17:12', '0000-00-00 00:00:00'),
(37640, 18540, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:17:22', '0000-00-00 00:00:00'),
(37641, 18541, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:18:17', '0000-00-00 00:00:00'),
(37642, 18542, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:18:28', '0000-00-00 00:00:00'),
(37643, 18543, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:19:30', '0000-00-00 00:00:00'),
(37644, 18544, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:20:19', '0000-00-00 00:00:00'),
(37645, 18545, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:20:22', '0000-00-00 00:00:00'),
(37646, 18546, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:22:00', '0000-00-00 00:00:00'),
(37647, 18547, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:22:30', '0000-00-00 00:00:00'),
(37648, 18548, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:23:20', '0000-00-00 00:00:00'),
(37649, 18549, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:23:24', '0000-00-00 00:00:00'),
(37650, 18550, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:24:03', '0000-00-00 00:00:00'),
(37651, 18551, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:24:46', '0000-00-00 00:00:00'),
(37652, 18552, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:25:15', '0000-00-00 00:00:00'),
(37653, 18553, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:25:57', '0000-00-00 00:00:00'),
(37654, 18554, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:26:48', '0000-00-00 00:00:00'),
(37655, 18555, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:27:04', '0000-00-00 00:00:00'),
(37656, 18556, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:27:53', '0000-00-00 00:00:00'),
(37657, 18557, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:28:12', '0000-00-00 00:00:00'),
(37658, 18558, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:29:03', '0000-00-00 00:00:00'),
(37659, 18559, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:29:31', '0000-00-00 00:00:00'),
(37660, 18560, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:29:56', '0000-00-00 00:00:00'),
(37661, 18561, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:30:25', '0000-00-00 00:00:00'),
(37662, 18562, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:31:01', '0000-00-00 00:00:00'),
(37663, 18563, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:32:21', '0000-00-00 00:00:00'),
(37664, 18564, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:32:22', '0000-00-00 00:00:00'),
(37665, 18565, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:32:59', '0000-00-00 00:00:00'),
(37666, 18566, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:33:43', '0000-00-00 00:00:00'),
(37667, 18567, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:34:08', '0000-00-00 00:00:00'),
(37668, 18568, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:34:13', '0000-00-00 00:00:00'),
(37669, 18569, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:35:00', '0000-00-00 00:00:00'),
(37670, 18570, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:35:30', '0000-00-00 00:00:00'),
(37671, 18571, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:36:49', '0000-00-00 00:00:00'),
(37672, 18572, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:37:12', '0000-00-00 00:00:00'),
(37673, 18573, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:38:00', '0000-00-00 00:00:00'),
(37674, 18574, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:38:24', '0000-00-00 00:00:00'),
(37675, 18575, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:38:50', '0000-00-00 00:00:00'),
(37676, 18576, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:39:46', '0000-00-00 00:00:00'),
(37677, 18577, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:40:14', '0000-00-00 00:00:00'),
(37678, 18578, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:40:50', '0000-00-00 00:00:00'),
(37679, 18579, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:41:25', '0000-00-00 00:00:00'),
(37680, 18580, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:41:52', '0000-00-00 00:00:00'),
(37681, 18581, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:42:05', '0000-00-00 00:00:00'),
(37682, 18582, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:43:24', '0000-00-00 00:00:00'),
(37683, 18583, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:43:57', '0000-00-00 00:00:00'),
(37684, 18584, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:44:21', '0000-00-00 00:00:00'),
(37685, 18585, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:45:34', '0000-00-00 00:00:00'),
(37686, 18586, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:45:45', '0000-00-00 00:00:00'),
(37687, 18587, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:46:32', '0000-00-00 00:00:00'),
(37688, 18588, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:48:02', '0000-00-00 00:00:00'),
(37689, 18589, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:48:07', '0000-00-00 00:00:00'),
(37690, 18590, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:48:44', '0000-00-00 00:00:00'),
(37691, 18591, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:49:31', '0000-00-00 00:00:00'),
(37692, 18592, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:49:55', '0000-00-00 00:00:00'),
(37693, 18593, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:49:55', '0000-00-00 00:00:00'),
(37694, 18594, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:50:29', '0000-00-00 00:00:00'),
(37695, 18596, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:52:21', '0000-00-00 00:00:00'),
(37696, 18598, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:52:34', '0000-00-00 00:00:00'),
(37697, 18599, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:53:08', '0000-00-00 00:00:00'),
(37698, 18601, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:55:28', '0000-00-00 00:00:00'),
(37699, 18603, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:56:45', '0000-00-00 00:00:00'),
(37700, 18605, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:57:26', '0000-00-00 00:00:00'),
(37701, 18607, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:58:40', '0000-00-00 00:00:00'),
(37702, 18609, 0.00, 0.00, 1, 1, NULL, '2017-08-11 07:59:57', '0000-00-00 00:00:00'),
(37703, 18610, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:00:25', '0000-00-00 00:00:00'),
(37704, 18611, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:01:03', '0000-00-00 00:00:00'),
(37705, 18612, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:01:54', '0000-00-00 00:00:00'),
(37706, 18613, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:02:16', '0000-00-00 00:00:00'),
(37707, 18616, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:05:11', '0000-00-00 00:00:00'),
(37708, 18617, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:07:34', '0000-00-00 00:00:00'),
(37709, 18618, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:08:50', '0000-00-00 00:00:00'),
(37710, 18619, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:10:04', '0000-00-00 00:00:00'),
(37711, 18621, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:10:13', '0000-00-00 00:00:00'),
(37712, 18622, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:10:52', '0000-00-00 00:00:00'),
(37713, 18623, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:11:31', '0000-00-00 00:00:00'),
(37714, 18624, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:12:23', '0000-00-00 00:00:00'),
(37715, 18625, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:12:50', '0000-00-00 00:00:00'),
(37716, 18626, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:13:32', '0000-00-00 00:00:00'),
(37717, 18627, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:13:34', '0000-00-00 00:00:00'),
(37718, 18628, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:14:37', '0000-00-00 00:00:00'),
(37719, 18629, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:15:41', '0000-00-00 00:00:00'),
(37720, 18630, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:15:44', '0000-00-00 00:00:00'),
(37721, 18631, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:16:41', '0000-00-00 00:00:00'),
(37722, 18632, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:17:47', '0000-00-00 00:00:00'),
(37723, 18633, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:18:22', '0000-00-00 00:00:00'),
(37724, 18635, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:19:20', '0000-00-00 00:00:00'),
(37725, 18636, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:20:08', '0000-00-00 00:00:00'),
(37726, 18637, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:20:17', '0000-00-00 00:00:00'),
(37727, 18638, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:21:09', '0000-00-00 00:00:00'),
(37728, 18639, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:23:05', '0000-00-00 00:00:00'),
(37729, 18640, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:23:17', '0000-00-00 00:00:00'),
(37730, 18641, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:24:36', '0000-00-00 00:00:00'),
(37731, 18642, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:24:57', '0000-00-00 00:00:00'),
(37732, 18643, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:25:38', '0000-00-00 00:00:00'),
(37733, 18644, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:26:33', '0000-00-00 00:00:00'),
(37734, 18645, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:26:37', '0000-00-00 00:00:00'),
(37735, 18646, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:27:17', '0000-00-00 00:00:00'),
(37736, 18647, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:27:35', '0000-00-00 00:00:00'),
(37737, 18648, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:28:04', '0000-00-00 00:00:00'),
(37738, 18649, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:28:10', '0000-00-00 00:00:00'),
(37739, 18650, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:28:54', '0000-00-00 00:00:00'),
(37740, 18651, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:29:41', '0000-00-00 00:00:00'),
(37741, 18652, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:35:07', '0000-00-00 00:00:00'),
(37742, 18653, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:35:20', '0000-00-00 00:00:00'),
(37743, 18654, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:36:29', '0000-00-00 00:00:00'),
(37744, 18655, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:37:40', '0000-00-00 00:00:00'),
(37745, 18656, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:39:00', '0000-00-00 00:00:00'),
(37746, 18657, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:39:46', '0000-00-00 00:00:00'),
(37747, 18658, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:40:25', '0000-00-00 00:00:00'),
(37748, 18659, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:41:50', '0000-00-00 00:00:00'),
(37749, 18661, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:42:30', '0000-00-00 00:00:00'),
(37750, 18662, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:43:57', '0000-00-00 00:00:00'),
(37751, 18663, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:44:12', '0000-00-00 00:00:00'),
(37752, 18664, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:44:46', '0000-00-00 00:00:00'),
(37753, 18665, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:45:10', '0000-00-00 00:00:00'),
(37754, 18666, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:46:30', '0000-00-00 00:00:00'),
(37755, 18667, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:46:53', '0000-00-00 00:00:00'),
(37756, 18668, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:48:17', '0000-00-00 00:00:00'),
(37757, 18669, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:48:18', '0000-00-00 00:00:00'),
(37758, 18671, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:49:58', '0000-00-00 00:00:00'),
(37759, 18672, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:50:13', '0000-00-00 00:00:00'),
(37760, 18674, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:53:58', '0000-00-00 00:00:00'),
(37761, 18675, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:54:00', '0000-00-00 00:00:00'),
(37762, 18676, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:56:09', '0000-00-00 00:00:00'),
(37763, 18677, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:57:43', '0000-00-00 00:00:00'),
(37764, 18678, 0.00, 0.00, 1, 1, NULL, '2017-08-11 08:59:42', '0000-00-00 00:00:00'),
(37765, 18679, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:00:18', '0000-00-00 00:00:00'),
(37766, 18680, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:00:30', '0000-00-00 00:00:00'),
(37767, 18681, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:01:52', '0000-00-00 00:00:00'),
(37768, 18682, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:03:02', '0000-00-00 00:00:00'),
(37769, 18683, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:03:11', '0000-00-00 00:00:00'),
(37770, 18684, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:03:54', '0000-00-00 00:00:00'),
(37771, 18685, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:04:38', '0000-00-00 00:00:00'),
(37772, 18686, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:04:47', '0000-00-00 00:00:00'),
(37773, 18687, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:05:35', '0000-00-00 00:00:00'),
(37774, 18688, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:06:04', '0000-00-00 00:00:00'),
(37775, 18689, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:06:37', '0000-00-00 00:00:00'),
(37776, 18690, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:07:00', '0000-00-00 00:00:00'),
(37777, 18691, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:08:12', '0000-00-00 00:00:00'),
(37778, 18693, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:08:14', '0000-00-00 00:00:00'),
(37779, 18694, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:09:23', '0000-00-00 00:00:00'),
(37780, 18695, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:09:43', '0000-00-00 00:00:00'),
(37781, 18696, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:10:39', '0000-00-00 00:00:00'),
(37782, 18697, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:11:05', '0000-00-00 00:00:00'),
(37783, 18699, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:11:33', '0000-00-00 00:00:00'),
(37784, 18700, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:12:22', '0000-00-00 00:00:00'),
(37785, 18701, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:12:36', '0000-00-00 00:00:00'),
(37786, 18702, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:13:31', '0000-00-00 00:00:00'),
(37787, 18703, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:13:53', '0000-00-00 00:00:00'),
(37788, 18704, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:14:20', '0000-00-00 00:00:00'),
(37789, 18705, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:14:49', '0000-00-00 00:00:00'),
(37790, 18706, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:54:59', '0000-00-00 00:00:00'),
(37791, 18707, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:55:13', '0000-00-00 00:00:00'),
(37792, 18708, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:56:19', '0000-00-00 00:00:00'),
(37793, 18709, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:56:47', '0000-00-00 00:00:00'),
(37794, 18710, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:57:35', '0000-00-00 00:00:00'),
(37795, 18711, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:58:17', '0000-00-00 00:00:00'),
(37796, 18712, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:58:24', '0000-00-00 00:00:00'),
(37797, 18714, 0.00, 0.00, 1, 1, NULL, '2017-08-11 09:59:43', '0000-00-00 00:00:00'),
(37798, 18716, 0.00, 0.00, 1, 1, NULL, '2017-08-11 10:00:44', '0000-00-00 00:00:00'),
(37799, 18717, 0.00, 0.00, 1, 1, NULL, '2017-08-11 10:00:50', '0000-00-00 00:00:00'),
(37800, 18718, 0.00, 0.00, 1, 1, NULL, '2017-08-11 10:01:29', '0000-00-00 00:00:00'),
(37801, 18719, 0.00, 0.00, 1, 1, NULL, '2017-08-11 10:01:30', '0000-00-00 00:00:00'),
(37802, 18720, 0.00, 0.00, 1, 1, NULL, '2017-08-11 10:02:15', '0000-00-00 00:00:00'),
(37803, 18721, 0.00, 0.00, 1, 1, NULL, '2017-08-11 10:02:45', '0000-00-00 00:00:00'),
(37804, 18722, 0.00, 0.00, 1, 1, NULL, '2017-08-11 10:02:50', '0000-00-00 00:00:00'),
(37805, 18723, 0.00, 0.00, 1, 1, NULL, '2017-08-11 10:03:12', '0000-00-00 00:00:00'),
(37806, 18724, 0.00, 0.00, 1, 1, NULL, '2017-08-11 10:03:43', '0000-00-00 00:00:00'),
(37807, 18725, 0.00, 0.00, 1, 1, NULL, '2017-08-11 10:04:00', '0000-00-00 00:00:00'),
(37808, 18726, 0.00, 0.00, 1, 1, NULL, '2017-08-11 10:04:28', '0000-00-00 00:00:00'),
(37809, 18727, 0.00, 0.00, 1, 1, NULL, '2017-08-11 10:05:11', '0000-00-00 00:00:00'),
(37810, 18728, 0.00, 0.00, 1, 1, NULL, '2017-08-11 10:05:14', '0000-00-00 00:00:00'),
(37811, 18729, 0.00, 0.00, 1, 1, NULL, '2017-08-11 10:06:18', '0000-00-00 00:00:00'),
(37812, 18730, 0.00, 0.00, 1, 1, NULL, '2017-08-11 10:06:19', '0000-00-00 00:00:00'),
(37813, 18731, 0.00, 0.00, 1, 1, NULL, '2017-08-11 10:06:57', '0000-00-00 00:00:00'),
(37814, 18732, 0.00, 0.00, 1, 1, NULL, '2017-08-11 10:07:41', '0000-00-00 00:00:00'),
(37815, 18733, 0.00, 0.00, 1, 1, NULL, '2017-08-11 22:44:21', '0000-00-00 00:00:00'),
(37816, 18734, 0.00, 0.00, 1, 1, NULL, '2017-08-11 22:45:34', '0000-00-00 00:00:00'),
(37817, 18735, 0.00, 0.00, 1, 1, NULL, '2017-08-11 22:46:18', '0000-00-00 00:00:00'),
(37818, 18736, 0.00, 0.00, 1, 1, NULL, '2017-08-11 22:47:14', '0000-00-00 00:00:00'),
(37819, 18737, 0.00, 0.00, 1, 1, NULL, '2017-08-11 22:49:20', '0000-00-00 00:00:00'),
(37820, 18739, 0.00, 0.00, 1, 1, NULL, '2017-08-11 22:51:10', '0000-00-00 00:00:00'),
(37821, 18740, 0.00, 0.00, 1, 1, NULL, '2017-08-11 22:52:10', '0000-00-00 00:00:00'),
(37822, 18742, 0.00, 0.00, 1, 1, NULL, '2017-08-11 22:52:53', '0000-00-00 00:00:00'),
(37823, 18743, 0.00, 0.00, 1, 1, NULL, '2017-08-11 22:55:05', '0000-00-00 00:00:00'),
(37824, 18745, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:00:39', '0000-00-00 00:00:00'),
(37825, 18746, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:01:32', '0000-00-00 00:00:00'),
(37826, 18747, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:03:00', '0000-00-00 00:00:00'),
(37827, 18748, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:05:24', '0000-00-00 00:00:00'),
(37828, 18749, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:08:49', '0000-00-00 00:00:00'),
(37829, 18750, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:09:08', '0000-00-00 00:00:00'),
(37830, 18751, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:11:17', '0000-00-00 00:00:00'),
(37831, 18752, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:11:27', '0000-00-00 00:00:00'),
(37832, 18753, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:12:01', '0000-00-00 00:00:00'),
(37833, 18754, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:12:50', '0000-00-00 00:00:00'),
(37834, 18755, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:13:55', '0000-00-00 00:00:00'),
(37835, 18756, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:14:04', '0000-00-00 00:00:00'),
(37836, 18757, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:14:38', '0000-00-00 00:00:00'),
(37837, 18758, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:15:13', '0000-00-00 00:00:00'),
(37838, 18759, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:16:36', '0000-00-00 00:00:00'),
(37839, 18760, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:16:44', '0000-00-00 00:00:00'),
(37840, 18761, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:17:45', '0000-00-00 00:00:00'),
(37841, 18762, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:18:29', '0000-00-00 00:00:00'),
(37842, 18763, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:18:37', '0000-00-00 00:00:00'),
(37843, 18764, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:19:24', '0000-00-00 00:00:00'),
(37844, 18765, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:19:35', '0000-00-00 00:00:00'),
(37845, 18766, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:20:58', '0000-00-00 00:00:00'),
(37846, 18767, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:21:06', '0000-00-00 00:00:00'),
(37847, 18768, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:21:56', '0000-00-00 00:00:00'),
(37848, 18769, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:22:25', '0000-00-00 00:00:00'),
(37849, 18770, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:22:39', '0000-00-00 00:00:00'),
(37850, 18771, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:24:10', '0000-00-00 00:00:00'),
(37851, 18773, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:25:09', '0000-00-00 00:00:00'),
(37852, 18774, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:25:59', '0000-00-00 00:00:00'),
(37853, 18775, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:26:25', '0000-00-00 00:00:00'),
(37854, 18776, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:27:19', '0000-00-00 00:00:00'),
(37855, 18777, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:28:09', '0000-00-00 00:00:00'),
(37856, 18778, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:28:22', '0000-00-00 00:00:00'),
(37857, 18779, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:29:29', '0000-00-00 00:00:00'),
(37858, 18780, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:29:34', '0000-00-00 00:00:00'),
(37859, 18781, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:30:31', '0000-00-00 00:00:00'),
(37860, 18782, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:31:03', '0000-00-00 00:00:00'),
(37861, 18783, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:31:52', '0000-00-00 00:00:00'),
(37862, 18784, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:33:46', '0000-00-00 00:00:00'),
(37863, 18785, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:36:00', '0000-00-00 00:00:00'),
(37864, 18786, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:37:01', '0000-00-00 00:00:00'),
(37865, 18787, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:38:40', '0000-00-00 00:00:00'),
(37866, 18788, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:39:37', '0000-00-00 00:00:00'),
(37867, 18789, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:40:17', '0000-00-00 00:00:00'),
(37868, 18790, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:40:51', '0000-00-00 00:00:00'),
(37869, 18791, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:42:19', '0000-00-00 00:00:00'),
(37870, 18792, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:42:21', '0000-00-00 00:00:00'),
(37871, 18793, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:43:41', '0000-00-00 00:00:00'),
(37872, 18794, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:44:02', '0000-00-00 00:00:00'),
(37873, 18795, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:45:16', '0000-00-00 00:00:00'),
(37874, 18796, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:46:32', '0000-00-00 00:00:00'),
(37875, 18797, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:47:24', '0000-00-00 00:00:00'),
(37876, 18798, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:49:37', '0000-00-00 00:00:00'),
(37877, 18799, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:50:29', '0000-00-00 00:00:00'),
(37878, 18800, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:52:38', '0000-00-00 00:00:00'),
(37879, 18801, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:53:06', '0000-00-00 00:00:00'),
(37880, 18802, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:53:47', '0000-00-00 00:00:00'),
(37881, 18803, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:53:55', '0000-00-00 00:00:00'),
(37882, 18804, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:55:04', '0000-00-00 00:00:00'),
(37883, 18805, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:55:33', '0000-00-00 00:00:00'),
(37884, 18806, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:56:05', '0000-00-00 00:00:00'),
(37885, 18807, 0.00, 0.00, 1, 1, NULL, '2017-08-11 23:59:40', '0000-00-00 00:00:00'),
(37886, 18808, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:01:41', '0000-00-00 00:00:00'),
(37887, 18809, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:01:48', '0000-00-00 00:00:00'),
(37888, 18810, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:02:57', '0000-00-00 00:00:00'),
(37889, 18811, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:04:15', '0000-00-00 00:00:00'),
(37890, 18812, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:05:00', '0000-00-00 00:00:00'),
(37891, 18813, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:05:34', '0000-00-00 00:00:00'),
(37892, 18814, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:07:23', '0000-00-00 00:00:00'),
(37893, 18815, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:08:07', '0000-00-00 00:00:00'),
(37894, 18816, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:08:33', '0000-00-00 00:00:00'),
(37895, 18817, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:09:03', '0000-00-00 00:00:00'),
(37896, 18818, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:10:17', '0000-00-00 00:00:00'),
(37897, 18819, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:11:09', '0000-00-00 00:00:00'),
(37898, 18820, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:11:58', '0000-00-00 00:00:00'),
(37899, 18821, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:12:49', '0000-00-00 00:00:00'),
(37900, 18822, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:13:41', '0000-00-00 00:00:00'),
(37901, 18823, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:14:28', '0000-00-00 00:00:00'),
(37902, 18824, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:14:45', '0000-00-00 00:00:00'),
(37903, 18825, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:15:12', '0000-00-00 00:00:00'),
(37904, 18826, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:16:36', '0000-00-00 00:00:00'),
(37905, 18827, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:17:34', '0000-00-00 00:00:00'),
(37906, 18828, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:17:46', '0000-00-00 00:00:00'),
(37907, 18829, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:18:46', '0000-00-00 00:00:00'),
(37908, 18830, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:19:01', '0000-00-00 00:00:00'),
(37909, 18831, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:20:53', '0000-00-00 00:00:00'),
(37910, 18832, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:21:32', '0000-00-00 00:00:00'),
(37911, 18833, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:23:32', '0000-00-00 00:00:00'),
(37912, 18834, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:25:04', '0000-00-00 00:00:00'),
(37913, 18835, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:25:22', '0000-00-00 00:00:00'),
(37914, 18836, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:27:02', '0000-00-00 00:00:00'),
(37915, 18837, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:28:16', '0000-00-00 00:00:00'),
(37916, 18838, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:28:52', '0000-00-00 00:00:00'),
(37917, 18839, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:29:28', '0000-00-00 00:00:00'),
(37918, 18840, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:30:05', '0000-00-00 00:00:00'),
(37919, 18841, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:31:05', '0000-00-00 00:00:00'),
(37920, 18842, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:31:34', '0000-00-00 00:00:00'),
(37921, 18843, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:32:51', '0000-00-00 00:00:00'),
(37922, 18844, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:33:02', '0000-00-00 00:00:00'),
(37923, 18845, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:33:35', '0000-00-00 00:00:00'),
(37924, 18846, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:34:06', '0000-00-00 00:00:00'),
(37925, 18847, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:34:08', '0000-00-00 00:00:00'),
(37926, 18848, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:34:57', '0000-00-00 00:00:00'),
(37927, 18849, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:35:45', '0000-00-00 00:00:00'),
(37928, 18850, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:36:34', '0000-00-00 00:00:00'),
(37929, 18851, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:37:46', '0000-00-00 00:00:00'),
(37930, 18852, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:38:46', '0000-00-00 00:00:00'),
(37931, 18853, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:39:15', '0000-00-00 00:00:00'),
(37932, 18854, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:39:46', '0000-00-00 00:00:00'),
(37933, 18855, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:40:33', '0000-00-00 00:00:00'),
(37934, 18856, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:41:00', '0000-00-00 00:00:00'),
(37935, 18857, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:42:41', '0000-00-00 00:00:00'),
(37936, 18858, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:43:55', '0000-00-00 00:00:00'),
(37937, 18859, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:44:52', '0000-00-00 00:00:00'),
(37938, 18860, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:45:13', '0000-00-00 00:00:00'),
(37939, 18861, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:46:53', '0000-00-00 00:00:00'),
(37940, 18862, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:47:45', '0000-00-00 00:00:00'),
(37941, 18863, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:49:04', '0000-00-00 00:00:00'),
(37942, 18864, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:50:03', '0000-00-00 00:00:00'),
(37943, 18866, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:51:31', '0000-00-00 00:00:00'),
(37944, 18867, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:54:23', '0000-00-00 00:00:00'),
(37945, 18868, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:54:44', '0000-00-00 00:00:00'),
(37946, 18869, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:55:28', '0000-00-00 00:00:00'),
(37947, 18870, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:55:56', '0000-00-00 00:00:00'),
(37948, 18871, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:57:16', '0000-00-00 00:00:00'),
(37949, 18872, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:57:36', '0000-00-00 00:00:00'),
(37950, 18873, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:58:06', '0000-00-00 00:00:00'),
(37951, 18874, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:58:47', '0000-00-00 00:00:00'),
(37952, 18875, 0.00, 0.00, 1, 1, NULL, '2017-08-12 00:59:47', '0000-00-00 00:00:00'),
(37953, 18876, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:02:20', '0000-00-00 00:00:00'),
(37954, 18877, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:04:25', '0000-00-00 00:00:00'),
(37955, 18878, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:12:24', '0000-00-00 00:00:00'),
(37956, 18881, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:15:42', '0000-00-00 00:00:00'),
(37957, 18884, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:17:59', '0000-00-00 00:00:00'),
(37958, 18886, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:18:51', '0000-00-00 00:00:00'),
(37959, 18887, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:20:00', '0000-00-00 00:00:00'),
(37960, 18888, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:20:01', '0000-00-00 00:00:00'),
(37961, 18889, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:21:29', '0000-00-00 00:00:00'),
(37962, 18890, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:37:34', '0000-00-00 00:00:00'),
(37963, 18891, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:38:07', '0000-00-00 00:00:00'),
(37964, 18892, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:38:59', '0000-00-00 00:00:00'),
(37965, 18893, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:40:31', '0000-00-00 00:00:00'),
(37966, 18894, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:40:45', '0000-00-00 00:00:00'),
(37967, 18895, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:41:51', '0000-00-00 00:00:00'),
(37968, 18896, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:43:55', '0000-00-00 00:00:00'),
(37969, 18897, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:45:14', '0000-00-00 00:00:00'),
(37970, 18898, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:46:09', '0000-00-00 00:00:00'),
(37971, 18899, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:47:33', '0000-00-00 00:00:00'),
(37972, 18900, 0.00, 0.00, 1, 1, NULL, '2017-08-12 01:48:19', '0000-00-00 00:00:00'),
(37973, 18901, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:39:25', '0000-00-00 00:00:00'),
(37974, 18902, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:40:06', '0000-00-00 00:00:00'),
(37975, 18903, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:42:15', '0000-00-00 00:00:00'),
(37976, 18904, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:43:27', '0000-00-00 00:00:00'),
(37977, 18905, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:44:29', '0000-00-00 00:00:00'),
(37978, 18906, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:44:33', '0000-00-00 00:00:00'),
(37979, 18907, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:45:44', '0000-00-00 00:00:00'),
(37980, 18908, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:45:46', '0000-00-00 00:00:00'),
(37981, 18910, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:46:26', '0000-00-00 00:00:00'),
(37982, 18911, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:47:10', '0000-00-00 00:00:00'),
(37983, 18912, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:47:18', '0000-00-00 00:00:00'),
(37984, 18913, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:47:40', '0000-00-00 00:00:00'),
(37985, 18914, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:48:11', '0000-00-00 00:00:00'),
(37986, 18915, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:48:37', '0000-00-00 00:00:00'),
(37987, 18916, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:49:08', '0000-00-00 00:00:00'),
(37988, 18917, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:49:11', '0000-00-00 00:00:00'),
(37989, 18918, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:49:50', '0000-00-00 00:00:00'),
(37990, 18919, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:50:27', '0000-00-00 00:00:00'),
(37991, 18920, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:51:06', '0000-00-00 00:00:00'),
(37992, 18922, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:52:38', '0000-00-00 00:00:00'),
(37993, 18923, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:52:42', '0000-00-00 00:00:00'),
(37994, 18924, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:53:20', '0000-00-00 00:00:00'),
(37995, 18925, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:53:21', '0000-00-00 00:00:00'),
(37996, 18926, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:53:51', '0000-00-00 00:00:00'),
(37997, 18928, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:55:06', '0000-00-00 00:00:00'),
(37998, 18929, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:55:30', '0000-00-00 00:00:00'),
(37999, 18930, 0.00, 0.00, 1, 1, NULL, '2017-08-12 06:59:33', '0000-00-00 00:00:00'),
(38000, 18931, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:00:34', '0000-00-00 00:00:00'),
(38001, 18932, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:01:04', '0000-00-00 00:00:00'),
(38002, 18934, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:02:04', '0000-00-00 00:00:00'),
(38003, 18935, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:02:34', '0000-00-00 00:00:00'),
(38004, 18936, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:03:16', '0000-00-00 00:00:00'),
(38005, 18939, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:04:42', '0000-00-00 00:00:00'),
(38006, 18941, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:05:29', '0000-00-00 00:00:00'),
(38007, 18942, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:06:24', '0000-00-00 00:00:00'),
(38008, 18946, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:06:35', '0000-00-00 00:00:00'),
(38009, 18947, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:07:37', '0000-00-00 00:00:00'),
(38010, 18948, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:07:39', '0000-00-00 00:00:00'),
(38011, 18949, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:11:21', '0000-00-00 00:00:00'),
(38012, 18950, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:12:30', '0000-00-00 00:00:00'),
(38013, 18951, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:15:37', '0000-00-00 00:00:00'),
(38014, 18952, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:15:45', '0000-00-00 00:00:00'),
(38015, 18953, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:16:14', '0000-00-00 00:00:00'),
(38016, 18954, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:16:58', '0000-00-00 00:00:00'),
(38017, 18955, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:17:28', '0000-00-00 00:00:00'),
(38018, 18956, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:18:03', '0000-00-00 00:00:00'),
(38019, 18957, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:18:05', '0000-00-00 00:00:00'),
(38020, 18958, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:18:12', '0000-00-00 00:00:00'),
(38021, 18959, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:19:06', '0000-00-00 00:00:00'),
(38022, 18960, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:19:22', '0000-00-00 00:00:00'),
(38023, 18961, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:19:33', '0000-00-00 00:00:00'),
(38024, 18962, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:20:51', '0000-00-00 00:00:00'),
(38025, 18963, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:23:27', '0000-00-00 00:00:00'),
(38026, 18964, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:24:32', '0000-00-00 00:00:00'),
(38027, 18965, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:24:58', '0000-00-00 00:00:00'),
(38028, 18966, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:25:56', '0000-00-00 00:00:00'),
(38029, 18967, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:27:42', '0000-00-00 00:00:00'),
(38030, 18968, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:27:45', '0000-00-00 00:00:00'),
(38031, 18969, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:28:38', '0000-00-00 00:00:00'),
(38032, 18970, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:28:40', '0000-00-00 00:00:00'),
(38033, 18971, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:29:01', '0000-00-00 00:00:00'),
(38034, 18972, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:29:41', '0000-00-00 00:00:00'),
(38035, 18973, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:29:50', '0000-00-00 00:00:00'),
(38036, 18974, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:30:00', '0000-00-00 00:00:00'),
(38037, 18975, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:38:11', '0000-00-00 00:00:00'),
(38038, 18976, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:38:35', '0000-00-00 00:00:00'),
(38039, 18977, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:38:40', '0000-00-00 00:00:00'),
(38040, 18978, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:39:09', '0000-00-00 00:00:00'),
(38041, 18979, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:39:43', '0000-00-00 00:00:00'),
(38042, 18980, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:39:50', '0000-00-00 00:00:00'),
(38043, 18981, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:40:33', '0000-00-00 00:00:00'),
(38044, 18982, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:40:47', '0000-00-00 00:00:00'),
(38045, 18983, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:41:27', '0000-00-00 00:00:00'),
(38046, 18984, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:41:42', '0000-00-00 00:00:00'),
(38047, 18985, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:42:34', '0000-00-00 00:00:00'),
(38048, 18986, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:42:34', '0000-00-00 00:00:00'),
(38049, 18987, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:43:13', '0000-00-00 00:00:00'),
(38050, 18988, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:43:26', '0000-00-00 00:00:00'),
(38051, 18989, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:44:10', '0000-00-00 00:00:00'),
(38052, 18990, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:44:24', '0000-00-00 00:00:00'),
(38053, 18991, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:44:55', '0000-00-00 00:00:00'),
(38054, 18992, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:45:13', '0000-00-00 00:00:00'),
(38055, 18993, 0.00, 0.00, 1, 1, NULL, '2017-08-12 07:45:41', '0000-00-00 00:00:00'),
(38056, 18994, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:40:41', '0000-00-00 00:00:00'),
(38057, 18995, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:42:03', '0000-00-00 00:00:00'),
(38058, 18996, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:44:05', '0000-00-00 00:00:00'),
(38059, 18997, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:44:24', '0000-00-00 00:00:00'),
(38060, 18998, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:45:06', '0000-00-00 00:00:00'),
(38061, 18999, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:45:16', '0000-00-00 00:00:00'),
(38062, 19000, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:45:25', '0000-00-00 00:00:00'),
(38063, 19001, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:45:56', '0000-00-00 00:00:00'),
(38064, 19002, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:46:52', '0000-00-00 00:00:00'),
(38065, 19003, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:47:11', '0000-00-00 00:00:00'),
(38066, 19004, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:47:29', '0000-00-00 00:00:00'),
(38067, 19006, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:49:11', '0000-00-00 00:00:00'),
(38068, 19007, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:50:40', '0000-00-00 00:00:00'),
(38069, 19009, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:51:47', '0000-00-00 00:00:00'),
(38070, 19010, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:52:09', '0000-00-00 00:00:00'),
(38071, 19011, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:52:55', '0000-00-00 00:00:00'),
(38072, 19012, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:53:02', '0000-00-00 00:00:00'),
(38073, 19013, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:53:50', '0000-00-00 00:00:00'),
(38074, 19014, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:54:34', '0000-00-00 00:00:00'),
(38075, 19016, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:55:04', '0000-00-00 00:00:00'),
(38076, 19018, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:55:55', '0000-00-00 00:00:00'),
(38077, 19022, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:57:09', '0000-00-00 00:00:00'),
(38078, 19025, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:58:17', '0000-00-00 00:00:00'),
(38079, 19026, 0.00, 0.00, 1, 1, NULL, '2017-08-12 08:59:26', '0000-00-00 00:00:00'),
(38080, 19029, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:02:36', '0000-00-00 00:00:00'),
(38081, 19030, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:02:36', '0000-00-00 00:00:00'),
(38082, 19032, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:04:02', '0000-00-00 00:00:00'),
(38083, 19033, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:05:09', '0000-00-00 00:00:00'),
(38084, 19034, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:05:27', '0000-00-00 00:00:00'),
(38085, 19035, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:06:21', '0000-00-00 00:00:00'),
(38086, 19036, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:07:18', '0000-00-00 00:00:00'),
(38087, 19037, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:07:45', '0000-00-00 00:00:00'),
(38088, 19039, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:09:42', '0000-00-00 00:00:00'),
(38089, 19040, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:09:45', '0000-00-00 00:00:00'),
(38090, 19041, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:10:42', '0000-00-00 00:00:00'),
(38091, 19042, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:11:36', '0000-00-00 00:00:00'),
(38092, 19045, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:12:54', '0000-00-00 00:00:00'),
(38093, 19046, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:13:21', '0000-00-00 00:00:00'),
(38094, 19048, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:14:51', '0000-00-00 00:00:00'),
(38095, 19049, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:15:08', '0000-00-00 00:00:00'),
(38096, 19050, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:29:55', '0000-00-00 00:00:00'),
(38097, 19051, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:31:22', '0000-00-00 00:00:00'),
(38098, 19052, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:32:27', '0000-00-00 00:00:00'),
(38099, 19053, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:32:50', '0000-00-00 00:00:00'),
(38100, 19054, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:33:15', '0000-00-00 00:00:00'),
(38101, 19055, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:33:55', '0000-00-00 00:00:00'),
(38102, 19056, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:34:25', '0000-00-00 00:00:00'),
(38103, 19057, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:34:32', '0000-00-00 00:00:00'),
(38104, 19059, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:35:34', '0000-00-00 00:00:00'),
(38105, 19063, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:38:12', '0000-00-00 00:00:00'),
(38106, 19064, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:38:59', '0000-00-00 00:00:00'),
(38107, 19065, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:39:45', '0000-00-00 00:00:00'),
(38108, 19067, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:40:46', '0000-00-00 00:00:00'),
(38109, 19068, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:41:19', '0000-00-00 00:00:00'),
(38110, 19069, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:41:24', '0000-00-00 00:00:00'),
(38111, 19071, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:42:34', '0000-00-00 00:00:00'),
(38112, 19072, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:42:40', '0000-00-00 00:00:00'),
(38113, 19074, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:43:55', '0000-00-00 00:00:00'),
(38114, 19075, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:44:39', '0000-00-00 00:00:00'),
(38115, 19076, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:44:53', '0000-00-00 00:00:00'),
(38116, 19078, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:45:41', '0000-00-00 00:00:00'),
(38117, 19079, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:46:26', '0000-00-00 00:00:00'),
(38118, 19081, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:47:26', '0000-00-00 00:00:00'),
(38119, 19082, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:47:35', '0000-00-00 00:00:00'),
(38120, 19083, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:48:37', '0000-00-00 00:00:00'),
(38121, 19084, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:49:06', '0000-00-00 00:00:00'),
(38122, 19085, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:50:34', '0000-00-00 00:00:00'),
(38123, 19086, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:51:51', '0000-00-00 00:00:00'),
(38124, 19087, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:53:38', '0000-00-00 00:00:00'),
(38125, 19088, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:53:40', '0000-00-00 00:00:00'),
(38126, 19089, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:54:28', '0000-00-00 00:00:00'),
(38127, 19090, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:54:42', '0000-00-00 00:00:00'),
(38128, 19092, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:55:38', '0000-00-00 00:00:00'),
(38129, 19093, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:55:59', '0000-00-00 00:00:00'),
(38130, 19094, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:57:01', '0000-00-00 00:00:00'),
(38131, 19097, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:57:50', '0000-00-00 00:00:00'),
(38132, 19098, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:58:13', '0000-00-00 00:00:00'),
(38133, 19099, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:58:40', '0000-00-00 00:00:00'),
(38134, 19100, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:58:57', '0000-00-00 00:00:00'),
(38135, 19101, 0.00, 0.00, 1, 1, NULL, '2017-08-12 09:59:24', '0000-00-00 00:00:00'),
(38136, 19102, 0.00, 0.00, 1, 1, NULL, '2017-08-12 10:00:22', '0000-00-00 00:00:00'),
(38137, 19103, 0.00, 0.00, 1, 1, NULL, '2017-08-12 10:00:25', '0000-00-00 00:00:00'),
(38138, 19104, 0.00, 0.00, 1, 1, NULL, '2017-08-12 10:01:13', '0000-00-00 00:00:00'),
(38139, 19105, 0.00, 0.00, 1, 1, NULL, '2017-08-13 05:57:45', '0000-00-00 00:00:00'),
(38140, 19106, 0.00, 0.00, 1, 1, NULL, '2017-08-13 05:58:11', '0000-00-00 00:00:00'),
(38141, 19107, 0.00, 0.00, 1, 1, NULL, '2017-08-13 05:58:33', '0000-00-00 00:00:00'),
(38142, 19108, 0.00, 0.00, 1, 1, NULL, '2017-08-13 05:58:53', '0000-00-00 00:00:00'),
(38143, 19109, 0.00, 0.00, 1, 1, NULL, '2017-08-13 05:59:13', '0000-00-00 00:00:00'),
(38144, 19110, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:00:14', '0000-00-00 00:00:00'),
(38145, 19111, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:00:34', '0000-00-00 00:00:00'),
(38146, 19112, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:00:53', '0000-00-00 00:00:00'),
(38147, 19113, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:01:28', '0000-00-00 00:00:00'),
(38148, 19114, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:01:52', '0000-00-00 00:00:00'),
(38149, 19115, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:02:07', '0000-00-00 00:00:00'),
(38150, 19116, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:02:30', '0000-00-00 00:00:00'),
(38151, 19117, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:02:44', '0000-00-00 00:00:00'),
(38152, 19118, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:02:59', '0000-00-00 00:00:00'),
(38153, 19120, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:04:05', '0000-00-00 00:00:00'),
(38154, 19121, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:04:23', '0000-00-00 00:00:00'),
(38155, 19122, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:04:41', '0000-00-00 00:00:00'),
(38156, 19123, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:05:28', '0000-00-00 00:00:00'),
(38157, 19124, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:05:48', '0000-00-00 00:00:00'),
(38158, 19125, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:06:42', '0000-00-00 00:00:00'),
(38159, 19126, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:07:25', '0000-00-00 00:00:00'),
(38160, 19127, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:07:43', '0000-00-00 00:00:00'),
(38161, 19128, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:08:30', '0000-00-00 00:00:00'),
(38162, 19129, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:08:54', '0000-00-00 00:00:00'),
(38163, 19130, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:09:21', '0000-00-00 00:00:00'),
(38164, 19131, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:09:34', '0000-00-00 00:00:00'),
(38165, 19132, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:09:57', '0000-00-00 00:00:00'),
(38166, 19134, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:10:55', '0000-00-00 00:00:00'),
(38167, 19135, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:13:35', '0000-00-00 00:00:00'),
(38168, 19136, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:13:51', '0000-00-00 00:00:00'),
(38169, 19137, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:14:05', '0000-00-00 00:00:00'),
(38170, 19138, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:14:23', '0000-00-00 00:00:00'),
(38171, 19139, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:15:01', '0000-00-00 00:00:00'),
(38172, 19140, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:15:21', '0000-00-00 00:00:00'),
(38173, 19141, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:15:24', '0000-00-00 00:00:00'),
(38174, 19142, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:15:57', '0000-00-00 00:00:00'),
(38175, 19143, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:16:13', '0000-00-00 00:00:00'),
(38176, 19144, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:16:30', '0000-00-00 00:00:00'),
(38177, 19145, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:16:44', '0000-00-00 00:00:00'),
(38178, 19146, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:16:47', '0000-00-00 00:00:00'),
(38179, 19147, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:16:58', '0000-00-00 00:00:00'),
(38180, 19148, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:17:12', '0000-00-00 00:00:00'),
(38181, 19149, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:17:39', '0000-00-00 00:00:00'),
(38182, 19150, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:17:53', '0000-00-00 00:00:00'),
(38183, 19151, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:17:57', '0000-00-00 00:00:00'),
(38184, 19152, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:18:09', '0000-00-00 00:00:00'),
(38185, 19153, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:18:20', '0000-00-00 00:00:00'),
(38186, 19154, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:18:50', '0000-00-00 00:00:00'),
(38187, 19155, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:19:10', '0000-00-00 00:00:00'),
(38188, 19156, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:19:26', '0000-00-00 00:00:00'),
(38189, 19157, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:19:47', '0000-00-00 00:00:00'),
(38190, 19158, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:20:09', '0000-00-00 00:00:00'),
(38191, 19159, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:20:28', '0000-00-00 00:00:00'),
(38192, 19160, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:20:49', '0000-00-00 00:00:00'),
(38193, 19161, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:21:04', '0000-00-00 00:00:00'),
(38194, 19162, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:21:50', '0000-00-00 00:00:00'),
(38195, 19163, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:22:21', '0000-00-00 00:00:00'),
(38196, 19164, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:23:25', '0000-00-00 00:00:00'),
(38197, 19165, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:23:49', '0000-00-00 00:00:00'),
(38198, 19166, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:23:50', '0000-00-00 00:00:00'),
(38199, 19167, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:24:05', '0000-00-00 00:00:00'),
(38200, 19168, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:24:49', '0000-00-00 00:00:00'),
(38201, 19169, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:24:52', '0000-00-00 00:00:00'),
(38202, 19170, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:25:17', '0000-00-00 00:00:00'),
(38203, 19171, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:25:38', '0000-00-00 00:00:00'),
(38204, 19172, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:25:47', '0000-00-00 00:00:00'),
(38205, 19173, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:26:23', '0000-00-00 00:00:00'),
(38206, 19174, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:26:48', '0000-00-00 00:00:00'),
(38207, 19175, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:27:09', '0000-00-00 00:00:00'),
(38208, 19176, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:27:10', '0000-00-00 00:00:00'),
(38209, 19177, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:27:30', '0000-00-00 00:00:00'),
(38210, 19178, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:27:45', '0000-00-00 00:00:00'),
(38211, 19179, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:28:04', '0000-00-00 00:00:00'),
(38212, 19180, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:28:05', '0000-00-00 00:00:00'),
(38213, 19181, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:28:24', '0000-00-00 00:00:00'),
(38214, 19182, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:28:51', '0000-00-00 00:00:00'),
(38215, 19183, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:29:58', '0000-00-00 00:00:00'),
(38216, 19184, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:30:42', '0000-00-00 00:00:00'),
(38217, 19185, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:30:53', '0000-00-00 00:00:00'),
(38218, 19186, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:31:14', '0000-00-00 00:00:00'),
(38219, 19187, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:31:18', '0000-00-00 00:00:00'),
(38220, 19188, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:31:32', '0000-00-00 00:00:00'),
(38221, 19189, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:32:14', '0000-00-00 00:00:00'),
(38222, 19190, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:32:35', '0000-00-00 00:00:00'),
(38223, 19191, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:32:54', '0000-00-00 00:00:00'),
(38224, 19192, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:32:58', '0000-00-00 00:00:00'),
(38225, 19193, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:33:08', '0000-00-00 00:00:00'),
(38226, 19194, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:33:22', '0000-00-00 00:00:00'),
(38227, 19195, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:33:37', '0000-00-00 00:00:00'),
(38228, 19196, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:33:47', '0000-00-00 00:00:00'),
(38229, 19197, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:33:54', '0000-00-00 00:00:00'),
(38230, 19198, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:34:14', '0000-00-00 00:00:00'),
(38231, 19199, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:34:43', '0000-00-00 00:00:00'),
(38232, 19200, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:34:50', '0000-00-00 00:00:00'),
(38233, 19201, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:34:59', '0000-00-00 00:00:00'),
(38234, 19202, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:35:19', '0000-00-00 00:00:00'),
(38235, 19203, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:36:08', '0000-00-00 00:00:00'),
(38236, 19204, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:36:25', '0000-00-00 00:00:00'),
(38237, 19205, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:36:44', '0000-00-00 00:00:00'),
(38238, 19206, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:37:00', '0000-00-00 00:00:00'),
(38239, 19207, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:37:18', '0000-00-00 00:00:00'),
(38240, 19208, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:37:37', '0000-00-00 00:00:00'),
(38241, 19209, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:37:40', '0000-00-00 00:00:00'),
(38242, 19210, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:38:10', '0000-00-00 00:00:00'),
(38243, 19211, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:38:24', '0000-00-00 00:00:00'),
(38244, 19212, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:38:45', '0000-00-00 00:00:00'),
(38245, 19213, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:39:00', '0000-00-00 00:00:00'),
(38246, 19215, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:39:06', '0000-00-00 00:00:00'),
(38247, 19216, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:39:31', '0000-00-00 00:00:00'),
(38248, 19217, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:39:45', '0000-00-00 00:00:00'),
(38249, 19218, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:39:54', '0000-00-00 00:00:00'),
(38250, 19219, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:40:03', '0000-00-00 00:00:00'),
(38251, 19220, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:40:25', '0000-00-00 00:00:00'),
(38252, 19221, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:40:38', '0000-00-00 00:00:00'),
(38253, 19222, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:40:44', '0000-00-00 00:00:00'),
(38254, 19223, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:40:53', '0000-00-00 00:00:00'),
(38255, 19224, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:41:48', '0000-00-00 00:00:00'),
(38256, 19225, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:42:23', '0000-00-00 00:00:00'),
(38257, 19226, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:43:32', '0000-00-00 00:00:00'),
(38258, 19227, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:43:46', '0000-00-00 00:00:00'),
(38259, 19228, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:43:51', '0000-00-00 00:00:00'),
(38260, 19229, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:44:09', '0000-00-00 00:00:00'),
(38261, 19230, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:44:38', '0000-00-00 00:00:00'),
(38262, 19231, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:46:22', '0000-00-00 00:00:00'),
(38263, 19232, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:46:35', '0000-00-00 00:00:00'),
(38264, 19233, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:46:48', '0000-00-00 00:00:00'),
(38265, 19234, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:47:02', '0000-00-00 00:00:00'),
(38266, 19235, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:47:33', '0000-00-00 00:00:00'),
(38267, 19236, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:48:22', '0000-00-00 00:00:00'),
(38268, 19237, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:49:18', '0000-00-00 00:00:00'),
(38269, 19238, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:49:55', '0000-00-00 00:00:00'),
(38270, 19239, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:50:31', '0000-00-00 00:00:00'),
(38271, 19240, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:51:19', '0000-00-00 00:00:00'),
(38272, 19241, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:51:40', '0000-00-00 00:00:00'),
(38273, 19242, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:52:08', '0000-00-00 00:00:00'),
(38274, 19243, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:52:22', '0000-00-00 00:00:00'),
(38275, 19244, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:52:36', '0000-00-00 00:00:00'),
(38276, 19245, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:52:38', '0000-00-00 00:00:00'),
(38277, 19246, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:52:48', '0000-00-00 00:00:00'),
(38278, 19247, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:53:03', '0000-00-00 00:00:00'),
(38279, 19248, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:53:20', '0000-00-00 00:00:00'),
(38280, 19249, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:53:21', '0000-00-00 00:00:00'),
(38281, 19250, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:53:34', '0000-00-00 00:00:00'),
(38282, 19251, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:53:46', '0000-00-00 00:00:00'),
(38283, 19252, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:53:55', '0000-00-00 00:00:00'),
(38284, 19253, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:53:59', '0000-00-00 00:00:00'),
(38285, 19254, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:54:14', '0000-00-00 00:00:00'),
(38286, 19255, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:54:28', '0000-00-00 00:00:00'),
(38287, 19256, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:54:29', '0000-00-00 00:00:00'),
(38288, 19257, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:55:41', '0000-00-00 00:00:00'),
(38289, 19258, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:55:54', '0000-00-00 00:00:00'),
(38290, 19259, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:55:56', '0000-00-00 00:00:00'),
(38291, 19260, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:56:14', '0000-00-00 00:00:00'),
(38292, 19261, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:56:38', '0000-00-00 00:00:00'),
(38293, 19262, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:56:50', '0000-00-00 00:00:00'),
(38294, 19263, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:56:58', '0000-00-00 00:00:00'),
(38295, 19264, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:57:17', '0000-00-00 00:00:00'),
(38296, 19265, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:57:39', '0000-00-00 00:00:00'),
(38297, 19266, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:57:41', '0000-00-00 00:00:00'),
(38298, 19267, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:57:55', '0000-00-00 00:00:00'),
(38299, 19268, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:58:09', '0000-00-00 00:00:00'),
(38300, 19269, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:58:16', '0000-00-00 00:00:00'),
(38301, 19270, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:58:26', '0000-00-00 00:00:00'),
(38302, 19271, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:58:40', '0000-00-00 00:00:00'),
(38303, 19272, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:58:55', '0000-00-00 00:00:00'),
(38304, 19273, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:59:25', '0000-00-00 00:00:00'),
(38305, 19274, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:59:38', '0000-00-00 00:00:00'),
(38306, 19275, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:59:43', '0000-00-00 00:00:00'),
(38307, 19276, 0.00, 0.00, 1, 1, NULL, '2017-08-13 06:59:54', '0000-00-00 00:00:00'),
(38308, 19277, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:00:15', '0000-00-00 00:00:00'),
(38309, 19278, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:00:29', '0000-00-00 00:00:00'),
(38310, 19279, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:00:41', '0000-00-00 00:00:00'),
(38311, 19280, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:00:48', '0000-00-00 00:00:00'),
(38312, 19281, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:01:05', '0000-00-00 00:00:00'),
(38313, 19282, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:01:13', '0000-00-00 00:00:00'),
(38314, 19283, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:01:19', '0000-00-00 00:00:00'),
(38315, 19285, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:01:36', '0000-00-00 00:00:00'),
(38316, 19286, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:02:05', '0000-00-00 00:00:00'),
(38317, 19287, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:02:10', '0000-00-00 00:00:00'),
(38318, 19288, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:02:49', '0000-00-00 00:00:00'),
(38319, 19289, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:03:03', '0000-00-00 00:00:00'),
(38320, 19290, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:03:11', '0000-00-00 00:00:00'),
(38321, 19291, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:04:23', '0000-00-00 00:00:00'),
(38322, 19292, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:05:11', '0000-00-00 00:00:00'),
(38323, 19293, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:05:58', '0000-00-00 00:00:00'),
(38324, 19294, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:06:31', '0000-00-00 00:00:00'),
(38325, 19295, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:15:32', '0000-00-00 00:00:00'),
(38326, 19296, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:15:46', '0000-00-00 00:00:00'),
(38327, 19297, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:16:01', '0000-00-00 00:00:00'),
(38328, 19298, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:16:14', '0000-00-00 00:00:00'),
(38329, 19299, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:17:05', '0000-00-00 00:00:00'),
(38330, 19300, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:17:21', '0000-00-00 00:00:00'),
(38331, 19301, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:17:34', '0000-00-00 00:00:00'),
(38332, 19302, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:17:56', '0000-00-00 00:00:00'),
(38333, 19303, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:18:39', '0000-00-00 00:00:00'),
(38334, 19304, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:19:04', '0000-00-00 00:00:00'),
(38335, 19305, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:19:23', '0000-00-00 00:00:00'),
(38336, 19306, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:19:39', '0000-00-00 00:00:00'),
(38337, 19307, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:19:57', '0000-00-00 00:00:00'),
(38338, 19308, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:20:04', '0000-00-00 00:00:00'),
(38339, 19309, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:20:20', '0000-00-00 00:00:00'),
(38340, 19310, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:20:35', '0000-00-00 00:00:00'),
(38341, 19311, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:21:01', '0000-00-00 00:00:00'),
(38342, 19312, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:21:06', '0000-00-00 00:00:00'),
(38343, 19313, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:21:28', '0000-00-00 00:00:00'),
(38344, 19314, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:22:10', '0000-00-00 00:00:00'),
(38345, 19315, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:22:23', '0000-00-00 00:00:00'),
(38346, 19316, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:23:04', '0000-00-00 00:00:00'),
(38347, 19317, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:23:05', '0000-00-00 00:00:00'),
(38348, 19318, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:23:23', '0000-00-00 00:00:00'),
(38349, 19319, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:23:35', '0000-00-00 00:00:00'),
(38350, 19320, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:23:41', '0000-00-00 00:00:00'),
(38351, 19321, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:24:03', '0000-00-00 00:00:00'),
(38352, 19322, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:24:03', '0000-00-00 00:00:00'),
(38353, 19323, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:24:20', '0000-00-00 00:00:00'),
(38354, 19324, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:24:33', '0000-00-00 00:00:00'),
(38355, 19325, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:24:38', '0000-00-00 00:00:00'),
(38356, 19326, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:24:52', '0000-00-00 00:00:00'),
(38357, 19327, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:25:03', '0000-00-00 00:00:00'),
(38358, 19328, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:25:09', '0000-00-00 00:00:00'),
(38359, 19329, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:25:23', '0000-00-00 00:00:00'),
(38360, 19330, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:25:41', '0000-00-00 00:00:00'),
(38361, 19331, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:25:45', '0000-00-00 00:00:00'),
(38362, 19332, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:26:06', '0000-00-00 00:00:00'),
(38363, 19333, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:26:18', '0000-00-00 00:00:00'),
(38364, 19334, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:26:21', '0000-00-00 00:00:00'),
(38365, 19335, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:26:38', '0000-00-00 00:00:00'),
(38366, 19336, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:26:55', '0000-00-00 00:00:00'),
(38367, 19337, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:27:13', '0000-00-00 00:00:00'),
(38368, 19338, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:27:30', '0000-00-00 00:00:00'),
(38369, 19339, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:27:45', '0000-00-00 00:00:00'),
(38370, 19340, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:27:59', '0000-00-00 00:00:00'),
(38371, 19341, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:27:59', '0000-00-00 00:00:00'),
(38372, 19342, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:28:14', '0000-00-00 00:00:00'),
(38373, 19343, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:28:30', '0000-00-00 00:00:00'),
(38374, 19344, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:28:31', '0000-00-00 00:00:00'),
(38375, 19345, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:28:47', '0000-00-00 00:00:00'),
(38376, 19346, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:29:03', '0000-00-00 00:00:00'),
(38377, 19347, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:29:16', '0000-00-00 00:00:00'),
(38378, 19348, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:29:35', '0000-00-00 00:00:00'),
(38379, 19349, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:29:44', '0000-00-00 00:00:00'),
(38380, 19350, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:29:50', '0000-00-00 00:00:00'),
(38381, 19351, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:30:17', '0000-00-00 00:00:00'),
(38382, 19352, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:30:29', '0000-00-00 00:00:00'),
(38383, 19353, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:30:43', '0000-00-00 00:00:00'),
(38384, 19354, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:30:45', '0000-00-00 00:00:00'),
(38385, 19355, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:31:03', '0000-00-00 00:00:00'),
(38386, 19356, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:31:18', '0000-00-00 00:00:00'),
(38387, 19357, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:31:21', '0000-00-00 00:00:00'),
(38388, 19358, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:31:37', '0000-00-00 00:00:00'),
(38389, 19359, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:31:54', '0000-00-00 00:00:00'),
(38390, 19360, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:32:00', '0000-00-00 00:00:00'),
(38391, 19361, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:32:09', '0000-00-00 00:00:00'),
(38392, 19362, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:32:23', '0000-00-00 00:00:00'),
(38393, 19363, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:32:43', '0000-00-00 00:00:00'),
(38394, 19364, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:33:42', '0000-00-00 00:00:00'),
(38395, 19365, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:34:20', '0000-00-00 00:00:00'),
(38396, 19366, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:34:42', '0000-00-00 00:00:00'),
(38397, 19367, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:34:48', '0000-00-00 00:00:00'),
(38398, 19368, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:34:58', '0000-00-00 00:00:00'),
(38399, 19369, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:35:22', '0000-00-00 00:00:00'),
(38400, 19370, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:35:29', '0000-00-00 00:00:00'),
(38401, 19371, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:35:37', '0000-00-00 00:00:00'),
(38402, 19372, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:35:55', '0000-00-00 00:00:00'),
(38403, 19373, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:36:10', '0000-00-00 00:00:00'),
(38404, 19374, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:36:19', '0000-00-00 00:00:00'),
(38405, 19375, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:36:40', '0000-00-00 00:00:00'),
(38406, 19376, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:36:52', '0000-00-00 00:00:00'),
(38407, 19377, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:37:26', '0000-00-00 00:00:00'),
(38408, 19378, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:38:03', '0000-00-00 00:00:00'),
(38409, 19379, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:38:07', '0000-00-00 00:00:00'),
(38410, 19380, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:38:40', '0000-00-00 00:00:00'),
(38411, 19381, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:38:45', '0000-00-00 00:00:00'),
(38412, 19382, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:39:15', '0000-00-00 00:00:00'),
(38413, 19383, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:40:00', '0000-00-00 00:00:00'),
(38414, 19384, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:42:09', '0000-00-00 00:00:00'),
(38415, 19385, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:42:50', '0000-00-00 00:00:00'),
(38416, 19386, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:43:52', '0000-00-00 00:00:00'),
(38417, 19387, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:44:54', '0000-00-00 00:00:00'),
(38418, 19388, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:45:26', '0000-00-00 00:00:00'),
(38419, 19389, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:45:56', '0000-00-00 00:00:00'),
(38420, 19390, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:46:22', '0000-00-00 00:00:00'),
(38421, 19391, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:46:35', '0000-00-00 00:00:00'),
(38422, 19392, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:46:47', '0000-00-00 00:00:00'),
(38423, 19393, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:46:59', '0000-00-00 00:00:00'),
(38424, 19394, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:47:20', '0000-00-00 00:00:00'),
(38425, 19395, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:47:28', '0000-00-00 00:00:00'),
(38426, 19396, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:47:37', '0000-00-00 00:00:00'),
(38427, 19397, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:47:58', '0000-00-00 00:00:00'),
(38428, 19398, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:48:09', '0000-00-00 00:00:00'),
(38429, 19399, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:48:46', '0000-00-00 00:00:00'),
(38430, 19400, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:48:49', '0000-00-00 00:00:00'),
(38431, 19401, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:49:01', '0000-00-00 00:00:00'),
(38432, 19402, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:49:19', '0000-00-00 00:00:00'),
(38433, 19403, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:49:34', '0000-00-00 00:00:00'),
(38434, 19404, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:49:54', '0000-00-00 00:00:00'),
(38435, 19405, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:50:00', '0000-00-00 00:00:00'),
(38436, 19406, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:50:15', '0000-00-00 00:00:00'),
(38437, 19407, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:50:33', '0000-00-00 00:00:00'),
(38438, 19408, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:50:41', '0000-00-00 00:00:00'),
(38439, 19409, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:51:34', '0000-00-00 00:00:00'),
(38440, 19410, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:52:26', '0000-00-00 00:00:00'),
(38441, 19411, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:52:57', '0000-00-00 00:00:00'),
(38442, 19412, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:53:58', '0000-00-00 00:00:00'),
(38443, 19413, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:54:32', '0000-00-00 00:00:00'),
(38444, 19414, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:55:14', '0000-00-00 00:00:00'),
(38445, 19415, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:55:53', '0000-00-00 00:00:00'),
(38446, 19416, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:56:22', '0000-00-00 00:00:00'),
(38447, 19417, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:56:57', '0000-00-00 00:00:00'),
(38448, 19418, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:57:31', '0000-00-00 00:00:00'),
(38449, 19419, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:58:19', '0000-00-00 00:00:00'),
(38450, 19420, 0.00, 0.00, 1, 1, NULL, '2017-08-13 07:58:58', '0000-00-00 00:00:00'),
(38451, 19421, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:00:40', '0000-00-00 00:00:00'),
(38452, 19422, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:01:23', '0000-00-00 00:00:00'),
(38453, 19423, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:01:55', '0000-00-00 00:00:00'),
(38454, 19424, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:02:14', '0000-00-00 00:00:00'),
(38455, 19425, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:02:17', '0000-00-00 00:00:00'),
(38456, 19426, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:02:55', '0000-00-00 00:00:00'),
(38457, 19427, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:03:28', '0000-00-00 00:00:00'),
(38458, 19428, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:03:29', '0000-00-00 00:00:00'),
(38459, 19429, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:03:52', '0000-00-00 00:00:00'),
(38460, 19430, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:04:07', '0000-00-00 00:00:00'),
(38461, 19431, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:04:12', '0000-00-00 00:00:00'),
(38462, 19432, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:04:25', '0000-00-00 00:00:00'),
(38463, 19433, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:04:40', '0000-00-00 00:00:00'),
(38464, 19434, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:04:57', '0000-00-00 00:00:00'),
(38465, 19435, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:05:22', '0000-00-00 00:00:00'),
(38466, 19436, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:05:35', '0000-00-00 00:00:00'),
(38467, 19437, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:05:52', '0000-00-00 00:00:00'),
(38468, 19438, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:05:53', '0000-00-00 00:00:00'),
(38469, 19439, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:06:15', '0000-00-00 00:00:00'),
(38470, 19440, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:06:28', '0000-00-00 00:00:00'),
(38471, 19441, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:07:55', '0000-00-00 00:00:00'),
(38472, 19442, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:08:34', '0000-00-00 00:00:00'),
(38473, 19443, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:08:45', '0000-00-00 00:00:00'),
(38474, 19444, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:08:51', '0000-00-00 00:00:00'),
(38475, 19445, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:09:06', '0000-00-00 00:00:00'),
(38476, 19446, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:09:23', '0000-00-00 00:00:00'),
(38477, 19447, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:09:47', '0000-00-00 00:00:00'),
(38478, 19448, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:09:57', '0000-00-00 00:00:00'),
(38479, 19449, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:10:24', '0000-00-00 00:00:00'),
(38480, 19450, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:10:38', '0000-00-00 00:00:00'),
(38481, 19451, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:10:50', '0000-00-00 00:00:00'),
(38482, 19452, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:10:58', '0000-00-00 00:00:00'),
(38483, 19453, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:11:24', '0000-00-00 00:00:00'),
(38484, 19455, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:11:54', '0000-00-00 00:00:00'),
(38485, 19456, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:12:02', '0000-00-00 00:00:00'),
(38486, 19457, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:12:20', '0000-00-00 00:00:00'),
(38487, 19458, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:12:21', '0000-00-00 00:00:00'),
(38488, 19459, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:12:39', '0000-00-00 00:00:00'),
(38489, 19460, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:12:52', '0000-00-00 00:00:00'),
(38490, 19461, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:12:54', '0000-00-00 00:00:00'),
(38491, 19462, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:13:16', '0000-00-00 00:00:00'),
(38492, 19463, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:13:36', '0000-00-00 00:00:00'),
(38493, 19464, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:13:41', '0000-00-00 00:00:00'),
(38494, 19465, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:14:06', '0000-00-00 00:00:00'),
(38495, 19466, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:14:23', '0000-00-00 00:00:00'),
(38496, 19467, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:14:41', '0000-00-00 00:00:00'),
(38497, 19468, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:14:54', '0000-00-00 00:00:00'),
(38498, 19469, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:15:25', '0000-00-00 00:00:00'),
(38499, 19470, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:16:04', '0000-00-00 00:00:00'),
(38500, 19471, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:16:14', '0000-00-00 00:00:00'),
(38501, 19472, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:16:29', '0000-00-00 00:00:00'),
(38502, 19473, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:16:44', '0000-00-00 00:00:00'),
(38503, 19474, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:16:57', '0000-00-00 00:00:00'),
(38504, 19475, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:17:56', '0000-00-00 00:00:00'),
(38505, 19476, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:18:00', '0000-00-00 00:00:00'),
(38506, 19477, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:18:11', '0000-00-00 00:00:00'),
(38507, 19478, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:18:24', '0000-00-00 00:00:00'),
(38508, 19480, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:18:50', '0000-00-00 00:00:00'),
(38509, 19481, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:18:52', '0000-00-00 00:00:00'),
(38510, 19482, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:19:15', '0000-00-00 00:00:00'),
(38511, 19483, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:19:27', '0000-00-00 00:00:00'),
(38512, 19484, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:19:34', '0000-00-00 00:00:00'),
(38513, 19485, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:19:55', '0000-00-00 00:00:00'),
(38514, 19486, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:20:00', '0000-00-00 00:00:00'),
(38515, 19487, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:20:22', '0000-00-00 00:00:00'),
(38516, 19488, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:20:41', '0000-00-00 00:00:00'),
(38517, 19489, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:20:43', '0000-00-00 00:00:00'),
(38518, 19490, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:20:59', '0000-00-00 00:00:00'),
(38519, 19491, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:21:14', '0000-00-00 00:00:00'),
(38520, 19492, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:21:30', '0000-00-00 00:00:00'),
(38521, 19493, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:21:35', '0000-00-00 00:00:00'),
(38522, 19494, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:21:46', '0000-00-00 00:00:00'),
(38523, 19495, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:22:12', '0000-00-00 00:00:00'),
(38524, 19496, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:22:32', '0000-00-00 00:00:00'),
(38525, 19497, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:22:39', '0000-00-00 00:00:00'),
(38526, 19498, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:22:49', '0000-00-00 00:00:00'),
(38527, 19499, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:23:05', '0000-00-00 00:00:00'),
(38528, 19500, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:23:15', '0000-00-00 00:00:00'),
(38529, 19501, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:23:26', '0000-00-00 00:00:00'),
(38530, 19502, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:23:44', '0000-00-00 00:00:00'),
(38531, 19503, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:23:52', '0000-00-00 00:00:00'),
(38532, 19504, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:24:00', '0000-00-00 00:00:00'),
(38533, 19505, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:24:17', '0000-00-00 00:00:00'),
(38534, 19506, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:24:19', '0000-00-00 00:00:00'),
(38535, 19507, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:24:44', '0000-00-00 00:00:00'),
(38536, 19508, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:24:44', '0000-00-00 00:00:00'),
(38537, 19509, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:25:51', '0000-00-00 00:00:00'),
(38538, 19510, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:26:41', '0000-00-00 00:00:00'),
(38539, 19511, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:28:28', '0000-00-00 00:00:00'),
(38540, 19512, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:28:57', '0000-00-00 00:00:00'),
(38541, 19513, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:29:22', '0000-00-00 00:00:00'),
(38542, 19514, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:29:25', '0000-00-00 00:00:00'),
(38543, 19515, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:29:42', '0000-00-00 00:00:00'),
(38544, 19516, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:29:56', '0000-00-00 00:00:00'),
(38545, 19517, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:30:02', '0000-00-00 00:00:00'),
(38546, 19518, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:30:16', '0000-00-00 00:00:00'),
(38547, 19519, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:30:34', '0000-00-00 00:00:00'),
(38548, 19520, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:30:43', '0000-00-00 00:00:00'),
(38549, 19521, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:30:59', '0000-00-00 00:00:00'),
(38550, 19522, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:31:19', '0000-00-00 00:00:00'),
(38551, 19523, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:31:43', '0000-00-00 00:00:00'),
(38552, 19524, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:31:57', '0000-00-00 00:00:00'),
(38553, 19525, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:32:15', '0000-00-00 00:00:00'),
(38554, 19526, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:32:35', '0000-00-00 00:00:00'),
(38555, 19527, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:33:15', '0000-00-00 00:00:00'),
(38556, 19528, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:34:17', '0000-00-00 00:00:00'),
(38557, 19529, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:34:49', '0000-00-00 00:00:00'),
(38558, 19530, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:35:24', '0000-00-00 00:00:00'),
(38559, 19531, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:36:13', '0000-00-00 00:00:00'),
(38560, 19532, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:36:32', '0000-00-00 00:00:00'),
(38561, 19533, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:36:56', '0000-00-00 00:00:00'),
(38562, 19534, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:36:58', '0000-00-00 00:00:00'),
(38563, 19535, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:37:12', '0000-00-00 00:00:00'),
(38564, 19536, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:37:52', '0000-00-00 00:00:00'),
(38565, 19538, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:38:19', '0000-00-00 00:00:00'),
(38566, 19539, 0.00, 0.00, 0, 1, NULL, '2017-08-13 08:38:21', '0000-00-00 00:00:00'),
(38914, 19539, 20.00, 25.00, 1, 1, NULL, '2017-08-13 21:45:07', '0000-00-00 00:00:00'),
(38567, 19540, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:39:06', '0000-00-00 00:00:00'),
(38568, 19541, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:39:16', '0000-00-00 00:00:00'),
(38569, 19542, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:39:57', '0000-00-00 00:00:00'),
(38570, 19543, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:40:22', '0000-00-00 00:00:00'),
(38571, 19544, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:40:26', '0000-00-00 00:00:00'),
(38572, 19545, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:40:37', '0000-00-00 00:00:00'),
(38573, 19546, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:41:11', '0000-00-00 00:00:00'),
(38574, 19547, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:42:34', '0000-00-00 00:00:00'),
(38575, 19548, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:42:41', '0000-00-00 00:00:00'),
(38576, 19549, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:42:54', '0000-00-00 00:00:00'),
(38577, 19550, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:43:02', '0000-00-00 00:00:00'),
(38578, 19551, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:43:06', '0000-00-00 00:00:00'),
(38579, 19553, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:43:37', '0000-00-00 00:00:00'),
(38580, 19554, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:43:54', '0000-00-00 00:00:00'),
(38581, 19555, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:46:07', '0000-00-00 00:00:00'),
(38582, 19556, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:46:22', '0000-00-00 00:00:00'),
(38583, 19558, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:47:15', '0000-00-00 00:00:00'),
(38584, 19559, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:47:26', '0000-00-00 00:00:00'),
(38585, 19560, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:47:38', '0000-00-00 00:00:00'),
(38586, 19561, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:48:11', '0000-00-00 00:00:00'),
(38587, 19562, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:49:17', '0000-00-00 00:00:00'),
(38588, 19563, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:49:34', '0000-00-00 00:00:00'),
(38589, 19564, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:50:08', '0000-00-00 00:00:00'),
(38590, 19565, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:50:20', '0000-00-00 00:00:00'),
(38591, 19566, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:50:34', '0000-00-00 00:00:00'),
(38592, 19567, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:50:45', '0000-00-00 00:00:00'),
(38593, 19568, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:50:57', '0000-00-00 00:00:00'),
(38594, 19569, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:51:09', '0000-00-00 00:00:00'),
(38595, 19570, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:51:27', '0000-00-00 00:00:00'),
(38596, 19571, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:51:40', '0000-00-00 00:00:00'),
(38597, 19572, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:51:53', '0000-00-00 00:00:00'),
(38598, 19573, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:52:13', '0000-00-00 00:00:00'),
(38599, 19574, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:52:26', '0000-00-00 00:00:00'),
(38600, 19575, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:52:44', '0000-00-00 00:00:00'),
(38601, 19576, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:52:58', '0000-00-00 00:00:00'),
(38602, 19577, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:53:20', '0000-00-00 00:00:00'),
(38603, 19578, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:53:35', '0000-00-00 00:00:00'),
(38604, 19579, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:53:46', '0000-00-00 00:00:00'),
(38605, 19580, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:54:18', '0000-00-00 00:00:00'),
(38606, 19581, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:54:28', '0000-00-00 00:00:00'),
(38607, 19582, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:54:46', '0000-00-00 00:00:00'),
(38608, 19583, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:55:03', '0000-00-00 00:00:00'),
(38609, 19584, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:55:20', '0000-00-00 00:00:00'),
(38610, 19585, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:55:58', '0000-00-00 00:00:00'),
(38611, 19586, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:56:09', '0000-00-00 00:00:00'),
(38612, 19587, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:56:19', '0000-00-00 00:00:00'),
(38613, 19588, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:56:31', '0000-00-00 00:00:00'),
(38614, 19589, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:56:44', '0000-00-00 00:00:00'),
(38615, 19590, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:56:55', '0000-00-00 00:00:00'),
(38616, 19591, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:57:19', '0000-00-00 00:00:00'),
(38617, 19592, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:57:56', '0000-00-00 00:00:00'),
(38618, 19593, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:58:11', '0000-00-00 00:00:00'),
(38619, 19595, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:58:41', '0000-00-00 00:00:00'),
(38620, 19596, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:58:53', '0000-00-00 00:00:00'),
(38621, 19597, 0.00, 0.00, 1, 1, NULL, '2017-08-13 08:59:44', '0000-00-00 00:00:00'),
(38622, 19598, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:00:02', '0000-00-00 00:00:00'),
(38623, 19599, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:00:26', '0000-00-00 00:00:00'),
(38624, 19600, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:00:39', '0000-00-00 00:00:00'),
(38625, 19601, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:00:54', '0000-00-00 00:00:00'),
(38626, 19602, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:01:06', '0000-00-00 00:00:00'),
(38627, 19603, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:01:28', '0000-00-00 00:00:00'),
(38628, 19604, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:01:46', '0000-00-00 00:00:00'),
(38629, 19605, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:02:18', '0000-00-00 00:00:00'),
(38630, 19606, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:02:31', '0000-00-00 00:00:00'),
(38631, 19607, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:02:42', '0000-00-00 00:00:00'),
(38632, 19608, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:02:54', '0000-00-00 00:00:00'),
(38633, 19609, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:03:06', '0000-00-00 00:00:00'),
(38634, 19610, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:03:22', '0000-00-00 00:00:00'),
(38635, 19611, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:03:35', '0000-00-00 00:00:00'),
(38636, 19612, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:03:47', '0000-00-00 00:00:00'),
(38637, 19613, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:04:06', '0000-00-00 00:00:00'),
(38638, 19614, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:04:51', '0000-00-00 00:00:00'),
(38639, 19615, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:05:04', '0000-00-00 00:00:00'),
(38640, 19616, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:05:19', '0000-00-00 00:00:00'),
(38641, 19617, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:05:34', '0000-00-00 00:00:00'),
(38642, 19618, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:05:51', '0000-00-00 00:00:00'),
(38643, 19620, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:06:32', '0000-00-00 00:00:00'),
(38644, 19621, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:06:55', '0000-00-00 00:00:00'),
(38645, 19622, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:07:07', '0000-00-00 00:00:00'),
(38646, 19623, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:07:26', '0000-00-00 00:00:00'),
(38647, 19624, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:07:36', '0000-00-00 00:00:00'),
(38648, 19625, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:07:51', '0000-00-00 00:00:00'),
(38649, 19626, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:08:02', '0000-00-00 00:00:00'),
(38650, 19627, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:08:17', '0000-00-00 00:00:00'),
(38651, 19628, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:08:31', '0000-00-00 00:00:00'),
(38652, 19629, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:08:45', '0000-00-00 00:00:00'),
(38653, 19630, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:09:15', '0000-00-00 00:00:00'),
(38654, 19631, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:09:26', '0000-00-00 00:00:00'),
(38655, 19632, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:09:55', '0000-00-00 00:00:00'),
(38656, 19633, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:10:39', '0000-00-00 00:00:00'),
(38657, 19634, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:13:13', '0000-00-00 00:00:00'),
(38658, 19635, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:13:30', '0000-00-00 00:00:00'),
(38659, 19636, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:13:47', '0000-00-00 00:00:00'),
(38660, 19637, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:14:06', '0000-00-00 00:00:00'),
(38661, 19638, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:14:23', '0000-00-00 00:00:00'),
(38662, 19639, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:14:40', '0000-00-00 00:00:00'),
(38663, 19640, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:15:00', '0000-00-00 00:00:00'),
(38664, 19641, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:15:19', '0000-00-00 00:00:00'),
(38665, 19642, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:15:34', '0000-00-00 00:00:00'),
(38666, 19643, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:15:51', '0000-00-00 00:00:00'),
(38667, 19644, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:16:11', '0000-00-00 00:00:00'),
(38668, 19645, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:16:29', '0000-00-00 00:00:00'),
(38669, 19646, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:16:52', '0000-00-00 00:00:00'),
(38670, 19647, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:17:11', '0000-00-00 00:00:00'),
(38671, 19648, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:17:23', '0000-00-00 00:00:00'),
(38672, 19649, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:17:37', '0000-00-00 00:00:00'),
(38673, 19650, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:17:55', '0000-00-00 00:00:00'),
(38674, 19651, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:18:15', '0000-00-00 00:00:00'),
(38675, 19652, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:18:28', '0000-00-00 00:00:00'),
(38676, 19653, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:18:45', '0000-00-00 00:00:00'),
(38677, 19654, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:19:01', '0000-00-00 00:00:00'),
(38678, 19655, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:19:16', '0000-00-00 00:00:00'),
(38679, 19656, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:19:29', '0000-00-00 00:00:00'),
(38680, 19657, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:19:43', '0000-00-00 00:00:00'),
(38681, 19658, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:19:58', '0000-00-00 00:00:00'),
(38682, 19659, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:20:13', '0000-00-00 00:00:00'),
(38683, 19660, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:21:22', '0000-00-00 00:00:00'),
(38684, 19661, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:23:52', '0000-00-00 00:00:00'),
(38685, 19662, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:24:20', '0000-00-00 00:00:00'),
(38686, 19663, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:24:38', '0000-00-00 00:00:00'),
(38687, 19664, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:25:00', '0000-00-00 00:00:00'),
(38688, 19665, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:25:17', '0000-00-00 00:00:00'),
(38689, 19666, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:25:37', '0000-00-00 00:00:00'),
(38690, 19667, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:26:54', '0000-00-00 00:00:00'),
(38691, 19668, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:27:12', '0000-00-00 00:00:00'),
(38692, 19669, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:27:41', '0000-00-00 00:00:00'),
(38693, 19670, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:28:06', '0000-00-00 00:00:00'),
(38694, 19671, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:28:47', '0000-00-00 00:00:00'),
(38695, 19672, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:30:10', '0000-00-00 00:00:00'),
(38696, 19673, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:31:00', '0000-00-00 00:00:00'),
(38697, 19674, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:31:36', '0000-00-00 00:00:00'),
(38698, 19675, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:32:14', '0000-00-00 00:00:00'),
(38699, 19676, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:32:46', '0000-00-00 00:00:00'),
(38700, 19677, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:33:31', '0000-00-00 00:00:00'),
(38701, 19678, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:34:04', '0000-00-00 00:00:00'),
(38702, 19679, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:34:38', '0000-00-00 00:00:00'),
(38703, 19680, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:35:18', '0000-00-00 00:00:00'),
(38704, 19681, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:35:50', '0000-00-00 00:00:00'),
(38705, 19682, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:36:21', '0000-00-00 00:00:00'),
(38706, 19683, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:36:52', '0000-00-00 00:00:00'),
(38707, 19684, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:37:28', '0000-00-00 00:00:00'),
(38708, 19685, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:37:57', '0000-00-00 00:00:00'),
(38709, 19686, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:38:39', '0000-00-00 00:00:00'),
(38710, 19687, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:39:13', '0000-00-00 00:00:00'),
(38711, 19688, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:39:50', '0000-00-00 00:00:00'),
(38712, 19689, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:40:28', '0000-00-00 00:00:00'),
(38713, 19690, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:40:57', '0000-00-00 00:00:00'),
(38714, 19691, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:41:28', '0000-00-00 00:00:00'),
(38715, 19693, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:42:41', '0000-00-00 00:00:00'),
(38716, 19694, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:43:39', '0000-00-00 00:00:00'),
(38717, 19695, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:44:08', '0000-00-00 00:00:00'),
(38718, 19696, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:44:56', '0000-00-00 00:00:00'),
(38719, 19697, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:45:27', '0000-00-00 00:00:00'),
(38720, 19698, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:45:57', '0000-00-00 00:00:00'),
(38721, 19699, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:46:30', '0000-00-00 00:00:00'),
(38722, 19700, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:47:11', '0000-00-00 00:00:00'),
(38723, 19701, 0.00, 0.00, 1, 1, NULL, '2017-08-13 09:47:41', '0000-00-00 00:00:00'),
(38724, 19702, 0.00, 0.00, 1, 1, NULL, '2017-08-13 10:33:01', '0000-00-00 00:00:00'),
(38725, 19703, 0.00, 0.00, 1, 1, NULL, '2017-08-13 10:37:09', '0000-00-00 00:00:00'),
(38726, 19704, 0.00, 0.00, 0, 1, NULL, '2017-08-13 10:39:09', '0000-00-00 00:00:00'),
(38913, 19704, 20.00, 25.00, 1, 1, NULL, '2017-08-13 21:38:25', '0000-00-00 00:00:00'),
(38727, 19705, 0.00, 0.00, 0, 1, NULL, '2017-08-13 10:40:23', '0000-00-00 00:00:00'),
(38887, 19705, 20.00, 25.00, 1, 1, NULL, '2017-08-13 17:07:40', '0000-00-00 00:00:00'),
(38728, 19706, 0.00, 0.00, 1, 1, NULL, '2017-08-13 10:41:51', '0000-00-00 00:00:00'),
(38729, 19707, 0.00, 0.00, 1, 1, NULL, '2017-08-13 10:46:51', '0000-00-00 00:00:00'),
(38730, 19708, 0.00, 0.00, 1, 1, NULL, '2017-08-13 10:47:49', '0000-00-00 00:00:00'),
(38731, 19709, 0.00, 0.00, 1, 1, NULL, '2017-08-13 10:49:27', '0000-00-00 00:00:00'),
(38732, 19710, 0.00, 0.00, 1, 1, NULL, '2017-08-13 10:54:04', '0000-00-00 00:00:00'),
(38733, 19711, 0.00, 0.00, 1, 1, NULL, '2017-08-13 10:55:26', '0000-00-00 00:00:00'),
(38734, 19712, 0.00, 0.00, 1, 1, NULL, '2017-08-13 10:56:44', '0000-00-00 00:00:00'),
(38735, 19713, 0.00, 0.00, 1, 1, NULL, '2017-08-13 10:57:52', '0000-00-00 00:00:00'),
(38736, 19714, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:02:52', '0000-00-00 00:00:00'),
(38737, 19715, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:04:03', '0000-00-00 00:00:00'),
(38738, 19716, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:04:57', '0000-00-00 00:00:00'),
(38739, 19717, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:05:45', '0000-00-00 00:00:00'),
(38740, 19718, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:06:26', '0000-00-00 00:00:00'),
(38741, 19719, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:07:17', '0000-00-00 00:00:00'),
(38742, 19720, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:08:01', '0000-00-00 00:00:00'),
(38743, 19721, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:08:35', '0000-00-00 00:00:00'),
(38744, 19722, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:09:18', '0000-00-00 00:00:00'),
(38745, 19723, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:09:51', '0000-00-00 00:00:00'),
(38746, 19724, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:11:02', '0000-00-00 00:00:00'),
(38747, 19725, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:11:39', '0000-00-00 00:00:00'),
(38748, 19726, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:12:26', '0000-00-00 00:00:00'),
(38749, 19727, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:13:01', '0000-00-00 00:00:00'),
(38750, 19728, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:13:56', '0000-00-00 00:00:00'),
(38751, 19729, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:14:54', '0000-00-00 00:00:00'),
(38752, 19730, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:15:40', '0000-00-00 00:00:00'),
(38753, 19731, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:16:52', '0000-00-00 00:00:00'),
(38754, 19732, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:17:32', '0000-00-00 00:00:00'),
(38755, 19733, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:18:13', '0000-00-00 00:00:00'),
(38756, 19734, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:18:47', '0000-00-00 00:00:00'),
(38757, 19735, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:19:32', '0000-00-00 00:00:00'),
(38758, 19736, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:20:28', '0000-00-00 00:00:00'),
(38759, 19737, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:21:31', '0000-00-00 00:00:00'),
(38760, 19738, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:22:22', '0000-00-00 00:00:00'),
(38761, 19739, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:23:04', '0000-00-00 00:00:00'),
(38762, 19740, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:23:59', '0000-00-00 00:00:00'),
(38763, 19742, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:30:18', '0000-00-00 00:00:00'),
(38764, 19743, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:31:09', '0000-00-00 00:00:00'),
(38765, 19744, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:31:51', '0000-00-00 00:00:00'),
(38766, 19745, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:32:36', '0000-00-00 00:00:00'),
(38767, 19746, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:33:27', '0000-00-00 00:00:00'),
(38768, 19747, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:36:27', '0000-00-00 00:00:00'),
(38769, 19748, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:37:01', '0000-00-00 00:00:00'),
(38770, 19749, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:37:33', '0000-00-00 00:00:00'),
(38771, 19750, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:38:05', '0000-00-00 00:00:00'),
(38772, 19751, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:39:06', '0000-00-00 00:00:00'),
(38773, 19752, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:39:44', '0000-00-00 00:00:00'),
(38774, 19753, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:40:38', '0000-00-00 00:00:00'),
(38775, 19754, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:42:37', '0000-00-00 00:00:00'),
(38776, 19755, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:43:17', '0000-00-00 00:00:00'),
(38777, 19756, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:44:06', '0000-00-00 00:00:00'),
(38778, 19757, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:44:58', '0000-00-00 00:00:00'),
(38779, 19758, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:45:46', '0000-00-00 00:00:00'),
(38780, 19759, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:46:36', '0000-00-00 00:00:00'),
(38781, 19760, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:47:42', '0000-00-00 00:00:00'),
(38782, 19761, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:48:37', '0000-00-00 00:00:00'),
(38783, 19762, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:49:10', '0000-00-00 00:00:00'),
(38784, 19763, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:50:24', '0000-00-00 00:00:00'),
(38785, 19764, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:51:03', '0000-00-00 00:00:00'),
(38786, 19765, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:51:36', '0000-00-00 00:00:00'),
(38787, 19766, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:52:18', '0000-00-00 00:00:00'),
(38788, 19767, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:53:05', '0000-00-00 00:00:00'),
(38789, 19768, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:53:37', '0000-00-00 00:00:00'),
(38790, 19769, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:55:51', '0000-00-00 00:00:00'),
(38791, 19770, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:56:52', '0000-00-00 00:00:00'),
(38792, 19772, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:59:17', '0000-00-00 00:00:00'),
(38793, 19773, 0.00, 0.00, 1, 1, NULL, '2017-08-13 11:59:48', '0000-00-00 00:00:00'),
(38794, 19774, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:01:03', '0000-00-00 00:00:00'),
(38795, 19775, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:01:40', '0000-00-00 00:00:00'),
(38796, 19776, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:02:14', '0000-00-00 00:00:00'),
(38797, 19777, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:02:55', '0000-00-00 00:00:00'),
(38798, 19778, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:03:35', '0000-00-00 00:00:00'),
(38799, 19779, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:04:08', '0000-00-00 00:00:00'),
(38800, 19780, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:04:57', '0000-00-00 00:00:00'),
(38801, 19781, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:05:33', '0000-00-00 00:00:00'),
(38802, 19782, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:06:00', '0000-00-00 00:00:00'),
(38803, 19783, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:06:19', '0000-00-00 00:00:00'),
(38804, 19784, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:06:23', '0000-00-00 00:00:00'),
(38805, 19785, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:06:52', '0000-00-00 00:00:00'),
(38806, 19786, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:07:21', '0000-00-00 00:00:00'),
(38807, 19787, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:07:24', '0000-00-00 00:00:00'),
(38808, 19788, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:07:55', '0000-00-00 00:00:00'),
(38809, 19789, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:08:20', '0000-00-00 00:00:00'),
(38810, 19790, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:09:30', '0000-00-00 00:00:00'),
(38811, 19791, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:09:41', '0000-00-00 00:00:00'),
(38812, 19792, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:13:55', '0000-00-00 00:00:00'),
(38813, 19793, 0.00, 0.00, 1, 1, NULL, '2017-08-13 12:51:14', '0000-00-00 00:00:00'),
(38814, 19794, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:01:25', '0000-00-00 00:00:00'),
(38815, 19795, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:01:35', '0000-00-00 00:00:00'),
(38816, 19796, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:01:53', '0000-00-00 00:00:00'),
(38817, 19797, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:02:28', '0000-00-00 00:00:00'),
(38818, 19798, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:02:39', '0000-00-00 00:00:00'),
(38819, 19799, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:04:58', '0000-00-00 00:00:00'),
(38820, 19800, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:05:35', '0000-00-00 00:00:00'),
(38821, 19801, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:05:50', '0000-00-00 00:00:00'),
(38822, 19802, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:05:58', '0000-00-00 00:00:00'),
(38823, 19803, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:06:06', '0000-00-00 00:00:00'),
(38824, 19804, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:06:13', '0000-00-00 00:00:00'),
(38825, 19805, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:06:20', '0000-00-00 00:00:00'),
(38826, 19806, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:06:29', '0000-00-00 00:00:00'),
(38827, 19807, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:06:34', '0000-00-00 00:00:00'),
(38828, 19808, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:06:58', '0000-00-00 00:00:00'),
(38829, 19809, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:07:53', '0000-00-00 00:00:00'),
(38830, 19810, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:08:03', '0000-00-00 00:00:00'),
(38831, 19811, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:08:11', '0000-00-00 00:00:00'),
(38832, 19812, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:08:21', '0000-00-00 00:00:00'),
(38833, 19813, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:08:38', '0000-00-00 00:00:00'),
(38834, 19814, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:09:11', '0000-00-00 00:00:00'),
(38835, 19815, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:09:26', '0000-00-00 00:00:00'),
(38836, 19816, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:09:36', '0000-00-00 00:00:00'),
(38837, 19817, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:10:03', '0000-00-00 00:00:00'),
(38838, 19818, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:10:13', '0000-00-00 00:00:00'),
(38839, 19819, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:10:28', '0000-00-00 00:00:00'),
(38840, 19820, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:10:40', '0000-00-00 00:00:00'),
(38841, 19821, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:10:49', '0000-00-00 00:00:00'),
(38842, 19822, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:10:56', '0000-00-00 00:00:00'),
(38843, 19823, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:11:04', '0000-00-00 00:00:00'),
(38844, 19824, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:11:10', '0000-00-00 00:00:00'),
(38845, 19825, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:11:20', '0000-00-00 00:00:00'),
(38846, 19826, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:11:27', '0000-00-00 00:00:00'),
(38847, 19827, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:11:43', '0000-00-00 00:00:00'),
(38848, 19828, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:11:51', '0000-00-00 00:00:00'),
(38849, 19829, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:11:58', '0000-00-00 00:00:00'),
(38850, 19830, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:12:05', '0000-00-00 00:00:00'),
(38851, 19831, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:12:12', '0000-00-00 00:00:00'),
(38852, 19832, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:12:21', '0000-00-00 00:00:00'),
(38853, 19833, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:12:27', '0000-00-00 00:00:00'),
(38854, 19834, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:12:34', '0000-00-00 00:00:00'),
(38855, 19835, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:12:46', '0000-00-00 00:00:00'),
(38856, 19836, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:12:52', '0000-00-00 00:00:00'),
(38857, 19837, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:13:01', '0000-00-00 00:00:00'),
(38858, 19838, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:13:55', '0000-00-00 00:00:00'),
(38859, 19839, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:14:04', '0000-00-00 00:00:00'),
(38860, 19840, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:14:13', '0000-00-00 00:00:00'),
(38861, 19841, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:14:20', '0000-00-00 00:00:00'),
(38862, 19842, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:14:24', '0000-00-00 00:00:00'),
(38863, 19843, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:14:31', '0000-00-00 00:00:00'),
(38864, 19844, 0.00, 0.00, 1, 1, NULL, '2017-08-13 13:27:37', '0000-00-00 00:00:00'),
(38873, 19854, 0.00, 0.00, 1, 1, NULL, '2017-08-13 16:20:59', '0000-00-00 00:00:00'),
(38874, 19855, 0.00, 0.00, 1, 1, NULL, '2017-08-13 16:22:11', '0000-00-00 00:00:00'),
(38875, 19856, 0.00, 0.00, 1, 1, NULL, '2017-08-13 16:24:17', '0000-00-00 00:00:00'),
(38876, 19857, 0.00, 0.00, 1, 1, NULL, '2017-08-13 16:26:07', '0000-00-00 00:00:00'),
(38877, 19858, 0.00, 0.00, 1, 1, NULL, '2017-08-13 16:27:06', '0000-00-00 00:00:00'),
(38878, 19859, 0.00, 0.00, 1, 1, NULL, '2017-08-13 16:28:44', '0000-00-00 00:00:00'),
(38879, 19860, 0.00, 0.00, 1, 1, NULL, '2017-08-13 16:29:42', '0000-00-00 00:00:00'),
(38880, 19861, 0.00, 0.00, 1, 1, NULL, '2017-08-13 16:54:57', '0000-00-00 00:00:00'),
(38881, 19862, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:03:26', '0000-00-00 00:00:00'),
(38882, 19863, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:04:58', '0000-00-00 00:00:00'),
(38885, 19864, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:05:43', '0000-00-00 00:00:00'),
(38886, 19865, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:07:31', '0000-00-00 00:00:00'),
(38888, 19866, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:09:25', '0000-00-00 00:00:00'),
(38889, 19867, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:12:15', '0000-00-00 00:00:00'),
(38890, 19868, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:15:59', '0000-00-00 00:00:00'),
(38891, 19869, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:17:27', '0000-00-00 00:00:00'),
(38892, 19870, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:18:42', '0000-00-00 00:00:00'),
(38893, 19871, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:21:19', '0000-00-00 00:00:00'),
(38894, 19872, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:24:32', '0000-00-00 00:00:00'),
(38895, 19873, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:25:48', '0000-00-00 00:00:00'),
(38896, 19874, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:27:41', '0000-00-00 00:00:00'),
(38897, 19875, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:28:38', '0000-00-00 00:00:00'),
(38898, 19876, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:29:39', '0000-00-00 00:00:00'),
(38899, 19877, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:30:45', '0000-00-00 00:00:00'),
(38900, 19878, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:32:06', '0000-00-00 00:00:00'),
(38901, 19879, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:33:35', '0000-00-00 00:00:00'),
(38902, 19880, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:35:01', '0000-00-00 00:00:00'),
(38905, 19881, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:36:39', '0000-00-00 00:00:00'),
(38906, 19882, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:37:48', '0000-00-00 00:00:00'),
(38907, 19883, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:39:01', '0000-00-00 00:00:00'),
(38910, 19884, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:44:38', '0000-00-00 00:00:00'),
(38911, 19885, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:45:56', '0000-00-00 00:00:00'),
(38912, 19886, 0.00, 0.00, 1, 1, NULL, '2017-08-13 17:47:01', '0000-00-00 00:00:00'),
(38933, 19887, 0.00, 0.00, 1, 1, NULL, '2017-08-20 15:01:13', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `priceinfos` ENABLE KEYS */;
-- Dumping structure for table db_test.purchasereturntosupplier
CREATE TABLE IF NOT EXISTS `purchasereturntosupplier` (
`purchase_return_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`sup_r_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`item_id` int(10) unsigned NOT NULL,
`price_id` int(10) unsigned NOT NULL,
`quantity` double(12,4) NOT NULL,
`discount` double(12,3) NOT NULL,
`amount` double(12,3) NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `i_sup_return_id` (`purchase_return_id`),
KEY `purchasertosuppliers_i_sup_return_id_index` (`purchase_return_id`),
KEY `purchasertosuppliers_sup_r_invoice_id_foreign` (`sup_r_invoice_id`),
KEY `purchasertosuppliers_item_id_foreign` (`item_id`),
KEY `purchasertosuppliers_price_id_foreign` (`price_id`),
KEY `purchasertosuppliers_created_by_foreign` (`created_by`),
KEY `purchasertosuppliers_updated_by_foreign` (`updated_by`),
CONSTRAINT `FK_purchasereturntosupplier_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_purchasereturntosupplier_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_purchasereturntosupplier_iteminfos` FOREIGN KEY (`item_id`) REFERENCES `iteminfos` (`item_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_purchasereturntosupplier_priceinfos` FOREIGN KEY (`price_id`) REFERENCES `priceinfos` (`price_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_purchasereturntosupplier_supplierreturninvoices` FOREIGN KEY (`sup_r_invoice_id`) REFERENCES `supplierreturninvoices` (`sup_r_invoice_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.purchasereturntosupplier: ~1 rows (approximately)
/*!40000 ALTER TABLE `purchasereturntosupplier` DISABLE KEYS */;
INSERT INTO `purchasereturntosupplier` (`purchase_return_id`, `sup_r_invoice_id`, `item_id`, `price_id`, `quantity`, `discount`, `amount`, `status`, `year`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(1, '17082010000000', 17241, 38883, 10.0000, 0.000, 1000.000, 1, 0, 1, NULL, '2017-08-20 17:10:19', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `purchasereturntosupplier` ENABLE KEYS */;
-- Dumping structure for table db_test.receivingitems
CREATE TABLE IF NOT EXISTS `receivingitems` (
`receiving_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL,
`price_id` int(10) unsigned NOT NULL,
`quantity` double NOT NULL,
`sending_date` datetime NOT NULL,
`receive_cancel_date` datetime NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0 = received 1 = pending, 2=cancelled',
`year` int(11) NOT NULL,
`sending_by` int(10) unsigned NOT NULL,
`receive_cancel_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `receiving_item_id` (`receiving_item_id`),
KEY `receivingitems_receiving_item_id_index` (`receiving_item_id`),
KEY `receivingitems_item_id_foreign` (`item_id`),
KEY `receivingitems_price_id_foreign` (`price_id`),
KEY `receivingitems_created_by_foreign` (`sending_by`),
KEY `receivingitems_updated_by_foreign` (`receive_cancel_by`),
CONSTRAINT `FK_receivingitems_empinfos` FOREIGN KEY (`sending_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_receivingitems_empinfos_2` FOREIGN KEY (`receive_cancel_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_receivingitems_iteminfos` FOREIGN KEY (`item_id`) REFERENCES `iteminfos` (`item_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_receivingitems_priceinfos` FOREIGN KEY (`price_id`) REFERENCES `priceinfos` (`price_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.receivingitems: ~46 rows (approximately)
/*!40000 ALTER TABLE `receivingitems` DISABLE KEYS */;
INSERT INTO `receivingitems` (`receiving_item_id`, `item_id`, `price_id`, `quantity`, `sending_date`, `receive_cancel_date`, `status`, `year`, `sending_by`, `receive_cancel_by`, `created_at`, `updated_at`) VALUES
(1, 17241, 38883, 10, '2017-08-13 05:06:12', '2017-08-13 17:06:17', 0, 0, 1, 1, '2017-08-13 17:06:12', '0000-00-00 00:00:00'),
(2, 17243, 38884, 10, '2017-08-13 05:06:12', '2017-08-13 17:06:17', 0, 0, 1, 1, '2017-08-13 17:06:12', '0000-00-00 00:00:00'),
(3, 19705, 38887, 10, '2017-08-13 05:07:51', '2017-08-13 17:07:55', 0, 0, 1, 1, '2017-08-13 17:07:51', '0000-00-00 00:00:00'),
(4, 19705, 38887, 10, '2017-08-13 05:22:46', '2017-08-13 17:22:49', 0, 0, 1, 1, '2017-08-13 17:22:46', '0000-00-00 00:00:00'),
(5, 17262, 38904, 10, '2017-08-13 05:37:17', '2017-08-13 17:37:29', 0, 0, 1, 1, '2017-08-13 17:37:17', '0000-00-00 00:00:00'),
(6, 17536, 38903, 100, '2017-08-13 05:37:17', '2017-08-13 17:37:43', 0, 0, 1, 1, '2017-08-13 17:37:17', '0000-00-00 00:00:00'),
(7, 17241, 38883, 1, '2017-08-13 05:40:44', '2017-08-13 17:40:59', 0, 0, 1, 1, '2017-08-13 17:40:44', '0000-00-00 00:00:00'),
(8, 17241, 38883, 1, '2017-08-13 05:40:44', '2017-08-13 17:40:59', 0, 0, 1, 1, '2017-08-13 17:40:44', '0000-00-00 00:00:00'),
(9, 17242, 38908, 5, '2017-08-13 05:40:44', '2017-08-13 17:40:59', 0, 0, 1, 1, '2017-08-13 17:40:44', '0000-00-00 00:00:00'),
(10, 17251, 38909, 5, '2017-08-13 05:40:44', '2017-08-13 17:40:59', 0, 0, 1, 1, '2017-08-13 17:40:44', '0000-00-00 00:00:00'),
(11, 19705, 38887, 1, '2017-08-13 05:40:44', '2017-08-13 17:40:59', 0, 0, 1, 1, '2017-08-13 17:40:44', '0000-00-00 00:00:00'),
(12, 17242, 38908, 5, '2017-08-13 05:40:44', '2017-08-13 17:40:59', 0, 0, 1, 1, '2017-08-13 17:40:44', '0000-00-00 00:00:00'),
(13, 17251, 38909, 5, '2017-08-13 05:40:44', '2017-08-13 17:40:59', 0, 0, 1, 1, '2017-08-13 17:40:44', '0000-00-00 00:00:00'),
(14, 19705, 38887, 1, '2017-08-13 05:40:44', '2017-08-13 17:40:59', 0, 0, 1, 1, '2017-08-13 17:40:44', '0000-00-00 00:00:00'),
(15, 17242, 38908, 1, '2017-08-13 09:38:32', '2017-08-13 21:38:36', 0, 0, 1, 1, '2017-08-13 21:38:32', '0000-00-00 00:00:00'),
(16, 17243, 38884, 2, '2017-08-13 09:38:32', '2017-08-13 21:38:36', 0, 0, 1, 1, '2017-08-13 21:38:32', '0000-00-00 00:00:00'),
(17, 19704, 38913, 10, '2017-08-13 09:38:32', '2017-08-13 21:38:36', 0, 0, 1, 1, '2017-08-13 21:38:32', '0000-00-00 00:00:00'),
(18, 19539, 38914, 10, '2017-08-13 09:45:26', '2017-08-13 21:45:29', 0, 0, 1, 1, '2017-08-13 21:45:26', '0000-00-00 00:00:00'),
(19, 17243, 38884, 1, '2017-08-13 11:43:06', '2017-08-13 23:43:34', 0, 0, 1, 1, '2017-08-13 23:43:06', '0000-00-00 00:00:00'),
(20, 17247, 38915, 10, '2017-08-13 11:43:06', '2017-08-13 23:43:34', 0, 0, 1, 1, '2017-08-13 23:43:06', '0000-00-00 00:00:00'),
(21, 17242, 38908, 2, '2017-08-13 11:44:35', '2017-08-13 23:45:09', 0, 0, 1, 1, '2017-08-13 23:44:35', '0000-00-00 00:00:00'),
(22, 17244, 38916, 1, '2017-08-13 11:44:35', '2017-08-13 23:45:09', 0, 0, 1, 1, '2017-08-13 23:44:35', '0000-00-00 00:00:00'),
(23, 17245, 38918, 1, '2017-08-13 11:44:35', '2017-08-13 23:45:09', 0, 0, 1, 1, '2017-08-13 23:44:35', '0000-00-00 00:00:00'),
(24, 17246, 38917, 1, '2017-08-13 11:44:35', '2017-08-13 23:45:09', 0, 0, 1, 1, '2017-08-13 23:44:35', '0000-00-00 00:00:00'),
(25, 17249, 38919, 1, '2017-08-13 11:45:04', '2017-08-13 23:45:09', 0, 0, 1, 1, '2017-08-13 23:45:04', '0000-00-00 00:00:00'),
(26, 17257, 38920, 1, '2017-08-13 11:45:04', '2017-08-13 23:45:09', 0, 0, 1, 1, '2017-08-13 23:45:04', '0000-00-00 00:00:00'),
(27, 17241, 38883, 10, '2017-08-13 11:49:42', '2017-08-13 23:50:16', 0, 0, 1, 1, '2017-08-13 23:49:42', '0000-00-00 00:00:00'),
(28, 17258, 38922, 10, '2017-08-13 11:49:42', '2017-08-13 23:49:52', 0, 0, 1, 1, '2017-08-13 23:49:42', '0000-00-00 00:00:00'),
(29, 17305, 38923, 100, '2017-08-14 12:34:49', '2017-08-14 00:35:00', 0, 0, 1, 1, '2017-08-14 00:34:49', '0000-00-00 00:00:00'),
(30, 17931, 38924, 1, '2017-08-14 12:34:49', '2017-08-14 00:35:00', 0, 0, 1, 1, '2017-08-14 00:34:49', '0000-00-00 00:00:00'),
(31, 17243, 38884, 1, '2017-08-14 12:39:30', '2017-08-14 00:39:55', 0, 0, 1, 1, '2017-08-14 00:39:30', '0000-00-00 00:00:00'),
(32, 17245, 38918, 1, '2017-08-14 12:39:30', '2017-08-14 01:20:16', 0, 0, 1, 1, '2017-08-14 00:39:30', '0000-00-00 00:00:00'),
(33, 17244, 38916, 1, '2017-08-14 01:19:39', '2017-08-14 01:20:16', 0, 0, 1, 1, '2017-08-14 01:19:39', '0000-00-00 00:00:00'),
(34, 17256, 38926, 10, '2017-08-14 01:19:39', '2017-08-14 01:20:16', 0, 0, 1, 1, '2017-08-14 01:19:39', '0000-00-00 00:00:00'),
(35, 17242, 38908, 5, '2017-08-14 01:22:12', '2017-08-14 01:22:28', 0, 0, 1, 1, '2017-08-14 01:22:12', '0000-00-00 00:00:00'),
(36, 17244, 38916, 5, '2017-08-14 01:22:12', '2017-08-14 01:22:28', 0, 0, 1, 1, '2017-08-14 01:22:12', '0000-00-00 00:00:00'),
(37, 17241, 38927, 5, '2017-08-20 07:49:10', '2017-08-20 07:49:13', 0, 0, 1, 1, '2017-08-20 07:49:10', '0000-00-00 00:00:00'),
(38, 17242, 38908, 10, '2017-08-20 09:38:10', '2017-08-20 09:38:16', 0, 0, 1, 1, '2017-08-20 09:38:10', '0000-00-00 00:00:00'),
(39, 19705, 38887, 10, '2017-08-20 09:38:10', '2017-08-20 09:38:16', 0, 0, 1, 1, '2017-08-20 09:38:10', '0000-00-00 00:00:00'),
(40, 17288, 38929, 10, '2017-08-20 11:07:15', '2017-08-20 11:07:18', 0, 0, 1, 1, '2017-08-20 11:07:15', '0000-00-00 00:00:00'),
(41, 17318, 38930, 10, '2017-08-20 11:07:15', '2017-08-20 11:07:18', 0, 0, 1, 1, '2017-08-20 11:07:15', '0000-00-00 00:00:00'),
(42, 18177, 38931, 100, '2017-08-20 01:22:36', '2017-08-20 13:22:39', 0, 0, 1, 1, '2017-08-20 13:22:36', '0000-00-00 00:00:00'),
(43, 18177, 38931, 100, '2017-08-20 01:29:47', '2017-08-20 13:29:49', 0, 0, 1, 1, '2017-08-20 13:29:47', '0000-00-00 00:00:00'),
(44, 18241, 38932, 100, '2017-08-20 01:30:24', '2017-08-20 13:30:27', 0, 0, 1, 1, '2017-08-20 13:30:24', '0000-00-00 00:00:00'),
(45, 17241, 38927, 20, '2017-08-20 02:02:14', '0000-00-00 00:00:00', 1, 0, 1, NULL, '2017-08-20 14:02:14', '0000-00-00 00:00:00'),
(46, 17244, 38916, 10, '2017-08-20 02:02:14', '2017-08-20 14:02:56', 0, 0, 1, 1, '2017-08-20 14:02:14', '0000-00-00 00:00:00'),
(47, 17242, 38908, 10, '2017-08-20 02:04:16', '2017-08-20 14:04:21', 0, 0, 1, 1, '2017-08-20 14:04:16', '0000-00-00 00:00:00'),
(48, 17243, 38884, 10, '2017-08-20 04:46:37', '2017-08-20 16:47:37', 0, 0, 1, 1, '2017-08-20 16:46:37', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `receivingitems` ENABLE KEYS */;
-- Dumping structure for table db_test.returnreceivingitems
CREATE TABLE IF NOT EXISTS `returnreceivingitems` (
`r_receiving_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL,
`price_id` int(10) unsigned NOT NULL,
`quantity` double NOT NULL,
`returning_date` datetime NOT NULL,
`receive_cancel_date` datetime NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '1=pending, 0=received 2=cancle',
`year` int(11) NOT NULL,
`returning_by` int(10) unsigned NOT NULL,
`receive_cancel_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `r_receiving_item_id` (`r_receiving_item_id`),
KEY `returnreceivingitems_r_receiving_item_id_index` (`r_receiving_item_id`),
KEY `returnreceivingitems_item_id_foreign` (`item_id`),
KEY `returnreceivingitems_price_id_foreign` (`price_id`),
KEY `returnreceivingitems_created_by_foreign` (`returning_by`),
KEY `returnreceivingitems_updated_by_foreign` (`receive_cancel_by`),
CONSTRAINT `FK_returnreceivingitems_empinfos` FOREIGN KEY (`returning_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_returnreceivingitems_empinfos_2` FOREIGN KEY (`receive_cancel_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_returnreceivingitems_iteminfos` FOREIGN KEY (`item_id`) REFERENCES `iteminfos` (`item_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_returnreceivingitems_priceinfos` FOREIGN KEY (`price_id`) REFERENCES `priceinfos` (`price_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.returnreceivingitems: ~3 rows (approximately)
/*!40000 ALTER TABLE `returnreceivingitems` DISABLE KEYS */;
INSERT INTO `returnreceivingitems` (`r_receiving_item_id`, `item_id`, `price_id`, `quantity`, `returning_date`, `receive_cancel_date`, `status`, `year`, `returning_by`, `receive_cancel_by`, `created_at`, `updated_at`) VALUES
(1, 17242, 38908, 1, '2017-08-20 01:51:41', '0000-00-00 00:00:00', 1, 0, 11, NULL, '2017-08-20 01:51:41', '0000-00-00 00:00:00'),
(2, 17242, 38908, 5, '2017-08-20 02:21:26', '0000-00-00 00:00:00', 1, 0, 1, NULL, '2017-08-20 14:21:26', '0000-00-00 00:00:00'),
(3, 17241, 38928, 5, '2017-08-20 02:22:11', '0000-00-00 00:00:00', 1, 0, 1, NULL, '2017-08-20 14:22:11', '0000-00-00 00:00:00'),
(4, 17241, 38928, 4, '2017-08-20 02:22:44', '0000-00-00 00:00:00', 1, 0, 1, NULL, '2017-08-20 14:22:44', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `returnreceivingitems` ENABLE KEYS */;
-- Dumping structure for table db_test.saleinvoices
CREATE TABLE IF NOT EXISTS `saleinvoices` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sale_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`cus_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'can be 0 for unregister customer',
`payment_type_id` int(10) unsigned NOT NULL,
`discount` double(12,3) NOT NULL,
`total_point` double(12,3) NOT NULL,
`point_use_taka` int(11) NOT NULL,
`amount` double NOT NULL COMMENT 'payable amount',
`pay` double(12,3) NOT NULL,
`due` double(12,3) NOT NULL,
`pay_note` int(11) NOT NULL,
`date` date NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `sale_invoice_id` (`sale_invoice_id`),
KEY `saleinvoices_payment_type_id_foreign` (`payment_type_id`),
KEY `saleinvoices_created_by_foreign` (`created_by`),
KEY `saleinvoices_updated_by_foreign` (`updated_by`),
KEY `FK_saleinvoices_customerinfos` (`cus_id`),
CONSTRAINT `FK_saleinvoices_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_saleinvoices_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_saleinvoices_paymenttypes` FOREIGN KEY (`payment_type_id`) REFERENCES `paymenttypes` (`payment_type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.saleinvoices: ~47 rows (approximately)
/*!40000 ALTER TABLE `saleinvoices` DISABLE KEYS */;
INSERT INTO `saleinvoices` (`id`, `sale_invoice_id`, `cus_id`, `payment_type_id`, `discount`, `total_point`, `point_use_taka`, `amount`, `pay`, `due`, `pay_note`, `date`, `status`, `year`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(5, '17081310000000', 0, 1, 0.000, 10.000, 0, 175, 175.000, 0.000, 200, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 17:34:06', '0000-00-00 00:00:00'),
(6, '17081310000001', 0, 1, 0.000, 2.000, 0, 25, 25.000, 0.000, 25, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 17:46:08', '0000-00-00 00:00:00'),
(7, '17081310000002', 0, 1, 0.000, 4.000, 0, 50, 50.000, 0.000, 50, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 17:53:28', '0000-00-00 00:00:00'),
(8, '17081310000003', 0, 1, 0.000, 21.000, 0, 390, 390.000, 0.000, 400, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 21:39:29', '0000-00-00 00:00:00'),
(9, '17081310000004', 0, 1, 0.000, 10.000, 0, 125, 125.000, 0.000, 130, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 21:45:52', '0000-00-00 00:00:00'),
(10, '17081310000005', 0, 1, 0.000, 2.500, 0, 50, 50.000, 0.000, 50, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 21:46:25', '0000-00-00 00:00:00'),
(11, '17081310000006', 0, 1, 0.000, 5.500, 0, 50, 50.000, 0.000, 50, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 22:34:59', '0000-00-00 00:00:00'),
(12, '17081310000007', 0, 1, 0.000, 7.500, 0, 75, 75.000, 0.000, 80, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 22:43:49', '0000-00-00 00:00:00'),
(13, '17081310000008', 0, 1, 0.000, 0.000, 0, 120, 120.000, 0.000, 120, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 23:00:46', '0000-00-00 00:00:00'),
(14, '17081410000000', 0, 1, 0.000, 0.000, 0, 520, 520.000, 0.000, 520, '2017-08-14', 1, 0, 1, NULL, '2017-08-14 01:23:08', '0000-00-00 00:00:00'),
(15, '17081410000001', 0, 1, 0.000, 33.000, 0, 1869, 1869.000, 0.000, 1900, '2017-08-14', 1, 0, 1, NULL, '2017-08-14 01:35:20', '0000-00-00 00:00:00'),
(16, '17081610000000', 0, 1, 0.000, 4.000, 0, 665, 665.000, 0.000, 670, '2017-08-16', 1, 0, 1, NULL, '2017-08-16 01:51:49', '0000-00-00 00:00:00'),
(17, '17082010000000', 0, 1, 0.000, 4.000, 0, 179, 179.000, 0.000, 200, '2017-08-20', 1, 0, 11, NULL, '2017-08-20 01:49:27', '0000-00-00 00:00:00'),
(18, '17082010000001', 0, 1, 0.000, 0.000, 0, 220, 220.000, 0.000, 250, '2017-08-20', 1, 0, 11, NULL, '2017-08-20 01:53:50', '0000-00-00 00:00:00'),
(19, '17082010000002', 0, 1, 0.000, 0.000, 0, 338, 338.000, 0.000, 340, '2017-08-20', 1, 0, 11, NULL, '2017-08-20 01:55:23', '0000-00-00 00:00:00'),
(20, '17082010000003', 0, 1, 0.000, 33.000, 0, 470, 470.000, 0.000, 500, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 09:19:01', '0000-00-00 00:00:00'),
(21, '17082010000004', 0, 1, 0.000, 4.000, 0, 265, 265.000, 0.000, 270, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 09:27:49', '0000-00-00 00:00:00'),
(22, '17082010000005', 0, 1, 0.000, 2.000, 0, 545, 545.000, 0.000, 545, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 10:22:33', '0000-00-00 00:00:00'),
(23, '17082010000006', 0, 1, 0.000, 0.000, 0, 84, 84.000, 0.000, 100, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 10:34:19', '0000-00-00 00:00:00'),
(24, '17082010000007', 0, 1, 0.000, 0.000, 0, 25, 25.000, 0.000, 30, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 10:42:27', '0000-00-00 00:00:00'),
(25, '17082010000008', 0, 1, 0.000, 4.000, 0, 120, 120.000, 0.000, 130, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 10:46:35', '0000-00-00 00:00:00'),
(26, '17082010000009', 0, 1, 0.000, 0.000, 0, 520, 520.000, 0.000, 530, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 10:48:00', '0000-00-00 00:00:00'),
(27, '17082010000010', 0, 1, 0.000, 0.000, 0, 520, 520.000, 0.000, 530, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 10:49:15', '0000-00-00 00:00:00'),
(28, '17082010000011', 0, 1, 0.000, 0.000, 0, 520, 520.000, 0.000, 530, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 10:49:46', '0000-00-00 00:00:00'),
(29, '17082010000012', 0, 1, 0.000, 0.000, 0, 59, 59.000, 0.000, 60, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 10:50:18', '0000-00-00 00:00:00'),
(30, '17082010000013', 0, 1, 0.000, 0.000, 0, 520, 520.000, 0.000, 560, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 10:51:54', '0000-00-00 00:00:00'),
(31, '17082010000014', 0, 1, 0.000, 0.000, 0, 520, 520.000, 0.000, 530, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 10:52:32', '0000-00-00 00:00:00'),
(32, '17082010000015', 0, 1, 0.000, 4.000, 0, 120, 120.000, 0.000, 130, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 10:54:18', '0000-00-00 00:00:00'),
(33, '17082010000016', 0, 1, 0.000, 0.000, 0, 59, 59.000, 0.000, 60, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 10:55:36', '0000-00-00 00:00:00'),
(34, '17082010000017', 0, 1, 0.000, 0.000, 0, 520, 520.000, 0.000, 530, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 10:57:01', '0000-00-00 00:00:00'),
(35, '17082010000018', 0, 1, 0.000, 0.000, 0, 25, 25.000, 0.000, 25, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 10:58:05', '0000-00-00 00:00:00'),
(36, '17082010000019', 0, 1, 0.000, 0.000, 0, 25, 25.000, 0.000, 25, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 10:58:54', '0000-00-00 00:00:00'),
(37, '17082010000020', 0, 1, 0.000, 0.000, 0, 120, 120.000, 0.000, 120, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 10:59:17', '0000-00-00 00:00:00'),
(38, '17082010000021', 0, 1, 0.000, 0.000, 0, 25, 25.000, 0.000, 25, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 10:59:42', '0000-00-00 00:00:00'),
(39, '17082010000022', 0, 1, 0.000, 0.000, 0, 25, 25.000, 0.000, 25, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 11:01:35', '0000-00-00 00:00:00'),
(40, '17082010000023', 0, 1, 0.000, 0.000, 0, 25, 25.000, 0.000, 25, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 11:03:07', '0000-00-00 00:00:00'),
(41, '17082010000024', 0, 1, 0.000, 10.000, 0, 150, 150.000, 0.000, 150, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 11:03:40', '0000-00-00 00:00:00'),
(42, '17082010000025', 0, 1, 0.000, 4.000, 0, 75, 75.000, 0.000, 75, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 11:06:23', '0000-00-00 00:00:00'),
(43, '17082010000026', 0, 1, 0.000, 125.000, 0, 570, 570.000, 0.000, 570, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 11:08:03', '0000-00-00 00:00:00'),
(44, '17082010000027', 0, 1, 0.000, 0.000, 0, 25, 25.000, 0.000, 25, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 11:11:12', '0000-00-00 00:00:00'),
(45, '17082010000028', 0, 1, 0.000, 50.000, 0, 245, 245.000, 0.000, 250, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 11:16:14', '0000-00-00 00:00:00'),
(46, '17082010000029', 0, 1, 0.000, 0.000, 0, 1250, 1250.000, 0.000, 1300, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 13:23:21', '0000-00-00 00:00:00'),
(47, '17082010000030', 0, 1, 0.000, 0.000, 0, 1225, 1225.000, 0.000, 1230, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 13:26:32', '0000-00-00 00:00:00'),
(48, '17082010000031', 0, 1, 0.000, 0.000, 0, 25, 25.000, 0.000, 50, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 13:30:53', '0000-00-00 00:00:00'),
(49, '17082010000032', 0, 1, 0.000, 0.000, 0, 25, 25.000, 0.000, 30, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 13:33:35', '0000-00-00 00:00:00'),
(50, '17082010000033', 0, 1, 0.000, 4.000, 0, 75, 75.000, 0.000, 80, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 13:35:45', '0000-00-00 00:00:00'),
(51, '17082010000034', 0, 1, 0.000, 200.000, 0, 910, 910.000, 0.000, 1000, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 13:36:49', '0000-00-00 00:00:00'),
(52, '17082010000035', 1, 1, 0.000, 0.000, 0, 1560, 1560.000, 0.000, 1560, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 14:03:32', '0000-00-00 00:00:00'),
(53, '17082010000036', 1, 1, 0.000, 0.000, 0, 590, 590.000, 0.000, 590, '2017-08-20', 1, 0, 12, NULL, '2017-08-20 14:18:07', '0000-00-00 00:00:00'),
(54, '17082010000037', 1, 1, 0.000, 0.000, 0, 520, 520.000, 0.000, 520, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 16:56:02', '0000-00-00 00:00:00'),
(55, '17082010000038', 0, 1, 0.000, 0.000, 0, 520, 520.000, 0.000, 530, '2017-08-20', 1, 0, 12, NULL, '2017-08-20 17:02:39', '0000-00-00 00:00:00'),
(56, '17082010000039', 0, 1, 0.000, 4.000, 0, 120, 120.000, 0.000, 130, '2017-08-20', 1, 0, 12, NULL, '2017-08-20 17:02:49', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `saleinvoices` ENABLE KEYS */;
-- Dumping structure for table db_test.salereturninvoices
CREATE TABLE IF NOT EXISTS `salereturninvoices` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sale_r_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`sale_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`cus_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'can be 0 for unregister customer',
`payment_type_id` int(10) unsigned NOT NULL,
`amount` double(12,3) NOT NULL,
`less_amount` double(12,3) NOT NULL COMMENT 'loss amount of customer for return',
`transaction_date` date NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `sale_return_invoice_id` (`sale_r_invoice_id`),
KEY `salereturninvoices_payment_type_id_foreign` (`payment_type_id`),
KEY `salereturninvoices_created_by_foreign` (`created_by`),
KEY `salereturninvoices_updated_by_foreign` (`updated_by`),
KEY `FK_salereturninvoices_saleinvoices` (`sale_invoice_id`),
KEY `FK_salereturninvoices_customerinfos` (`cus_id`),
CONSTRAINT `FK_salereturninvoices_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_salereturninvoices_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_salereturninvoices_paymenttypes` FOREIGN KEY (`payment_type_id`) REFERENCES `paymenttypes` (`payment_type_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_salereturninvoices_saleinvoices` FOREIGN KEY (`sale_invoice_id`) REFERENCES `saleinvoices` (`sale_invoice_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.salereturninvoices: ~8 rows (approximately)
/*!40000 ALTER TABLE `salereturninvoices` DISABLE KEYS */;
INSERT INTO `salereturninvoices` (`id`, `sale_r_invoice_id`, `sale_invoice_id`, `cus_id`, `payment_type_id`, `amount`, `less_amount`, `transaction_date`, `status`, `year`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(1, '17082010000000', '17081310000003', 0, 1, 240.000, 0.000, '2017-08-20', 1, 0, 11, NULL, '2017-08-20 01:51:32', '0000-00-00 00:00:00'),
(2, '17082010000001', '17082010000001', 0, 1, 220.000, 0.000, '2017-08-20', 1, 0, 11, NULL, '2017-08-20 01:54:40', '0000-00-00 00:00:00'),
(3, '17082010000002', '17082010000002', 0, 1, 220.000, 0.000, '2017-08-20', 1, 0, 11, NULL, '2017-08-20 01:56:23', '0000-00-00 00:00:00'),
(4, '17082010000003', '17082010000002', 0, 1, 338.000, 0.000, '2017-08-20', 1, 0, 11, NULL, '2017-08-20 01:58:17', '0000-00-00 00:00:00'),
(5, '17082010000004', '17082010000002', 0, 1, 338.000, 0.000, '2017-08-20', 1, 0, 11, NULL, '2017-08-20 01:58:40', '0000-00-00 00:00:00'),
(6, '17082010000005', '17082010000028', 0, 1, 220.000, 0.000, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 11:29:20', '0000-00-00 00:00:00'),
(7, '17082010000006', '17082010000028', 0, 1, 220.000, 0.000, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 14:19:27', '0000-00-00 00:00:00'),
(8, '17082010000007', '17082010000034', 0, 1, 550.000, 0.000, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 17:11:31', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `salereturninvoices` ENABLE KEYS */;
-- Dumping structure for table db_test.salereturntostocks
CREATE TABLE IF NOT EXISTS `salereturntostocks` (
`i_sale_return_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`sale_r_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`item_id` int(10) unsigned NOT NULL,
`price_id` int(10) unsigned NOT NULL,
`quantity` double(12,4) NOT NULL,
`discount` double(12,3) NOT NULL,
`tax` double(12,4) NOT NULL,
`amount` double(12,3) NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `i_sale_return_id` (`i_sale_return_id`),
KEY `salereturntostocks_i_sale_return_id_index` (`i_sale_return_id`),
KEY `salereturntostocks_sale_r_invoice_id_foreign` (`sale_r_invoice_id`),
KEY `salereturntostocks_item_id_foreign` (`item_id`),
KEY `salereturntostocks_price_id_foreign` (`price_id`),
KEY `salereturntostocks_created_by_foreign` (`created_by`),
KEY `salereturntostocks_updated_by_foreign` (`updated_by`),
CONSTRAINT `FK_salereturntostocks_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_salereturntostocks_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_salereturntostocks_iteminfos` FOREIGN KEY (`item_id`) REFERENCES `iteminfos` (`item_id`),
CONSTRAINT `FK_salereturntostocks_priceinfos` FOREIGN KEY (`price_id`) REFERENCES `priceinfos` (`price_id`),
CONSTRAINT `FK_salereturntostocks_salereturninvoices` FOREIGN KEY (`sale_r_invoice_id`) REFERENCES `salereturninvoices` (`sale_r_invoice_id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.salereturntostocks: ~10 rows (approximately)
/*!40000 ALTER TABLE `salereturntostocks` DISABLE KEYS */;
INSERT INTO `salereturntostocks` (`i_sale_return_id`, `sale_r_invoice_id`, `item_id`, `price_id`, `quantity`, `discount`, `tax`, `amount`, `status`, `year`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(1, '17082010000000', 17536, 38903, 2.0000, 0.000, 0.0000, 240.000, 1, 0, 11, NULL, '2017-08-20 01:51:32', '0000-00-00 00:00:00'),
(2, '17082010000001', 17241, 38883, 2.0000, 0.000, 0.0000, 220.000, 1, 0, 11, NULL, '2017-08-20 01:54:40', '0000-00-00 00:00:00'),
(3, '17082010000002', 17241, 38883, 2.0000, 0.000, 0.0000, 220.000, 1, 0, 11, NULL, '2017-08-20 01:56:23', '0000-00-00 00:00:00'),
(4, '17082010000003', 17241, 38883, 2.0000, 0.000, 0.0000, 220.000, 1, 0, 11, NULL, '2017-08-20 01:58:17', '0000-00-00 00:00:00'),
(5, '17082010000003', 17244, 38916, 2.0000, 0.000, 0.0000, 118.000, 1, 0, 11, NULL, '2017-08-20 01:58:17', '0000-00-00 00:00:00'),
(6, '17082010000004', 17241, 38883, 2.0000, 0.000, 0.0000, 220.000, 1, 0, 11, NULL, '2017-08-20 01:58:40', '0000-00-00 00:00:00'),
(7, '17082010000004', 17244, 38916, 2.0000, 0.000, 0.0000, 118.000, 1, 0, 11, NULL, '2017-08-20 01:58:40', '0000-00-00 00:00:00'),
(8, '17082010000005', 17288, 38929, 2.0000, 0.000, 0.0000, 220.000, 1, 0, 1, NULL, '2017-08-20 11:29:20', '0000-00-00 00:00:00'),
(9, '17082010000006', 17288, 38929, 2.0000, 0.000, 0.0000, 220.000, 1, 0, 1, NULL, '2017-08-20 14:19:27', '0000-00-00 00:00:00'),
(10, '17082010000007', 17288, 38929, 5.0000, 0.000, 0.0000, 550.000, 1, 0, 1, NULL, '2017-08-20 17:11:31', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `salereturntostocks` ENABLE KEYS */;
-- Dumping structure for table db_test.smemppermissions
CREATE TABLE IF NOT EXISTS `smemppermissions` (
`s_m_emp_p_id` int(11) NOT NULL AUTO_INCREMENT,
`sub_module_id` int(10) unsigned NOT NULL,
`emp_id` int(10) unsigned NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`sub_module_id`,`emp_id`),
UNIQUE KEY `s_m_emp_p_id` (`s_m_emp_p_id`),
KEY `smemppermissions_s_m_emp_p_id_index` (`s_m_emp_p_id`),
KEY `smemppermissions_emp_id_foreign` (`emp_id`),
KEY `smemppermissions_created_by_foreign` (`created_by`),
KEY `smemppermissions_updated_by_foreign` (`updated_by`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.smemppermissions: ~0 rows (approximately)
/*!40000 ALTER TABLE `smemppermissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `smemppermissions` ENABLE KEYS */;
-- Dumping structure for table db_test.stockitems
CREATE TABLE IF NOT EXISTS `stockitems` (
`stock_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL,
`price_id` int(10) unsigned NOT NULL,
`available_quantity` double(12,2) NOT NULL,
`quantity_ability_flag` int(11) NOT NULL DEFAULT '1' COMMENT '0=quantity not available, 1=quentity available',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=quantity not available, 1=quentity available',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_by` int(10) unsigned DEFAULT NULL,
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`sending_by` int(10) unsigned DEFAULT NULL,
`sending_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`receiving_by` int(10) unsigned DEFAULT NULL,
`receiving_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`item_id`,`price_id`),
UNIQUE KEY `stock_item_id` (`stock_item_id`),
KEY `stockitems_stock_item_id_index` (`stock_item_id`),
KEY `stockitems_price_id_foreign` (`price_id`),
KEY `stockitems_created_by_foreign` (`created_by`),
KEY `stockitems_updated_by_foreign` (`updated_by`),
KEY `FK_stockitems_empinfos` (`sending_by`),
KEY `FK_stockitems_empinfos_2` (`receiving_by`),
CONSTRAINT `FK_stockitems_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_stockitems_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_stockitems_empinfos_3` FOREIGN KEY (`sending_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_stockitems_empinfos_4` FOREIGN KEY (`receiving_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_stockitems_iteminfos` FOREIGN KEY (`item_id`) REFERENCES `iteminfos` (`item_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_stockitems_priceinfos` FOREIGN KEY (`price_id`) REFERENCES `priceinfos` (`price_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.stockitems: ~16 rows (approximately)
/*!40000 ALTER TABLE `stockitems` DISABLE KEYS */;
INSERT INTO `stockitems` (`stock_item_id`, `item_id`, `price_id`, `available_quantity`, `quantity_ability_flag`, `status`, `year`, `created_by`, `created_at`, `updated_by`, `updated_at`, `sending_by`, `sending_at`, `receiving_by`, `receiving_at`) VALUES
(26, 17241, 38927, 4.00, 1, 1, 0, 1, '2017-08-20 07:49:13', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(17, 17241, 38928, 4.00, 1, 1, 0, 1, '2017-08-13 23:50:16', NULL, '2017-08-20 07:49:13', 1, '2017-08-20 14:22:44', NULL, '0000-00-00 00:00:00'),
(24, 17242, 38908, 3.00, 1, 1, 0, 1, '2017-08-14 01:22:28', NULL, '0000-00-00 00:00:00', 1, '2017-08-20 14:21:26', 1, '2017-08-20 14:04:21'),
(20, 17243, 38884, 10.00, 1, 1, 0, 1, '2017-08-14 00:39:55', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00', 1, '2017-08-20 16:47:37'),
(22, 17244, 38916, 3.00, 1, 1, 0, 1, '2017-08-14 01:20:16', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00', 1, '2017-08-20 14:02:56'),
(21, 17245, 38918, 0.00, 1, 0, 0, 1, '2017-08-14 01:20:16', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(23, 17256, 38926, 0.00, 1, 0, 0, 1, '2017-08-14 01:20:16', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(16, 17258, 38922, 8.00, 1, 1, 0, 1, '2017-08-13 23:49:52', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(28, 17288, 38929, 9.00, 1, 1, 0, 1, '2017-08-20 11:07:18', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(18, 17305, 38923, 86.00, 1, 1, 0, 1, '2017-08-14 00:35:00', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(29, 17318, 38930, 5.00, 1, 1, 0, 1, '2017-08-20 11:07:18', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(25, 17536, 38903, 0.00, 1, 0, 0, 11, '2017-08-20 01:51:32', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(19, 17931, 38925, 0.00, 1, 0, 0, 1, '2017-08-14 00:35:00', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(30, 18177, 38931, 101.00, 1, 1, 0, 1, '2017-08-20 13:22:39', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00', 1, '2017-08-20 13:29:49'),
(31, 18241, 38932, 85.00, 1, 1, 0, 1, '2017-08-20 13:30:27', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00'),
(27, 19705, 38887, 0.00, 1, 0, 0, 1, '2017-08-20 09:38:16', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00', NULL, '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `stockitems` ENABLE KEYS */;
-- Dumping structure for table db_test.submodulenames
CREATE TABLE IF NOT EXISTS `submodulenames` (
`sub_module_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`sub_module_name` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`module_id` int(10) unsigned NOT NULL,
`sub_module_url` text COLLATE utf8_unicode_ci NOT NULL,
`sub_module_icon` text COLLATE utf8_unicode_ci NOT NULL,
`sorting` int(11) NOT NULL COMMENT 'For showing sub module with user define sequence',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `sub_module_id` (`sub_module_id`),
KEY `submodulenames_sub_module_id_index` (`sub_module_id`),
KEY `submodulenames_module_id_foreign` (`module_id`),
CONSTRAINT `FK_submodulenames_modulepermissions` FOREIGN KEY (`module_id`) REFERENCES `modulepermissions` (`module_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.submodulenames: ~0 rows (approximately)
/*!40000 ALTER TABLE `submodulenames` DISABLE KEYS */;
/*!40000 ALTER TABLE `submodulenames` ENABLE KEYS */;
-- Dumping structure for table db_test.sub_companies
CREATE TABLE IF NOT EXISTS `sub_companies` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`company_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.sub_companies: ~2 rows (approximately)
/*!40000 ALTER TABLE `sub_companies` DISABLE KEYS */;
INSERT INTO `sub_companies` (`id`, `company_name`, `status`) VALUES
(1, 'Home Plus', 1),
(2, 'Apon Bazar', 1);
/*!40000 ALTER TABLE `sub_companies` ENABLE KEYS */;
-- Dumping structure for table db_test.supduepayments
CREATE TABLE IF NOT EXISTS `supduepayments` (
`s_due_payment_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`supp_id` int(10) unsigned NOT NULL,
`payment_type_id` int(10) unsigned NOT NULL,
`amount` double(12,3) NOT NULL,
`date` date NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `s_due_payment_id` (`s_due_payment_id`),
KEY `supduepayments_s_due_payment_id_index` (`s_due_payment_id`),
KEY `supduepayments_supp_id_foreign` (`supp_id`),
KEY `supduepayments_payment_type_id_foreign` (`payment_type_id`),
KEY `supduepayments_created_by_foreign` (`created_by`),
KEY `supduepayments_updated_by_foreign` (`updated_by`),
CONSTRAINT `FK_supduepayments_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_supduepayments_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_supduepayments_paymenttypes` FOREIGN KEY (`payment_type_id`) REFERENCES `paymenttypes` (`payment_type_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_supduepayments_supplierinfos` FOREIGN KEY (`supp_id`) REFERENCES `supplierinfos` (`supp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.supduepayments: ~0 rows (approximately)
/*!40000 ALTER TABLE `supduepayments` DISABLE KEYS */;
/*!40000 ALTER TABLE `supduepayments` ENABLE KEYS */;
-- Dumping structure for table db_test.supinvoices
CREATE TABLE IF NOT EXISTS `supinvoices` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sup_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`sup_memo_no` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`supp_id` int(10) unsigned DEFAULT '0' COMMENT '0 means unregistrad customer',
`payment_type_id` int(10) unsigned NOT NULL,
`discount` double(12,3) NOT NULL,
`amount` double NOT NULL COMMENT 'payable amount',
`pay` double(12,3) NOT NULL,
`due` double(12,3) NOT NULL,
`transaction_date` date NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `sup_invoice_id` (`sup_invoice_id`),
UNIQUE KEY `sup_memo_no` (`sup_memo_no`),
KEY `supinvoices_supp_id_foreign` (`supp_id`),
KEY `supinvoices_payment_type_id_foreign` (`payment_type_id`),
KEY `supinvoices_created_by_foreign` (`created_by`),
KEY `supinvoices_updated_by_foreign` (`updated_by`),
KEY `sup_invoice_id_2` (`sup_invoice_id`),
CONSTRAINT `FK_supinvoices_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_supinvoices_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_supinvoices_paymenttypes` FOREIGN KEY (`payment_type_id`) REFERENCES `paymenttypes` (`payment_type_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_supinvoices_supplierinfos` FOREIGN KEY (`supp_id`) REFERENCES `supplierinfos` (`supp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.supinvoices: ~29 rows (approximately)
/*!40000 ALTER TABLE `supinvoices` DISABLE KEYS */;
INSERT INTO `supinvoices` (`id`, `sup_invoice_id`, `sup_memo_no`, `supp_id`, `payment_type_id`, `discount`, `amount`, `pay`, `due`, `transaction_date`, `status`, `year`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(1, '17081310000000', '17081310000000', 388, 1, 0.000, 1200, 1200.000, 0.000, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 17:05:31', '0000-00-00 00:00:00'),
(2, '17081310000001', '17081310000001', 388, 1, 0.000, 200, 200.000, 0.000, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 17:07:40', '0000-00-00 00:00:00'),
(3, '17081310000002', '17081310000002', 388, 1, 0.000, 200, 200.000, 0.000, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 17:22:36', '0000-00-00 00:00:00'),
(4, '17081310000003', '17081310000003', 388, 1, 0.000, 11000, 11000.000, 0.000, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 17:36:22', '0000-00-00 00:00:00'),
(5, '17081310000004', '17081310000004', 388, 1, 0.000, 3120, 3120.000, 0.000, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 17:40:02', '0000-00-00 00:00:00'),
(6, '17081310000005', '17081310000005', 388, 1, 0.000, 2520, 2520.000, 0.000, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 21:11:38', '0000-00-00 00:00:00'),
(7, '17081310000006', '17081310000006', 388, 1, 0.000, 20, 20.000, 0.000, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 21:14:43', '0000-00-00 00:00:00'),
(8, '17081310000007', '17081310000007', 388, 1, 0.000, 500, 500.000, 0.000, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 21:14:58', '0000-00-00 00:00:00'),
(9, '17081310000008', '17081310000008', 388, 1, 0.000, 200, 200.000, 0.000, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 21:38:25', '0000-00-00 00:00:00'),
(10, '17081310000009', '17081310000009', 388, 1, 0.000, 200, 200.000, 0.000, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 21:45:07', '0000-00-00 00:00:00'),
(11, '17081310000010', '17081310000010', 389, 1, 0.000, 520, 520.000, 0.000, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 23:40:10', '0000-00-00 00:00:00'),
(12, '17081310000011', '17081310000011', 389, 1, 0.000, 1305, 1305.000, 0.000, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 23:44:32', '0000-00-00 00:00:00'),
(13, '17081310000012', '17081310000012', 389, 1, 0.000, 200, 200.000, 0.000, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 23:45:02', '0000-00-00 00:00:00'),
(14, '17081310000013', '17081310000013', 389, 1, 0.000, 51000, 51000.000, 0.000, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 23:47:56', '0000-00-00 00:00:00'),
(15, '17081310000014', '17081310000014', 389, 1, 0.000, 2000, 2000.000, 0.000, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 23:49:27', '0000-00-00 00:00:00'),
(16, '17081310000015', '17081310000015', 389, 1, 0.000, 2000, 2000.000, 0.000, '2017-08-13', 1, 0, 1, NULL, '2017-08-13 23:53:09', '0000-00-00 00:00:00'),
(17, '17081410000000', '17081410000000', 389, 1, 0.000, 1, 1.000, 0.000, '2017-08-14', 1, 0, 1, NULL, '2017-08-14 00:34:42', '0000-00-00 00:00:00'),
(18, '17081410000001', '17081410000001', 389, 1, 0.000, 120, 120.000, 0.000, '2017-08-14', 1, 0, 1, NULL, '2017-08-14 00:39:25', '0000-00-00 00:00:00'),
(19, '17081410000002', '17081410000002', 389, 1, 0.000, 1055, 1055.000, 0.000, '2017-08-14', 1, 0, 1, NULL, '2017-08-14 01:19:35', '0000-00-00 00:00:00'),
(20, '17081410000003', '17081410000003', 389, 1, 0.000, 2775, 2775.000, 0.000, '2017-08-14', 1, 0, 1, NULL, '2017-08-14 01:21:44', '0000-00-00 00:00:00'),
(21, '17082010000000', '17082010000000', 389, 1, 0.000, 550, 550.000, 0.000, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 07:49:07', '0000-00-00 00:00:00'),
(22, '17082010000001', '17082010000001', 389, 1, 0.000, 5200, 5200.000, 0.000, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 09:37:56', '0000-00-00 00:00:00'),
(23, '17082010000002', '17082010000002', 389, 1, 0.000, 2000, 2000.000, 0.000, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 11:07:12', '0000-00-00 00:00:00'),
(24, '17082010000003', '17082010000003', 389, 1, 0.000, 2000, 2000.000, 0.000, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 13:22:33', '0000-00-00 00:00:00'),
(25, '17082010000004', '17082010000004', 389, 1, 0.000, 2000, 2000.000, 0.000, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 13:29:45', '0000-00-00 00:00:00'),
(26, '17082010000005', '17082010000005', 389, 1, 0.000, 300, 300.000, 0.000, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 13:30:21', '0000-00-00 00:00:00'),
(27, '17082010000006', '17082010000006', 389, 1, 0.000, 1100, 1100.000, 0.000, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 13:49:25', '0000-00-00 00:00:00'),
(28, '17082010000007', '17082010000007', 389, 1, 0.000, 1650, 1650.000, 0.000, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 14:01:14', '0000-00-00 00:00:00'),
(29, '17082010000008', '17082010000008', 389, 1, 0.000, 5000, 5000.000, 0.000, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 14:04:14', '0000-00-00 00:00:00'),
(30, '17082010000009', '17082010000009', 389, 1, 0.000, 200, 200.000, 0.000, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 16:43:07', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `supinvoices` ENABLE KEYS */;
-- Dumping structure for table db_test.supplierinfos
CREATE TABLE IF NOT EXISTS `supplierinfos` (
`supp_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`supp_or_comp_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`user_name` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(256) COLLATE utf8_unicode_ci NOT NULL,
`permanent_address` text COLLATE utf8_unicode_ci NOT NULL,
`present_address` text COLLATE utf8_unicode_ci NOT NULL,
`profile_image` text COLLATE utf8_unicode_ci NOT NULL,
`mobile` varchar(15) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`advance_payment` int(11) NOT NULL COMMENT 'Shop advance payment',
`due` int(11) NOT NULL COMMENT 'Shop liabilities',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `supp_id` (`supp_id`),
UNIQUE KEY `supplierinfos_user_name_unique` (`user_name`),
KEY `supplierinfos_supp_id_index` (`supp_id`),
KEY `supplierinfos_created_by_foreign` (`created_by`),
KEY `supplierinfos_updated_by_foreign` (`updated_by`),
KEY `supp_id_2` (`supp_id`),
CONSTRAINT `FK_supplierinfos_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_supplierinfos_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=391 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.supplierinfos: ~0 rows (approximately)
/*!40000 ALTER TABLE `supplierinfos` DISABLE KEYS */;
INSERT INTO `supplierinfos` (`supp_id`, `supp_or_comp_name`, `user_name`, `password`, `permanent_address`, `present_address`, `profile_image`, `mobile`, `email`, `advance_payment`, `due`, `status`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(388, 'Uniliver', 'uni', '123', 'Feni', 'Feni', '', '', '', 0, 0, 1, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(389, 'Home Plus', 'home_plus', '123', '', '', '', '', '<EMAIL>', 0, 0, 1, 1, NULL, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(390, 'Sajib Corporation', 'sajib_corp', '', 'as', 'ads', '', '012', '<EMAIL>', 0, 0, 1, 1, NULL, '2017-08-20 13:54:00', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `supplierinfos` ENABLE KEYS */;
-- Dumping structure for table db_test.supplierreturninvoices
CREATE TABLE IF NOT EXISTS `supplierreturninvoices` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sup_r_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`sup_invoice_id` varchar(14) COLLATE utf8_unicode_ci NOT NULL,
`supp_id` int(10) unsigned NOT NULL,
`payment_type_id` int(10) unsigned NOT NULL,
`amount` double(12,3) NOT NULL,
`less_amount` double(12,3) NOT NULL COMMENT 'loss amount of customer for return',
`transaction_date` date NOT NULL,
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=Inactive, 1=Active',
`year` int(11) NOT NULL,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `sup_r_invoice_id` (`sup_r_invoice_id`),
KEY `supplierreturninvoices_supp_id_foreign` (`supp_id`),
KEY `supplierreturninvoices_payment_type_id_foreign` (`payment_type_id`),
KEY `supplierreturninvoices_created_by_foreign` (`created_by`),
KEY `supplierreturninvoices_updated_by_foreign` (`updated_by`),
KEY `FK_supplierreturninvoices_supinvoices` (`sup_invoice_id`),
CONSTRAINT `FK_supplierreturninvoices_empinfos` FOREIGN KEY (`created_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_supplierreturninvoices_empinfos_2` FOREIGN KEY (`updated_by`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_supplierreturninvoices_paymenttypes` FOREIGN KEY (`payment_type_id`) REFERENCES `paymenttypes` (`payment_type_id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `FK_supplierreturninvoices_supinvoices` FOREIGN KEY (`sup_invoice_id`) REFERENCES `supinvoices` (`sup_invoice_id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `FK_supplierreturninvoices_supplierinfos` FOREIGN KEY (`supp_id`) REFERENCES `supplierinfos` (`supp_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table db_test.supplierreturninvoices: ~1 rows (approximately)
/*!40000 ALTER TABLE `supplierreturninvoices` DISABLE KEYS */;
INSERT INTO `supplierreturninvoices` (`id`, `sup_r_invoice_id`, `sup_invoice_id`, `supp_id`, `payment_type_id`, `amount`, `less_amount`, `transaction_date`, `status`, `year`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(1, '17082010000000', '17081310000000', 388, 1, 1000.000, 0.000, '2017-08-20', 1, 0, 1, NULL, '2017-08-20 17:10:19', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `supplierreturninvoices` ENABLE KEYS */;
-- Dumping structure for table db_test.urlemppermissions
CREATE TABLE IF NOT EXISTS `urlemppermissions` (
`url_emp_p_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`url_id` int(10) unsigned NOT NULL,
`emp_id` int(10) unsigned NOT NULL,
`status` int(1) NOT NULL DEFAULT '1' COMMENT '0 = inactive 1 = active',
`created_by` int(11) NOT NULL,
`updated_by` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`url_emp_p_id`),
KEY `FK_urlemppermissions_empinfos` (`emp_id`),
KEY `FK_urlemppermissions_urlnames` (`url_id`),
CONSTRAINT `FK_urlemppermissions_empinfos` FOREIGN KEY (`emp_id`) REFERENCES `empinfos` (`emp_id`) ON UPDATE CASCADE,
CONSTRAINT `FK_urlemppermissions_urlnames` FOREIGN KEY (`url_id`) REFERENCES `urlnames` (`url_id`)
) ENGINE=InnoDB AUTO_INCREMENT=114 DEFAULT CHARSET=latin1;
-- Dumping data for table db_test.urlemppermissions: ~60 rows (approximately)
/*!40000 ALTER TABLE `urlemppermissions` DISABLE KEYS */;
INSERT INTO `urlemppermissions` (`url_emp_p_id`, `url_id`, `emp_id`, `status`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES
(1, 1, 1, 1, 0, NULL, '2015-12-08 01:51:27', '0000-00-00 00:00:00'),
(2, 2, 1, 1, 1, NULL, '2015-12-08 01:53:53', '0000-00-00 00:00:00'),
(3, 3, 1, 1, 1, NULL, '2015-12-08 01:53:53', '0000-00-00 00:00:00'),
(4, 4, 1, 1, 1, NULL, '2015-12-08 01:53:53', '0000-00-00 00:00:00'),
(5, 5, 1, 1, 1, NULL, '2015-12-08 01:53:53', '0000-00-00 00:00:00'),
(6, 7, 1, 1, 1, NULL, '2015-12-08 01:53:53', '0000-00-00 00:00:00'),
(7, 8, 1, 1, 1, NULL, '2015-12-08 01:53:53', '0000-00-00 00:00:00'),
(8, 9, 1, 1, 1, NULL, '2015-12-08 01:53:53', '0000-00-00 00:00:00'),
(9, 10, 1, 1, 1, NULL, '2015-12-08 01:53:53', '0000-00-00 00:00:00'),
(10, 11, 1, 1, 1, NULL, '2015-12-08 01:53:53', '0000-00-00 00:00:00'),
(11, 1, 2, 1, 1, NULL, '2015-12-12 20:23:58', '0000-00-00 00:00:00'),
(12, 2, 2, 1, 1, NULL, '2015-12-12 20:23:58', '0000-00-00 00:00:00'),
(13, 3, 2, 1, 1, NULL, '2015-12-12 20:23:58', '0000-00-00 00:00:00'),
(14, 4, 2, 1, 1, NULL, '2015-12-12 20:23:58', '0000-00-00 00:00:00'),
(15, 5, 2, 1, 1, NULL, '2015-12-12 20:23:58', '0000-00-00 00:00:00'),
(18, 9, 2, 1, 1, NULL, '2015-12-12 20:23:58', '0000-00-00 00:00:00'),
(19, 10, 2, 1, 1, NULL, '2015-12-12 20:23:58', '0000-00-00 00:00:00'),
(21, 1, 3, 1, 1, NULL, '2016-01-22 12:12:13', '0000-00-00 00:00:00'),
(22, 2, 3, 1, 1, NULL, '2016-01-22 12:12:13', '0000-00-00 00:00:00'),
(23, 3, 3, 1, 1, NULL, '2016-01-22 12:12:13', '0000-00-00 00:00:00'),
(24, 4, 3, 1, 1, NULL, '2016-01-22 12:12:13', '0000-00-00 00:00:00'),
(25, 5, 3, 1, 1, NULL, '2016-01-22 12:12:13', '0000-00-00 00:00:00'),
(28, 9, 3, 1, 1, NULL, '2016-01-22 12:12:13', '0000-00-00 00:00:00'),
(29, 10, 3, 1, 1, NULL, '2016-01-22 12:12:13', '0000-00-00 00:00:00'),
(37, 8, 4, 1, 1, NULL, '2016-01-22 12:24:11', '0000-00-00 00:00:00'),
(40, 11, 4, 1, 1, NULL, '2016-01-22 12:24:12', '0000-00-00 00:00:00'),
(47, 8, 5, 1, 1, NULL, '2016-01-23 12:52:08', '0000-00-00 00:00:00'),
(50, 11, 5, 1, 1, NULL, '2016-01-23 12:52:08', '0000-00-00 00:00:00'),
(57, 8, 6, 1, 1, NULL, '2016-01-23 13:02:23', '0000-00-00 00:00:00'),
(60, 11, 6, 1, 1, NULL, '2016-01-23 13:02:23', '0000-00-00 00:00:00'),
(67, 8, 7, 1, 1, NULL, '2016-01-23 14:43:46', '0000-00-00 00:00:00'),
(70, 11, 7, 1, 1, NULL, '2016-01-23 14:43:46', '0000-00-00 00:00:00'),
(71, 1, 8, 1, 1, NULL, '2016-01-24 09:31:26', '0000-00-00 00:00:00'),
(72, 2, 8, 1, 1, NULL, '2016-01-24 09:31:26', '0000-00-00 00:00:00'),
(73, 3, 8, 1, 1, NULL, '2016-01-24 09:31:26', '0000-00-00 00:00:00'),
(74, 4, 8, 1, 1, NULL, '2016-01-24 09:31:26', '0000-00-00 00:00:00'),
(75, 5, 8, 1, 1, NULL, '2016-01-24 09:31:26', '0000-00-00 00:00:00'),
(76, 7, 8, 1, 1, NULL, '2016-01-24 09:31:26', '0000-00-00 00:00:00'),
(77, 8, 8, 1, 1, NULL, '2016-01-24 09:31:26', '0000-00-00 00:00:00'),
(78, 9, 8, 1, 1, NULL, '2016-01-24 09:31:26', '0000-00-00 00:00:00'),
(79, 10, 8, 1, 1, NULL, '2016-01-24 09:31:26', '0000-00-00 00:00:00'),
(80, 11, 8, 1, 1, NULL, '2016-01-24 09:31:26', '0000-00-00 00:00:00'),
(81, 1, 9, 1, 1, NULL, '2016-01-25 09:28:24', '0000-00-00 00:00:00'),
(82, 2, 9, 1, 1, NULL, '2016-01-25 09:28:24', '0000-00-00 00:00:00'),
(83, 3, 9, 1, 1, NULL, '2016-01-25 09:28:24', '0000-00-00 00:00:00'),
(84, 4, 9, 1, 1, NULL, '2016-01-25 09:28:24', '0000-00-00 00:00:00'),
(85, 5, 9, 1, 1, NULL, '2016-01-25 09:28:24', '0000-00-00 00:00:00'),
(86, 7, 9, 1, 1, NULL, '2016-01-25 09:28:24', '0000-00-00 00:00:00'),
(87, 8, 9, 1, 1, NULL, '2016-01-25 09:28:24', '0000-00-00 00:00:00'),
(88, 9, 9, 1, 1, NULL, '2016-01-25 09:28:24', '0000-00-00 00:00:00'),
(89, 10, 9, 1, 1, NULL, '2016-01-25 09:28:24', '0000-00-00 00:00:00'),
(90, 11, 9, 1, 1, NULL, '2016-01-25 09:28:24', '0000-00-00 00:00:00'),
(97, 8, 10, 1, 1, NULL, '2016-01-25 09:51:09', '0000-00-00 00:00:00'),
(100, 11, 10, 1, 1, NULL, '2016-01-25 09:51:09', '0000-00-00 00:00:00'),
(101, 1, 4, 1, 1, NULL, '2016-01-28 13:12:20', '0000-00-00 00:00:00'),
(102, 2, 4, 1, 1, NULL, '2016-01-28 13:12:20', '0000-00-00 00:00:00'),
(103, 3, 4, 1, 1, NULL, '2016-01-28 13:12:20', '0000-00-00 00:00:00'),
(104, 4, 4, 1, 1, NULL, '2016-01-28 13:12:20', '0000-00-00 00:00:00'),
(105, 7, 4, 1, 1, NULL, '2016-01-28 13:12:21', '0000-00-00 00:00:00'),
(106, 9, 4, 1, 1, NULL, '2016-01-28 13:12:21', '0000-00-00 00:00:00'),
(108, 8, 11, 1, 1, NULL, '2017-08-19 12:48:36', '0000-00-00 00:00:00'),
(110, 11, 11, 1, 1, NULL, '2017-08-19 12:48:36', '0000-00-00 00:00:00'),
(111, 7, 11, 1, 1, NULL, '2017-08-19 12:57:43', '0000-00-00 00:00:00'),
(112, 8, 12, 1, 1, NULL, '2017-08-20 01:17:07', '0000-00-00 00:00:00'),
(113, 11, 12, 1, 1, NULL, '2017-08-20 01:17:07', '0000-00-00 00:00:00');
/*!40000 ALTER TABLE `urlemppermissions` ENABLE KEYS */;
-- Dumping structure for table db_test.urlnamepermissions
CREATE TABLE IF NOT EXISTS `urlnamepermissions` (
`url_permission_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`url_id` int(10) unsigned NOT NULL,
`company_id` int(10) unsigned NOT NULL,
`status` int(1) NOT NULL DEFAULT '1' COMMENT '0 = inactive 1 = active',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`url_permission_id`),
KEY `FK_urlnamepermissions_urlnames` (`url_id`),
CONSTRAINT `FK_urlnamepermissions_urlnames` FOREIGN KEY (`url_id`) REFERENCES `urlnames` (`url_id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;
-- Dumping data for table db_test.urlnamepermissions: ~10 rows (approximately)
/*!40000 ALTER TABLE `urlnamepermissions` DISABLE KEYS */;
INSERT INTO `urlnamepermissions` (`url_permission_id`, `url_id`, `company_id`, `status`, `created_at`, `updated_at`) VALUES
(1, 1, 1, 1, '2015-04-25 23:30:14', NULL),
(2, 2, 1, 1, '2015-04-25 23:30:14', NULL),
(3, 3, 1, 1, '2015-04-25 23:30:32', NULL),
(4, 4, 1, 1, '2015-04-25 23:30:32', NULL),
(5, 5, 1, 1, '2015-05-01 11:31:44', NULL),
(6, 7, 0, 1, '2015-05-01 11:31:44', NULL),
(7, 8, 1, 1, '2015-05-01 11:32:49', NULL),
(8, 9, 1, 1, '2015-05-05 22:50:31', NULL),
(9, 10, 1, 1, '2015-05-05 22:50:31', NULL),
(10, 11, 1, 1, '2015-05-30 15:24:24', NULL);
/*!40000 ALTER TABLE `urlnamepermissions` ENABLE KEYS */;
-- Dumping structure for table db_test.urlnames
CREATE TABLE IF NOT EXISTS `urlnames` (
`url_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`url_name` varchar(30) NOT NULL,
`url_address` varchar(50) NOT NULL,
`status` int(1) NOT NULL DEFAULT '1' COMMENT '0 = inactive 1 = active',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`url_id`),
UNIQUE KEY `url_name` (`url_name`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;
-- Dumping data for table db_test.urlnames: ~10 rows (approximately)
/*!40000 ALTER TABLE `urlnames` DISABLE KEYS */;
INSERT INTO `urlnames` (`url_id`, `url_name`, `url_address`, `status`, `created_at`, `updated_at`) VALUES
(1, 'Add new Item', 'admin.itemAddForm', 1, '2015-04-06 15:37:01', '0000-00-00 00:00:00'),
(2, 'Barcode Print', 'barcode.post', 1, '2015-04-06 15:38:34', '0000-00-00 00:00:00'),
(3, 'WareHouse Items View', 'admin.godownItem', 1, '2015-04-06 15:47:44', '0000-00-00 00:00:00'),
(4, 'Recently Added Item', 'admin.getRecentItems', 1, '2015-04-06 15:45:18', '0000-00-00 00:00:00'),
(5, 'Damage Products', 'damage.index', 1, '2015-05-01 11:25:26', NULL),
(7, 'Return to WareHouse', 'send.returnToGodown', 1, '2015-05-01 11:25:51', NULL),
(8, 'Sales Return -Customer', 'saleReturn.index', 1, '2015-05-01 11:26:18', NULL),
(9, 'Return Receive', 'returnReceive', 1, '2015-05-05 22:49:45', NULL),
(10, 'Purchase Return to Supplier', 'purchase.returnToSupplier', 1, '2015-05-05 22:49:45', NULL),
(11, 'Item wise Return from customer', 'admin.returnQtyFromCustomer', 1, '2015-05-30 15:23:23', NULL);
/*!40000 ALTER TABLE `urlnames` ENABLE KEYS */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
<filename>0x0E-SQL_more_queries/15-comedy_only.sql<gh_stars>0
-- lists all Comedy shows in the database hbtn_0d_tvshows
SELECT a.title
FROM tv_shows a
JOIN tv_show_genres b
ON a.id = b.show_id
JOIN tv_genres c
ON b.genre_id = c.id
WHERE c.name = 'Comedy'
ORDER BY a.title ASC;
|
<reponame>kent-wu/sql-helper
SELECT * FROM test1;
SELECT * FROM test2; |
<reponame>fendys01/Construction-Project<filename>resources/migrations/000026_create_member_temporaries_table.down.sql
DROP TABLE IF EXISTS member_temporaries; |
<reponame>bg-bi-deploy/SGMA
select line_number,NumFact,DateFact,NomRaisonFrn,IdfFrn,IceFrn,DsgnBnSrvc,MntHT,sum(TauxTva) TauxTva,sum(MntHT*TauxTva/100) MntTva,TauxPrataDed,MntTvaRec,ModePai,DatePai
from
(
SELECT
apinvl1.line_number,
apinv.INVOICE_NUM NumFact,
apinv.INVOICE_DATE DateFact,
aps.vendor_name NomRaisonFrn,
aps.attribute1 IdfFrn,
aps.attribute2 IceFrn,
apinvl1.description DsgnBnSrvc,
nvl(apinvl1.base_amount ,apinvl1.amount) MntHT ,
nvl(zxl.TAX_RATE,0) TauxTva,
nvl(zxl.tax_amt,0) MntTva,
0 MntTTC,
nvl(apinvd2.rec_nrec_rate,0) TauxPrataDed,
nvl2(apinvd2.base_amount,apinvd2.amount,0) MntTvaRec,
apinv.PAYMENT_METHOD_CODE ModePai,
apc.CHECK_DATE DatePai
--,zxl.*
from
ap_invoices_all apinv
,AP_INVOICE_PAYMENTS_ALL appay
,AP_INVOICE_DISTRIBUTIONS_all apinvd1
,AP_INVOICE_DISTRIBUTIONS_all apinvd2
,ap_checks_all apc
,ap_suppliers aps
,ap_invoice_lines_all apinvl1
,ZX_LINES zxl
where
1=1
and apinvl1.LINE_TYPE_LOOKUP_CODE= 'ITEM'
--and apinv.invoice_id in (47010,33008)
--and apinv.invoice_id in (39019)
and apinv.invoice_id in (18507,14793,188525,177200,545011,53965) --bg-bi server
and apinv.vendor_id=aps.vendor_id
and apinv.invoice_id=apinvl1.invoice_id
and zxl.trx_id(+)=apinv.invoice_id
and zxl.trx_line_number(+)=apinvl1.line_number
and zxl.trx_level_type(+) = 'LINE'
--and zxl.trx_line_id = 1
and zxl.CANCEL_FLAG(+) ='N'
and appay.invoice_id=apinv.invoice_id
and nvl(appay.reversal_flag,'N') = 'N'
and appay.check_id=apc.check_id
and apinv.invoice_id = apinvd1.invoice_id(+)
and apinvl1.line_number=apinvd1.invoice_line_number
and apinv.invoice_id = apinvd2.invoice_id(+)
and apinvd1.invoice_distribution_id = apinvd2.charge_applicable_to_dist_id(+)
and apinvd2.line_type_lookup_code(+) = 'REC_TAX'
)
group by
line_number,NumFact,DateFact,NomRaisonFrn,IdfFrn,IceFrn,DsgnBnSrvc,MntHT,TauxPrataDed,MntTvaRec,ModePai,DatePai
order by 2,1
;
select invoice_id from ap_invoices_all where invoice_num='01689';
po_change_api1_s
;
select invoice_distribution_id,apinvdist.charge_applicable_to_dist_id,base_amount,amount,DISTRIBUTION_LINE_NUMBER, invoice_line_number, line_type_lookup_code,reversal_flag,cancelled_flag,apinvdist.* from AP_INVOICE_DISTRIBUTIONS_all apinvdist
where invoice_id=39019
--and line_type_lookup_code ='REC_TAX'
--order by DISTRIBUTION_LINE_NUMBER, invoice_line_number, distribution_line_number
order by 3,4
;
;
select * from po_headers_interface
;
select * from po_headers_all order by 4 desc;
select * from po_releases_all order by 2 desc;
select * from all_tables where table_name like 'WF%NOT%';
select * from WF_NOTIFICATIONS order by 1 desc;
PO_REQ_LINES_AUTOCREATE_V
execute po_relgen_pkg.create_releases;
select * from po_lines_interface ;
select * from po_interface_errors;
select * from XXSGMA.XXSGMA_PO_REP_BLANKET_ENTETE;
select * from AP_INVOICE_PAYMENTS_ALL where invoice_id=43015;
select distinct PAYMENT_METHOD_CODE from ap_invoices_all;
select sum(zxl.tax_amt) from ZX_LINES zxl
where
trx_id=47010
AND TRX_LEVEL_TYPE = 'LINE'
AND TRX_LINE_ID = '1'
;
select 1,(select 1,2 from all_tables where rownum <2) xx from dual;
select * from po_distributions_all;
exec mo_global.set_policy_context('M',1);
exec mo_global.init('OFA');
exec fnd_global.apps_initialize(,,140)
select * from fnd_application where application_short_name like '%FA%';
select USERENV('LANG') from dual;
select * from FND_FLEX_VALUES_VL;
select fv.description,fv.flex_value,fv.parent_flex_value_low,fv. from
FND_FLEX_VALUE_SETS jv,
FND_FLEX_VALUES_VL fv
where
1=1
and fv.FLEX_VALUE_SET_id = jv.FLEX_VALUE_SET_id
and jv.FLEX_VALUE_SET_NAME = 'XXSGMA_FA_GROUPE_CATEGORIE'
FND_FLEX_VALUE_CHILDREN_V
;
fnd_flex_values_vl v,
fnd_flex_value_norm_hierarchy h,
fnd_flex_value_sets s
;
select * from fnd_flex_value_norm_hierarchy h,fnd_flex_value_sets s
where
h.flex_value_set_id = s.flex_value_set_id
and s.flex_value_set_name='XXSGMA_FA_GROUPE_CATEGORIE'
;
|
SELECT COUNT(*)
FROM site AS s,
so_user AS u1,
tag AS t1,
tag_question AS tq1,
question AS q1,
badge AS b1,
account AS acc
WHERE s.site_id = u1.site_id
AND s.site_id = b1.site_id
AND s.site_id = t1.site_id
AND s.site_id = tq1.site_id
AND s.site_id = q1.site_id
AND t1.id = tq1.tag_id
AND q1.id = tq1.question_id
AND q1.owner_user_id = u1.id
AND acc.id = u1.account_id
AND b1.user_id = u1.id
AND (q1.score >= 1)
AND (q1.score <= 10)
AND s.site_name = 'stackoverflow'
AND (t1.name in ('cat',
'curly-braces',
'event-bubbling',
'filehelpers',
'msp430',
'nsscrollview',
'permalinks',
's4',
'wowza'))
AND (LOWER(acc.website_url) LIKE ('%in')) |
CREATE TABLE [dbo].[Blogs](
[BlogId] [int] NOT NULL,
[Name] [nvarchar](max) NULL,
[Url] [nvarchar](max) NULL,
CONSTRAINT [PK_dbo.Blogs] PRIMARY KEY CLUSTERED
(
[BlogId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
|
<gh_stars>1-10
-- FUNCTION: public.dfo_merge_bands(text, text)
DROP FUNCTION public.dfo_merge_bands(text, text);
CREATE OR REPLACE FUNCTION public.dfo_merge_bands(
rastertable text,
filename text)
RETURNS text
LANGUAGE 'plpgsql'
COST 100
VOLATILE
AS $BODY$
DECLARE
rastcol text;
strsql text;
rastTypes text[] = array['mean','stddev','density'];
rastType text;
rtn text;
msg text;
deleted_rows integer;
i integer;
BEGIN
--Get raster field name
SELECT r_raster_column FROM raster_columns WHERE r_table_name = rastertable INTO rastcol;
deleted_rows = 0;
--Merging all bands to the "depth" tiles
FOREACH rastType IN ARRAY rastTypes
LOOP
--Add 'rastType' band to his corresponding depth tile
strsql = concat('UPDATE ',rastertable,' u SET ',rastcol,' = bnd from
(SELECT d.id, (ST_AddBand(d.',rastcol,' , o.',rastcol,' ,1)) as bnd
FROM ',rastertable,' d join ',rastertable,' o ON
ST_Equals(d.tile_extent,o.tile_extent)
AND d.filename LIKE ',quote_literal(filename||'%depth%'),'
AND o.filename LIKE ',quote_literal(filename||'%'||rastType||'.tiff'),'
AND o.resolution=d.resolution) sr
WHERE sr.id=u.id');
msg := 'Add band '|| rastType || ' in raster column with :'|| strsql;
RAISE DEBUG '%', msg;
EXECUTE strsql;
-- log for output to user...
strsql = concat('SELECT count(*) FROM ',rastertable,' WHERE filename LIKE ',quote_literal(filename||'%'||rastType||'.tiff'));
RAISE DEBUG 'Log %', strsql;
EXECUTE strsql INTO i;
deleted_rows := i + deleted_rows;
--delte 'rastType' band from table
strsql = concat('DELETE FROM ',rastertable,' WHERE filename LIKE ',quote_literal(filename||'%'||rastType||'.tiff'));
msg := 'Delete rows of '|| rastType || ' in '|| rastertable || 'table with :'|| strsql;
RAISE DEBUG '%', msg;
EXECUTE strsql;
END LOOP;
rtn := 'Delete total of ' || deleted_rows || ' rows from ' || rastertable || ' table, merged into band in raster field.';
RETURN rtn;
EXCEPTION WHEN OTHERS THEN
RAISE NOTICE ' % ', SQLERRM;
END;
$BODY$;
|
<reponame>luiscarlosjunior/aulas-graduacao
--Create a new INSTEAD OF trigger to manage record deletions
CREATE OR REPLACE TRIGGER manage_delete
INSTEAD OF DELETE
ON employee_department_info
DECLARE
BEGIN
--Create the DELETE statement to use
DELETE FROM employee
WHERE ssn = :old.employee_ssn;
END; |
<reponame>erenozgur98/Memorabilia-Multiverse<filename>db/schema.sql<gh_stars>1-10
DROP DATABASE IF EXISTS new_memorabilia_db;
CREATE DATABASE new_memorabilia_db; |
<gh_stars>1-10
--Bed Counts Per Hospital Ordered By Bed Utilization
select
hospital_name,
hospital_capacity.state,
lat,lon,
inpatient_beds_used_7_day_sum as beds_used,
total_beds_7_day_sum as total_beds,
total_adult_hospitalized_suspected_covid_7_day_sum as suspected_cases,
(inpatient_beds_used_7_day_sum/total_beds_7_day_sum)*100 as rate
from hospital_capacity join hospital_points on hospital_capacity.hospital_pk=hospital_points.id
where collection_week='{week}'
and inpatient_beds_used_7_day_sum is not null
and total_beds_7_day_sum is not null
order by rate desc; |
SELECT departamentos.descricao, COUNT(funcionarios.id_departamento)
FROM funcionarios
JOIN departamentos
ON funcionarios.id_departamento = departamentos.id_dept
GROUP BY departamentos.id_dept; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.