sql stringlengths 6 1.05M |
|---|
ALTER TABLE pod_user ADD COLUMN is_active boolean;
UPDATE pod_user SET is_active=true;
ALTER TABLE pod_user ALTER COLUMN is_active SET NOT NULL;
ALTER TABLE pod_user ALTER COLUMN is_active SET DEFAULT true;
-- Table: pod_workspaces
-- DROP TABLE pod_workspaces;
CREATE TABLE pod_workspaces
(
workspace_id integer NOT NULL,
data_label character varying(1024),
data_comment text,
created_at timestamp without time zone,
updated_at timestamp without time zone,
is_deleted boolean NOT NULL DEFAULT false,
CONSTRAINT pk__workspace__workspace_id PRIMARY KEY (workspace_id )
)
WITH (
OIDS=FALSE
);
ALTER TABLE pod_workspaces
OWNER TO poduser;
-- Trigger: pod_workspaces__on_insert_set_created_at on pod_workspaces
-- DROP TRIGGER pod_workspaces__on_insert_set_created_at ON pod_workspaces;
CREATE TRIGGER pod_workspaces__on_insert_set_created_at
BEFORE INSERT
ON pod_workspaces
FOR EACH ROW
EXECUTE PROCEDURE set_created_at();
-- Trigger: pod_workspaces__on_update_set_updated_at on pod_workspaces
-- DROP TRIGGER pod_workspaces__on_update_set_updated_at ON pod_workspaces;
CREATE TRIGGER pod_workspaces__on_update_set_updated_at
BEFORE UPDATE
ON pod_workspaces
FOR EACH ROW
EXECUTE PROCEDURE set_updated_at();
CREATE SEQUENCE pod_workspaces__workspace_id__sequence
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 11
CACHE 1;
ALTER TABLE pod_workspaces__workspace_id__sequence
OWNER TO poduser;
INSERT INTO pod_workspaces(workspace_id, data_label, data_comment) VALUES (1, 'All (old) content', 'This workspace contain all content which have been created before adding workspace features');
-- Table: pod_user_workspace
-- DROP TABLE pod_user_workspace;
CREATE TABLE pod_user_workspace
(
user_id integer NOT NULL,
workspace_id integer NOT NULL,
role integer,
do_notify boolean DEFAULT FALSE NOT NULL,
CONSTRAINT pk__pod_user_workspace__user_id__workspace_id PRIMARY KEY (user_id , workspace_id ),
CONSTRAINT fk__pod_user_workspace__user_id FOREIGN KEY (user_id)
REFERENCES pod_user (user_id) MATCH SIMPLE
ON UPDATE CASCADE ON DELETE CASCADE,
CONSTRAINT fk__pod_user_workspace__workspace_id FOREIGN KEY (workspace_id)
REFERENCES pod_workspaces (workspace_id) MATCH SIMPLE
ON UPDATE CASCADE ON DELETE CASCADE
)
WITH (
OIDS=FALSE
);
ALTER TABLE pod_user_workspace
OWNER TO poduser;
INSERT INTO pod_user_workspace(user_id, workspace_id, role) SELECT user_id, 1, 8 FROM pod_user;
-- ADD Workspace id to all nodes
ALTER TABLE pod_nodes_history ADD COLUMN workspace_id integer;
ALTER TABLE pod_nodes_history ADD COLUMN is_deleted boolean;
UPDATE pod_nodes_history SET is_deleted=false;
ALTER TABLE pod_nodes_history ALTER COLUMN is_deleted SET NOT NULL;
ALTER TABLE pod_nodes_history ALTER COLUMN is_deleted SET DEFAULT false;
ALTER TABLE pod_nodes_history ADD COLUMN is_archived boolean;
UPDATE pod_nodes_history SET is_archived=false;
ALTER TABLE pod_nodes_history ALTER COLUMN is_archived SET NOT NULL;
ALTER TABLE pod_nodes_history ALTER COLUMN is_archived SET DEFAULT false;
-- Trigger: pod_update_node_tg on pod_nodes
DROP TRIGGER pod_update_node_tg ON pod_nodes;
CREATE TRIGGER pod_update_node_tg
INSTEAD OF UPDATE
ON pod_nodes
FOR EACH ROW
EXECUTE PROCEDURE pod_update_node();
-- View: pod_nodes
-- DROP VIEW pod_nodes;
CREATE OR REPLACE VIEW pod_nodes AS
SELECT DISTINCT ON (pod_nodes_history.node_id) pod_nodes_history.node_id, pod_nodes_history.parent_id, pod_nodes_history.node_order, pod_nodes_history.node_type, pod_nodes_history.created_at, pod_nodes_history.updated_at, pod_nodes_history.data_label, pod_nodes_history.data_content, pod_nodes_history.data_datetime, pod_nodes_history.node_status, pod_nodes_history.data_reminder_datetime, pod_nodes_history.data_file_name, pod_nodes_history.data_file_content, pod_nodes_history.data_file_mime_type, pod_nodes_history.parent_tree_path, pod_nodes_history.node_depth, pod_nodes_history.owner_id, pod_nodes_history.is_shared, pod_nodes_history.is_public, pod_nodes_history.public_url_key, pod_nodes_history.workspace_id, pod_nodes_history.is_deleted, pod_nodes_history.is_archived
FROM pod_nodes_history
ORDER BY pod_nodes_history.node_id, pod_nodes_history.updated_at DESC, pod_nodes_history.created_at DESC;
ALTER TABLE pod_nodes
OWNER TO poduser;
-- Rule: pod_insert_new_node ON pod_nodes
-- DROP RULE pod_insert_new_node ON pod_nodes;
CREATE OR REPLACE RULE pod_insert_new_node AS
ON INSERT TO pod_nodes DO INSTEAD INSERT INTO pod_nodes_history (node_id, parent_id, node_order, node_type, created_at, updated_at, data_label, data_content, data_datetime, node_status, data_reminder_datetime, data_file_name, data_file_content, data_file_mime_type, parent_tree_path, node_depth, owner_id, version_id, is_shared, is_public, public_url_key, workspace_id, is_deleted, is_archived)
VALUES (nextval('pod_nodes__node_id__sequence'::regclass), new.parent_id, new.node_order, new.node_type, new.created_at, new.updated_at, new.data_label, new.data_content, new.data_datetime, new.node_status, new.data_reminder_datetime, new.data_file_name, new.data_file_content, new.data_file_mime_type, new.parent_tree_path, new.node_depth, new.owner_id, nextval('pod_nodes_version_id_sequence'::regclass), new.is_shared, new.is_public, new.public_url_key, new.workspace_id, new.is_deleted, new.is_archived)
RETURNING pod_nodes_history.node_id, pod_nodes_history.parent_id, pod_nodes_history.node_order, pod_nodes_history.node_type, pod_nodes_history.created_at, pod_nodes_history.updated_at, pod_nodes_history.data_label, pod_nodes_history.data_content, pod_nodes_history.data_datetime, pod_nodes_history.node_status, pod_nodes_history.data_reminder_datetime, pod_nodes_history.data_file_name, pod_nodes_history.data_file_content, pod_nodes_history.data_file_mime_type, pod_nodes_history.parent_tree_path, pod_nodes_history.node_depth, pod_nodes_history.owner_id, pod_nodes_history.is_shared, pod_nodes_history.is_public, pod_nodes_history.public_url_key, pod_nodes_history.workspace_id, pod_nodes_history.is_deleted, pod_nodes_history.is_archived;
-- Trigger: pod_update_node_tg on pod_nodes
-- DROP TRIGGER pod_update_node_tg ON pod_nodes;
DROP TRIGGER pod_update_node_tg
CREATE TRIGGER pod_update_node_tg
INSTEAD OF UPDATE
ON pod_nodes
FOR EACH ROW
EXECUTE PROCEDURE pod_update_node();
CREATE OR REPLACE FUNCTION pod_update_node()
RETURNS trigger AS
$BODY$
BEGIN
INSERT INTO pod_nodes_history (node_id, parent_id, node_order, node_type, created_at, updated_at,
data_label, data_content, data_datetime, node_status, data_reminder_datetime,
data_file_name, data_file_content, data_file_mime_type, parent_tree_path,
node_depth, owner_id, version_id, is_shared, is_public, public_url_key, workspace_id, is_deleted, is_archived) VALUES (NEW.node_id, NEW.parent_id, NEW.node_order, NEW.node_type, NEW.created_at, NEW.updated_at, NEW.data_label, NEW.data_content, NEW.data_datetime, NEW.node_status, NEW.data_reminder_datetime, NEW.data_file_name, NEW.data_file_content, NEW.data_file_mime_type, NEW.parent_tree_path, NEW.node_depth, NEW.owner_id, nextval('pod_nodes_version_id_sequence'), NEW.is_shared, NEW.is_public, NEW.public_url_key, NEW.workspace_id, NEW.is_deleted, NEW.is_archived);
return new;
END;
$BODY$
LANGUAGE plpgsql VOLATILE
COST 100;
ALTER FUNCTION pod_update_node()
OWNER TO poduser;
UPDATE pod_nodes_history SET workspace_id=1;
-- alter data type to folder for each data containing children
UPDATE pod_nodes_history SET node_type='folder' WHERE node_id IN (
SELECT parent_id FROM pod_nodes WHERE node_type='data' GROUP BY parent_id ORDER BY parent_id)
UPDATE pod_nodes_history SET node_type='folder' WHERE parent_id IS NULL;
-- alter default data nodes to "page nodes"
update pod_nodes_history set node_type='page' where node_type='data'
update pod_nodes_history set node_type='page' where node_type='contact'
update pod_nodes_history set node_type='comment' where node_type='event'
update pod_nodes_history set node_status='open' where node_status in ('new', 'inprogress', 'standby')
update pod_nodes_history set node_status='closed-validated' where node_status in ('done', 'information')
update pod_nodes_history set node_status='closed-validated', is_deleted=true where node_status in ('deleted')
update pod_nodes_history set node_status='closed-validated', is_archived=true where node_status in ('closed')
-- Add column "properties"
-- ALTER TABLE pod_nodes_history DROP COLUMN properties;
ALTER TABLE pod_nodes_history ADD COLUMN properties text;
COMMENT ON COLUMN pod_nodes_history.properties IS 'This column contain properties specific to a given node_type. these properties are json encoded (so there is no structure "a priori")';
ALTER TABLE pod_nodes_history ADD COLUMN last_action character varying(32);
-- Add the properties column to pod_nodes view
-- DROP VIEW pod_nodes;
CREATE OR REPLACE VIEW pod_nodes AS
SELECT DISTINCT ON (pod_nodes_history.node_id) pod_nodes_history.node_id, pod_nodes_history.parent_id, pod_nodes_history.node_order, pod_nodes_history.node_type, pod_nodes_history.created_at, pod_nodes_history.updated_at, pod_nodes_history.data_label, pod_nodes_history.data_content, pod_nodes_history.data_datetime, pod_nodes_history.node_status, pod_nodes_history.data_reminder_datetime, pod_nodes_history.data_file_name, pod_nodes_history.data_file_content, pod_nodes_history.data_file_mime_type, pod_nodes_history.parent_tree_path, pod_nodes_history.node_depth, pod_nodes_history.owner_id, pod_nodes_history.is_shared, pod_nodes_history.is_public, pod_nodes_history.public_url_key, pod_nodes_history.workspace_id, pod_nodes_history.is_deleted, pod_nodes_history.is_archived, pod_nodes_history.properties, pod_nodes_history.last_action
FROM pod_nodes_history
ORDER BY pod_nodes_history.node_id, pod_nodes_history.updated_at DESC, pod_nodes_history.created_at DESC;
CREATE OR REPLACE RULE pod_insert_new_node AS
ON INSERT TO pod_nodes DO INSTEAD INSERT INTO pod_nodes_history (node_id, parent_id, node_order, node_type, created_at, updated_at, data_label, data_content, data_datetime, node_status, data_reminder_datetime, data_file_name, data_file_content, data_file_mime_type, parent_tree_path, node_depth, owner_id, version_id, is_shared, is_public, public_url_key, workspace_id, is_deleted, is_archived, properties, last_action)
VALUES (nextval('pod_nodes__node_id__sequence'::regclass), new.parent_id, new.node_order, new.node_type, new.created_at, new.updated_at, new.data_label, new.data_content, new.data_datetime, new.node_status, new.data_reminder_datetime, new.data_file_name, new.data_file_content, new.data_file_mime_type, new.parent_tree_path, new.node_depth, new.owner_id, nextval('pod_nodes_version_id_sequence'::regclass), new.is_shared, new.is_public, new.public_url_key, new.workspace_id, new.is_deleted, new.is_archived, new.properties, new.last_action)
RETURNING pod_nodes_history.node_id, pod_nodes_history.parent_id, pod_nodes_history.node_order, pod_nodes_history.node_type, pod_nodes_history.created_at, pod_nodes_history.updated_at, pod_nodes_history.data_label, pod_nodes_history.data_content, pod_nodes_history.data_datetime, pod_nodes_history.node_status, pod_nodes_history.data_reminder_datetime, pod_nodes_history.data_file_name, pod_nodes_history.data_file_content, pod_nodes_history.data_file_mime_type, pod_nodes_history.parent_tree_path, pod_nodes_history.node_depth, pod_nodes_history.owner_id, pod_nodes_history.is_shared, pod_nodes_history.is_public, pod_nodes_history.public_url_key, pod_nodes_history.workspace_id, pod_nodes_history.is_deleted, pod_nodes_history.is_archived, pod_nodes_history.properties, pod_nodes_history.last_action;
DROP TRIGGER pod_update_node_tg ON pod_nodes;
CREATE TRIGGER pod_update_node_tg
INSTEAD OF UPDATE
ON pod_nodes
FOR EACH ROW
EXECUTE PROCEDURE pod_update_node();
-- DROP FUNCTION pod_update_node();
CREATE OR REPLACE FUNCTION pod_update_node()
RETURNS trigger AS
$BODY$
BEGIN
INSERT INTO pod_nodes_history (node_id, parent_id, node_order, node_type, created_at, updated_at,
data_label, data_content, data_datetime, node_status, data_reminder_datetime,
data_file_name, data_file_content, data_file_mime_type, parent_tree_path,
node_depth, owner_id, version_id, is_shared, is_public, public_url_key, workspace_id, is_deleted, is_archived, properties, last_action) VALUES (NEW.node_id, NEW.parent_id, NEW.node_order, NEW.node_type, NEW.created_at, NEW.updated_at, NEW.data_label, NEW.data_content, NEW.data_datetime, NEW.node_status, NEW.data_reminder_datetime, NEW.data_file_name, NEW.data_file_content, NEW.data_file_mime_type, NEW.parent_tree_path, NEW.node_depth, NEW.owner_id, nextval('pod_nodes_version_id_sequence'), NEW.is_shared, NEW.is_public, NEW.public_url_key, NEW.workspace_id, NEW.is_deleted, NEW.is_archived, NEW.properties, NEW.last_action);
return new;
END;
$BODY$
LANGUAGE plpgsql VOLATILE
COST 100;
ALTER TABLE pod_group DROP COLUMN personnal_group;
DELETE FROM pod_user_group;
DELETE FROM pod_group;
INSERT INTO pod_group(group_id, group_name, display_name, created) VALUES
(1, 'users', 'Users', NOW()),
(2, 'managers', 'Global Managers', NOW()),
(3, 'administrators', 'Administrators', NOW());
-- Add all users in all group
INSERT INTO pod_user_group(user_id, group_id) SELECT user_id, 1 FROM pod_user;
INSERT INTO pod_user_group(user_id, group_id) SELECT user_id, 2 FROM pod_user;
INSERT INTO pod_user_group(user_id, group_id) SELECT user_id, 3 FROM pod_user;
|
<filename>egov/egov-wtms/src/main/resources/db/migration/main/V20190128140001__wcms_procedure_update_arrdemand_arrcoll.sql
CREATE OR REPLACE FUNCTION wtms_updatemv_arrearsdemand()
RETURNS void AS
$BODY$
DECLARE
props record;
v_demand_amount double precision;
v_demand_collection double precision;
v_rebate double precision;
v_arrearcoll double precision;
v_moduleid bigint;
v_curr1stinst bigint;
v_curr2ndinst bigint;
v_1stinststartdate date;
v_arreardemand double precision;
v_finyearstartdate date;
v_finyearenddate date;
BEGIN
select id into v_moduleid from eg_module where name='Property Tax';
select date(startingdate), date(endingdate) into v_finyearstartdate, v_finyearenddate from financialyear where now() between startingdate and endingdate;
select id, start_date into v_curr1stinst, v_1stinststartdate from eg_installment_master where id_module=v_moduleid and date(start_date)=v_finyearstartdate;
select id into v_curr2ndinst from eg_installment_master where id_module=v_moduleid and date(end_date)=v_finyearenddate;
for props in (SELECT distinct conn.consumercode,conndet.id FROM egwtr_connection conn,egwtr_connectiondetails conndet, egw_status status WHERE conn.id=conndet.connection and conndet.connectionstatus='ACTIVE' and conndet.connectiontype='NON_METERED' AND conndet.statusid=status.id and status.moduletype='WATERTAXAPPLICATION' and status.code='SANCTIONED' and EXISTS (select demConn.* from egwtr_demand_connection demConn where conndet.id=demConn.connectiondetails and exists (select demand.* from eg_demand demand where demand.is_history='N' and demConn.demand=demand.id)))
loop
begin
select coalesce(sum(dd.amount),0) ,coalesce(sum(dd.amt_collected),0),coalesce(sum(dd.amt_rebate),0) into v_demand_amount,v_demand_collection,v_rebate from egwtr_connection con, egwtr_connectiondetails condet, egwtr_demand_connection demcom, eg_demand d, eg_demand_details dd, eg_demand_reason dr, eg_demand_reason_master drm, eg_installment_master inst where con.id=condet.connection and condet.connectionstatus ='ACTIVE' and condet.id=demcom.connectiondetails and demcom.demand=d.id and d.id=dd.id_demand and dd.id_demand_reason=dr.id and drm.id=dr.id_demand_reason_master and dr.id_installment=inst.id and inst.id not in (v_curr1stinst, v_curr2ndinst) and d.is_history='N' and con.consumercode=props.consumercode;
select coalesce(sum(coalesce(cold.cramount,0)),0) into v_arrearcoll from egcl_collectionheader collhead , egcl_collectiondetails cold where collhead.id=cold.collectionheader and collhead.receiptdate>=v_1stinststartdate and collhead.consumercode=props.consumercode and collhead.servicedetails= (select id from egcl_servicedetails where code ='WT' ) and collhead.status in (select id from egw_status where code in ('TO_BE_SUBMITTED' , 'SUBMITTED' ,'APPROVED') and moduletype ='ReceiptHeader') and cold.purpose ='ARREAR_AMOUNT';
v_arreardemand:= v_demand_amount-v_demand_collection+v_arrearcoll;
update egwtr_mv_dcb_view set arr_demand=v_arreardemand,arr_coll=v_arrearcoll,arr_balance=v_arreardemand-v_rebate-v_arrearcoll where hscno=props.consumercode;
END;
END LOOP;
raise notice 'updated arrear demand amount & arrear amount collected';
END;
$BODY$ LANGUAGE plpgsql;
|
<reponame>SimpleContacts/mysql-simulator<gh_stars>1-10
--
-- PURPOSE
-- =======
-- This tests the effects of default charsets and collations, or overriding
-- them at the table or column levels.
--
/*
t1:
All defaults
t2-t16:
Test overrides at the table level. Here the examples are constructed to
test:
- No explicit collations
- Explicit overrides of what is the default anyway
- Explicit overrides to something that isn't the default
t17-t31:
Test overrides at the column level. Here the examples are constructed to
test:
- No explicit collations
- Explicit overrides of what is the default anyway
- Explicit overrides to something that isn't the default
*/
-- -- ---------------------------------------------------------------------------------
-- -- Table-level charset/collations
-- -- ---------------------------------------------------------------------------------
--
CREATE TABLE t01 (a VARCHAR(12));
CREATE TABLE t02 (a VARCHAR(12)) CHARACTER SET=latin1;
CREATE TABLE t03 (a VARCHAR(12)) COLLATE=latin1_swedish_ci;
CREATE TABLE t04 (a VARCHAR(12)) COLLATE=latin1_spanish_ci;
CREATE TABLE t05 (a VARCHAR(12)) CHARACTER SET=latin1 COLLATE=latin1_swedish_ci;
CREATE TABLE t06 (a VARCHAR(12)) CHARACTER SET=latin1 COLLATE=latin1_spanish_ci;
CREATE TABLE t07 (a VARCHAR(12)) CHARACTER SET utf8;
CREATE TABLE t08 (a VARCHAR(12)) COLLATE utf8_general_ci;
CREATE TABLE t09 (a VARCHAR(12)) COLLATE utf8_unicode_ci;
CREATE TABLE t10 (a VARCHAR(12)) CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE TABLE t11 (a VARCHAR(12)) CHARACTER SET utf8 COLLATE utf8_unicode_ci;
CREATE TABLE t12 (a VARCHAR(12)) CHARACTER SET=utf8mb4;
CREATE TABLE t13 (a VARCHAR(12)) COLLATE=utf8mb4_general_ci;
CREATE TABLE t14 (a VARCHAR(12)) COLLATE=utf8mb4_unicode_ci;
CREATE TABLE t15 (a VARCHAR(12)) CHARACTER SET=utf8mb4 COLLATE=utf8mb4_general_ci;
CREATE TABLE t16 (a VARCHAR(12)) CHARACTER SET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- -- ---------------------------------------------------------------------------------
-- -- Column-level charset/collations
-- -- ---------------------------------------------------------------------------------
CREATE TABLE t17 (a VARCHAR(12) CHARACTER SET latin1);
CREATE TABLE t18 (a VARCHAR(12) COLLATE latin1_swedish_ci);
CREATE TABLE t19 (a VARCHAR(12) COLLATE latin1_spanish_ci);
CREATE TABLE t20 (a VARCHAR(12) CHARACTER SET latin1 COLLATE latin1_swedish_ci);
CREATE TABLE t21 (a VARCHAR(12) CHARACTER SET latin1 COLLATE latin1_spanish_ci);
CREATE TABLE t22 (a VARCHAR(12) CHARACTER SET utf8);
CREATE TABLE t23 (a VARCHAR(12) COLLATE utf8_general_ci);
CREATE TABLE t24 (a VARCHAR(12) COLLATE utf8_unicode_ci);
CREATE TABLE t25 (a VARCHAR(12) CHARACTER SET utf8 COLLATE utf8_general_ci);
CREATE TABLE t26 (a VARCHAR(12) CHARACTER SET utf8 COLLATE utf8_unicode_ci);
CREATE TABLE t27 (a VARCHAR(12) CHARACTER SET utf8mb4);
CREATE TABLE t28 (a VARCHAR(12) COLLATE utf8mb4_general_ci);
CREATE TABLE t29 (a VARCHAR(12) COLLATE utf8mb4_unicode_ci);
CREATE TABLE t30 (a VARCHAR(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci);
CREATE TABLE t31 (a VARCHAR(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci);
|
<gh_stars>10-100
--
-- CzechIdM 7 Flyway script
-- BCV solutions s.r.o.
--
-- Add new column to sync contract configuration "start of HR processes after sync end"
ALTER TABLE sys_sync_contract_config ADD COLUMN start_hr_processes boolean;
UPDATE sys_sync_contract_config SET start_hr_processes = true WHERE start_hr_processes is null;
ALTER TABLE sys_sync_contract_config ALTER COLUMN start_hr_processes SET NOT NULL;
ALTER TABLE sys_sync_contract_config_a ADD COLUMN start_hr_processes boolean;
ALTER TABLE sys_sync_contract_config_a ADD COLUMN start_of_hr_processes_m boolean;
|
UPDATE fact_queries set query = 'DECLARE @domain varchar(25);
DECLARE @user varchar(15);
SET @domain = ?
SET @user = ? ;WITH temp (Category, Minimum, Maximum)
AS (SELECT x.diagnosisCategory, MIN (x.numVisits) AS Mini, MAX (x.numVisits) AS Maxi
FROM ( SELECT SUM (CASE WHEN ldm.diagnosisMultiValue <> 0 %ANDCLAUSE%
THEN 1 ELSE 0 END) AS numVisits, diagnosisCategory, addedBy
FROM LKuP_diagnosisMulti AS LdM LEFT JOIN LKuP_diagnosis AS Ld
ON LdM.diagnosisMultiValue = Ld.diagnosisKey LEFT JOIN FACT_visits AS FV
ON LdM.diagnosisMultiKey = FV.diagnosisMulti left JOIN lkup_date AS d
ON fullDate = fv.date left join lkup_location as ll on fv.location = ll.locationKey
where diagnosisDomain = @domain and diagnosisOrder >= 0 AND deleteFlag = 0
GROUP BY diagnosisCategory, addedBy) x GROUP BY x.diagnosisCategory)
SELECT temp.Category AS ''Diagnosis Category'', SUM (CASE WHEN addedBy LIKE @user %ANDCLAUSE% THEN 1 ELSE 0
END) AS ''# of Diagnoses'', Minimum, Maximum FROM temp LEFT JOIN LKuP_diagnosis AS Ld
ON ld.diagnosisCategory = temp.Category LEFT JOIN LKuP_diagnosisMulti AS LdM
ON LdM.diagnosisMultiValue = Ld.diagnosisKey LEFT JOIN FACT_visits AS FV
ON LdM.diagnosisMultiKey = FV.diagnosisMulti left JOIN lkup_date AS d
ON fullDate = fv.date left join lkup_location as ll on fv.location = ll.locationKey
where diagnosisDomain = @domain and diagnosisOrder >= 0 AND deleteFlag = 0
GROUP BY temp.Category, Minimum, Maximum, ld.diagnosisCategory' WHERE queryLabel = 'domainCategoryReport'; |
<filename>resources/joplin/migrations/sql/20160408011744-create-tags.down.sql
DROP TABLE IF EXISTS tags;
|
# Write your MySQL query statement below
UPDATE salary
SET sex = CHAR(ASCII(sex) ^ ASCII('m') ^ ASCII('f')); |
<reponame>uk-gov-mirror/defra.water-abstraction-service
alter table water.billing_transactions
drop column section_126_factor;
alter table water.billing_transactions
drop column section_127_agreement;
alter table water.billing_transactions
drop column section_130_agreement; |
<filename>db/migrations/20200923223826_create_sections.sql
-- migrate:up
CREATE TABLE 'sections' (
'id' INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
'code' INTEGER NOT NULL,
'course_id' INTEGER,
'teacher_id' INTEGER,
FOREIGN KEY(`course_id`) REFERENCES 'courses' ( 'id' ) ON DELETE CASCADE,
FOREIGN KEY(`teacher_id`) REFERENCES 'teachers' ( 'id' ) ON DELETE CASCADE
);
-- migrate:down
DROP TABLE IF EXISTS 'sections'; |
<filename>server/sql/indices-postgresql.sql
-- Copyright 2014 Google Inc. All Rights Reserved.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
CREATE INDEX upload_timestamp ON upload(timestamp);
CREATE INDEX upload_location ON upload(location);
CREATE INDEX upload_user_agent ON upload(user_agent);
CREATE INDEX navigation_request_upload ON navigation_request(upload);
CREATE INDEX navigation_request_service_upload ON
navigation_request(service,upload);
CREATE INDEX update_request_upload ON update_request(upload);
CREATE INDEX update_request_service_upload ON update_request(service,upload);
CREATE INDEX navigation_upload ON navigation(upload);
CREATE INDEX navigation_service_upload ON navigation(service,upload);
CREATE INDEX tag_tag_service on tag(tag,service);
CREATE INDEX tag_service_tag on tag(service,tag);
CREATE INDEX location_location ON location(location);
CREATE INDEX location_timestamp ON location(timestamp);
CREATE INDEX location_ip ON location(ip);
|
<filename>postgres/migrations/20190715015859_edit_subject.sql
-- migrate:up
create or replace function sg_public.update_subject(
entity_id uuid,
name text,
tags text[],
body text,
parent uuid[],
before uuid[]
)
returns sg_public.subject_version as $$
declare
xprevious sg_public.subject;
xversion_id uuid;
xsubject_version sg_public.subject_version;
begin
select * into xprevious
from sg_public.subject_by_entity_id(entity_id);
if (xprevious is null) then
raise exception 'No previous version found.' using errcode = 'B7615F09';
end if;
xversion_id := uuid_generate_v4();
insert into sg_public.entity_version
(version_id, entity_kind) values (xversion_id, 'subject');
insert into sg_public.subject_version
(version_id, previous_version_id, entity_id, language, name, tags, body)
values (xversion_id, xprevious.version_id, entity_id, xprevious.language, name, tags, body)
returning * into xsubject_version;
insert into sg_public.subject_version_parent_child
(child_version_id, parent_entity_id)
select xversion_id, unnest(parent);
insert into sg_public.subject_version_before_after
(after_version_id, before_entity_id)
select xversion_id, unnest(before);
return xsubject_version;
end;
$$ language plpgsql strict security definer;
comment on function sg_public.update_subject(
uuid,
text,
text[],
text,
uuid[],
uuid[]
) is 'Update an existing subject.';
grant execute on function sg_public.update_subject(
uuid,
text,
text[],
text,
uuid[],
uuid[]
) to sg_anonymous, sg_user, sg_admin;
-- migrate:down
|
use shibuya;
CREATE TABLE IF NOT EXISTS collection_launch_history
(
collection_id INT UNSIGNED NOT NULL,
context varchar(20) NOT NULL,
owner VARCHAR(50) NOT NULL,
engines_count INT UNSIGNED,
nodes_count INT UNSIGNED,
started_time TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
end_time TIMESTAMP NULL DEFAULT NULL,
key(collection_id, started_time)
)CHARSET=utf8mb4; |
<filename>apgdiff.tests/src/main/resources/cz/startnet/utils/pgdiff/tabl_to_func_drop_new.sql<gh_stars>10-100
CREATE SCHEMA defval;
ALTER SCHEMA defval OWNER TO levsha_aa;
CREATE TABLE defval.t1 (
c2 integer,
c1 text DEFAULT USER
);
ALTER TABLE defval.t1 OWNER TO levsha_aa;
|
CREATE TABLE [dbo].[Environments]
(
[Id] INT IDENTITY (1, 1) NOT NULL,
[Name] NVARCHAR (MAX) NOT NULL,
[ProjectId] INT NOT NULL,
[Description] NVARCHAR (MAX) NULL,
[Secret] NVARCHAR (MAX) NULL,
[MobileSecret] NVARCHAR (MAX) NULL,
CONSTRAINT [PK_Environments] PRIMARY KEY CLUSTERED ([Id] ASC)
)
|
<gh_stars>1-10
-- Verify nz-buildings:buildings_bulk_load/functions/supplied_outlines on pg
BEGIN;
SELECT has_function_privilege('buildings_bulk_load.supplied_outlines_insert(integer, integer, geometry)', 'execute');
ROLLBACK;
|
<reponame>lazarevicivica/asocijacije
/**
* Author: ivica
* Created: 27.10.2018.
*/
CREATE TABLE korisnik (
id serial PRIMARY KEY,
email TEXT NOT NULL UNIQUE,
ime VARCHAR(50) NOT NULL,
lozinka_hash TEXT,
aktivan BOOLEAN NOT NULL DEFAULT FALSE,
reset_kod TEXT NULL,
auth_key TEXT,
vreme_registracije timestamptz
);
-- Imutable
-- filtrirati neprimerene reci?
CREATE TABLE pojam(
id serial PRIMARY KEY,
kreator_id INT NOT NULL,
sadrzaj TEXT NOT NULL UNIQUE,
CONSTRAINT fk_kreator_pojam
FOREIGN KEY (kreator_id)
REFERENCES korisnik(id)
ON DELETE RESTRICT
);
CREATE INDEX idx_kreator_pojam ON pojam(kreator_id);
-- imutable. Svaki update kreira novu asocijaciju.
CREATE TABLE asocijacija(
id serial PRIMARY KEY,
resenje_id INT NOT NULL,
kreator_id INT NOT NULL,
-- TODO kreirati triger koji popunjava pojam prilikom inserta
pojmovi_ids TEXT NOT NULL UNIQUE, -- Prvi id je id resenja. Nakon toga ide zapeta, pa sortirana lista id pojmova odvojena zapetama,
-- cilj je da se osigura jedinstvenost asocijacije.
CONSTRAINT fk_kreator_asocijacija
FOREIGN KEY (kreator_id)
REFERENCES korisnik(id)
ON DELETE RESTRICT,
CONSTRAINT fk_resenje_asocijacija
FOREIGN KEY (resenje_id)
REFERENCES pojam(id)
ON DELETE RESTRICT
);
CREATE INDEX idx_resenje_asocijacija ON asocijacija(resenje_id);
CREATE INDEX idx_kreator_asocijacija ON asocijacija(kreator_id);
CREATE TABLE asocijacija_pojam(
asocijacija_id INT NOT NULL,
pojam_id INT NOT NULL,
PRIMARY KEY (asocijacija_id, pojam_id),
CONSTRAINT fk_asocijacija_asocijacija_pojam
FOREIGN KEY (asocijacija_id)
REFERENCES asocijacija(id)
ON DELETE CASCADE,
CONSTRAINT fk_pojam_asocijacija_pojam
FOREIGN KEY (pojam_id)
REFERENCES pojam(id)
ON DELETE CASCADE
);
CREATE INDEX idx_pojam_asocijacija_pojam ON asocijacija_pojam(pojam_id);
CREATE TABLE kategorija(
id serial PRIMARY KEY,
naziv VARCHAR(50) NOT NULL,
roditelj_id INT, -- koristi se prilikom rekonstrukcije stabla (vrednosti levo i desno)
levo INT, -- struktura stabla je definisana preko ugnjezdenih skupova (nested set)
desno INT,
CONSTRAINT fk_roditelj_kategorija
FOREIGN KEY (roditelj_id)
REFERENCES kategorija(id)
ON DELETE CASCADE
);
CREATE INDEX idx_roditelj_kategorija ON kategorija(roditelj_id);
-- igra sadrzi niz asocijacija
CREATE TABLE igra(
id serial PRIMARY KEY,
kategorija_id INT NOT NULL,
kreator_id INT NOT NULL,
vreme_kreiranja timestamptz NOT NULL,
naziv VARCHAR(100) NOT NULL,
opis TEXT,
aktivna BOOLEAN NOT NULL DEFAULT FALSE,
-- meta json not null,
broj_igranja INT NOT NULL DEFAULT 0,
CONSTRAINT fk_kategorija_igra
FOREIGN KEY (kategorija_id)
REFERENCES kategorija(id)
ON DELETE RESTRICT,
CONSTRAINT fk_kreator_igra
FOREIGN KEY (kreator_id)
REFERENCES korisnik(id)
ON DELETE RESTRICT
);
CREATE INDEX idx_kategorija_igra ON igra(kategorija_id, aktivna);
CREATE INDEX idx_kreator_igra ON igra(kreator_id, aktivna);
CREATE INDEX idx_broj_igranja_igra ON igra(broj_igranja, aktivna);
CREATE TABLE igra_asocijacija(
igra_id INT NOT NULL,
asocijacija_id INT NOT NULL,
PRIMARY KEY(igra_id, asocijacija_id),
CONSTRAINT fk_igra_igra_asocijacija
FOREIGN KEY (igra_id)
REFERENCES igra(id)
ON DELETE CASCADE,
CONSTRAINT fk_asocijacija_igra_asocijacija
FOREIGN KEY (asocijacija_id)
REFERENCES asocijacija(id)
ON DELETE CASCADE
);
CREATE INDEX idx_asocijacija_igra_asocijacija ON igra_asocijacija(asocijacija_id);
CREATE TABLE resena_igra(
igra_id INT NOT NULL,
korisnik_id INT NOT NULL,
PRIMARY KEY(igra_id, korisnik_id),
CONSTRAINT fk_igra_resena_igra
FOREIGN KEY (igra_id)
REFERENCES igra(id)
ON DELETE CASCADE,
CONSTRAINT fk_korisnik_resena_igra
FOREIGN KEY (korisnik_id)
REFERENCES korisnik(id)
ON DELETE RESTRICT
);
CREATE INDEX idx_korisnik_resena_igra ON resena_igra(korisnik_id);
CREATE TABLE resena_asocijacija(
asocijacija_id INT NOT NULL,
korisnik_id INT NOT NULL,
PRIMARY KEY (asocijacija_id, korisnik_id),
CONSTRAINT fk_asocijacija_resena_asocijacija
FOREIGN KEY (asocijacija_id)
REFERENCES asocijacija(id)
ON DELETE CASCADE,
CONSTRAINT fk_korisnik_resena_asocijacija
FOREIGN KEY (korisnik_id)
REFERENCES korisnik(id)
ON DELETE RESTRICT
);
CREATE INDEX idx_korisnik_resena_asocijacija ON resena_asocijacija(asocijacija_id);
CREATE TABLE IF NOT EXISTS neprimenjene_reci(
id serial PRIMARY KEY,
rec TEXT NOT NULL UNIQUE
);
-- sledeca dva unosa su vezana za neprimenjene reci.
CREATE OR REPLACE FUNCTION sve_u_mala_slova() -- azurira zadnji unos u tabeli neprimenjene_reci u lowercase slova.
RETURNS TRIGGER AS $$
BEGIN
UPDATE neprimenjene_reci set rec=lower(rec) where id IN(select max(id) FROM neprimenjene_reci);
RETURN NEW;
END;
$$ LANGUAGE plpgsql;
CREATE TRIGGER pretvori_u_mala -- dodajemo triger prilikom svakog unosa u tabelu neprimenjene_reci.
AFTER INSERT ON neprimenjene_reci
EXECUTE PROCEDURE sve_u_mala_slova();
|
drop database NLogDatabase
go
exec sp_droplogin 'nloguser'
go
|
-- phpMyAdmin SQL Dump
-- version 5.0.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Jul 20, 2020 at 08:03 AM
-- Server version: 5.7.24
-- PHP Version: 7.4.8
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: `penilaian`
--
-- --------------------------------------------------------
--
-- Table structure for table `aktivitas`
--
CREATE TABLE `aktivitas` (
`id_aktivitas` int(11) NOT NULL,
`id_kelompok` int(11) NOT NULL,
`id_ceklis` char(5) DEFAULT NULL,
`h` int(11) NOT NULL,
`h1` int(11) NOT NULL,
`h2` int(11) NOT NULL,
`h3` int(11) NOT NULL,
`tipe` enum('2','3') NOT NULL COMMENT '2 : TELEGRAM\r\n3 : TELEPON'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `aktivitas`
--
INSERT INTO `aktivitas` (`id_aktivitas`, `id_kelompok`, `id_ceklis`, `h`, `h1`, `h2`, `h3`, `tipe`) VALUES
(1, 1, 'C35', 5, 5, 4, 4, '2'),
(2, 2, 'C35', 4, 1, 2, 3, '2'),
(3, 2, 'C36', 1, 1, 1, 1, '3');
-- --------------------------------------------------------
--
-- Table structure for table `anggota`
--
CREATE TABLE `anggota` (
`id_anggota` int(11) NOT NULL,
`id_pangkat` int(11) DEFAULT NULL,
`id_kelompok` int(11) DEFAULT NULL,
`nrp` char(20) DEFAULT NULL,
`nama` char(100) NOT NULL,
`password` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `anggota`
--
INSERT INTO `anggota` (`id_anggota`, `id_pangkat`, `id_kelompok`, `nrp`, `nama`, `password`) VALUES
(4, NULL, 1, '11940027940773', '<NAME>, S.I.P.', NULL),
(5, NULL, 1, '523352', '<NAME>, S.T., M.M.', NULL),
(6, NULL, 1, '11960044180874', '<NAME>, S.E., M.Si.', NULL),
(7, NULL, 1, '-', '<NAME> (Filipina)', NULL),
(8, NULL, 1, '11960039310274', '<NAME>, S.E., S.I.P.', NULL),
(9, NULL, 1, '12617/P', '<NAME>, S.E.', NULL),
(10, NULL, 1, '11960051260775', '<NAME>', NULL),
(11, NULL, 1, '518843', '<NAME>, S.H.', NULL),
(12, NULL, 1, '11950044840774', '<NAME>', NULL),
(13, NULL, 1, '12262/P', '<NAME>, S.E., MPD.', NULL),
(14, NULL, 1, '11970039301175', '<NAME>, S.I.P.', NULL),
(15, NULL, 1, '520294', '<NAME>, S.E., M.M.', NULL),
(16, NULL, 1, '11950038580771', '<NAME>', NULL),
(17, NULL, 1, '11897/P', '<NAME>, S.T., M.AP.', NULL),
(18, NULL, 1, '11950050690571', '<NAME>, S.I.P.', NULL),
(19, NULL, 1, '12702/P', '<NAME>', NULL),
(20, NULL, 1, '11970044900676', '<NAME>, S.E.', NULL),
(21, NULL, 1, '68080524', 'I <NAME>, S.I.K.', NULL),
(22, NULL, 1, '11960048970275', 'Erwin, S.I.P.', NULL),
(23, NULL, 1, '517477', '<NAME>', NULL),
(24, NULL, 1, '11960047231274', '<NAME>, S.Sos.', NULL),
(25, NULL, 1, '73060608', '<NAME>, S.H., S.I.K.', NULL),
(26, NULL, 2, '11459/P', 'Mauriadi, S.E.', NULL),
(27, NULL, 2, '11960045901074', '<NAME>, S.E.', NULL),
(28, NULL, 2, '11970037570875', '<NAME>, S.A.P.', NULL),
(29, NULL, 2, '73040543', '<NAME>, S.I.K., M.H.', NULL),
(30, NULL, 2, '12624/P', '<NAME>, S.Kel.', NULL),
(31, NULL, 2, '11960032610173', '<NAME>, S.I.P., M.Si.', NULL),
(32, NULL, 2, '523357', '<NAME>, S.E.', NULL),
(33, NULL, 2, '12644/P', '<NAME>, S.E.', NULL),
(34, NULL, 2, '11960034440473', '<NAME>', NULL),
(35, NULL, 2, '521812', '<NAME>, S.T., M.M.', NULL),
(36, NULL, 2, '11970036820875', '<NAME>, P.Sc., S.E.', NULL),
(37, NULL, 2, '12647/P', '<NAME>, S.E., M.Si.', NULL),
(38, NULL, 2, '11960040790474', '<NAME>, S.Sos., M.Sc.', NULL),
(39, NULL, 2, '11964/P', 'Sunaryadi, S.E., M.Si.', NULL),
(40, NULL, 2, '11970040521175', '<NAME>, S.I.P.', NULL),
(41, NULL, 2, '10683/P', '<NAME>, S.T., M.M.', NULL),
(42, NULL, 2, '69100444', 'Dr. <NAME>, S.H., M.Hum.', NULL),
(43, NULL, 2, '521835', '<NAME>, M.Eng.Sc.', NULL),
(44, NULL, 2, '11970048700474', '<NAME>', NULL),
(45, NULL, 2, '521755', '<NAME>, S.T.', NULL),
(46, NULL, 2, '11980060491175', '<NAME>', NULL),
(47, NULL, 3, '11970050420875', '<NAME>, S.I.P., M.Si. (Han)', NULL),
(48, NULL, 3, '11923/P', '<NAME>, S.H., M.P.A.', NULL),
(49, NULL, 3, '521806', '<NAME>, S.T.', NULL),
(50, NULL, 3, '-', '<NAME> (India)', NULL),
(51, NULL, 3, '11950036641270', '<NAME>', NULL),
(52, NULL, 3, '12713/P', '<NAME>, S.E.', NULL),
(53, NULL, 3, '11960051420875', '<NAME>, S.I.P.', NULL),
(54, NULL, 3, '11950043771172', '<NAME>, S.I.P.', NULL),
(55, NULL, 3, '12627/P', '<NAME>, S.H.', NULL),
(56, NULL, 3, '11960050010375', '<NAME>, S.E.', NULL),
(57, NULL, 3, '521782', '<NAME>, S.E.', NULL),
(58, NULL, 3, '11950049971173', '<NAME>', NULL),
(59, NULL, 3, '11906/P', '<NAME>, S.Sos.', NULL),
(60, NULL, 3, '11960052171073', '<NAME>, S.I.P.', NULL),
(61, NULL, 3, '11926/P', 'Siswanto, S.T., M.T.', NULL),
(62, NULL, 3, '11960043920874', '<NAME>, S.I.P., M.Si.', NULL),
(63, NULL, 3, '521785', '<NAME>, S.T.', NULL),
(64, NULL, 3, '11960050920675', '<NAME>, S.I.P., M.M.', NULL),
(65, NULL, 3, '72070702', '<NAME>, S.I.K., M.Si.', NULL),
(66, NULL, 3, '11980053710877', '<NAME>', NULL),
(67, NULL, 3, '70090398', '<NAME>, S.I.K., M.Si.', NULL),
(68, NULL, 4, '521845', '<NAME>', NULL),
(69, NULL, 4, '11970049460175', '<NAME>, S.I.P.', NULL),
(70, NULL, 4, '11908/P', '<NAME>', NULL),
(71, NULL, 4, '72030201', '<NAME>, S.I.K., M.M.', NULL),
(72, NULL, 4, '520244', '<NAME>, S.H.', NULL),
(73, NULL, 4, '11970034500375', 'Purnomosidi, S.I.P., M.AP.', NULL),
(74, NULL, 4, '11931/P', '<NAME>, M.A.P.', NULL),
(75, NULL, 4, '521759', '<NAME>', NULL),
(76, NULL, 4, '11960044260974', '<NAME>, S.I.P.', NULL),
(77, NULL, 4, '12732/P', '<NAME>, S.H., M.M.', NULL),
(78, NULL, 4, '11970041440176', '<NAME>', NULL),
(79, NULL, 4, '523392', '<NAME>, S.T., M.AP.', NULL),
(80, NULL, 4, '11970033930275', '<NAME>, S.I.P.', NULL),
(81, NULL, 4, '13292/P', '<NAME>, S.T., M.M.', NULL),
(82, NULL, 4, '11960052741074', '<NAME>, S.I.P.', NULL),
(83, NULL, 4, '521832', '<NAME>', NULL),
(84, NULL, 4, '11960044420974', '<NAME>', NULL),
(85, NULL, 4, '11980053220777', '<NAME>, S.I.P., M.Sos.', NULL),
(86, NULL, 4, '70090406', '<NAME>, S.I.K., S.H., M.Hum.', NULL),
(87, NULL, 4, '520299', 'Rudiyanto, S.T., M.M.', NULL),
(88, NULL, 4, '11970032110774', '<NAME>', NULL),
(89, NULL, 5, '523407', '<NAME>, S.E., M.M.', NULL),
(90, NULL, 5, '11970042350376', '<NAME>, S.H., M.A.P.', NULL),
(91, NULL, 5, '11950043020972', '<NAME>him WD, S.I.P. M.Si.', NULL),
(92, NULL, 5, '-', '<NAME> (Pakistan)', NULL),
(93, NULL, 5, '523332', '<NAME>, S.E., M.Si. (Han)., M.sc.', NULL),
(94, NULL, 5, '11960048630275', '<NAME>, S.I.P.', NULL),
(95, NULL, 5, '11888/P', '<NAME>, S.T., M.M.', NULL),
(96, NULL, 5, '11970043670576', '<NAME>, ZR., S.E.', NULL),
(97, NULL, 5, '521877', '<NAME>', NULL),
(98, NULL, 5, '11960039640274', '<NAME>, S.I.P.', NULL),
(99, NULL, 5, '11994/P', '<NAME>', NULL),
(100, NULL, 5, '11970041510176', '<NAME>us', NULL),
(101, NULL, 5, '521823', '<NAME>', NULL),
(102, NULL, 5, '11960048061274', '<NAME>, S.I.P.', NULL),
(103, NULL, 5, '523405', '<NAME>, S.T.', NULL),
(104, NULL, 5, '70121127', '<NAME>., M.Si.', NULL),
(105, NULL, 5, '1195005317', '<NAME>', NULL),
(106, NULL, 5, '74040735', '<NAME>., S.I.K., M.H.', NULL),
(107, NULL, 5, '523397', '<NAME>, S.E.', NULL),
(108, NULL, 5, '11960046401174', '<NAME>', NULL),
(109, NULL, 5, '12688/P', '<NAME>, S.T., MMT.', NULL),
(110, NULL, 5, '74020330', '<NAME>, S.I.K., M.Si.', NULL),
(111, NULL, 6, '11970044330576', '<NAME>', NULL),
(112, NULL, 6, '11357/P', 'Sumartono, S.E.', NULL),
(113, NULL, 6, '11960049050275', '<NAME>', NULL),
(114, NULL, 6, '71010253', '<NAME>, S.I.K.', NULL),
(115, NULL, 6, '11950049891173', '<NAME>, S.Sos.', NULL),
(116, NULL, 6, '523339', '<NAME>', NULL),
(117, NULL, 6, '13278/P', 'Tunggul', NULL),
(118, NULL, 6, '11960043500874', '<NAME>, S.E.', NULL),
(119, NULL, 6, '11924/P', 'Irwan SP. Siagian', NULL),
(120, NULL, 6, '523330', '<NAME>, S.T.', NULL),
(121, NULL, 6, '11970045320776', '<NAME>, S.E.', NULL),
(122, NULL, 6, '11970032520974', '<NAME>, S.I.P., M.Si.', NULL),
(123, NULL, 6, '523361', '<NAME>, S.M.', NULL),
(124, NULL, 6, '11960039720274', '<NAME>, S.E.', NULL),
(125, NULL, 6, '74090552', '<NAME>, S.I.K., M.Si.', NULL),
(126, NULL, 6, '11970045990876', '<NAME>', NULL),
(127, NULL, 6, '520298', '<NAME>, S.E., M.M.', NULL),
(128, NULL, 6, '11950037830671', 'Jaelan, S.I.P.', NULL),
(129, NULL, 6, '523401', '<NAME>', NULL),
(130, NULL, 6, '11960047801274', '<NAME>, S.I.P.', NULL),
(131, NULL, 6, '10769/P', '<NAME>, S.T.', NULL),
(132, NULL, 7, '11364/P', '<NAME>, S.E.', NULL),
(133, NULL, 7, '11940027450573', '<NAME>', NULL),
(134, NULL, 7, '518840', '<NAME>, S.T.', NULL),
(135, NULL, 7, '-', '<NAME> (Singapura)', NULL),
(136, NULL, 7, '13288/P', '<NAME>, S.E.', NULL),
(137, NULL, 7, '518852', '<NAME>, S.E.', NULL),
(138, NULL, 7, '11970057371075', '<NAME>, S.H., PG Dipl.', NULL),
(139, NULL, 7, '11920/P', '<NAME>, S.M.', NULL),
(140, NULL, 7, '11960030970572', '<NAME>, S.E., M.M.', NULL),
(141, NULL, 7, '523340', '<NAME>, S.E., M.M.', NULL),
(142, NULL, 7, '11970043420476', '<NAME>', NULL),
(143, NULL, 7, '11915/P', '<NAME>, S.H., M.Si.', NULL),
(144, NULL, 7, '11960032041072', '<NAME>', NULL),
(145, NULL, 7, '11395/P', '<NAME>, S.T.', NULL),
(146, NULL, 7, '11970048050676', '<NAME>, S.I.P.', NULL),
(147, NULL, 7, '11934/P', '<NAME>, S.T., M.A.P.', NULL),
(148, NULL, 7, '11970054630576', '<NAME>, S.Sos., M.M.', NULL),
(149, NULL, 7, '11980041500375', '<NAME>, S.E., M.M.', NULL),
(150, NULL, 7, '74050394', '<NAME>, S.H., S.I.K.', NULL),
(151, NULL, 7, '11940011500969', '<NAME>, S.I.P.', NULL),
(152, NULL, 7, '71030329', '<NAME>, S.I.K., S.H., M.H.', NULL),
(153, NULL, 8, '12738/P', '<NAME>, MMP.', NULL),
(154, NULL, 8, '521754', '<NAME>, S.E.', NULL),
(155, NULL, 8, '11950048230574', '<NAME>, S.I.P.', NULL),
(156, NULL, 8, '523412', '<NAME>, S.E.', NULL),
(157, NULL, 8, '11481/P', '<NAME>, S.A.P.', NULL),
(158, NULL, 8, '11960046811174', '<NAME>, S.I.P.', NULL),
(159, NULL, 8, '523390', '<NAME>.', NULL),
(160, NULL, 8, '11470/P', '<NAME>.E., M.M.', NULL),
(161, NULL, 8, '11960047561274', '<NAME>, S.Sos., S.I.P., M.M.', NULL),
(162, NULL, 8, '523341', '<NAME>, S.E.', NULL),
(163, NULL, 8, '11970043340476', '<NAME>', NULL),
(164, NULL, 8, '11412/P', '<NAME>', NULL),
(165, NULL, 8, '11970037650975', '<NAME>, S.I.P.', NULL),
(166, NULL, 8, '11963/P', '<NAME>, S.E., M.AP.', NULL),
(167, NULL, 8, '71050218', '<NAME>., S.I.K., M.Si., M.P.P.', NULL),
(168, NULL, 8, '11885/P', '<NAME>, S.Sos., M.Si.', NULL),
(169, NULL, 8, '11970053720575', '<NAME>, S.I.P.', NULL),
(170, NULL, 8, '523345', '<NAME>', NULL),
(171, NULL, 8, '11940023310572', '<NAME>, S.I.P.', NULL),
(172, NULL, 8, '11416/P', '<NAME>, S.T., S.E.', NULL),
(173, NULL, 8, '74060705', '<NAME>, S.I.K., M.H.', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `ceklis`
--
CREATE TABLE `ceklis` (
`id_ceklis` char(5) NOT NULL,
`nama_ceklis` varchar(100) NOT NULL,
`tipe` enum('1','2','3','4','5') NOT NULL COMMENT '5 : perorangan\r\n\r\n1 : Penilaian produk\r\n2 : Penilaian Telegram\r\n3 : Penilaian telepon\r\n4 : Penilaian Posko'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `ceklis`
--
INSERT INTO `ceklis` (`id_ceklis`, `nama_ceklis`, `tipe`) VALUES
('C1', 'CEKLIS PENILAIAN POSKO', '4'),
('C10', 'LAI ASREN', '5'),
('C11', 'LAI ASKOMLEK', '5'),
('C12', 'PENILAIAN PRODUK RENCANA WAKTU', '1'),
('C13', 'PENILAIAN PRODUK PETUNJUK PERENCANAAN AWAL ', '1'),
('C14', 'PENILAIAN PRODUK PERINTAH PERINGATAN AWAL', '1'),
('C15', 'PENILAIAN PRODUK ATP PANGLIMA', '1'),
('C16', 'PENILAIAN PRODUK ATS INTEL', '1'),
('C17', 'PENILAIAN PRODUK ATS OPS', '1'),
('C18', 'PENILAIAN PRODUK ATS PERS', '1'),
('C19', 'PENILAIAN PRODUK ATS LOG', '1'),
('C2', 'CHEKLIST PENILAIAN AKTIVITAS PANGKOGASGABPAD', '5'),
('C20', 'PENILAIAN PRODUK ATS TER', '1'),
('C21', 'PENILAIAN PRODUK ATS REN', '1'),
('C22', 'PENILAIAN PRODUK ATS KOMLEK', '1'),
('C23', 'PENILAIAN PRODUK JUKCAN', '1'),
('C24', 'PENILAIAN PERINTAH PERSIAPAN', '1'),
('C25', 'PENILAIAN PRODUK ANALISA CB PANGLIMA', '1'),
('C26', 'PENILAIAN PRODUK ANALISA CB ASINTEL', '1'),
('C27', 'PENILAIAN PRODUK ANALISA CB ASOPS', '1'),
('C28', 'CEKLIS PENILAIAN PRODUK ANALISA CB ASPERS', '1'),
('C29', 'PENILAIAN PRODUK ANALISA CB ASLOG', '1'),
('C3', 'CEKLIS PENILAIAN AKTIVITAS STAF SAHLI', '5'),
('C30', 'PENILAIAN PRODUK ANALISA CB ASTER', '1'),
('C31', 'PENILAIAN PRODUK ANALISA CB ASREN', '1'),
('C32', 'PENILAIAN PRODUK ANALISA CB ASKOMLEK', '1'),
('C33', 'PENILAIAN PRODUK KEPUTUSAN DAN KUO', '1'),
('C34', 'PENILAIAN PRODUK KONSEP RO', '1'),
('C35', 'AKTIVITAS TELEGRAM', '2'),
('C36', 'AKTIVITAS TELEPON', '3'),
('C4', 'CEKLIS PENILAIAN AKTIVITAS KEPALA STAF', '5'),
('C5', 'LAI ASINTEL', '5'),
('C6', 'LAI ASOPS', '5'),
('C7', 'LAI ASPERS', '5'),
('C8', 'LAI ASLOG', '5'),
('C9', 'LAI ASTER', '5'),
('uwu', 'uwu', '2');
-- --------------------------------------------------------
--
-- Table structure for table `detail_penilaian_kelompok`
--
CREATE TABLE `detail_penilaian_kelompok` (
`id_detail_penilaian_kelompok` int(11) NOT NULL,
`id_penilaian_kelompok` int(11) NOT NULL,
`id_soal_kelompok` int(11) NOT NULL,
`id_kelompok` int(11) NOT NULL,
`id_ceklis` char(5) NOT NULL,
`nilai` float NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `detail_penilaian_kelompok`
--
INSERT INTO `detail_penilaian_kelompok` (`id_detail_penilaian_kelompok`, `id_penilaian_kelompok`, `id_soal_kelompok`, `id_kelompok`, `id_ceklis`, `nilai`) VALUES
(1, 1, 187, 1, 'C1', 40),
(2, 1, 188, 1, 'C1', 38),
(3, 1, 189, 1, 'C1', 30),
(4, 1, 190, 1, 'C1', 13),
(5, 1, 191, 1, 'C1', 13),
(6, 2, 1, 1, 'C12', 50),
(7, 2, 2, 1, 'C12', 15),
(8, 2, 3, 1, 'C12', 5),
(9, 2, 4, 1, 'C12', 5);
-- --------------------------------------------------------
--
-- Table structure for table `detail_penilaian_perorangan`
--
CREATE TABLE `detail_penilaian_perorangan` (
`id_detail_penilaian_perorangan` int(11) NOT NULL,
`id_penilaian_perorangan` int(11) NOT NULL,
`id_soal_perorangan` int(11) NOT NULL,
`id_anggota` int(11) NOT NULL,
`nilai` tinyint(4) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `kelompok`
--
CREATE TABLE `kelompok` (
`id_kelompok` int(11) NOT NULL,
`nama_kelompok` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `kelompok`
--
INSERT INTO `kelompok` (`id_kelompok`, `nama_kelompok`) VALUES
(1, 'KOGASGABPAD A'),
(2, 'KOGASGABPAD B'),
(3, 'KOGASGABPAD C'),
(4, 'KOGASGABPAD D'),
(5, 'KOGASGABPAD E'),
(6, 'KOGASGABPAD F'),
(7, 'KOGASGABPAD G'),
(8, 'KOGASGABPAD H');
-- --------------------------------------------------------
--
-- Table structure for table `pangkat`
--
CREATE TABLE `pangkat` (
`id_pangkat` int(11) NOT NULL,
`nama_pangkat` char(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `pangkat`
--
INSERT INTO `pangkat` (`id_pangkat`, `nama_pangkat`) VALUES
(1, 'Kolonel Inf'),
(2, 'Kolonel Pnb'),
(3, 'Kolonel Laut (P)'),
(4, 'Kolonel Arh'),
(5, '<NAME>'),
(6, '<NAME>'),
(7, '<NAME> (E)'),
(12, 'uwu');
-- --------------------------------------------------------
--
-- Table structure for table `penilaian_kelompok`
--
CREATE TABLE `penilaian_kelompok` (
`id_penilaian_kelompok` int(11) NOT NULL,
`id_kelompok` int(11) NOT NULL,
`id_ceklis` char(5) NOT NULL,
`ket` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `penilaian_kelompok`
--
INSERT INTO `penilaian_kelompok` (`id_penilaian_kelompok`, `id_kelompok`, `id_ceklis`, `ket`) VALUES
(1, 1, 'C1', '-'),
(2, 1, 'C12', '-'),
(3, 1, 'C35', ''),
(5, 2, 'C35', ''),
(6, 2, 'C36', '');
-- --------------------------------------------------------
--
-- Table structure for table `penilaian_perorangan`
--
CREATE TABLE `penilaian_perorangan` (
`id_penilaian_perorangan` int(11) NOT NULL,
`id_anggota` int(11) NOT NULL,
`id_ceklis` char(5) NOT NULL,
`tanggal` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `soal_kelompok`
--
CREATE TABLE `soal_kelompok` (
`id_soal_kelompok` int(11) NOT NULL,
`maks` float NOT NULL,
`id_ceklis` char(5) NOT NULL,
`aspek` varchar(255) NOT NULL,
`tipe_nilai` tinyint(4) NOT NULL,
`is_aktif` tinyint(4) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `soal_kelompok`
--
INSERT INTO `soal_kelompok` (`id_soal_kelompok`, `maks`, `id_ceklis`, `aspek`, `tipe_nilai`, `is_aktif`) VALUES
(1, 70, 'C12', 'Kesesuaian dengan Buku I dan IIA', 1, 1),
(2, 20, 'C12', 'Urut-urutan kegiatan sesuai Proses Biltus', 1, 1),
(3, 5, 'C12', 'Ketepatan waktu', 1, 1),
(4, 5, 'C12', 'Kerapihan', 1, 1),
(6, 10, 'C13', 'Jadwal Waktu Sementara/Awal Pelaksanaan Operasi.', 1, 1),
(7, 10, 'C13', 'Koordinasi yang harus dilakukan.', 1, 1),
(8, 15, 'C13', 'Menentukan Pergerakan Termasuk Posisi Kodal.', 1, 1),
(9, 20, 'C13', 'Tugas Tambahan bagi masing-masing Staf termasuk Informasi-informasi Khusus yang diperlukan.', 1, 1),
(10, 20, 'C13', 'Mengembangkan Rencana Waktu dengan kondisi Daerah Operasi (jika diinginkan).', 1, 1),
(11, 20, 'C13', 'Informasi tentang Persoalan-Persoalan Intelijen Lainnya dan Unsur Utama Keterangan bagi Komandan (jika diperlukan).', 1, 1),
(12, 2.5, 'C13', 'Ketepatan waktu', 1, 1),
(13, 2.5, 'C13', 'Kerapihan', 1, 1),
(14, 10, 'C14', 'Jenis Operasi.', 1, 1),
(15, 10, 'C14', 'Lokasi pelaksanaan operasi secara umum.', 1, 1),
(16, 15, 'C14', 'Jadwal waktu operasi.', 1, 1),
(17, 20, 'C14', 'Pergerakan untuk mendukung operasi.', 1, 1),
(18, 20, 'C14', 'Keperluan informasi awal yang diperlukan guna mendukung pelaksana-an operasi.', 1, 1),
(19, 20, 'C14', 'Tugas-tugas intelijen', 1, 1),
(20, 2.5, 'C14', 'Ketepatan waktu', 1, 1),
(21, 2.5, 'C14', 'Kerapihan', 1, 1),
(22, 10, 'C15', 'Analisa Direktif /Prinsiap Komando Atas', 1, 1),
(23, 15, 'C15', 'Analisa Pusat kekuatan sendiri', 1, 1),
(24, 10, 'C15', '<NAME>', 1, 1),
(25, 10, 'C15', 'Analisa Tugas dari aspek operasional', 1, 1),
(26, 10, 'C15', 'Analisa waktu operasi', 1, 1),
(27, 15, 'C15', 'Kemungkinan-kemungkinan CB', 1, 1),
(28, 10, 'C15', 'Struktur Susunan Tugas', 1, 1),
(29, 15, 'C15', 'Strategi operasional pasukan sendiri', 1, 1),
(30, 2.5, 'C15', 'Ketepatan waktu', 1, 1),
(31, 2.5, 'C15', 'Kerapihan', 1, 1),
(32, 15, 'C16', 'Analisa Situasi dan kondisi Daerah operasi', 1, 1),
(33, 10, 'C16', 'Analisa Praanggapan', 1, 1),
(34, 20, 'C16', 'Analisa Pusat kekuatan ancaman', 1, 1),
(35, 20, 'C16', 'Kebutuhan informasi yang diperlukan', 1, 1),
(36, 30, 'C16', 'Analisa berbagai bentuk ancaman', 1, 1),
(37, 2.5, 'C16', 'Ketepatan waktu', 1, 1),
(38, 2.5, 'C16', 'Kerapihan', 1, 1),
(39, 15, 'C17', 'Analisa pusat kekuatan sendiri.', 1, 1),
(40, 10, 'C17', 'Analisa praanggapan.', 1, 1),
(41, 15, 'C17', 'Analisa tugas dari aspek operasional.', 1, 1),
(42, 10, 'C17', 'Analisa waktu operasi.', 1, 1),
(43, 15, 'C17', 'Kemungkinan-kemungkinan CB untuk melaksanakan Tupok yang sudah dianalisa.', 1, 1),
(44, 10, 'C17', 'Saran awal tentang struktur susunan tugas (Orgas kogasgabpad & jajarannya).', 1, 1),
(45, 10, 'C17', 'Kebutuhan informasi yang diperlukan dari aspek operasi.', 1, 1),
(46, 10, 'C17', 'Strategi operasional pasukan sendiri.', 1, 1),
(47, 2.5, 'C17', 'Kerapihan ', 1, 1),
(48, 2.5, 'C18', 'Ketepatan waktu penyerahan produk', 1, 1),
(49, 15, 'C18', 'Analisa keadaan personel. ', 1, 1),
(50, 10, 'C18', 'Analisa praanggapan.', 1, 1),
(51, 15, 'C18', 'Analisa Tugas dari aspek dukungan personel.', 1, 1),
(52, 15, 'C18', 'Analisa kendala yang dihadapi dan upaya mengatasi dari aspek personel.', 1, 1),
(53, 15, 'C18', 'Analisa hambatan yang dihadapi dan bantuan yang diperlukan.', 1, 1),
(54, 10, 'C18', 'Kebutuhan informasi yang diperlukan dari aspek dukungan personil.', 1, 1),
(55, 15, 'C18', 'Strategi operasional aspek personil.', 1, 1),
(56, 2.5, 'C18', 'Kerapihan ', 1, 1),
(57, 2.5, 'C18', 'Ketepatan waktu penyerahan produk', 1, 1),
(58, 15, 'C19', 'Analisa keadaan logistik ', 1, 1),
(59, 10, 'C19', 'Analisa praanggapan.', 1, 1),
(60, 15, 'C19', 'Analisa tugas dari aspek dukungan logistik.', 1, 1),
(61, 15, 'C19', 'Analisa kendala yang dihadapi dan upaya mengatasi dari aspek logistik.', 1, 1),
(62, 15, 'C19', 'Analisa hambatan-hambatan yang dihadapi dan bantuan yang diperlukan.', 1, 1),
(63, 10, 'C19', 'Kebutuhan informasi yang diperlukan dari aspek logistik.', 1, 1),
(64, 15, 'C19', 'Strategi operasional aspek logistik', 1, 1),
(65, 2.5, 'C19', 'Kerapihan', 1, 1),
(66, 2.5, 'C19', 'Ketepatan waktu penyerahan produk', 1, 1),
(67, 15, 'C20', 'Analisa Keadaan Teritorial ', 1, 1),
(68, 10, 'C20', 'Analisa praanggapan.', 1, 1),
(69, 15, 'C20', 'Analisa tugas dari aspek teritorial.', 1, 1),
(70, 15, 'C20', 'Analisa kendala yang dihadapi dan upaya mengatasi dari aspek teritorial.', 1, 1),
(71, 15, 'C20', 'Analisa hambatan-hambatan yang dihadapi dan bantuan yang diperlukan.', 1, 1),
(72, 10, 'C20', 'Kebutuhan informasi yang diperlukan dari aspek teritorial.', 1, 1),
(73, 15, 'C20', 'Strategi operasional aspek teritorial', 1, 1),
(74, 2.5, 'C20', 'Kerapihan ', 1, 1),
(75, 2.5, 'C20', 'Ketepatan waktu penyerahan produk', 1, 1),
(76, 15, 'C21', 'Analisa pusat kekuatan sendiri.', 1, 1),
(77, 10, 'C21', 'Analisa praanggapan.', 1, 1),
(78, 15, 'C21', 'Analisa tugas dari aspek perencanaan.', 1, 1),
(79, 10, 'C21', 'Analisa waktu perencanaan.', 1, 1),
(80, 10, 'C21', 'Kemungkinan-kemungkinan CB untuk melaksanakan Tupok yang sudah dianalisa.', 1, 1),
(81, 10, 'C21', 'Saran awal tentang struktur susunan tugas (Orgas kogasgabpad & jajarannya).', 1, 1),
(82, 10, 'C21', 'Kebutuhan informasi yang diperlukan dari aspek operasi dan aspek perencanaan', 1, 1),
(83, 15, 'C21', 'Strategi operasional pasukan sendiri.', 1, 1),
(84, 2.5, 'C21', 'Kerapihan', 1, 1),
(85, 2.5, 'C21', 'Ketepatan waktu penyerahan produk', 1, 1),
(86, 15, 'C22', 'Analisa keadaan komunikasi dan elektronika.', 1, 1),
(87, 10, 'C22', 'Analisa praanggapan.', 1, 1),
(88, 15, 'C22', 'Analisa tugas-tugas dari aspek dukungan komlek.', 1, 1),
(89, 15, 'C22', 'Analisa kendala-kendala yang dihadapi dan upaya mengatasi dari aspek komlek.', 1, 1),
(90, 15, 'C22', 'Analisa hambatan-hambatan yang dihadapi dan bantuan yang diperlukan.', 1, 1),
(91, 10, 'C22', 'Kebutuhan informasi yang diperlukan dari aspek komlek', 1, 1),
(92, 15, 'C22', 'Strategi operasional aspek komlek.', 1, 1),
(93, 2.5, 'C22', 'Kerapihan', 1, 1),
(94, 2.5, 'C22', 'Ketepatan waktu penyerahan produk', 1, 1),
(95, 5, 'C23', 'Situasi', 1, 1),
(96, 10, 'C23', 'Tugas Pokok yang Dinyatakan Kembali', 1, 1),
(97, 10, 'C23', 'Keinginan Panglima', 1, 1),
(98, 5, 'C23', 'Kegiatan-kegiatan yang Menentukan', 1, 1),
(99, 10, 'C23', 'CB yang Dikembangkan', 1, 1),
(100, 5, 'C23', 'Pengembangan Konsep CB', 1, 1),
(101, 5, 'C23', 'Rencana Waktu', 1, 1),
(102, 5, 'C23', 'Rencana Duklog', 1, 1),
(103, 5, 'C23', 'Keperluan Info Intelijen', 1, 1),
(104, 5, 'C23', 'Rencana Operasi Pengamanan', 1, 1),
(105, 5, 'C23', 'Petunjuk Pengintaian dan Pengamatan', 1, 1),
(106, 5, 'C23', 'Resiko yang akan Dihadapi', 1, 1),
(107, 5, 'C23', 'Kerja sama Operasi yang akan Dilaksanakan', 1, 1),
(108, 5, 'C23', 'Jenis Perintah yang akan Dikeluarkan', 1, 1),
(109, 5, 'C23', 'Rencana Uji RO', 1, 1),
(110, 5, 'C23', 'Rencana Waktu (Penutup)', 1, 1),
(111, 2.5, 'C23', 'Kerapihan produk', 1, 1),
(112, 2.5, 'C23', 'Ketepatan waktu penyerahan produk', 1, 1),
(113, 10, 'C24', 'Situasi', 1, 1),
(114, 10, 'C24', 'Tugas Pokok', 1, 1),
(115, 10, 'C24', 'Keinginan Pangkogasgab (Konsep Strategi Operasional)', 1, 1),
(116, 10, 'C24', 'Organisasi Tugas', 1, 1),
(117, 10, 'C24', 'UUK/PIL', 1, 1),
(118, 10, 'C24', 'Petunjuk Resiko', 1, 1),
(119, 10, 'C24', 'Instruksi Pengamatan dan Pengintaian', 1, 1),
(120, 10, 'C24', 'Instruksi Pergerakan Awal', 1, 1),
(121, 10, 'C24', 'Tindakan Keamanan', 1, 1),
(122, 2.5, 'C24', 'Pengecekan Kesiapan Personel dan Materiil', 1, 1),
(123, 2.5, 'C24', 'Penutup', 1, 1),
(124, 2.5, 'C24', 'Ketepatan waktu', 1, 1),
(125, 2.5, 'C24', 'Kerapihan', 1, 1),
(126, 10, 'C25', 'Situasi', 1, 1),
(127, 30, 'C25', '<NAME>', 1, 1),
(128, 30, 'C25', 'Analisa alternatif CB', 1, 1),
(129, 20, 'C25', 'Kesimpulan', 1, 1),
(130, 5, 'C25', 'Kerapian produk', 1, 1),
(131, 5, 'C25', 'Ketepatan waktu penyerahan produk', 1, 1),
(132, 10, 'C26', 'Situasi', 1, 1),
(133, 30, 'C26', '<NAME>', 1, 1),
(134, 30, 'C26', 'Analisa alternatif CB', 1, 1),
(135, 30, 'C26', 'Kesimpulan', 1, 1),
(136, 5, 'C26', 'Kerapian produk', 1, 1),
(137, 5, 'C26', 'Ketepatan waktu penyerahan produk', 1, 1),
(138, 10, 'C27', 'Situasi', 1, 1),
(139, 30, 'C27', '<NAME>', 1, 1),
(140, 30, 'C27', 'Analisa alternatif CB', 1, 1),
(141, 20, 'C27', 'Kesimpulan', 1, 1),
(142, 5, 'C27', 'Kerapian produk', 1, 1),
(143, 5, 'C27', 'Ketepatan waktu penyerahan produk', 1, 1),
(144, 10, 'C28', 'Situasi', 1, 1),
(145, 30, 'C28', '<NAME>', 1, 1),
(146, 30, 'C28', 'Analisa alternatif CB', 1, 1),
(147, 20, 'C28', 'Kesimpulan', 1, 1),
(148, 5, 'C28', 'Kerapian produk', 1, 1),
(149, 5, 'C28', 'Ketepatan waktu penyerahan produ', 1, 1),
(150, 10, 'C29', 'Situasi', 1, 1),
(151, 30, 'C29', '<NAME>', 1, 1),
(152, 30, 'C29', 'Analisa alternatif CB', 1, 1),
(153, 20, 'C29', 'Kesimpulan', 1, 1),
(154, 5, 'C29', 'Kerapian produk', 1, 1),
(155, 5, 'C29', 'Ketepatan waktu penyerahan produk', 1, 1),
(156, 10, 'C30', 'Situasi', 1, 1),
(157, 30, 'C30', '<NAME>', 1, 1),
(158, 30, 'C30', 'Analisa alternatif CB', 1, 1),
(159, 20, 'C30', 'Kesimpulan', 1, 1),
(160, 5, 'C30', 'Kerapian produk', 1, 1),
(161, 5, 'C30', 'Ketepatan waktu penyerahan produk', 1, 1),
(162, 10, 'C31', 'Situasi', 1, 1),
(163, 30, 'C31', '<NAME>', 1, 1),
(164, 30, 'C31', 'Analisa alternatif CB', 1, 1),
(165, 20, 'C31', 'Kesimpulan', 1, 1),
(166, 5, 'C31', 'Kerapian produk', 1, 1),
(167, 5, 'C31', 'Ketepatan waktu penyerahan produk', 1, 1),
(168, 10, 'C32', 'Situasi', 1, 1),
(169, 30, 'C32', '<NAME>', 1, 1),
(170, 30, 'C32', 'Analisa alternatif CB', 1, 1),
(171, 20, 'C32', 'Kesimpulan', 1, 1),
(172, 5, 'C32', 'Kerapian produk', 1, 1),
(173, 5, 'C32', 'Ketepatan waktu penyerahan produk', 1, 1),
(174, 10, 'C33', 'Keputusan', 1, 1),
(175, 30, 'C33', 'Konsep Umum Operasi', 1, 1),
(176, 30, 'C33', 'Pokok-pokok Tugas yang harus dikerjakan (Satuan Bawah)', 1, 1),
(177, 20, 'C33', 'Lain-lain', 1, 1),
(178, 5, 'C33', 'Kerapian produk', 1, 1),
(179, 5, 'C33', 'Ketepatan waktu penyerahan produk', 1, 1),
(180, 15, 'C34', 'Situasi', 1, 1),
(181, 20, 'C34', 'Tugas Pokok', 1, 1),
(182, 45, 'C34', 'Pelaksanaan\r\na. Konsep operasi\r\nb. Tugas satuan-satuan manuver yang termasuk dalam susunan tugas/organisasi tugas.\r\nc. Instruksi koordinasi.\r\n', 1, 1),
(183, 5, 'C34', 'Administrasi dan logistik', 1, 1),
(184, 5, 'C34', 'Komando kendali dan komlek', 1, 1),
(185, 5, 'C34', 'Kerapihan', 1, 1),
(186, 5, 'C34', 'Ketepatan waktu penyerahan produk', 1, 1),
(187, 40, 'C1', 'Peta :', 4, 1),
(188, 40, 'C1', 'Peta :\r\na. Induk\r\nb. Situasi\r\nc. Operasi\r\nd. <NAME> ', 4, 1),
(189, 30, 'C1', 'Recording Data', 4, 1),
(190, 15, 'C1', 'Tata ruang', 4, 1),
(191, 15, 'C1', 'Kerapihan/kreatifitas', 4, 1),
(197, 100, 'uwu', 'uwu', 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `soal_perorangan`
--
CREATE TABLE `soal_perorangan` (
`id_soal_perorangan` int(11) NOT NULL,
`id_ceklis` char(5) NOT NULL,
`indeks` tinyint(4) NOT NULL,
`tindakan_macam` text NOT NULL,
`nilmax` tinyint(4) NOT NULL,
`is_aktif` tinyint(1) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `soal_perorangan`
--
INSERT INTO `soal_perorangan` (`id_soal_perorangan`, `id_ceklis`, `indeks`, `tindakan_macam`, `nilmax`, `is_aktif`) VALUES
(1, 'C2', 10, 'Pangkogasgabpad menerima direktif Pang TNI, apakah melakukan kegiatan', 5, 1),
(2, 'C2', 10, 'Apakah Pangkogasgabpad memahami Direktif yang diberikan oleh Panglima TNI dan melaksanakan Analisa Tugas Pokok yang mencakup', 5, 1),
(3, 'C2', 5, 'Pada saat Briefing analisa tugas, apakah Panglima menerima paparan dari semua asisten? Membandingkan hasil analisa tugas pokok yang dilakukan sendiri oleh Panglima, selanjutnya Panglima memberi arahan kepada Staf untuk menyusun petunjuk perencanaan dan perintah persiapan.', 5, 1),
(4, 'C2', 10, 'Apakah Panglima menyampaikan petunjuk perencanaan kepada staf dan menyampaikan perintah persiapan kepada satuan bawah?', 5, 1),
(5, 'C2', 5, 'Apakah Panglima dengan staf melaksanakan proses pengembangan, analisa dan perbandingan CB untuk menghasilkan CB terpilih?', 5, 1),
(6, 'C2', 5, 'Apakah Panglima ikut serta/mengawasi proses olah yudha yang dilaksanakan oleh staf ?', 5, 1),
(7, 'C2', 10, 'Apakah Panglima menerima paparan Kas mengenai CB terbaik, selanjutnya Panglima menentukan CB terbaik dengan membandingkan CB yang dibuat Panglima sendiri? Apakah Panglima memberi petunjuk dan memodifikasi CB apabila diperlukan serta mensimulasikannya kembali?', 5, 1),
(8, 'C2', 5, 'Apakah Pangkogasgabpad menyampaikan Keputusan dan Konsep Umum Operasi kepada para Asisten dan Unsur-unsur bawah (sat bawahan) serta unsur terkait.', 5, 1),
(9, 'C2', 5, 'Apakah Keputusan & KUO Pangkogasgabpad mencakup Keputusan, Konsep Umum Operasi, Pokok-pokok tugas yang harus dikerjakan (oleh Satwah), Lain-lain / Instruksi Koordinasi.', 5, 1),
(10, 'C2', 5, 'Apakah dalam Kep & KUO Pangkogasgabpad sudah tercantum waktu perencanaan / perintah akan dikeluarkan.', 5, 1),
(11, 'C2', 10, 'Apakah dalam Rencana Operasi yang telah dibuat lengkap dengan lampiran-lampiran sebagai berikut', 5, 1),
(12, 'C2', 5, 'Apakah Rencana Operasi yang telah dibuat selanjutnya di uji melalui TFG atau dengan metode yang lain', 5, 1),
(13, 'C2', 5, 'Apakah RO yang sudah disempurnakan dilaporkan/dipaparkan kepada Panglima TNI.', 5, 1),
(14, 'C2', 10, 'Apakah Pangkogasgabpad membuat produk tertulis berupa', 5, 1),
(15, 'C3', 10, 'Apakah Pa Sahli memberikan saran dan penjelasan yang diperlukan panglima sesuai fungsinya', 5, 1),
(16, 'C3', 10, 'Apakah Pa Sahli selalu aktif koordinasi dengan staf lain.', 5, 1),
(17, 'C3', 10, 'Apakah Pa Sahli mengerti tentang tugas pokok satuan tempat ditugaskan', 5, 1),
(18, 'C3', 10, 'Apakah Pa Sahli dapat mengembangkan petunjuk yang diberikan Panglima', 5, 1),
(19, 'C3', 10, 'Apakah Pa Sahli dapat memberikan keterangan yang bersifat teknis tentang operasi yang dilaksanakan', 5, 1),
(20, 'C3', 10, 'Apakah Pa Sahli mengikuti perkembangan situasi secara terus menerus pelaksanaan operasi yang berjalan.', 5, 1),
(21, 'C3', 10, 'Apakah <NAME> terampil dan aktif dalam penyelesaian tugas-tugas sesuai bidang tugasnya', 5, 1),
(22, 'C3', 10, 'Apakah <NAME> selalu melaporkan sesuai bidang tugasnya yang diperlukan kepada satuan Komando Atas ', 5, 1),
(23, 'C3', 10, 'Apakah <NAME> mengetahui dan memiliki data kemampuan kekuatan sendiri yang dibutuhkan dalam operasi oleh satuan tempat bertugas.', 5, 1),
(24, 'C3', 10, 'Apakah <NAME> secara aktif mengikuti dan mengetahui rangkaian kegiatan satuan tempat bertugas.', 5, 1),
(25, 'C4', 10, 'Apakah Kas mengkoordinir staf dan menyiapsiagakan staf untuk siapkan proses perencanaan dan siapkan personel yang mampu untuk melaksanakan tugas sesuai dengan Protap yang ada?', 5, 1),
(26, 'C4', 3, 'Apakah Kas membantu Panglima merumuskan tujuan, konsep operasi serta kekuatan yang akan digunakan dalam Operasi.', 5, 1),
(27, 'C4', 2, 'Apakah Kas membantu Panglima dalam melaksanakan koordinasi ke Ko Atas, samping dan bawah sesuai fungsi bidang tugasnya', 5, 1),
(28, 'C4', 10, 'Apakah Kas mengkoordinir staf dalam melakukan analisa tugas staf? Apakah Kas melaksanakan briefing staf untuk menganalisa tugas bersama staf?', 5, 1),
(29, 'C4', 3, 'Apakah Kas membantu Panglima mempelajari situasi tentang musuh dan menentukan sasaran-sasaran strategis yang menjadi sasaran Operasi.', 5, 1),
(30, 'C4', 2, 'Apakah Kas mengikuti perkembangan situasi yang terjadi ', 5, 1),
(31, 'C4', 10, 'Apakah Kas mengkoordinir staf menyusun petunjuk perencanaan dan perintah persiapan Panglima?', 5, 1),
(32, 'C4', 5, 'Apakah Kas membantu Panglima membagi waktu untuk keleluasaan dan kesiapan satuan / komando bawah.', 5, 1),
(33, 'C4', 10, 'Apakah Kas mengkoordinir staf dan mengecek kesiapan personel untuk menerima petunjuk perencanaan dan perintah persiapan Panglima', 5, 1),
(34, 'C4', 10, 'Apakah Kas membantu Panglima menganalisa Cara Bertindak dan mendiskusikannya beserta Asisten dan staf khusus di atas maket / peta?', 5, 1),
(35, 'C4', 5, 'Apakah Kas mengkoordinir staf dan menyiapkan sarana dan prasarana yang diperlukan seperti Peta darat, laut dan udara untuk perbandingan CB? ', 5, 1),
(36, 'C4', 10, 'Apakah Kas membantu Panglima menyampaikan Keputusan dan Konsep Umum Operasi kepada para Asisten dan Komandan Satgas (sat bawahan) serta unsur terkait.', 5, 1),
(37, 'C4', 5, 'Apakah Kas membantu Panglima menentukan organisasi satuan-satuan dan kewenangan garis komando.', 5, 1),
(38, 'C4', 5, 'Apakah Kas membantu Panglima melaksanakan koordinasi untuk mengerahkan dan mempertahankan sumber daya yang ada untuk kebutuhan Operasi.', 5, 1),
(39, 'C4', 10, 'Apakah Kas membantu dalam kesiapan kegiatan Uji RO yang dilaksanakan melalui TFG', 5, 1),
(40, 'C5', 5, 'Apakah Asintel melaksanakan analisa tugas sesuai dengan bidang tugas intelejen.', 5, 1),
(41, 'C5', 5, 'Apakah Asintel membuat tabulasi data dan Peta Situasi.', 5, 1),
(42, 'C5', 5, 'Apakah Asintel berusaha mencari ke-terangan – keterangan melalui Satuan Atas, Bawah dan Samping.', 5, 1),
(43, 'C5', 5, 'Apakah Asintel memberikan Info/keterangan dan terus meyakinkan terpenuhinya kebutuhan intelejen yang memadai dan pelaporan untuk mengungkapkan ancaman / lawan segera mungkin.', 5, 1),
(44, 'C5', 10, 'Apakah Asintel berusaha menggunakan badan-badan pengumpulan keterangan yang ada di kesatuan.', 5, 1),
(45, 'C5', 10, 'Apakah Asintel mempersiapkan : <br/>\r\n1) Buku Harian. <br/>\r\n2) Buku Kerja. <br/>\r\n3) Peta – peta yang diperlukan.', 5, 1),
(46, 'C5', 10, 'Apakah Asintel berpartisipasi aktif dalam staf perencanaan dalam merencanakan, mengkoordinir, mengarahkan, memadukan, dan mengontrol konsentrasi dari upaya intel tentang kepentingan ancaman/lawan yang tepat waktu serta tepat sasaran.', 5, 1),
(47, 'C5', 10, 'Apakah Asintel berusaha memberikan ke-terangan–keterangan yang diperlukan oleh Pa Staf lain dalam rangka keberhasilan tugas.', 5, 1),
(48, 'C5', 5, 'Apakah Asintel memperhatikan Minu Staf Duty dalam membuat Produk Staf.', 5, 1),
(49, 'C5', 5, 'Apakah Asintel dapat memberikan saran berupa Analisa Intelijen tepat pada waktu yang telah ditentukan.', 5, 1),
(50, 'C5', 5, 'Apakah Asintel mengikuti perkembangan secara terus menerus dan memberikan masukan kepada Panglima dalam menghadapi situasi kritis.', 5, 1),
(51, 'C5', 5, 'Apakah Asintel loyal kepada keputusan Pang.', 5, 1),
(52, 'C5', 5, 'Apakah Asintel memberikan keterangan ancaman/lawan pada Staf Ops dalam rangka membuat RO.', 5, 1),
(53, 'C5', 5, 'Apakah Asintel ikut aktif mengawasi pelaksanaan perintah oleh satuan bawah.', 5, 1),
(54, 'C5', 10, 'Apakah Asintel membuat produk lainnya berupa :', 5, 1),
(55, 'C6', 5, 'Apakah Asops mempersiapkan buku harian, lembaran kerja dan Peta Ops.', 5, 1),
(56, 'C6', 5, 'Apakah Asops memberikan keterangan-keterangan yang diperlukan Panglima untuk menganalisa tugas.', 5, 1),
(57, 'C6', 5, 'Apakah Asops memberikan saran-saran yang diperlukan sewaktu Pang memberikan Briefing.', 5, 1),
(58, 'C6', 5, 'Apakah Asops memberikan keterangan yang diperlukan dari :\r\na. Satuan Atas.\r\nb. Satuan Samping. \r\nc. Satuan Bawah.', 5, 1),
(59, 'C6', 5, 'Apakah Asops mengadakan koordinasi dengan Pa Staf lainnya guna mencari keterangan yang diperlukan.', 5, 1),
(60, 'C6', 5, 'Apakah Asops mengerjakan dan berusaha untuk mengerti atas Jukcan yang diberikan Panglima.', 5, 1),
(61, 'C6', 5, 'Apakah Asops berusaha berkoordinasi dengan staf lain sebelum memulai membuat saran Staf.', 5, 1),
(62, 'C6', 5, 'Apakah Asops berusaha memberikan keterangan-keterangan Taktis sebelum Panglima memberikan Jukcan.', 5, 1),
(63, 'C5', 5, 'Apakah Asops memberikan perintah persiapan dan peringatan kepada satuan jajarannya sesuai keinginan Panglima', 5, 1),
(64, 'C6', 5, 'Apakah Asops menyiapkan dan menyampaikan Cara Bertindak sesuai keinginan dari Kogasgabpad ', 5, 1),
(65, 'C6', 5, 'Apakah Asops dapat menyelesaikan dan menyampaikan saran staf bidang operasi tepat pada waktunya.', 5, 1),
(66, 'C6', 5, 'Apakah Asops terampil dalam menangani masalah – masalah Operasi yang bersangkutan dengan fungsinya.', 5, 1),
(67, 'C6', 5, 'Apakah Asops menyiapkan dan menyelesaikan Kep dan KUO sesuai dengan keinginan Panglima.', 5, 1),
(68, 'C6', 10, 'Apakah Asops koordinasi dengan Pa Staf lainnya didalam menyelesaikan Konsep Rencana Operasi.', 5, 1),
(69, 'C6', 5, 'Apakah Asops menyiapkan dan menyelesaikan Rencana Operasi beserta lampirannya tepat pada waktunya.', 5, 1),
(70, 'C6', 5, 'Apakah Asops mengikuti perkembangan situasi sesuai jajarannya saat perencanaan.', 5, 1),
(71, 'C6', 3, 'Apakah Asops ikut mengawasi pelaksanaan perintah Panglima oleh Satuan-satuan bawah.', 5, 1),
(72, 'C6', 2, 'Apakah Asops mempersiapkan Peta Operasi.', 5, 1),
(73, 'C6', 3, 'Apakah Asops mengeplot semua peristiwa Operasi pada Peta Operasi.', 5, 1),
(74, 'C6', 5, 'Apakah Asop membuat produk lampiran :\r\n a. ATS\r\n b. Prinsiap, pringat\r\n c. Jukcan Panglima\r\n d. Saran staf bidang operasi\r\n e. Keputusan dan konsep operasi\r\n f. Rencana Operasi beserta lampirannya:\r\n 1) Susunan tugas\r\n 2) Peta operasi \r\n 3) Rencana Rule of Engangement\r\n 4) Lain-lain sesuai kebutuhan', 5, 1),
(75, 'C6', 2, 'Apakah Asops memasukkan berita-berita yang masuk pada Buku Harian atau Lembaran Kerja Staf.', 5, 1),
(76, 'C6', 2, 'Apakah Asops membuat/menyiapkan alat-alat pertolongan/miniatur untuk mempermudah Pengendalian Operasi.', 5, 1),
(77, 'C6', 3, 'Apakah Asops menentukan letak umum untuk Posko Kogasgabpad.', 5, 1),
(78, 'C7', 5, 'Apakah Aspers menganalisa tugas sesuai dengan fungsinya', 5, 1),
(79, 'C7', 5, 'Apakah Aspers mempersiapkan dan mencatat semua berita yang diterima, dan memasukkan pada buku harian, lembaran kerja dan blangko-blangko administrasi buku jurnal.', 5, 1),
(80, 'C7', 5, 'Apakah Aspers menyampaikan berita tersebut :\r\na. Semuanya pada Panglima.\r\nb. Pada alamat masing-masing.', 5, 1),
(81, 'C7', 5, 'Apakah Aspers berpartisipasi sejak awal dalam proses perencanaan dan pengambilan keputusan', 5, 1),
(82, 'C7', 5, 'Apakah Aspers mencari keterangan dengan :\r\na. Satuan Atas.\r\nb. Satuan Samping. \r\nc. Satuan Bawah.', 5, 1),
(83, 'C7', 5, 'Apakah Aspers mendata kekuatan personel dari satuan induk dan satuan-satuan yang membantu dan melaporkan keadaan/ kebutuhan personel kepada panglima.', 5, 1),
(84, 'C7', 5, 'Apakah Aspers berusaha mengerti terhadap Jukcan Panglima.', 5, 1),
(85, 'C7', 5, 'Apakah Aspers dapat mengembangkan Jukcan Panglima yang bersangkutan dengan bidang tugasnya.', 5, 1),
(86, 'C7', 5, 'Apakah Aspers merencanakan dan menyiapkan tenaga pengganti.', 5, 1),
(87, 'C7', 5, 'Apakah Aspers mencatat mengadakan koordinasi dengan Staf lainnya sebelum membuat Analisa staf Personel .', 5, 1),
(88, 'C7', 5, 'Apakah Aspers berusaha memberikan keterangan-keterangan tentang keadaan personel kepada Staf lainnya.', 5, 1),
(89, 'C7', 5, 'Apakah Aspers dapat mengembangkan petunjuk-petunjuk Panglima yang berkaitan dengan bidangnya.', 5, 1),
(90, 'C7', 5, 'Apakah Aspers dapat menyampaikan saran berupa Analisa Personel sesuai bidang personel tepat pada waktunya yang telah ditentukan oleh Panglima.', 5, 1),
(91, 'C7', 5, 'Apakah Aspers berusaha memberikan saran-saran yang diperlukan Panglima dalam mengambil keputusan dan menyusun KUO.', 5, 1),
(92, 'C7', 5, 'Apakah Aspers membantu untuk melengkapi RO', 5, 1),
(93, 'C7', 5, 'Apakah Aspers ikut mengawasi pelaksanaan perintah Panglima oleh satuan bawah.', 5, 1),
(94, 'C7', 5, 'Apakah Aspers dapat mengatasi semua persoalan (operasi) yang menyangkut dengan bidang tugasnya.', 5, 1),
(95, 'C7', 5, 'Apakah Aspers menentukan letak pasti kedudukan Mako.', 5, 1),
(96, 'C7', 5, 'Apakah Aspers menentukan prosedur penataan dan penggunaan pekerja sipil setempat.', 5, 1),
(97, 'C7', 5, 'Apakah Aspers membuat membuat produk berupa :\r\n a. ATS\r\n b. Analisa CB Staf Personel\r\n c. Lampiran perencanaan dukungan personel', 5, 1),
(98, 'C8', 5, 'Apakah Aslog menganalisa tugas sesuai fungsi bidang tugasnya', 5, 1),
(99, 'C8', 5, 'Apakah Aslog mempersiapkan dan mencatat semua berita sesuai bidangnya pada buku harian, lembar kerja dan mengolah data berita tersebut.', 5, 1),
(100, 'C8', 5, 'Apakah Aslog mencari keterangan dari :\r\na. Satuan Atas.\r\nb. Satuan Samping.\r\nc. Satuan Bawah.', 5, 1),
(101, 'C8', 5, 'Apakah Aslog memberi saran kepada Panglima tentang kemampuan dukungan dibidang logistik yang dapat mempengauhi CB/pelaksanan tugas pokok Kogasgabpad.', 5, 1),
(102, 'C8', 5, 'Apakah Aslog mengikuti perkembangan keadaan logistik di satuannya.', 5, 1),
(103, 'C8', 5, 'Apakah Aslog berusaha mengerti akan isi Jukcan Panglima.', 5, 1),
(104, 'C8', 5, 'Apakah Aslog dapat mengembangkan Jukcan Panglima sesuai bidang tugasnya.', 5, 1),
(105, 'C8', 5, 'Apakah Aslog mengadakan koordinasi dengan Staf lainnya sebelum membuat Analisa.', 5, 1),
(106, 'C8', 5, 'Apakah Aslog berusaha memberikan keterangan tentang logistik kepada Staf lainnya.', 5, 1),
(107, 'C8', 5, 'Apakah Aslog dapat menyampaikan saran kepada Panglima tepat pada waktunya.', 5, 1),
(108, 'C8', 10, 'Apakah Aslog membantu Staf Ops membuat lampiran rencana bantuan logistik (Rencana pelayanan logistik operasi) beserta Sub lampirannya ', 5, 1),
(109, 'C8', 5, 'Apakah Aslog merawat dan membekali pasukan yang terlibat operasi, sehingga menjamin keberhasilan pelaksanaan tugas sesuai tugas pokok', 5, 1),
(110, 'C8', 5, 'Apakah Aslog mengkoordinasikan semua fungsi logistik dan ketentuan-ketentuan, bantuan logistik dan pertahankan seluruh aset yang dimiliki', 5, 1),
(111, 'C8', 5, 'Apakah Aslog memformulasikan dan menentukan ketentuan-ketentuan tentang logistik yang berkelanjutan untuk perencanaan dan pelaksanan kebijakan logistik Kogasgabpad', 5, 1),
(112, 'C8', 5, 'Apakah Aslog mengembangkan lampiran logistik pada RO', 5, 1),
(113, 'C8', 5, 'Apakah Aslog mengkoordinasikan secara umum dengan satuan penyiap logistik, satuan tugas yang menyokong dukungan logistik, bantuan pembekalan sesuai dengan perintah penugasan dalam lampiran (Logistik pada RO)', 5, 1),
(114, 'C8', 5, 'Apakah Aslog mengkoordinasikan bantuan dan pembekalan angkatan, pengadaan dan pengendalian setempat (lokal) dan mengalokasikan fasilitas daerah setempat serta sumbangan daerah logistik yang dapat digunakan di daerah persiapan di wilayah ', 5, 1),
(115, 'C8', 10, 'Apakah Aslog membuat produk tertulis berupa:\r\n a. ATS\r\n b. Analisa CB Staf logistik.\r\n c. Rencana bantuan logistik (Rencana dukungan pelayanan logistik operasi)\r\n d. Sub lampiran matrik dukungan pelayanan logistik operasi\r\n e. Sub lampiran peta dukungan pelayanan operasi\r\n f. Sub lampiran rencana dukungan bantuan logistik kewilayahan', 5, 1),
(116, 'C9', 10, 'Apakah Aster melaksanakan tugas pokok sesuai dengan fungsi tugas teritorial.', 5, 1),
(117, 'C9', 5, 'Apakah Aster membantu panglima dalam pembinaan pertimbangan aspek teritorial yang berkaitan dalam pelaksanaan operasi', 5, 1),
(118, 'C9', 5, 'Apakah Aster memahami saran dan masukan kepada Panglima berkaitan dengan pembinaan yang terjadi dari faktor Ipoleksosbud yang dapat mempengaruhi keberhasilan tugas ', 5, 1),
(119, 'C9', 10, 'Apakah Aster membuat Data KBA, Geografi, Demografi, Politik, Tokoh – Tokoh Formal dan Informal.', 5, 1),
(120, 'C9', 5, 'Apakah Aster membuat Peta Geografi, Demografi dan politik.', 5, 1),
(121, 'C9', 5, 'Apakah Aster berusaha mencari data dan brosur-brosur tentang Teritorial kepada Satuan Atas maupun Kowil.', 5, 1),
(122, 'C9', 5, 'Apakah Aster berusaha menggunakan badan-badan pengumpul keterangan yang ada di kesatuan.', 5, 1),
(123, 'C9', 10, 'Apakah Aster mempersiapkan:\r\na. Buku Harian\r\nb. Lembaran Kerja\r\nc. Peta – peta yang diperlukan.', 5, 1),
(124, 'C9', 5, 'Apakah Aster mengelola keterangan yang diterima untuk kepentingan Panglima.', 5, 1),
(125, 'C9', 5, 'Apakah Aster berusaha memberikan keterangan yang diperlukan oleh Pa Staf lain untuk keberhasilan tugas.', 5, 1),
(126, 'C9', 5, 'Apakah Aster bekerja sama dengan aparat terkait untuk memanfaatkan wilayah baik SDM,SDA maupun sumber daya penting lainya guna keberhasilan tugas.', 5, 1),
(127, 'C9', 5, 'Apakah Aster memberikan saran tepat pada waktu yang telah ditentukan.', 5, 1),
(128, 'C9', 5, 'Apakah Aster mengikuti perkembangan secara terus menerus dan memberikannya kepada Panglima dalam menghadapi situasi kritis.', 5, 1),
(129, 'C9', 5, 'Apakah Aster menganalisa kemungkinan ancaman dibidang teritorial di wilayah operasi yang diperkirakan akan mempengaruhi pelaksanaan tugas pokok.', 5, 1),
(130, 'C9', 5, 'Apakah Aster memberikan keterangan bidang teritorial pada Staf Ops dalam rangka membuat RO.', 5, 1),
(131, 'C9', 5, 'Apakah Aster membuat produk tertulis berupa:\r\n a. ATS\r\n b. Analisa CB Staf teritorial.\r\n c. Rencana bantuan teritorial.', 5, 1),
(132, 'C9', 5, 'Apakah Aster ikut aktif mengawasi pelaksanaan perintah Panglima oleh Satwah.', 5, 1),
(133, 'C10', 10, 'Apakah Asren menganalisa tugas sesuai bidang tugasnya.', 5, 1),
(134, 'C10', 5, 'Apakah Asren menyiapkan dan mengkoordinasikan kebutuhan RO untuk mendukung tugas Kogasgabpad.', 5, 1),
(135, 'C10', 10, 'Apakah Asren menyiapkan RO sebagai dasar kegiatan untuk mendukung operasi di masa datang .', 5, 1),
(136, 'C10', 5, 'Apakah Asren merencanakan kebutuhan dan kesiapan kekuatan dan mengkoordinasikan rencana penggelaran sesuai CB terpilih.', 5, 1),
(137, 'C10', 5, 'Apakah Asren melaksanakan koordinasi dan mengkaji masukan bagi perencanaan waktu penggelaran.', 5, 1),
(138, 'C10', 5, 'Apakah Asren berkoordinasi dengan staf personel untuk memastikan tindakan militer dan politik sejalan dengan pandangan strategi dan politik nasional.', 5, 1),
(139, 'C10', 5, 'Apakah Asren ikut berpartisipasi dalam pengembangan Rule Of Engagemen (ROE).', 5, 1),
(140, 'C10', 10, 'Apakah Asren membuat parameter untuk Operasi yang sedang berlangsung. ', 5, 1),
(141, 'C10', 5, 'Apakah Asren menetapkan waktu pengambilan keputusan untuk memberi peluang lebih luas bagi pelaksanaan RO.', 5, 1),
(142, 'C10', 10, 'Apakah Asren mengantisipasi situasi taktis dan operasional yang menguntungkan, resiko dan saran untuk mendukung Rencana Pelibatan (ROE).', 5, 1),
(143, 'C10', 5, 'Apakah Asren melaksanakan sinkronisasi seluruh kekuatan untuk mendukung setiap CB terpilih.', 5, 1),
(144, 'C10', 5, 'Apakah Asren memperhatikan dengan seksama hubungan komando dengan Komando Atasan, Komando Bawahan ataupun Komando yang setingkat.', 5, 1),
(145, 'C10', 10, 'Apakah Asren merencanakan dan menentukan tugas khusus serta menentukan wilayah operasi.', 5, 1),
(146, 'C10', 10, 'Apakah Asren membuat produk tertuis berupa:\r\n a. ATS.\r\n b. Analisa CB Asren\r\n c. Renbut kuat.\r\n d. Renbut Ops.', 5, 1),
(147, 'C11', 5, 'Apakah Askomlek menganalisa tugas sesuai fungsi bidang tugasnya', 5, 1),
(148, 'C11', 5, 'Apakah Askomlek mempersiapkan dan mencatat semua berita sesuai bidangnya pada buku harian, lembar kerja dan mengolah data berita tersebut.', 5, 1),
(149, 'C11', 5, 'Apakah Askomlek mencari keterangan dari :\r\na. Satuan Atas.\r\nb. Satuan Samping.\r\nc. Satuan Bawah.', 5, 1),
(150, 'C11', 5, 'Apakah Askomlek memberi saran kepada Panglima tentang kemampuan dukungan dibidang komlek yang dapat mempengauhi CB / pelaksanan tugas Kogasgabpad.', 5, 1),
(151, 'C11', 5, 'Apakah Askomlek mengikuti perkembangan keadaan komlek di satuannya.', 5, 1),
(152, 'C11', 5, 'Apakah Askomlek berusaha mengerti akan isi Jukcan Panglima.', 5, 1),
(153, 'C11', 5, 'Apakah Askomlek dapat mengembangkan Jukcan Panglima sesuai bidang tugasnya', 5, 1),
(154, 'C11', 5, 'Apakah Askomlek mengadakan koordinasi dengan Staf lainnya sebelum membuat ATS', 5, 1),
(155, 'C11', 5, 'Apakah Askomlek berusaha memberikan keterangan tentang komlek kepada Staf lainnya.', 5, 1),
(156, 'C11', 5, 'Apakah Askomlek dapat menyampaikan saran kepada Panglima tepat pada waktunya.', 5, 1),
(157, 'C11', 10, 'Apakah Askomlek membantu Staf Ops membuat lampiran rencana komlek, serta Sub lampirannya ', 5, 1),
(158, 'C11', 5, 'Apakah Askomlek merawat dan membekali pasukan sehingga menjamin kemungkinan unsur kekuatan manuver secara leluasa melaksanakan konsepsi pelaksanaan tupoknya.', 5, 1),
(159, 'C11', 5, 'Apakah Askomlek mengkoordinasikan semua fungsi komlek dan ketentuan-ketentuan komlek dan pertahankan seluruh aset yang dimiliki', 5, 1),
(160, 'C11', 5, 'Apakah Askomlek memformulasikan dan menentukan ketentuan-ketentuan tentang komlek yang berkelanjutan untuk perencanaan dan pelaksanan kebijakan komlek Kogasgabpad.', 5, 1),
(161, 'C11', 5, 'Apakah Askomlek mengembangkan lampiran komlek pada RO ', 5, 1),
(162, 'C11', 5, 'Apakah Askomlek mengkoordinasikan secara umum dengan satuan penyiap komlek, satuan tugas yang menyokong dukungan komlek, bantuan pembekalan sesuai dengan perintah penugasan dalam lampiran (Komlek pada RO)', 5, 1),
(163, 'C11', 5, 'Apakah Askomlek mengkoordinasikan bantuan dan pembekalan angkatan, pengadaan dan pengendalian setempat (lokal) dan mengalokasikan fasilitas daerah setempat. ', 5, 1),
(164, 'C11', 10, 'Apakah Askomlek membuat produk tertulis berupa:\r\n a. ATS\r\n b. Analisa CB Staf Komlek\r\n c. Rencana Komlek (Rencana Komlek)\r\n d. Sub lampiran matrik dukungan pelayanan Komlek', 5, 1);
-- --------------------------------------------------------
--
-- Table structure for table `user`
--
CREATE TABLE `user` (
`id_user` int(11) NOT NULL,
`nama_user` varchar(50) NOT NULL,
`username` char(50) NOT NULL,
`password` char(50) NOT NULL,
`level` enum('1','2','3','4') NOT NULL,
`akses` text NOT NULL,
`akses_kelompok` text NOT NULL,
`id_anggota` int(11) DEFAULT NULL,
`status` enum('1','0') NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `user`
--
INSERT INTO `user` (`id_user`, `nama_user`, `username`, `password`, `level`, `akses`, `akses_kelompok`, `id_anggota`, `status`) VALUES
(1, 'Sekretaris', 'sekretaris', '<PASSWORD>', '2', '', '2', NULL, '1'),
(2, 'Kolat', 'kolat', '<PASSWORD>c363d058774c2a1598d', '2', '[{\"value\":\"1\"},{\"value\":\"2\"},{\"value\":\"3\"}]', '[{\"value\":\"KOGASGABPAD A\"}]', NULL, '1'),
(3, 'Ruangan', 'ruangan', '67ccb39f0ec81c363d058774c2a1598d', '2', '[{\"value\":\"4\"}]', '[{\"value\":\"KOGASGABPAD A\"}]', NULL, '1'),
(11, 'admin', 'admin', '580097c0183509887837571145ccc3ad', '1', '', '', NULL, '1'),
(12, '<NAME>, S.A.P.', '1920031270470', '67ccb39f0ec81c363d058774c2a1598d', '2', '[{\"value\":\"4\"}]', '[{\"value\":\"KOGASGABPAD A\"}]', NULL, '1'),
(13, '<NAME>, S.E.', '11452/P', '67ccb39f0ec81c363d058774c2a1598d', '2', '[{\"value\":\"4\"}]', '[{\"value\":\"KOGASGABPAD A\"}]', NULL, '1'),
(14, '<NAME>, S.H., M.M.', '32718', '67ccb39f0ec81c363d058774c2a1598d', '2', '[{\"value\":\"4\"}]', '[{\"value\":\"KOGASGABPAD B\"}]', NULL, '1'),
(15, '<NAME>, S.T.', '520254', '67ccb39f0ec81c363d058774c2a1598d', '2', '[{\"value\":\"4\"}]', '[{\"value\":\"KOGASGABPAD B\"}]', NULL, '1'),
(16, '<NAME>.T.', '510418', '67ccb39f0ec81c363d058774c2a1598d', '2', '[{\"value\":\"4\"}]', '[{\"value\":\"KOGASGABPAD C\"}]', NULL, '1'),
(17, '<NAME>', '11930085860670', '67ccb39f0ec81c363d058774c2a1598d', '2', '[{\"value\":\"4\"}]', '[{\"value\":\"KOGASGABPAD C\"}]', NULL, '1'),
(18, '<NAME>.Sos.', '1930082060671', '67ccb39f0ec81c363d058774c2a1598d', '2', '[{\"value\":\"4\"}]', '[{\"value\":\"KOGASGABPAD D\"}]', NULL, '1'),
(19, '<NAME>., M.A.P.', '10759/P', '67ccb39f0ec81c363d058774c2a1598d', '2', '[{\"value\":\"4\"}]', '[{\"value\":\"KOGASGABPAD D\"}]', NULL, '1'),
(20, 'Sumantri', '10791/P', '67ccb39f0ec81c363d058774c2a1598d', '2', '[{\"value\":\"4\"}]', '[{\"value\":\"KOGASGABPAD E\"}]', NULL, '1'),
(21, '<NAME>, S.Sos.', '11940017620471', '67ccb39f0ec81c363d058774c2a1598d', '2', '[{\"value\":\"4\"}]', '[{\"value\":\"KOGASGABPAD E\"}]', NULL, '1'),
(22, '<NAME>', '9277/P', '67ccb39f0ec81c363d058774c2a1598d', '2', '[{\"value\":\"4\"}]', '[{\"value\":\"KOGASGABPAD F\"}]', NULL, '1'),
(23, '<NAME>, S.I.P.', '1920024670668', '67ccb39f0ec81c363d058774c2a1598d', '2', '[{\"value\":\"4\"}]', '[{\"value\":\"KOGASGABPAD F\"}]', NULL, '1'),
(24, 'Eriyawan, S.E.', ' 9620/P', '67ccb39f0ec81c363d058774c2a1598d', '2', '[{\"value\":\"4\"}]', '[{\"value\":\"KOGASGABPAD G\"}]', NULL, '1'),
(25, '<NAME>, S.Sos.', '520303', '67ccb39f0ec81c363d058774c2a1598d', '2', '[{\"value\":\"4\"}]', '[{\"value\":\"KOGASGABPAD G\"}]', NULL, '1'),
(26, '<NAME>, S.E., M.Tr (Han)', '32776', '67ccb39f0ec81c363d058774c2a1598d', '2', '[{\"value\":\"4\"}]', '[{\"value\":\"KOGASGABPAD H\"}]', NULL, '1'),
(27, '<NAME>, S.H., M.H.', '11899/P', '67ccb39f0ec81c363d058774c2a1598d', '2', '[{\"value\":\"4\"}]', '[{\"value\":\"KOGASGABPAD H\"}]', NULL, '1');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `aktivitas`
--
ALTER TABLE `aktivitas`
ADD PRIMARY KEY (`id_aktivitas`),
ADD KEY `id_kelompok` (`id_kelompok`),
ADD KEY `id_kelompok_2` (`id_kelompok`),
ADD KEY `id_ceklis` (`id_ceklis`);
--
-- Indexes for table `anggota`
--
ALTER TABLE `anggota`
ADD PRIMARY KEY (`id_anggota`),
ADD KEY `id_pangkat` (`id_pangkat`),
ADD KEY `id_kelompok` (`id_kelompok`);
--
-- Indexes for table `ceklis`
--
ALTER TABLE `ceklis`
ADD PRIMARY KEY (`id_ceklis`),
ADD UNIQUE KEY `id_ceklis` (`id_ceklis`);
--
-- Indexes for table `detail_penilaian_kelompok`
--
ALTER TABLE `detail_penilaian_kelompok`
ADD PRIMARY KEY (`id_detail_penilaian_kelompok`),
ADD KEY `id_penilaian_kelompok` (`id_penilaian_kelompok`),
ADD KEY `id_soal_kelompok` (`id_soal_kelompok`),
ADD KEY `id_kelompok` (`id_kelompok`),
ADD KEY `id_ceklis` (`id_ceklis`);
--
-- Indexes for table `detail_penilaian_perorangan`
--
ALTER TABLE `detail_penilaian_perorangan`
ADD PRIMARY KEY (`id_detail_penilaian_perorangan`),
ADD KEY `id_penilaian_perorangan` (`id_penilaian_perorangan`),
ADD KEY `id_soal_perorangan` (`id_soal_perorangan`),
ADD KEY `id_anggota` (`id_anggota`);
--
-- Indexes for table `kelompok`
--
ALTER TABLE `kelompok`
ADD PRIMARY KEY (`id_kelompok`);
--
-- Indexes for table `pangkat`
--
ALTER TABLE `pangkat`
ADD PRIMARY KEY (`id_pangkat`);
--
-- Indexes for table `penilaian_kelompok`
--
ALTER TABLE `penilaian_kelompok`
ADD PRIMARY KEY (`id_penilaian_kelompok`),
ADD KEY `id_kelompok` (`id_kelompok`),
ADD KEY `id_ceklis` (`id_ceklis`);
--
-- Indexes for table `penilaian_perorangan`
--
ALTER TABLE `penilaian_perorangan`
ADD PRIMARY KEY (`id_penilaian_perorangan`),
ADD KEY `id_anggota` (`id_anggota`),
ADD KEY `id_ceklis` (`id_ceklis`);
--
-- Indexes for table `soal_kelompok`
--
ALTER TABLE `soal_kelompok`
ADD PRIMARY KEY (`id_soal_kelompok`),
ADD KEY `id_ceklis` (`id_ceklis`);
--
-- Indexes for table `soal_perorangan`
--
ALTER TABLE `soal_perorangan`
ADD PRIMARY KEY (`id_soal_perorangan`),
ADD KEY `id_ceklis` (`id_ceklis`);
--
-- Indexes for table `user`
--
ALTER TABLE `user`
ADD PRIMARY KEY (`id_user`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `aktivitas`
--
ALTER TABLE `aktivitas`
MODIFY `id_aktivitas` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `anggota`
--
ALTER TABLE `anggota`
MODIFY `id_anggota` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=174;
--
-- AUTO_INCREMENT for table `detail_penilaian_kelompok`
--
ALTER TABLE `detail_penilaian_kelompok`
MODIFY `id_detail_penilaian_kelompok` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `detail_penilaian_perorangan`
--
ALTER TABLE `detail_penilaian_perorangan`
MODIFY `id_detail_penilaian_perorangan` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `kelompok`
--
ALTER TABLE `kelompok`
MODIFY `id_kelompok` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `pangkat`
--
ALTER TABLE `pangkat`
MODIFY `id_pangkat` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT for table `penilaian_kelompok`
--
ALTER TABLE `penilaian_kelompok`
MODIFY `id_penilaian_kelompok` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT for table `penilaian_perorangan`
--
ALTER TABLE `penilaian_perorangan`
MODIFY `id_penilaian_perorangan` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `soal_kelompok`
--
ALTER TABLE `soal_kelompok`
MODIFY `id_soal_kelompok` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=198;
--
-- AUTO_INCREMENT for table `soal_perorangan`
--
ALTER TABLE `soal_perorangan`
MODIFY `id_soal_perorangan` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=165;
--
-- AUTO_INCREMENT for table `user`
--
ALTER TABLE `user`
MODIFY `id_user` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `aktivitas`
--
ALTER TABLE `aktivitas`
ADD CONSTRAINT `aktivitas_ibfk_1` FOREIGN KEY (`id_ceklis`) REFERENCES `ceklis` (`id_ceklis`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `aktivitas_ibfk_2` FOREIGN KEY (`id_kelompok`) REFERENCES `kelompok` (`id_kelompok`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `anggota`
--
ALTER TABLE `anggota`
ADD CONSTRAINT `ANGGOTA_ibfk_1` FOREIGN KEY (`id_pangkat`) REFERENCES `pangkat` (`id_pangkat`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `ANGGOTA_ibfk_2` FOREIGN KEY (`id_kelompok`) REFERENCES `kelompok` (`id_kelompok`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `detail_penilaian_kelompok`
--
ALTER TABLE `detail_penilaian_kelompok`
ADD CONSTRAINT `DETAIL_CEKLIS` FOREIGN KEY (`id_ceklis`) REFERENCES `ceklis` (`id_ceklis`),
ADD CONSTRAINT `DETAIL_KELOMPOK` FOREIGN KEY (`id_kelompok`) REFERENCES `kelompok` (`id_kelompok`),
ADD CONSTRAINT `DETAIL_PENILAIAN_KELOMPOK_ibfk_1` FOREIGN KEY (`id_penilaian_kelompok`) REFERENCES `penilaian_kelompok` (`id_penilaian_kelompok`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `DETAIL_PENILAIAN_KELOMPOK_ibfk_2` FOREIGN KEY (`id_soal_kelompok`) REFERENCES `soal_kelompok` (`id_soal_kelompok`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `detail_penilaian_perorangan`
--
ALTER TABLE `detail_penilaian_perorangan`
ADD CONSTRAINT `DETAIL_PENILAIAN_PERORANGAN_ibfk_2` FOREIGN KEY (`id_soal_perorangan`) REFERENCES `soal_perorangan` (`id_soal_perorangan`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `DETAIL_PENILAIAN_PERORANGAN_ibfk_3` FOREIGN KEY (`id_penilaian_perorangan`) REFERENCES `penilaian_perorangan` (`id_penilaian_perorangan`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `penilaian_kelompok`
--
ALTER TABLE `penilaian_kelompok`
ADD CONSTRAINT `PENILAIAN_KELOMPOK_ibfk_1` FOREIGN KEY (`id_kelompok`) REFERENCES `kelompok` (`id_kelompok`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `PENILAIAN_KELOMPOK_ibfk_2` FOREIGN KEY (`id_ceklis`) REFERENCES `ceklis` (`id_ceklis`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `penilaian_perorangan`
--
ALTER TABLE `penilaian_perorangan`
ADD CONSTRAINT `PENILAIAN_PERORANGAN_ibfk_2` FOREIGN KEY (`id_anggota`) REFERENCES `anggota` (`id_anggota`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `PENILAIAN_PERORANGAN_ibfk_4` FOREIGN KEY (`id_ceklis`) REFERENCES `ceklis` (`id_ceklis`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `soal_kelompok`
--
ALTER TABLE `soal_kelompok`
ADD CONSTRAINT `SOAL_KELOMPOK_ibfk_1` FOREIGN KEY (`id_ceklis`) REFERENCES `ceklis` (`id_ceklis`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `soal_perorangan`
--
ALTER TABLE `soal_perorangan`
ADD CONSTRAINT `SOAL_PERORANGAN_ibfk_1` FOREIGN KEY (`id_ceklis`) REFERENCES `ceklis` (`id_ceklis`) 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 */;
|
<reponame>tabeldatadotcom/springboot-archetype
create table example_table
(
id varchar2(64) default SYS_GUID() not null primary key,
name varchar2(100),
created_date date default current_date,
created_time timestamp default current_timestamp not null,
is_active number(1) default 0,
counter integer default 0 not null,
currency decimal not null,
description varchar2(2400),
floating double precision
);
insert into example_table(id, name, created_date, created_time, is_active, counter, currency, description, floating)
values ('001', '<NAME>', current_date, current_timestamp, 1, 0, 100000, null, 0.1);
insert into example_table(id, name, created_date, created_time, is_active, counter, currency, description, floating)
values ('002', '<NAME>', current_date, current_timestamp, 1, 0, 100000, null, 0.1);
insert into example_table(id, name, created_date, created_time, is_active, counter, currency, description, floating)
values ('003', 'Prima', current_date, current_timestamp, 1, 0, 100000, null, 0.1);
insert into example_table(id, name, created_date, created_time, is_active, counter, currency, description, floating)
values ('004', 'Gufron', current_date, current_timestamp, 1, 0, 100000, null, 0.1);
insert into example_table(id, name, created_date, created_time, is_active, counter, currency, description, floating)
values ('005', 'Abdul', current_date, current_timestamp, 1, 0, 100000, null, 0.1);
|
BEGIN
dbms_output.put_line('Hello BIT');
END;
/ |
CREATE DATABASE gotdb;
USE gotdb; |
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Sep 02, 2020 at 09:48 PM
-- Server version: 10.4.14-MariaDB
-- PHP Version: 7.2.33
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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: `nhap1`
--
-- --------------------------------------------------------
--
-- Table structure for table `banner`
--
CREATE TABLE `banner` (
`id` int(10) UNSIGNED NOT NULL,
`image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`name` text COLLATE utf8mb4_unicode_ci NOT NULL,
`banner` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `banner`
--
INSERT INTO `banner` (`id`, `image`, `created_at`, `updated_at`, `name`, `banner`) VALUES
(1, 'categories/August2020/AlnXJS9wnaEhUtAD6uWm.jpg', '2020-09-01 02:39:00', '2020-09-01 03:24:40', 'a', NULL),
(2, 'categories/August2020/z4d0mvv3WIR89BGNVFLr.jpg', NULL, '2020-09-01 03:24:44', 'a', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `brand`
--
CREATE TABLE `brand` (
`id` int(10) UNSIGNED NOT NULL,
`image1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`image3` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `brand`
--
INSERT INTO `brand` (`id`, `image1`, `image2`, `created_at`, `updated_at`, `image3`) VALUES
(3, 'brand\\September2020\\w0kGaF1Ob3bI3zN5MRvc.jpg', 'brand\\September2020\\JlwfECQzRpEGR7tWrhql.jpg', '2020-09-01 21:12:00', '2020-09-02 12:48:10', 'brand\\September2020\\SqjIiTaR3uNWvVdwjiJu.jpg');
-- --------------------------------------------------------
--
-- Table structure for table `categories`
--
CREATE TABLE `categories` (
`id` bigint(20) NOT NULL,
`category_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `categories`
--
INSERT INTO `categories` (`id`, `category_name`, `created_at`, `updated_at`, `image`) VALUES
(1, 'Lighting', NULL, '2020-09-02 09:55:10', 'categories\\September2020\\9nrzchXP2GtifiSPMQNy.jpg'),
(2, 'Fragrances', NULL, '2020-09-02 09:55:28', 'categories\\September2020\\SaVjfn9ojP0Miq7Fh2b3.jpg'),
(3, 'Decorative Pillows', NULL, '2020-09-02 09:55:39', 'categories\\September2020\\wIuBSlOFvQ0IXOWE59nK.jpg'),
(4, 'Vases', NULL, '2020-09-02 09:55:49', 'categories\\September2020\\leyD7ixtwgV8sqAvCiwe.jpg'),
(5, 'Area Rugs', NULL, '2020-09-02 09:55:59', 'categories\\September2020\\fGInrWybj4aKXT4X2UrQ.jpg'),
(6, 'mirrors', NULL, '2020-09-02 09:56:11', 'categories\\September2020\\LLB2j0i0J08iKBImsoy8.jpg');
-- --------------------------------------------------------
--
-- Table structure for table `data_rows`
--
CREATE TABLE `data_rows` (
`id` int(10) UNSIGNED NOT NULL,
`data_type_id` int(10) UNSIGNED NOT NULL,
`field` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`display_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`required` tinyint(1) NOT NULL DEFAULT 0,
`browse` tinyint(1) NOT NULL DEFAULT 1,
`read` tinyint(1) NOT NULL DEFAULT 1,
`edit` tinyint(1) NOT NULL DEFAULT 1,
`add` tinyint(1) NOT NULL DEFAULT 1,
`delete` tinyint(1) NOT NULL DEFAULT 1,
`details` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `data_rows`
--
INSERT INTO `data_rows` (`id`, `data_type_id`, `field`, `type`, `display_name`, `required`, `browse`, `read`, `edit`, `add`, `delete`, `details`, `order`) VALUES
(1, 1, 'id', 'number', 'ID', 1, 0, 0, 0, 0, 0, NULL, 1),
(2, 1, 'name', 'text', 'Name', 1, 1, 1, 1, 1, 1, NULL, 2),
(3, 1, 'email', 'text', 'Email', 1, 1, 1, 1, 1, 1, NULL, 3),
(4, 1, 'password', 'password', 'Password', 1, 0, 0, 1, 1, 0, NULL, 4),
(5, 1, 'remember_token', 'text', 'Remember Token', 0, 0, 0, 0, 0, 0, NULL, 5),
(6, 1, 'created_at', 'timestamp', 'Created At', 0, 1, 1, 0, 0, 0, NULL, 6),
(7, 1, 'updated_at', 'timestamp', 'Updated At', 0, 0, 0, 0, 0, 0, NULL, 7),
(8, 1, 'avatar', 'image', 'Avatar', 0, 1, 1, 1, 1, 1, NULL, 8),
(9, 1, 'user_belongsto_role_relationship', 'relationship', 'Role', 0, 1, 1, 1, 1, 0, '{\"model\":\"TCG\\\\Voyager\\\\Models\\\\Role\",\"table\":\"roles\",\"type\":\"belongsTo\",\"column\":\"role_id\",\"key\":\"id\",\"label\":\"display_name\",\"pivot_table\":\"roles\",\"pivot\":0}', 10),
(10, 1, 'user_belongstomany_role_relationship', 'relationship', 'Roles', 0, 1, 1, 1, 1, 0, '{\"model\":\"TCG\\\\Voyager\\\\Models\\\\Role\",\"table\":\"roles\",\"type\":\"belongsToMany\",\"column\":\"id\",\"key\":\"id\",\"label\":\"display_name\",\"pivot_table\":\"user_roles\",\"pivot\":\"1\",\"taggable\":\"0\"}', 11),
(11, 1, 'settings', 'hidden', 'Settings', 0, 0, 0, 0, 0, 0, NULL, 12),
(12, 2, 'id', 'number', 'ID', 1, 0, 0, 0, 0, 0, NULL, 1),
(13, 2, 'name', 'text', 'Name', 1, 1, 1, 1, 1, 1, NULL, 2),
(14, 2, 'created_at', 'timestamp', 'Created At', 0, 0, 0, 0, 0, 0, NULL, 3),
(15, 2, 'updated_at', 'timestamp', 'Updated At', 0, 0, 0, 0, 0, 0, NULL, 4),
(16, 3, 'id', 'number', 'ID', 1, 0, 0, 0, 0, 0, NULL, 1),
(17, 3, 'name', 'text', 'Name', 1, 1, 1, 1, 1, 1, NULL, 2),
(18, 3, 'created_at', 'timestamp', 'Created At', 0, 0, 0, 0, 0, 0, NULL, 3),
(19, 3, 'updated_at', 'timestamp', 'Updated At', 0, 0, 0, 0, 0, 0, NULL, 4),
(20, 3, 'display_name', 'text', 'Display Name', 1, 1, 1, 1, 1, 1, NULL, 5),
(21, 1, 'role_id', 'text', 'Role', 1, 1, 1, 1, 1, 1, NULL, 9),
(22, 6, 'id', 'text', 'Id', 1, 1, 1, 1, 1, 1, '{}', 1),
(23, 6, 'category_name', 'text', 'Category Name', 1, 1, 1, 1, 1, 1, '{}', 2),
(24, 6, 'created_at', 'timestamp', 'Created At', 0, 1, 1, 1, 1, 1, '{}', 3),
(25, 6, 'updated_at', 'timestamp', 'Updated At', 0, 0, 0, 0, 0, 0, '{}', 4),
(26, 7, 'id', 'text', 'Id', 1, 0, 0, 0, 0, 0, '{}', 1),
(27, 7, 'category_id', 'text', 'Category Id', 1, 1, 1, 1, 1, 1, '{}', 2),
(28, 7, 'title', 'text', 'Title', 1, 1, 1, 1, 1, 1, '{}', 3),
(29, 7, 'price', 'text', 'Price', 1, 1, 1, 1, 1, 1, '{}', 4),
(30, 7, 'image', 'image', 'Image', 1, 1, 1, 1, 1, 1, '{}', 5),
(31, 7, 'created_at', 'timestamp', 'Created At', 0, 1, 1, 1, 0, 1, '{}', 6),
(32, 7, 'updated_at', 'timestamp', 'Updated At', 0, 0, 0, 0, 0, 0, '{}', 7),
(33, 6, 'image', 'image', 'Image', 0, 1, 1, 1, 1, 1, '{}', 5),
(34, 8, 'id', 'text', 'Id', 1, 1, 1, 1, 1, 1, '{}', 1),
(35, 8, 'image', 'image', 'Image', 0, 1, 1, 1, 1, 1, '{}', 2),
(36, 8, 'title', 'text', 'Title', 0, 1, 1, 1, 1, 1, '{}', 3),
(37, 8, 'content', 'text', 'Content', 0, 1, 1, 1, 1, 1, '{}', 4),
(38, 8, 'description', 'text', 'Description', 0, 1, 1, 1, 1, 1, '{}', 5),
(39, 8, 'created_at', 'timestamp', 'Created At', 0, 1, 1, 1, 0, 1, '{}', 6),
(40, 8, 'updated_at', 'timestamp', 'Updated At', 0, 0, 0, 0, 0, 0, '{}', 7),
(41, 8, 'date', 'text', 'Date', 0, 1, 1, 1, 1, 1, '{}', 8),
(46, 18, 'id', 'text', 'Id', 1, 1, 1, 1, 1, 1, '{}', 1),
(47, 18, 'image', 'image', 'Image', 0, 1, 1, 1, 1, 1, '{}', 2),
(48, 18, 'created_at', 'timestamp', 'Created At', 0, 1, 1, 1, 0, 1, '{}', 3),
(49, 18, 'updated_at', 'timestamp', 'Updated At', 0, 0, 0, 0, 0, 0, '{}', 4),
(50, 18, 'name', 'text', 'Name', 0, 1, 1, 1, 1, 1, '{}', 5),
(51, 20, 'id', 'hidden', 'Id', 1, 0, 0, 0, 0, 0, '{}', 1),
(52, 20, 'image', 'image', 'Image', 0, 1, 1, 1, 1, 1, '{}', 2),
(53, 20, 'created_at', 'timestamp', 'Created At', 0, 1, 1, 1, 0, 1, '{}', 4),
(54, 20, 'updated_at', 'timestamp', 'Updated At', 0, 0, 0, 0, 0, 0, '{}', 5),
(55, 20, 'name', 'text', 'Name', 0, 1, 1, 1, 1, 1, '{}', 3),
(56, 25, 'id', 'text', 'Id', 1, 0, 0, 0, 0, 0, '{}', 1),
(57, 25, 'image1', 'image', 'Image1', 0, 1, 1, 1, 1, 1, '{}', 2),
(58, 25, 'image2', 'image', 'Image2', 0, 1, 1, 1, 1, 1, '{}', 3),
(59, 25, 'created_at', 'timestamp', 'Created At', 0, 1, 1, 1, 0, 1, '{}', 4),
(60, 25, 'updated_at', 'timestamp', 'Updated At', 0, 0, 0, 0, 0, 0, '{}', 5),
(61, 7, 'image1', 'image', 'Image1', 0, 1, 1, 1, 1, 1, '{}', 8),
(62, 7, 'image2', 'image', 'Image2', 0, 1, 1, 1, 1, 1, '{}', 9),
(63, 7, 'image3', 'image', 'Image3', 0, 1, 1, 1, 1, 1, '{}', 10),
(64, 7, 'image4', 'image', 'Image4', 0, 1, 1, 1, 1, 1, '{}', 11),
(65, 25, 'image3', 'image', 'Image3', 0, 1, 1, 1, 1, 1, '{}', 6),
(66, 7, 'content', 'text', 'Content', 0, 1, 1, 1, 1, 1, '{}', 12);
-- --------------------------------------------------------
--
-- Table structure for table `data_types`
--
CREATE TABLE `data_types` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`display_name_singular` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`display_name_plural` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`icon` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`model_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`policy_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`controller` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`generate_permissions` tinyint(1) NOT NULL DEFAULT 0,
`server_side` tinyint(4) NOT NULL DEFAULT 0,
`details` text 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 `data_types`
--
INSERT INTO `data_types` (`id`, `name`, `slug`, `display_name_singular`, `display_name_plural`, `icon`, `model_name`, `policy_name`, `controller`, `description`, `generate_permissions`, `server_side`, `details`, `created_at`, `updated_at`) VALUES
(1, 'users', 'users', 'User', 'Users', 'voyager-person', 'TCG\\Voyager\\Models\\User', 'TCG\\Voyager\\Policies\\UserPolicy', 'TCG\\Voyager\\Http\\Controllers\\VoyagerUserController', '', 1, 0, NULL, '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(2, 'menus', 'menus', 'Menu', 'Menus', 'voyager-list', 'TCG\\Voyager\\Models\\Menu', NULL, '', '', 1, 0, NULL, '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(3, 'roles', 'roles', 'Role', 'Roles', 'voyager-lock', 'TCG\\Voyager\\Models\\Role', NULL, 'TCG\\Voyager\\Http\\Controllers\\VoyagerRoleController', '', 1, 0, NULL, '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(6, 'categories', 'categories', 'Categories', 'Categories', NULL, 'App\\Categories', NULL, NULL, NULL, 1, 0, '{\"order_column\":null,\"order_display_column\":null,\"order_direction\":\"asc\",\"default_search_key\":null,\"scope\":null}', '2020-08-31 12:41:18', '2020-08-31 13:03:32'),
(7, 'products', 'products', 'Product', 'Products', NULL, 'App\\Product', NULL, NULL, NULL, 1, 0, '{\"order_column\":null,\"order_display_column\":null,\"order_direction\":\"asc\",\"default_search_key\":null,\"scope\":null}', '2020-08-31 12:41:34', '2020-09-02 10:13:29'),
(8, 'news', 'news', 'News', 'News', NULL, 'App\\News', NULL, NULL, NULL, 1, 0, '{\"order_column\":null,\"order_display_column\":null,\"order_direction\":\"asc\",\"default_search_key\":null,\"scope\":null}', '2020-08-31 12:51:34', '2020-08-31 21:13:06'),
(18, 'dmfpt', 'dmfpt', 'Dmfpt', 'Dmfpts', NULL, 'App\\Dmfpt', NULL, NULL, NULL, 1, 0, '{\"order_column\":null,\"order_display_column\":null,\"order_direction\":\"asc\",\"default_search_key\":null,\"scope\":null}', '2020-09-01 02:37:42', '2020-09-01 02:39:14'),
(20, 'banner', 'banner', 'Banner', 'Banners', NULL, 'App\\Banner', NULL, NULL, NULL, 1, 0, '{\"order_column\":null,\"order_display_column\":null,\"order_direction\":\"asc\",\"default_search_key\":null,\"scope\":null}', '2020-09-01 02:41:04', '2020-09-01 02:42:36'),
(25, 'brand', 'brand', 'Brand', 'Brands', NULL, 'App\\Brand', NULL, NULL, NULL, 1, 0, '{\"order_column\":null,\"order_display_column\":null,\"order_direction\":\"asc\",\"default_search_key\":null,\"scope\":null}', '2020-09-01 21:07:09', '2020-09-02 10:05:28');
-- --------------------------------------------------------
--
-- Table structure for table `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint(20) UNSIGNED NOT NULL,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `menus`
--
CREATE TABLE `menus` (
`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 `menus`
--
INSERT INTO `menus` (`id`, `name`, `created_at`, `updated_at`) VALUES
(1, 'admin', '2020-08-31 12:38:26', '2020-08-31 12:38:26');
-- --------------------------------------------------------
--
-- Table structure for table `menu_items`
--
CREATE TABLE `menu_items` (
`id` int(10) UNSIGNED NOT NULL,
`menu_id` int(10) UNSIGNED DEFAULT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`url` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`target` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '_self',
`icon_class` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`parent_id` int(11) DEFAULT NULL,
`order` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`route` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`parameters` text COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `menu_items`
--
INSERT INTO `menu_items` (`id`, `menu_id`, `title`, `url`, `target`, `icon_class`, `color`, `parent_id`, `order`, `created_at`, `updated_at`, `route`, `parameters`) VALUES
(1, 1, 'Dashboard', '', '_self', 'voyager-boat', NULL, NULL, 1, '2020-08-31 12:38:26', '2020-08-31 12:38:26', 'voyager.dashboard', NULL),
(2, 1, 'Media', '', '_self', 'voyager-images', NULL, NULL, 7, '2020-08-31 12:38:26', '2020-08-31 13:09:47', 'voyager.media.index', NULL),
(3, 1, 'Users', '', '_self', 'voyager-person', NULL, NULL, 2, '2020-08-31 12:38:26', '2020-08-31 13:09:58', 'voyager.users.index', NULL),
(4, 1, 'Roles', '', '_self', 'voyager-lock', NULL, NULL, 6, '2020-08-31 12:38:26', '2020-08-31 13:10:03', 'voyager.roles.index', NULL),
(5, 1, 'Tools', '', '_self', 'voyager-tools', NULL, NULL, 8, '2020-08-31 12:38:26', '2020-08-31 13:09:47', NULL, NULL),
(6, 1, 'Menu Builder', '', '_self', 'voyager-list', NULL, 5, 1, '2020-08-31 12:38:26', '2020-08-31 13:09:25', 'voyager.menus.index', NULL),
(7, 1, 'Database', '', '_self', 'voyager-data', NULL, 5, 2, '2020-08-31 12:38:26', '2020-08-31 13:09:31', 'voyager.database.index', NULL),
(8, 1, 'Compass', '', '_self', 'voyager-compass', NULL, 5, 3, '2020-08-31 12:38:26', '2020-08-31 13:09:31', 'voyager.compass.index', NULL),
(9, 1, 'BREAD', '', '_self', 'voyager-bread', NULL, 5, 4, '2020-08-31 12:38:26', '2020-08-31 13:09:31', 'voyager.bread.index', NULL),
(10, 1, 'Settings', '', '_self', 'voyager-settings', NULL, NULL, 9, '2020-08-31 12:38:26', '2020-08-31 13:09:47', 'voyager.settings.index', NULL),
(11, 1, 'Hooks', '', '_self', 'voyager-hook', NULL, 5, 5, '2020-08-31 12:38:26', '2020-08-31 13:09:31', 'voyager.hooks', NULL),
(12, 1, 'Categories', '', '_self', NULL, NULL, NULL, 4, '2020-08-31 12:41:18', '2020-08-31 13:10:03', 'voyager.categories.index', NULL),
(13, 1, 'Products', '', '_self', NULL, NULL, NULL, 3, '2020-08-31 12:41:34', '2020-08-31 13:10:03', 'voyager.products.index', NULL),
(14, 1, 'News', '', '_self', NULL, NULL, NULL, 5, '2020-08-31 12:51:34', '2020-08-31 13:10:03', 'voyager.news.index', NULL),
(21, 1, 'Banners', '', '_self', NULL, NULL, NULL, 11, '2020-09-01 02:41:04', '2020-09-01 02:41:04', 'voyager.banner.index', NULL),
(23, 1, 'Brands', '', '_self', NULL, NULL, NULL, 12, '2020-09-01 21:07:09', '2020-09-01 21:07:09', 'voyager.brand.index', NULL);
-- --------------------------------------------------------
--
-- 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, '2016_01_01_000000_add_voyager_user_fields', 1),
(4, '2016_01_01_000000_create_data_types_table', 1),
(5, '2016_05_19_173453_create_menu_table', 1),
(6, '2016_10_21_190000_create_roles_table', 1),
(7, '2016_10_21_190000_create_settings_table', 1),
(8, '2016_11_30_135954_create_permission_table', 1),
(9, '2016_11_30_141208_create_permission_role_table', 1),
(10, '2016_12_26_201236_data_types__add__server_side', 1),
(11, '2017_01_13_000000_add_route_to_menu_items_table', 1),
(12, '2017_01_14_005015_create_translations_table', 1),
(13, '2017_01_15_000000_make_table_name_nullable_in_permissions_table', 1),
(14, '2017_03_06_000000_add_controller_to_data_types_table', 1),
(15, '2017_04_21_000000_add_order_to_data_rows_table', 1),
(16, '2017_07_05_210000_add_policyname_to_data_types_table', 1),
(17, '2017_08_05_000000_add_group_to_settings_table', 1),
(18, '2017_11_26_013050_add_user_role_relationship', 1),
(19, '2017_11_26_015000_create_user_roles_table', 1),
(20, '2018_03_11_000000_add_user_settings', 1),
(21, '2018_03_14_000000_add_details_to_data_types_table', 1),
(22, '2018_03_16_000000_make_settings_value_nullable', 1),
(23, '2019_08_19_000000_create_failed_jobs_table', 1),
(24, '2020_07_23_031048_create_categories_table', 1),
(25, '2020_08_18_053213_create_products_table', 1),
(26, '2020_08_18_145747_create_orders_table', 1);
-- --------------------------------------------------------
--
-- Table structure for table `news`
--
CREATE TABLE `news` (
`id` int(10) UNSIGNED NOT NULL,
`image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`date` date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `news`
--
INSERT INTO `news` (`id`, `image`, `title`, `content`, `description`, `created_at`, `updated_at`, `date`) VALUES
(21, 'news\\August2020\\lHf1ESAxtthho3x3UvLI.jpg', '15 Tips for Moving into Your First House', 'The apartment life-we know it well. Weekends by the pool. Your neighbors two buildings over who throw the best parties (no Uber necessary). Broken faucet? Let the landlord handle it.', '<div id=\"contentContainer\" class=\"post__content\" style=\"box-sizing: border-box; margin: 0px auto; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline; max-width: 41.875rem; color: #212121;\">\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><img src=\"http://localhost/Shopping-FPT/public//storage/news/August2020/home.jpg\" alt=\"\" width=\"780\" height=\"520\" /></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">The apartment life-we know it well. Weekends by the pool. Your neighbors two buildings over who throw the <em style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">best</em> parties (no Uber necessary). Broken faucet? Let the landlord handle it.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Apartment living has its advantages, but sometimes you just need to move on. Whether it’s a recent marriage (congratulations!), a new job, or just the accomplishment of a life goal you’ve been dreaming about for years, you’ve made the down payment, signed all the paperwork, and you’re ready (and so excited) to move into your first house.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">There are some pretty big differences between living in an apartment complex and living in a home. Luckily, MYMOVE is here to make the transition as easy as possible, with our top 15 tips to make moving into your first house easier.</p>\r\n<h2 id=\"15tipsformovingintoyourfirsthouse\" style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">15 Tips for Moving Into your First House:</h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">1. Handle the Basics</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><em style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">At least</em> two weeks in advance, make sure you change your address at the <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://moversguide.usps.com/mgo/disclaimer\" target=\"_blank\" rel=\"noopener\">official USPS website,</a> cancel your utilities and arrange for them to be set up at your new address, and research movers in your area (or decide if you want to move yourself).</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">2. Get an Inspection</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Repairs and maintenance now come out of <em style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">your</em> wallet, not your landlord’s. Make a list of things you want checked. Stay in the house during the inspection. If anything needs fixing, request the seller takes care of costs prior to closing.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">3. Plan for Chores</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">All those duties your landlord once handled are now your responsibility. Start thinking about investing in a lawnmower, weed trimmer, rake, shovel and sprinklers, as well as a tool set to take care of household fixes. Sound expensive? See #4</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">4. Purge your Possessions</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Unless you absolutely cannot live without it, a move is a great time to get rid of it. Hold a garage or yard sale for extra cash to finance your move.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">5. Furnish your Home with Items that Grow with You</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Consider the sofa: why skimp on a second-hand option (which, to be honest, doesn’t really match your carpet anyway)? Instead, pick up a high-quality sofa that’s designed specifically for your living room-and designed to follow you, move after move. Online innovator <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"http://www.pntrac.com/t/TUJGRktKTEJGTUlGSU1CRktFS05O\" target=\"_blank\" rel=\"noopener\">Burrow’s</a> modular sofas come with your choice of fabrics, legs, arm heights, and lengths. They’re completely modular, meaning that if your space changes, your sofa can grow with you. Best of all, <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"http://www.pntrac.com/t/TUJGRktKTEJGTUlGSU1CRktFS05O\" target=\"_blank\" rel=\"noopener\">Burrow</a> ships your sofa directly to you, removing all retail markups and over 70% of standard shipping costs. That’s over $600 in sofa savings for you-and one less piece of furniture to move.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Shop the Burrow collection <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"http://www.pntrac.com/t/TUJGRktKTEJGTUlGSU1CRktFS05O\" target=\"_blank\" rel=\"noopener\">here.</a></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">6. Clean, Paint, Exterminate, Install</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Some things are best done without furniture around. Steam clean the carpet, wipe out the cabinets, paint the walls, spray for pests, and plug in power strips before everything’s moved in. It will never be this easy again.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">7. Pack a “First Day Box”</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">A shower curtain & rings, toilet paper, lamp, extension cord, dinnerware, paper plates, and trash bags will make your first day and night in your new home easier.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">8. Hire Some (Reasonably-Priced) Help</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Maybe full-service movers were too expensive for your budget, or maybe your friends all bailed at the last minute (<em style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">really,</em> guys?!). Either way, you’ve got a truck full of boxes to unload, and you’re still not sure how you’re going to fit that inconveniently-shaped couch through the door and up the stairs. Don’t sweat it. <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.hireahelper.com/move-help/unloading-help/\" target=\"_blank\" rel=\"noopener\">HireAHelper</a> is an affordable service that sends local professional helpers to unload anything you’ve got: big or small, from your moving truck or storage container, so you can say goodbye to late-night, last-minute moving stress and focus on the new adventure ahead.</p>\r\n<h2 id=\"afterthemove\" style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">After the Move:</h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">9. Make a Maintenance Checklist</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">It’s easy to take for granted everything your apartment complex’s maintenance team took care of. Compile a list right from the start, so these chores aren’t forgotten later.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Some (nonexhaustive) suggestions:</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Monthly</span><br style=\"box-sizing: border-box;\" />• Clean plumbing fixtures<br style=\"box-sizing: border-box;\" />• Clean range hood filter<br style=\"box-sizing: border-box;\" />• Clean garbage disposal<br style=\"box-sizing: border-box;\" />• Inspect fire extinguishers<br style=\"box-sizing: border-box;\" />• Change HVAC filters<br style=\"box-sizing: border-box;\" />• Clean drains</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Bi-Annually</span><br style=\"box-sizing: border-box;\" />• Deep clean entire home<br style=\"box-sizing: border-box;\" />• Inspect water filtration systems<br style=\"box-sizing: border-box;\" />• Run water in seldom used faucets<br style=\"box-sizing: border-box;\" />• Test carbon monoxide and smoke detectors<br style=\"box-sizing: border-box;\" />• Vacuum refrigerator coils</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Annually</span><br style=\"box-sizing: border-box;\" />• Schedule termite inspection<br style=\"box-sizing: border-box;\" />• Check kitchen and bathroom grout and caulking<br style=\"box-sizing: border-box;\" />• Clean patio and porch areas<br style=\"box-sizing: border-box;\" />• Clean out the exterior dryer vent<br style=\"box-sizing: border-box;\" />• Evaluate exterior drainage<br style=\"box-sizing: border-box;\" />• Clean chimney<br style=\"box-sizing: border-box;\" />• Inspect all plumbing<br style=\"box-sizing: border-box;\" />• Inspect home exterior and roof<br style=\"box-sizing: border-box;\" />• Service heating/cooling systems<br style=\"box-sizing: border-box;\" />• Clean gutters</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">10. Change the Locks</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">You never know how many copies of the keys were in circulation before you got them or who had them. Also consider installing a deadbolt or home security system, and have an extra copy of your key made.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">11. Replace your Air Filters</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">It takes about 10 seconds and will not only improve air flow but keep your air system or HVAC from using more energy pumping out lower quality air.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">12. Locate your Fuse Box and Main Water Valve</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Good to know in case of emergencies, or if you’re about to fix a power or water issue and need to turn off the electricity or cut off the water supply.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">13. Fire Protection</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Make sure smoke alarms are installed, and make sure they work. If you have a second or third story, consider purchasing a roll-up ladder.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">14. Meet the Neighbors</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Don’t be afraid to knock on their door and introduce yourself (also, you can’t go wrong with treating them to a batch of freshly-baked cookies). If they’re next-door, ask about property lines, and who owns what. You should already have a survey, but it never hurts to make sure their perception conforms to your survey.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">15. Explore the ‘hood</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Drive around. Find a new favorite restaurant. Stay up to date on the local events and happenings by monitoring local websites or, if you’re old school, subscribing to local newspapers or magazines. It’s the best way to help your new location begin to feel like home.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Now all that’s left to do is put together that housewarming party guest list. Welcome to your new home!</p>\r\n</div>\r\n<div class=\"post__content\" style=\"box-sizing: border-box; margin: 0px auto; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline; max-width: 41.875rem; color: #212121;\"><hr style=\"box-sizing: border-box;\" />\r\n<div class=\"post__author-details\" style=\"box-sizing: border-box; margin: 1.375rem 0px 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; display: flex;\">\r\n<div class=\"post__author-description\" style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: italic; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Marisa is an award-winning marketing professional who loves to write. During the day, she wears her marketing hat in her marketing director role and at night she works as a freelance writer, ghost writing for clients and contributing to publications such as Huffington Post and Social Media Today.</div>\r\n</div>\r\n</div>', '2020-08-29 23:42:30', '2020-08-29 23:42:30', '2020-08-21');
INSERT INTO `news` (`id`, `image`, `title`, `content`, `description`, `created_at`, `updated_at`, `date`) VALUES
(22, 'news\\August2020\\oXcJwXQVOYWASqMEEZen.jpg', 'Should I Hire Professional Movers or Do it Myself?', 'There’s no getting around it: A move of any kind — whether it’s just across town or to the other side of the country — takes time, stress, and money. And before you make your move, you have a lot to figure out. How are you going to handle all the packing? Who’s going to actually move your stuff? And what is all this going to cost you?', '<div class=\"post__content\" style=\"box-sizing: border-box; margin: 0px auto; padding: 0px; border: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline; max-width: 41.875rem; color: #212121; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial;\"> </div>\r\n<div id=\"contentContainer\" class=\"post__content\" style=\"box-sizing: border-box; margin: 0px auto; padding: 0px; border: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline; max-width: 41.875rem; color: #212121; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial;\">\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\"><img src=\"http://localhost/Shopping-FPT/public//storage/news/August2020/home3.jpg\" alt=\"\" width=\"741\" height=\"505\" /></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">There’s no getting around it: A move of any kind — whether it’s just across town or to the other side of the country — takes time, stress, and money. And before you make your move, you have a lot to figure out. How are you going to handle all the packing? Who’s going to actually move your stuff? And what is all this going to cost you?</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\"> </p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">For some, hiring professional movers is the right answer. Offloading the stresses of packing, heavy-lifting, and transporting is well worth the money spent. For others, saving that money through a do-it-yourself move is the way to go. There are also ways to mix-and-match your services to get the help you really need.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">To make the right choice for you and your family, you have to consider a number of factors. <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; transition: color 0.25s ease 0s; color: inherit; text-decoration: underline;\" href=\"https://www.mymove.com/\" target=\"_blank\" rel=\"noopener\">MYMOVE</a> is here with the necessary steps you should take to plan for a smooth move.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 30px; vertical-align: baseline;\">A Step-by-Step Guide To Determining If You Should Hire Professional Movers</strong></h2>\r\n<h3 style=\"box-sizing: border-box; margin: 0px 0px 1.5625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Step 1: Take a look at your timeline</strong></h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">So you got that new job that’s moving you to another state, but the cincher is that you have a month to move. Or maybe you’ve sold your current home and have told the buyers that you could close in the next few weeks.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">Whatever the life circumstance (and we know that there are a lot of them surrounding your move), time is one of your biggest scarcities. If you have the time to organize, pack, load, and transport your belongings, you may be able to move yourself. But if you either don’t have the time or, quite frankly, don’t want to take the time to move, you should consider hiring professionals.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">Sit down with your family and be honest with yourselves. Discuss the time it would take to move and compare it to the time life allows. That will help determine if hiring movers is the way to go.</p>\r\n<h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Step 2: Consider the different moving approaches</strong></h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">Today, there are more options than ever before when it comes to hiring professional movers. But engaging professional help with your move does not have to be an all-or-nothing approach. There are ways to cut down on the stress while also being conscious of your wallet through <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; transition: color 0.25s ease 0s; color: inherit; text-decoration: underline;\" href=\"https://www.mymove.com/pro-services/guides/hybrid-moving/\" target=\"_blank\" rel=\"noopener\">various hybrid moving techniques</a>.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">In order to make the best decision based on your moving needs, you have to know what kind of services are out there — starting with these four broad approaches:</p>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 0.9375rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Do a DIY move:</strong></h4>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">This approach is for those who don’t have room in their moving budget to hire professional movers or are just natural DIY-ers. Choosing to move yourself can save you money, but will require extra time, effort, and preparation. You will be in charge of buying moving supplies (like boxes, packing paper, tape, etc.), renting a moving truck, and enlisting help with heavy lifting.</p>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 0.9375rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Hire self-pack movers</strong></h4>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">If you feel like you can handle the packing but don’t want to be in charge of transport and heavy lifting, hiring self-pack movers is a good choice for you. You will be in charge of buying moving supplies and packing your boxes, but can <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; transition: color 0.25s ease 0s; color: inherit; text-decoration: underline;\" href=\"https://www.mymove.com/pro-services/guides/furniture-movers/\" target=\"_blank\" rel=\"noopener\">hire furniture movers</a> to take care of the rest.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">Another choice within the self-pack approach: Renting a moving container. Companies like <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; transition: color 0.25s ease 0s; color: inherit; text-decoration: underline;\" href=\"https://www.upack.com/lp/gray-quote?refnum=COMMJUNC&AID=12188931&PID=5941215&SID=f1932016-22f7-4d0c-8862-78e9b977d17d&cjevent=3d6ca47adfc311e9830600bd0a24060d\" target=\"_blank\" rel=\"noopener\">U-Pack Moving</a> or <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; transition: color 0.25s ease 0s; color: inherit; text-decoration: underline;\" href=\"https://www.pods.com/?eadid=phone::8884959789&kpid=GOOGLE_1018753663_50466109579_343949805538_aud-411212875846:kwd-296672125088_c&ksprofid=3123&ksaffcode=kw1006731&ksdevice=c&utm_content=residential&gclid=Cj0KCQjwoKzsBRC5ARIsAITcwXE1OACx7GlAnl6ZCZdqEPFEeOOFlkPHlvCKNoCP6gjcnBGjlhlm2GkaAhnSEALw_wcB\" target=\"_blank\" rel=\"noopener\">Pods</a> bring you a moving container that you fill yourself. The company then puts the container on the truck and moves it to your location — where you can either unpack it or pay for it to be stored. This approach is best if you feel like you can handle the heavy lifting yourself.</p>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 0.9375rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Pay for professional packers, but move yourself</strong></h4>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">If it’s the packing that stresses you out most, offload the task to a professional. Professional packers are trained to treat your belongings with care, using the right materials to ensure that your things get to your new location safely. Hiring packers can save you the midnight-box packing and labeling that can cause a lot of stress during the move. You can look for professional packers online through services like <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; transition: color 0.25s ease 0s; color: inherit; text-decoration: underline;\" href=\"https://www.thumbtack.com/?utm_medium=cpc&utm_source=cma-google&utm_campaign=s-c-1664689605-59670161890-321162491203-aud-454447068218%3Akwd-301400290465-e&gclsrc=aw.ds&~campaign_id=1664689605&%243p=a_google_adwords&%24fallback_url=https%3A%2F%2Fwww.thumbtack.com%3Futm_medium%3Dcpc%26utm_source%3Dcma-google%26utm_campaign%3Ds-c-1664689605-59670161890-321162491203-aud-454447068218%3Akwd-301400290465-e---9009976-g---1t1%26gclsrc%3Daw.ds%26&redirect_url=https%3A%2F%2Fthumbtack.app.link%2Fconsumer%2Fexplore&feature=paid%20advertising&gclid=Cj0KCQjwoKzsBRC5ARIsAITcwXGp0-D2rr-_9oThZfJ4wtimyrhK_mRn0NZkpC4p75YWHn-nUOmanTUaAoU9EALw_wcB&_branch_match_id=667824305411231684\" target=\"_blank\" rel=\"noopener\">Thumbtack</a>.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">This is a good approach for those who don’t have the time to devote to the tedium of packing, or for those who have valuable items that should be treated with professional care. But choosing to just hire a packing service means that the heavy lifting come Moving Day is left up to you.</p>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 0.9375rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Hire full-service movers</strong></h4>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">If you’re short on time or just want to cut down on the stress, hiring a moving company to do everything for you could be worth the money. From bringing the supplies to packing, lifting, and transporting, you can delegate the whole process to the pros.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">If you choose to engage professional help with your move, understand what you’re paying for. Make sure you understand every moving service <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; transition: color 0.25s ease 0s; color: inherit; text-decoration: underline;\" href=\"https://www.mymove.com/moving/guides/moving-cost-estimate-decoded/\" target=\"_blank\" rel=\"noopener\">included in your quote</a>. There are a lot of <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; transition: color 0.25s ease 0s; color: inherit; text-decoration: underline;\" href=\"https://www.mymove.com/pro-services/guides/questions-ask-moving-company/\" target=\"_blank\" rel=\"noopener\">questions you should ask a moving company</a> before you hire them, so make sure to shop around and compare services.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">Most full-service movers include damage coverage, in case your belongings were to break during packing or transport. This offers a great safety net that isn’t included when you do a DIY move. Just make sure to double-check damage coverage policies with the moving company before hiring them.</p>\r\n<h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Step 3: Examine your budget </strong></h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">Next to time, money is the biggest factor when deciding to hire movers. Whether you decide to hire a full-service moving company or choose to stick with one of the hybrid approaches mentioned above, those services will have to be factored into your moving budget.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">As you sit down to research moving services and crunch the numbers, there are costs to consider:</p>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 0.9375rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Understand the starting prices: </strong></h4>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">Costs of moving companies depend on a number of factors, like distance (is it a local move or an interstate move?), your move date, the number of boxes and pieces of furniture and/or rooms, and how the company charges — do they have a set price, or do they charge by the hour or weight?</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">When researching moving companies, MYMOVE recommends that you gather three to four different estimates. Just to give you an idea of pricing, we researched a few of the top moving companies and gathered estimates for a 100-mile, 500-mile, and 1,000-mile move:</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">Here’s the range for the base moving price, which includes loading the moving truck, driving, and unpacking:</p>\r\n<div class=\"table-container\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; overflow-x: scroll;\">\r\n<div class=\"table-container\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; overflow-x: scroll;\">\r\n<table style=\"box-sizing: border-box; margin: 0px 0px 3.125rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; border-spacing: 0px; border-collapse: collapse; width: 670px;\">\r\n<tbody style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">\r\n<tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\"> </strong></td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline; transition: color 0.25s ease 0s; color: #4a62e8; text-decoration: underline;\" href=\"https://www.wheatonworldwide.com/\" target=\"_blank\" rel=\"noopener\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">Wheaton World Wide Moving</strong></a></td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline; transition: color 0.25s ease 0s; color: #4a62e8; text-decoration: underline;\" href=\"https://www.unitedvanlines.com/moving-quote-app/?gclid=CjwKCAjwldHsBRAoEiwAd0JybSBpmv5C_UERG3h-5yit6wdNFd5akItnWw2IKPKPI0UNuJkiWRorrhoCuWcQAvD_BwE#index\" target=\"_blank\" rel=\"noopener\">United Van Lines</a> and <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline; transition: color 0.25s ease 0s; color: #4a62e8; text-decoration: underline;\" href=\"https://www.mayflower.com/moving-quote-app/?gclid=CjwKCAjwldHsBRAoEiwAd0JybdUMaLa0DUbjy4y1Fy4WL99K90BgOHzw-wvEnEbsQ5CpR7D5dSqhWhoCjwIQAvD_BwE#index\" target=\"_blank\" rel=\"noopener\">Mayflower</a></strong></td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline; transition: color 0.25s ease 0s; color: #4a62e8; text-decoration: underline;\" href=\"https://www.getbellhops.com/?utm_source=reviews&utm_medium=referral&utm_campaign=summer2019\" target=\"_blank\" rel=\"noopener\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">Bellhops</strong></a></td>\r\n</tr>\r\n<tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">100 miles</strong></td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">$3,212.39 to $3,819.15</strong></td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">$3,800</strong></td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">$1,800</strong></td>\r\n</tr>\r\n<tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">500 miles</strong></td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">$4,080.38 to $4,872.82</strong></td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">$4,800</strong></td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">$3,000</strong></td>\r\n</tr>\r\n<tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">1,000 miles</strong></td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">$5,311.37 to $6,364.08</strong></td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">$5,250</strong></td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">$4,500</strong></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\"><em style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: italic; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Please note: These quotes are for a three-bedroom house and are merely estimates. Costs are subject to change.</em></p>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 0.9375rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Calculate the moving cost add-ons:</strong></h4>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">Most moving companies also include optional services like packing. Electing these additional services will require an additional fee.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">Both Wheaton World Wide Moving and United Van Lines offer partial and full packing services.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">Here’s the price range for packing services for a three-bedroom house:</p>\r\n<div class=\"table-container\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; overflow-x: scroll;\">\r\n<div class=\"table-container\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; overflow-x: scroll;\">\r\n<table style=\"box-sizing: border-box; margin: 0px 0px 3.125rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; border-spacing: 0px; border-collapse: collapse; width: 670px;\">\r\n<tbody style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">\r\n<tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"> </td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">Wheaton World Wide Moving</strong></td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">United Van Lines</strong></td>\r\n</tr>\r\n<tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">100 miles</strong></td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">Full:</strong> <strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">$1,903.44 to $2,379.07</strong>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333;\"> </p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">Partial:</strong> <strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">$1,142.06 to $1,427.44</strong></p>\r\n</td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">Full: $2,600</strong>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333;\"> </p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">Partial: $1,300</strong></p>\r\n</td>\r\n</tr>\r\n<tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">500 miles</strong></td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">Full:</strong> <strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">$1,903.44 to $2,379.07</strong>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333;\"> </p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">Partial:</strong> <strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">$1,142.06 to $1,427.44</strong></p>\r\n</td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">Full: $2,600</strong>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333;\"> </p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">Partial: $1,300</strong></p>\r\n</td>\r\n</tr>\r\n<tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">1,000 miles</strong></td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">Full:</strong> <strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">$1,903.44 to $2,379.07</strong>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333;\"> </p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">Partial:</strong> <strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">$1,142.06 to $1,427.44</strong></p>\r\n</td>\r\n<td style=\"box-sizing: border-box; margin: 0px; padding: 0.9375rem 1.875rem; border: 1px solid #cccccc; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333; text-align: center;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">Full: $2,650</strong>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333;\"> </p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 1.5rem; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 1rem; vertical-align: baseline; color: #333333;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 16px; vertical-align: baseline;\">Partial: $1,350</strong></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">Most companies also offer coverage for lost or damaged items. Wheaton World Wide Moving offered replacement valuation with estimated costs ranging from <strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">$570 to $660</strong>. United Van Lines included full valuation protection in their estimate, offering valuation coverage for up to $60,000 for <strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">$480</strong>.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\"><em style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: italic; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Please note: These numbers are estimates and are subject to change.</em></p>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 0.9375rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Consider the costs associated with a DIY move</strong></h4>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">While doing it yourself is often cheaper, there are costs you still have to consider. Before you decide to forgo professional help, make a list of everything you will need to prepare for Moving Day.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Here are some list items to consider:</strong></p>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; list-style: disc;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Moving boxes</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Packing tape</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Packing paper</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; transition: color 0.25s ease 0s; color: inherit; text-decoration: underline;\" href=\"https://www.mymove.com/pro-services/guides/find-best-moving-truck-move/\" target=\"_blank\" rel=\"noopener\">Rental moving truck</a></li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Rental moving equipment (like furniture pads and a dolly)</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Moving truck insurance (typically an added daily fee)</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Gas for your moving truck</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Pizza (or other food) for your friends and family. You’ve got to say thank you somehow, right?</li>\r\n</ul>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">These costs individually may seem small, but they do add up. There’s no getting by the expenses associated with moving. You have to decide what the work and effort are worth to you.</p>\r\n<h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Step 4: Make your home inventory</strong></h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">There’s a big difference between moving a three-bedroom house and a one-bedroom apartment. Most moving companies will ask you about the size of your house because that will help them estimate how much stuff they’d move.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">To help determine if hiring movers is worth it, you need to take a look around and take note of your belongings. Don’t just roughly estimate the number of things you own, <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; transition: color 0.25s ease 0s; color: inherit; text-decoration: underline;\" href=\"https://www.mymove.com/moving/guides/how-to-make-packing-list/\" target=\"_blank\" rel=\"noopener\">make a home inventory</a>.</p>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 0.9375rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Clearly listing your belongings serves multiple purposes:</strong></h4>\r\n<ol style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; list-style: decimal;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">It will help you determine if you and some friends can take care of the packing and heavy lifting yourselves. If you have a ton to move, we recommend saving your back and calling the pros.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">A home inventory will help you keep track of your valuables during the move. If anything gets lost or damaged during the move, you will have proof it’s covered under your <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; transition: color 0.25s ease 0s; color: inherit; text-decoration: underline;\" href=\"https://www.mymove.com/pro-services/guides/what-is-moving-insurance/\" target=\"_blank\" rel=\"noopener\">valuation coverage</a>.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">This list will also help when it’s time to secure <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; transition: color 0.25s ease 0s; color: inherit; text-decoration: underline;\" href=\"https://www.mymove.com/buying-selling/guides/home-insurance/\" target=\"_blank\" rel=\"noopener\">homeowners or renter’s insurance</a>.</li>\r\n</ol>\r\n<h3 style=\"box-sizing: border-box; margin: 0px 0px 1.5625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Step 5: Be honest about your physical capacity</strong></h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">Moving can take a physical toll. Between the bending, stretching, and heavy lifting, there’s a chance of hurting your back or pulling a muscle. Lifting something incorrectly could result in a painful injury.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">Don’t overestimate your physical capacity when planning for a move. You don’t want to have rented a moving truck only to realize you can’t lift that heavy washer or bulky armoire (even with the help of a dolly!).</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">Professional movers have the tools and training to keep themselves and your belongings safe. If you think that the job is too big (and too heavy!) for you and your family, consider hiring movers.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">But if you do plan on doing the job yourself, follow MYMOVE’s tips to <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline; transition: color 0.25s ease 0s; color: inherit; text-decoration: underline;\" href=\"https://www.mymove.com/moving/guides/avoid-back-injuries-moving/\" target=\"_blank\" rel=\"noopener\">safe-guarding your back during the move</a>.</p>\r\n<h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Step 6: Enlist free help (and don’t be disappointed if there’s none to be found)</strong></h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">In most, if not all, cases, moving is more than a one-man job. You will need help, so don’t be afraid to ask for it. Call on your friends and family to help before and on Moving Day. Promise them that you’ll pay them in beer and pizza (or other food, if they’re gluten-intolerant).</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">But you might be moving on a weekday. Or you could be moving to a place where you don’t know anyone yet. Ask around and see who’s available to lend a helping hand, but be understanding if no one is free. You may have to bring in professional reinforcements.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 30px; vertical-align: baseline;\">Frequently Asked Questions</strong></h2>\r\n<h3 style=\"box-sizing: border-box; margin: -1.5625rem 0px 1.5625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">When is the best time to move?</strong></h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">That depends on whether you’re moving alone to a new city or moving with a family, especially if you have kids. Many families don’t want to disrupt their children’s education in the middle of the school year, so they wait until the summer. However, that makes May through September the busiest time of the year to move and it’s often harder – and sometimes more expensive – to move then. Ultimately, you have to decide what’s the best time for you and your family.</p>\r\n<h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">How soon should I begin collecting free moving quotes?</strong></h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">You should start contacting moving companies at least six weeks before a relocation. That’s true even if you just want to rent a truck for a day. You want to get an early start to ensure you have time to review the estimates carefully and choose the right moving service.</p>\r\n<h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Should I buy insurance when I rent a truck for a day?</strong></h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">Even though it may seem like an unnecessary expense, it’s smart to pay for insurance on your rented moving truck. Most moving trucks are not covered by your car insurance and you could get penalized for any scratches or dents the vehicle incurs during the move.</p>\r\n<h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">Should I buy movers insurance?</strong></h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">Probably. If you have homeowners insurance, your possessions may be covered when they’re in transit — but you have to check with your insurance provider. As previously stated, most moving companies have valuation coverage that can be purchased at an additional cost. This should cover replacements for any items that are damaged or lost while in transit.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: bold; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\"><strong style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 30px; vertical-align: baseline;\">The Bottom Line</strong></h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">There’s no right or wrong when determining if you should hire professional movers. It all depends on your individual circumstances.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\">If you have the time and energy that’s required of you in a DIY move, you could save some money. But if you want to offload some stress and can fit it into your moving budget, research moving services around you. A hired helping hand could be the difference between a stressful and smooth move.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\"><em style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: italic; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-size: 21px; vertical-align: baseline;\">This post was originally published on May 10, 2018. Updated on October 2, 2019.</em></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 400; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline;\"> </p>\r\n</div>', '2020-08-30 00:11:00', '2020-08-30 00:24:23', '2020-08-28');
INSERT INTO `news` (`id`, `image`, `title`, `content`, `description`, `created_at`, `updated_at`, `date`) VALUES
(23, 'news\\August2020\\GjF9jBivJ7gzRc9WIxKQ.jpg', 'The Best Dorm Room Organization and Storage Hacks', 'Moving from your home’s bedroom into a small dorm room can be a major adjustment. The key to “living small” is all about dorm room organization. Avoid the dreaded small-space clutter with these must-know storage ideas.', '<p> <img src=\"http://localhost/Shopping-FPT/public//storage/news/August2020/apartment-1851201_1920.jpg\" alt=\"\" width=\"740\" height=\"491\" /></p>\r\n<div id=\"contentContainer\" class=\"post__content\" style=\"box-sizing: border-box; margin: 0px auto; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline; max-width: 41.875rem; color: #212121;\">\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Moving from your home’s bedroom into a small dorm room can be a major adjustment. The key to “living small” is all about dorm room organization. Avoid the dreaded small-space clutter with these must-know storage ideas.</p>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Keep your cool with an over the fridge organizer:</span> An <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/DormCo-Cookin-Caddy-Storage-Organizer/dp/B00XI8VWYO/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=29f45588816554e5e65a834ecc7cba57&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">over the fridge organizer</a> not only saves space, but keeps your utensils and plates in order. To DIY, pick a fun patterned fabric, and <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=over%20the%20fridge%20dorm%20organizer&rs=typed&term_meta%5b%5d=over%20the%20fridge%20dorm%20organizer%7Ctyped\" target=\"_blank\" rel=\"noopener\">create a customized organizer</a> for your mini-fridge.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Have your supplies take a seat:</span> You can only fit so much on your desk. An <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Pacon-Pocket-Chart-Chair-Storage/dp/B00IFE2UPG/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=76f4dfb548b744b9661929d1a9e24bbb&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">over the chair organizer</a> is the perfect solution. Store extra notebooks, highlighters, and <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=dorm%20over%20the%20chair%20organizer&rs=typed&term_meta%5b%5d=dorm%20over%20the%20chair%20organizer%7Ctyped\" target=\"_blank\" rel=\"noopener\">other items you need access to</a> as you’re studying the night away.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Go vertical:</span> Take advantage of your dorm room’s height. Add an <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Decorative-Shelf-Over-Shelving-Unit/dp/B010E9OA7A/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=307a4f1feb3f8028215a70a8be963f2a&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">over the bed shelving</a> unit to keep items in order and <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=over%20the%20bed%20shelving%20unit%20dorm&rs=typed&term_meta%5b%5d=over%20the%20bed%20shelving%20unit%20dorm%7Ctyped\" target=\"_blank\" rel=\"noopener\">easy to access</a>.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Keep it close with a bedside caddy:</span> This genius <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Joywell-Bedside-Storage-Organizer-Magazine/dp/B07VD5YRSH/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=38a9289a820e95305b1d6ee08d25f59d&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">dorm room organization hack</a> is tiny but mighty with pockets to store your water bottle, phone, and laptop. No assembly required, just slide the <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=bedside%20caddy%20dorm&rs=typed&term_meta%5b%5d=bedside%7Ctyped&term_meta%5b%5d=caddy%7Ctyped&term_meta%5b%5d=dorm%7Ctyped\" target=\"_blank\" rel=\"noopener\">bedside caddy</a> between your mattress and bed frame.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Make laundry day easy with a collapsible cart:</span> Keep your laundry off the floor in this <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Caroeas-Laundry-Collapsible-Rolling-Leather/dp/B07F32RB3D/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=aa2cdfe31ee5d65581e8b7b7e731fbbe&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">rolling laundry cart</a> that can collapse when not in use. <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=dorm%20rolling%20laundry%20cart%20collapsible&rs=typed&term_meta%5b%5d=dorm%7Ctyped&term_meta%5b%5d=rolling%7Ctyped&term_meta%5b%5d=laundry%7Ctyped&term_meta%5b%5d=cart%7Ctyped&term_meta%5b%5d=collapsible%7Ctyped\" target=\"_blank\" rel=\"noopener\">Easily wheel</a> your clothes back and forth to the laundry room.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Combine seating and storage:</span> Add this <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Sorbus-Storage-Ottoman-Bench-Contemporary/dp/B06XT614VF/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=f4b367d9e799e94e359c3b19bf8f1fb8&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">storage ottoman</a> to your dorm storage ideas list. Use it for <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=dorm%20storage%20ottoman&rs=typed&term_meta%5b%5d=dorm%7Ctyped&term_meta%5b%5d=storage%7Ctyped&term_meta%5b%5d=ottoman%7Ctyped\" target=\"_blank\" rel=\"noopener\">seating and to tuck away</a> a throw blanket or your secret snack stash.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Replace a basic nightstand with a storage nightstand:</span> Put your bedside table to work with a <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/dp/B082DS3473/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=00e8d438f256debb3ef7840a0761fb45&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">storage tower nightstand</a>. The <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=storage%20cart%20nightstand%20dorm&rs=typed&term_meta%5b%5d=storage%7Ctyped&term_meta%5b%5d=cart%7Ctyped&term_meta%5b%5d=nightstand%7Ctyped&term_meta%5b%5d=dorm%7Ctyped\" target=\"_blank\" rel=\"noopener\">extra drawers</a> add much-needed space, while the solid top is a sturdy spot for your bedside lamp.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Hang it up with collapsible hangers:</span> Dorm room organization includes your wardrobe or closet. Hang as many clothes as possible with space-saving <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/HOUSE-DAY-Wardrobe-Clothing-Oragnizer/dp/B01N1LUHKX/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=d28d6a1f83d9d0b7e8b632e8765099cb&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">collapsible hangers</a>. Keep your <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=dorm%20collapsible%20hangers&rs=typed&term_meta%5b%5d=dorm%7Ctyped&term_meta%5b%5d=collapsible%7Ctyped&term_meta%5b%5d=hangers%7Ctyped\" target=\"_blank\" rel=\"noopener\">clothes</a> wrinkle-free and neat without taking up a ton of space.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Rise (up) and shine with bed risers:</span> Under the bed storage is vital and <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Home-Intuition-Adjustable-Risers-Furniture/dp/B079Y7G1D4/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=f36a1bb53d1332ba839aee1e2b980740&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">bed risers</a> create instant extra space. Adjust your riser based on your needs, whether it’s a few inches off the ground or maximum height for a <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?rs=ac&len=2&q=dorm%20bed%20risers&eq=dorm%20bed%20r&etslf=5874&term_meta%5b%5d=dorm%7Cautocomplete%7C0&term_meta%5b%5d=bed%7Cautocomplete%7C0&term_meta%5b%5d=risers%7Cautocomplete%7C0\" target=\"_blank\" rel=\"noopener\">loft look</a>.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Never forget your soap again:</span> Lugging toiletries to the shower doesn’t need to be a hassle. Keep your shampoo, conditioner, razor, and other necessities stored in a <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Toiletry-Hanging-Handles-College-Essentials/dp/B086V5RBFL/\" target=\"_blank\" rel=\"noopener\">mesh shower caddy</a>. The <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=dorm%20shower%20caddy%20mesh&rs=typed&term_meta%5b%5d=dorm%7Ctyped&term_meta%5b%5d=shower%7Ctyped&term_meta%5b%5d=caddy%7Ctyped&term_meta%5b%5d=mesh%7Ctyped\" target=\"_blank\" rel=\"noopener\">quick-drying mesh</a> leaves the water in the shower, not on your dorm floor.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Create your own in-dorm food station:</span> Dorm room food and snacks are a necessity, especially if the dining hall is across campus. Keep your food items contained with a dedicated <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/CAXXA-3-Tier-Rolling-Storage-Organizer/dp/B07JJMYQ8G/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=e2fbf568afcf3705f39c5c1ef12a67bd&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">food station</a>. The wheels make it easy to <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=dorm%20rolling%20cart%20food%20station&rs=typed&term_meta%5b%5d=dorm%7Ctyped&term_meta%5b%5d=rolling%7Ctyped&term_meta%5b%5d=cart%7Ctyped&term_meta%5b%5d=food%7Ctyped&term_meta%5b%5d=station%7Ctyped\" target=\"_blank\" rel=\"noopener\">move it out of the way</a> when friends come over to hang.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Over the door storage:</span> An <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Simple-Houseware-Pockets-Hanging-Organizer/dp/B07CG2R9ST/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=2280d85da4193fc5d97202efce76c92c&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">over the door shoe organizer</a> is a perfect way to keep your kicks in order, but it’s also a fantastic option for storing accessories, makeup, and first aid supplies. The <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=dorm%20over%20the%20door%20organizer&rs=typed&term_meta%5b%5d=dorm%20over%20the%20door%20organizer%7Ctyped\" target=\"_blank\" rel=\"noopener\">storage options</a> are unlimited, so get creative.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Hang it ALL with Command hooks:</span> Command hooks are the ultimate in dorm room organization. Grab a <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Command-General-Purpose-Variety-17231-ES/dp/B07712H557/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=20641691c3ae2830b24956b5539aa504&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">Command hook variety pack</a> to hang your items without damaging the walls. From sunglasses and purses to plants and fairy lights, be sure these <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=dorm%20room%20command%20hook&rs=typed&term_meta%5b%5d=dorm%7Ctyped&term_meta%5b%5d=room%7Ctyped&term_meta%5b%5d=command%7Ctyped&term_meta%5b%5d=hook%7Ctyped\" target=\"_blank\" rel=\"noopener\">hooks</a> are on your packing list.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">See the light and stay charged up with a lamp/charger station duo:</span> Light up the night with a <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Charging-Lighting-Brightness-Protection-Foldable/dp/B07JF85QHZ/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=59dc11df9b111f56af6e9669c25e44ff&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">high-tech LED lamp</a> that includes USB ports and power sockets. Conveniently <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=charging%20station%20desk%20lamp&rs=typed&term_meta%5b%5d=charging%7Ctyped&term_meta%5b%5d=station%7Ctyped&term_meta%5b%5d=desk%7Ctyped&term_meta%5b%5d=lamp%7Ctyped\" target=\"_blank\" rel=\"noopener\">plug in your laptop and charge your phone</a> without struggling to find the wall outlet.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Avoid the junk drawer with a desk organizer:</span> Supplies can easily get lost in the shuffle. A <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/SimpleHouseware-Organizer-Sliding-Stacking-Sections/dp/B06ZZY3YBV/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=57a018acc359610a6b7e7f1afa9c44f2&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">desktop organizer</a> will keep your homework gear all in one place. Keep it stocked with <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=dorm%20desktop%20organizer&rs=typed&term_meta%5b%5d=dorm%7Ctyped&term_meta%5b%5d=desktop%7Ctyped&term_meta%5b%5d=organizer%7Ctyped\" target=\"_blank\" rel=\"noopener\">whatever you need</a> to power through your papers.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Stay dry with a collapsible laundry rack:</span> You’ve taken a shower and now have a damp towel to contend with. Keep a <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/AmazonBasics-Foldable-Drying-Rack-White/dp/B00H7P1GPO/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=49e5d0854d3ef03cdf41795cc72e8ea1&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">collapsible laundry rack</a> to <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=dorm%20collapsible%20laundry%20rack&rs=typed&term_meta%5b%5d=dorm%7Ctyped&term_meta%5b%5d=collapsible%7Ctyped&term_meta%5b%5d=laundry%7Ctyped&term_meta%5b%5d=rack%7Ctyped\" target=\"_blank\" rel=\"noopener\">dry your wet towels</a> or jacket that got soaked in the rainy walk from class.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Keep outdoor accessories accessible:</span> Keep your <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Hidecor-Hanger-Organizer-Stainless-Storage/dp/B07FVLSJ8Z/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=5c86c974c87deab99e8cca1f778bdccf&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">scarves, belts, and baseball hats</a> from taking up too much space with a streamlined closet storage hook. Get creative with your <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=dorm%20scarf%20hanger&rs=typed&term_meta%5b%5d=dorm%7Ctyped&term_meta%5b%5d=scarf%7Ctyped&term_meta%5b%5d=hanger%7Ctyped\" target=\"_blank\" rel=\"noopener\">dorm room organization</a> <em style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">and </em>maximize efficiency by keeping your accessories near your door or closet.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Tame clothing chaos with drawer organizers:</span> If your drawers are in a sad state, <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Simple-Houseware-Underwear-Organizer-Divider/dp/B01DYXHI0E/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=d184b437aa03d2b76b35c8e00949b070&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">clothing drawer organizers</a> will get you back on track. Easily pop them <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=dorm%20clothing%20drawer%20organizers&rs=typed&term_meta%5b%5d=dorm%7Ctyped&term_meta%5b%5d=clothing%7Ctyped&term_meta%5b%5d=drawer%7Ctyped&term_meta%5b%5d=organizers%7Ctyped\" target=\"_blank\" rel=\"noopener\">in your drawers</a> to keep everything under control.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Access under your bed with ease:</span> Every inch of space counts, so don’t forget beneath your dorm bed. Keep items easily accessible with <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Plastic-Underbed-Storage-Stackable-Latching/dp/B06ZZY2M92/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=201377f41419f080dd2273a6ec47859e&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">rolling storage with lids</a>. Store items you don’t want to keep out in the open or don’t need on a daily basis. The lids keep the dust away, while <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=under%20the%20bed%20wheeled%20storage%20containers&rs=typed&term_meta%5b%5d=under%20the%20bed%20wheeled%20storage%20containers%7Ctyped\" target=\"_blank\" rel=\"noopener\">your contents</a> are protected.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Expand your closet with an adjustable closet rod:</span> Double a limited closet space by <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/SimpleHouseware-Adjustable-Closet-Hanging-Chrome/dp/B01K07MY1K/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=108720be363bb3434a758e37c924e0c5&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">adding another rod</a> to create top and bottom hanging stations. <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=double%20hanging%20closet%20rod%20for%20dorm&rs=typed&term_meta%5b%5d=double%20hanging%20closet%20rod%20for%20dorm%7Ctyped\" target=\"_blank\" rel=\"noopener\">Closet “doublers”</a> are a great way to avoid overcramming your dorm room drawers.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Stick on wall caddies for easy access:</span> <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/OKOMATCH-Bedside-Shelf-Organizer-Material/dp/B07WJSJSRW/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=d0d864b99946250457ddb949b1f1daf8&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">Stick-on storage caddies</a> are perfect at your bedside or right inside your dorm door. Stow sunglasses, lanyards, keys, or headphones <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=wall%20mounted%20no%20stick%20damage&rs=typed&term_meta%5b%5d=wall%7Ctyped&term_meta%5b%5d=mounted%7Ctyped&term_meta%5b%5d=no%7Ctyped&term_meta%5b%5d=stick%7Ctyped&term_meta%5b%5d=damage%7Ctyped\" target=\"_blank\" rel=\"noopener\">with ease</a>.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Stay fresh with a style station organizer:</span> Makeup can accumulate quickly (there are never too many lip glosses). Keep skincare and makeup at your fingertips with a <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/DreamGenius-Organizer-360-Degree-Adjustable-Multi-Function/dp/B074QGYDT4/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=fd457f9b9c2c43aeda661a56060dfde5&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">rotating cosmetic storage organizer</a>. Add <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=cosmetic%20storage%20dorm%20ideas&rs=typed&term_meta%5b%5d=cosmetic%7Ctyped&term_meta%5b%5d=storage%7Ctyped&term_meta%5b%5d=dorm%7Ctyped&term_meta%5b%5d=ideas%7Ctyped\" target=\"_blank\" rel=\"noopener\">whatever you need</a> to keep you looking your Friday night best.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Level up with an over the desk hutch:</span> Your school desk may not have shelving, so keep your dorm room organization on point with an <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/DormCo-College-Cube-Bookshelf-Beech/dp/B00J5JTAMG/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=607d04cbc40a7505cddbea49bf626919&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">over the desk hutch</a>. Keep textbooks, binders, and other study essentials <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=dorm%20over%20the%20desk%20hutch&rs=typed&term_meta%5b%5d=dorm%20over%20the%20desk%20hutch%7Ctyped\" target=\"_blank\" rel=\"noopener\">out of the way</a>.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Get the message with a memo station:</span> A <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/dp/B07V87ZT5J/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=ec363ad8675f25c84205fd74c115845a&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">dry erase and cork board combo</a> is a great way to stay connected with your dorm mate without all the post-it notes. Use the corkboard to keep coupons or event flyers, or add hooks to hold keys and IDs. Get creative and customize your <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?rs=ac&len=2&q=dorm%20dry%20erase%20board%20ideas&eq=dorm%20dry%20erase&etslf=5970&term_meta%5b%5d=dorm%7Cautocomplete%7C1&term_meta%5b%5d=dry%7Cautocomplete%7C1&term_meta%5b%5d=erase%7Cautocomplete%7C1&term_meta%5b%5d=board%7Cautocomplete%7C1&term_meta%5b%5d=ideas%7Cautocomplete%7C1\" target=\"_blank\" rel=\"noopener\">memo station</a>.</li>\r\n</ul>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Make taking out the trash easy:</span> Keep your <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/simplehuman-Stainless-Bathroom-Profile-Brushed/dp/B0015YJ9WA/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=312500586436c5fdcfd12f9face38fce&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener\">dorm room trash can</a> from getting funky with a lidded trash can. Look for one that has an inner bucket. This will make <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.pinterest.com/search/pins/?q=dorm%20room%20trash%20can&rs=typed&term_meta%5b%5d=dorm%7Ctyped&term_meta%5b%5d=room%7Ctyped&term_meta%5b%5d=trash%7Ctyped&term_meta%5b%5d=can%7Ctyped\" target=\"_blank\" rel=\"noopener\">emptying the trash</a> easy.</li>\r\n</ul>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">The bottom line</h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Keeping your dorm organized will be a breeze when you use these dorm room storage and organization tips. Remember to look for items that are multi-purpose. And as tempting as it may be, don’t overpack.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">Frequently asked questions</h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">How do you store snacks in a dorm room? </span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Keep snacks in one area with a dedicated food storage cart.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">What are some dorm room essentials? </span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Under and above the bed storage, collapsible closet hangers, a desk organizer, and an over the fridge organizer will keep your dorm room clean and uncluttered.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">How do you maximize storage in a dorm room?</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Think vertically. Your dorm may be narrow and small but adding shelving above your bed or a hutch on your desk will create more areas to store items efficiently. Don’t forget under your bed; rolling storage bins keep items contained while out of sight.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">How do I organize my dorm room? </span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Plan dorm room organization around the layout of the space. Check with your housing advisor on the room dimensions and any furniture included. Think about what you’ll be bringing to college and how to best keep it organized.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"> </p>\r\n</div>\r\n<div class=\"post__content\" style=\"box-sizing: border-box; margin: 0px auto; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline; max-width: 41.875rem; color: #212121;\"><hr style=\"box-sizing: border-box;\" />\r\n<div class=\"post__author-details\" style=\"box-sizing: border-box; margin: 1.375rem 0px 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; display: flex;\">\r\n<div class=\"post__author-description\" style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: italic; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><NAME> is a New Jersey-based writer and reporter that specializes on all things home. She\'s always on the search for the latest design trends to make a house a home. When she\'s not writing, Maureen enjoys tending to her vegetable garden.</div>\r\n</div>\r\n</div>', '2020-08-30 00:39:00', '2020-08-30 00:40:12', '2020-08-29');
INSERT INTO `news` (`id`, `image`, `title`, `content`, `description`, `created_at`, `updated_at`, `date`) VALUES
(24, 'news\\August2020\\fC1ldcgJOQ0gO1wvlsAn.jpg', 'How to Paint a Garage Door in 8 Easy Steps', 'A garage door is an extension of your home. You want it to flow with the rest of your exterior, especially if the garage connects to the main portion of your house. Thankfully, painting a garage door can be an easy DIY job.', '<p> <img src=\"http://localhost/Shopping-FPT/public//storage/news/August2020/building-1080592_1920.jpg\" alt=\"\" width=\"741\" height=\"493\" /></p>\r\n<div id=\"contentContainer\" class=\"post__content\" style=\"box-sizing: border-box; margin: 0px auto; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline; max-width: 41.875rem; color: #212121;\">\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">A garage door is an extension of your home. You want it to flow with the rest of your exterior, especially if the garage connects to the main portion of your house. Thankfully, painting a garage door can be an easy DIY job.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Finding the right garage door paint, prepping your garage door, and making the final result look great is all within reach — even if you’re not a professional. If you are a new homeowner, painting your garage door can make your home feel more like you. Follow the guide below to learn how to paint a garage door.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">8 steps to painting a garage door</span></h2>\r\n<h3 style=\"box-sizing: border-box; margin: 0px 0px 1.5625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Step 1: Pick your garage door paint</span></h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Most home improvement stores sell paint. For a garage door, look for paint that’s formulated for exterior use to hold up against the elements. <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/s?k=Acrylic+latex+exterior+house+paint&ref=nb_sb_noss_2\" target=\"_blank\" rel=\"noopener\">Acrylic latex exterior house paint</a> works well. Be sure to shop around — pick up color samples you think might work on your door — so you can test them out before going all-in.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Pro tip:</span> Buy an <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Rust-Oleum-1980502-Painters-Touch-Primer/dp/B000C02BLE/ref=sr_1_8?dchild=1&keywords=outdoor+primer+paint&qid=1584711518&sr=8-8\" target=\"_blank\" rel=\"noopener\">exterior primer</a> to help the fresh coat of paint go on smoothly and stick better.</p>\r\n<h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Step 2: Wash your garage door</span></h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Being close to a street can make the exterior of your home and your garage door especially dirty. Since you don’t want the dust mixing in with the new paint, be sure to wash your garage door thoroughly. All this takes is a bucket of water — perhaps a hose if it’s easily accessible — and a washcloth. For particularly grimy garage doors, you may want to rent a power washer.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Pro tip:</span> Lay down a drop cloth after washing the door and before painting to keep drips off of the cement.</p>\r\n<h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Step 3: Watch the weather</span></h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">When planning to paint the garage door, you want to make sure you have a mild and clear day ahead. Warmer weather helps the paint dry quickly and evenly. And if it starts to rain in the middle of the job, you might have ugly runs in your paint. If you plan on priming the door, wait for a span of good weather days. Primer needs at least 12 hours to dry before applying a coat of paint.</p>\r\n<h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Step 4: Tape off areas you don’t want to paint</span></h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">If your garage door has any design, like rectangular recesses, patterns, or multiple colors, you’ll need to outline your workspace to keep the finished product even and keep paint from areas you don’t want to be painted. <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/ScotchBlue-Painters-Multi-Use-1-88-Inch-60-Yard/dp/B00004Z4DU/ref=sr_1_5?dchild=1&keywords=painter%27s+tape&qid=1584712053&sr=8-5&swrs=9E6639B549A614FB2E8F0C746D3D5C79\" target=\"_blank\" rel=\"noopener\">Painter’s tape</a> is cheap and easy to use. Roll it out and stick it on areas of the door to create even lines that the paint won’t soak through. You only need to do this around the garage door frame edges and if you’re using two different colors to paint parts of the garage.</p>\r\n<h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Step 5: Prime the garage door</span></h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Start by using a <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Pro-Grade-Professional-Painting-Commercial-Paintbrush/dp/B07JHQ4L4F/ref=sr_1_2?dchild=1&keywords=exterior+paint+brush&qid=1584712486&sr=8-2&swrs=9E6639B549A614FB2E8F0C746D3D5C79\" target=\"_blank\" rel=\"noopener\">paintbrush</a> to prime the garage door. Only one thin layer needs to go on — just enough to give the paint a base on which to stick. Thoroughly wash the brush out afterward to use it for painting later. Priming can be skipped if you’re only touching up the garage door with the same color paint.</p>\r\n<h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Step 6: Paint the recesses</span></h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Once you’re ready to begin painting, start with a paintbrush. Get into the recesses of the door if you have them, then paint the main surfaces and carefully paint into the corners. Try keeping the paint off of the stiles (the raised edges) so that when you paint these, the coat is even.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Pro tip: </span>When painting with a brush, maintain a wet edge (but not dripping!) so that the paint doesn’t run or streak.</p>\r\n<h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Step 7: Paint the stiles</span></h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Paint the stiles next. Since they are above the recesses, the quickest way to do this is to use a <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Gam-Paint-Brushes-PT03362-12-Piece/dp/B0049U4L7K/ref=sr_1_24?dchild=1&keywords=exterior+paint+roller&qid=1584712659&sr=8-24&swrs=9E6639B549A614FB2E8F0C746D3D5C79\" target=\"_blank\" rel=\"noopener\">roller and a pan</a>. This keeps your paint strokes smooth and gets the job done quickly.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">If you can still see the primer through the paint coat, do a second one to make it look professional. Let each coat dry for about 12 hours before applying the next. A second coat usually isn’t required but can be necessary if you’re painting your door lighter than the original color.</p>\r\n<h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Step 8: Keep it clean</span></h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Maintaining the garage door will go a long way in keeping it looking fresh. Gently wash it down every once in a while so the dirt doesn’t scratch away your paint.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Products and tools you’ll need to paint a garage door</span></h2>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Rust-Oleum-1980502-Painters-Touch-Primer/dp/B000C02BLE/ref=sr_1_8?dchild=1&keywords=outdoor+primer+paint&qid=1584711518&sr=8-8\" target=\"_blank\" rel=\"noopener\">Exterior primer</a>: This keeps the paint sticking to the garage door instead of flaking away with old paint underneath.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/s?k=Acrylic+latex+exterior+house+paint&ref=nb_sb_noss_2\" target=\"_blank\" rel=\"noopener\">Garage door paint</a>: Acrylic latex exterior house paint is a great choice for garage door paint.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/ScotchBlue-Painters-Multi-Use-1-88-Inch-60-Yard/dp/B00004Z4DU/ref=sr_1_5?dchild=1&keywords=painter%27s+tape&qid=1584712053&sr=8-5&swrs=9E6639B549A614FB2E8F0C746D3D5C79\" target=\"_blank\" rel=\"noopener\">Painter’s tape</a>: Applying painter’s tape aids in defining edges and keeping the paint job looking professional.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Pro-Grade-Professional-Painting-Commercial-Paintbrush/dp/B07JHQ4L4F/ref=sr_1_2?dchild=1&keywords=exterior+paint+brush&qid=1584712486&sr=8-2&swrs=9E6639B549A614FB2E8F0C746D3D5C79\" target=\"_blank\" rel=\"noopener\">Paintbrushes</a>: A set of paintbrushes comes in handy; you’ll want to have more than one size for certain areas of the door.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Gam-Paint-Brushes-PT03362-12-Piece/dp/B0049U4L7K/ref=sr_1_24?dchild=1&keywords=exterior+paint+roller&qid=1584712659&sr=8-24&swrs=9E6639B549A614FB2E8F0C746D3D5C79\" target=\"_blank\" rel=\"noopener\">Roller and a pan</a>: Using a roller for the stiles makes the job go quickly and cleanly.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Purpose-Canvas-Cotton-Drop-Cloth/dp/B00TIXP6EU/ref=sxin_4_ac_d_pm?ac_md=3-1-QmV0d2VlbiAkMTUgYW5kICQ1MA%3D%3D-ac_d_pm&crid=1UA7L7ECZUAOK&cv_ct_cx=painting+drop+cloth&dchild=1&keywords=painting+drop+cloth&pd_rd_i=B00TIXP6EU&pd_rd_r=77e5d36b-9f2a-4897-b1e3-ac174e8502e9&pd_rd_w=o9lmG&pd_rd_wg=kIaPE&pf_rd_p=516e6e17-ed95-417b-b7a4-ad2c7b9cbae3&pf_rd_r=MBRR5Z59TKV5GFWNBMJV&psc=1&qid=1584713213&sprefix=painting+dropcloth%2Caps%2C233&sr=1-2-22d05c05-1231-4126-b7c4-3e7a9c0027d0\" target=\"_blank\" rel=\"noopener\">Painting drop cloth</a>: Lay this down below the area you are painting to keep the ground free of paint drips.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Made-Woodman-Crafts-Paint-Sticks/dp/B076BXLDQN/ref=sr_1_3?dchild=1&keywords=painting+mix+stick&qid=1584713282&sr=8-3&swrs=54002A54BFD576D2064B46EACDD71DAF\" target=\"_blank\" rel=\"noopener\">Stir sticks</a>: Make sure the paint hasn’t separated before you begin by mixing it up with a stir stick.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/s?k=step+ladder&ref=nb_sb_noss_2\" target=\"_blank\" rel=\"noopener\">Step ladder</a>: If you’re not tall enough to comfortably reach the top of the garage door, you might need a boost.</li>\r\n</ul>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">When to call in a professional to paint a garage door</span></h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Although painting a garage door is a task many people choose to take on themselves, hiring a professional is another option. You may go this route if you have more than one garage door, or not enough time to take on the task yourself. You may also choose to do so if the garage door is old or hasn’t been painted for a long time and needs more preparation before painting can occur.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">The upside to hiring a professional is that the finished product will look professional, it won’t take any of your time, and the job will be done quickly. Since they are not only bringing the materials but also doing the labor, you will have to pay for their time. Depending on the size of the job, it may cost anywhere from $200 to $1,000.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Frequently Asked Questions</span></h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">How long should I wait between coats of paint on a garage door?</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Wait at least 12 hours in between each coat of paint or primer to make sure it has fully dried and won’t smear. This is longer than you’d usually have to wait for paint to dry inside your home.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Do I need to prime the garage door first?</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">You don’t have to, but primer will make the paint stick better. This keeps the job looking better for a longer period. If you choose not to prime the garage door, consider using paint with a built-in primer.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Can I paint a garage door with a roller?</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">If your garage door is flat, you could do all but the edges with a roller. If it contains recesses, only do the stiles with a roller to keep it clean.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">How much does it cost to paint a garage door?</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Depending on the quality of paint you buy and the size of the door, a garage door will cost around $150 to $200 to paint yourself. If you hire a professional, costs can go up to about $1,000.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"> </p>\r\n</div>\r\n<div class=\"post__content\" style=\"box-sizing: border-box; margin: 0px auto; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline; max-width: 41.875rem; color: #212121;\"><hr style=\"box-sizing: border-box;\" />\r\n<div class=\"post__author-details\" style=\"box-sizing: border-box; margin: 1.375rem 0px 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; display: flex;\">\r\n<div class=\"post__author-description\" style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: italic; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><NAME> has been a traveling freelance writer for five years. She’s moved a lot over the past few years, giving her real-life expertise when she writes about ways to make your move easier. Based in South Dakota, she enjoys writing with a cup of coffee and her dog by her side</div>\r\n</div>\r\n</div>', '2020-08-30 00:44:31', '2020-08-30 00:44:31', '2020-08-29');
INSERT INTO `news` (`id`, `image`, `title`, `content`, `description`, `created_at`, `updated_at`, `date`) VALUES
(25, 'news\\August2020\\JUR50OfSIM843X3iDEcK.jpg', 'How to Get Rid of House Centipedes', 'House centipedes can strike fear into just about anyone who encounters them inside their home. These pests have worm-like bodies with multiple sets of long, creepy legs. House centipedes prefer to stay out of sight, so if you encounter one, it will most likely be an unwelcome surprise for both you and the centipede.', '<p> <img src=\"http://localhost/Shopping-FPT/public//storage/news/August2020/vacuum-cleaner-268161_1920.jpg\" alt=\"\" width=\"740\" height=\"493\" /></p>\r\n<div id=\"contentContainer\" class=\"post__content\" style=\"box-sizing: border-box; margin: 0px auto; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline; max-width: 41.875rem; color: #212121;\">\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">House centipedes can strike fear into just about anyone who encounters them inside their home. These pests have worm-like bodies with multiple sets of long, creepy legs. House centipedes prefer to stay out of sight, so if you encounter one, it will most likely be an unwelcome surprise for both you and the centipede.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">What do house centipedes look like?</h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">The bodies of house centipedes appear to be flattened and elongated. Their bodies contain numerous segments, each of which includes a pair of legs. On the female house centipede, the last pair of legs are <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://ento.psu.edu/extension/factsheets/house-centipedes\" target=\"_blank\" rel=\"noopener\">elongated to almost twice the length of her body</a>, causing her to look even bigger and more threatening. House centipedes can bite humans and will leave two red marks on the skin that are often accompanied by localized pain.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">How do you get house centipedes?</h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">House centipedes come into your home in search of shelter and food. They prefer to spend their days in dark, damp places and their nights on the hunt for food. House centipedes <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://ento.psu.edu/extension/factsheets/house-centipedes\" target=\"_blank\" rel=\"noopener\">eat other pests</a> such as silverfish, cockroaches and spiders—but that doesn’t make homeowners any happier to see them.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">The presence of house centipedes can point to a potentially bigger issue with other pests in your home. If you start seeing a number of house centipedes, it is important that you take a hard look at the possibility of a serious secondary infestation.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">How to check for house centipedes</h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">A house centipede infestation can be difficult to spot because of the elusive behavior of this pest. Most of the time, house centipedes remain in damp and dark places throughout the majority of the day. If you want to check your home for house centipedes, you should start your search in any area that has a history of water problems. Under sinks and in the basement are good places to start looking for house centipedes.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">You can also check for house centipedes by watching for activity when they are typically active. If you are a night owl, take the opportunity to look around for house centipedes the next time you are up late. Start your search in areas such as the bathroom, kitchen, or basement where dampness is most likely to occur.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">How long can house centipede infestations last?</h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">In the right conditions, female house centipedes can live for years. During that long lifespan, the female centipede will reproduce multiple times. The <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://ento.psu.edu/extension/factsheets/house-centipedes\" target=\"_blank\" rel=\"noopener\">Penn State Department of Entomology</a> points out that a female centipede can have as many as 150 offspring in her lifetime. A house centipede infestation that starts small can grow to very large numbers over the span of a female centipede’s lifetime.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">How to get rid of house centipedes, step by step</h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">If you want to know how to get rid of house centipedes, start by following the step by step guidelines below. A few proactive steps on your part can help you get rid of the house centipedes currently in your home and prevent more from coming inside in the future.</p>\r\n<h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\">Step 1: Deal with any water issues around your house.</h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">House centipedes are attracted to areas that are dark and damp. If you have any water issues around your house—such as a leak under your kitchen sink—you are inadvertently creating an ideal space for house centipedes. Fixing water issues will make your home less attractive to this pest.</p>\r\n<h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\">Step 2: Give your house a thorough cleaning.</h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Vacuuming out the corners and crevices of your home using a high-powered vacuum cleaner can suck up house centipedes that are trying to hide during the day. Be sure and dispose of the contents in a way that does not allow the centipedes to crawl back into your house.</p>\r\n<h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\">Step 3: Get rid of other pests in your home.</h3>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">House centipedes feed on other pests like cockroaches, silverfish, and spiders. If you have another type of pest infestation, it can attract house centipedes into your home. Eradicating other types of pests can help you get rid of house centipedes.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">Products you can use to treat a house centipede infestation</h2>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">High-powered vacuum cleaner. </span>A high-powered vacuum like the <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Shark-Navigator-Lift-Away-Professional-NV356E/dp/B005KMDV9A/\" target=\"_blank\" rel=\"noopener\">Shark Navigator Lift-Away Professional NV356E</a> can be used to suck up house centipedes that are hard to reach by any other method.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Sticky trap. </span>Sticky traps like the <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Trapper-Insect-Great-Spiders-Cockroaches/dp/B002Y6JHES/\" target=\"_blank\" rel=\"noopener\">Trapper Insect Trap</a> placed strategically around your home can catch house centipedes when they come out to hunt for food.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Pesticide spray. </span>You can use a pesticide spray like <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Ortho-Perimeter-24-Ounce-Stinkbug-Centipede/dp/B00EE4E1RQ/\" target=\"_blank\" rel=\"noopener\">Ortho Home Defense Insect Killer</a> to eliminate house centipedes and protect your home from re-infestation.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Pesticide granules. </span>Pesticide granules like <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Ortho-Defense-Granules-2-5-Pound-Centipede/dp/B000BPF27A/\" target=\"_blank\" rel=\"noopener\">Ortho Home Defense Insect Killer Granules</a> can be spread throughout the exterior of your home and kill house centipedes that are looking for a way inside. <span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"> </span></li>\r\n</ul>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">Don’t want to use chemical cleaners? Here’s how to get rid of house centipedes naturally</h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Learning how to get rid of centipedes naturally is not complicated. You start by removing the elements in your home that allow them to thrive, including damp areas and other pests. Once you are sure that you have eliminated the ideal environment for house centipedes so they won’t return, you can start getting rid of the ones that are currently in your home.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">A high-powered vacuum and homemade sticky traps are two natural and easy ways to get rid of house centipedes without using chemical pesticides. Use your vacuum to clean areas that are hard to access and often get overlooked—these are ideal places for house centipedes. You can make homemade sticky traps by putting a layer of petroleum jelly on heavy paper or cardboard. Place the traps near areas where house centipedes are likely to be in order to catch and remove the pest.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">When to call a professional exterminator to treat house centipedes</h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">There are two situations when you should call a professional exterminator to treat house centipedes: when your efforts to eradicate them have failed, or when it becomes clear that their presence is a sign of another pest infestation. A stubborn house centipede infestation can be difficult to eliminate completely without professional help. When your centipede infestation points to another type of pest in your home, you should bring in help to ensure that you eliminate any and all pests.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">How to keep house centipedes out of your house</h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Figuring out how to get rid of house centipedes and keep them out involves looking at the environment inside your home. Do you have damp, dark areas where house centipedes can hide? Are there other pests inside your home that house centipedes can feed on? If you answered yes to either question, the most important step you can take is to address the issues that are attracting house centipedes into your home.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">The bottom line on house centipedes</h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">The house centipede can be a scary sight for homeowners, and your first question may be, “Do centipedes bite?” Yes, house centipedes can bite and leave you with two red marks and localized pain. Fortunately, house centipede bites are uncommon and rarely cause any serious issues.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">These pests are much more interested in feeding on other types of pests. House centipedes spend days in dark, damp places and come out at night in search of other pests to eat, such as roaches, spiders, and silverfish. A house centipede infestation can point to issues with the pests that are their food supply. You can deal with house centipedes on your own with natural and chemical options or bring in the help of a pest control pro.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">Frequently Asked Questions</h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Are house centipedes poisonous?</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">You do not have to worry about house centipedes being poisonous unless you plan on eating them as an exotic snack. You may, however, be worried that this pest is venomous. <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://ento.psu.edu/extension/factsheets/house-centipedes\" target=\"_blank\" rel=\"noopener\">Experts at Penn State</a> point out that this pest does have venom but rarely causes any significant problems for humans who get bit.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Do house centipedes have 100 legs?</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Female house centipedes have 15 pairs of legs.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Who can help me deal with a house centipede infestation?</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Look to local pest control pros for help eradicating house centipedes from your home. Options for killing off some other types of pests can also be successful in eliminating house centipedes.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">What’s my first step if I want to get professional help dealing with house centipedes?</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Call a local pest pro and schedule a pest inspection for your home.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"> </p>\r\n</div>\r\n<div class=\"post__content\" style=\"box-sizing: border-box; margin: 0px auto; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline; max-width: 41.875rem; color: #212121;\"><hr style=\"box-sizing: border-box;\" />\r\n<div class=\"post__author-details\" style=\"box-sizing: border-box; margin: 1.375rem 0px 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; display: flex;\">\r\n<div class=\"post__author-description\" style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: italic; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Darisse spends her days creating content and marketing plans for a wide array of clients. She\'s dedicated to training others to build a flexible and lucrative career from home through writing and entrepreneurship. You can see more examples of her work, check out training materials, and read the blog on her website at theresaplaceintheworld.com.</div>\r\n</div>\r\n</div>', '2020-08-30 00:46:31', '2020-08-30 00:46:31', '2020-08-30');
INSERT INTO `news` (`id`, `image`, `title`, `content`, `description`, `created_at`, `updated_at`, `date`) VALUES
(26, 'news\\September2020\\GqzIRskIaelXK1GBRvJ9.jpg', 'DIY Stump Removal: Tips and Tricks', 'Did you have to cut down a tree from your yard due to a storm, natural disaster, root growth, or an infestation? The tree stumps left behind can be an eyesore. If you’ve got some free time and don’t mind flexing your muscles to get the job done, you can avoid costly stump removal services and take care of the project yourself.', '<p> <img src=\"http://localhost/Shopping-FPT/public//storage/news/August2020/tree-stump-1040639_1920.jpg\" alt=\"\" width=\"740\" height=\"493\" /></p><div id=\"contentContainer\" class=\"post__content\" style=\"box-sizing: border-box; margin: 0px auto; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline; max-width: 41.875rem; color: #212121;\"><p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Did you have to cut down a tree from your yard due to a storm, natural disaster, root growth, or an infestation? The tree stumps left behind can be an eyesore. If you’ve got some free time and don’t mind flexing your muscles to get the job done, you can avoid costly stump removal services and take care of the project yourself.</p><p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">While there is more than one stump <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.nycgovparks.org/services/forestry/dead-tree-removal\" target=\"_blank\" rel=\"noopener\">removal process</a>, the following guide shows you the easiest way to get it done yourself. Before putting your saw to wood, make sure you’re wearing proper safety equipment and clothing. This includes safety glasses, safety gloves, earplugs, long trousers, a jacket, and proper boots. Consult with a <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.lowes.com/n/how-to/operate-a-chainsaw\" target=\"_blank\" rel=\"noopener\">local home improvement expert</a> if you’re unsure about proper chainsaw operation and safety procedures.</p><h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">8 steps to DIY stump removal</h2><h3 style=\"box-sizing: border-box; margin: 0px 0px 1.5625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\">Step 1: Cut down as much of the tree stump as you can</h3><p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Cut down the stump as low as you can. The only way to really do this effectively is with a chainsaw. We recommend wearing steel-toed boots, work gloves, earplugs, and eye protection while using a chainsaw.</p><h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\">Step 2: Drill holes into the remainder of the stump</h3><p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Drill from the top down, with every hole about 2 to 3 inches apart and about 8 to 10 inches deep. Drill holes from the sides of the stump as well, aiming to intersect with the holes coming down from the top. Make sure to use a drill bit that’s 3/8 of an inch in diameter.</p><h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\">Step 3: Apply the chemicals</h3><p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Once you’re done drilling the holes, pour the stump removal chemicals down each of the top holes. When choosing a tree stump removal chemical, fine granules are much easier to use. Products that come in powder form tend to clog at the very top of the holes, while <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Spectracide-Stump-Remover-Granules-1-Pound/dp/B004GVYXKC/ref=sr_1_5?crid=1D0P3E6TT2WQ3&keywords=bromide+stump-out&qid=1585611997&sprefix=bromide+stump%2Caps%2C225&sr=8-5\" target=\"_blank\" rel=\"noopener\">products made with fine granules</a> usually roll right down to the bottom.</p><h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\">Step 4: Pour water into the holes</h3><p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">After each hole is filled with a stump removal chemical, add water as per the instructions that come with the chemical you purchased.</p><p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Pro tip: </span>Pouring too much water can dilute the stump chemicals, which could have a negative impact on how well the product works. Always measure your water precisely and follow the written instructions closely.</p><h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\">Step 5: Cover the stump</h3><p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">The stump removal process usually takes several weeks depending on what chemical is used. To protect children and animals, make sure the stump is covered at all times. Any exposure to the stump without taking precautions could be dangerous. Cover the stump with a tarp and pieces of scrap wood, rocks, or bricks. Periodically check the stump to see how much effect the chemicals have had and that the covering is still in place.</p><h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\">Step 6: Soak the stump with kerosene</h3><p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Once the stump looks more like a sponge or mulch and breaks apart easily, it’s time to break out the kerosene. Soak the stump and let it sit for a few more weeks. Kerosene is used at this point because you won’t be able to manually remove the stump in its current state.</p><h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\">Step 7: Set the stump on fire</h3><p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">First, check with your town about any restrictions to open fires in your area. If all is well, it’s time to set the stump on fire. After a few weeks, uncover your stump, remove any surrounding debris, and create a ring of rocks or bricks around the stump. Add some kindling if needed and set it on fire. Keep a hose, a fire extinguisher, or baking soda nearby in case the fire spreads too far.</p><p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">The fire should go out when the stump is totally gone, leaving only a hole in the ground where it used to be. Be prepared: it can take days for the embers to burn down. Never leave the initial fire unattended and make sure there are no people or animals nearby who could get hurt.</p><h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\">Step 8: Fill the hole</h3><p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\">Once the fire is out and the stump is gone, pull out any remaining roots and <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.mymove.com/lawn-care/guides/types-of-grass/\">fill the hole with sod</a>. Pack the sod firmly and block off the area for another week as a precaution.</p><h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">Products and tools you’ll need for tree stump removal</h2><ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-position: initial; list-style-image: initial;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/BLACK-DECKER-LCS1020-Lithium-Chainsaw/dp/B00OC9WSDC/ref=sr_1_1_sspa?keywords=chainsaw&qid=1585613773&sr=8-1-spons&psc=1&spLa=<KEY>=\" target=\"_blank\" rel=\"noopener\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">A chainsaw</span></a><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">:</span> You don’t need an expensive chainsaw for this job, especially if you’re just using it for the first step of the process. A <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/BLACK-DECKER-LCS1020-Lithium-Chainsaw/dp/B00OC9WSDC/ref=sr_1_1_sspa?keywords=chainsaw&qid=1585613773&sr=8-1-spons&psc=1&spLa=ZW5jcnlwdGVkUXVhbGlmaWVyPUExSjhLSDE5NjJOSFg1JmVuY3J5cHRlZElkPUEwODQ2MDQ0MjVSREc1MkIxNElKTiZlbmNyeXB0ZWRBZElkPUEwMzM1NjU3Mkk4WURDNFJJTFpCUSZ3aWRnZXROYW1lPXNwX2F0ZiZhY3Rpb249Y2xpY2tSZWRpcmVjdCZkb05vdExvZ0NsaWNrPXRydWU=\" target=\"_blank\" rel=\"noopener\">10-inch chainsaw</a> should do the trick.</li><li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Speedbor-88716-2000-Shank-Boring/dp/B00004YOAM/ref=sr_1_4?crid=21LQ7KBQTOGOP&keywords=tree+stump+drill+bit&qid=1585614814&sprefix=drill+for+tree+stump%2Caps%2C243&sr=8-4\" target=\"_blank\" rel=\"noopener\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Drill bit</span></a><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">:</span> The bit should be long enough to make holes 8 to 10 inches deep and specifically made for wood boring.</li><li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/DEWALT-DCD791D2-Li-Ion-Brushless-Compact/dp/B0183RLVSQ/ref=sr_1_18?keywords=drill&qid=1585623636&sr=8-18\" target=\"_blank\" rel=\"noopener\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Drill</span></a><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">:</span> We advise against buying the cheapest drill you can find. A high quality <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/DEWALT-DCD791D2-Li-Ion-Brushless-Compact/dp/B0183RLVSQ/ref=sr_1_18?keywords=drill&qid=1585623636&sr=8-18\" target=\"_blank\" rel=\"noopener\">brushless 20-volt drill</a> should do the trick. While you’ll need to spend more upfront for a quality drill, you’ll be able to use it on various home improvement tasks for years to come.</li><li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Ironclad-General-All-Purpose-Performance-Washable/dp/B00004XOH8/ref=sr_1_15?keywords=safety+gloves&qid=1585624015&sr=8-15\" target=\"_blank\" rel=\"noopener\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Safety gloves</span></a><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">: </span>A good quality pair of safety gloves are needed when working outside or with power tools.</li><li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/DEWALT-DPG94-1C-Dominator-SAFETY-Glasses/dp/B002IVTX8E/ref=sr_1_12?keywords=safety+glasses&qid=1585624602&sr=8-12\" target=\"_blank\" rel=\"noopener\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Safety glasses</span></a><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">:</span> A pair of safety glasses is especially important when working with chainsaws and any type of chemical.</li><li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Flents-Quiet-Contour-Plugs-Pair/dp/B004CZYJLA/ref=sr_1_5?keywords=ear+plugs&qid=1585625941&sr=8-5\" target=\"_blank\" rel=\"noopener\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Earplugs</span></a><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">:</span> A good set of earplugs is essential to protect your hearing whiles using the chainsaw. They’re relatively cheap and sold in large quantities. Make sure they’re specifically made for construction.</li><li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/s?k=steel-toed+Work+boots&ref=nb_sb_noss_2\" target=\"_blank\" rel=\"noopener\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Work boots</span></a><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">:</span> Proper steel-toed work boots need to be worn when removing your stump or during any other heavy-duty projects.</li><li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/SUNNYSIDE-CORPORATION-700G1-1-Gallon-Kerosene/dp/B000LNWHBQ/ref=sr_1_3?keywords=kerosene&qid=1585623887&sr=8-3\" target=\"_blank\" rel=\"noopener\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Kerosene</span></a><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">:</span> At a minimum, one gallon of kerosene is needed, regardless of the brand. The total amount needed will likely depend on the size of the stump, so buy more than you think you’ll need.</li><li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/s?k=tarp&ref=nb_sb_noss_2\" target=\"_blank\" rel=\"noopener\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Tarp</span></a>: a tarp is needed to cover the stump as it decays.</li></ul><h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Frequently asked questions</span></h2><p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Do I need a grinder for DIY stump removal?</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><br style=\"box-sizing: border-box;\" /></span>In some cases, a <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/s?k=stump+grinder&ref=nb_sb_noss_2\" target=\"_blank\" rel=\"noopener\">stump grinder</a> is necessary for the removal of stubborn or very large stumps. This DIY guide recommends a process that does not require a grinder, but you will need to rent or purchase a chainsaw.</p><p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">How long does it take to remove a tree stump?</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><br style=\"box-sizing: border-box;\" /></span>In this process, the chemical breakdown process usually takes four weeks. An additional two weeks (or more) are needed to allow the kerosene to soak through the stump.</p><p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">When is the best time of year for stump removal?</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><br style=\"box-sizing: border-box;\" /></span>The best time of year to remove a tree stump is during the winter. The process of removing the stump is more effective in colder soil and the surrounding greenery is less likely to be damaged. Ideally, the process of stump removal should occur immediately after a tree has been cut down regardless of the season.</p><p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 2.0625rem; font-size: 1.3125rem; vertical-align: baseline;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Do I need a permit from my local city for stump removal DIY projects?</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><br style=\"box-sizing: border-box;\" /></span>In <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.sun-sentinel.com/real-estate/fl-bz-gsinger-col-tree-20170705-story.html\" target=\"_blank\" rel=\"noopener\">most cases</a>, you won’t need a permit to remove a stump located on your property — but play it safe by checking with your local city government first about permits and open fires.</p></div><div class=\"post__content\" style=\"box-sizing: border-box; margin: 0px auto; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 1.3125rem; vertical-align: baseline; max-width: 41.875rem; color: #212121;\"><hr style=\"box-sizing: border-box;\" /><div class=\"post__author-details\" style=\"box-sizing: border-box; margin: 1.375rem 0px 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; display: flex;\"><div class=\"post__author-description\" style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-style: italic; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\"><NAME> is a California-based freelance writer that specializes in finance, insurance, tech, remodeling, travel, and more. He\'s written for major international brands like Expedia and Yahoo. He is the founder of TrevorJohnson.media and is currently Director of Product Development and Customer Experience for Aspatore Ventures.</div></div></div>', '2020-08-30 00:51:00', '2020-09-02 10:01:14', '2020-08-31');
INSERT INTO `news` (`id`, `image`, `title`, `content`, `description`, `created_at`, `updated_at`, `date`) VALUES
(27, 'news\\August2020\\OskHPwvYnGhzmmj6bdM6.jpg', 'The Best Edge Painting Tools of 2020', 'Anyone who has ever painted a room knows the difficulty of painting along baseboards and trim. Before the invention of the edge painting tool, the options were tape or time-consuming (often back-breaking) care.', '<p> <img src=\"http://localhost/Shopping-FPT/public//storage/news/August2020/yellow-2606857_1920.jpg\" alt=\"\" width=\"739\" height=\"434\" /></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\">Anyone who has ever painted a room knows the difficulty of painting along baseboards and trim. Before the invention of the edge painting tool, the options were tape or time-consuming (often back-breaking) care.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\">But thanks to paint edgers, the job of achieving clean paint lines around home fixtures is a breeze. But of course, not all paint edging tools are created equal, so here are seven of the best.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">The 7 best paint edging tools</h2>\r\n<ol style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #212121;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Best overall: <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Accubrush-Paint-Edger-piece-Jumbo/dp/B000T4G4QQ/\" target=\"_blank\" rel=\"noopener\">Accubrush MX Paint Edger 11 piece kit</a></li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Best for your budget: <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/SHUR-LINE-2000878-1000C-Premium-Professional/dp/B000WOMYIU/\" target=\"_blank\" rel=\"noopener\">Shur-Line 1000C Paint Premium Edger</a></li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Best for big projects: <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/HomeRight-Painter-C800699-Adjustable-Painting/dp/B071D4V8BY/\" target=\"_blank\" rel=\"noopener\">HomeRight Quick Painter Pad Edger w/flow control</a></li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Best kit: <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Accubrush-Complete-Paint-Edging-Kit/dp/B00HQPCCVW/\" target=\"_blank\" rel=\"noopener\">Accubrush XT Complete Paint Edging kit</a></li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Most easy-to-use: <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/HomeRight-Painter-C800771-Painting-Interior/dp/B003IHVALK/ref=zg_bs_17881634011_3?_encoding=UTF8&psc=1&refRID=MZYWD1E941CGP9SNTN0R\" target=\"_blank\" rel=\"noopener\">HomeRight Quick Painter</a></li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Best for quick projects: <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Emery-Edger-Paint-Brush-Edging/dp/B0795BGC5R/ref=zg_bs_17881634011_13?_encoding=UTF8&psc=1&refRID=MZYWD1E941CGP9SNTN0R\" target=\"_blank\" rel=\"noopener\">Emery Edger Paint Brush Edging Tool</a></li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Best paint roller: <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Wagner-0530003-Roller-Handle-Capacity/dp/B00C1TAZTE/ref=zg_bs_17881634011_14?_encoding=UTF8&psc=1&refRID=MZYWD1E941CGP9SNTN0R\" target=\"_blank\" rel=\"noopener\">Wagner SMART Edge Paint Roller</a></li>\r\n</ol>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><em style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Methodology: We sourced our list of top paint edgers from products sold on Amazon. We then distilled our choices to the top seven based on price, key features, and customer reviews.</em></p>\r\n<h3 style=\"box-sizing: border-box; margin: 1.5625rem 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\">1. Accubrush MX Paint Edger 11 piece kit: Best for overall use</h3>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 0.9375rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 21px; vertical-align: baseline; color: #424242;\">Why it made the list</h4>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\">Given its price and overall functionality, the <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Accubrush-Paint-Edger-piece-Jumbo/dp/B000T4G4QQ/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=a43a6ec2be68d53583a10355e5e83f63&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener noreferrer\">Accubrush MX paint edger 11-piece kit</a>is an ideal edge painting choice. The kit comes with one edger tool, four rollers, and four brushes, which you can easily interchange. Each brush allows for precision edging, and you can wash and reuse the rollers.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Price on Amazon:</span> $39.95</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Pros:</span></p>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #212121;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Extra rollers and brushers provide flexibility</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">There’s no need to clean between colors, just switch the roller or brush and continue</li>\r\n</ul>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Cons:</span></p>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #212121;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">This product is for hand use only; you can’t attach it to a pole or extender</li>\r\n</ul>\r\n<h3 style=\"box-sizing: border-box; margin: 0px 0px 1.5625rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\">2. Shur-Line 1000C Paint Premium Edger: Best for your budget</h3>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 0.9375rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 21px; vertical-align: baseline; color: #424242;\">Why it made the list</h4>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\">The <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/SHUR-LINE-2000878-1000C-Premium-Professional/dp/B000WOMYIU/?&_encoding=UTF8&tag=mymove0e-20&linkCode=ur2&linkId=aa354ed931fd505036f456ec434ef6c4&camp=1789&creative=9325\" target=\"_blank\" rel=\"noopener noreferrer\">Shur-Line 1000C premium paint edger</a> is very low cost and simple to use. Although designed mainly for manual use, it can be attached to a threaded extension pole for those hard-to-reach paint jobs.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Price on Amazon:</span> $5.67</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Pros:</span></p>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #212121;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">It’s simple and easy-to-use</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Has a washable pad for reuse</li>\r\n</ul>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Cons:</span></p>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #212121;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">While this edge painting tool is excellent for painting trim, it’s not as effective in corners because the sides can leave streaks if you’re not careful</li>\r\n</ul>\r\n<h3 style=\"box-sizing: border-box; margin: 0px 0px 1.5625rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\">3. HomeRight Quick Painter Pad Edger: Best for big projects</h3>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 0.9375rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 21px; vertical-align: baseline; color: #424242;\">Why it made the list</h4>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\">The <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/HomeRight-Painter-C800699-Adjustable-Painting/dp/B071D4V8BY/ref=pd_di_sccai_2/144-3861429-6134604?_encoding=UTF8&pd_rd_i=B071D4V8BY&pd_rd_r=b5877873-940c-438e-9119-4bdf7d6d7f8f&pd_rd_w=iMq9E&pd_rd_wg=hFWn1&pf_rd_p=e532f109-986a-4c2d-85fc-16555146f6b4&pf_rd_r=S2DGA8WHDNXQT4EBZT8T&psc=1&refRID=S2DGA8WHDNXQT4EBZT8T\" target=\"_blank\" rel=\"noopener\">HomeRight Quick Painter Pad Edger with Flow Control</a> is good for big projects. The unit has a durable, hollow handle that can hold up to 4.6 ounces of paint. This will allow you to cover up to 50 square feet (or 150 linear feet) of space without stopping for constant paint dips or refills.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Price on Amazon:</span> $9.68</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Pros: </span></p>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #212121;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Easy to set up and use</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">This edger provides ample paint for a large area without multiple refills</li>\r\n</ul>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Cons: </span></p>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #212121;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Cleanup needs to be done as instructed (dry can leave your tools dry, crusty, and ineffective)</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Reviews say it takes a few uses to figure out the paint flow feature</li>\r\n</ul>\r\n<h3 style=\"box-sizing: border-box; margin: 0px 0px 1.5625rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\">4. Accubrush XT Complete Paint Edging Kit: Best kit</h3>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 0.9375rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 21px; vertical-align: baseline; color: #424242;\">Why it made the list</h4>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\">The <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Accubrush-Complete-Paint-Edging-Kit/dp/B00HQPCCVW/ref=pd_sbs_60_t_1/144-3861429-6134604?_encoding=UTF8&pd_rd_i=B00HQPCCVW&pd_rd_r=f19acb48-01f3-4725-8daf-2bcdd73cf069&pd_rd_w=3DmR8&pd_rd_wg=mXsiJ&pf_rd_p=5cfcfe89-300f-47d2-b1ad-a4e27203a02a&pf_rd_r=VX3X3JHY31FHNGNK8RYX&psc=1&refRID=VX3X3JHY31FHNGNK8RYX\" target=\"_blank\" rel=\"noopener\">Accubrush XT Complete Paint Edging kit</a> is the best for big, comprehensive paint jobs because, as it states, it’s complete. The kit provides everything you’ll need to produce nicely-edged paint jobs in any situation. It includes:</p>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #212121;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Two Accubrush paint edger tools</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Seven-piece extension pole kit</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Six rollers</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Four brushes</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Roller paint tray</li>\r\n</ul>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Price on Amazon: </span>$124.97</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Pros: </span></p>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #212121;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">It includes everything you’ll need to paint edge and trim.</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">The Accubrush paint edger tool swivels for difficult angles.</li>\r\n</ul>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Cons: </span></p>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #212121;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">The complete kit is more expensive than other paint edging products</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Some reviews say the tools lack accuracy and are hard to use on lining near ceilings and corners</li>\r\n</ul>\r\n<h3 style=\"box-sizing: border-box; margin: 0px 0px 1.5625rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\">5. HomeRight Quick Painter: Most easy-to-use</h3>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 0.9375rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 21px; vertical-align: baseline; color: #424242;\">Why it made the list</h4>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\">The <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/HomeRight-Painter-C800771-Painting-Interior/dp/B003IHVALK/ref=zg_bs_17881634011_3?_encoding=UTF8&psc=1&refRID=MZYWD1E941CGP9SNTN0R\" target=\"_blank\" rel=\"noopener\">HomeRight Quick Painter</a> is the easiest paint edging tool to use while also providing some of the great elements found in pricier models. Small and compact, this edging tool can hold up to 4.5 ounces of paint in the handle and has an easy swivel head. It can cover over 50 square feet of space with ease.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Price on Amazon:</span> $11.20</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Pros: </span></p>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #212121;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">This paint edger holds paint in the handle, cutting down the number of paint dips and refills you’ll have to do</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">The quick thumb trigger permits smooth delivery of paint</li>\r\n</ul>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Cons: </span></p>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #212121;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">You can’t add it to an extension pole, making it hard to reach tall paint spots</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Regular cleanup is required after each use to prevent clogging of the device (be sure to follow cleaning instructions carefully)</li>\r\n</ul>\r\n<h3 style=\"box-sizing: border-box; margin: 0px 0px 1.5625rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\">6. Emery Edger Paint Brush Edging Tool: Best for quick projects</h3>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 0.9375rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 21px; vertical-align: baseline; color: #424242;\">Why it made the list</h4>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\">The<a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Emery-Edger-Paint-Brush-Edging/dp/B0795BGC5R/ref=zg_bs_17881634011_13?_encoding=UTF8&psc=1&refRID=MZYWD1E941CGP9SNTN0R\" target=\"_blank\" rel=\"noopener\"> Emery Edger Paint Brush Edging tool</a> is the perfect paint edger for quick projects. First, it’s designed to easily snap onto a standard 3-inch paintbrush. This design also permits quick cleanup and is remarkably effective at achieving clean edges around trim, baseboards, and other tricky paint jobs.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Price on Amazon:</span> $12.95</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Pros: </span></p>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #212121;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">You can attach the device any standard 3-inch paintbrush</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">This product can tackle tricky paint jobs on textured surfaces, like popcorn ceilings or textured drywall</li>\r\n</ul>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Cons: </span></p>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #212121;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Replacement pads sold separately</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">Designed for manual hand-use only</li>\r\n</ul>\r\n<h3 style=\"box-sizing: border-box; margin: 0px 0px 1.5625rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.3125rem; vertical-align: baseline; color: #424242;\">7. Wagner SMART Edge Paint Roller: Best paint roller</h3>\r\n<h4 style=\"box-sizing: border-box; margin: 0px 0px 0.9375rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 21px; vertical-align: baseline; color: #424242;\">Why it made the list</h4>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\">This <a style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.25s ease 0s;\" href=\"https://www.amazon.com/Wagner-0530003-Roller-Handle-Capacity/dp/B00C1TAZTE/ref=zg_bs_17881634011_14?_encoding=UTF8&psc=1&refRID=MZYWD1E941CGP9SNTN0R\" target=\"_blank\" rel=\"noopener\">handheld paint edger roller</a> is easy to use and provides controllable paint flow and remarkably clean edges. The reservoir holds up to six ounces of paint to cover up to 32 square feet of space (96 linear feet).</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Price on Amazon:</span> $22.49</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Pros: </span></p>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #212121;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">No roller tray is needed, the roller holds paint in the handle for quick and easy refills</li>\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">It has a long reach for ceilings and tall paint projects</li>\r\n</ul>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Cons: </span></p>\r\n<ul style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px 0px 0px 1.4375rem; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #212121;\">\r\n<li style=\"box-sizing: border-box; margin: 0px 0px 0.625rem; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: inherit; font-size: 1.3125rem; vertical-align: baseline;\">The entire unit must be cleaned very well after each use, or future operation will be difficult (follow cleaning directions precisely)</li>\r\n</ul>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><em style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">*Pricing information as of 04/14/2020</em></span></p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">Things to consider when shopping for paint edgers</h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\">When shopping for paint edgers, the most important thing to consider is the size of the job.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\">If you’re getting a new paint edging tool for small touchups, something simple and easy-to-use may be ideal. If you’re working on a bigger project — perhaps a large living room or two rooms — you may want to find an edging tool that comes with both a paint reservoir and the ability to attach an extension pole.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\">Be sure to pay close attention to cleaning. If you want easy cleanups, a simple, perhaps disposable, design is better. If you don’t mind cleanups, paint edging tools with reservoirs are great, especially for larger jobs.</p>\r\n<h2 style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2rem; font-family: \'RV Montserrat\', helvetica, sans-serif; font-size: 1.875rem; vertical-align: baseline; color: #424242;\">Frequently Asked Questions</h2>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">How do you use a paint edging tool?</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\">How you hold the paint edging tool will differ depending on the type of tool you choose, but all of them require you to press the tool as close to the edge as possible. Apply paint with a smooth, single stroke, guiding the edger along the surface. Take your time and pay attention to your work. Even with an edger, rushing can result in less-than-perfect results.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">Do paint edgers really work?</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\">Yes. Paint edgers eliminate the need for taping along surfaces and can even be used to paint clean edges around circular objects like smoke detectors.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 900; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\">What are the tools for painting?</span></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 1.875rem; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 2.0625rem; font-family: \'Source Serif Pro\', georgia, sans-serif; font-size: 21px; vertical-align: baseline; color: #212121;\">Typically, you need paintbrushes, roller pans, paint rollers, a drop cloth, tape, and paint. An edging tool eliminates the need for tape and, in some cases, a pan. In fact, the Accubrush XT Complete Paint Edging kit contains all you need except for paint and a drop cloth.</p>', '2020-08-30 00:57:36', '2020-08-30 00:57:36', '2020-08-31');
-- --------------------------------------------------------
--
-- Table structure for table `orders`
--
CREATE TABLE `orders` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`cart` text 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 `orders`
--
INSERT INTO `orders` (`id`, `user_id`, `cart`, `created_at`, `updated_at`) VALUES
(1, 1, 'O:8:\"App\\Cart\":3:{s:5:\"items\";a:3:{i:9;a:5:{s:2:\"id\";i:9;s:5:\"title\";s:19:\"Lighting Chandelier\";s:5:\"price\";i:23;s:3:\"qty\";i:1;s:5:\"image\";s:47:\"products\\September2020\\CKLHmnhjK2fZOsevh399.jpg\";}i:13;a:5:{s:2:\"id\";i:13;s:5:\"title\";s:19:\"Modern Scandinavian\";s:5:\"price\";i:60;s:3:\"qty\";i:1;s:5:\"image\";s:47:\"products\\September2020\\OsbgjwYbCnkge0DBKqWE.jpg\";}i:12;a:5:{s:2:\"id\";i:12;s:5:\"title\";s:14:\"Lighting Glass\";s:5:\"price\";i:125;s:3:\"qty\";i:1;s:5:\"image\";s:47:\"products\\September2020\\quaYXK9SdAaieKZmpkxZ.jpg\";}}s:8:\"totalQty\";i:3;s:10:\"totalPrice\";i:208;}', '2020-09-02 11:52:21', '2020-09-02 11:52:21');
-- --------------------------------------------------------
--
-- 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 `permissions`
--
CREATE TABLE `permissions` (
`id` bigint(20) UNSIGNED NOT NULL,
`key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`table_name` 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 `permissions`
--
INSERT INTO `permissions` (`id`, `key`, `table_name`, `created_at`, `updated_at`) VALUES
(1, 'browse_admin', NULL, '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(2, 'browse_bread', NULL, '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(3, 'browse_database', NULL, '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(4, 'browse_media', NULL, '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(5, 'browse_compass', NULL, '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(6, 'browse_menus', 'menus', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(7, 'read_menus', 'menus', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(8, 'edit_menus', 'menus', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(9, 'add_menus', 'menus', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(10, 'delete_menus', 'menus', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(11, 'browse_roles', 'roles', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(12, 'read_roles', 'roles', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(13, 'edit_roles', 'roles', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(14, 'add_roles', 'roles', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(15, 'delete_roles', 'roles', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(16, 'browse_users', 'users', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(17, 'read_users', 'users', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(18, 'edit_users', 'users', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(19, 'add_users', 'users', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(20, 'delete_users', 'users', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(21, 'browse_settings', 'settings', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(22, 'read_settings', 'settings', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(23, 'edit_settings', 'settings', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(24, 'add_settings', 'settings', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(25, 'delete_settings', 'settings', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(26, 'browse_hooks', NULL, '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(27, 'browse_categories', 'categories', '2020-08-31 12:41:18', '2020-08-31 12:41:18'),
(28, 'read_categories', 'categories', '2020-08-31 12:41:18', '2020-08-31 12:41:18'),
(29, 'edit_categories', 'categories', '2020-08-31 12:41:18', '2020-08-31 12:41:18'),
(30, 'add_categories', 'categories', '2020-08-31 12:41:18', '2020-08-31 12:41:18'),
(31, 'delete_categories', 'categories', '2020-08-31 12:41:18', '2020-08-31 12:41:18'),
(32, 'browse_products', 'products', '2020-08-31 12:41:34', '2020-08-31 12:41:34'),
(33, 'read_products', 'products', '2020-08-31 12:41:34', '2020-08-31 12:41:34'),
(34, 'edit_products', 'products', '2020-08-31 12:41:34', '2020-08-31 12:41:34'),
(35, 'add_products', 'products', '2020-08-31 12:41:34', '2020-08-31 12:41:34'),
(36, 'delete_products', 'products', '2020-08-31 12:41:34', '2020-08-31 12:41:34'),
(37, 'browse_news', 'news', '2020-08-31 12:51:34', '2020-08-31 12:51:34'),
(38, 'read_news', 'news', '2020-08-31 12:51:34', '2020-08-31 12:51:34'),
(39, 'edit_news', 'news', '2020-08-31 12:51:34', '2020-08-31 12:51:34'),
(40, 'add_news', 'news', '2020-08-31 12:51:34', '2020-08-31 12:51:34'),
(41, 'delete_news', 'news', '2020-08-31 12:51:34', '2020-08-31 12:51:34'),
(62, 'browse_dmfpt', 'dmfpt', '2020-09-01 02:37:42', '2020-09-01 02:37:42'),
(63, 'read_dmfpt', 'dmfpt', '2020-09-01 02:37:42', '2020-09-01 02:37:42'),
(64, 'edit_dmfpt', 'dmfpt', '2020-09-01 02:37:42', '2020-09-01 02:37:42'),
(65, 'add_dmfpt', 'dmfpt', '2020-09-01 02:37:42', '2020-09-01 02:37:42'),
(66, 'delete_dmfpt', 'dmfpt', '2020-09-01 02:37:42', '2020-09-01 02:37:42'),
(67, 'browse_banner', 'banner', '2020-09-01 02:41:04', '2020-09-01 02:41:04'),
(68, 'read_banner', 'banner', '2020-09-01 02:41:04', '2020-09-01 02:41:04'),
(69, 'edit_banner', 'banner', '2020-09-01 02:41:04', '2020-09-01 02:41:04'),
(70, 'add_banner', 'banner', '2020-09-01 02:41:04', '2020-09-01 02:41:04'),
(71, 'delete_banner', 'banner', '2020-09-01 02:41:04', '2020-09-01 02:41:04'),
(77, 'browse_brand', 'brand', '2020-09-01 21:07:09', '2020-09-01 21:07:09'),
(78, 'read_brand', 'brand', '2020-09-01 21:07:09', '2020-09-01 21:07:09'),
(79, 'edit_brand', 'brand', '2020-09-01 21:07:09', '2020-09-01 21:07:09'),
(80, 'add_brand', 'brand', '2020-09-01 21:07:09', '2020-09-01 21:07:09'),
(81, 'delete_brand', 'brand', '2020-09-01 21:07:09', '2020-09-01 21:07:09');
-- --------------------------------------------------------
--
-- Table structure for table `permission_role`
--
CREATE TABLE `permission_role` (
`permission_id` bigint(20) UNSIGNED NOT NULL,
`role_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `permission_role`
--
INSERT INTO `permission_role` (`permission_id`, `role_id`) VALUES
(1, 1),
(2, 1),
(3, 1),
(4, 1),
(5, 1),
(6, 1),
(7, 1),
(8, 1),
(9, 1),
(10, 1),
(11, 1),
(12, 1),
(13, 1),
(14, 1),
(15, 1),
(16, 1),
(17, 1),
(18, 1),
(19, 1),
(20, 1),
(21, 1),
(22, 1),
(23, 1),
(24, 1),
(25, 1),
(26, 1),
(27, 1),
(28, 1),
(29, 1),
(30, 1),
(31, 1),
(32, 1),
(33, 1),
(34, 1),
(35, 1),
(36, 1),
(37, 1),
(38, 1),
(39, 1),
(40, 1),
(41, 1),
(62, 1),
(63, 1),
(64, 1),
(65, 1),
(66, 1),
(67, 1),
(68, 1),
(69, 1),
(70, 1),
(71, 1),
(77, 1),
(78, 1),
(79, 1),
(80, 1),
(81, 1);
-- --------------------------------------------------------
--
-- Table structure for table `products`
--
CREATE TABLE `products` (
`id` bigint(20) UNSIGNED NOT NULL,
`category_id` bigint(20) NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`price` bigint(20) NOT NULL,
`image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`image1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image3` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image4` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `products`
--
INSERT INTO `products` (`id`, `category_id`, `title`, `price`, `image`, `created_at`, `updated_at`, `image1`, `image2`, `image3`, `image4`, `content`) VALUES
(11, 1, 'Lighting Chandelier', 110, 'products\\September2020\\JNgNb0z3tqlkZpV4N2zB.jpg', '2020-09-02 10:18:35', '2020-09-02 10:18:35', 'products\\September2020\\B31FapIExHkZmNDVZCZM.jpg', 'products\\September2020\\xWelCpQUqPisi4iAefrg.jpg', 'products\\September2020\\ALK5qj4BZ07Nuul4dp8l.jpg', NULL, 'Dimmable Compatible & Energy Saving】G40 outside string light come with 25 glass bulbs and 1 spare bulb. 1.5 inch light bulbs have E12/C7 candelabra socket base, 5W per bulb, warm white dimmable string light help you to save more electricity bid. 【Connecta'),
(12, 1, 'Lighting Glass', 125, 'products\\September2020\\quaYXK9SdAaieKZmpkxZ.jpg', '2020-09-02 10:20:00', '2020-09-02 10:23:35', 'products\\September2020\\JREvHX6vVkvy799oFhkY.jpg', 'products\\September2020\\9FrY1vBsV9GdOugvBYaS.jpg', 'products\\September2020\\T9hnW725W3cMRJM3uiRN.jpg', NULL, '✔ SIMPLE & RIFINED DESIGN - This 3-light vanity fixture with thick clear glass shades in a modern and sleek brushed nickel finish, it is perfect in bathrooms, kitchen or bedroom. ✔ BULBS INCLUDED - Compatible with LED bulb, 3x E26 vintage edison S-type/Me'),
(13, 1, 'Modern Scandinavian', 60, 'products\\September2020\\OsbgjwYbCnkge0DBKqWE.jpg', '2020-09-02 10:22:54', '2020-09-02 10:22:54', 'products\\September2020\\6TLFARM33cjjwdO0iJGH.jpg', 'products\\September2020\\nTGcZ10bnqWYg7pSzdul.jpg', 'products\\September2020\\FBd8VOz73ioTPJZft7Kf.jpg', NULL, '[ Minimalist & Charming ] Crafted of the hardest metal, equipped with stunning clear glass globe shades to ensure a gorgeous glow, the bathroom light presents a minimalist and charming look, and will add a modern chic element to your spaces with its golde'),
(14, 1, '<NAME>', 300, 'products\\September2020\\rn4o4lUpDGjXHSl0PZI5.jpg', '2020-09-02 10:25:11', '2020-09-02 10:25:11', 'products\\September2020\\zlcDf3k9ygBk2EmUbRF5.jpg', 'products\\September2020\\1p8dG785Ua2KEF38bWPg.jpg', 'products\\September2020\\CzwKIM4PD7O2G1CAOtQs.jpg', NULL, 'Style: Inspired by farmhouse natural materials, we combine the round wagon wheel and triangle structure into this retro and rustic chandeliers. Light Fixtures Size: 25.6 inches in diameter, 20 inches in height. Hanging chain length 39\" (100CM, adjustable)'),
(15, 1, 'Table lamp-Desk lamp-Edison', 59, 'products\\September2020\\W4qEerWSgHnrinaIXik0.jpg', '2020-09-02 10:26:15', '2020-09-02 10:26:15', 'products\\September2020\\skHEfC17yCHjS6gq5oau.jpg', 'products\\September2020\\fu5mKDUMOX54givG6Je5.jpg', 'products\\September2020\\OS007mlf2rfceb6RIfg7.jpg', NULL, 'QUALITY MATERIALS: Exquisite metal & wood pendant lamp and ancient ways finish. The hand-finished surface will add a stylish touch. Nice French country round chandelier light. DIMENSION:Canopy: 5\". Lamp Body: 7.8\"L x 11.8\"H, Metal Chain Length: Max 59\"-Mi'),
(16, 1, 'Wall Lighting', 158, 'products\\September2020\\7JWc7WRGZASPidHcBJQV.jpg', '2020-09-02 10:27:32', '2020-09-02 10:27:32', 'products\\September2020\\RQGPq2M6wYOEtdpsPhcW.jpg', 'products\\September2020\\SHnQraheyCQ3rEOfG4WA.jpg', 'products\\September2020\\sFmWLjLg7KvgvGdIGxdX.jpg', NULL, 'Plug in hanging light comes with adjustable 11.5ft plug in light cord and essential hanging hardwired to meet your need of lighting. NOTE: Bulb is not included. Hanging plug in light is easy to install. You just need to install the bulb and turn on/off th'),
(17, 2, 'Blue Water Perfume Oil', 300, 'products\\September2020\\R2r1EYvsZOicGkQZHkqL.jpg', '2020-09-02 10:30:37', '2020-09-02 10:30:37', 'products\\September2020\\J7NIn9s1PYinIgTtUEys.jpg', 'products\\September2020\\cMWc2lnQSwOW811tMOYc.jpg', NULL, NULL, 'Reed Diffuser Liquid Refill 175 mL / 5. 9 fl. oz The NEST Fragrances Grapefruit Reed Diffuser Refill fragrance oil includes notes of pink pomelo grapefruit and watery nuances that are blended with lily of the valley and coriander blossom. Pair with the NE'),
(18, 2, 'Empire Gift Set', 49, 'products\\September2020\\46av6CQP0xLPMCImK8xl.jpg', '2020-09-02 10:32:00', '2020-09-02 10:33:25', NULL, NULL, NULL, NULL, 'This product is firm hold and natural finish Factor such as dry or oily skin can even affect the amount of time a fragrance will last after being applied When applying any fragrance please consider that there are several factors which can affect the natur'),
(19, 2, 'Oil Warmer', 43, 'products\\September2020\\nZtHjyDNi6GVEYjPZyHv.jpg', '2020-09-02 10:34:34', '2020-09-02 10:34:34', 'products\\September2020\\cVrHf4yex35X2WdjwVt0.jpg', 'products\\September2020\\whSoVUhLqPzXQQLmwthm.jpg', NULL, NULL, 'no candles and aromatherapy essential oil. Multi-Functions-Can be used as a diffuser, burner, or Great Decoration for Living Room, Balcony, Patio, Porch & Garden. SIZE Dimension:Bottom diameter: 4.75 inch,height 3.14 (12cmx8cm), essential oil and candle a'),
(20, 2, 'Reed diffuser and fragrance flower', 56, 'products\\September2020\\ImTw5ZGP3oBqYgh3yTeo.jpg', '2020-09-02 10:35:45', '2020-09-02 10:35:45', 'products\\September2020\\KDiJEKYFPIOjgngiuCC5.jpg', 'products\\September2020\\4olbikT0EWgbeb5fy4Yn.jpg', 'products\\September2020\\FR4RLinCET1cuwa9K7ZU.jpg', NULL, '🌼 A fragrance that is as memorable as it is luxurious. English Garden embraces all that is graceful & elegant with lush notes of smooth jasmine, sheer roses, heady hyacinth, creamy lily of the valley, lavish oak moss & subtle musk. 🌼 Thoughtful Gift Idea '),
(21, 2, '<NAME>', 78, 'products\\September2020\\tcB3rEFDmIByUuJyd0CN.jpg', '2020-09-02 10:37:24', '2020-09-02 10:37:24', NULL, NULL, NULL, NULL, 'His original creations had earned Paillasseur an international following before Korloff, which only grew with his offerings watches, accessories, eyewear, leather goods, haute couture and fragrances. Karloff has grown to become a global brand with boutiqu'),
(22, 2, 'Sundrunk', 84, 'products\\September2020\\R7ZkX7f7b8uCZTwvZKHJ.jpg', '2020-09-02 10:38:44', '2020-09-02 10:38:44', 'products\\September2020\\Fk3GB0PqpGX7j4OgXA1d.jpg', 'products\\September2020\\UrR71N3KHXL3oxvdAkd0.jpg', 'products\\September2020\\cICYtUVkJoTaLspRt4LK.jpg', NULL, 'Evoke a sense of home and comfort. Warm, mouthwatering and inviting. Unisex'),
(23, 3, 'Boho decor', 14, 'products\\September2020\\0jxaefaz2L1LrPJ06DLp.jpg', '2020-09-02 10:40:43', '2020-09-02 10:40:43', 'products\\September2020\\OtXef9fAVSVEnQlLwjkL.jpg', 'products\\September2020\\FXtuJtSbF0mMShTsjvgC.jpg', 'products\\September2020\\xSpBKMalK2FvILZpbUqC.jpg', NULL, '✰ UNIQUE MODERN DESIGN: These pillow covers have a designer look and feel, will stands out in the mix. Fantastic quality will absolutely exceed your expectations. A textile fabric with an interesting and tribal design. Pairs well with Moroccan, Ethnic, Re'),
(24, 3, 'Cases Green', 25, 'products\\September2020\\MdabbO0lOXbRBewA1zL1.jpg', '2020-09-02 10:41:41', '2020-09-02 10:41:41', 'products\\September2020\\B9C59umNdwZbt5yUpamO.jpg', 'products\\September2020\\A6kmVCIhdzxuWzUZUhLi.jpg', 'products\\September2020\\UHQiImjKbb4AD5TIdtsb.jpg', 'products\\September2020\\5yp55QqnCPHOXgchGkp0.jpg', 'Great Fun for Your Christmas: This retro leaves throw pillow case is perfect for parties, wedding, carnivals, Christmas costume party, indoor or outdoor activities, prank and gag gifts etc. Special Decoration for Your Home: Unique farmhouse couch pillows '),
(25, 3, 'Decorative Throw Pillow', 34, 'products\\September2020\\QsYdMmCcnxvji0AIPp32.jpg', '2020-09-02 10:42:54', '2020-09-02 10:42:54', 'products\\September2020\\KgOQZnPipwQ5HASdtaKj.jpg', 'products\\September2020\\gf7KP2KwaFVUx87twsrB.jpg', NULL, NULL, 'Acrylic MATERIAL: Made of 100% acrylic woolen yarn with lovely pompoms fringes. The premium material is anti-pilling, no fade and no deformation. Soft against the skin and warm touch, ideal for sensitive skin and tender. SIZE AND PACKING: 18 x 18 in/45 x '),
(26, 3, 'Lumbar Pillow', 14, 'products\\September2020\\RBCp3ogGNJegaBESmkbm.jpg', '2020-09-02 10:44:00', '2020-09-02 10:44:20', 'products\\September2020\\2eaRNXFhxqL9aadKjnsS.jpg', 'products\\September2020\\WW4kxy6FlkpO6EP5XXfe.jpg', 'products\\September2020\\1QHVICpnFfcoBkvZqehE.jpg', NULL, 'Accent your home with Hofdeco His and Her Gray Infinite Love pillow covers and make yourself the envy of the neighborhood. Made from HEAVY Weight Cotton Linen fabric, this decorative pillow cover is comfortable, and crafted for durability with fine detail'),
(27, 3, 'Small Faux Cow', 16, 'products\\September2020\\U1MZonQSV1EurYEhI0l6.jpg', '2020-09-02 10:45:35', '2020-09-02 10:45:35', 'products\\September2020\\7w9k0EJ2Yv8Z7VCQojRH.jpg', NULL, NULL, NULL, 'Material: Cotton Linen Blend. Size: 20x20 inch/ 50x50cm. Invisible/hidden zipper. Both sides have same design. Cushion covers ONLY(2 pieces). No Insert. No Filler. EASY CARE & WASH: Machine washable, Maximum temperature 30℃, gentle cycle. Do not bleach. T'),
(28, 3, 'Triangle geometry', 19, 'products\\September2020\\jnkXiqUl6wbCgDS6LWGQ.jpg', '2020-09-02 10:46:20', '2020-09-02 10:46:20', NULL, NULL, NULL, NULL, 'WIDE APPLICATIONS: home, bedroom, bed, living room, sofa, couch, bench, floor, office, chair, car, party, wedding, dining room, outdoor and so on. These cushion covers could perfectly match with all kinds of furniture'),
(29, 4, 'Acrylic Vase', 16, 'products\\September2020\\45ovjbsMqsSE9I62woht.jpg', '2020-09-02 10:48:33', '2020-09-02 10:48:33', 'products\\September2020\\OWavwF095q82ZPabhbVY.jpg', 'products\\September2020\\q7EuM9jV4ThcQlhGCDRG.jpg', 'products\\September2020\\QlvGHi7QefW2bUEQx4nI.jpg', NULL, '🌵【TIMING FUNCTION】: The warm white LED lights is with timer function 6h on and 18h off, turn on the switch, it will recycle automatically! Certainly if you do not want lights out for 18 hours, restart the switch'),
(30, 4, 'Ceramic Small', 26, 'products\\September2020\\Wp0KyPMPDUmvcNz13Rxd.jpg', '2020-09-02 10:49:36', '2020-09-02 10:49:36', 'products\\September2020\\vKQvSp4B8SJ2DAqF7HGB.jpg', 'products\\September2020\\oSuOPpk8IlLAgIjiV179.jpg', 'products\\September2020\\GwAWUiYA2zZ158GKQW7O.jpg', 'products\\September2020\\DLQqjLhudgnalBQaKUTt.jpg', '5.59\" diameter x 8.66\"H 100% stoneware This mid-century vase with a reactive glaze finish has a feather design boasts a gold-finished top. Wipe clean with a soft, dry cloth.'),
(31, 4, 'Female Form Vase', 27, 'products\\September2020\\ESh7lxUFSvbvUDvH5AHL.jpg', '2020-09-02 10:51:05', '2020-09-02 10:51:05', 'products\\September2020\\xynCBN9Lc8CtEtxVM9ub.jpg', 'products\\September2020\\3gsoCTmfitXZVDU9H2iQ.jpg', 'products\\September2020\\LzfhSXB95z2TA1X0pbsl.jpg', NULL, 'STATEMENT PIECE: not just your typical vase, this face-shaped vase and planter is an art work in itself - matches minimalism, modern & sleek interior design DISPLAY: add vibrancy on your shelf, window ledge, console table in your entry way, night stand, c'),
(32, 4, 'Flower Vase', 36, 'products\\September2020\\LJvuLITSZs6vfbDXt8Mp.jpg', '2020-09-02 10:58:40', '2020-09-02 10:58:40', 'products\\September2020\\usQ7yVhVYRD0NpWPID5z.jpg', 'products\\September2020\\qxduGUTOEQPkyoamag05.jpg', 'products\\September2020\\aFt11NH083yBcjyCy1kw.jpg', 'products\\September2020\\bvkyHZdc2GOXeJ4SKdXX.jpg', 'Decoration: 8.7*5.1 Inch (22*13cm) Cylindrical decorative glass vase, rose-gold-color,high quality materials, simple and attractive.'),
(33, 4, 'Gucci round vase in Murano Glass', 123, 'products\\September2020\\TLGJxBFqxiyp6qfCIndQ.jpg', '2020-09-02 11:14:04', '2020-09-02 11:14:04', 'products\\September2020\\wSmC8I9Xeo79PJgCFWSt.jpg', 'products\\September2020\\Il6tPJOyo2du7pKUz8sn.jpg', 'products\\September2020\\OqpKWAcuRYqyueFhxOFy.jpg', NULL, 'Handcrafted from radiant green lead-free crystal and porcelain, it measures approximately 16 inches high x 8 inches wide and will be an ideal solution for all kinds of flowers, or decorative arrangements. Due to its classic design, it will easily compleme'),
(34, 4, 'Hand-Painted Vase', 32, 'products\\September2020\\RKLSuvhLjlpkG3qY4Cx7.jpg', '2020-09-02 11:15:04', '2020-09-02 11:15:04', 'products\\September2020\\9ZrDTiSbH4PcyckOARCv.jpg', 'products\\September2020\\ux1SSytPlxbnVkExXmxI.jpg', 'products\\September2020\\7jvZyKHYZVXye7lbOyBK.jpg', NULL, 'Perfect for small plants Has a unique hand-painted design Beautiful unique reactive glaze Each one will vary'),
(35, 5, 'Cowhide Rug', 98, 'products\\September2020\\9Pm84tNltaUMne2lb6XW.jpg', '2020-09-02 11:16:30', '2020-09-02 11:16:30', NULL, NULL, NULL, NULL, 'Allows you to unleash your wild side and take your home design to a new level Featuring deep, warm colors, this Cow Print Rug will easily incorporate into almost any design scheme, at home or the office Ample 55\" x 62\" size is the perfect choice to fill a'),
(36, 5, 'Large Indian rugs', 68, 'products\\September2020\\EARchrLfM8ABfJ7SMWLk.jpg', '2020-09-02 11:18:00', '2020-09-02 11:18:00', 'products\\September2020\\QN0feUx1qPxejfNVbpfQ.jpg', 'products\\September2020\\XHpaCnqUakdP67gkcza9.jpg', 'products\\September2020\\W1jDsmvJQ4j5iMmTgYWN.jpg', NULL, 'Handwoven Collection - 100% Cotton handmade rugs are manually without the aid of machinery.Finished with tassel fringe for a accent decor in any space, bring a subtly textured look to your space. Traditional Manual Printing - Real Pure Handmade Black and '),
(37, 5, 'Medallion Pattern', 46, 'products\\September2020\\ss1PaswwLzsIuZKAMpKz.jpg', '2020-09-02 11:19:16', '2020-09-02 11:19:16', 'products\\September2020\\WRZ5l1lKh7PBQd9Sm5ET.jpg', 'products\\September2020\\Ef1mh77n95Gk61zZA9cr.jpg', 'products\\September2020\\lLm3DxIg6tcn7ElHjokg.jpg', NULL, 'Pile: 100% Polypropylene, Backing: 100% Jute Imported Inspired by traditional Persian textiles, this eye-catching design features a color-splashed, faded, all-over medallion pattern. Durable, machine-woven synthetic fibers keep this rug looking fresh and '),
(38, 5, '<NAME>', 78, 'products\\September2020\\JRX1tdCTZCo6eubw3IDP.jpg', '2020-09-02 11:20:44', '2020-09-02 11:20:44', 'products\\September2020\\UB7SGIy6zf84vy66pKvT.jpg', 'products\\September2020\\3wAzcP247q5tU5gSyTax.jpg', 'products\\September2020\\OtwoJbzxkZtDC5BNLwkB.jpg', NULL, 'Designed with resilience against everyday wear-and-tear, this rug is kid and pet friendly and perfect for high traffic areas of your home such as living room, dining room, kitchen, and hallways Sleek and functional 0.37” pile height allows for convenient '),
(39, 5, 'Southwest Rug', 97, 'products\\September2020\\nXg1xAgdqbGOxhB2SUGw.jpg', '2020-09-02 11:27:22', '2020-09-02 11:27:22', 'products\\September2020\\IDjHg779YVyYVnnw0VSX.jpg', 'products\\September2020\\h50ueUlWOungt3oPVwXd.jpg', 'products\\September2020\\pcpwS7IP6tjxKjzYPXXx.jpg', NULL, 'OLD-TIME ROMANCE: The stunning, arrow-inspired pattern is accentuated by bold, modern colors. This eye-catching rug will add an interesting statement to any décor. BEST VALUE FOR MONEY: You don’t have to break the bank to elevate your decor! This gorgeous'),
(40, 5, 'VintageRugBoutigue', 85, 'products\\September2020\\hfG6Rq3DUJalm1uinzy5.jpg', '2020-09-02 11:33:56', '2020-09-02 11:33:56', 'products\\September2020\\5Cg5pybuPd9gz0KH9fQG.jpg', 'products\\September2020\\fEyD4r4R3oz02VAWhcsQ.jpg', 'products\\September2020\\egq1Vr12ryAsBXTQRhc7.jpg', NULL, 'An eye-catching centerpiece for any room; bring classic charm to your décor Made from synthetic fibers that naturally hold their color and are stain resistant Easy care; vacuum and spot clean with mild detergent Rug measures 1-foot 11-inches by 7-feet 4-i'),
(41, 6, 'A Lonely Owl', 95, 'products\\September2020\\8itxznLbxrCZXRCLUeQV.jpg', '2020-09-02 11:36:21', '2020-09-02 11:36:21', 'products\\September2020\\xVkWgdz4j70oG3ymoY8g.jpg', 'products\\September2020\\DV3xIBi7eT8MGNubAIDf.jpg', NULL, NULL, 'Decorative handmade beautiful Amber mosaic beveled round wall mirror Uniquely crafted and designed by Lulu, a stunning piece on it\'s own Elegant and well made, will match most wall decor and furniture Mosaic frame measures 19\", beveled mirror measures 11\"'),
(42, 6, 'Decorative Mirror', 79, 'products\\September2020\\ACEENrMoPdWGr4YLWVFr.jpg', '2020-09-02 11:38:10', '2020-09-02 11:38:10', 'products\\September2020\\jqtkFIW5tlzkJvnQT2cM.jpg', 'products\\September2020\\5pRsWqOnRLnBv3JoxS6K.jpg', 'products\\September2020\\nP6RTm5ZdrPJvMo5YOD1.jpg', 'products\\September2020\\Cv7UzLsbqA23uzaylpO6.jpg', 'Chic round wall mirror adds a little extra shine to any modern or contemporary décor Dimensional layers of shimmering crystals clear beads reflect light to brighten up your space Constructed of metal, glass and acrylic, mirror arrives ready to hang Hangs '),
(43, 6, 'gold rhombus mirrors', 45, 'products\\September2020\\07s0KeJxZyp3F73o8VX9.jpg', '2020-09-02 11:42:43', '2020-09-02 11:42:43', 'products\\September2020\\SMuAgitrH3r2djyS4L4V.jpg', 'products\\September2020\\vYz66rrk1lnyDr1PJp18.jpg', 'products\\September2020\\ZQ38sNJ5bpmHBalvKa5K.jpg', NULL, '❤️FACILITATE MAKEUP EVEN ON THE GO: Make your life easier from now on with this lovely round mirror. Apply makeup and other cosmetics effortlessly even on the go. Save your precious time and energy with this compact mirror. Eliminate accidents, complement'),
(44, 6, 'Mirror Rattan Round', 68, 'products\\September2020\\VTZ4s6h9WcW99vKUJU9K.jpg', '2020-09-02 11:48:00', '2020-09-02 11:48:00', 'products\\September2020\\2QF4F12YQqu9PLs4ydAO.jpg', 'products\\September2020\\tMFFkG0lM8ej3tmRA3mq.jpg', 'products\\September2020\\sklpuhjg1HZlAVIbnEBi.jpg', 'products\\September2020\\VY7PDMnPRdlHsSJh04c1.jpg', '32\" wide x 32\" high x 3 1/2\" deep. Glass only section is 22\" wide x 22\" high. Surrounding frame is 5\" wide. Beveled edge is 1\" wide. Coastal round wall mirror by Noble Park. Vertical installation only. D-rings hangers on the back. Natural rattan weave and'),
(45, 6, 'Mosaic Tray Mirror', 83, 'products\\September2020\\3xKvU5PskPfGlue6TCHd.jpg', '2020-09-02 11:50:22', '2020-09-02 11:50:22', 'products\\September2020\\F22SL3TZaZxBLcSMaN4A.jpg', 'products\\September2020\\PLNCHUtN4RWyydWaX8un.jpg', 'products\\September2020\\kKVIwB4nm5sNzidSwXZY.jpg', NULL, '32\" wide x 32\" high x 3 1/2\" deep. Glass only section is 22\" wide x 22\" high. Surrounding frame is 5\" wide. Beveled edge is 1\" wide. Coastal round wall mirror by Noble Park. Vertical installation only. D-rings hangers on the back. Natural rattan weave and'),
(46, 6, 'Stonebriar Decorative', 62, 'products\\September2020\\OtjDv9m73yJieHG9J2vJ.jpg', '2020-09-02 12:05:56', '2020-09-02 12:05:56', 'products\\September2020\\1dinuxk5HgrAVEbDMDsC.jpg', 'products\\September2020\\GZXoS0pTU1HJGpFxDJm0.jpg', 'products\\September2020\\YEkgtKyzrIuBDU8t17Cf.jpg', NULL, 'Nullify Imported Mounting Type: Sawtooth'),
(47, 6, 'Stonebriar Sunburst Wall mirror', 64, 'products\\September2020\\dpZ6fRjqlmyr27eae1Dl.jpg', '2020-09-02 12:15:01', '2020-09-02 12:15:01', 'products\\September2020\\ipvTNkkrPwKiGJfblZog.jpg', 'products\\September2020\\grpNVe5XlQBl0UbIBhlj.jpg', NULL, NULL, 'Nullify This stylish mirror features a unique wire metal sunburst frame with an antique gold finish & a beveled glass mirror with crystal clear reflection Measuring at 24\" diameter with gold frame and 8. 7\" diameter for the mirror alone, this elegant mirr'),
(48, 6, 'Gold Circle and Rectangle Layered Wall Accent Mirror', 48, 'products\\September2020\\YjvLEVNZfMWAyf2jwaXY.jpg', '2020-09-02 12:19:45', '2020-09-02 12:19:45', 'products\\September2020\\jlZyBcnbLMYvzJ8ojlAI.jpg', 'products\\September2020\\zz0KgsXDUHmU47PQfZLI.jpg', NULL, NULL, 'No Crisp modern gold wall mirror featured in a dimensional narrow metal frame It\'s cut out overlapping design feature two rectangles layered over the mirror Mirror measures 24 inches tall x 21 inches wide Hangs securely to any surface with durable hangers'),
(49, 6, 'Nordic Scandinavian', 43, 'products\\September2020\\8tl6oAZy4SCO7As7uU5n.jpg', '2020-09-02 12:22:17', '2020-09-02 12:22:17', 'products\\September2020\\tSBZjw9hTwpzpfwOq4kU.jpg', 'products\\September2020\\TC1AEp4cx1WTLcOt3urn.jpg', 'products\\September2020\\EOlG70gIbEL2etql7aGG.jpg', NULL, 'Made of Rattan and Mirrored Glass A Natural finish Securely constructed Mounting hardware is not included'),
(50, 6, 'Zuo A12157 Mirror,', 43, 'products\\September2020\\LbvVMPUnqk8DXPLWgOSc.jpg', '2020-09-02 12:34:30', '2020-09-02 12:34:30', 'products\\September2020\\TwpNBepuTWmtS8KlBycO.jpg', NULL, NULL, NULL, '26. 8\" W x . 8\" D x 11. 4\" H Made of Rattan and Mirrored Glass A Natural finish Securely constructed Mounting hardware is not included');
-- --------------------------------------------------------
--
-- Table structure for table `roles`
--
CREATE TABLE `roles` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`display_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 `roles`
--
INSERT INTO `roles` (`id`, `name`, `display_name`, `created_at`, `updated_at`) VALUES
(1, 'admin', 'Administrator', '2020-08-31 12:38:26', '2020-08-31 12:38:26'),
(2, 'user', 'Normal User', '2020-08-31 12:38:26', '2020-08-31 12:38:26');
-- --------------------------------------------------------
--
-- Table structure for table `settings`
--
CREATE TABLE `settings` (
`id` int(10) UNSIGNED NOT NULL,
`key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`display_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`details` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`order` int(11) NOT NULL DEFAULT 1,
`group` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `settings`
--
INSERT INTO `settings` (`id`, `key`, `display_name`, `value`, `details`, `type`, `order`, `group`) VALUES
(1, 'site.title', 'Site Title', 'Site Title', '', 'text', 1, 'Site'),
(2, 'site.description', 'Site Description', 'Site Description', '', 'text', 2, 'Site'),
(3, 'site.logo', 'Site Logo', '', '', 'image', 3, 'Site'),
(4, 'site.google_analytics_tracking_id', 'Google Analytics Tracking ID', '', '', 'text', 4, 'Site'),
(5, 'admin.bg_image', 'Admin Background Image', '', '', 'image', 5, 'Admin'),
(6, 'admin.title', 'Admin Title', 'Voyager', '', 'text', 1, 'Admin'),
(7, 'admin.description', 'Admin Description', 'Welcome to Voyager. The Missing Admin for Laravel', '', 'text', 2, 'Admin'),
(8, 'admin.loader', 'Admin Loader', '', '', 'image', 3, 'Admin'),
(9, 'admin.icon_image', 'Admin Icon Image', '', '', 'image', 4, 'Admin'),
(10, 'admin.google_analytics_client_id', 'Google Analytics Client ID (used for admin dashboard)', '', '', 'text', 1, 'Admin');
-- --------------------------------------------------------
--
-- Table structure for table `translations`
--
CREATE TABLE `translations` (
`id` int(10) UNSIGNED NOT NULL,
`table_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`column_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`foreign_key` int(10) UNSIGNED NOT NULL,
`locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` text 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 `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`role_id` bigint(20) UNSIGNED DEFAULT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`avatar` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`avatar_original` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`google_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`settings` text 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`, `password`, `avatar`, `avatar_original`, `google_id`, `email_verified_at`, `remember_token`, `settings`, `created_at`, `updated_at`) VALUES
(1, 1, 'admin', '<EMAIL>', <PASSWORD>', NULL, NULL, '', NULL, NULL, NULL, '2020-08-31 12:39:30', '2020-08-31 12:39:30'),
(2, 2, '<NAME>', '<EMAIL>', <PASSWORD>gbX9v1npyqrLcDb.y2Wy8pNehV98JT3hrMxoot78KGtVsWK', NULL, NULL, '', NULL, NULL, NULL, '2020-08-31 13:08:20', '2020-08-31 13:08:20');
-- --------------------------------------------------------
--
-- Table structure for table `user_roles`
--
CREATE TABLE `user_roles` (
`user_id` bigint(20) UNSIGNED NOT NULL,
`role_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `banner`
--
ALTER TABLE `banner`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `brand`
--
ALTER TABLE `brand`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `data_rows`
--
ALTER TABLE `data_rows`
ADD PRIMARY KEY (`id`),
ADD KEY `data_rows_data_type_id_foreign` (`data_type_id`);
--
-- Indexes for table `data_types`
--
ALTER TABLE `data_types`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `data_types_name_unique` (`name`),
ADD UNIQUE KEY `data_types_slug_unique` (`slug`);
--
-- Indexes for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `menus`
--
ALTER TABLE `menus`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `menus_name_unique` (`name`);
--
-- Indexes for table `menu_items`
--
ALTER TABLE `menu_items`
ADD PRIMARY KEY (`id`),
ADD KEY `menu_items_menu_id_foreign` (`menu_id`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `news`
--
ALTER TABLE `news`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `orders`
--
ALTER TABLE `orders`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indexes for table `permissions`
--
ALTER TABLE `permissions`
ADD PRIMARY KEY (`id`),
ADD KEY `permissions_key_index` (`key`);
--
-- Indexes for table `permission_role`
--
ALTER TABLE `permission_role`
ADD PRIMARY KEY (`permission_id`,`role_id`),
ADD KEY `permission_role_permission_id_index` (`permission_id`),
ADD KEY `permission_role_role_id_index` (`role_id`);
--
-- Indexes for table `products`
--
ALTER TABLE `products`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `roles`
--
ALTER TABLE `roles`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `roles_name_unique` (`name`);
--
-- Indexes for table `settings`
--
ALTER TABLE `settings`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `settings_key_unique` (`key`);
--
-- Indexes for table `translations`
--
ALTER TABLE `translations`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `translations_table_name_column_name_foreign_key_locale_unique` (`table_name`,`column_name`,`foreign_key`,`locale`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`),
ADD KEY `users_role_id_foreign` (`role_id`);
--
-- Indexes for table `user_roles`
--
ALTER TABLE `user_roles`
ADD PRIMARY KEY (`user_id`,`role_id`),
ADD KEY `user_roles_user_id_index` (`user_id`),
ADD KEY `user_roles_role_id_index` (`role_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `banner`
--
ALTER TABLE `banner`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `brand`
--
ALTER TABLE `brand`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `data_rows`
--
ALTER TABLE `data_rows`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=67;
--
-- AUTO_INCREMENT for table `data_types`
--
ALTER TABLE `data_types`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26;
--
-- AUTO_INCREMENT for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `menus`
--
ALTER TABLE `menus`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `menu_items`
--
ALTER TABLE `menu_items`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=27;
--
-- AUTO_INCREMENT for table `news`
--
ALTER TABLE `news`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28;
--
-- AUTO_INCREMENT for table `orders`
--
ALTER TABLE `orders`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `permissions`
--
ALTER TABLE `permissions`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=82;
--
-- AUTO_INCREMENT for table `products`
--
ALTER TABLE `products`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
--
-- AUTO_INCREMENT for table `roles`
--
ALTER TABLE `roles`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `settings`
--
ALTER TABLE `settings`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `translations`
--
ALTER TABLE `translations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `data_rows`
--
ALTER TABLE `data_rows`
ADD CONSTRAINT `data_rows_data_type_id_foreign` FOREIGN KEY (`data_type_id`) REFERENCES `data_types` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `menu_items`
--
ALTER TABLE `menu_items`
ADD CONSTRAINT `menu_items_menu_id_foreign` FOREIGN KEY (`menu_id`) REFERENCES `menus` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `permission_role`
--
ALTER TABLE `permission_role`
ADD CONSTRAINT `permission_role_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `permission_role_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `users`
--
ALTER TABLE `users`
ADD CONSTRAINT `users_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`);
--
-- Constraints for table `user_roles`
--
ALTER TABLE `user_roles`
ADD CONSTRAINT `user_roles_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `user_roles_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE 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 */;
|
SET DEFINE OFF;
CREATE INDEX AFW_13_PREFR_FK1 ON AFW_13_PREFR
(REF_DV_CONDT_UTILS)
LOGGING
/
|
<gh_stars>1-10
INSERT IGNORE INTO `[#DB_PREFIX#]system_setting
` (`varname`, `value`) VALUES ('wecenter_website', 's:1:"N";'); |
CREATE TABLE subdivision_PH (id VARCHAR(6) NOT NULL, name VARCHAR(255), level VARCHAR(64) NOT NULL, PRIMARY KEY(id));
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-ABR', E'Abra', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-AGN', E'Agusan del Norte', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-AGS', E'Agusan del Sur', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-AKL', E'Aklan', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-ALB', E'Albay', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-ANT', E'Antique', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-APA', E'Apayao', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-AUR', E'Aurora', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-14', E'Autonomous Region in Muslim Mindanao', E'region');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-BAS', E'Basilan', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-BAN', E'Bataan', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-BTN', E'Batanes', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-BTG', E'Batangas', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-BEN', E'Benguet', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-05', E'Bicol', E'region');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-BIL', E'Biliran', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-BOH', E'Bohol', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-BUK', E'Bukidnon', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-BUL', E'Bulacan', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-CAG', E'Cagayan', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-02', E'Cagayan Valley', E'region');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-40', E'CALABARZON', E'region');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-CAN', E'Camarines Norte', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-CAS', E'Camarines Sur', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-CAM', E'Camiguin', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-CAP', E'Capiz', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-13', E'Caraga', E'region');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-CAT', E'Catanduanes', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-CAV', E'Cavite', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-CEB', E'Cebu', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-03', E'Central Luzon', E'region');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-07', E'Central Visayas', E'region');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-COM', E'Compostela Valley', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-15', E'Cordillera Administrative Region', E'region');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-NCO', E'Cotabato', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-11', E'Davao', E'region');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-DAV', E'Davao del Norte', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-DAS', E'Davao del Sur', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-DAO', E'Davao Oriental', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-DIN', E'Dinagat Islands', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-EAS', E'Eastern Samar', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-08', E'Eastern Visayas', E'region');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-GUI', E'Guimaras', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-IFU', E'Ifugao', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-01', E'Ilocos', E'region');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-ILN', E'Ilocos Norte', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-ILS', E'Ilocos Sur', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-ILI', E'Iloilo', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-ISA', E'Isabela', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-KAL', E'Kalinga', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-LUN', E'La Union', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-LAG', E'Laguna', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-LAN', E'Lanao del Norte', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-LAS', E'Lanao del Sur', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-LEY', E'Leyte', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-MAG', E'Maguindanao', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-MAD', E'Marinduque', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-MAS', E'Masbate', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-41', E'MIMAROPA', E'region');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-MDC', E'Occidental Mindoro', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-MDR', E'Oriental Mindoro', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-MSC', E'Misamis Occidental', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-MSR', E'Misamis Oriental', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-MOU', E'Mountain Province', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-00', E'Capital region', E'region');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-NEC', E'Negros Occidental', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-NER', E'Negros Oriental', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-10', E'Northern Mindanao', E'region');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-NSA', E'Northern Samar', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-NUE', E'Nueva Ecija', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-NUV', E'Nueva Vizcaya', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-PLW', E'Palawan', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-PAM', E'Pampanga', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-PAN', E'Pangasinan', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-QUE', E'Quezon', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-QUI', E'Quirino', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-RIZ', E'Rizal', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-ROM', E'Romblon', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-SAR', E'Sarangani', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-SIG', E'Siquijor', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-12', E'Soccsksargen', E'region');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-SOR', E'Sorsogon', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-SCO', E'South Cotabato', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-SLE', E'Southern Leyte', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-SUK', E'Sultan Kudarat', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-SLU', E'Sulu', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-SUN', E'Surigao del Norte', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-SUR', E'Surigao del Sur', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-TAR', E'Tarlac', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-TAW', E'Tawi-Tawi', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-WSA', E'Samar', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-06', E'Western Visayas', E'region');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-ZMB', E'Zambales', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-ZAN', E'Zamboanga del Norte', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-ZAS', E'Zamboanga del Sur', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-09', E'Zamboanga Peninsula', E'region');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-ZSI', E'Zamboanga Sibuguey', E'province');
INSERT INTO "subdivision_PH" ("id", "name", "level") VALUES (E'PH-MNL', E'', E'');
|
<reponame>mohammedelzanaty/myRoad2BeFullStack<filename>Udacity/nd001-mena-nfp3/Ch-03/booksshelf/backend/setup.sql
CREATE DATABASE bookshelf;
CREATE DATABASE bookshelf_test;
CREATE USER student WITH ENCRYPTED PASSWORD '<PASSWORD>';
GRANT ALL PRIVILEGES ON DATABASE bookshelf TO student;
GRANT ALL PRIVILEGES ON DATABASE bookshelf_test TO student;
ALTER USER student CREATEDB;
ALTER USER student WITH SUPERUSER; |
/*
Navicat MySQL Data Transfer
Source Server : local
Source Server Type : MySQL
Source Server Version : 50643
Source Host : localhost
Source Database : test
Target Server Type : MySQL
Target Server Version : 50643
File Encoding : utf-8
Date: 12/02/2021 16:18:46 PM
*/
SET NAMES utf8;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for `test`
-- ----------------------------
DROP TABLE IF EXISTS `test`;
CREATE TABLE `test` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
SET FOREIGN_KEY_CHECKS = 1;
|
CREATE TABLE foo (a text, b text);
/* name: StarExpansion :many */
SELECT *, *, foo.* FROM foo;
|
connect 'jdbc:derby://localhost:1527/city_aaa';
select id,name,population,date_mod from cities;
quit;
|
-- Verify userflips
SELECT id, nickname, fullname, twitter, body, timestamp
FROM flipr.userflips
WHERE FALSE;
|
-- reduce tech boost for babylon
INSERT OR IGNORE INTO Modifiers(ModifierId, ModifierType) VALUES
('BBG_TRAIT_BABYLON_EUREKA', 'MODIFIER_PLAYER_ADJUST_TECHNOLOGY_BOOST');
INSERT OR IGNORE INTO ModifierArguments(ModifierId, Name, Value, Extra) VALUES
('BBG_TRAIT_BABYLON_EUREKA', 'Amount', '45', '-1');
DELETE FROM TraitModifiers WHERE TraitType='TRAIT_CIVILIZATION_BABYLON' AND ModifierID='TRAIT_EUREKA_INCREASE';
INSERT OR IGNORE INTO TraitModifiers(TraitType, ModifierID) VALUES
('TRAIT_CIVILIZATION_BABYLON', 'BBG_TRAIT_BABYLON_EUREKA');
-- Babylon - Nalanda infinite technology re-suze fix.
-- Remove the trait modifier from the Nalanda Minor
-- This was the initial cause of the problem.
-- The context was destroyed when suzerain was lost, and recreated when suzerain was gained.
-- Moving the context to the Game instance solves this problem.
DELETE FROM TraitModifiers WHERE ModifierId="MINOR_CIV_NALANDA_FREE_TECHNOLOGY";
-- We don't care about these modifiers anymore, they are connected to the TraitModifier
DELETE FROM Modifiers WHERE ModifierId="MINOR_CIV_NALANDA_FREE_TECHNOLOGY_MODIFIER";
DELETE FROM Modifiers WHERE ModifierId="MINOR_CIV_NALANDA_FREE_TECHNOLOGY";
-- Attach the modifier to check for improvement to each player
INSERT OR IGNORE INTO Modifiers
(ModifierId, ModifierType)
VALUES
('MINOR_CIV_NALANDA_MAHAVIHARA', "MODIFIER_ALL_PLAYERS_ATTACH_MODIFIER");
-- Modifier to actually check if the improvement is built, only done once
INSERT OR IGNORE INTO Modifiers
(ModifierId, ModifierType, OwnerRequirementSetId, RunOnce, Permanent)
VALUES
('MINOR_CIV_NALANDA_MAHAVIHARA_TECH_ON_FIRST_BUILD', "MODIFIER_PLAYER_GRANT_RANDOM_TECHNOLOGY", "PLAYER_HAS_MAHAVIHARA", 1, 1);
INSERT OR IGNORE INTO ModifierArguments
(ModifierId, Name, Type, Value)
VALUES
('MINOR_CIV_NALANDA_MAHAVIHARA', 'ModifierId', 'ARGTYPE_IDENTITY', 'MINOR_CIV_NALANDA_MAHAVIHARA_TECH_ON_FIRST_BUILD'),
('MINOR_CIV_NALANDA_MAHAVIHARA_TECH_ON_FIRST_BUILD', 'Amount', 'ARGTYPE_IDENTITY', 1);
-- Modifier which triggers and attaches to all players when game is created
INSERT OR IGNORE INTO GameModifiers
(ModifierId)
VALUES
('MINOR_CIV_NALANDA_MAHAVIHARA');
-- to keep consistent with CV changes to base game great works
-- Great Artist
UPDATE GreatWork_YieldChanges SET YieldChange=4 WHERE GreatWorkType='GREATWORK_BEHZAD_1';
UPDATE GreatWork_YieldChanges SET YieldChange=4 WHERE GreatWorkType='GREATWORK_BEHZAD_1';
UPDATE GreatWork_YieldChanges SET YieldChange=4 WHERE GreatWorkType='GREATWORK_BEHZAD_2';
UPDATE GreatWork_YieldChanges SET YieldChange=4 WHERE GreatWorkType='GREATWORK_TOHAKU_1';
UPDATE GreatWork_YieldChanges SET YieldChange=4 WHERE GreatWorkType='GREATWORK_TOHAKU_2';
UPDATE GreatWork_YieldChanges SET YieldChange=4 WHERE GreatWorkType='GREATWORK_TOHAKU_3';
UPDATE GreatWork_YieldChanges SET YieldChange=4 WHERE GreatWorkType='GREATWORK_KANDINSKY_1';
UPDATE GreatWork_YieldChanges SET YieldChange=4 WHERE GreatWorkType='GREATWORK_KANDINSKY_2';
UPDATE GreatWork_YieldChanges SET YieldChange=4 WHERE GreatWorkType='GREATWORK_KANDINSKY_3';
-- Great Musician
UPDATE GreatWork_YieldChanges SET YieldChange=12 WHERE GreatWorkType='GREATWORK_BABYLON_CANTEMIR_1';
UPDATE GreatWork_YieldChanges SET YieldChange=12 WHERE GreatWorkType='GREATWORK_BABYLON_CANTEMIR_2';
UPDATE GreatWork_YieldChanges SET YieldChange=12 WHERE GreatWorkType='GREATWORK_BABYLON_CANTEMIR_3';
UPDATE GreatWork_YieldChanges SET YieldChange=12 WHERE GreatWorkType='GREATWORK_BABYLON_JOPLIN_1';
UPDATE GreatWork_YieldChanges SET YieldChange=12 WHERE GreatWorkType='GREATWORK_BABYLON_JOPLIN_2';
UPDATE GreatWork_YieldChanges SET YieldChange=12 WHERE GreatWorkType='GREATWORK_BABYLON_JOPLIN_3';
-- Reduce Imhotep to 1 charge
UPDATE GreatPersonIndividuals SET ActionCharges=1 WHERE GreatPersonIndividualType='GREAT_PERSON_INDIVIDUAL_IMHOTEP'; |
<gh_stars>0
CREATE TABLE IF NOT EXISTS players
(
uuid UUID NOT NULL PRIMARY KEY,
username TEXT NOT NULL,
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);
CREATE TABLE IF NOT EXISTS verifications
(
id BIGSERIAL NOT NULL PRIMARY KEY,
player_uuid UUID REFERENCES players (uuid) NOT NULL,
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);
CREATE TABLE IF NOT EXISTS verification_emails
(
id BIGSERIAL NOT NULL PRIMARY KEY,
verification_id BIGINT REFERENCES verifications (id),
code TEXT NOT NULL,
email TEXT NOT NULL,
verified_at TIMESTAMP,
expires_at TIMESTAMP NOT NULL,
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
UNIQUE (verification_id, code, email)
);
|
-- database: presto; groups: insert; mutable_tables: datatype|created;
-- delimiter: |; ignoreOrder: true;
--!
insert into ${mutableTables.hive.datatype} values(5 * 10, 4.1 + 5, 'abc', cast('2014-01-01' as date), cast('2015-01-01 03:15:16 UTC' as timestamp), TRUE);
select * from ${mutableTables.hive.datatype}
--!
50|9.1|abc|2014-01-01|2015-01-01 03:15:16|true|
|
INSERT INTO `emr_billing_component_cost` (`emr_name`, `emr_cost`) VALUES
('exploratory-sales',700),
('scheduled-sales',1000),
('exploratory-sales-test1',500);
|
create database jdbc_streaming_db;
\c jdbc_streaming_db;
create table reference_table (
ip VARCHAR(50) NOT NULL,
name VARCHAR(50) NOT NULL,
location VARCHAR(50) NOT NULL
);
DO $$
DECLARE
counter INTEGER := 1 ;
ipTemplate VARCHAR(50) := '10.%s.1.1';
nameTemplate VARCHAR(50) := 'ldn-server-%s';
locationTemplate VARCHAR(50) := 'LDN-%s-2-3';
BEGIN
WHILE counter <= 250
LOOP
INSERT INTO reference_table
VALUES ((SELECT FORMAT(ipTemplate, counter)),
(SELECT FORMAT(nameTemplate, counter)),
(SELECT FORMAT(locationTemplate, counter)));
counter = counter + 1;
END LOOP;
END $$;
create database jdbc_static_db;
\c jdbc_static_db;
create table reference_table (
ip VARCHAR(50) NOT NULL,
name VARCHAR(50) NOT NULL,
location VARCHAR(50) NOT NULL
);
INSERT INTO reference_table VALUES ('10.1.1.1', 'ldn-server-1', 'LDN-2-3-4');
INSERT INTO reference_table VALUES ('10.2.1.1', 'nyc-server-1', 'NYC-5-2-8');
INSERT INTO reference_table VALUES ('10.3.1.1', 'mv-server-1', 'MV-9-6-4');
create DATABASE jdbc_input_db;
\c jdbc_input_db;
CREATE TABLE employee (
emp_no integer NOT NULL,
first_name VARCHAR (50) NOT NULL,
last_name VARCHAR (50) NOT NULL
);
INSERT INTO employee VALUES (1, 'David', 'Blenkinsop');
INSERT INTO employee VALUES (2, 'Mark', 'Guckenheimer');
|
<filename>docker/postgresql/init.sql<gh_stars>1-10
CREATE TABLE employees
(
id int NOT NULL,
username varchar(50) NOT NULL,
name varchar(250),
manager varchar(250),
salary int,
phoneNumber varchar(50)
);
INSERT INTO employees (id, username, name, manager, salary, phoneNumber) VALUES(1, 'joffer', '<NAME>', '<NAME>', 66000, '1234567');
INSERT INTO employees (id, username, name, manager, salary, phoneNumber) VALUES(2, 'alice', '<NAME>', '<NAME>', 63000, '1234567');
INSERT INTO employees (id, username, name, manager, salary, phoneNumber) VALUES(3, 'bob', '<NAME>', '<NAME>', 50000, '1234567');
INSERT INTO employees (id, username, name, manager, salary, phoneNumber) VALUES(4, 'mongkoy', '<NAME>', '<NAME>', 73000, '1234567');
INSERT INTO employees (id, username, name, manager, salary, phoneNumber) VALUES(5, 'peter', '<NAME>', 'Wella Opalla', 35000, '1234567');
INSERT INTO employees (id, username, name, manager, salary, phoneNumber) VALUES(6, 'john', '<NAME>', 'Wella Opalla', 66000, '1234567');
INSERT INTO employees (id, username, name, manager, salary, phoneNumber) VALUES(7, 'janice', '<NAME>', 'Wella Opalla', 33000, '1234567');
INSERT INTO employees (id, username, name, manager, salary, phoneNumber) VALUES(8, 'dora', 'Dora Explorer', '<NAME>', 49000, '1234567');
INSERT INTO employees (id, username, name, manager, salary, phoneNumber) VALUES(9, 'leo', '<NAME>', '<NAME>', 43000, '1234567');
INSERT INTO employees (id, username, name, manager, salary, phoneNumber) VALUES(10, 'muning', '<NAME>', '<NAME>', 69000, '1234567');
|
<reponame>jianchun618/springboot-learning-experience<gh_stars>100-1000
CREATE DATABASE mytest;
CREATE TABLE t_user(
userId INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
userName VARCHAR(255) NOT NULL ,
password VARCHAR(255) NOT NULL ,
phone VARCHAR(255) NOT NULL
) ENGINE=INNODB AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8; |
<reponame>rochakchauhan/commcare-hq
ALTER TABLE agg_awc ADD COLUMN electricity_awc integer;
ALTER TABLE agg_awc ADD COLUMN infantometer integer;
ALTER TABLE agg_awc ADD COLUMN stadiometer integer;
|
ANALYZE TABLE orders DELETE STATISTICS;
ANALYZE INDEX inv_product_ix VALIDATE STRUCTURE;
ANALYZE TABLE employees VALIDATE STRUCTURE CASCADE;
ANALYZE TABLE customers VALIDATE REF UPDATE;
ANALYZE TABLE customers VALIDATE STRUCTURE ONLINE;
ANALYZE CLUSTER personnel
VALIDATE STRUCTURE CASCADE;
ANALYZE TABLE orders
LIST CHAINED ROWS INTO chained_rows;
|
--+ holdcas on;
---- ALTER TABLE ... CHANGE COLUMN
-- class attribute
-- type change from int
-- int to short
create table t1 class attribute (c_i integer) ( i integer ) ;
insert into t1 values (1),(2);
update t1 set class t1.c_i=-1;
select class t1.c_i, i from t1 order by 1,2;
show columns in t1;
alter table t1 change class attribute c_i c_s short;
select class t1.c_s, i from t1 order by 1,2;
show columns in t1;
drop table t1;
-- int to float
create table t1 class attribute (c_i integer) ( i integer ) ;
insert into t1 values (1),(2);
update t1 set class t1.c_i=-1;
select class t1.c_i, i from t1 order by 1,2;
show columns in t1;
alter table t1 change class attribute c_i c_f float;
select class t1.c_f, i from t1 order by 1,2;
show columns in t1;
drop table t1;
-- int to date
-- unsupported
create table t1 class attribute (c_i integer) ( i integer ) ;
insert into t1 values (1),(2);
update t1 set class t1.c_i=-1;
select class t1.c_i, i from t1 order by 1,2;
show columns in t1;
alter table t1 change class attribute c_i d date;
select class t1.c_i, i from t1 order by 1,2;
show columns in t1;
drop table t1;
-- int to varchar
create table t1 class attribute (c_i integer) ( i integer ) ;
insert into t1 values (1),(2);
update t1 set class t1.c_i=-1;
select class t1.c_i, i from t1 order by 1,2;
show columns in t1;
alter table t1 change class attribute c_i s varchar(10);
select class t1.s, i from t1 order by 1,2;
show columns in t1;
drop table t1;
-- int to varchar, value too big
-- STRICT OR PERMISSIVE ALTER CHANGE MODE should not apply for CLASS ATTRIBUTE
-- this should fail according to cast
create table t1 class attribute (c_i integer) ( i integer ) ;
insert into t1 values (1),(2);
update t1 set class t1.c_i=123456;
select class t1.c_i, i from t1 order by 1,2;
show columns in t1;
alter table t1 change class attribute c_i s varchar(5);
select class t1.s, i from t1 order by 1,2;
show columns in t1;
drop table t1;
-- int to varchar, value too big , strict_mode
-- STRICT MODE should not apply for CLASS ATTRIBUTE
set system parameters 'alter_table_change_type_strict=yes';
set system parameters 'error_log_level=warning';
set system parameters 'error_log_warning=yes';
create table t1 class attribute (c_i integer) ( i integer ) ;
insert into t1 values (1),(2);
update t1 set class t1.c_i=123456;
select class t1.c_i, i from t1 order by 1,2;
show columns in t1;
alter table t1 change class attribute c_i s varchar(5);
select class t1.s, i from t1 order by 1,2;
show columns in t1;
drop table t1;
set system parameters 'alter_table_change_type_strict=no';
commit;
--+ holdcas off;
|
-- Generating points from the trajectory linestring data so that
-- I can compare them with cells coordinates.
-- Using ST_Within I can check which points are inside the grid cells and associate them with the cell.
http://postgis.net/workshops/postgis-intro/spatial_relationships.html
SELECT ST_AsText(
ST_PointN(
t.trajectory,
generate_series(1, ST_NPoints(d.trajectory))
)) as TrajPoints
into table traj_points
FROM traj_table t;
-- experitmenting with st_within, to check points which are inside grid cells. To eventually store the cells and points in a seperate table.
-- putting data into new table to test
select st_astext(coordinates) as cell, st_astext(geom_point) as poi
into table test_st_within_grid_02
from cells, poi
limit 50
-- fixing polygon issues. first & last element of polygon should be same.
UPDATE public.cells
SET grid_id=null, cell_names=null, coordinates=null;
-- Deleting previous data
DELETE FROM public.cells;
-- Imported data already, now setting srid.
update cells set coordinates = st_setsrid(coordinates, 4326)
-- inserted new stuff inside grid table.
INSERT INTO public.grids(
grid_id, x_dim, y_dim)
VALUES (108.0,2,3);
-- Retrieving points that are inside grid cells and associating them.
-- ST_Within(geometry A , geometry B) returns TRUE if the first geometry is completely within the second geometry
select distinct cell_names, st_astext(geom_point), st_astext(coordinates)
from cells, poi
where st_within(geom_point, coordinates)
-- Retrieving distinct grid_cells.
select distinct grid_cells from poi_cell_association;
-- Retrieving all points inside first grid cell i.e., C00
select poi
from poi_cell_association
where cell_names = 'C00'
-- Creating new cell table to avoid importing 'more data error.'
create table cells_01 (
cell_id serial primary key, -- Making id serial type helps in importing more data into the table. You can also leave column from the import.
grid_id float references grids(grid_id),
cell_names text,
coordinates geometry
)
-- removing unneccasary stuff.
delete from cells_01
where cell_id >= 7
-- getting unique polygon.
select distinct st_astext(coordinates)
from cells_01
-- getting object trajectory:
select * from traj
where obj_id = 37
-- Adding more data into cells.
\\copy public.cells (grid_id, cell_names, coordinates) FROM 'C:/Users/saim/DOCUME~1/POI_CL~1/POSTGR~1/AREA_C~1.CSV' DELIMITER ',' CSV HEADER QUOTE '\"' ESCAPE '''';""
"C:\\Program Files (x86)\\pgAdmin 4\\v4\\runtime\\psql.exe" --command " "\\copy public.cells (grid_id, cell_names, coordinates) FROM 'C:/Users/saim/DOCUME~1/POI_CL~1/POSTGR~1/AREA_C~1.CSV' DELIMITER ',' CSV HEADER QUOTE '\"' ESCAPE '''';""
-- poi cell association from only one grid.
select poi_id, cell_id, grid_id
from poi, cells
where st_within(geom_point, coordinates) and grid_id = 216
-- poi cell association table
select poi_id, cell_id, grid_id into table poi_cell_association
from poi, cells
where st_within(geom_point, coordinates) and grid_id = 216
-- Checking distance stuff:
SELECT ST_Distance(
ST_GeomFromText('POINT(43.775502 -79.521692)',4326),
ST_GeomFromText('POINT(43.763545 -79.491160)', 4326)
);
st_distance
0.032 -- which is around 3.2km.
-- associating trajectories and POIs within 100m of each other.
select obj_id, traj_id, poi_id
from poi, traj
where ST_DWithin(traj_path, geom_point, 0.001)
order by obj_id;
-- stroing results in a traj_poi_association table.
select obj_id, traj_id, poi_id into table traj_poi_association
from poi, traj
where ST_DWithin(traj_path, geom_point, 0.001)
order by obj_id;
-- fetching unique trajectories from traj_poi_association.
select distinct traj_id
from traj_poi_association
order by traj_id
-- running inner join from traj_poi_association on traj table to fetch traj paths.
select distinct tp.traj_id, tr.traj_id, st_astext(tr.traj_path)
from traj_poi_association tp
inner join traj tr on tp.traj_id = tr.traj_id
order by tp.traj_id
|
-- CreateTable
CREATE TABLE "User" (
"id" TEXT NOT NULL,
"officialEmail" TEXT NOT NULL,
"personalEmail" TEXT,
"username" TEXT NOT NULL,
"staffId" TEXT NOT NULL,
"password" TEXT NOT NULL,
"birthdate" TIMESTAMP(3),
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"updatedAt" TIMESTAMP(3) NOT NULL,
CONSTRAINT "User_pkey" PRIMARY KEY ("id")
);
-- CreateIndex
CREATE UNIQUE INDEX "User_officialEmail_key" ON "User"("officialEmail");
-- CreateIndex
CREATE UNIQUE INDEX "User_personalEmail_key" ON "User"("personalEmail");
-- CreateIndex
CREATE UNIQUE INDEX "User_username_key" ON "User"("username");
-- CreateIndex
CREATE UNIQUE INDEX "User_staffId_key" ON "User"("staffId");
-- CreateIndex
CREATE INDEX "User_id_officialEmail_username_staffId_idx" ON "User"("id", "officialEmail", "username", "staffId");
|
SELECT * FROM PROXY_CONFIGS
WHERE DELETE_FLAG = 0;
|
SELECT
geometrie,
netzgebiet_name,
betreiber,
konflikt,
konflikt_code.dispname AS konflikt_txt
FROM
awa_netzbetreiber_strom.netzbetrebr_strom_ebene_5
LEFT JOIN awa_netzbetreiber_strom.netzbtrbr_strom_netzbetreiber_konflikt AS konflikt_code
ON konflikt = konflikt_code.ilicode
;
|
<gh_stars>0
-- Quais os paises cadastrados no BD?
SELECT * FROM pais
-- Nomes dos continentes
SELECT nome FROM continente
-- Continentes dos Paises Cadastrados no DB
SELECT continente_id FROM pais
GROUP BY continente_id
-- Qual é a Capital da Finlândia?
SELECT capital FROM pais p
WHERE p.nome = "Finlândia"
-- Paises Asiaticos que obterem a independecia depois de 1950?
SELECT d_ref_hist, nome FROM pais p
WHERE p.continente_id = "Asia"
AND p.d_ref_hist > '1950'
ORDER BY p.d_ref_hist
-- Paises falando a lingua portuguesa na africa?
SELECT * FROM pais p
WHERE p.ling = "Português"
ORDER BY p.nome
-- Quais as cidades Brasileiras?
SELECT * FROM cidade c
WHERE c.pais_id = "Brasil"
ORDER BY c.nome
-- Qual é a população mundial?
SELECT SUM(pop) as populacao_mundial
FROM continente
-- Número das cidades chamadas "São Luís" no mundo?
SELECT COUNT(*) as cidades_sao_luis FROM cidade c
WHERE c.nome LIKE "%São Luís%"
-- Em qual pais se encontra o hotel mais barato?
SELECT TOP 1 p.nome as nome_do_pais_com_hotel_mais_barato FROM hotel_quarto hq
INNER JOIN hotel h ON hq.hotel_id = h.cnpj
INNER JOIN cidade c ON h.cidade_id = c.id
INNER JOIN pais p ON c.pais_id = p.nome
ORDER BY preco |
-- phpMyAdmin SQL Dump
-- version 4.9.0.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Dec 15, 2020 at 11:20 PM
-- Server version: 10.3.16-MariaDB
-- PHP Version: 7.3.7
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: `quotes_db`
--
-- --------------------------------------------------------
--
-- Table structure for table `pref`
--
CREATE TABLE `pref` (
`value` int(10) NOT NULL COMMENT 'How many rows we can have',
`Language` varchar(15) NOT NULL COMMENT 'What language we should assume a quote is in.',
`display` varchar(12) NOT NULL COMMENT 'puzzles, quotes or both for main page dispaly',
`Chunks` int(1) NOT NULL DEFAULT 3,
`ID` int(1) NOT NULL DEFAULT 1,
`NAME` varchar(30) NOT NULL,
`COMMENTS` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `pref`
--
INSERT INTO `pref` (`value`, `Language`, `display`, `Chunks`, `ID`, `NAME`, `COMMENTS`) VALUES
(10, 'Telugu', 'Puzzles', 3, 1, '', '');
-- --------------------------------------------------------
--
-- Table structure for table `preferences`
--
CREATE TABLE `preferences` (
`id` int(2) NOT NULL,
`name` varchar(40) NOT NULL,
`value` varchar(10) NOT NULL,
`comments` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='for storing model and UI preferences';
--
-- Dumping data for table `preferences`
--
INSERT INTO `preferences` (`id`, `name`, `value`, `comments`) VALUES
(1, 'DEFAULT_COLUMN_COUNT', '15', 'this is the default column count for the puzzle'),
(2, 'DEFAULT_LANGUAGE', 'Telugu', 'Telugu and English are two possible values'),
(3, 'DEFAULT_HOME_PAGE_DISPLAY', 'Puzzles', 'Puzzles, Quote, Both - are three possible values'),
(4, 'DEFAULT_CHUNK_SIZE', '3', 'For SplitQuote, how many characters in each block'),
(5, 'NO_OF_QUOTES_TO_DISPLAY', '10', 'The quotes are ordered by the ID in des order'),
(6, 'FEELING_LUCKY_MODE', 'LAST', 'Feeling Lucky --> brings up LAST, FIRST or RANDOM quote for puzzle playing'),
(7, 'FEELING_LUCKY_TYPE', 'DropQuote', 'DropQuote, FloatQuote, DropFloat, Scrambler, Splitter, Slider16 (used by Feeling Lucky)');
-- --------------------------------------------------------
--
-- Table structure for table `quote_table`
--
CREATE TABLE `quote_table` (
`id` int(5) NOT NULL,
`author` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`topic` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`quote` varchar(300) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `quote_table`
--
INSERT INTO `quote_table` (`id`, `author`, `topic`, `quote`) VALUES
(1, 'అబ్దుల్ కలాం', 'general', 'మన జననం ఓ సాధారణమైనది కావచ్చు. కానీ మన మరణం మాత్రం ఒక చరిత్ర సృష్టించేదిగా ఉండాలి'),
(2, 'మహత్మా గాంధీ', 'general', 'అహింసకు మించిన ఆయుధం లేదు.'),
(3, 'మహత్మా గాంధీ', 'general', 'ఆత్మాభిమానం, గౌరవాల్ని వేరెవరో పరిరక్షించరు, మనకు మనమే వాటిని కాపాడుకోవాలి.'),
(4, 'మహత్మా గాంధీ', 'general', 'ఆలోచనల పరిణామమే మనిషి. అతను ఎలా ఆలోచిస్తే అలా తయారౌతాడు.'),
(5, 'మహత్మా గాంధీ', 'general', 'కంటికి కన్ను సిద్ధాంతం ప్రపంచాన్ని అంధకారంలోకి నెట్టివేస్తుంది.'),
(6, 'మహత్మా గాంధీ', 'general', 'ఆత్మార్పణకు,స్వచ్చతకు నిలయం కానప్పుడు స్త్రీకి విలువ లేదు.'),
(7, 'మహత్మా గాంధీ', 'general', 'ఓటు, సత్యాగ్రహం ఈ రెండూ ప్రజలచేతిలోని ఆయుధాలు.'),
(8, 'మహత్మా గాంధీ', 'general', 'భారతీయులు తమలో తాము పోట్లాడుకోవడం మానుకున్నప్పుడే మనకు అసలైన స్వాతంత్ర్యం వస్తుంది.'),
(9, 'మహత్మా గాంధీ', 'general', 'మార్పునుకు సిద్ధంగా ఉండండి. అపుడే కొత్త ప్రపంచాన్ని చూడగలుగుతారు.'),
(10, 'మహత్మా గాంధీ', 'general', 'పాము కాటు శరీరాన్ని విషతుల్యం చేస్తుంది, అదే తాగుడు వ్యసనం ఆత్మను చంపేస్తుంది.'),
(11, 'మహత్మా గాంధీ', 'general', 'హక్కులకు వాస్తవమైన మూలాధారం-కర్తవ్య నిర్వహణం.మనం మన కర్తవ్య నిర్వహణ చేసినట్లయితే హక్కులు పొందేందుకు ఎంతో దూరంలో ఉండము.మన విధులు నిర్వర్తించకుండా హక్కుల కోసం పరుగెత్తినట్లయితే అవి మనల్ని దాటి పోతాయి.మనం ఎంతగా వాటిని వెంబడిస్తే అవి అంత త్వరితంగా ఎగిరిపోతాయి.'),
(12, 'మహత్మా గాంధీ', 'book reading', 'మీరు పుస్తకాలు పఠించవచ్చు.కానీ అవి మిమ్మల్ని ఎక్కువ దూరం తీసుకెళ్ళలేవు.మీలోని ఉత్తమత్వాన్ని బయటికి తేవటమే నిజమైన విద్య అనిపించుకుంటుంది.మానవత్వం అనే పుస్తకం కంటే వేరొక ఉత్తమ గ్రంధం ఏమి ఉంటుంది.ప్రపంచం ఆధిపత్యం వహించిన పటిష్టవంతమైన శక్తి-ప్రేమ.మరియు అది వినయం గల కల్పనా రూపము.ప్రేమ ఎక్కడ ఉంటుందో,దేవుడ'),
(13, 'మహత్మా గాంధీ', 'general', 'జీవితంలో స్వచ్చమైనవి మరియు ధార్మికమైనవి అయిన వాటన్నిటికీ స్త్రీలు ప్రత్యేక సంరక్షకులు.స్వభావరీత్యా మితవాదులైనందువల్ల మూఢాచారాలను విడనాడటంలో ఆలస్యం చేస్తారు. అలాగే జీవితంలో స్వచ్చమైనవి,గంభీరమైనవి వదిలి పెట్టేందుకు కూడా అలస్యం చేస్తారు.'),
(14, 'మహత్మా గాంధీ', 'general', 'విద్యార్థుల ఆలోచనలు, ఆచరణలు క్రమశిక్షణా సహితంగా లేకుంటే వారు చదువంతా వృధా.'),
(15, 'మహత్మా గాంధీ', 'general', 'ఎవరైతే చిరునవ్వుల్ని ధరించరో వారు పూర్తిగా దుస్తులు ధరించినట్లు కాదు.'),
(16, 'మహత్మా గాంధీ', 'general', 'ఒక అభివృద్ది చెందిన కంఠం నుండి ఉత్తమ సంగీతం సృష్టించే కళను అనేకమంది సాధించవచ్చు కానీ ఒక స్వచ్చమైన జీవితం అనే మధురస్వరము నుండి అటువంటి సంగీతకళను పెంపు చేయటం చాలా అరుదుగా జరుగుతుంది. అన్ని కళల కంటే జీవితం గొప్పది. పరిపూర్ణత్వానికి చేరువ కొచ్చిన జీవితం గల మానవుడే అత్యంత గొప్ప కళాకారుడని నేను ప్రకటిస్తా'),
(17, 'మహత్మా గాంధీ', 'general', 'మన ప్రార్థన హృదయ పరిశీలన కోసం.భగవంతుని మద్దతు లేకుండా మనం నిస్సహాయులమని మనకు అది గుర్తు చేస్తుంది.దాని వెనుక భగవంతుని దీవెన లేనట్లయితే ఉత్తమమైన మానవ ప్రయత్నం కూడా నిష్పలమౌతుంది.'),
(18, 'మహత్మా గాంధీ', 'general', 'సత్యాగ్రహము జయమైందని ప్రజలు సంతోషించారే కాని సంపూర్ణ విజయ లక్షణాలు లోపించడం వలన నాకు సంతృప్తి కలుగలేదు.'),
(19, 'మహత్మా గాంధీ', 'general', 'మన అభిప్రాయాలను ఇతరులపైన బలవంతంగా రుద్దడం వలన మనం నిజమైన స్వాతంత్ర్యాన్ని సంపాదించుకోలేము.'),
(20, 'మహత్మా గాంధీ', 'general', 'మనిషిని బాధించే జంతువులను చంపకూడదని నా అభిప్రాయం కాదు. ఏది హింస, ఏది అహింస అన్నది మనుషులు తమ విచక్షణతో తెల్సుకోవాలి.'),
(21, 'మహత్మా గాంధీ', 'general', 'నా మట్టుకు సత్యాగ్రహ ధర్మ సూత్రం ప్రేమ సూత్రం లాంటిది. ఒక అనంతమైన శాశ్వతమైన సిద్ధాంతం. సత్యాగ్రహ నియమాలు ఒక క్రమపరిణామాన్ని కలిగి ఉంటాయి.'),
(22, 'మహత్మా గాంధీ', 'general', 'ప్రజాస్వామ్య స్పూర్తిని ఇతరులెవ్వరూ బలవంతంగా రుద్దలేరు, అది అంతర్గతంగా, స్వతసిద్ధంగా వికసించాల్సి ఉంటుంది.'),
(23, 'మహత్మా గాంధీ', 'general', 'విద్యార్థుల ఆలోచనలు, ఆచరణలు క్రమశిక్షణా సహితంగా లేకపోతే వారి చదువంతా వృథా.'),
(24, 'మహత్మా గాంధీ', 'general', 'చెడును నిర్మూలించేందుకు ఆయుధాలు పడితే జరిగేది రెండు దుష్టశక్తుల మధ్య యుద్ధమే.'),
(25, 'మహత్మా గాంధీ', 'general', 'చదవడం వలన ప్రయోజనమేమంటే నలుమూలల నుంచీ వచ్చే విజ్ఞానాన్ని పొందడం, దాన్నుంచి గుణపాఠాలు తీసుకోవడం.'),
(26, 'మహత్మా గాంధీ', 'general', 'ఆచరించడం కష్టమని మూలసూత్రాలను విడిచిపెట్టకూడదు. ఓర్పుతో వాటిని ఆచరించాలి.'),
(27, 'మాక్సిం గోర్కీ', 'book reading', 'పుస్తకాలు బురదగుంటలో పడిఉన్న నన్ను లేవనెత్తి నా ముందు విశాలమైన ప్రపంచ దృక్పథాలను సాక్షాత్కరింపజేశాయి.'),
(28, 'మహత్మా గాంధీ', 'book reading', 'చదివిన పుస్తకాల నుంచి జ్ఞానాన్ని పొంది పాఠాలు నేర్చుకోవడమే చదువు ఉద్దేశ్యం.'),
(29, 'కందుకూరి వీరేశలింగం \n', 'book reading', 'చినిగిన చొక్కా అయినా తొడుక్కో - కానీ ఓ మంచి పుస్తకం కొనుక్కో.'),
(30, 'జవహర్ లాల్ నెహ్రూ\n', 'book reading', 'గొప్ప గ్రంథాలు ఆలోచింపజేస్తాయి. ఎందుకంటే అవి గొప్ప ఆలోచనలకు అక్షర రూపం.'),
(31, 'డా.బి.ఆర్. అంబేద్కర్ ', 'book reading', 'పుస్తకాలు దీపాల వంటివి. వాటి వెలుతురు మనో మాలిన్యమనే చీకటిని తొలగిస్తాయి.'),
(32, 'డా. సర్వేపల్లి రాధాకృష్ణ ', 'book reading', 'పుస్తక పఠనం వల్ల జ్ఞాన సంపద, మానసిక ఆనందం పెరుగుతాయి.'),
(33, 'డా. సి. నారాయణ రెడ్డి', 'book reading', 'నీ ఎద తలుపులన్నీ తెరుచుకొని, నీవు ఎదగాలంటే తీరికలేని విధంగా చదవాలి.\n'),
(34, 'యండమూరి వీరేంద్రనాథ్', 'book reading', 'చెప్పాలనుకుంటే పెన్నుని, వినాలునుకుంటే పుస్తకాన్ని ఆశ్రయిస్తాను. '),
(35, 'నెల్సన్ మండేలా ', 'education', 'విద్యను మించిన శక్తివంతమైన ఆయుధం మరోటి లేదు. దానిని సమర్ధంగా ఉపయోగించుకోగలిగితే ప్రపంచాన్ని మార్చవచ్చు.\n'),
(36, 'డా.ఎ.పి.జె. అబ్దుల్ కలాం ', 'education', 'హుందాతనం సాధించాలంటే విద్యను మించింది లేదు. '),
(37, 'అబ్రహం లింకన్\n', 'education', 'వెన్నెలలోని హాయిని, కోయిలలోని కమ్మదనాన్ని, అమ్మ లాలన లోని తీయదనాన్ని రుచి చూపిస్తుంది చదువు.'),
(38, 'సుద్దాల అశోక్ తేజ ', 'book reading', 'వీసా లేకుండా విశ్వదర్శనం చేయించగలిగే పుష్పక విమానం - పుస్తకం.\n'),
(39, 'రవీంద్రనాథ్ టాగూర్ ', 'education', 'కేవలం సమాచారం ఇచ్చేది విద్య కాదు, అందరితో కలిసి సామరస్యంగా జీవించేలా చేసేదే ఉన్నత విద్య.\n'),
(40, 'జిడ్డు కృష్ణమూర్తి', 'education', 'చదువు అంటే - పుస్తకం చదవడం, పరీక్ష పాస్ కావడం కాదు. పుట్టినప్పటి నుంచి చనిపోయే క్షణం వరకు ఆ ప్రక్రియ కొనసాగుతూనే ఉంటుంది.\n'),
(41, 'సిసిరో', 'book reading', 'పుస్తకాలు లేని గది... ఆత్మ లేని దేహం వంటిది.\n'),
(42, 'ఆర్.డబ్ల్యు.ఎమర్సన్ \n', 'book reading', 'పుస్తకాలు సరిగ్గా వినియోగించుకుంటే ఎంత మంచివో,దురుపయోగించుకుంటే వాటి అంత చెడ్డవి లేవు. \n'),
(43, 'అబ్రహం లింకన్', 'book reading', 'ఇతరుల రచనలు చదివి నిన్ను నువ్వు అభివృద్ధి పరచు కోవడానికి ప్రయత్నించు. ఇతరులు ఎంతో శ్రమపడి తెలుసుకున్నవి అప్పుడు నువ్వు సునాయాసంగా గ్రహించే వీలుంది. \n'),
(44, 'మార్క్ ట్వేయిన్', 'book reading', 'మంచి పుస్తకాలు చదవని వాళ్లకు మనుషుల్ని సరిగ్గా అర్ధం చేసుకునే అవకాశం ఉండదు.\n'),
(45, 'హరిదాయాళ్ ', 'book reading', 'పుస్తకం కొన్నప్పుడల్లా నువ్వు నీ మానసిక స్థాయిని కొంచెం పెంచుకుంటున్నావు.\n\n'),
(46, 'రాయ్.ఎల్ స్మిత్ ', 'book reading', 'ఒక బ్యాంకులో కంటే ఒక మంచి పుస్తకంలో ఎక్కువ సంపద ఉంటుంది.'),
(47, 'ఎర్ల్ నైటేనింగల్', 'book reading', 'భూమికి సూర్యుడు ఎలాంటివాడో నా జీవితానికి పుస్తకాలు అటువంటివి'),
(48, 'డేనియల్ జి.బూస్తాన్', 'education', 'చదువు ద్వారా మన ప్రపంచాన్ని, మన చరిత్రను, మనలను మనం ఆవిష్కరించుకుంటాం.\n\n'),
(49, 'సూర్యదేవర రాంమోహన్ రావు ', 'education', 'చదవడం అంటే ఆకురాయిపై కత్తిని పదును పెట్టినట్లే.\n'),
(50, 'బార్క్ హెడ్జెస్', 'book reading', 'అంతకు ముందు అవుతుందనుకోని మార్గంలో నిన్ను పయనించేలా ప్రేరేపిస్తుంది ‘పుస్తక పఠనం’\n '),
(51, 'ఫ్రోన్సిస్ బేకన్ ', 'book reading', 'చదివే అలవాటు మనిషిని పరిపూర్ణుడిగా చేస్తుంది.రాసే అలవాటు అతన్ని ఖచ్చితమైన వ్యక్తిగా చేస్తుంది. \n'),
(52, '‘అక్షర వృక్షాలు’ పుస్తకం ', 'general', 'ఎండలు మండుతున్నా నీడ నీకు ఇస్తుంది.జడివానలు తడిపినా, గొడుగై తను నిలుస్తుంది.'),
(53, '‘అక్షర వృక్షాలు’ పుస్తకం ', 'general', 'ఎక్కడ మొక్కలు ఉండవొ అక్కడ వర్షాలు కూడా ఉండవు.మొక్కలు భగవంతుని ప్రేమకు ప్రతిరూపాలు. \n'),
(54, '‘అక్షర వృక్షాలు’ పుస్తకం ', 'general', 'పచ్చని చెట్లను పెంచండి! పుట్టే ప్రతి బిడ్డకు స్వచ్ఛమైన గాలిని ఇవ్వండి!!'),
(55, '‘అక్షర వృక్షాలు’ పుస్తకం ', 'general', 'పది చేదబావులతో ఒక దిగుడి బావి సమానము. పది దిగుడు బావులతో ఒక సరస్సు సమానము.పది సరస్సులతో ఒక పుత్రుడు సమానము. అటువంటి పది పుత్రులతో ఒక చెట్టు సమానము.\n'),
(56, '‘అక్షర వృక్షాలు’ పుస్తకం ', 'general', 'మానవ జీవితం ఆరంభమైంది అడవుల్లోనే...అడవులు అంతమైనప్పుడు మనిషి అంతమవుతాడు.\n'),
(57, '‘అక్షర వృక్షాలు’ పుస్తకం ', 'general', 'చెట్టు రకరకాలుగా మనిషికి ఉపయోగపడినట్లు, మనిషి చెట్టుని అనుకరిస్తూ జీవిస్తే చాలు ధన్యజీవి అవుతాడు. \n'),
(58, '‘అక్షర వృక్షాలు’ పుస్తకం ', 'general', 'మాటలాడని మౌనులు చెట్లు. పక్షులతో పాటలు పాడిస్తాయి మట్టిని వదలని మమతలు చెట్లు. గాలికి ఆటలు నేర్పిస్తాయి.\n'),
(59, '‘అక్షర వృక్షాలు’ పుస్తకం ', 'general', 'ఇళ్ళన్నింటిలోన ఏ ఇల్లు మేలు. విరివిగా చెట్లున్న ప్రతి ఇల్లు మేలు.\n'),
(60, 'డా. ఉండేల మాలకొండారెడ్డి ', 'general', 'నడవలేదు గాని. తను నడవడి చూపిస్తుంది.వాగ్దానాలను చేయకుండా వరాలు కురిపిస్తుంది.'),
(61, 'డా. ఉండేల మాలకొండారెడ్డి ', 'general', 'అధికారికి తలవంచదు, అనాధలను పొమ్మనదు. అందరికీ ఒకే రకం ఆదరణను పంచుతుంది.\n'),
(62, 'డా. ఉండేల మాలకొండారెడ్డి ', 'general', 'సిద్ధార్థుని తన యొడిలో బుద్ధిగ కూర్చుండమని బుద్ధునిగా ఉండేలా! బుద్ధిగరిపి పంపింది. \n'),
(63, 'డా. జె. బాపు రెడ్డి\n', 'general', 'నీటి కాలుష్యం, నేల కాలుష్యం,గాలి కాలుష్యం, శబ్ద కాలుష్యం వంటివి పంచభూతాల పాలిట పరమశత్రువులు.\n'),
(64, 'డా. వడ్డేపల్లి కృష్ణ\n', 'general', 'చెట్లే ప్రగతికి తొలిమెట్లు. చెట్లే జగతికి పనిముట్లు.\n'),
(65, 'డా. వడ్డేపల్లి కృష్ణ\n', 'general', 'కంపుగొట్టు విషవాయువలన్ని కడుపునిండుగా తామే పీల్చి \nప్రాణవాయువుల మనకందించి పరిసరాల రక్షించును చెట్లు.'),
(66, 'డా. వడ్డేపల్లి కృష్ణ\n', 'general', 'ఆకాశంలో విహరించే మేఘాలను ఆకర్షించి వర్షాలను కురిపించేవి వన్నెలెన్నో కలిగించేవి.. చెట్లు.\n'),
(67, 'టి. వినోద్ కుమార్ ', 'general', 'పచ్చని చెట్లు తోడుంటే \nపాడే కోయిల వెంటుంటే \nభూలోకమే ఆనందానికి ఇల్లు.. \nఈ లోకంలో కాలుష్యమింక చెల్లు..\n'),
(68, 'డా. సుద్దాల అశోక్ తేజ', 'general', 'చెట్టునురా - చెలిమినరా!\nతరువునురా - తల్లినిరా\nనరికి వేయబోకురా\nకరువు కోరుకోకురా!\nఅమ్మనురా! అమ్మకురా!\nకొడుకునురా! నన్ను కొట్టకురా! \n'),
(69, 'డా. ఎస్వీ. సత్యనారాయణ', 'general', 'శిశిరానికి శిరసువంచి\nఆకులన్ని రాల్చినా \nఆమని ఆగమనవేళ \nమళ్ళీ చిగురిస్తుంది.\n'),
(70, 'సబ్బని లక్ష్మీనారాయణ\n', 'general', 'పది మొక్కలైనా నాటి \nపది చెట్లనయినా పెంచు\nమట్టి బిడ్డయి పుట్టినందుకు\nమనుగడ సాగించేందుకు.\n'),
(71, 'ఆచార్య రావికంటి వసునందన్ ', 'general', 'తన శరీరములోని ప్రతి భాగము చేతను ఇతరులకు సుఖము కలిగించేది వృక్షము. అందుకే చెట్టు ప్రశంసనీయమైనది.\n'),
(72, 'సోమిశెట్టి వేణుగోపాల్ ', 'general', 'పిచ్చి మొక్కలు కూడా \nపచ్చదనాన్నే పరుస్తాయి\nమేధస్సునే మదించిన మనిషి మాత్రం \nఅమృతాన్ని తాను సేవించి\nహాలాహలాన్ని భవిష్యత్తు తరాలకు \nపంచుతున్నాడు. \n'),
(73, 'మంత్రి లక్ష్మీనారాయణ ', 'general', 'పచ్చదనంతోనే ప్రగతి విరాజిల్లుతుంది \nపచ్చదనం లోపిస్తే పుడమి విలవిలలాడుతుంది\nప్రతి వ్యక్తి తోటమాలియై \nపుడమిని బృందానంలా తీర్చాలి.\n'),
(74, 'ఎస్. అరుణ ', 'general', 'చెట్టు మరకతం \nచెట్టు హరితగీతం \nచెట్టు ఒక భావన\nచెట్టు ఒక దీవెన\n'),
(75, 'జయంపు క్రిష్ణ\n', 'general', 'మనం పది కాలాల పాటు\nపదిలంగా ప్రశాంతంగా ఉండాలన్నా \nప్రకృతిలో సహజత్వం నిండాలన్నా \nచెట్లు పచ్చగా ఎదగాలి \nనేస్తాల్లా నేత్రాల్లో మెదగాలి\nఅందుకే నేను \nచెట్లకు నమస్కరిస్తాను. \n'),
(76, 'test', 'test', 'test test test '),
(77, 'jfk', 'general', 'Ask not what your country can do for you – ask what you can do for your country,” '),
(78, 'krishna', 'movies', 'భలే దొంగలు మనుషులు చేసిన దొంగలు దొరగారికి దొంగ పెళ్లాం దొంగ గారూ స్వాగతం ఘరానా దొంగ'),
(79, 'రాబిన్ శర్మ', 'general', 'మీరు దేనికి ప్రాధాన్యత ఇస్తారు, ఏ పనికి విలువ ఇస్తారు అన్నది తెలుసుకోవడానికి మీ దినచర్య చక్కని కొలమానం - రాబిన్ శర్మ'),
(80, 'quote book', 'general', ' ప్రేమగా, ఇష్టంగా చేసేటప్పుడు ఆ పనితనం చాలా గొప్పగా ఉంటుంది. మీకు దక్కాల్సిన ఫలం దక్కుతుంది. ఒక వేళ మీరే వద్దనుకున్నా ఆ ఫలం తనంతట తానే మీ పాదాలవద్దకు వచ్చి చేరుతుంది.'),
(82, 'offline', '240', 'అభినందించడం తప్ప అసూయపడటం ఎరుగనివాడు ఎంతో అదృష్టవంతుడు'),
(83, 'offline', '27.1', 'సమయాన్ని సరిగ్గా వినియోగించుకునే వాడికి మిగతా మంచి అలవాట్లు కూడా వాటంతటవే వస్తాయి.'),
(84, 'offline', '27.2', 'పనిలో ప్రతిసారీ సంతోషం లభించక పోవచ్చు కానీ పని అన్నది లేకపోతే అసలు సంతోషమనేదే ఉండదు.'),
(85, 'offline', '11', 'నిరాడంబరమైన తేనెటీగ అన్నిరకాల పువ్వులనుంచి తేనెను తీసుకున్నట్లే, తెలివికలవాడు అన్ని పవిత్ర గ్రంథాలనుంచీ సారాన్ని గ్రహిస్తాడు.'),
(86, 'offline', '7', 'మనిషి సాధించిన విజయాలు సమాజానికి ఉపయోగపడితేనే అవి నిజమైన విజయాలు.'),
(87, 'offline', '12', 'మీరు ప్రతిరోజూ తృప్తిగా నిద్రించాలనుకుంటే, ప్రతి ఉదయమూ ఒక చక్కటి సంకల్పంతో నిద్ర లేవడం అలవాటు చేసుకోండి.'),
(88, 'offline', '15', 'అసమర్ధులకు అవరోధాలుగా అనిపించేవి సమర్ధులకు అవకాశాలుగా కనిపిస్తాయి.'),
(89, 'offline', '13', 'తన జ్ఞాపకాలతోనే జీవించేవాడు వృద్ధుడు అవుతాడు. భవిష్యత్తు గురించి ప్రణాళికలతో జీవించేవాడు నిత్య యౌవనంలో వుంటాడు.'),
(90, 'offline', '17', 'ఏం చేయాలి, ఎలా చేయాలి అని అర్ధమయ్యే వరకూ చేస్తూనే ఉండాలి.'),
(91, 'offline', '29', 'ఇతరుల గురించి మంచిగా మాట్లాడితే నిన్ను గురించి మంచిగా మాట్లాడుకున్నట్లే.'),
(92, 'offline', '20', 'మంచి పనికి మించిన పూజ లేదు. మానవత్వానికి మించిన మతం లేదు. '),
(93, 'offline', '22', 'మనం ఇష్టంగా చేసే పనికి సమయం లేకపోవడం అంటూ ఉండదు.'),
(94, 'offline', '26', 'ఆత్మగౌరవం, ఆత్మనిగ్రహం, ఆత్మజ్ఞానం అనే మూడు అంశాలే జీవితాన్ని ఉన్నత శిఖరాలకు చేరుస్తాయి.'),
(95, 'offline', '28', 'ఓటమి ఎరుగని వ్యక్తి కన్నా... విలువలతో జీవించే వ్యక్తి మిన్న!'),
(96, 'offline', '31', 'మనిషి ఎప్పుడూ తనకున్న సంపదతో తృప్తి పడొచ్చు; కానీ తనకున్న విజ్ఞానముతో తృప్తి పడకూడదు.'),
(97, 'offline', '33', 'ఒకరి సాయమందుకున్నప్పటి సంతోషంకన్నా, వేరొకరికి సహాయం అందించడంలోని ఆనందమే మిన్న.'),
(98, 'offline', '32', 'నిరాడంబరత స్నేహితులను పెంచుతుంది. గర్వం శత్రువులను పెంచుతుంది.'),
(99, 'offline', '40', 'వివేకి అయిన మానవుడు ప్రతి క్షణాన్నీ సద్వినియోగపరచుకుంటాడు. '),
(100, 'offline', '41', ' ఎప్పుడూ ఒప్పుకోకు ఓటమిని, ఎప్పుడూ వదులుకోకు ఓర్పుని.'),
(101, 'offline', '47', 'తెలియక తప్పులు చేసేవాడు అమాయకుడు, తెలిసి తప్పులు చేసేవాడు మూర్ఖుడు. అమాయకుడిని మార్చవచ్చు కాని మూర్ఖుడిని మార్చలేము.'),
(102, 'offline', '319', 'ఏదో జరగాలని ఎదురుచూస్తూ కూర్చుంటే ఓటమి తథ్యం. ఏదిచేయాలో నిర్ణయించుకుని ముందుకు సాగితే గెలుపు సాధ్యం.'),
(103, 'offline', '318', 'ఒక గొప్పవాని గొప్పతనం, అతడు తనకంటే తక్కువ వారితో వ్యవహరించే తీరును బట్టి తెలుస్తుంది.'),
(104, 'offline', '207', 'ఆశావాది గులాబీని చూస్తే, నిరాశావాది దాని కింద ముల్లును చూస్తాడు.'),
(105, 'offline', '87', 'సాహసించి ఏ ప్రయత్నమూ చేయని కార్యశూన్యులు మాత్రమే ఎటువంటి పొరబాట్లు, తప్పిదాలు చేయరు.'),
(106, 'offline', '61', 'విజయానికి ఒకే ఒక్క మార్గం. మరొక్కసారి ప్రయత్నించడమే. '),
(107, 'offline', '69', 'నువ్వు ధైర్యంగా ఒక అడుగు ముందుకు వేస్తే విజయం పది అడుగులు నీ వైపుకు వేస్తుంది.'),
(108, 'offline', '88', 'మనం ఆనందం పొందడం కన్నా, ఇతరులకు ఆనందాన్ని పంచడంలోనే ఎక్కువ ఆనందం లభిస్తుంది.'),
(109, 'offline', '90', 'విజయం సాధించలేమని ముందుగానే ఒక నిర్ణయానికి వచ్చేవారు ఎన్నడూ ఏ పనీ చేయలేరు.'),
(110, 'offline', '96', 'మనం ఎంత ప్రశాంతంగా ఉంటే మన పని అంత ఉత్తమంగా ఉంటుంది.'),
(111, 'offline', '97', 'సమాజసేవకు కావలసింది సంపద కాదు.. ఉదార హృదయం.'),
(112, 'offline', '105', 'మనిషిని మహనీయునిగా మార్చేది, మాటలు నెమ్మదిగాను, పనులు ఉత్సాహంగాను చేసిననాడే.'),
(113, 'offline', '108', 'ఎంతటి విషమ పరిస్థితులెదురైనా మంచితనం, మానవత్వాల్లో నమ్మకాన్ని పోగొట్టుకోకూడదు. కాసిని మురికి నీళ్ళు ఉన్నంత మాత్రానా సముద్రం మురికికూపం అవుతుందా?'),
(114, 'offline', '117', 'ఓర్పు చేదుగానే ఉంటుంది. కానీ దాని ఫలితం మాత్రం ఎంతో మధురంగా ఉంటుంది.'),
(115, 'offline', '110', 'మన మనస్సు పవిత్రంగా ఉండి ఏ చిన్న పనిచేసినా అది విజయవంతం అవుతుంది.'),
(116, 'offline', '115', 'తనకు లేని వాటి కోసం విచారించక, తనకు వున్న వాటికి సంతోషించే వ్యక్తి తెలివైన వాడు. '),
(117, 'offline', '116', 'ఆశను ఎన్నడూ విడనాడకు. జీవితంలో నిన్ను నిలిపేది అది ఒక్కటే. '),
(118, 'offline', '118', 'నిరంతరం వెలిగే సూర్యుణ్ణి చూసి చీకటి పారిపోతుంది. నిర్విరామంగా శ్రమించే వ్యక్తిని చూసి ఓటమి భయపడుతుంది.'),
(119, 'offline', '119', 'సామాన్యుడు అవకాశం కోసం ఎదురు చూస్తూండిపోతాడు. ఉత్సాహవంతుడు అవకాశాన్ని కల్పించుకుంటాడు.'),
(120, 'offline', '123', 'వైఫల్యాన్ని పరాజయంగా కాక ఆలస్యంగా లభించనున్న విజయంగా భావించేవారే విజేతలవుతారు.'),
(121, 'offline', '124', 'అతి కష్టమైన పని .. నిన్ను నువ్వు తెలుసుకోవడం, అతి తేలికైన పని ఇతరులకు సలహాలివ్వడం.'),
(122, 'offline', '128', 'ఉత్తమమైన ఆలోచనలు నిరంతరం శక్తినిస్తాయి. అధమ స్థాయి ఆలోచనలు శక్తిని హరించి వేస్తాయి.'),
(123, 'offline', '134', 'అందరూ చేస్తున్నపని నీవు చేస్తూ వుంటే నీకు ప్రత్యేకత ఏమీ ఉండదు. ఇతరులు చేయలేని పని నీవు చేయగలిగితేనే చరిత్ర సృష్టించగలవు.'),
(124, 'offline', '140', 'కష్టమైన కార్యనిర్వహణ ద్వారానే నిజమైన ఆనందం దొరుకుతుంది.'),
(125, 'offline', '143', 'ఫలితాన్ని ఆశిస్తూ పరుగెత్తవద్దు. పనిచేస్తూ పోతే ఫలితం అదే పరిగెత్తుకు వస్తుంది.'),
(126, 'offline', '145', 'ప్రతిభావంతుడు సముద్రపు గట్టులాంటి వాడు - అలల వంటి సమస్యలకు వెనుదిరిగిపోడు. '),
(127, 'offline', '146', 'పొగడ్త పన్నీరులాంటిది. దాన్ని వాసన చూడాలే తప్ప తాగకూడదు.'),
(128, 'offline', '148', 'సహనం గల మనిషి తను అనుకున్న వాటినల్లా సాధించుకోగలిగే అద్భుతమైన సంకల్ప శక్తి కలిగి ఉంటాడు.'),
(129, 'offline', '154', 'నీ పనుల్లో నిండుగా ప్రేమ, మంచితనం, స్వచ్ఛతా వుండడమే దివ్యమైన జీవితం.'),
(130, 'offline', '157', 'తన మీద తనకు విశ్వాసం ఉన్న వ్యక్తి బలవంతుడు. సందేహాలతో సతమతమయ్యే వ్యక్తి బలహీనుడు. '),
(131, 'offline', '159', 'చిన్న పొరపాటే కదా అని నిర్లక్ష్యం తగదు. పెద్ద ఓడను ముంచేయడానికి చిన్న రంధ్రం చాలు.'),
(132, 'offline', '160', 'మనకున్న దానిపై నిర్లక్ష్యం, లేని దానిపై వ్యామోహమే మనం పూర్తి సుఖ సంతోషాలు అనుభవించలేక పోవటానికి కారణం.'),
(133, 'offline', '158', 'ప్రపంచంలో అత్యంత కష్టమైన పనులు మూడే మూడు .. రహస్యాన్ని కాపాడడం, అవమానాన్ని మరచిపోవడం, సమయాన్ని సద్వినియోగం చేయడం.'),
(134, 'offline', '161', 'ఎవరూ చూడనప్పుడు నీవు ఎలా ప్రవర్తిస్తావో అదే నీ నిజమైన స్వభావం.'),
(135, 'offline', '162', 'విజేత వెనుక ఉండేది అదృష్టమో, మంత్రదండమో కాదు... కఠిన శ్రమ, అంకితభావం.'),
(136, 'offline', '163', 'మంచి పుస్తకాలు దగ్గరుంటే మనకు మంచి మిత్రులు లేని లోపం కనిపించదు. గ్రంథపఠనాభిలాష గల వాడెక్కడున్నా సుఖంగా నివసించగలడు.'),
(137, 'offline', '165', 'మనం ఎందుకు జన్మించామో తెలుసుకోకుండానే మనలో చాలామంది ఈ ప్రపంచం నుంచి వెళ్ళిపోతూ ఉంటారు.'),
(138, 'offline', '170', 'విద్యను దాచుకోవద్దు. పదిమందికి పంచు. అది మరింత రాణిస్తుంది.'),
(139, 'offline', '172', 'వేలకొద్దీ నీతులు బోధించే బదులు ఒక్క మంచి పనిచేసి చూపించడం మేలు.'),
(140, 'offline', '173', 'మంచిపని చెయ్యడానికి ఎటువంటి సమయమైనా మంచి సమయమే.'),
(141, 'offline', '179', 'మంచితనాన్ని కేవలం మాటలవరకే పరిమితం చేయకు. దానిని మనస్సు వరకు వ్యాపింపచేయడం మానకు.'),
(142, 'offline', '184', 'మనసులోని యోచన, మాటలోని సూచన, క్రియలోని ఆచరణ - ఈ మూడు ఒకటిగా ఉన్నవాడే మహాత్ముడు. '),
(144, 'offline', '192', 'అనంతమైన దుఃఖాన్ని చిన్న నవ్వు చెరిపివేస్తుంది. భయంకరమైన మౌనాన్ని ఒక్కమాట ప్రభావితం చేస్తుంది.'),
(145, 'offline', '196', 'అందరినీ సంతృప్తి పరచాలనుకుంటే ఒక్కరినీ సంతృప్తి పరచలేము.'),
(146, 'offline', '212', 'నేర్చుకుందామనే ధ్యాస ఉన్నవాడు ప్రతి సంఘటన నుండీ నేర్చుకుంటాడు. '),
(147, 'offline', '235', 'మంచి ఎక్కడ ఉన్నా పరిగ్రహించు. చెడు ఎక్కడ ఉన్నా పరిత్యజించు'),
(148, 'offline', '238', 'ఆత్మవిశ్వాసం కలిగిన వ్యక్తి మాత్రమే సరైన ఆరోగ్యవంతుడు.'),
(149, 'offline', '240', 'అభినందించడం తప్ప అసూయపడటం ఎరుగనివాడు ఎంతో అదృష్టవంతుడు.'),
(150, 'offline', '243', 'ఆశయాల కోసం జీవించాలి కానీ ఆశల కోసం కాదు.'),
(151, 'offline', '248', 'దురలవాట్లు మొదట్లో సాలె గూళ్ళులాంటివి. తర్వాత అవి ఇనుప గొలుసులై మిమ్మల్ని బంధిస్తాయి.'),
(152, 'offline', '245', 'సంతోషంగా వుండే వ్యక్తి ఇతరుల్ని కూడా సంతోషపరుస్తాడు.'),
(153, 'offline', '247', 'సంకల్పబలం ఉంటే తలచిన పని సునాయాసంగా పూర్తవుతుంది.'),
(154, 'offline', '264', 'మన కోసం మనం చేసేది మనతోనే అంతరించి పోతుంది. పరుల కోసం చేసేది శాశ్వతంగా నిలుస్తుంది.'),
(155, 'offline', '266', 'గొప్ప లక్ష్యాన్ని సాధించాలని ప్రయత్నించి విఫలం కావడం నేరం కాదు. గొప్ప లక్ష్యం లేకపోవడం నేరం. '),
(156, 'offline', '270', 'వికాసమే జీవనం, సంకోచమే మరణం, ప్రేమే జీవనం, ద్వేషమే మరణం. '),
(157, 'offline', '271', 'పరుల మేలు కోసం చేసిన పని ఎంత చిన్నదైనా అది మనలోని అంతశ్శక్తిని మేలుకొల్పుతుంది. ఇతరులకు కాస్త ఉపకారాన్ని ఊహించటం సైతం హృదయంలో సింహబలాన్ని నెలకొల్పుతుంది.'),
(158, 'offline', '364', 'ఉత్తములు ఏది న్యాయమో పరిగణిస్తారు. అల్పులు ఏది లాభమో ఆలోచిస్తారు.'),
(159, 'offline', '369', 'చుట్టూరా ఆవరించుకొని వున్న చీకటిని తిట్టుకుంటూ వూరికే కూర్చోవడంకంటే, ప్రయత్నించి ఎంత చిన్న దీపాన్నయినా వెలిగించడం మంచిది.'),
(160, 'offline', '341', 'మనిషి విజయం, ఆర్జించిన డబ్బుబట్టి కాక సాధించిన మనశ్శాంతిని బట్టి ఉంటుంది.'),
(161, 'offline', '356', 'ఉత్తమ వ్యక్తి ఎప్పుడు ఇతరులలోని మంచి లక్షణాల గురించే పట్టించుకుంటాడు. చెడువాటిని విమర్శించడు.'),
(162, 'offline', '353', 'ఇతరులు మనకు ఇచ్చేది తాత్కాలికమైనది. స్వయంకృషితో సంపాదించుకున్నదే శాశ్వతమైనది.'),
(163, 'offline', '339', 'మన జీవితానికి ఒక ఉద్దేశము, ఒక లక్ష్యము ఉంటేనేగాని అది జీవితం అనిపించుకోదు.'),
(164, 'offline', '336', 'చేయకుండా చేసామనేవాడు అధముడు. కొద్దిగా చేసి కొండంత చేసానని చెప్పేవాడు గర్విష్టి. ఎంతో చేసి కొంచెమే చేసానని చెప్పేవాడు సజ్జనుడు.'),
(165, 'offline', '334', 'తెలివిగల వ్యక్తికి తప్పనిసరిగా ఎల్లప్పుడూ ఉండే లక్షణం ప్రతి విషయాన్ని తెలుసుకోవాలనే ఆసక్తి.'),
(166, 'offline', '322', 'ఏ మంచిని, ఏ నమ్మకాన్ని నీవు ఎదుటివారి నుండి ఆశిస్తున్నావో, అవి ముందుగా నీ నుండే ప్రారంభం కావాలి.'),
(167, 'offline', '328', 'ఉన్నత మనస్కుడు ఒకరిని అవమానించడు. అవమానాన్ని సహించడు.'),
(168, 'offline', '326', 'దృఢమైన సంకల్పం, స్థిరమైన కృషి వుంటే విజయం తప్పక లభిస్తుంది.'),
(170, 'offline', '318', 'ఒక గొప్పవాని గొప్పతనం, అతడు తనకంటే తక్కువ వారితో వ్యవహరించే తీరును బట్టి తెలుస్తుంది.'),
(171, 'offline', '316', 'స్వర్గాన్ని నరకంగా చేసేది, నరకాన్ని స్వర్గంగా చేసేది మన మనస్సే.'),
(172, 'offline', '312', 'ఎంత అరగదీసినా గంధపు చెక్క పరిమళాన్ని కోల్పోదు. ఎన్ని కష్టనష్టాలెదురైనా ధీరుడు ఆత్మవిశ్వాసం కోల్పోడు.'),
(173, 'offline', '314', 'వైఫల్యం నిరాశకు కారణం కాకూడదు. కొత్త ప్రేరణకు పునాది కావాలి. '),
(174, 'offline', '309', ' ప్రతి మనిషిలోనూ మంచి చెడులు వుంటాయి. వారిలో చెడును మాత్రమే చూస్తే ముందుకు సాగలేము.'),
(175, 'offline', '310', 'తెలివిగలవాడు పగలు, రాత్రి కూడా తెలివిగానే ఉంటాడు'),
(176, 'offline', '308', 'పనిచేసే తత్వమూ, పనిపట్ల విశ్వాసమూ విజయానికి మూలకారణాలు.'),
(177, 'offline', '307', 'మనలో ఉన్న చెడు ఆలోచనలను తొలగించితే మంచి ఆలోచనలు మొదలవుతాయి.'),
(178, 'offline', '306', 'సాహసించేవాడి వెనుకే అదృష్టం నడుస్తూ ఉంటుంది.'),
(179, 'offline', '304', 'గొప్ప గుణాలుంటే సరిపోదు. వాటిని వినియోగించుకోగలగాలి.'),
(180, 'offline', '303', 'మంచి మాటలు విని ప్రయోజనం లేదు. వాటిని నిజ జీవితంలో ఎంతవరకు ఆచరణలోకి తెస్తున్నామనేదే ముఖ్యం.'),
(181, 'jeediguntla', 'chiru', 'చిమ్మచీకటికి కూడా రంగులు వెయ్యగలిగే జీవితం చాలా విలువైనది, వృధా చేసుకోకు - విజయ సారథి జీడిగుంట్ల'),
(183, 'chiru', 'dialogs', 'మీరు కోరుకున్న మనిషి మీ ముందుకు వచ్చినప్పుడు ఆనందపడాలే కాని, ఆశ్చర్యపడతారేంటి? రాననుకున్నారా, రాలేననుకున్నారా?'),
(184, 'varma alluri', 'chiru', 'మెడలువంచి కష్టపడే తత్త్వం ఉన్నవారంతా జీవితంలో తప్పక విజయాలను సాధిస్తారు'),
(185, 'chiru', 'dialogs', 'సింహాసనం మీద కూర్చునే అర్హత అక్కడ ఆ ఇంద్రుడిది , ఇక్కడ ఈ ఇంద్రసేనుడిది '),
(186, 'chiru', 'dialogs', 'ప్రభుత్వం తో పనిచేయించుకోవడం మన హక్కు - దాన్ని లంచంతో కొనద్దు'),
(187, 'offline', '302', 'ఒక లక్ష్యంతో కృషి చేసే వ్యక్తి నేడు కాకపోయినా, రేపైనా విజయం సాధిస్తాడు. '),
(188, 'offline', '301', 'ఇతరులలోని మంచిని చూడటం వల్ల మన సద్గుణాలు వికాసం పొందుతాయి.'),
(189, 'offline', '300', 'పరిస్థితులకు సరిపడే స్వభావాన్ని అలవరచుకోగల వ్యక్తి ఎంతో అదృష్టవంతుడు.'),
(190, 'ics499', 'slider', 'web app development is fun'),
(191, 'offline', '299', 'అజ్ఞానం అహంకారానికి దారి తీస్తుంది. అహంకారం తీవ్ర అజ్ఞానికి దారి తీస్తుంది.'),
(192, 'offline', '298', 'తనను తాను సంస్కరించుకున్న వ్యక్తికే ఇతరులను సంస్కరించే అధికారం అందుతుంది.'),
(193, 'offline', '296', 'ఆకలివేసినా సింహం గడ్డిమేయదు. కష్టాలెన్ని చుట్టుముట్టినా ఉత్తముడు నీతి తప్పడు. '),
(194, 'offline', '295', 'మన మనస్సుని మరొకరు బాధ పెట్టలేనంత దృఢంగా తయారు చేసుకోవాలి.'),
(195, 'offline', '291', 'ప్రపంచంలో నువ్వొక సాధారణ మనిషివే కావచ్చు, కానీ కనీసం ఒక్కరికైనా నువ్వు ప్రపంచమంత గొప్పగా కనిపించేలా జీవించు.'),
(196, 'offline', '293', 'మన జీవితాలను మనమే మార్చుకోవాలి గానీ, ఎవరో వస్తారని ఎదురు చూడకూడదు. '),
(197, 'offline', '290', 'సలహాలు అందరూ పొందుతారు. కాని వివేకవంతులే వాటివల్ల లాభాన్ని పొందుతారు.'),
(198, 'offline', '288', 'మనసుపెట్టి పనిచేస్తే, ఏ వృత్తిలో, ఏ పనిలోనైనా కలిగే తృప్తే మనిషికి ఆత్మవిశ్వాసం కలిగిస్తుంది. అప్పుడు ఆకలి,నిద్ర అసలు గుర్తుకు రావు.'),
(199, 'offline', '283', 'చేసిన తప్పును సమర్థించుకోవటం కంటే, దాన్ని సరిదిద్దుకునేందుకు తక్కువ సమయం పడుతుంది.'),
(200, 'offline', '287', 'విజయం సాధించాలనే మీ సంకల్పమే అన్నింటికంటే ముఖ్యమని అనుక్షణం గుర్తు చేసుకోండి. '),
(201, 'offline', '279', 'మనుషులు రెండు రకాలు. పని చేసే వాళ్ళు, గొప్పలు చెప్పుకునే వాళ్ళు. మొదటివారితో ఉండటమే నయం, అక్కడ పోటీ తక్కువ. '),
(202, 'offline', '282', 'జీవితం కరిగిపోయే మంచు. ఉన్నదాంట్లో నలుగురికీ పంచు. '),
(203, 'offline', '276', 'జీవితం వృథా చేసుకోవడానికి కాదు. చైతన్యవంతంగా ప్రయోజానాత్మకంగా జీవించడానికి.'),
(204, 'offline', '278', 'యజమానికీ నాయకుడికీ తేడా ఒకటే.. \"మీరు చేయండి\" అంటాడు యజమాని. \"మనం చేద్దాం\" అంటాడు నాయకుడు. '),
(205, 'offline', '275', 'ప్రేమించడం నా సహజలక్షణం అని తెలుసుకుంటే ఈర్ష్య నీ దరికి చేరదు.'),
(206, 'offline', '274', 'జీవితంలోని అందం, ఆనందం, అతి పెద్ద విషయాలలో కాదు.. అతి చిన్న విషయాలలో దాగి వుంది.'),
(208, 'offline', '272', 'ధనవంతుడు అంటే ఎలా సంపాదించాలో తెలిసినవాడు కాదట. ఎంత సక్రమంగా ఖర్చు పెట్టాలో తెలిసినవాడట. '),
(209, 'offline', '265', 'నీటిబిందువు కాలుతున్న పెనంమీద పడితే రూపురేఖలు లేకుండా ఆవిరవుతుంది.ముత్యపు చిప్పలో పడితే ముత్యమై మెరుస్తుంది. అలాగే, మనిషి నీచుడి నీడ చేరితే నశిస్తాడు. ఉత్తముడిని ఆశ్రయిస్తే ఉజ్వలంగా వెలుగుతాడు'),
(210, 'offline', '263', 'జీవితంలో సర్వస్వం కోల్ఫ్యినా ఒక్కటి మాత్రం మిగిలి ఉంటుంది. అదే భవిష్యత్తు.'),
(211, 'offline', '262', 'గొప్ప వ్యక్తుల జీవిత చరిత్రలు చదవాలి. వారి ఆలోచనలనుండి స్ఫూర్తి పొందుతూ ఉండాలి, అప్పుడే వారి లక్షణాలు మనకు వస్తాయి.'),
(212, 'offline', '260', 'పుస్తకాలూ, స్నేహితులూ కొద్దిగా ఉన్నా మేలైనవిగా ఉండాలి.'),
(213, 'offline', '256', 'నీ మీద నీకు నమ్మకం పెరుగుతున్నప్పూడు నీ సమర్ధత కూడా పెరుగుతుంది.'),
(215, 'offline', '249', 'ఇతరులు చేసిన ఏ పనివల్ల నీ మనస్సుకు బాధ కలుగుతుందో ఆ పనిని నీవు ఇతరులకు చేయవద్దు. '),
(216, 'offline', '252', 'ప్రయాణంలో మంచి తోడు గమ్యాన్ని దగ్గరచేస్తుంది. '),
(217, 'offline', '254', 'విడవకుండా ప్రయత్నం చేసేవారిని చూసి ఓటమి భయపడుతుంది. '),
(218, 'offline', '255', 'మనిషి వ్యక్తిత్వం అతని హోదానిబట్టి కాక ప్రవర్తనను బట్టి తెలుస్తుంది. '),
(219, 'offline', '259', 'మనీ గురించే గాక మానవత్వం గురించి ఆలోచించండి. '),
(220, 'offline', '241', 'అనవసరమైన విషయాలలో కలగజేసుకొనని వ్యక్తి, ప్రతి విషయంలోనూ తప్పనిసరిగా విజయం సాధిస్తాడు.'),
(221, 'offline', '239', 'బుద్ధిమంతుడైన వాడు ముందు తనలోని అవగుణాలను గుర్తించి సరిదిద్దుకుంటాడు. ఆ తరువాత ఎదుటివారి సద్గుణాలను గుర్తించి స్వంతం చేసుకుంటాడు.'),
(222, 'offline', '237', 'మాటలలో పరిమితిని, చేతలలో అపరిమిత సామర్ధ్యాన్ని చూపించగలగడమే ఉత్తమ వ్యక్తిత్వలక్షణం.'),
(223, 'offline', '236', 'ఒక గొప్ప పుస్తకం చదివినప్పుడు ఓ కొత్త స్నేహితుడు దొరికినంత సంబరమూ, దాన్ని మళ్ళీ చదివినప్పుడు చిరకాల మిత్రుణ్ణి కలిసినంత ఆనందమూ కలుగుతుంది.'),
(224, 'offline', '152', 'మనకు రెండు రకాల విద్య అవసరం. ఒకటి జీవనోపాధి ఎలా కల్పించుకోవాలో నేర్పాలి. రెండోది ఎలా జీవించాలో నేర్పాలి.'),
(225, 'offline', '171', ' మనిషికి బాగా అవసరమయ్యేది కాలమే! అయితే మనిషి ఎక్కువగా దుర్వినియోగం చేసుకునేది కూడా కాలాన్నే!'),
(226, 'offline', '190', 'జీవితంలో సంతృప్తి పడే వ్యక్తి ఎల్లప్పుడూ ఆనందంగానే ఉంటాడు. అసంతృప్తిగా జీవించే వ్యక్తి నిరంతరం దుఃఖంలో ఉంటాడు.'),
(227, 'offline', '199', 'వాడని ఇనుము తుప్పు పడుతుంది. కదలని నీరు స్వచ్ఛతను కోల్పోతుంది. అలాగే బద్ధకం మెదడును నిస్తేజం చేస్తుంది. '),
(228, 'offline', '201', 'మీకు ఇష్టమైన దాన్ని అందుకోవడానికి కృషి చేయకపోతే, అందుబాటులో ఉన్నదాన్నే ఇష్టపడాల్సి వస్తుంది.'),
(229, 'offline', '214', 'గుణానికి మనకంటే ఎక్కువ వున్నవారితోనూ, ధనానికి మనకంటే తక్కువ వున్నవారితోనూ పోల్చుకోవాలి.'),
(230, 'offline', '221', 'నిన్నటి కంటే నేడు నీ వివేకం పెరగకపోతే నీ జీవితంలో ఓ రోజు వ్యర్థమై పోయిందని తెలుసుకో.'),
(231, 'offline', '223', 'ఉపాధ్యాయుడు నిరంతరం నేర్చుకుంటూ ఉంటే తప్ప ఇతరలకు బోధించలేడు. దీపం తాను వెలుగుతూ ఉంటే తప్ప మరో దీపాన్ని వెలిగించలేదు.'),
(232, 'offline', '233', 'ఒక్క తప్పు కూడా చెయ్యని వ్యక్తిని మీరు చూపిస్తే, ఒక్క పని కూడా చెయ్యని వ్యక్తిని నేను చూపిస్తా.'),
(233, 'offline', '234', 'శ్రద్ధ, నిజాయితీ, విధేయత, సత్యాన్వేషణ, కష్టపడి పనిచేసే గుణం విజయానికి సోపానాలు.'),
(234, 'offline', '222', 'జీవితంలో ఒక అడుగు వెనక్కిపడితే రెండు అడుగులు ముందుకి ఎలా వెళ్ళాలో ఆలోచించాలి.'),
(235, 'offline', '220', 'ధనం మదాన్ని పెంచకూడదు. దయను పెంచాలి.'),
(236, 'offline', '217', 'నీతి, న్యాయం, ధర్మం, దానం, త్యాగం - ఈ అయిదు గుణాలు ఉన్నవారే నిజమైన ఆస్తిపరులు.'),
(237, 'offline', '215', 'రాళ్ళలాగా ఎక్కడంటే అక్కడ దొరక్కుండా అరుదుగా లభిస్తాయి కనుకే వజ్రాలకంత విలువ. ప్రశంసలైనా అంతే!'),
(238, 'offline', '213', 'జ్ఞానం పెరెగే కొద్దీ తన అజ్ఞానం ఎంతో తెలిసి వస్తూంటుంది.'),
(239, 'offline', '211', 'స్వయంకృషితో పైకొచ్చిన వ్యక్తి ముందు అదృష్టం గురించి మాట్లాడకండి. '),
(240, 'offline', '204', 'జీవితాన్ని ప్రేమించేవారు, సమయాన్ని వృధా చేయరు.'),
(241, 'offline', '202', 'ఆవేశంగా ఉన్నప్పుడు నిర్ణయాలు తీసుకోవడం, ఆనందంగా ఉన్నప్పుడు ఆలోచించకుండా మాట ఇవ్వడం చాలా ప్రమాదం.'),
(242, 'offline', '200', 'కష్టాలలో ఉన్నవారిని చూసి సామాన్యులు బాధపడతారు. ధీరులు సాయపడతారు.'),
(243, 'offline', '197', 'నేటి తెలివైన నిర్ణయం, రేపటి బంగారు భవితకు పునాది.'),
(244, 'offline', '194', 'ఆశలు, ఆశయాలు అందరికీ వుంటాయి. కాని నిత్యం శ్రమించేవారే వాటిని అందుకోగలుగుతారు.'),
(245, 'offline', '193', 'శ్రమయే మనుషుల్ని అదృష్టవంతుల్ని చేస్తుంది.'),
(246, 'offline', '183', 'ఆనందంగా పనిచేయటం గొప్ప ఆరోగ్యసూత్రం'),
(248, 'offline', '78', 'బోధకుడుగా వుండాలనుకునే ప్రతి వ్యక్తికి తన అభిప్రాయాలనే నూరి పోయకుండా, మనస్సులకు ఉత్తేజాన్ని కలిగించేలాగ లక్ష్యం ఉండాలి.'),
(260, 'offline', '74', 'శారీరకంగా వచ్చే అందం ఈ రోజున వుంటే రేపు పోవచ్చు. వ్యక్తిత్వం ద్వారా మన చుట్టూ ఏర్పరచుకున్న ఆకర్షణ జీవితాంతం ఉంటుంది.'),
(261, 'offline', '16', 'నువ్వెంత కష్టపడి పనిచేస్తున్నావో చెప్పొద్దు. ఎంతపని పూర్తయిందో చెప్పు.'),
(262, 'mario', 'demo', 'everything is good'),
(263, 'kamala', 'harris', 'మనం గెలిచాం. మనం గెలిచాం జో. మీరు అమెరికా అధ్యక్షుడు కాబోతున్నారు!'),
(264, 'testing', 'testing', 'programming in php is fun'),
(265, 'cicero', 'B Plus', 'A thankful heart is not only the greatest virtue, but the parent of all the other virtues. - cicero'),
(268, 'అభినేత్రి సావిత్రి', 'కుటుంబ గౌరవం', 'ఆనందాలే నిండాలి. అనురాగాలే పండాలి. అందరు ఒకటై ఉండాలి. కన్నుల పండుగ చెయ్యాలి.'),
(269, 'అభినేత్రి సావిత్రి', 'డాక్టర్ చక్రవర్తి', 'ఆశలు తీరని ఆవేశములో ఆశయాలలో ఆవేదనలో చీకటి మూసిన ఏకాంతములో తోడొకరుండిన అదే బాగ్యము అదే స్వర్గము'),
(273, 'test', 'test', 'test'),
(274, 'Anon', 'Test', 'A thankful heart is not only the greatest virtue, but the parent of all the other virtues. - cicero'),
(275, 'junk2', 'junk', 'junk');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `preferences`
--
ALTER TABLE `preferences`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `quote_table`
--
ALTER TABLE `quote_table`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `quote_table`
--
ALTER TABLE `quote_table`
MODIFY `id` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=277;
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>flexsocialbox/una
-- MENUS
UPDATE `sys_menu_items` SET `active`='1' WHERE `set_name`='bx_organizations_snippet_meta' AND `name`='friends';
UPDATE `sys_menu_items` SET `active`='1' WHERE `set_name`='bx_organizations_snippet_meta' AND `name`='befriend';
UPDATE `sys_menu_items` SET `visibility_custom`='a:2:{s:6:"module";s:16:"bx_organizations";s:6:"method";s:19:"is_enable_relations";}' WHERE `set_name`='sys_account_notifications' AND `module`='bx_organizations' AND `name`='notifications-relation-requests';
|
CREATE INDEX ix_releases_nzb_guid ON releases (nzbstatus, nzb_guid);
UPDATE site SET value = '136' WHERE setting = 'sqlpatch';
|
<filename>backend/de.metas.adempiere.adempiere/migration/src/main/sql/postgresql/system/10-de.metas.adempiere/5483490_sys_gh3329-event-log-window-trl.sql
-- 2018-01-22T07:33:07.979
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Window SET Name='Event Log',Updated=TO_TIMESTAMP('2018-01-22 07:33:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=540394
;
-- 2018-01-22T07:33:07.988
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Menu SET Description=NULL, IsActive='Y', Name='Event Log',Updated=TO_TIMESTAMP('2018-01-22 07:33:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=541004
;
-- 2018-01-22T07:33:12.463
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Tab SET Name='Event Log',Updated=TO_TIMESTAMP('2018-01-22 07:33:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=540979
;
-- 2018-01-22T07:33:24.203
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Tab SET Name='Event Log Daten',Updated=TO_TIMESTAMP('2018-01-22 07:33:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=540980
;
-- 2018-01-22T07:33:39.007
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Tab_Trl SET UpdatedBy=100,Updated=TO_TIMESTAMP('2018-01-22 07:33:39','YYYY-MM-DD HH24:MI:SS'),IsTranslated='Y',Name='Event Log' WHERE AD_Tab_ID=540980 AND AD_Language='en_US'
;
-- 2018-01-22T07:33:53.464
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Tab_Trl SET UpdatedBy=100,Updated=TO_TIMESTAMP('2018-01-22 07:33:53','YYYY-MM-DD HH24:MI:SS'),IsTranslated='Y',Name='Event Store' WHERE AD_Tab_ID=540979 AND AD_Language='en_US'
;
-- 2018-01-22T07:33:59.786
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Tab_Trl SET UpdatedBy=100,Updated=TO_TIMESTAMP('2018-01-22 07:33:59','YYYY-MM-DD HH24:MI:SS'),Name='Event Log Entry' WHERE AD_Tab_ID=540980 AND AD_Language='en_US'
;
-- 2018-01-22T07:35:53.047
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Tab_Trl SET UpdatedBy=100,Updated=TO_TIMESTAMP('2018-01-22 07:35:53','YYYY-MM-DD HH24:MI:SS'),Name='Event Log' WHERE AD_Tab_ID=540979 AND AD_Language='en_US'
;
-- 2018-01-22T07:36:06.349
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Window_Trl SET UpdatedBy=100,Updated=TO_TIMESTAMP('2018-01-22 07:36:06','YYYY-MM-DD HH24:MI:SS'),IsTranslated='Y',Name='Event Log' WHERE AD_Window_ID=540394 AND AD_Language='en_US'
;
-- 2018-01-22T07:36:31.933
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Window SET Name='Ereignis Log',Updated=TO_TIMESTAMP('2018-01-22 07:36:31','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=540394
;
-- 2018-01-22T07:36:31.941
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Menu SET Description=NULL, IsActive='Y', Name='Ereignis Log',Updated=TO_TIMESTAMP('2018-01-22 07:36:31','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=541004
;
-- 2018-01-22T07:36:41.368
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Tab SET Name='Ereignis Log',Updated=TO_TIMESTAMP('2018-01-22 07:36:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=540979
;
-- 2018-01-22T07:36:47.435
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Tab SET Name='Ereignis Log Daten',Updated=TO_TIMESTAMP('2018-01-22 07:36:47','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=540980
;
-- 2018-01-22T07:36:56.670
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET Name='Ereignis Log',Updated=TO_TIMESTAMP('2018-01-22 07:36:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=561297
;
-- 2018-01-22T07:37:05.049
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET Name='Ereignis Log Eintrag',Updated=TO_TIMESTAMP('2018-01-22 07:37:05','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=561296
;
-- 2018-01-22T07:37:18.141
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET Name='Ereignis Gruppe',Updated=TO_TIMESTAMP('2018-01-22 07:37:18','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=561292
;
-- 2018-01-22T07:37:23.261
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET Name='Ereignis Typ',Updated=TO_TIMESTAMP('2018-01-22 07:37:23','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=561303
;
-- 2018-01-22T07:37:27.806
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET Name='Ereignis UUID',Updated=TO_TIMESTAMP('2018-01-22 07:37:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=561289
;
-- 2018-01-22T07:37:33.769
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET Name='Ereignis Log',Updated=TO_TIMESTAMP('2018-01-22 07:37:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=561291
;
-- 2018-01-22T07:38:12.595
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_UI_Element SET WidgetSize='M',Updated=TO_TIMESTAMP('2018-01-22 07:38:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=550148
;
-- 2018-01-22T07:38:15.455
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_UI_Element SET WidgetSize='M',Updated=TO_TIMESTAMP('2018-01-22 07:38:15','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=550149
;
-- 2018-01-22T07:39:00.384
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_UI_Element SET WidgetSize='L',Updated=TO_TIMESTAMP('2018-01-22 07:39:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=550152
;
-- 2018-01-22T07:39:24.851
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_UI_Element SET WidgetSize='M',Updated=TO_TIMESTAMP('2018-01-22 07:39:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=550155
;
-- 2018-01-22T07:39:44.780
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_UI_Element SET WidgetSize='L',Updated=TO_TIMESTAMP('2018-01-22 07:39:44','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=550165
;
-- 2018-01-22T07:39:48.581
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_UI_Element SET WidgetSize='M',Updated=TO_TIMESTAMP('2018-01-22 07:39:48','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=550158
;
-- 2018-01-22T07:39:56.740
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_UI_Element SET WidgetSize='M',Updated=TO_TIMESTAMP('2018-01-22 07:39:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=550157
;
-- 2018-01-22T07:40:00.923
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_UI_Element SET WidgetSize='M',Updated=TO_TIMESTAMP('2018-01-22 07:40:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=550166
;
-- 2018-01-22T07:40:34.602
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_UI_Element SET WidgetSize='S',Updated=TO_TIMESTAMP('2018-01-22 07:40:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=550153
;
-- 2018-01-22T07:41:33.501
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field_Trl SET UpdatedBy=100,Updated=TO_TIMESTAMP('2018-01-22 07:41:33','YYYY-MM-DD HH24:MI:SS'),Name='Topic Name' WHERE AD_Field_ID=561292 AND AD_Language='en_US'
;
-- 2018-01-22T07:41:58.164
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field_Trl SET UpdatedBy=100,Updated=TO_TIMESTAMP('2018-01-22 07:41:58','YYYY-MM-DD HH24:MI:SS'),Name='Event Group' WHERE AD_Field_ID=561292 AND AD_Language='en_US'
;
-- 2018-01-22T07:42:07.430
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field_Trl SET UpdatedBy=100,Updated=TO_TIMESTAMP('2018-01-22 07:42:07','YYYY-MM-DD HH24:MI:SS'),Name='Event Type' WHERE AD_Field_ID=561303 AND AD_Language='en_US'
;
-- 2018-01-22T07:42:29.077
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field_Trl SET UpdatedBy=100,Updated=TO_TIMESTAMP('2018-01-22 07:42:29','YYYY-MM-DD HH24:MI:SS'),Name='Event Log' WHERE AD_Field_ID=561291 AND AD_Language='en_US'
;
-- 2018-01-22T07:42:47.173
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field_Trl SET UpdatedBy=100,Updated=TO_TIMESTAMP('2018-01-22 07:42:47','YYYY-MM-DD HH24:MI:SS'),Name='Event Log' WHERE AD_Field_ID=561297 AND AD_Language='en_US'
;
-- 2018-01-22T07:43:12.890
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field_Trl SET UpdatedBy=100,Updated=TO_TIMESTAMP('2018-01-22 07:43:12','YYYY-MM-DD HH24:MI:SS'),IsTranslated='Y' WHERE AD_Field_ID=561295 AND AD_Language='en_US'
;
-- 2018-01-22T07:43:27.752
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field_Trl SET UpdatedBy=100,Updated=TO_TIMESTAMP('2018-01-22 07:43:27','YYYY-MM-DD HH24:MI:SS'),Name='Event Log Entry' WHERE AD_Field_ID=561296 AND AD_Language='en_US'
;
-- 2018-01-22T07:51:21.506
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Menu_Trl SET UpdatedBy=100,Updated=TO_TIMESTAMP('2018-01-22 07:51:21','YYYY-MM-DD HH24:MI:SS'),IsTranslated='Y',Name='Event Log',WEBUI_NameBrowse='Event Log' WHERE AD_Menu_ID=541004 AND AD_Language='en_US'
;
-- 2018-01-22T07:51:39.240
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Menu SET Name='Ereignis', WEBUI_NameBrowse='Ereignis',Updated=TO_TIMESTAMP('2018-01-22 07:51:39','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=541006
;
-- 2018-01-22T07:53:23.954
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Menu_Trl SET UpdatedBy=100,Updated=TO_TIMESTAMP('2018-01-22 07:53:23','YYYY-MM-DD HH24:MI:SS'),IsTranslated='Y',Name='Event' WHERE AD_Menu_ID=541006 AND AD_Language='en_US'
;
|
DROP TABLE IF EXISTS `USDCAD_D1`;
CREATE TABLE IF NOT EXISTS `USDCAD_D1`(
`id` int(5) NOT NULL,
`open` varchar(30) NOT NULL,
`high` varchar(30) NOT NULL,
`close` varchar(30) NOT NULL,
`low` varchar(30) NOT NULL,
`time` varchar(30) NOT NULL);
ALTER TABLE `USDCAD_D1` ADD PRIMARY KEY (`id`);
ALTER TABLE `USDCAD_D1` MODIFY `id` int(5) NOT NULL AUTO_INCREMENT;
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.30366','1.30366','1.30141','1.29984','2015.10.14 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.29941','1.30795','1.30366','1.29605','2015.10.13 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.29600','1.30102','1.29954','1.29007','2015.10.12 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.30143','1.30206','1.29368','1.29002','2015.10.09 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.30550','1.30725','1.30142','1.29850','2015.10.08 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.30335','1.30712','1.30546','1.29792','2015.10.07 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.30802','1.31332','1.30321','1.30250','2015.10.06 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.31479','1.31745','1.30857','1.30637','2015.10.05 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.32648','1.32675','1.31636','1.31535','2015.10.02 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.33200','1.33309','1.32657','1.32177','2015.10.01 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.34206','1.34298','1.33105','1.33060','2015.09.30 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.33928','1.34560','1.34204','1.33741','2015.09.29 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.33345','1.33968','1.33935','1.33166','2015.09.28 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.33054','1.33535','1.33145','1.32989','2015.09.25 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.33197','1.34150','1.33013','1.32903','2015.09.24 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.32680','1.33566','1.33193','1.32320','2015.09.23 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.32522','1.32973','1.32698','1.32191','2015.09.22 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.32292','1.32645','1.32530','1.31744','2015.09.21 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.31797','1.32289','1.32198','1.30113','2015.09.18 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.31682','1.32046','1.31808','1.30738','2015.09.17 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.32456','1.32563','1.31678','1.31592','2015.09.16 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.32624','1.32716','1.32469','1.32260','2015.09.15 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.32534','1.32796','1.32638','1.32237','2015.09.14 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.32461','1.33095','1.32526','1.32146','2015.09.11 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.32523','1.32873','1.32478','1.31751','2015.09.10 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.32061','1.32609','1.32543','1.31538','2015.09.09 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.33029','1.33080','1.32045','1.31845','2015.09.08 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.32584','1.33092','1.33039','1.32445','2015.09.07 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.31754','1.32846','1.32650','1.31594','2015.09.04 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.32679','1.32892','1.31752','1.31358','2015.09.03 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.32577','1.33237','1.32672','1.32027','2015.09.02 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.31357','1.32584','1.32579','1.31169','2015.09.01 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.32109','1.33260','1.31349','1.31161','2015.08.31 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.31964','1.32987','1.32127','1.31655','2015.08.28 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.32865','1.33043','1.31918','1.31782','2015.08.27 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.33319','1.33476','1.32837','1.32534','2015.08.26 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.32760','1.33530','1.33301','1.31520','2015.08.25 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.31789','1.32887','1.32760','1.31610','2015.08.24 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.30824','1.31791','1.31666','1.30591','2015.08.21 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.31251','1.31756','1.30808','1.30591','2015.08.20 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.30558','1.31764','1.31212','1.30232','2015.08.19 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.30761','1.31258','1.30522','1.30397','2015.08.18 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.30907','1.31515','1.30738','1.30597','2015.08.17 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.30569','1.30952','1.30910','1.30156','2015.08.14 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.29781','1.30899','1.30551','1.29585','2015.08.13 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.31103','1.31566','1.29733','1.29516','2015.08.12 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.29971','1.31462','1.31101','1.29949','2015.08.11 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.31189','1.31815','1.29960','1.29904','2015.08.10 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.31074','1.31789','1.31308','1.30480','2015.08.07 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.31760','1.31935','1.31074','1.30927','2015.08.06 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.31896','1.32130','1.31760','1.31100','2015.08.05 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.31549','1.32015','1.31907','1.31050','2015.08.04 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.30869','1.31751','1.31543','1.30775','2015.08.03 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.29993','1.30890','1.30700','1.29420','2015.07.31 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.29434','1.30382','1.29978','1.29427','2015.07.30 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.29196','1.29654','1.29435','1.28663','2015.07.29 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.30364','1.30425','1.29198','1.29112','2015.07.28 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.30368','1.30516','1.30364','1.29800','2015.07.27 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.30363','1.31021','1.30364','1.30165','2015.07.24 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.30269','1.30468','1.30359','1.29527','2015.07.23 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.29467','1.30520','1.30285','1.29361','2015.07.22 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.29929','1.30121','1.29467','1.29194','2015.07.21 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.29756','1.30218','1.29916','1.29518','2015.07.20 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.29565','1.30029','1.29856','1.29487','2015.07.17 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.29106','1.29690','1.29564','1.29046','2015.07.16 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.27282','1.29562','1.29134','1.27228','2015.07.15 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.27406','1.28046','1.27269','1.27225','2015.07.14 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.26948','1.27899','1.27406','1.26790','2015.07.13 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.27031','1.27529','1.26795','1.26638','2015.07.10 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.27447','1.27449','1.27066','1.26658','2015.07.09 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.27042','1.27677','1.27454','1.26883','2015.07.08 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.26496','1.27794','1.27042','1.26429','2015.07.07 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.25972','1.26636','1.26501','1.25668','2015.07.06 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.25431','1.25995','1.25586','1.25366','2015.07.03 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.25883','1.26329','1.25379','1.25377','2015.07.02 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.24920','1.25973','1.25883','1.24740','2015.07.01 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.24021','1.24999','1.24927','1.23610','2015.06.30 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.23129','1.24120','1.24024','1.23029','2015.06.29 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.23254','1.23937','1.23149','1.23139','2015.06.26 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.23814','1.23989','1.23252','1.23110','2015.06.25 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.23251','1.24225','1.23815','1.22769','2015.06.24 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.23083','1.23823','1.23249','1.23072','2015.06.23 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.22589','1.23286','1.23074','1.22179','2015.06.22 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.22208','1.22951','1.22656','1.22125','2015.06.19 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.22260','1.22499','1.22214','1.21298','2015.06.18 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.22911','1.23460','1.22262','1.22207','2015.06.17 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.23229','1.23458','1.22932','1.22833','2015.06.16 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.23129','1.23603','1.23237','1.22969','2015.06.15 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.22920','1.23469','1.23102','1.22773','2015.06.12 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.22531','1.23536','1.22911','1.22526','2015.06.11 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.23359','1.23522','1.22531','1.22017','2015.06.10 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.24084','1.24407','1.23345','1.23069','2015.06.09 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.24384','1.24724','1.24092','1.23827','2015.06.08 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.25013','1.25612','1.24387','1.24350','2015.06.05 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.24521','1.25039','1.25013','1.24363','2015.06.04 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.23999','1.25017','1.24508','1.23848','2015.06.03 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.25221','1.25345','1.23996','1.23667','2015.06.02 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.24378','1.25629','1.25207','1.24369','2015.06.01 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.24345','1.25265','1.24365','1.24106','2015.05.29 00:00');
INSERT INTO `USDCAD_D1`(`open`,`high`,`close`,`low`,`time`) VALUES('1.24506','1.25382','1.24341','1.24220','2015.05.28 00:00');
|
<reponame>hongyuanChrisLi/RealEstateMySQL<gh_stars>0
CREATE DEFINER=`mlsuser`@`%` FUNCTION `f_city_map`(city_name VARCHAR(20)) RETURNS varchar(20) CHARSET utf8
BEGIN
DECLARE map_name VARCHAR(20);
IF lower(city_name) LIKE "carmel%" THEN
SET map_name = 'Carmel';
ELSE
SET map_name = city_name;
END IF;
RETURN (map_name);
END |
<reponame>klayantw/DbUpReboot<gh_stars>0
-- Settings and Statistics
create table $schema$.Redirect(
[Id] [int] identity(1,1) not null, -- constraint PK_Redirect_Id primary key NOT ENFORCED,
[From] [nvarchar](255) not null,
[To] [nvarchar](255) not null
)
go
|
<gh_stars>0
select C.person_id, C.visit_start_date as start_date, C.visit_end_date as end_date, C.visit_concept_id as TARGET_CONCEPT_ID
from
(
select vo.*, ROW_NUMBER() over (PARTITION BY vo.person_id ORDER BY vo.visit_start_date, vo.visit_occurrence_id) as ordinal
FROM @cdm_database_schema.VISIT_OCCURRENCE vo
@codesetClause
) C
@joinClause
@whereClause
|
<gh_stars>1-10
insert into app_setups (app_setup, app) values ($1, $2) returning * |
-- Verify connectivity-intake:functions/session on pg
begin;
select pg_get_functiondef('connectivity_intake_public.session()'::regprocedure);
rollback;
|
CREATE TABLE my_option (
"id" varchar(50) NOT NULL,
"key" varchar(50) NOT NULL,
"value" varchar(50) NOT NULL,
"desc" varchar(50) NOT NULL,
"create_time" TIMESTAMP NOT NULL,
"modify_time" TIMESTAMP NOT NULL
) |
{{ config(enabled=fivetran_utils.enabled_vars(['hubspot_marketing_enabled','hubspot_email_event_enabled','hubspot_email_event_bounce_enabled'])) }}
select *
from {{ var('email_event_bounce') }}
|
<gh_stars>1-10
create or replace view competition_registration
as
select id,
name,
'COMPETITION' as event_type,
'ACTIVE' as status,
created_at,
updated_at,
'' as description,
registration_begin as event_start,
registration_end as event_end,
'COMPETITION' as object_type,
id as object_id
from competition |
<gh_stars>0
-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jan 10, 2022 at 04:05 AM
-- Server version: 10.4.21-MariaDB
-- PHP Version: 7.3.31
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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: `siak`
--
-- --------------------------------------------------------
--
-- Table structure for table `transaksi_temp`
--
CREATE TABLE `transaksi_temp` (
`id_transaksi` int(11) NOT NULL,
`id_user` int(11) NOT NULL,
`no_reff` varchar(25) NOT NULL,
`tgl_input` datetime NOT NULL,
`tgl_transaksi` date NOT NULL,
`jenis_saldo` enum('debit','kredit','','') NOT NULL,
`saldo` int(11) NOT NULL,
`Keterangan` varchar(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `transaksi_temp`
--
INSERT INTO `transaksi_temp` (`id_transaksi`, `id_user`, `no_reff`, `tgl_input`, `tgl_transaksi`, `jenis_saldo`, `saldo`, `Keterangan`) VALUES
(1, 1, '1-1100', '2022-01-08 15:58:56', '2022-01-08', 'debit', 20000, ''),
(2, 1, '4-1000', '2022-01-06 22:19:16', '2022-01-08', 'kredit', 20000, 'Sumbangan Gunung Ken'),
(3, 1, '5-1000', '2022-01-08 16:27:07', '2021-12-22', 'debit', 2000, 'Beban barang'),
(4, 1, '1-1100', '2022-01-08 16:28:50', '2021-12-29', 'kredit', 2000, ''),
(5, 1, '6-1100', '2022-01-08 18:21:34', '2021-12-01', 'kredit', 6000, 'Sumbangan UG'),
(6, 1, '1-1100', '2022-01-08 18:21:34', '2021-12-01', 'debit', 6000, 'Sumbangan UG'),
(7, 1, '6-1100', '2022-01-08 18:42:22', '2021-11-01', 'kredit', 50000, 'Saldo Awal'),
(8, 1, '1-1100', '2022-01-08 18:42:22', '2021-11-01', 'debit', 50000, 'Saldo Awal'),
(9, 1, '4-1000', '2021-11-01 00:47:10', '2021-11-01', 'kredit', 8000, 'Saldo Awal'),
(10, 1, '1-1100', '2022-01-08 18:47:10', '2021-11-01', 'debit', 8000, '<NAME>'),
(11, 1, '1-1100', '2022-01-09 07:10:45', '2021-12-14', 'debit', 9000, '<NAME>'),
(12, 1, '4-1000', '2022-01-09 07:10:45', '2021-12-14', 'kredit', 9000, '<NAME>'),
(13, 1, '1-1100', '2022-01-09 07:12:41', '2021-12-15', 'debit', 500, '<NAME>'),
(14, 1, '4-1000', '2022-01-09 07:12:41', '2021-12-15', 'kredit', 500, '<NAME>'),
(15124, 1, '1-1100', '2022-01-09 15:41:53', '2022-01-09', 'debit', 1000, ''),
(15125, 1, '4-1000', '2022-01-09 15:41:53', '2022-01-09', 'kredit', 1000, ''),
(15126, 1, '1-1100', '2022-01-09 15:57:12', '2022-01-09', 'debit', 3000, 'Jasa Pengantaran'),
(15127, 1, '4-2000', '2022-01-09 15:57:12', '2022-01-09', 'kredit', 3000, 'Jasa Pengantaran');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `transaksi_temp`
--
ALTER TABLE `transaksi_temp`
ADD PRIMARY KEY (`id_transaksi`),
ADD KEY `id_user` (`id_user`),
ADD KEY `no_reff` (`no_reff`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `transaksi_temp`
--
ALTER TABLE `transaksi_temp`
MODIFY `id_transaksi` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15128;
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>psdevdb.sql
-- phpMyAdmin SQL Dump
-- version 4.7.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1:3306
-- Generation Time: Oct 12, 2017 at 07:30 PM
-- Server version: 5.7.19
-- PHP Version: 5.6.31
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: `psdevdb`
--
-- --------------------------------------------------------
--
-- Table structure for table `contests`
--
DROP TABLE IF EXISTS `contests`;
CREATE TABLE IF NOT EXISTS `contests` (
`contestID` int(11) NOT NULL AUTO_INCREMENT,
`iconID` varchar(50) NOT NULL,
`styleID` varchar(4) NOT NULL,
`contest_name` varchar(140) NOT NULL,
`entry_fee` int(6) NOT NULL,
`entries` int(11) NOT NULL,
`entry_limit` varchar(11) NOT NULL,
`prize_total` int(11) NOT NULL,
`contest_date_start` date NOT NULL,
`contest_date_end` date NOT NULL,
`contest_status` int(1) NOT NULL,
PRIMARY KEY (`contestID`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `contests`
--
INSERT INTO `contests` (`contestID`, `iconID`, `styleID`, `contest_name`, `entry_fee`, `entries`, `entry_limit`, `prize_total`, `contest_date_start`, `contest_date_end`, `contest_status`) VALUES
(1, '1', '1', 'NFL Legends Alpha Testing Tournament #2', 0, 0, 'Unlimited', 0, '2017-10-24', '2017-10-25', 1),
(2, '2', '2', 'NFL Legends Alpha Test Tournament #1', 0, 10, '10', 0, '2017-10-17', '2017-10-18', 2);
-- --------------------------------------------------------
--
-- Table structure for table `conteststatus`
--
DROP TABLE IF EXISTS `conteststatus`;
CREATE TABLE IF NOT EXISTS `conteststatus` (
`statusID` int(1) NOT NULL AUTO_INCREMENT,
`status` varchar(15) NOT NULL,
PRIMARY KEY (`statusID`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `conteststatus`
--
INSERT INTO `conteststatus` (`statusID`, `status`) VALUES
(1, 'Open'),
(2, 'Full'),
(3, 'In Progress'),
(4, 'Closed');
-- --------------------------------------------------------
--
-- Table structure for table `icons`
--
DROP TABLE IF EXISTS `icons`;
CREATE TABLE IF NOT EXISTS `icons` (
`iconID` int(3) NOT NULL AUTO_INCREMENT,
`sport` varchar(50) NOT NULL,
`league` varchar(15) NOT NULL,
`icon_html` varchar(255) NOT NULL,
PRIMARY KEY (`iconID`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `icons`
--
INSERT INTO `icons` (`iconID`, `sport`, `league`, `icon_html`) VALUES
(1, 'football', 'NFL', 'ion-ios-americanfootball'),
(2, 'basketball', 'NBA', 'ion-ios-basketball');
-- --------------------------------------------------------
--
-- Table structure for table `legends_dst`
--
DROP TABLE IF EXISTS `legends_dst`;
CREATE TABLE IF NOT EXISTS `legends_dst` (
`dstID` int(2) NOT NULL AUTO_INCREMENT,
`dst_city` varchar(25) NOT NULL,
`dst_team` varchar(25) NOT NULL,
`dst_abbrv` varchar(4) NOT NULL,
`dst_year` int(4) NOT NULL,
`dst_fppg` decimal(4,2) NOT NULL,
`dst_salary` int(5) NOT NULL,
PRIMARY KEY (`dstID`)
) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `legends_dst`
--
INSERT INTO `legends_dst` (`dstID`, `dst_city`, `dst_team`, `dst_abbrv`, `dst_year`, `dst_fppg`, `dst_salary`) VALUES
(1, 'Chicago ', 'Bears', 'CHI', 1985, '17.19', 6000),
(2, 'Cleveland', 'Browns', 'CLE', 1950, '16.50', 5700),
(3, 'Minnesota', 'Vikings', 'MIN', 1969, '16.13', 5600),
(4, 'Kansas City', 'Chiefs', 'KC', 1969, '16.06', 5600),
(5, 'Atlanta ', 'Falcons', 'ATL', 1977, '15.56', 5400),
(6, 'Green Bay', 'Packers', 'GB', 1962, '15.13', 5200),
(7, 'Pittsburgh', 'Steelers', 'PIT', 1976, '14.44', 5000),
(8, 'Los Angeles', 'Rams', 'LAR', 1973, '14.44', 5000),
(9, 'Indianapolis', 'Colts', 'IND', 1968, '14.19', 4900),
(10, 'Baltimore', 'Ravens', 'BAL', 2000, '13.81', 4800),
(11, 'Houston', 'Oilers', 'HOU', 1993, '13.63', 4700),
(12, '<NAME>', 'Buccaneers', 'TB', 2002, '13.44', 4600),
(13, 'Philadelphia', 'Eagles', 'PHI', 1991, '13.38', 4600),
(14, 'Washington', 'Redskins', 'WAS', 1991, '13.38', 4600),
(15, 'Jacksonville', 'Jaguars', 'JAX', 1999, '13.19', 4500),
(16, 'Tennesee', 'Titans', 'TEN', 2000, '13.19', 4500),
(17, 'Miami', 'Dolphins', 'MIA', 1972, '12.81', 4400),
(18, 'Seattle ', 'Seahawks', 'SEA', 2013, '12.31', 4300),
(19, 'New York', 'Giants', 'NYG', 1986, '12.06', 4200),
(20, 'New Orleans', 'Saints', 'NO', 1987, '11.94', 4100),
(21, 'New York', 'Jets', 'NYJ', 1968, '11.94', 4100),
(22, 'Oakland', 'Raiders', 'OAK', 1975, '11.69', 4000),
(23, 'Buffalo', 'Bills', 'BUF', 1990, '11.63', 4000),
(24, 'New England', 'Patriots', 'NE', 2004, '11.38', 3900),
(25, 'Dallas', 'Cowboys', 'DAL', 1994, '11.06', 3800),
(26, 'San Diego', 'Chargers', 'SD', 1994, '11.00', 3800),
(27, 'Denver ', 'Broncos', 'DEN', 2015, '10.94', 3700),
(28, 'Carolina', 'Panthers', 'CAR', 2015, '10.75', 3700),
(29, 'Detroit', 'Lions', 'DET', 1991, '10.00', 3500),
(30, 'San Francisco', '49ers', 'SF', 1988, '9.75', 3400),
(31, 'Cincinatti', 'Bengals', 'CIN', 1988, '9.25', 3200),
(32, 'Arizona', 'Cardinals', 'AZ', 2008, '8.06', 2800);
-- --------------------------------------------------------
--
-- Table structure for table `legends_dstdata`
--
DROP TABLE IF EXISTS `legends_dstdata`;
CREATE TABLE IF NOT EXISTS `legends_dstdata` (
`rowID` int(11) NOT NULL,
`dstID` int(6) NOT NULL,
`gameID` int(6) NOT NULL,
`game_date` date NOT NULL,
`opp` varchar(4) NOT NULL,
`pa` int(2) NOT NULL,
`sack` int(2) NOT NULL,
`interception` int(2) NOT NULL,
`dfr` int(2) NOT NULL,
`blocked_kicks` int(2) NOT NULL,
`safety` int(2) NOT NULL,
`krtd` int(2) NOT NULL,
`prtd` int(2) NOT NULL,
`intrettd` int(2) NOT NULL,
`fumrettd` int(2) NOT NULL,
`blkrettd` int(2) NOT NULL,
`fgrettd` int(2) NOT NULL,
`deftd` int(2) NOT NULL,
`subtotal` float NOT NULL,
`ptnet` float NOT NULL,
`total` float NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `legends_dstdata`
--
INSERT INTO `legends_dstdata` (`rowID`, `dstID`, `gameID`, `game_date`, `opp`, `pa`, `sack`, `interception`, `dfr`, `blocked_kicks`, `safety`, `krtd`, `prtd`, `intrettd`, `fumrettd`, `blkrettd`, `fgrettd`, `deftd`, `subtotal`, `ptnet`, `total`) VALUES
(1, 1, 1, '1985-09-08', 'TB', 28, 2, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 10, -1, 9),
(2, 1, 2, '1985-09-15', 'NE', 7, 6, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 4, 18),
(3, 1, 3, '1985-09-19', 'MIN', 24, 4, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 14),
(4, 1, 4, '1985-09-29', 'WAS', 10, 4, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 16, 4, 20),
(5, 1, 5, '1985-10-06', 'TB', 19, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 7),
(6, 1, 6, '1985-10-13', 'SF', 10, 7, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 4, 15),
(7, 1, 7, '1985-10-21', 'GB', 7, 5, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 4, 19),
(8, 1, 8, '1985-10-27', 'MIN', 9, 4, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 20, 4, 24),
(9, 1, 9, '1985-11-03', 'GB', 10, 3, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 7, 4, 11),
(10, 1, 10, '1985-11-10', 'DET', 3, 4, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 7, 19),
(11, 1, 11, '1985-11-17', 'DAL', 0, 6, 4, 1, 0, 0, 0, 0, 2, 0, 0, 0, 2, 28, 10, 38),
(12, 1, 12, '1985-11-24', 'ATL', 0, 5, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 13, 10, 23),
(13, 1, 13, '1985-12-02', 'MIA', 38, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, -4, 3),
(14, 1, 14, '1985-12-08', 'IND', 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 5),
(15, 1, 15, '1985-12-14', 'NYJ', 6, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 7, 17),
(16, 1, 16, '1985-12-22', 'DET', 17, 6, 3, 4, 0, 0, 1, 0, 0, 1, 0, 0, 1, 32, 1, 33),
(17, 2, 1, '1950-09-16', 'PHI', 10, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 4, 16),
(18, 2, 2, '1950-09-24', 'IND', 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 10, 18),
(19, 2, 3, '1950-10-01', 'NYG', 6, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 9),
(20, 2, 4, '1950-10-07', 'PIT', 17, 0, 1, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 14, 1, 15),
(21, 2, 5, '1950-10-15', 'AZ', 24, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4),
(22, 2, 6, '1950-10-22', 'NYG', 17, 1, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 10),
(23, 2, 7, '1950-10-29', 'PIT', 7, 0, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 4, 20),
(24, 2, 8, '1950-11-05', 'AZ', 7, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 4, 14),
(25, 2, 9, '1950-11-12', 'SF', 14, 0, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 1, 19),
(26, 2, 10, '1950-11-19', 'WAS', 14, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 7),
(27, 2, 11, '1950-12-03', 'PHI', 7, 0, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 14, 4, 18),
(28, 2, 12, '1950-12-10', 'WAS', 21, 2, 3, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 22, 0, 22),
(29, 2, 13, '1951-09-30', 'SF', 24, 3, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 11),
(30, 2, 14, '1951-10-07', 'LAR', 23, 1, 3, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 15, 0, 15),
(31, 2, 15, '1951-10-14', 'WAS', 0, 2, 3, 4, 0, 0, 0, 0, 0, 1, 0, 0, 1, 22, 10, 32),
(32, 2, 16, '1951-10-21', 'PIT', 0, 4, 2, 2, 0, 0, 0, 0, 1, 1, 0, 0, 2, 24, 10, 34),
(33, 3, 1, '1969-09-21', 'NYG', 24, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7),
(34, 3, 2, '1969-09-28', 'IND', 14, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 9),
(35, 3, 3, '1969-10-05', 'GB', 7, 8, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 4, 18),
(36, 3, 4, '1969-10-12', 'CHI', 0, 4, 3, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 18, 10, 28),
(37, 3, 5, '1969-10-19', 'AZ', 10, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 7),
(38, 3, 6, '1969-10-26', 'DET', 10, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 4, 18),
(39, 3, 7, '1969-11-02', 'CHI', 14, 9, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 1, 14),
(40, 3, 8, '1969-11-09', 'CLE', 3, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 7, 17),
(41, 3, 9, '1969-11-16', 'GB', 7, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 11),
(42, 3, 10, '1969-11-23', 'PIT', 14, 2, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 2, 24, 1, 25),
(43, 3, 11, '1969-11-27', 'DET', 0, 7, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 10, 23),
(44, 3, 12, '1969-12-07', 'LAR', 13, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6),
(45, 3, 13, '1969-12-14', 'SF', 7, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 4, 14),
(46, 3, 14, '1969-12-21', 'ATL', 10, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 12),
(47, 3, 15, '1970-09-20', 'KC', 10, 1, 2, 2, 0, 0, 0, 0, 0, 1, 0, 0, 1, 15, 4, 19),
(48, 3, 16, '1970-09-27', 'NO', 0, 0, 2, 2, 0, 0, 0, 0, 0, 2, 0, 0, 2, 20, 10, 30),
(49, 4, 1, '1969-09-14', 'SD', 9, 2, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 4, 16),
(50, 4, 2, '1969-09-21', 'NE', 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 10, 15),
(51, 4, 3, '1969-09-28', 'CIN', 24, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 11),
(52, 4, 4, '1969-10-05', 'DEN', 13, 4, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 12, 4, 16),
(53, 4, 5, '1969-10-12', 'HOU', 0, 4, 5, 4, 0, 0, 0, 0, 0, 1, 0, 0, 1, 28, 10, 38),
(54, 4, 6, '1969-10-19', 'MIA', 10, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 4, 14),
(55, 4, 7, '1969-10-26', 'CIN', 22, 6, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 1, 16, 0, 16),
(56, 4, 8, '1969-11-02', 'BUF', 7, 9, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 4, 25),
(57, 4, 9, '1969-11-09', 'SD', 3, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 7, 21),
(58, 4, 10, '1969-11-16', 'NYJ', 16, 3, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 1, 14),
(59, 4, 11, '1969-11-23', 'OAK', 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
(60, 4, 12, '1969-11-27', 'DEN', 17, 3, 2, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 19, 1, 20),
(61, 4, 13, '1969-12-07', 'BUF', 19, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 7),
(62, 4, 14, '1969-12-13', 'OAK', 10, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 9),
(63, 4, 15, '1970-09-20', 'MIN', 27, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8),
(64, 4, 16, '1970-09-28', 'IND', 24, 7, 5, 2, 0, 0, 0, 0, 0, 1, 0, 0, 1, 27, 0, 27),
(65, 5, 1, '1977-09-18', 'LAR', 6, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 7, 16),
(66, 5, 2, '1977-09-25', 'WAS', 10, 3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 13),
(67, 5, 3, '1977-10-02', 'NYG', 3, 9, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 7, 24),
(68, 5, 4, '1977-10-09', 'SF', 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 10, 16),
(69, 5, 5, '1977-10-16', 'BUF', 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 11),
(70, 5, 6, '1977-10-23', 'CHI', 10, 4, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 4, 18),
(71, 5, 7, '1977-10-30', 'MIN', 14, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 1, 13),
(72, 5, 8, '1977-11-06', 'SF', 10, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 11),
(73, 5, 9, '1977-11-13', 'DET', 6, 3, 2, 2, 0, 0, 0, 0, 1, 1, 0, 0, 2, 23, 7, 30),
(74, 5, 10, '1977-11-20', 'NO', 21, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 13, 0, 13),
(75, 5, 11, '1977-11-27', 'TB', 0, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 10, 24),
(76, 5, 12, '1977-12-04', 'NE', 16, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 8),
(77, 5, 13, '1977-12-11', 'LAR', 23, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8),
(78, 5, 14, '1977-12-18', 'NO', 7, 3, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 4, 17),
(79, 5, 15, '1978-09-03', 'HOU', 14, 4, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 12, 1, 13),
(80, 5, 16, '1978-09-10', 'LAR', 10, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 4, 14),
(81, 6, 1, '1962-09-16', 'MIN', 7, 6, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 4, 24),
(82, 6, 2, '1962-09-23', 'AZ', 0, 5, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 10, 25),
(83, 6, 3, '1962-09-30', 'CHI', 0, 5, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 21, 10, 31),
(84, 6, 4, '1962-10-07', 'DET', 7, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 8),
(85, 6, 5, '1962-10-14', 'MIN', 21, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 9),
(86, 6, 6, '1962-10-21', 'SF', 13, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 12),
(87, 6, 7, '1962-10-28', 'IND', 6, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 14),
(88, 6, 8, '1962-11-04', 'CHI', 7, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 4, 18),
(89, 6, 9, '1962-11-11', 'PHI', 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 10, 16),
(90, 6, 10, '1962-11-18', 'IND', 13, 5, 1, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 17, 4, 21),
(91, 6, 11, '1962-11-22', 'DET', 26, 0, 2, 3, 0, 0, 0, 0, 0, 1, 0, 0, 1, 16, 0, 16),
(92, 6, 12, '1962-12-02', 'LAR', 10, 5, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 4, 15),
(93, 6, 13, '1962-12-09', 'SF', 21, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6),
(94, 6, 14, '1962-12-16', 'LAR', 17, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 4),
(95, 6, 15, '1963-09-15', 'CHI', 10, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 9),
(96, 6, 16, '1963-09-22', 'DET', 10, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 4, 14),
(97, 7, 1, '1976-09-12', 'OAK', 31, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, -1, 9),
(98, 7, 2, '1976-09-19', 'CLE', 14, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 10),
(99, 7, 3, '1976-09-26', 'NE', 30, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -1, 7),
(100, 7, 4, '1976-10-04', 'MIN', 17, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 1, 11),
(101, 7, 5, '1976-10-10', 'CLE', 18, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 6),
(102, 7, 6, '1976-10-17', 'CIN', 6, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 7, 18),
(103, 7, 7, '1976-10-24', 'NYG', 0, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 10, 19),
(104, 7, 8, '1976-10-31', 'SD', 0, 5, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 10, 25),
(105, 7, 9, '1976-11-07', 'KC', 0, 2, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 10, 24),
(106, 7, 10, '1976-11-14', 'MIA', 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 12),
(107, 7, 11, '1976-11-21', 'HOU', 16, 1, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 13, 1, 14),
(108, 7, 12, '1976-11-28', 'CIN', 3, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 7, 15),
(109, 7, 13, '1976-12-05', 'TB', 0, 5, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 10, 23),
(110, 7, 14, '1976-12-11', 'HOU', 0, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 10, 17),
(111, 7, 15, '1977-09-19', 'SF', 0, 4, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 20),
(112, 7, 16, '1977-09-25', 'OAK', 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1),
(113, 8, 1, '1973-09-16', 'KC', 13, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 13),
(114, 8, 2, '1973-09-23', 'ATL', 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 10, 14),
(115, 8, 3, '1973-09-30', 'SF', 20, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 12, 1, 13),
(116, 8, 4, '1973-10-07', 'HOU', 26, 4, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 12),
(117, 8, 5, '1973-10-14', 'DAL', 31, 3, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, -1, 12),
(118, 8, 6, '1973-10-21', 'GB', 7, 4, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 12, 4, 16),
(119, 8, 7, '1973-10-28', 'MIN', 10, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 9),
(120, 8, 8, '1973-11-04', 'ATL', 15, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 1, 11),
(121, 8, 9, '1973-11-11', 'NO', 7, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 13),
(122, 8, 10, '1973-11-18', 'SF', 13, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 4, 10),
(123, 8, 11, '1973-11-25', 'NO', 13, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 4, 10),
(124, 8, 12, '1973-12-02', 'CHI', 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 10, 18),
(125, 8, 13, '1973-12-10', 'NYG', 6, 3, 4, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 19, 7, 26),
(126, 8, 14, '1973-12-16', 'CLE', 17, 4, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 1, 17),
(127, 8, 15, '1974-09-15', 'DEN', 10, 6, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 12, 4, 16),
(128, 8, 16, '1974-09-22', 'NO', 0, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 10, 21),
(129, 9, 1, '1968-09-15', 'SF', 10, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 8),
(130, 9, 2, '1968-09-22', 'ATL', 20, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 7),
(131, 9, 3, '1968-09-29', 'PIT', 7, 5, 3, 1, 0, 0, 0, 0, 3, 0, 0, 0, 3, 31, 4, 35),
(132, 9, 4, '1968-10-06', 'CHI', 7, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 8),
(133, 9, 5, '1968-10-13', 'SF', 14, 4, 3, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 18, 1, 19),
(134, 9, 6, '1968-10-20', 'CLE', 30, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -1, 3),
(135, 9, 7, '1968-10-27', 'LAR', 10, 5, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 4, 17),
(136, 9, 8, '1968-11-03', 'NYG', 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 10, 18),
(137, 9, 9, '1968-11-10', 'DET', 10, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 10, 4, 14),
(138, 9, 10, '1968-11-17', 'AZ', 0, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 10, 22),
(139, 9, 11, '1968-11-24', 'MIN', 9, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 13),
(140, 9, 12, '1968-12-01', 'ATL', 0, 4, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 10, 26),
(141, 9, 13, '1968-12-07', 'GB', 3, 2, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 7, 19),
(142, 9, 14, '1968-12-15', 'LAR', 24, 5, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 13, 0, 13),
(143, 9, 15, '1969-09-21', 'LAR', 27, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2),
(144, 9, 16, '1969-09-28', 'MIN', 52, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, -4, 3),
(145, 10, 1, '2000-09-03', 'PIT', 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 10, 13),
(146, 10, 2, '2000-09-10', 'JAX', 36, 4, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, -4, 8),
(147, 10, 3, '2000-09-17', 'MIA', 19, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 4),
(148, 10, 4, '2000-09-24', 'CIN', 0, 4, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 10, 22),
(149, 10, 5, '2000-10-01', 'CLE', 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 10, 18),
(150, 10, 6, '2000-10-08', 'JAX', 10, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 4, 19),
(151, 10, 7, '2000-10-15', 'WAS', 10, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 9),
(152, 10, 8, '2000-10-22', 'TEN', 14, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 5),
(153, 10, 9, '2000-10-29', 'PIT', 9, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 11),
(154, 10, 10, '2000-11-05', 'CIN', 7, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 9),
(155, 10, 11, '2000-11-12', 'TEN', 23, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5),
(156, 10, 12, '2000-11-19', 'DAL', 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 10, 17),
(157, 10, 13, '2000-11-26', 'CLE', 7, 6, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 4, 16),
(158, 10, 14, '2000-12-10', 'SD', 3, 2, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 7, 19),
(159, 10, 15, '2000-12-17', 'AZ', 7, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 4, 14),
(160, 10, 16, '2000-12-24', 'NYJ', 20, 1, 3, 3, 0, 0, 0, 2, 1, 0, 0, 0, 1, 31, 1, 32),
(161, 11, 1, '1993-09-05', 'NO', 33, 2, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 10, -1, 9),
(162, 11, 2, '1993-09-12', 'KC', 0, 4, 2, 3, 0, 0, 0, 0, 0, 1, 0, 0, 1, 20, 10, 30),
(163, 11, 3, '1993-09-19', 'SD', 18, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 9, 1, 10),
(164, 11, 4, '1993-09-26', 'LAR', 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1),
(165, 11, 5, '1993-10-11', 'BUF', 35, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -4, 0),
(166, 11, 6, '1993-10-17', 'NE', 14, 5, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 17, 1, 18),
(167, 11, 7, '1993-10-24', 'CIN', 12, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 12),
(168, 11, 8, '1993-11-07', 'SEA', 24, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6),
(169, 11, 9, '1993-11-14', 'CIN', 3, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 7, 16),
(170, 11, 10, '1993-11-21', 'CLE', 20, 2, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 1, 13),
(171, 11, 11, '1993-11-28', 'PIT', 3, 6, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 7, 21),
(172, 11, 12, '1993-12-05', 'ATL', 17, 3, 6, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 23, 1, 24),
(173, 11, 13, '1993-12-12', 'CLE', 17, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 9),
(174, 11, 14, '1993-12-19', 'PIT', 17, 6, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 18, 1, 19),
(175, 11, 15, '1993-12-25', 'SF', 7, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 12),
(176, 11, 16, '1994-01-02', 'NYJ', 0, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 20),
(177, 12, 1, '2002-09-08', 'NO', 26, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4),
(178, 12, 2, '2002-09-15', 'BAL', 0, 3, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 15, 10, 25),
(179, 12, 3, '2002-09-23', 'LAR', 14, 5, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 19, 1, 20),
(180, 12, 4, '2002-09-29', 'CIN', 7, 3, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 13, 4, 17),
(181, 12, 5, '2002-10-06', 'ATL', 6, 4, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 18, 7, 25),
(182, 12, 6, '2002-10-13', 'CLE', 3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 11),
(183, 12, 7, '2002-10-20', 'PHI', 20, 2, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 12, 1, 13),
(184, 12, 8, '2002-10-27', 'CAR', 9, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 4, 15),
(185, 12, 9, '2002-11-03', 'MIN', 24, 3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 13),
(186, 12, 10, '2002-11-17', 'CAR', 10, 4, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 4, 16),
(187, 12, 11, '2002-11-24', 'GB', 7, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 4, 15),
(188, 12, 12, '2002-12-01', 'NO', 23, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6),
(189, 12, 13, '2002-12-08', 'ATL', 10, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 7),
(190, 12, 14, '2002-12-15', 'DET', 20, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 4),
(191, 12, 15, '2002-12-23', 'PIT', 17, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 5),
(192, 12, 16, '2002-12-29', 'CHI', 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 10, 19),
(193, 13, 1, '1991-09-01', 'GB', 3, 4, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 7, 21),
(194, 13, 2, '1991-09-08', 'AZ', 26, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5),
(195, 13, 3, '1991-09-15', 'DAL', 0, 11, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 10, 29),
(196, 13, 4, '1991-09-22', 'PIT', 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 6),
(197, 13, 5, '1991-09-30', 'WAS', 23, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 10),
(198, 13, 6, '1991-10-06', 'TB', 14, 3, 3, 3, 0, 0, 0, 0, 0, 1, 0, 0, 1, 21, 1, 22),
(199, 13, 7, '1991-10-13', 'NO', 13, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 4, 10),
(200, 13, 8, '1991-10-27', 'SF', 23, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4),
(201, 13, 9, '1991-11-04', 'NYG', 7, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 4, 10),
(202, 13, 10, '1991-11-10', 'CLE', 30, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, -1, 5),
(203, 13, 11, '1991-11-17', 'CIN', 10, 6, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 4, 18),
(204, 13, 12, '1991-11-24', 'AZ', 14, 3, 4, 3, 0, 0, 0, 0, 0, 2, 0, 0, 2, 29, 1, 30),
(205, 13, 13, '1991-12-02', 'HOU', 6, 4, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 7, 21),
(206, 13, 14, '1991-12-08', 'NYG', 14, 4, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 1, 11),
(207, 13, 15, '1991-12-15', 'DAL', 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1),
(208, 13, 16, '1991-12-22', 'WAS', 22, 3, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 11, 0, 11),
(209, 14, 1, '1991-09-01', 'DET', 0, 3, 3, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 17, 10, 27),
(210, 14, 2, '1991-09-09', 'DAL', 31, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, -1, 5),
(211, 14, 3, '1991-09-15', 'AZ', 0, 4, 3, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 18, 10, 28),
(212, 14, 4, '1991-09-22', 'CIN', 27, 4, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 12, 0, 12),
(213, 14, 5, '1991-09-30', 'PHI', 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 20),
(214, 14, 6, '1991-10-06', 'CHI', 7, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 11),
(215, 14, 7, '1991-10-13', 'CLE', 17, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 9),
(216, 14, 8, '1991-10-27', 'NYG', 13, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6),
(217, 14, 9, '1991-11-03', 'HOU', 13, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 11),
(218, 14, 10, '1991-11-10', 'ATL', 17, 6, 3, 3, 0, 0, 0, 0, 1, 0, 0, 0, 1, 24, 1, 25),
(219, 14, 11, '1991-11-17', 'PIT', 14, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 10),
(220, 14, 12, '1991-11-24', 'DAL', 24, 5, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 13, 0, 13),
(221, 14, 13, '1991-12-01', 'LAR', 6, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 12),
(222, 14, 14, '1991-12-08', 'AZ', 14, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 6),
(223, 14, 15, '1991-12-15', 'NYG', 17, 4, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 1, 11),
(224, 14, 16, '1991-12-22', 'PHI', 24, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8),
(225, 15, 1, '1999-09-12', 'SF', 3, 4, 3, 2, 0, 0, 0, 0, 1, 1, 0, 0, 2, 26, 7, 33),
(226, 15, 2, '1999-09-19', 'CAR', 20, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 7),
(227, 15, 3, '1999-09-26', 'TEN', 20, 2, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 14, 1, 15),
(228, 15, 4, '1999-10-03', 'PIT', 3, 4, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 12, 7, 19),
(229, 15, 5, '1999-10-11', 'NYJ', 6, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 7, 15),
(230, 15, 6, '1999-10-17', 'CLE', 7, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 4, 10),
(231, 15, 7, '1999-10-31', 'CIN', 10, 4, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 4, 14),
(232, 15, 8, '1999-11-07', 'ATL', 7, 9, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 4, 21),
(233, 15, 9, '1999-11-14', 'BAL', 3, 4, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8, 7, 15),
(234, 15, 10, '1999-11-21', 'NO', 23, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 10, 0, 10),
(235, 15, 11, '1999-11-28', 'BAL', 23, 3, 1, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 15, 0, 15),
(236, 15, 12, '1999-12-02', 'PIT', 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 7, 10),
(237, 15, 13, '1999-12-13', 'DEN', 24, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5),
(238, 15, 14, '1999-12-19', 'CLE', 14, 6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 9),
(239, 15, 15, '1999-12-26', 'TEN', 41, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 6, -4, 2),
(240, 15, 16, '2000-01-02', 'CIN', 7, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 11),
(241, 16, 1, '2000-09-03', 'BUF', 16, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 6),
(242, 16, 2, '2000-09-10', 'KC', 14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 4),
(243, 16, 3, '2000-09-24', 'PIT', 20, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 6),
(244, 16, 4, '2000-10-01', 'NYG', 14, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 10),
(245, 16, 5, '2000-10-08', 'CIN', 14, 1, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 8),
(246, 16, 6, '2000-10-16', 'JAX', 13, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 13),
(247, 16, 7, '2000-10-22', 'BAL', 6, 5, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 19, 7, 26),
(248, 16, 8, '2000-10-30', 'WAS', 21, 3, 3, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 21, 0, 21),
(249, 16, 9, '2000-11-05', 'PIT', 7, 2, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 4, 14),
(250, 16, 10, '2000-11-12', 'BAL', 24, 5, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 13, 0, 13),
(251, 16, 11, '2000-11-19', 'CLE', 10, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 4, 10),
(252, 16, 12, '2000-11-26', 'JAX', 16, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 8),
(253, 16, 13, '2000-12-03', 'PHI', 13, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 9),
(254, 16, 14, '2000-12-10', 'CIN', 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 11),
(255, 16, 15, '2000-12-17', 'CLE', 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 10, 16),
(256, 16, 16, '2000-12-25', 'DAL', 0, 4, 2, 3, 0, 0, 0, 0, 1, 1, 0, 0, 2, 26, 10, 36),
(257, 17, 1, '1972-09-17', 'KC', 10, 4, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 4, 16),
(258, 17, 2, '1972-09-24', 'HOU', 13, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 4, 10),
(259, 17, 3, '1972-10-01', 'MIN', 14, 5, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 1, 14),
(260, 17, 4, '1972-10-08', 'NYJ', 17, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 4),
(261, 17, 5, '1972-10-15', 'SD', 10, 1, 2, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 13, 4, 17),
(262, 17, 6, '1972-10-22', 'BUF', 23, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4),
(263, 17, 7, '1972-10-29', 'IND', 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 10, 17),
(264, 17, 8, '1972-11-05', 'BUF', 16, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 9),
(265, 17, 9, '1972-11-12', 'NE', 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 20),
(266, 17, 10, '1972-11-19', 'NYJ', 24, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6),
(267, 17, 11, '1972-11-27', 'AZ', 10, 3, 3, 3, 0, 0, 0, 0, 1, 0, 0, 0, 1, 21, 4, 25),
(268, 17, 12, '1972-12-03', 'NE', 21, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8),
(269, 17, 13, '1972-12-10', 'NYG', 13, 1, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 4, 17),
(270, 17, 14, '1972-12-16', 'IND', 0, 1, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 10, 23),
(271, 17, 15, '1973-09-16', 'SF', 13, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 4, 9),
(272, 17, 16, '1973-09-23', 'OAK', 12, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6),
(273, 18, 1, '2013-09-08', 'CAR', 7, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 9),
(274, 18, 2, '2013-09-15', 'SF', 3, 3, 3, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 15, 7, 22),
(275, 18, 3, '2013-09-22', 'JAX', 17, 3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 10),
(276, 18, 4, '2013-09-29', 'HOU', 20, 4, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 16, 1, 17),
(277, 18, 5, '2013-10-06', 'IND', 34, 2, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 10, -1, 9),
(278, 18, 6, '2013-10-13', 'TEN', 13, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 11),
(279, 18, 7, '2013-10-17', 'AZ', 22, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 11),
(280, 18, 8, '2013-10-28', 'LAR', 9, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 11),
(281, 18, 9, '2013-11-03', 'TB', 24, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3),
(282, 18, 10, '2013-11-10', 'ATL', 10, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 8),
(283, 18, 11, '2013-11-17', 'MIN', 20, 2, 3, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 16, 1, 17),
(284, 18, 12, '2013-12-02', 'NO', 7, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 9, 4, 13),
(285, 18, 13, '2013-12-08', 'SF', 19, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 5),
(286, 18, 14, '2013-12-15', 'NYG', 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 10, 24),
(287, 18, 15, '2013-12-22', 'AZ', 17, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 1, 11),
(288, 18, 16, '2013-12-29', 'LAR', 9, 2, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 12, 4, 16),
(289, 19, 1, '1986-09-08', 'DAL', 31, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, -1, 5),
(290, 19, 2, '1986-09-14', 'SD', 7, 1, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 4, 19),
(291, 19, 3, '1986-09-21', 'OAK', 9, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 11),
(292, 19, 4, '1986-09-28', 'NO', 17, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 5),
(293, 19, 5, '1986-10-05', 'AZ', 6, 7, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 7, 18),
(294, 19, 6, '1986-10-12', 'PHI', 3, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 7, 17),
(295, 19, 7, '1986-10-19', 'SEA', 17, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 7),
(296, 19, 8, '1986-10-27', 'WAS', 20, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 9),
(297, 19, 9, '1986-11-02', 'DAL', 14, 6, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 1, 13),
(298, 19, 10, '1986-11-09', 'PHI', 14, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 1, 12),
(299, 19, 11, '1986-11-16', 'MIN', 20, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 6),
(300, 19, 12, '1986-11-23', 'DEN', 16, 2, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 16, 1, 17),
(301, 19, 13, '1986-12-01', 'SF', 17, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 3),
(302, 19, 14, '1986-12-07', 'WAS', 14, 4, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 1, 19),
(303, 19, 15, '1986-12-14', 'AZ', 7, 9, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 4, 17),
(304, 19, 16, '1986-12-20', 'GB', 24, 1, 2, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 15, 0, 15),
(305, 20, 1, '1987-09-13', 'CLE', 21, 4, 1, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 12, 0, 12),
(306, 20, 2, '1987-09-20', 'PHI', 27, 3, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 9),
(307, 20, 3, '1987-10-04', 'LAR', 10, 2, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 14, 4, 18),
(308, 20, 4, '1987-10-11', 'AZ', 24, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3),
(309, 20, 5, '1987-10-18', 'CHI', 17, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 1, 14),
(310, 20, 6, '1987-10-25', 'SF', 24, 4, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 1, 14, 0, 14),
(311, 20, 7, '1987-11-01', 'ATL', 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 10, 24),
(312, 20, 8, '1987-11-08', 'LAR', 14, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 5),
(313, 20, 9, '1987-11-15', 'SF', 24, 3, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 13, 0, 13),
(314, 20, 10, '1987-11-22', 'NYG', 14, 5, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 1, 20),
(315, 20, 11, '1987-11-29', 'PIT', 16, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 1, 17),
(316, 20, 12, '1987-12-06', 'TB', 34, 3, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, -1, 10),
(317, 20, 13, '1987-12-13', 'HOU', 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6),
(318, 20, 14, '1987-12-20', 'CIN', 24, 6, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 14),
(319, 20, 15, '1987-12-27', 'GB', 24, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7),
(320, 20, 16, '1988-09-04', 'SF', 34, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, -1, 5),
(321, 21, 1, '1968-09-15', 'KC', 19, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 5),
(322, 21, 2, '1968-09-22', 'NE', 31, 4, 4, 2, 1, 0, 0, 0, 1, 0, 1, 0, 2, 30, -1, 29),
(323, 21, 3, '1968-09-29', 'BUF', 37, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, -4, 2),
(324, 21, 4, '1968-10-05', 'SD', 20, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 10),
(325, 21, 5, '1968-10-13', 'DEN', 21, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3),
(326, 21, 6, '1968-10-20', 'HOU', 14, 6, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 14, 1, 15),
(327, 21, 7, '1968-10-27', 'NE', 14, 7, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 1, 24),
(328, 21, 8, '1968-11-03', 'BUF', 21, 3, 3, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 19, 0, 19),
(329, 21, 9, '1968-11-10', 'HOU', 7, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 13),
(330, 21, 10, '1968-11-17', 'OAK', 43, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, -4, 6),
(331, 21, 11, '1968-11-24', 'SD', 15, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 9),
(332, 21, 12, '1968-12-01', 'MIA', 17, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 8),
(333, 21, 13, '1968-12-08', 'CIN', 14, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 4),
(334, 21, 14, '1968-12-15', 'MIA', 7, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 12),
(335, 21, 15, '1969-09-14', 'BUF', 19, 4, 4, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 22, 1, 23),
(336, 21, 16, '1969-09-21', 'DEN', 21, 3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 9),
(337, 22, 1, '1975-09-22', 'MIA', 21, 3, 4, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 19, 0, 19),
(338, 22, 2, '1975-09-28', 'IND', 20, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 9),
(339, 22, 3, '1975-10-05', 'SD', 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 10, 19),
(340, 22, 4, '1975-10-12', 'KC', 42, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, -4, 1),
(341, 22, 5, '1975-10-19', 'CIN', 14, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 1, 11),
(342, 22, 6, '1975-10-26', 'SD', 0, 4, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 10, 10, 20),
(343, 22, 7, '1975-11-02', 'DEN', 17, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 1, 12),
(344, 22, 8, '1975-11-09', 'NO', 10, 4, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 4, 18),
(345, 22, 9, '1975-11-16', 'CLE', 17, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 1, 11),
(346, 22, 10, '1975-11-23', 'WAS', 23, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8),
(347, 22, 11, '1975-11-30', 'ATL', 34, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, -1, 4),
(348, 22, 12, '1975-12-08', 'DEN', 10, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 4, 22),
(349, 22, 13, '1975-12-14', 'HOU', 27, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 10),
(350, 22, 14, '1975-12-21', 'KC', 20, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 1, 11),
(351, 22, 15, '1976-09-12', 'PIT', 28, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -1, 7),
(352, 22, 16, '1976-09-20', 'KC', 21, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5),
(353, 23, 1, '1990-09-09', 'IND', 10, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 11),
(354, 23, 2, '1990-09-16', 'MIA', 30, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -1, 1),
(355, 23, 3, '1990-09-24', 'NYJ', 7, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 11),
(356, 23, 4, '1990-09-30', 'DEN', 28, 2, 2, 3, 1, 0, 0, 0, 1, 0, 1, 0, 2, 26, -1, 25),
(357, 23, 5, '1990-10-07', 'OAK', 24, 2, 1, 3, 1, 0, 0, 0, 0, 1, 1, 0, 2, 24, 0, 24),
(358, 23, 6, '1990-10-21', 'NYJ', 27, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5),
(359, 23, 7, '1990-10-28', 'NE', 10, 3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 13),
(360, 23, 8, '1990-11-04', 'CLE', 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 11, 10, 21),
(361, 23, 9, '1990-11-11', 'AZ', 14, 4, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 1, 13),
(362, 23, 10, '1990-11-18', 'NE', 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 10, 18),
(363, 23, 11, '1990-11-26', 'HOU', 27, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5),
(364, 23, 12, '1990-12-02', 'PHI', 23, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 10),
(365, 23, 13, '1990-12-09', 'IND', 7, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 4, 15),
(366, 23, 14, '1990-12-15', 'NYG', 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 5),
(367, 23, 15, '1990-12-23', 'MIA', 14, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 8),
(368, 23, 16, '1990-12-30', 'WAS', 29, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -1, 1),
(369, 24, 1, '2004-09-09', 'IND', 24, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7),
(370, 24, 2, '2004-09-19', 'AZ', 12, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 13),
(371, 24, 3, '2004-10-03', 'BUF', 17, 6, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 16, 1, 17),
(372, 24, 4, '2004-10-10', 'MIA', 10, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 11),
(373, 24, 5, '2004-10-17', 'SEA', 20, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 8),
(374, 24, 6, '2004-10-24', 'NYJ', 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6),
(375, 24, 7, '2004-10-31', 'PIT', 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1),
(376, 24, 8, '2004-11-07', 'STL', 22, 5, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 11),
(377, 24, 9, '2004-11-14', 'BUF', 6, 3, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 7, 20),
(378, 24, 10, '2004-11-22', 'KC', 19, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 7),
(379, 24, 11, '2004-11-28', 'BAL', 3, 4, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 14, 7, 21),
(380, 24, 12, '2004-12-05', 'CLE', 15, 3, 2, 2, 0, 0, 1, 0, 0, 1, 0, 0, 1, 23, 1, 24),
(381, 24, 13, '2004-12-12', 'CIN', 28, 0, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 12, -1, 11),
(382, 24, 14, '2004-12-20', 'MIA', 29, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, -1, 5),
(383, 24, 15, '2004-12-26', 'NYJ', 7, 3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 13),
(384, 24, 16, '2005-01-02', 'SF', 7, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 9),
(385, 25, 1, '1994-09-04', 'PIT', 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 13),
(386, 25, 2, '1994-09-11', 'HOU', 17, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 10),
(387, 25, 3, '1994-09-19', 'DET', 20, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2),
(388, 25, 4, '1994-10-02', 'WAS', 7, 2, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 4, 14),
(389, 25, 5, '1994-10-09', 'AZ', 3, 1, 5, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 17, 7, 24),
(390, 25, 6, '1994-10-16', 'PHI', 13, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 4, 18),
(391, 25, 7, '1994-10-23', 'AZ', 21, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3),
(392, 25, 8, '1994-10-30', 'CIN', 20, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 4),
(393, 25, 9, '1994-11-07', 'NYG', 10, 4, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 4, 14),
(394, 25, 10, '1994-11-13', 'SF', 21, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3),
(395, 25, 11, '1994-11-20', 'WAS', 7, 2, 4, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 18, 4, 22),
(396, 25, 12, '1994-11-24', 'GB', 31, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -1, 1),
(397, 25, 13, '1994-12-04', 'PHI', 19, 5, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 13, 1, 14),
(398, 25, 14, '1994-12-10', 'CLE', 19, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 6),
(399, 25, 15, '1994-12-19', 'NO', 16, 2, 3, 0, 1, 0, 0, 0, 2, 0, 0, 0, 2, 22, 1, 23),
(400, 25, 16, '1994-12-24', 'NYG', 15, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 7),
(401, 26, 1, '1994-09-04', 'DEN', 34, 4, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 16, -1, 15),
(402, 26, 2, '1994-09-11', 'CIN', 10, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 12),
(403, 26, 3, '1994-09-18', 'SEA', 10, 6, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 16, 4, 20),
(404, 26, 4, '1994-09-25', 'OAK', 24, 3, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 11, 0, 11),
(405, 26, 5, '1994-10-09', 'KC', 6, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 13),
(406, 26, 6, '1994-10-16', 'NO', 22, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7),
(407, 26, 7, '1994-10-23', 'DEN', 20, 3, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 10),
(408, 26, 8, '1994-10-30', 'SEA', 15, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 8),
(409, 26, 9, '1994-11-06', 'ATL', 10, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 9),
(410, 26, 10, '1994-11-13', 'KC', 13, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 4, 10),
(411, 26, 11, '1994-11-20', 'NE', 23, 1, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 11, 0, 11),
(412, 26, 12, '1994-11-27', 'LAR', 17, 4, 4, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 26, 1, 27),
(413, 26, 13, '1994-12-05', 'OAK', 24, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3),
(414, 26, 14, '1994-12-11', 'SF', 38, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, -4, -1),
(415, 26, 15, '1994-12-18', 'NYJ', 6, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 14),
(416, 26, 16, '1994-12-24', 'PIT', 34, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 8, -1, 7),
(417, 27, 1, '2015-09-13', 'BAL', 13, 2, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 12, 4, 16),
(418, 27, 2, '2015-09-17', 'KC', 24, 5, 2, 3, 0, 0, 0, 0, 0, 1, 0, 0, 1, 21, 0, 21),
(419, 27, 3, '2015-09-27', 'DET', 12, 4, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 4, 16),
(420, 27, 4, '2015-10-04', 'MIN', 20, 7, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 10),
(421, 27, 5, '2015-10-11', 'OAK', 10, 4, 1, 3, 1, 0, 0, 0, 1, 0, 0, 0, 1, 20, 4, 24),
(422, 27, 6, '2015-10-18', 'CLE', 23, 4, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 16, 0, 16),
(423, 27, 7, '2015-11-01', 'GB', 10, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 4, 9),
(424, 27, 8, '2015-11-08', 'IND', 27, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 7, 0, 7),
(425, 27, 9, '2015-11-15', 'KC', 29, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -1, 1),
(426, 27, 10, '2015-11-22', 'CHI', 15, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6),
(427, 27, 11, '2015-11-29', 'NE', 24, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5),
(428, 27, 12, '2015-12-06', 'SD', 3, 4, 1, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 16, 7, 23),
(429, 27, 13, '2015-12-13', 'OAK', 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 4),
(430, 27, 14, '2015-12-20', 'PIT', 34, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, -1, 6),
(431, 27, 15, '2015-12-28', 'CIN', 17, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 5),
(432, 27, 16, '2016-01-03', 'SD', 20, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 6),
(433, 28, 1, '2015-09-13', 'JAX', 9, 5, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 17, 4, 21),
(434, 28, 2, '2015-09-20', 'HOU', 17, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 4),
(435, 28, 3, '2015-09-27', 'NO', 22, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5),
(436, 28, 4, '2015-10-04', 'TB', 23, 2, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 2, 24, 0, 24),
(437, 28, 5, '2015-10-18', 'SEA', 23, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4),
(438, 28, 6, '2015-10-25', 'PHI', 16, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 8),
(439, 28, 7, '2015-11-02', 'IND', 26, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 10),
(440, 28, 8, '2015-11-08', 'GB', 29, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -1, 8),
(441, 28, 9, '2015-11-15', 'TEN', 10, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 9),
(442, 28, 10, '2015-11-22', 'WAS', 16, 5, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 1, 16),
(443, 28, 11, '2015-11-26', 'DAL', 14, 2, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 20, 1, 21),
(444, 28, 12, '2015-12-06', 'NO', 38, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -4, 0),
(445, 28, 13, '2015-12-13', 'ARL', 0, 5, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 10, 23),
(446, 28, 14, '2015-12-20', 'NYG', 35, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -4, 0),
(447, 28, 15, '2015-12-27', 'ATL', 20, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 7),
(448, 28, 16, '2016-01-03', 'TB', 10, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 12),
(449, 29, 1, '1991-09-01', 'WAS', 45, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -4, -2),
(450, 29, 2, '1991-09-08', 'GB', 14, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 5),
(451, 29, 3, '1991-09-15', 'MIA', 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6),
(452, 29, 4, '1991-09-22', 'IND', 24, 4, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8),
(453, 29, 5, '1991-09-29', 'TB', 3, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 7, 16),
(454, 29, 6, '1991-10-06', 'MIN', 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1),
(455, 29, 7, '1991-10-20', 'SF', 35, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -4, -2),
(456, 29, 8, '1991-10-27', 'DAL', 10, 2, 2, 2, 1, 0, 0, 0, 1, 0, 1, 0, 2, 24, 4, 28),
(457, 29, 9, '1991-11-03', 'CHI', 20, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 6),
(458, 29, 10, '1991-11-10', 'TB', 30, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -1, 1),
(459, 29, 11, '1991-11-17', 'LAR', 10, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 8),
(460, 29, 12, '1991-11-24', 'MIN', 14, 6, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 1, 19),
(461, 29, 13, '1991-11-28', 'CHI', 6, 1, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 7, 20),
(462, 29, 14, '1991-12-08', 'NYJ', 20, 5, 2, 3, 0, 0, 0, 0, 0, 1, 0, 0, 1, 21, 1, 22),
(463, 29, 15, '1991-12-15', 'GB', 17, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 10, 1, 11),
(464, 29, 16, '1991-12-22', 'BUF', 14, 4, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 12, 1, 13),
(465, 30, 1, '1988-09-04', 'NO', 33, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, -1, 10),
(466, 30, 2, '1988-09-11', 'NYG', 17, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 4),
(467, 30, 3, '1988-09-18', 'ATL', 34, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, -1, 4),
(468, 30, 4, '1988-09-25', 'SEA', 7, 3, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 4, 17),
(469, 30, 5, '1988-10-02', 'DET', 13, 4, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 14, 4, 18),
(470, 30, 6, '1988-10-09', 'DEN', 16, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 1, 12),
(471, 30, 7, '1988-10-16', 'LAR', 21, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 9),
(472, 30, 8, '1988-10-24', 'CHI', 10, 3, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 7, 4, 11),
(473, 30, 9, '1988-10-30', 'MIN', 21, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8),
(474, 30, 10, '1988-11-06', 'AZ', 24, 7, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 13),
(475, 30, 11, '1988-11-13', 'OAK', 9, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 8),
(476, 30, 12, '1988-11-21', 'WAS', 21, 0, 2, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 14, 0, 14),
(477, 30, 13, '1988-11-27', 'SD', 10, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 11),
(478, 30, 14, '1988-12-04', 'ATL', 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 12),
(479, 30, 15, '1988-12-11', 'NO', 17, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 7),
(480, 30, 16, '1988-12-18', 'LAR', 38, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -4, -2),
(481, 31, 1, '1988-09-04', 'AZ', 14, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 7),
(482, 31, 2, '1988-09-11', 'PHI', 24, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6),
(483, 31, 3, '1988-09-18', 'PIT', 20, 5, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 1, 18),
(484, 31, 4, '1988-09-25', 'CLE', 17, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 8, 1, 9),
(485, 31, 5, '1988-10-02', 'OAK', 21, 2, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 12),
(486, 31, 6, '1988-10-09', 'NYJ', 19, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 7),
(487, 31, 7, '1988-10-16', 'NE', 27, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2),
(488, 31, 8, '1988-10-23', 'HOU', 21, 4, 2, 2, 0, 1, 0, 0, 0, 1, 0, 0, 1, 20, 0, 20),
(489, 31, 9, '1988-10-30', 'CLE', 23, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 11, 0, 11),
(490, 31, 10, '1988-11-06', 'PIT', 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 8),
(491, 31, 11, '1988-11-13', 'KC', 31, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, -1, 6),
(492, 31, 12, '1988-11-20', 'DAL', 24, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 10),
(493, 31, 13, '1988-11-27', 'BUF', 21, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 10),
(494, 31, 14, '1988-12-04', 'SD', 10, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 4, 15),
(495, 31, 15, '1988-12-11', 'HOU', 41, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, -4, 1),
(496, 31, 16, '1988-12-17', 'WAS', 17, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 6),
(497, 32, 1, '2008-09-07', 'SF', 13, 4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 4, 18),
(498, 32, 2, '2008-09-14', 'MIA', 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 6),
(499, 32, 3, '2008-09-21', 'WAS', 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2),
(500, 32, 4, '2008-09-28', 'NYJ', 56, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -4, 0),
(501, 32, 5, '2008-10-05', 'BUF', 17, 5, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 1, 14),
(502, 32, 6, '2008-10-12', 'DAL', 24, 3, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 19, 0, 19),
(503, 32, 7, '2008-10-26', 'CAR', 27, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3),
(504, 32, 8, '2008-11-02', 'LAR', 13, 2, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 14, 4, 18),
(505, 32, 9, '2008-11-10', 'SF', 24, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6),
(506, 32, 10, '2008-11-16', 'SEA', 20, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 1, 11),
(507, 32, 11, '2008-11-23', 'NYG', 37, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -4, -3),
(508, 32, 12, '2008-11-27', 'PHI', 48, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, -4, -1),
(509, 32, 13, '2008-12-07', 'LAR', 10, 1, 1, 2, 0, 0, 0, 0, 1, 1, 0, 0, 2, 19, 4, 23),
(510, 32, 14, '2008-12-14', 'MIN', 35, 3, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 13, -4, 9),
(511, 32, 15, '2008-12-21', 'NE', 47, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -4, -3),
(512, 32, 16, '2008-12-28', 'SEA', 21, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7);
-- --------------------------------------------------------
--
-- Table structure for table `legends_player`
--
DROP TABLE IF EXISTS `legends_player`;
CREATE TABLE IF NOT EXISTS `legends_player` (
`playerID` int(6) NOT NULL AUTO_INCREMENT,
`teamID` int(2) NOT NULL,
`posID` int(1) NOT NULL,
`player_first` varchar(25) NOT NULL,
`player_last` varchar(25) NOT NULL,
`jersey` varchar(2) NOT NULL,
`fppg` float NOT NULL,
`salary` int(6) NOT NULL,
PRIMARY KEY (`playerID`)
) ENGINE=MyISAM AUTO_INCREMENT=193 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `legends_player`
--
INSERT INTO `legends_player` (`playerID`, `teamID`, `posID`, `player_first`, `player_last`, `jersey`, `fppg`, `salary`) VALUES
(1, 1, 1, 'Jake', 'Plummer', '16', 13.8, 4800),
(2, 2, 1, 'Jim ', 'McMahon', '9', 13.85, 4900),
(3, 3, 1, 'Brett', 'Favre', '4', 16.58, 5800),
(4, 4, 1, 'Phil', 'Simms', '11', 14.38, 5000),
(5, 5, 1, 'Scott ', 'Mitchell', '19', 17.41, 6100),
(6, 6, 1, 'Mark', 'Rypien', '11', 17.37, 6100),
(7, 7, 1, 'Donovan', 'McNabb', '5', 20.09, 7000),
(8, 8, 1, 'Terry ', 'Bradshaw', '12', 10.64, 3700),
(9, 9, 1, 'Kurt', 'Warner', '13', 22.06, 7700),
(10, 10, 1, 'Joe ', 'Montana', '16', 19.64, 6900),
(11, 11, 1, 'Bernie', 'Kosar', '19', 13.98, 4900),
(12, 12, 1, 'Peyton', 'Manning', '18', 17.97, 6300),
(13, 13, 1, 'Troy', 'Aikman', '8', 10.86, 3800),
(14, 14, 1, 'Len', 'Dawson', '16', 15.63, 5500),
(15, 15, 1, 'Dan ', 'Fouts', '14', 15.91, 5600),
(16, 16, 1, 'John ', 'Elway', '7', 14.13, 5000),
(17, 17, 1, 'Joe ', 'Namath', '12', 13.92, 4900),
(18, 18, 1, 'Drew ', 'Bledsoe', '11', 17.89, 6300),
(19, 19, 1, 'Ken', 'Stabler', '12', 13.01, 4600),
(20, 20, 1, 'Steve', 'McNair', '9', 15.93, 5600),
(21, 21, 1, 'Jim', 'Kelly', '12', 15.22, 5300),
(22, 22, 1, 'Fran', 'Tarkenton', '10', 13.86, 4900),
(23, 23, 1, 'Michael', 'Vick', '7', 16.7, 5800),
(24, 24, 1, 'Dan', 'Marino', '13', 17.39, 6100),
(25, 25, 1, 'Aaron', 'Brooks', '2', 17.25, 6000),
(26, 26, 1, 'Boomer', 'Esiason', '7', 19.55, 6800),
(27, 27, 1, 'Dave', 'Krieg', '17', 17.87, 6300),
(28, 28, 1, 'Vinny', 'Testaverde', '14', 13.52, 4700),
(29, 29, 1, 'Jake', 'Delhomme', '17', 13.58, 4800),
(30, 30, 1, 'Mark', 'Brunell', '8', 14.7, 5100),
(31, 31, 1, 'Kyle', 'Boller', '7', 13.01, 4600),
(32, 32, 1, 'Warren', 'Moon', '1', 16.48, 5800),
(33, 1, 2, 'Ottis', 'Anderson', '32', 23.3, 8200),
(34, 1, 2, 'Chris \"Beanie\"', 'Wells', '26', 12.36, 4300),
(35, 2, 2, 'Walter', 'Payton', '34', 24.88, 8700),
(36, 2, 2, 'Gale', 'Sayers', '40', 21.38, 7500),
(37, 3, 2, 'Edgar', 'Bennett', '34', 17.35, 6000),
(38, 3, 2, 'Ahman', 'Green', '30', 25.03, 8800),
(39, 4, 2, 'Tiki', 'Barber', '21', 26.11, 9100),
(40, 4, 2, 'Rodney', 'Hampton', '27', 20.18, 7000),
(41, 5, 2, 'Barry', 'Sanders', '20', 26.19, 9100),
(42, 5, 2, 'Billy', 'Sims', '20', 24.46, 8600),
(43, 6, 2, 'Clinton', 'Portis', '26', 19.38, 6800),
(44, 6, 2, 'John', 'Riggins', '44', 17.9, 6200),
(45, 7, 2, 'Ricky', 'Watters', '32', 21.19, 7400),
(46, 7, 2, 'Brian', 'Westbrook', '36', 26.83, 9400),
(47, 8, 2, 'Jerome', 'Bettis', '36', 16.92, 5900),
(48, 8, 2, 'Franco', 'Harris ', '32', 21.92, 7600),
(49, 9, 2, 'Eric', 'Dickerson', '29', 25.74, 9000),
(50, 9, 2, 'Marshall ', 'Faulk', '28', 32.96, 11500),
(51, 10, 2, 'Roger', 'Craig', '33', 22.03, 7700),
(52, 10, 2, 'Garrison', 'Hearst', '20', 22.16, 7800),
(53, 11, 2, 'Jim', 'Brown', '32', 29.56, 10000),
(54, 11, 2, 'Earnest', 'Byner', '44', 18.21, 6300),
(55, 12, 2, 'Joseph', 'Addai', '29', 22.93, 8000),
(56, 12, 2, 'Edgerrin', 'James', '32', 25.27, 8800),
(57, 13, 2, 'Tony', 'Dorsett', '33', 18.87, 6600),
(58, 13, 2, 'Emmitt', 'Smith', '22', 22.69, 7900),
(59, 14, 2, 'Priest', 'Holmes', '31', 33.23, 11600),
(60, 14, 2, 'Larry', 'Johnson', '27', 26.14, 9100),
(61, 15, 2, 'Natrone', 'Means', '20', 20.48, 7100),
(62, 15, 2, 'Ladanian', 'Tomlinson', '21', 32.84, 11500),
(63, 16, 2, 'Mike', 'Anderson', '38', 21.41, 7500),
(64, 16, 2, 'Terrell', 'Davis', '30', 24.73, 8700),
(65, 17, 2, 'Curtis', 'Martin', '28', 22.08, 7700),
(66, 17, 2, 'Freeman', 'McNeil', '24', 21.09, 7400),
(67, 18, 2, 'BenJarvus', 'Green-Ellis', '42', 14.34, 5000),
(68, 18, 2, 'Laurence', 'Maroney', '39', 15.33, 5300),
(69, 19, 2, 'Marcus', 'Allen', '32', 24.54, 8600),
(70, 19, 2, 'Bo ', 'Jackson', '34', 16.72, 5900),
(71, 20, 2, 'Eddie', 'George', '27', 21.08, 7400),
(72, 20, 2, 'LenDale', 'White', '25', 15.79, 5500),
(73, 21, 2, 'O.J.', 'Simpson', '32', 25.46, 8900),
(74, 21, 2, 'Thurman ', 'Thomas', '34', 24.05, 8400),
(75, 22, 2, 'Robert', 'Smith', '26', 18.39, 6400),
(76, 22, 2, 'Herschel', 'Walker', '34', 15.46, 5400),
(77, 23, 2, 'Jamal', 'Anderson', '32', 21.84, 7600),
(78, 23, 2, 'Michael', 'Turner', '33', 19.43, 6800),
(79, 24, 2, 'Ronnie', 'Brown', '23', 19.66, 6800),
(80, 24, 2, 'Larry', 'Csonka', '39', 15.89, 5600),
(81, 25, 2, 'Deuce', 'McAllister', '26', 20.93, 7300),
(82, 25, 2, 'Ricky', 'Williams', '34', 20.53, 7200),
(83, 26, 2, 'Corey', 'Dillon', '28', 24.15, 8500),
(84, 26, 2, 'Rudi', 'Johnson', '32', 20.45, 7100),
(85, 27, 2, 'Shaun ', 'Alexander', '37', 24.21, 8500),
(86, 27, 2, 'Chris', 'Warren', '42', 17.71, 6200),
(87, 28, 2, 'Warrick', 'Dunn', '28', 23.4, 8200),
(88, 28, 2, 'Errict', 'Rhett', '32', 13.71, 4800),
(89, 29, 2, 'Tim', 'Biakabutuka', '21', 19.08, 6700),
(90, 29, 2, 'Fred ', 'Lane', '32', 13.73, 4800),
(91, 30, 2, 'Maurice', 'Jones-Drew', '32', 22.79, 8000),
(92, 30, 2, 'Fred ', 'Taylor', '28', 24.55, 8600),
(93, 31, 2, 'Jamal', 'Lewis', '31', 23.63, 8300),
(94, 31, 2, 'Ray', 'Rice', '27', 22.17, 7800),
(95, 32, 2, 'Earl', 'Campbell', '34', 23.22, 8100),
(96, 32, 2, 'Lorenzo', 'White', '44', 19.84, 7000),
(97, 1, 3, 'Anquan', 'Boldin', '81', 26.86, 9400),
(98, 1, 3, 'Rob ', 'Moore', '85', 20.36, 7100),
(99, 2, 3, 'Curtis', 'Conway', '80', 19.14, 6700),
(100, 2, 3, 'Willie', 'Gault', '83', 20.08, 7000),
(101, 3, 3, 'James ', 'Lofton', '80', 22.38, 7800),
(102, 3, 3, 'Sterling', 'Sharpe', '84', 22.39, 7800),
(103, 4, 3, 'Victor', 'Cruz', '80', 21.23, 7400),
(104, 4, 3, 'Frank', 'Gifford', '16', 19.78, 6900),
(105, 5, 3, 'Calvin', 'Johnson', '81', 26.63, 9300),
(106, 5, 3, 'Herman', 'Moore', '84', 22.84, 8000),
(107, 6, 3, 'Gary', 'Clark', '84', 23.78, 8300),
(108, 6, 3, 'Art', 'Monk', '81', 23.69, 8300),
(109, 7, 3, 'Harold', 'Carmichael', '17', 19.04, 6700),
(110, 7, 3, 'Mike', 'Quick', '82', 18.41, 6400),
(111, 8, 3, 'Lynn', 'Swann', '88', 18.24, 6400),
(112, 8, 3, 'Hines', 'Ward', '86', 22.28, 7800),
(113, 9, 3, 'Isaac', 'Bruce', '80', 25.78, 9000),
(114, 9, 3, 'Torry', 'Holt', '81', 26.56, 9300),
(115, 10, 3, 'Terrell', 'Owens', '81', 23.76, 8300),
(116, 10, 3, 'Jerry', 'Rice', '80', 31.38, 11000),
(117, 11, 3, 'Webster', 'Slaughter', '84', 19.6, 6900),
(118, 11, 3, 'Paul', 'Warfield', '42', 20.89, 7300),
(119, 12, 3, 'Marvin', 'Harrison', '88', 25.65, 9000),
(120, 12, 3, 'Reggie', 'Wayne', '87', 24.18, 8500),
(121, 13, 3, 'Drew', 'Pearson', '88', 20.21, 7100),
(122, 13, 3, 'Michael', 'Irvin', '88', 23.82, 8300),
(123, 14, 3, 'Dwayne', 'Bowe', '82', 21.41, 7500),
(124, 14, 3, 'Otis', 'Taylor', '89', 19.78, 6900),
(125, 15, 3, 'Lance ', 'Alworth', '19', 25.48, 8900),
(126, 15, 3, 'Charlie', 'Joiner', '18', 18.5, 6500),
(127, 16, 3, 'Ed', 'McCaffery', '87', 18.89, 6600),
(128, 16, 3, 'Rod ', 'Smith', '80', 22.93, 8000),
(129, 17, 3, 'Don', 'Maynard', '13', 27.63, 9700),
(130, 17, 3, 'Al ', 'Toon', '88', 21.81, 7600),
(131, 18, 3, 'Terry ', 'Glenn', '83', 20.38, 7100),
(132, 18, 3, 'Wes ', 'Welker', '83', 24.46, 8600),
(133, 19, 3, 'Fred ', 'Biletnikoff', '25', 19.89, 7000),
(134, 19, 3, 'Tim', 'Brown', '81', 26.07, 9100),
(135, 20, 3, 'Derrick ', 'Mason', '85', 20.14, 7000),
(136, 20, 3, 'Nate', 'Washington', '85', 18.31, 6400),
(137, 21, 3, 'Stevie ', 'Johnson', '13', 17.34, 6100),
(138, 21, 3, 'Andre', 'Reed', '83', 22.04, 7700),
(139, 22, 3, 'Cris', 'Carter', '80', 22.89, 8000),
(140, 22, 3, 'Randy', 'Moss', '84', 26.53, 9300),
(141, 23, 3, 'Andre', 'Rison', '80', 25.28, 8800),
(142, 23, 3, 'Roddy ', 'White', '84', 23.01, 8100),
(143, 24, 3, 'Mark', 'Clayton', '83', 23.18, 8100),
(144, 24, 3, 'Mark', 'Duper', '85', 26.09, 9100),
(145, 25, 3, 'Marques', 'Colston', '12', 21.93, 7700),
(146, 25, 3, 'Joe ', 'Horn', '87', 20.78, 7300),
(147, 26, 3, 'Cris', 'Collinsworth', '80', 20.63, 7200),
(148, 26, 3, 'Chad', 'Johnson', '85', 24.46, 8600),
(149, 27, 3, 'Joey', 'Galloway', '84', 21.36, 7500),
(150, 27, 3, 'Steve', 'Largent', '80', 25.06, 8800),
(151, 28, 3, 'Vincent', 'Jackson', '83', 19.65, 6900),
(152, 28, 3, 'Keyshawn', 'Johnson', '19', 19.62, 6900),
(153, 29, 3, 'Mushin', 'Muhammad', '87', 22.44, 7900),
(154, 29, 3, 'Steve', 'Smith', '89', 23.31, 8200),
(155, 30, 3, 'Keenan ', 'McCardell', '80', 20.93, 7300),
(156, 30, 3, 'Jimmy', 'Smith', '82', 24.19, 8500),
(157, 31, 3, 'Qadry', 'Ismail', '87', 18.71, 6500),
(158, 31, 3, 'Jermaine', 'Lewis', '84', 14.26, 5000),
(159, 32, 3, 'Ernest', 'Givins', '81', 17.57, 6100),
(160, 32, 3, 'Haywood', 'Jeffries', '84', 18.83, 6600),
(161, 1, 4, 'Bryant ', 'Johnson', '80', 10.23, 3600),
(162, 2, 4, 'Mike', 'Ditka', '89', 22.27, 7800),
(163, 3, 4, 'Paul', 'Coffman', '82', 17.85, 6200),
(164, 4, 4, 'Jeremy', 'Shockey', '80', 16.55, 5800),
(165, 5, 4, 'Charlie', 'Sanders', '88', 12.48, 4400),
(166, 6, 4, 'Chris', 'Cooley', '47', 14.01, 4900),
(167, 7, 4, 'Pete', 'Retzlaff', '44', 22.27, 7800),
(168, 8, 4, 'Heath', 'Miller', '83', 14.65, 5100),
(169, 9, 4, 'Billy', 'Truax', '87', 11.28, 3900),
(170, 10, 4, 'Brent', 'Jones ', '84', 12.83, 4500),
(171, 11, 4, 'Ozzie ', 'Newsome', '82', 18.03, 6300),
(172, 12, 4, 'Dallas', 'Clark', '44', 18.88, 6600),
(173, 13, 4, 'Jay', 'Novacek', '84', 15.03, 5300),
(174, 14, 4, 'Tony', 'Gonzalez', '88', 17.49, 6100),
(175, 15, 4, 'Kellen', 'Winslow', '80', 23.81, 8300),
(176, 16, 4, 'Shannon', 'Sharpe', '84', 22.38, 7800),
(177, 17, 4, 'Rich', 'Caster', '88', 21.06, 7400),
(178, 18, 4, 'Ben ', 'Coates', '87', 19.22, 6700),
(179, 19, 4, 'Dave', 'Casper', '87', 15.96, 5600),
(180, 20, 4, 'Bo ', 'Scaife', '80', 9.38, 3300),
(181, 21, 4, 'Scott ', 'Chandler', '87', 11.4, 4000),
(182, 22, 4, 'Steve', 'Jordan', '83', 16.43, 5700),
(183, 23, 4, 'Alge', 'Crumpler', '83', 15.21, 5300),
(184, 24, 4, 'Keith', 'Jackson', '88', 12.84, 4500),
(185, 25, 4, 'Henry', 'Childs', '85', 13.98, 4900),
(186, 26, 4, 'Bob', 'Trumpy', '84', 16.35, 5700),
(187, 27, 4, 'Jerramy', 'Stevens', '86', 8.59, 3000),
(188, 28, 4, 'Kellen', 'Winslow Jr.', '82', 14.36, 5000),
(189, 29, 4, 'Wesley', 'Walls', '85', 15.05, 5300),
(190, 30, 4, 'Kyle', 'Brady', '88', 10.2, 3600),
(191, 31, 4, 'Todd', 'Heap', '86', 15.66, 5500),
(192, 32, 4, 'Frank', 'Wycheck', '89', 10.59, 3700);
-- --------------------------------------------------------
--
-- Table structure for table `legends_player_data`
--
DROP TABLE IF EXISTS `legends_player_data`;
CREATE TABLE IF NOT EXISTS `legends_player_data` (
`rowID` int(6) NOT NULL AUTO_INCREMENT,
`playerID` int(4) NOT NULL,
`gameID` int(2) NOT NULL,
`game_date` date NOT NULL,
`is_away` int(1) NOT NULL,
`opp` varchar(4) NOT NULL,
`game_result` varchar(15) NOT NULL,
`passYDS` int(3) NOT NULL,
`passTD` int(2) NOT NULL,
`passINT` int(2) NOT NULL,
`rushYDS` int(3) NOT NULL,
`rushTD` int(2) NOT NULL,
`rec` int(2) NOT NULL,
`recYDS` int(3) NOT NULL,
`recTD` int(2) NOT NULL,
`krtd` int(2) NOT NULL,
`prtd` int(2) NOT NULL,
`passBonus` int(2) NOT NULL,
`rushBonus` int(2) NOT NULL,
`recBonus` int(2) NOT NULL,
`fpts` float NOT NULL,
PRIMARY KEY (`rowID`)
) ENGINE=MyISAM AUTO_INCREMENT=3073 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `legends_player_data`
--
INSERT INTO `legends_player_data` (`rowID`, `playerID`, `gameID`, `game_date`, `is_away`, `opp`, `game_result`, `passYDS`, `passTD`, `passINT`, `rushYDS`, `rushTD`, `rec`, `recYDS`, `recTD`, `krtd`, `prtd`, `passBonus`, `rushBonus`, `recBonus`, `fpts`) VALUES
(1, 1, 1, '2002-12-01', 1, 'KC', 'L 0-49', 88, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.52),
(2, 1, 2, '2000-09-24', 0, 'GB', 'L 3-29', 189, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.56),
(3, 1, 3, '2002-12-15', 1, 'LAR', 'L 28-30', 258, 2, 1, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20.62),
(4, 1, 4, '1999-10-17', 0, 'WAS', 'L 10-24', 99, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.96),
(5, 1, 5, '1999-10-10', 0, 'NYG', 'W 14-3', 156, 1, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 16.54),
(6, 1, 6, '2000-09-10', 0, 'DAL', 'W 32-31', 243, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.72),
(7, 1, 7, '1997-11-30', 0, 'PIT', 'L 20-26', 270, 2, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20.7),
(8, 1, 8, '1999-09-19', 1, 'MIA', 'L 16-19', 112, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.88),
(9, 1, 9, '2001-10-21', 0, 'KC', 'W 24-16', 228, 1, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15.12),
(10, 1, 10, '2001-11-18', 0, 'DET', 'W 45-38', 334, 4, 1, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 31.86),
(11, 1, 11, '2001-12-30', 1, 'CAR', 'W 30-7', 173, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14.82),
(12, 1, 12, '2000-12-24', 1, 'WAS', 'L 3-20', 144, 0, 3, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5.76),
(13, 1, 13, '1998-11-22', 1, 'WAS', 'W 45-42', 251, 2, 1, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 36.04),
(14, 1, 14, '1998-11-08', 0, 'WAS', 'W 29-27', 186, 1, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16.44),
(15, 1, 15, '2000-10-08', 0, 'CLE', 'W 29-21', 171, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14.74),
(16, 1, 16, '1999-12-12', 1, 'WAS', 'L 3-28', 147, 0, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.48),
(17, 2, 1, '1988-10-09', 1, 'DET', 'W 24-7', 78, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.12),
(18, 2, 2, '1988-09-25', 1, 'GB', 'W 24-6', 114, 0, 2, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.36),
(19, 2, 3, '1988-10-24', 0, 'SF', 'W 10-9', 132, 0, 1, 27, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12.98),
(20, 2, 4, '1988-10-02', 0, 'BUF', 'W 24-3', 260, 2, 1, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19.8),
(21, 2, 5, '1983-11-13', 0, 'PHI', 'W 17-14', 140, 2, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.9),
(22, 2, 6, '1984-09-09', 0, 'DEN', 'W 27-0', 93, 1, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.52),
(23, 2, 7, '1982-12-05', 0, 'NE', 'W 26-13', 192, 2, 1, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 21.38),
(24, 2, 8, '1984-10-21', 1, 'TB', 'W 44-9', 219, 3, 0, 24, 0, 1, 42, 0, 0, 0, 0, 0, 0, 28.36),
(25, 2, 9, '1984-11-04', 0, 'OAK', 'W 17-6', 68, 0, 1, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.72),
(26, 2, 10, '1983-10-09', 0, 'MIN', 'L 14-23', 35, 0, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
(27, 2, 11, '1984-10-07', 0, 'NO', 'W 20-7', 128, 1, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11.62),
(28, 2, 12, '1985-09-29', 0, 'WAS', 'W 45-10', 160, 3, 1, 36, 0, 1, 13, 1, 0, 0, 0, 0, 0, 29.3),
(29, 2, 13, '1982-12-26', 1, 'LAR', 'W 34-26', 280, 2, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.5),
(30, 2, 14, '1986-09-28', 1, 'CIN', 'W 44-7', 211, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 25.54),
(31, 2, 15, '1988-10-30', 1, 'NE', 'L 7-30', 4, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5.26),
(32, 2, 16, '1986-11-23', 0, 'GB', 'W 12-10', 95, 0, 3, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.2),
(33, 3, 1, '1995-11-12', 0, 'CHI', 'W 35-28', 336, 5, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 36.64),
(34, 3, 2, '2003-12-22', 1, 'OAK', 'W 41-7', 399, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 34.96),
(35, 3, 3, '2005-01-02', 1, 'CHI', 'W 31-14', 196, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15.84),
(36, 3, 4, '2007-10-29', 1, 'DEN', 'W 19-13', 331, 2, 0, -8, 0, 0, 0, 0, 0, 0, 3, 0, 0, 23.44),
(37, 3, 5, '1999-10-17', 1, 'DEN', 'L 10-31', 120, 0, 3, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.7),
(38, 3, 6, '2007-11-29', 1, 'DAL', 'L 27-37', 56, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.24),
(39, 3, 7, '2004-12-05', 1, 'PHI', 'L 17-47', 131, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.24),
(40, 3, 8, '1999-11-01', 0, 'SEA', 'L 7-27', 180, 1, 4, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.8),
(41, 3, 9, '1995-11-26', 0, 'TB', 'W 35-13', 267, 3, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24.48),
(42, 3, 10, '1998-12-20', 0, 'TEN', 'W 30-22', 253, 3, 0, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27.02),
(43, 3, 11, '1995-12-16', 1, 'NO', 'W 34-23', 308, 4, 0, 15, 0, 0, 0, 0, 0, 0, 3, 0, 0, 32.82),
(44, 3, 12, '1994-10-20', 1, 'MIN', 'L 10-13', 32, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.28),
(45, 3, 13, '2007-12-30', 0, 'DET', 'W 34-13', 99, 2, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14.06),
(46, 3, 14, '1992-12-06', 0, 'DET', 'W 38-10', 214, 3, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.66),
(47, 3, 15, '1998-10-05', 0, 'MIN', 'L 24-37', 114, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.56),
(48, 3, 16, '1992-09-27', 0, 'PIT', 'W 17-3', 210, 2, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.6),
(49, 4, 1, '1981-09-13', 1, 'WAS', 'W 17-7', 93, 0, 1, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.22),
(50, 4, 2, '1984-09-02', 0, 'PHI', 'W 28-27', 409, 4, 0, 20, 0, 0, 0, 0, 0, 0, 3, 0, 0, 37.36),
(51, 4, 3, '1980-10-05', 1, 'DAL', 'L 3-24', 87, 0, 1, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.48),
(52, 4, 4, '1990-11-18', 0, 'DET', 'W 20-0', 170, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14.8),
(53, 4, 5, '1987-12-19', 0, 'GB', 'W 20-10', 233, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.32),
(54, 4, 6, '1993-10-10', 1, 'WAS', 'W 41-7', 182, 3, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19.08),
(55, 4, 7, '1984-12-15', 0, 'NO', 'L 3-10', 127, 0, 2, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.38),
(56, 4, 8, '1987-10-25', 0, 'LAR', 'W 30-7', 253, 3, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.82),
(57, 4, 9, '1980-11-30', 0, 'LAR', 'L 7-23', 106, 0, 2, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5.14),
(58, 4, 10, '1990-10-14', 1, 'WAS', 'W 24-20', 283, 2, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19.02),
(59, 4, 11, '1986-11-09', 1, 'PHI', 'W 17-14', 130, 0, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.2),
(60, 4, 12, '1990-09-30', 0, 'DAL', 'W 31-17', 188, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19.52),
(61, 4, 13, '1989-09-17', 0, 'DET', 'W 24-14', 218, 2, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.82),
(62, 4, 14, '1984-10-28', 0, 'WAS', 'W 37-13', 339, 2, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 24.66),
(63, 4, 15, '1991-12-21', 0, 'HOU', 'W 24-20', 200, 1, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13.9),
(64, 4, 16, '1986-11-02', 0, 'DAL', 'W 17-14', 67, 0, 1, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.28),
(65, 5, 1, '1996-09-29', 1, 'TB', 'W 27-0', 230, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.6),
(66, 5, 2, '1995-10-29', 0, 'GB', 'W 24-16', 249, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22.16),
(67, 5, 3, '1997-11-02', 1, 'GB', 'L 10-20', 158, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.12),
(68, 5, 4, '1994-11-06', 1, 'GB', 'L 30-38', 63, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.52),
(69, 5, 5, '1997-10-12', 1, 'TB', 'W 27-9', 222, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13.58),
(70, 5, 6, '1996-10-27', 0, 'NYG', 'L 7-35', 71, 0, 3, 1, 1, 6, 0, 0, 0, 0, 0, 0, 0, 11.94),
(71, 5, 7, '1995-11-23', 0, 'MIN', 'W 44-38', 410, 4, 1, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 34.5),
(72, 5, 8, '1997-09-14', 1, 'CHI', 'W 32-7', 215, 2, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.7),
(73, 5, 9, '1995-12-17', 0, 'JAX', 'W 44-0', 233, 2, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18.52),
(74, 5, 10, '1997-11-16', 0, 'MIN', 'W 38-15', 271, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18.84),
(75, 5, 11, '1996-09-01', 1, 'MIN', 'L 13-17', 260, 1, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10.7),
(76, 5, 12, '1996-11-24', 1, 'CHI', 'L 14-31', 230, 0, 3, 2, 1, 6, 0, 0, 0, 0, 0, 0, 0, 18.4),
(77, 5, 13, '1995-12-04', 0, 'CHI', 'W 27-7', 320, 3, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 27.9),
(78, 5, 14, '1994-09-25', 0, 'NE', 'L 17-23', 189, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5.86),
(79, 5, 15, '1996-10-06', 0, 'ATL', 'W 28-24', 276, 3, 0, 9, 1, 6, 0, 0, 0, 0, 0, 0, 0, 35.94),
(80, 5, 16, '1996-09-22', 0, 'CHI', 'W 35-16', 336, 4, 1, 8, 1, 6, 0, 0, 0, 0, 3, 0, 0, 44.24),
(81, 6, 1, '1991-11-17', 1, 'PIT', 'W 41-14', 325, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 24),
(82, 6, 2, '1993-12-26', 1, 'DAL', 'L 3-38', 81, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.24),
(83, 6, 3, '1991-12-22', 1, 'PHI', 'L 22-24', 130, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.2),
(84, 6, 4, '1990-12-02', 0, 'MIA', 'W 42-20', 245, 3, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.6),
(85, 6, 5, '1988-10-09', 1, 'DAL', 'W 35-17', 187, 3, 0, 17, 1, 6, 0, 0, 0, 0, 0, 0, 0, 33.18),
(86, 6, 6, '1991-11-10', 0, 'ATL', 'W 56-17', 442, 6, 0, 4, 1, 6, 0, 0, 0, 0, 3, 0, 0, 57.08),
(87, 6, 7, '1990-11-18', 0, 'NO', 'W 31-17', 311, 4, 0, -5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 30.94),
(88, 6, 8, '1990-12-15', 1, 'NE', 'W 25-10', 100, 0, 1, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.8),
(89, 6, 9, '1991-12-15', 0, 'NYG', 'W 34-17', 230, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.2),
(90, 6, 10, '1991-09-01', 0, 'DET', 'W 45-0', 183, 2, 1, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15.42),
(91, 6, 11, '1992-09-20', 0, 'DET', 'W 13-10', 136, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.44),
(92, 6, 12, '1988-10-16', 0, 'AZ', 'W 33-17', 303, 4, 1, -1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 30.02),
(93, 6, 13, '1991-12-01', 1, 'LAR', 'W 27-6', 269, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.76),
(94, 6, 14, '1992-12-06', 1, 'NYG', 'W 28-10', 216, 2, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16.34),
(95, 6, 15, '1990-12-09', 0, 'CHI', 'W 10-9', 148, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.92),
(96, 6, 16, '1993-11-01', 1, 'BUF', 'L 10-24', 169, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.76),
(97, 7, 1, '2004-09-12', 0, 'NYG', 'W 31-17', 330, 4, 0, 12, 0, 0, 0, 0, 0, 0, 3, 0, 0, 33.4),
(98, 7, 2, '2009-11-01', 0, 'NYG', 'W 40-17', 240, 3, 0, 14, 0, 1, 1, 0, 0, 0, 0, 0, 0, 24.1),
(99, 7, 3, '2007-11-18', 0, 'MIA', 'W 17-7', 34, 0, 2, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.16),
(100, 7, 4, '2000-12-10', 1, 'CLE', 'W 35-24', 390, 4, 0, 12, 0, 0, 0, 0, 0, 0, 3, 0, 0, 35.8),
(101, 7, 5, '2004-12-27', 1, 'LAR', 'L 7-20', 36, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5.44),
(102, 7, 6, '2006-11-19', 0, 'TEN', 'L 13-31', 78, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.12),
(103, 7, 7, '2004-11-15', 1, 'DAL', 'W 49-21', 345, 4, 0, 14, 0, 0, 0, 0, 0, 0, 3, 0, 0, 34.2),
(104, 7, 8, '2009-10-11', 0, 'TB', 'W 33-14', 264, 3, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25.56),
(105, 7, 9, '2003-09-14', 0, 'NE', 'L 10-31', 186, 0, 2, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10.84),
(106, 7, 10, '2003-10-19', 1, 'NYG', 'W 14-10', 64, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.46),
(107, 7, 11, '2004-12-05', 0, 'GB', 'W 47-17', 464, 5, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 41.56),
(108, 7, 12, '2008-11-23', 1, 'BAL', 'L 7-36', 59, 0, 2, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.06),
(109, 7, 13, '2005-09-18', 0, 'SF', 'W 42-3', 342, 5, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 36.68),
(110, 7, 14, '1999-12-12', 1, 'DAL', 'L 10-20', 49, 0, 1, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.36),
(111, 7, 15, '2007-09-23', 0, 'DET', 'W 56-21', 381, 4, 0, 7, 0, 0, 0, 0, 0, 0, 3, 0, 0, 34.94),
(112, 7, 16, '2007-11-11', 1, 'WAS', 'W 33-25', 251, 4, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29.74),
(113, 8, 1, '1972-11-12', 0, 'KC', 'W 16-7', 92, 0, 3, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.08),
(114, 8, 2, '1972-10-22', 0, 'NE', 'W 33-3', 173, 1, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12.42),
(115, 8, 3, '1982-12-12', 1, 'BUF', 'L 0-13', 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.88),
(116, 8, 4, '1978-09-17', 1, 'CIN', 'W 28-3', 242, 2, 1, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.68),
(117, 8, 5, '1978-11-19', 0, 'CIN', 'W 7-6', 117, 0, 4, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.38),
(118, 8, 6, '1982-12-19', 1, 'CLE', 'L 9-10', 144, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5.76),
(119, 8, 7, '1975-12-20', 1, 'LAR', 'L 3-10', 28, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.32),
(120, 8, 8, '1978-12-16', 1, 'DEN', 'W 21-17', 131, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13.24),
(121, 8, 9, '1977-11-20', 0, 'DAL', 'W 28-13', 106, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12.34),
(122, 8, 10, '1975-10-05', 1, 'CLE', 'W 42-6', 151, 1, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.54),
(123, 8, 11, '1982-12-05', 0, 'KC', 'W 35-14', 231, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20.24),
(124, 8, 12, '1978-10-08', 0, 'ATL', 'W 31-7', 231, 1, 0, 3, 1, 0, 0, 1, 0, 0, 0, 0, 0, 25.54),
(125, 8, 13, '1974-12-14', 0, 'CIN', 'W 27-3', 132, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13.68),
(126, 8, 14, '1977-11-13', 0, 'CLE', 'W 35-31', 283, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23.32),
(127, 8, 15, '1983-12-10', 1, 'NYJ', 'W 34-7', 77, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11.38),
(128, 8, 16, '1971-12-05', 1, 'HOU', 'L 3-29', 111, 0, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.24),
(129, 9, 1, '2000-10-01', 0, 'SD', 'W 57-31', 390, 4, 0, 6, 0, 0, 0, 0, 0, 0, 3, 0, 0, 35.2),
(130, 9, 2, '2000-12-03', 1, 'CAR', 'L 3-16', 189, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.56),
(131, 9, 3, '2001-12-17', 1, 'NO', 'W 34-21', 338, 4, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 32.72),
(132, 9, 4, '2002-09-29', 0, 'DAL', 'L 10-13', 17, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.32),
(133, 9, 5, '1999-10-24', 0, 'CLE', 'W 34-3', 203, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20.12),
(134, 9, 6, '1999-10-03', 1, 'CIN', 'W 38-10', 310, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 27.4),
(135, 9, 7, '2001-12-30', 0, 'IND', 'W 42-17', 359, 3, 1, -1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 28.26),
(136, 9, 8, '2001-11-26', 0, 'TB', 'L 17-24', 291, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13.64),
(137, 9, 9, '2002-09-23', 1, 'TB', 'L 14-26', 301, 0, 4, 19, 0, 0, 0, 0, 0, 0, 3, 0, 0, 12.94),
(138, 9, 10, '1999-10-10', 0, 'SF', 'W 42-20', 323, 5, 1, 10, 0, 0, 0, 0, 0, 0, 3, 0, 0, 35.92),
(139, 9, 11, '2001-10-28', 0, 'NO', 'L 31-34', 385, 1, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 18.4),
(140, 9, 12, '1999-09-26', 0, 'ATL', 'W 35-7', 275, 3, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 29.7),
(141, 9, 13, '2002-12-01', 1, 'PHI', 'L 3-10', 218, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6.82),
(142, 9, 14, '2001-09-30', 0, 'MIA', 'W 42-10', 328, 4, 0, -1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 32.02),
(143, 9, 15, '2001-10-08', 1, 'DET', 'W 35-0', 291, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23.64),
(144, 9, 16, '2001-12-02', 1, 'ATL', 'W 35-6', 342, 4, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 32.98),
(145, 10, 1, '1990-10-28', 0, 'CLE', 'W 20-17', 185, 1, 2, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12.6),
(146, 10, 2, '1990-12-30', 1, 'MIN', 'W 20-17', 88, 0, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.02),
(147, 10, 3, '1989-09-24', 1, 'PHI', 'W 38-28', 428, 5, 1, 14, 0, 0, 0, 0, 0, 0, 3, 0, 0, 40.52),
(148, 10, 4, '1985-10-27', 1, 'LAR', 'W 28-14', 306, 3, 0, 4, 0, 0, 0, 0, 0, 0, 3, 0, 0, 27.64),
(149, 10, 5, '1981-12-20', 1, 'NO', 'W 21-17', 106, 2, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13.24),
(150, 10, 6, '1987-11-29', 0, 'CLE', 'W 38-24', 342, 4, 1, 43, 0, 0, 0, 0, 0, 0, 3, 0, 0, 35.98),
(151, 10, 7, '1984-12-08', 0, 'MIN', 'W 51-7', 246, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22.24),
(152, 10, 8, '1988-11-27', 1, 'SD', 'W 48-10', 271, 3, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24.24),
(153, 10, 9, '1985-09-29', 0, 'NO', 'L 17-20', 120, 0, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.2),
(154, 10, 10, '1989-11-12', 0, 'ATL', 'W 45-3', 270, 3, 0, 13, 1, 6, 0, 0, 0, 0, 0, 0, 0, 36.1),
(155, 10, 11, '1979-12-02', 1, 'LAR', 'L 10-13', 36, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.64),
(156, 10, 12, '1989-10-08', 1, 'NO', 'W 24-20', 291, 3, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24.74),
(157, 10, 13, '1985-10-20', 1, 'DET', 'L 21-23', 97, 0, 1, 17, 1, 6, 0, 0, 0, 0, 0, 0, 0, 16.58),
(158, 10, 14, '1983-09-03', 0, 'PHI', 'L 17-22', 118, 0, 1, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.72),
(159, 10, 15, '1984-10-28', 1, 'LAR', 'W 33-0', 365, 3, 0, 11, 0, 0, 0, 0, 0, 0, 3, 0, 0, 30.7),
(160, 10, 16, '1983-09-08', 1, 'MIN', 'W 48-17', 230, 4, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26),
(161, 11, 1, '1992-12-06', 0, 'CIN', 'W 37-21', 239, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.56),
(162, 11, 2, '1986-11-16', 1, 'OAK', 'L 14-27', 188, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5.72),
(163, 11, 3, '1987-12-13', 0, 'CIN', 'W 38-24', 241, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25.64),
(164, 11, 4, '1989-09-25', 1, 'CIN', 'L 14-21', 203, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16.22),
(165, 11, 5, '1987-11-22', 1, 'HOU', 'W 40-7', 257, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18.28),
(166, 11, 6, '1989-11-05', 1, 'TB', 'W 42-31', 164, 3, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.96),
(167, 11, 7, '1985-10-27', 0, 'WAS', 'L 7-14', 84, 0, 2, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.16),
(168, 11, 8, '1988-12-04', 0, 'DAL', 'W 24-21', 308, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 27.32),
(169, 11, 9, '1990-09-23', 0, 'SD', 'L 14-24', 232, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6.28),
(170, 11, 10, '1989-10-23', 0, 'CHI', 'W 27-7', 281, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19.34),
(171, 11, 11, '1991-09-08', 1, 'NE', 'W 20-0', 187, 2, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15.18),
(172, 11, 12, '1986-11-30', 0, 'HOU', 'W 13-10', 172, 1, 3, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.08),
(173, 11, 13, '1993-09-19', 1, 'OAK', 'W 19-16', 71, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.16),
(174, 11, 14, '1986-12-21', 0, 'SD', 'W 47-17', 258, 2, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20.02),
(175, 11, 15, '1986-11-02', 1, 'IND', 'W 24-9', 238, 3, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.32),
(176, 11, 16, '1989-10-15', 0, 'PIT', 'L 7-17', 162, 0, 4, 9, 0, 1, -7, 0, 0, 0, 0, 0, 0, 3.68),
(177, 12, 1, '2003-09-28', 1, 'NO', 'W 55-21', 314, 6, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 39.66),
(178, 12, 2, '2008-11-30', 1, 'CLE', 'W 10-6', 125, 0, 2, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.8),
(179, 12, 3, '2001-12-10', 1, 'MIA', 'L 6-41', 173, 0, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.42),
(180, 12, 4, '2000-10-22', 0, 'NE', 'W 30-23', 268, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22.72),
(181, 12, 5, '2008-10-19', 1, 'GB', 'L 14-34', 229, 0, 2, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.06),
(182, 12, 6, '2005-12-04', 0, 'TEN', 'W 35-3', 187, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19.38),
(183, 12, 7, '2007-12-09', 1, 'BAL', 'W 44-20', 249, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25.96),
(184, 12, 8, '1998-09-20', 1, 'NYJ', 'L 6-44', 193, 0, 2, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.32),
(185, 12, 9, '1998-11-08', 1, 'MIA', 'L 14-27', 140, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.6),
(186, 12, 10, '2010-09-19', 0, 'NYG', 'W 38-14', 255, 3, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.9),
(187, 12, 11, '2002-11-10', 1, 'PHI', 'W 35-13', 319, 3, 0, 11, 0, 0, 0, 0, 0, 0, 3, 0, 0, 28.86),
(188, 12, 12, '2003-12-14', 0, 'ATL', 'W 38-7', 290, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31.6),
(189, 12, 13, '2005-09-18', 0, 'JAX', 'W 10-3', 122, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.88),
(190, 12, 14, '2004-11-08', 0, 'MIN', 'W 31-28', 268, 4, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28.72),
(191, 12, 15, '2005-10-02', 1, 'TEN', 'W 31-10', 264, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26.86),
(192, 12, 16, '2008-12-28', 0, 'TEN', 'W 23-0', 95, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.8),
(193, 13, 1, '1989-09-24', 0, 'WAS', 'L 7-30', 83, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.62),
(194, 13, 2, '1989-11-23', 0, 'PHI', 'L 0-27', 54, 0, 3, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.66),
(195, 13, 3, '1993-11-07', 0, 'NYG', 'W 31-9', 162, 2, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16.18),
(196, 13, 4, '1994-10-23', 1, 'AZ', 'W 28-21', 51, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6.04),
(197, 13, 5, '2000-10-29', 0, 'JAX', 'L 17-23', 43, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5.72),
(198, 13, 6, '2000-09-03', 0, 'PHI', 'L 14-41', 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1),
(199, 13, 7, '1992-09-20', 0, 'AZ', 'W 31-20', 263, 3, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23.32),
(200, 13, 8, '2000-10-22', 0, 'AZ', 'W 48-7', 154, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14.16),
(201, 13, 9, '1992-12-21', 1, 'ATL', 'W 41-17', 239, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.56),
(202, 13, 10, '1991-09-15', 0, 'PHI', 'L 0-24', 112, 0, 3, 0, 0, 1, -6, 0, 0, 0, 0, 0, 0, 1.88),
(203, 13, 11, '1994-10-09', 0, 'AZ', 'W 38-3', 231, 2, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.74),
(204, 13, 12, '1993-12-26', 0, 'WAS', 'W 38-3', 193, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15.82),
(205, 13, 13, '1996-10-20', 0, 'ATL', 'W 32-28', 265, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18.6),
(206, 13, 14, '1990-10-14', 1, 'AZ', 'L 3-20', 61, 0, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.04),
(207, 13, 15, '1997-08-31', 1, 'PIT', 'W 37-7', 295, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27.8),
(208, 13, 16, '1999-09-20', 0, 'ATL', 'W 24-7', 109, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.56),
(209, 14, 1, '1967-10-08', 0, 'MIA', 'W 41-0', 250, 5, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30.6),
(210, 14, 2, '1967-11-23', 0, 'OAK', 'L 22-44', 130, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5.2),
(211, 14, 3, '1963-11-08', 0, 'OAK', 'L 7-22', 49, 0, 2, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.46),
(212, 14, 4, '1967-10-29', 0, 'DEN', 'W 52-9', 222, 3, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.38),
(213, 14, 5, '1963-09-07', 1, 'DEN', 'W 59-7', 278, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27.12),
(214, 14, 6, '1968-09-28', 1, 'MIA', 'W 48-3', 205, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20.5),
(215, 14, 7, '1963-10-06', 0, 'HOU', 'W 28-7', 225, 4, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26.2),
(216, 14, 8, '1973-10-29', 1, 'BUF', 'L 14-23', 26, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.96),
(217, 14, 9, '1966-09-11', 1, 'BUF', 'W 42-20', 129, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13.16),
(218, 14, 10, '1964-09-27', 1, 'OAK', 'W 21-9', 189, 2, 0, -1, 1, 6, 0, 0, 0, 0, 0, 0, 0, 27.46),
(219, 14, 11, '1970-10-04', 1, 'DEN', 'L 13-26', 109, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.36),
(220, 14, 12, '1964-11-08', 0, 'OAK', 'W 42-7', 222, 4, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26.08),
(221, 14, 13, '1970-11-22', 0, 'LAR', 'T 6-6', 38, 0, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.82),
(222, 14, 14, '1974-09-15', 0, 'NYJ', 'W 24-16', 119, 0, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.36),
(223, 14, 15, '1970-11-15', 1, 'PIT', 'W 31-14', 257, 3, 1, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23.38),
(224, 14, 16, '1965-11-28', 0, 'HOU', 'W 52-21', 211, 3, 0, 5, 1, 6, 0, 0, 0, 0, 0, 0, 0, 32.94),
(225, 15, 1, '1984-09-02', 1, 'MIN', 'W 42-13', 292, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19.68),
(226, 15, 2, '1974-11-24', 1, 'GB', 'L 0-34', 17, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.32),
(227, 15, 3, '1973-10-21', 0, 'ATL', 'L 0-41', 99, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.04),
(228, 15, 4, '1976-09-26', 0, 'LAR', 'W 43-24', 259, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26.76),
(229, 15, 5, '1982-12-11', 1, 'SF', 'W 41-37', 444, 5, 0, -2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 40.56),
(230, 15, 6, '1977-12-04', 0, 'CLE', 'W 37-14', 237, 3, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22.58),
(231, 15, 7, '1980-11-30', 0, 'PHI', 'W 22-21', 342, 2, 0, -5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 24.18),
(232, 15, 8, '1975-10-05', 0, 'OAK', 'L 0-6', 29, 0, 2, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.86),
(233, 15, 9, '1980-09-07', 1, 'SEA', 'W 34-13', 230, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25.5),
(234, 15, 10, '1985-09-29', 0, 'CLE', 'L 7-21', 82, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.28),
(235, 15, 11, '1976-12-12', 1, 'OAK', 'L 0-24', 82, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.28),
(236, 15, 12, '1979-10-14', 0, 'SEA', 'W 20-10', 318, 3, 0, -2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 27.52),
(237, 15, 13, '1974-10-06', 0, 'PHI', 'L 7-13', 134, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6.36),
(238, 15, 14, '1973-11-04', 0, 'KC', 'L 0-19', 128, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.12),
(239, 15, 15, '1976-10-17', 0, 'HOU', 'W 30-27', 279, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19.16),
(240, 15, 16, '1981-09-07', 1, 'CLE', 'W 44-14', 330, 3, 0, 9, 0, 0, 0, 0, 0, 0, 3, 0, 0, 29.1),
(241, 16, 1, '1998-11-22', 0, 'OAK', 'W 40-14', 197, 3, 0, 2, 0, 1, 14, 0, 0, 0, 0, 0, 0, 22.48),
(242, 16, 2, '1993-11-07', 1, 'CLE', 'W 29-14', 244, 3, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22.46),
(243, 16, 3, '1983-09-04', 1, 'PIT', 'W 14-10', 14, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.44),
(244, 16, 4, '1983-12-18', 1, 'KC', 'L 17-48', 143, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.82),
(245, 16, 5, '1990-11-04', 1, 'MIN', 'L 22-27', 88, 1, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.12),
(246, 16, 6, '1998-12-27', 0, 'SEA', 'W 28-21', 338, 4, 0, 8, 0, 0, 0, 0, 0, 0, 3, 0, 0, 33.32),
(247, 16, 7, '1995-11-05', 0, 'AZ', 'W 38-6', 256, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22.24),
(248, 16, 8, '1998-12-21', 1, 'MIA', 'L 21-31', 151, 0, 2, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.94),
(249, 16, 9, '1986-11-09', 0, 'SD', 'L 3-9', 196, 0, 3, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.04),
(250, 16, 10, '1983-10-02', 1, 'CHI', 'L 14-31', 36, 0, 1, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.44),
(251, 16, 11, '1989-11-26', 0, 'SEA', 'W 41-14', 217, 4, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26.38),
(252, 16, 12, '1983-11-27', 1, 'SD', 'L 7-31', 147, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.98),
(253, 16, 13, '1995-11-12', 1, 'PHI', 'L 13-31', 54, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6.16),
(254, 16, 14, '1986-11-02', 1, 'OAK', 'W 21-10', 141, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.64),
(255, 16, 15, '1998-09-13', 0, 'DAL', 'W 42-23', 268, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 24.82),
(256, 16, 16, '1984-11-18', 0, 'MIN', 'W 42-21', 218, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28.72),
(257, 17, 1, '1975-10-19', 0, 'MIA', 'L 0-43', 96, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.16),
(258, 17, 2, '1975-10-05', 0, 'NE', 'W 36-7', 218, 4, 1, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23.32),
(259, 17, 3, '1967-12-24', 1, 'SD', 'W 42-31', 343, 4, 0, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 33.22),
(260, 17, 4, '1975-10-26', 0, 'BAL', 'L 28-45', 333, 3, 1, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 27.82),
(261, 17, 5, '1974-09-22', 1, 'CHI', 'W 23-21', 257, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14.28),
(262, 17, 6, '1969-12-14', 1, 'MIA', 'W 27-9', 99, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11.96),
(263, 17, 7, '1967-10-22', 1, 'MIA', 'W 33-14', 199, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15.96),
(264, 17, 8, '1974-09-29', 1, 'BUF', 'L 12-16', 33, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.68),
(265, 17, 9, '1972-09-24', 1, 'BAL', 'W 44-34', 496, 6, 1, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 45.94),
(266, 17, 10, '1966-12-17', 0, 'NE', 'W 38-28', 287, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23.48),
(267, 17, 11, '1971-12-04', 1, 'DAL', 'L 10-52', 20, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.2),
(268, 17, 12, '1976-12-12', 0, 'CIN', 'L 3-42', 20, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.2),
(269, 17, 13, '1966-10-16', 1, 'HOU', 'L 0-24', 143, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.72),
(270, 17, 14, '1968-12-01', 0, 'MIA', 'W 35-17', 104, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12.56),
(271, 17, 15, '1974-10-13', 0, 'NE', 'L 0-24', 63, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.52),
(272, 17, 16, '1974-12-15', 1, 'BAL', 'W 45-38', 281, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19.24),
(273, 18, 1, '1996-11-24', 0, 'IND', 'W 27-13', 242, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18.08),
(274, 18, 2, '2000-10-01', 1, 'DEN', 'W 28-19', 271, 4, 1, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25.64),
(275, 18, 3, '1996-12-15', 1, 'DAL', 'L 6-12', 178, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.12),
(276, 18, 4, '1996-12-01', 1, 'SD', 'W 45-7', 232, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25.18),
(277, 18, 5, '1994-10-30', 0, 'MIA', 'L 3-23', 125, 0, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.8),
(278, 18, 6, '1994-11-06', 1, 'CLE', 'L 6-13', 166, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.64),
(279, 18, 7, '1993-12-26', 0, 'IND', 'W 38-0', 143, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13.92),
(280, 18, 8, '1995-09-17', 1, 'SF', 'L 3-28', 241, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6.64),
(281, 18, 9, '1999-10-31', 1, 'AZ', 'W 27-3', 276, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27.04),
(282, 18, 10, '1998-10-11', 0, 'KC', 'W 40-10', 226, 3, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.84),
(283, 18, 11, '2000-10-15', 0, 'NYJ', 'L 17-34', 208, 0, 3, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12.92),
(284, 18, 12, '1996-10-06', 1, 'BAL', 'W 46-38', 310, 4, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 31.5),
(285, 18, 13, '1997-09-07', 1, 'IND', 'W 31-6', 267, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26.78),
(286, 18, 14, '1994-12-18', 1, 'BUF', 'W 41-17', 276, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23.04),
(287, 18, 15, '1993-12-05', 1, 'PIT', 'L 14-17', 296, 1, 5, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10.74),
(288, 18, 16, '1997-08-31', 0, 'SD', 'W 41-7', 340, 4, 0, 8, 0, 0, 0, 0, 0, 0, 3, 0, 0, 33.4),
(289, 19, 1, '1973-10-22', 1, 'DEN', 'T 23-23', 313, 2, 0, 34, 0, 0, 0, 0, 0, 0, 3, 0, 0, 26.92),
(290, 19, 2, '1973-10-28', 1, 'BAL', 'W 34-21', 304, 2, 0, 8, 0, 0, 0, 0, 0, 0, 3, 0, 0, 23.96),
(291, 19, 3, '1972-09-17', 1, 'PIT', 'L 28-34', 54, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.84),
(292, 19, 4, '1976-11-07', 1, 'CHI', 'W 28-27', 234, 3, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.06),
(293, 19, 5, '1975-12-21', 0, 'KC', 'W 28-20', 134, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.36),
(294, 19, 6, '1974-10-27', 1, 'SF', 'W 35-24', 140, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13.6),
(295, 19, 7, '1977-12-11', 0, 'MIN', 'W 35-13', 143, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.72),
(296, 19, 8, '1974-11-10', 0, 'DET', 'W 35-13', 248, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.92),
(297, 19, 9, '1976-10-10', 1, 'SD', 'W 27-17', 339, 3, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 27.56),
(298, 19, 10, '1977-12-04', 1, 'LAR', 'L 14-20', 194, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.76),
(299, 19, 11, '1975-10-19', 1, 'CIN', 'L 10-14', 113, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.52),
(300, 19, 12, '1974-11-03', 1, 'DEN', 'W 28-17', 217, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24.98),
(301, 19, 13, '1975-12-08', 0, 'DEN', 'W 17-10', 85, 0, 2, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.3),
(302, 19, 14, '1979-09-23', 1, 'KC', 'L 7-35', 91, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.64),
(303, 19, 15, '1975-10-12', 1, 'KC', 'L 10-42', 142, 0, 3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.38),
(304, 19, 16, '1979-10-25', 0, 'SD', 'W 45-22', 212, 1, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12.28),
(305, 20, 1, '2003-11-09', 0, 'MIA', 'W 31-7', 201, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16.34),
(306, 20, 2, '2000-01-02', 1, 'PIT', 'W 47-36', 107, 1, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.68),
(307, 20, 3, '1997-11-16', 1, 'JAX', 'L 9-17', 162, 0, 2, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.78),
(308, 20, 4, '2000-12-10', 0, 'CIN', 'W 35-3', 229, 3, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22.16),
(309, 20, 5, '2003-10-12', 0, 'HOU', 'W 38-17', 421, 3, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 32.04),
(310, 20, 6, '2000-09-10', 0, 'KC', 'W 17-14', 93, 0, 2, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5.92),
(311, 20, 7, '2003-11-23', 1, 'ATL', 'W 38-31', 95, 2, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12.7),
(312, 20, 8, '2004-10-17', 0, 'HOU', 'L 10-20', 210, 1, 4, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11.7),
(313, 20, 9, '2005-12-24', 1, 'MIA', 'L 10-24', 34, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.16),
(314, 20, 10, '1997-12-21', 0, 'PIT', 'W 16-6', 102, 0, 1, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12.08),
(315, 20, 11, '2000-10-16', 0, 'JAX', 'W 27-13', 234, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.76),
(316, 20, 12, '1999-12-26', 0, 'JAX', 'W 41-14', 291, 5, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35.04),
(317, 20, 13, '1997-10-05', 1, 'SEA', 'L 13-16', 101, 1, 2, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.14),
(318, 20, 14, '2001-12-02', 1, 'CLE', 'W 31-15', 244, 3, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22.76),
(319, 20, 15, '1998-10-18', 0, 'CIN', 'W 44-14', 277, 1, 0, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 22.68),
(320, 20, 16, '2003-09-28', 1, 'PIT', 'W 30-13', 161, 3, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18.94),
(321, 21, 1, '1990-12-15', 1, 'NYG', 'W 17-13', 115, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.1),
(322, 21, 2, '1991-11-24', 1, 'NE', 'L 13-16', 204, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.16),
(323, 21, 3, '1989-11-26', 0, 'CIN', 'W 24-7', 123, 3, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18.42),
(324, 21, 4, '1994-10-30', 0, 'KC', 'W 44-10', 184, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23.36),
(325, 21, 5, '1992-11-29', 1, 'IND', 'L 13-16', 184, 1, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.86),
(326, 21, 6, '1992-11-08', 0, 'PIT', 'W 28-20', 290, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23.9),
(327, 21, 7, '1996-09-16', 1, 'PIT', 'L 6-24', 116, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.64),
(328, 21, 8, '1987-11-29', 0, 'MIA', 'W 27-0', 217, 2, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.78),
(329, 21, 9, '1992-12-27', 1, 'HOU', 'L 3-27', 47, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.88),
(330, 21, 10, '1991-09-29', 0, 'CHI', 'W 35-20', 303, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 27.12),
(331, 21, 11, '1986-10-26', 0, 'NE', 'L 3-23', 166, 0, 2, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.54),
(332, 21, 12, '1993-10-11', 0, 'HOU', 'W 35-7', 247, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.88),
(333, 21, 13, '1995-09-10', 0, 'CAR', 'W 31-9', 176, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.04),
(334, 21, 14, '1989-10-01', 0, 'NE', 'W 31-10', 278, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23.02),
(335, 21, 15, '1992-09-27', 1, 'NE', 'W 41-7', 308, 3, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 27.42),
(336, 21, 16, '1991-12-15', 1, 'IND', 'W 35-7', 119, 3, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16.36),
(337, 22, 1, '1961-12-10', 1, 'DET', 'L 7-13', 141, 1, 3, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10.84),
(338, 22, 2, '1961-09-24', 1, 'DAL', 'L 7-21', 117, 0, 2, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.78),
(339, 22, 3, '1977-11-13', 0, 'CIN', 'W 42-10', 195, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11.9),
(340, 22, 4, '1972-11-19', 1, 'LAR', 'W 45-41', 319, 4, 0, 9, 0, 0, 0, 0, 0, 0, 3, 0, 0, 32.66),
(341, 22, 5, '1977-10-24', 1, 'LAR', 'L 3-35', 108, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.32),
(342, 22, 6, '1974-10-13', 0, 'HOU', 'W 51-10', 274, 3, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24.46),
(343, 22, 7, '1965-11-28', 0, 'SF', 'L 24-45', 33, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.32),
(344, 22, 8, '1976-12-11', 1, 'MIA', 'W 29-7', 184, 3, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19.86),
(345, 22, 9, '1966-11-13', 0, 'DET', 'L 31-32', 106, 0, 5, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.54),
(346, 22, 10, '1972-09-24', 1, 'DET', 'W 34-10', 158, 2, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16.22),
(347, 22, 11, '1973-11-11', 0, 'DET', 'W 28-7', 177, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10.98),
(348, 22, 12, '1973-11-25', 0, 'CHI', 'W 31-13', 161, 1, 0, 8, 1, 6, 0, 0, 0, 0, 0, 0, 0, 23.24),
(349, 22, 13, '1964-12-13', 1, 'CHI', 'W 41-14', 182, 1, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15.38),
(350, 22, 14, '1963-11-17', 0, 'BAL', 'L 34-37', 225, 2, 0, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.6),
(351, 22, 15, '1978-09-11', 0, 'DEN', 'W 12-9', 98, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.32),
(352, 22, 16, '1974-12-01', 0, 'NO', 'W 29-9', 317, 3, 0, 6, 0, 0, 0, 0, 0, 0, 3, 0, 0, 28.28),
(353, 23, 1, '2005-01-02', 1, 'SEA', 'L 26-28', 35, 1, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6.7),
(354, 23, 2, '2006-12-24', 0, 'CAR', 'L 3-10', 109, 0, 2, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5.56),
(355, 23, 3, '2004-12-05', 1, 'TB', 'L 0-27', 115, 0, 2, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10.7),
(356, 23, 4, '2004-11-21', 1, 'NYG', 'W 14-10', 115, 2, 0, 104, 0, 0, 0, 0, 0, 0, 0, 3, 0, 26),
(357, 23, 5, '2004-10-31', 1, 'DEN', 'W 41-28', 252, 2, 0, 115, 0, 0, 0, 0, 0, 0, 0, 3, 0, 32.58),
(358, 23, 6, '2006-10-29', 1, 'CIN', 'W 29-27', 291, 3, 0, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29.14),
(359, 23, 7, '2005-12-18', 1, 'CHI', 'L 3-16', 122, 0, 2, 35, 0, 1, -14, 0, 0, 0, 0, 0, 0, 5.98),
(360, 23, 8, '2005-10-24', 0, 'NYJ', 'W 27-14', 116, 0, 3, 18, 2, 0, 0, 0, 0, 0, 0, 0, 0, 15.44),
(361, 23, 9, '2004-09-19', 0, 'LAR', 'W 34-17', 179, 1, 0, 109, 0, 0, 0, 0, 0, 0, 0, 3, 0, 25.06),
(362, 23, 10, '2006-12-16', 0, 'DAL', 'L 28-38', 237, 4, 1, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30.08),
(363, 23, 11, '2003-12-14', 1, 'IND', 'L 7-38', 47, 0, 1, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.88),
(364, 23, 12, '2005-10-02', 0, 'MIN', 'W 30-10', 49, 1, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11.76),
(365, 23, 13, '2003-12-20', 1, 'TB', 'W 30-28', 119, 2, 0, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16.66),
(366, 23, 14, '2002-11-24', 1, 'CAR', 'W 41-0', 272, 2, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20.88),
(367, 23, 15, '2004-10-24', 1, 'KC', 'L 10-56', 119, 0, 2, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.96),
(368, 23, 16, '2006-12-03', 1, 'WAS', 'W 24-14', 122, 2, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18.78),
(369, 24, 1, '1996-11-10', 0, 'IND', 'W 37-13', 204, 3, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19.96),
(370, 24, 2, '1987-10-25', 0, 'BUF', 'L 31-34', 303, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 31.12),
(371, 24, 3, '1991-12-09', 0, 'CIN', 'W 37-13', 281, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23.24),
(372, 24, 4, '1986-11-24', 0, 'NYJ', 'W 45-3', 288, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27.52),
(373, 24, 5, '1992-10-18', 0, 'NE', 'W 38-17', 294, 4, 1, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27.96),
(374, 24, 6, '1992-11-08', 1, 'IND', 'W 28-0', 245, 2, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19),
(375, 24, 7, '1997-11-02', 1, 'BUF', 'L 6-9', 76, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.04),
(376, 24, 8, '1987-11-29', 1, 'BUF', 'L 0-27', 165, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.6),
(377, 24, 9, '1984-10-14', 0, 'HOU', 'W 28-10', 321, 3, 0, 4, 0, 0, 0, 0, 0, 0, 3, 0, 0, 28.24),
(378, 24, 10, '1990-09-23', 1, 'NYG', 'L 3-20', 115, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.6),
(379, 24, 11, '1999-10-17', 1, 'NE', 'W 31-30', 8, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.68),
(380, 24, 12, '1999-11-25', 1, 'DAL', 'L 0-20', 178, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.12),
(381, 24, 13, '1984-09-30', 1, 'LAR', 'W 36-28', 429, 3, 0, -2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 31.96),
(382, 24, 14, '1991-09-01', 1, 'BUF', 'L 31-35', 267, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22.68),
(383, 24, 15, '1984-09-02', 1, 'WAS', 'W 35-17', 311, 5, 0, -7, 0, 0, 0, 0, 0, 0, 3, 0, 0, 34.74),
(384, 24, 16, '1989-10-01', 1, 'HOU', 'L 7-39', 103, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.12),
(385, 25, 1, '2004-09-19', 0, 'SF', 'W 30-27', 279, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23.56),
(386, 25, 2, '2001-09-09', 1, 'BUF', 'W 24-6', 209, 3, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.36),
(387, 25, 3, '2001-11-18', 0, 'IND', 'W 34-20', 249, 2, 0, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 26.56),
(388, 25, 4, '2003-12-14', 0, 'NYG', 'W 45-7', 296, 5, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32.94),
(389, 25, 5, '2001-10-28', 1, 'LAR', 'W 34-31', 254, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22.26),
(390, 25, 6, '2005-12-04', 0, 'TB', 'L 3-10', 215, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5.5),
(391, 25, 7, '2002-12-29', 0, 'CAR', 'L 6-10', 145, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.6),
(392, 25, 8, '2005-11-27', 1, 'NYJ', 'W 21-19', 181, 3, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19.04),
(393, 25, 9, '2002-01-06', 0, 'SF', 'L 0-38', 119, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.36),
(394, 25, 10, '2001-11-04', 0, 'NYJ', 'L 9-16', 164, 0, 2, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.56),
(395, 25, 11, '2001-12-30', 0, 'WAS', 'L 10-40', 127, 1, 3, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.48),
(396, 25, 12, '2005-10-09', 1, 'GB', 'L 3-52', 146, 0, 2, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.04),
(397, 25, 13, '2003-09-14', 0, 'HOU', 'W 31-10', 189, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15.96),
(398, 25, 14, '2004-12-19', 1, 'TB', 'W 21-17', 169, 2, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16.46),
(399, 25, 15, '2002-10-20', 0, 'SF', 'W 35-27', 254, 3, 0, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 30.76),
(400, 25, 16, '2003-10-19', 1, 'ATL', 'W 45-17', 352, 3, 0, 14, 0, 0, 0, 0, 0, 0, 3, 0, 0, 30.48),
(401, 26, 1, '1992-09-27', 0, 'MIN', 'L 7-42', 97, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.38),
(402, 26, 2, '1988-10-09', 0, 'NYJ', 'W 36-19', 220, 3, 0, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26.9),
(403, 26, 3, '1985-10-13', 0, 'NYG', 'W 35-30', 193, 3, 0, -27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.02),
(404, 26, 4, '1987-11-15', 1, 'ATL', 'W 16-10', 159, 0, 2, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12.06),
(405, 26, 5, '1989-12-17', 0, 'HOU', 'W 61-7', 326, 4, 0, 9, 0, 0, 0, 0, 0, 0, 3, 0, 0, 32.94),
(406, 26, 6, '1986-12-14', 0, 'CLE', 'L 3-34', 151, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.04),
(407, 26, 7, '1992-11-22', 0, 'DET', 'L 13-19', 64, 0, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.46),
(408, 26, 8, '1988-09-11', 1, 'PHI', 'W 28-24', 363, 4, 1, -2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 32.32),
(409, 26, 9, '1992-11-15', 1, 'NYJ', 'L 14-17', 109, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.76),
(410, 26, 10, '1985-12-01', 0, 'HOU', 'W 45-27', 320, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 27.8),
(411, 26, 11, '1986-12-21', 0, 'NYJ', 'W 52-21', 425, 5, 1, 45, 0, 0, 0, 0, 0, 0, 3, 0, 0, 43.5),
(412, 26, 12, '1986-10-05', 1, 'GB', 'W 34-28', 207, 3, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.38),
(413, 26, 13, '1988-10-02', 1, 'OAK', 'W 45-21', 332, 3, 0, 6, 0, 0, 0, 0, 0, 0, 3, 0, 0, 28.88),
(414, 26, 14, '1985-12-08', 0, 'DAL', 'W 50-24', 265, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22.6),
(415, 26, 15, '1990-10-07', 1, 'LAR', 'W 34-31', 490, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 34.6),
(416, 26, 16, '1991-12-15', 1, 'PIT', 'L 10-17', 125, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.2),
(417, 27, 1, '1988-12-18', 1, 'OAK', 'W 43-37', 410, 4, 1, 8, 0, 0, 0, 0, 0, 0, 3, 0, 0, 35.2),
(418, 27, 2, '1986-12-14', 1, 'SD', 'W 34-24', 305, 4, 0, 6, 0, 0, 0, 0, 0, 0, 3, 0, 0, 31.8),
(419, 27, 3, '1985-11-17', 0, 'NE', 'L 13-20', 229, 0, 3, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14.56),
(420, 27, 4, '1990-09-09', 1, 'CHI', 'L 0-17', 91, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.74),
(421, 27, 5, '1990-11-11', 1, 'KC', 'W 17-16', 306, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 23.24),
(422, 27, 6, '1985-12-08', 0, 'CLE', 'W 31-13', 268, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26.62),
(423, 27, 7, '1986-12-08', 0, 'OAK', 'W 37-0', 243, 2, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20.02),
(424, 27, 8, '1983-12-18', 0, 'NE', 'W 24-6', 230, 2, 0, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 24.3),
(425, 27, 9, '1988-09-18', 1, 'SD', 'L 6-17', 134, 0, 3, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.16),
(426, 27, 10, '1987-09-20', 0, 'KC', 'W 43-14', 152, 3, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20.28),
(427, 27, 11, '1985-09-15', 1, 'SD', 'W 49-35', 307, 5, 0, 10, 0, 0, 0, 0, 0, 0, 3, 0, 0, 36.28),
(428, 27, 12, '1990-10-21', 0, 'KC', 'W 19-7', 132, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.58),
(429, 27, 13, '1985-09-08', 1, 'CIN', 'W 28-24', 236, 3, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22.34),
(430, 27, 14, '1991-11-24', 0, 'DEN', 'W 13-10', 70, 1, 2, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.6),
(431, 27, 15, '1988-12-11', 0, 'DEN', 'W 42-14', 220, 2, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16.5),
(432, 27, 16, '1985-10-20', 1, 'DEN', 'L 10-13', 115, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5.7),
(433, 28, 1, '1990-10-14', 0, 'GB', 'W 26-14', 292, 1, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 16.98),
(434, 28, 2, '1990-09-09', 1, 'DET', 'W 38-21', 237, 3, 1, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19.88),
(435, 28, 3, '1991-10-06', 0, 'PHI', 'W 14-13', 52, 0, 1, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.68),
(436, 28, 4, '1992-10-25', 0, 'DET', 'L 7-38', 26, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.04),
(437, 28, 5, '1990-09-23', 0, 'DET', 'W 23-20', 181, 1, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12.84),
(438, 28, 6, '1990-12-02', 0, 'ATL', 'W 23-17', 351, 2, 1, 16, 0, 0, 0, 0, 0, 0, 3, 0, 0, 25.64),
(439, 28, 7, '1988-11-20', 0, 'CHI', 'L 15-27', 86, 0, 2, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6.94),
(440, 28, 8, '1990-10-07', 1, 'DAL', 'L 10-14', 194, 1, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13.66),
(441, 28, 9, '1989-12-03', 0, 'GB', 'L 16-17', 188, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.52),
(442, 28, 10, '1992-09-13', 0, 'GB', 'W 31-3', 363, 2, 0, 18, 1, 0, 0, 0, 0, 0, 3, 0, 0, 33.32),
(443, 28, 11, '1989-12-17', 1, 'DET', 'L 7-33', 18, 0, 1, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.32),
(444, 28, 12, '1992-11-22', 1, 'SD', 'L 14-29', 187, 1, 0, 28, 1, 0, 0, 0, 0, 0, 0, 0, 0, 20.28),
(445, 28, 13, '1989-09-10', 1, 'GB', 'W 23-21', 205, 1, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13.6),
(446, 28, 14, '1990-09-30', 1, 'MIN', 'W 23-20', 162, 1, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13.68),
(447, 28, 15, '1991-11-17', 1, 'ATL', 'L 7-43', 71, 0, 2, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.74),
(448, 28, 16, '1991-12-08', 0, 'MIN', 'L 24-26', 330, 2, 0, 15, 0, 0, 0, 0, 0, 0, 3, 0, 0, 25.7),
(449, 29, 1, '2008-10-19', 0, 'NO', 'W 30-7', 195, 2, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16.6),
(450, 29, 2, '2005-10-30', 0, 'MIN', 'W 38-13', 341, 3, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 28.84),
(451, 29, 3, '2006-01-01', 1, 'ATL', 'W 44-11', 163, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14.52),
(452, 29, 4, '2009-11-29', 1, 'NYJ', 'L 6-17', 130, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.2),
(453, 29, 5, '2008-10-26', 0, 'AZ', 'W 27-23', 248, 2, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.72),
(454, 29, 6, '2004-12-26', 1, 'TB', 'W 37-20', 214, 4, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25.76),
(455, 29, 7, '2004-10-17', 1, 'PHI', 'L 8-30', 205, 1, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.4),
(456, 29, 8, '2008-10-12', 1, 'TB', 'L 3-27', 242, 0, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6.58),
(457, 29, 9, '2008-12-28', 1, 'NO', 'W 33-31', 250, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14),
(458, 29, 10, '2006-12-31', 1, 'NO', 'W 31-21', 207, 2, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15.98),
(459, 29, 11, '2008-11-09', 1, 'OAK', 'W 17-6', 72, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.88),
(460, 29, 12, '2007-09-09', 1, 'LAR', 'W 27-13', 199, 3, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.16),
(461, 29, 13, '2003-09-14', 1, 'TB', 'W 12-9', 96, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.04),
(462, 29, 14, '2008-09-28', 0, 'ATL', 'W 24-9', 294, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19.76),
(463, 29, 15, '2005-10-03', 0, 'GB', 'W 32-29', 206, 2, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15.94),
(464, 29, 16, '2009-09-13', 0, 'PHI', 'L 10-38', 73, 0, 4, 9, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5.82),
(465, 30, 1, '1998-09-20', 0, 'BAL', 'W 24-10', 376, 2, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 26.14),
(466, 30, 2, '2002-10-20', 1, 'BAL', 'L 10-17', 231, 0, 3, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.04),
(467, 30, 3, '1997-12-21', 1, 'OAK', 'W 20-9', 243, 2, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20.42),
(468, 30, 4, '1999-12-26', 1, 'TEN', 'L 14-41', 95, 0, 1, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.2),
(469, 30, 5, '1996-10-13', 0, 'NYJ', 'W 21-17', 248, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18.22),
(470, 30, 6, '1998-10-12', 0, 'MIA', 'W 28-21', 213, 2, 1, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.72),
(471, 30, 7, '1998-11-22', 1, 'PIT', 'L 15-30', 212, 1, 3, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10.38),
(472, 30, 8, '2002-12-15', 1, 'CIN', 'W 29-15', 223, 3, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.62),
(473, 30, 9, '2000-12-10', 0, 'AZ', 'W 44-10', 182, 2, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18.28),
(474, 30, 10, '1997-09-28', 1, 'WAS', 'L 12-24', 153, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.52),
(475, 30, 11, '1998-12-06', 0, 'DET', 'W 37-22', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
(476, 30, 12, '2001-09-30', 0, 'CLE', 'L 14-23', 34, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.36),
(477, 30, 13, '2000-10-29', 1, 'DAL', 'W 23-17', 231, 3, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25.34),
(478, 30, 14, '2001-09-09', 0, 'PIT', 'W 21-3', 198, 3, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20.62),
(479, 30, 15, '2003-09-07', 1, 'CAR', 'L 23-24', 272, 2, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18.68),
(480, 30, 16, '1996-12-15', 0, 'SEA', 'W 20-13', 231, 2, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20.64),
(481, 31, 1, '2004-11-28', 1, 'NE', 'L 3-24', 93, 0, 1, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.72),
(482, 31, 2, '2004-10-04', 0, 'KC', 'L 24-27', 154, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10.46),
(483, 31, 3, '2005-12-19', 0, 'GB', 'W 48-3', 253, 3, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23.02),
(484, 31, 4, '2004-11-21', 0, 'DAL', 'W 30-10', 232, 2, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18.18),
(485, 31, 5, '2004-09-26', 1, 'CIN', 'W 23-9', 126, 1, 0, 24, 1, 6, 0, 0, 0, 0, 0, 0, 0, 23.44),
(486, 31, 6, '2005-11-13', 1, 'JAX', 'L 3-30', 142, 0, 3, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.58),
(487, 31, 7, '2003-09-28', 0, 'KC', 'L 10-17', 140, 0, 3, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.1),
(488, 31, 8, '2007-12-03', 0, 'NE', 'L 24-27', 210, 2, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15.8),
(489, 31, 9, '2004-12-12', 0, 'NYG', 'W 37-14', 219, 4, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26.66),
(490, 31, 10, '2007-09-16', 0, 'NYJ', 'W 20-13', 185, 2, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16.1),
(491, 31, 11, '2004-10-10', 1, 'WAS', 'W 17-10', 81, 0, 3, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.36),
(492, 31, 12, '2003-10-19', 1, 'CIN', 'L 26-34', 302, 2, 1, 8, 0, 0, 0, 0, 0, 0, 3, 0, 0, 22.88),
(493, 31, 13, '2006-01-01', 1, 'CLE', 'L 16-20', 151, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.44),
(494, 31, 14, '2005-12-25', 0, 'MIN', 'W 30-23', 289, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22.66),
(495, 31, 15, '2004-11-14', 1, 'NYJ', 'W 20-17', 213, 2, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17.02),
(496, 31, 16, '2003-09-14', 0, 'CLE', 'W 33-13', 78, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.42),
(497, 32, 1, '1990-11-26', 0, 'BUF', 'W 27-24', 300, 2, 0, 4, 0, 0, 0, 0, 0, 0, 3, 0, 0, 23.4),
(498, 32, 2, '1984-09-30', 0, 'NO', 'L 10-27', 36, 0, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.74),
(499, 32, 3, '1990-12-16', 1, 'KC', 'W 27-10', 527, 3, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 36.28),
(500, 32, 4, '1986-11-30', 1, 'CLE', 'L 10-13', 68, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.88),
(501, 32, 5, '1990-11-18', 1, 'CLE', 'W 35-23', 322, 5, 0, 15, 0, 0, 0, 0, 0, 0, 3, 0, 0, 37.38),
(502, 32, 6, '1984-11-18', 0, 'NYJ', 'W 31-20', 207, 3, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20.78),
(503, 32, 7, '1987-11-15', 1, 'PIT', 'W 23-3', 239, 2, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18.16),
(504, 32, 8, '1988-10-16', 1, 'PIT', 'W 34-14', 174, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14.96),
(505, 32, 9, '1990-10-14', 0, 'CIN', 'W 48-17', 369, 5, 1, 19, 0, 0, 0, 0, 0, 0, 3, 0, 0, 38.66),
(506, 32, 10, '1993-11-14', 1, 'CIN', 'W 38-3', 225, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25),
(507, 32, 11, '1984-11-25', 1, 'CLE', 'L 10-27', 84, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.76),
(508, 32, 12, '1986-10-26', 0, 'OAK', 'L 17-28', 304, 0, 4, 9, 0, 0, 0, 0, 0, 0, 3, 0, 0, 12.06),
(509, 32, 13, '1989-12-03', 1, 'PIT', 'W 23-16', 171, 2, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16.94),
(510, 32, 14, '1985-11-10', 1, 'BUF', 'L 0-20', 22, 0, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.22),
(511, 32, 15, '1989-12-17', 1, 'CIN', 'L 7-61', 96, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.84),
(512, 32, 16, '1989-10-01', 0, 'MIA', 'W 39-7', 254, 2, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18.76),
(513, 33, 1, '1979-11-04', 0, 'MIN', 'W 37-7', 0, 0, 0, 164, 1, 3, 33, 1, 0, 0, 0, 3, 0, 37.7),
(514, 33, 2, '1984-12-16', 1, 'WAS', 'L 27-29', 0, 0, 0, 24, 0, 12, 124, 0, 0, 0, 0, 0, 3, 29.8),
(515, 33, 3, '1983-10-30', 0, 'MIN', 'W 41-31', 0, 0, 0, 136, 1, 3, 23, 0, 0, 0, 0, 3, 0, 27.9),
(516, 33, 4, '1979-09-02', 0, 'DAL', 'L 21-22', 0, 0, 0, 193, 1, 0, 0, 0, 0, 0, 0, 3, 0, 28.3),
(517, 33, 5, '1979-12-09', 0, 'NYG', 'W 29-20', 0, 0, 0, 140, 2, 3, 28, 0, 0, 0, 0, 3, 0, 34.8),
(518, 33, 6, '1983-09-25', 1, 'PHI', 'W 14-11', 0, 0, 0, 133, 0, 2, 13, 0, 0, 0, 0, 3, 0, 19.6),
(519, 33, 7, '1985-11-04', 0, 'DAL', 'W 21-10', 0, 0, 0, -10, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0.4),
(520, 33, 8, '1980-09-28', 0, 'PHI', 'W 24-14', 0, 0, 0, 151, 2, 1, 6, 0, 0, 0, 0, 3, 0, 31.7),
(521, 33, 9, '1981-11-15', 0, 'BUF', 'W 24-0', 0, 0, 0, 177, 2, 3, 9, 0, 0, 0, 0, 3, 0, 36.6),
(522, 33, 10, '1980-11-30', 1, 'NYG', 'W 23-7', 0, 0, 0, 168, 2, 0, 0, 0, 0, 0, 0, 3, 0, 31.8),
(523, 33, 11, '1983-09-11', 0, 'DAL', 'L 17-34', 0, 0, 0, 25, 0, 3, 30, 0, 0, 0, 0, 0, 0, 8.5),
(524, 33, 12, '1983-12-18', 0, 'PHI', 'W 31-7', 0, 0, 0, 156, 1, 2, 8, 0, 0, 0, 0, 3, 0, 27.4),
(525, 33, 13, '1984-12-02', 1, 'NE', 'W 33-10', 0, 0, 0, 136, 1, 3, 35, 0, 0, 0, 0, 3, 0, 29.1),
(526, 33, 14, '1982-09-19', 0, 'DAL', 'L 7-24', 0, 0, 0, 30, 0, 4, 26, 0, 0, 0, 0, 0, 0, 9.6),
(527, 33, 15, '1983-01-02', 1, 'WAS', 'L 0-28', 0, 0, 0, 31, 0, 1, 6, 0, 0, 0, 0, 0, 0, 4.7),
(528, 33, 16, '1986-09-07', 0, 'LAR', 'L 10-16', 0, 0, 0, 31, 1, 3, 28, 0, 0, 0, 0, 0, 0, 14.9);
INSERT INTO `legends_player_data` (`rowID`, `playerID`, `gameID`, `game_date`, `is_away`, `opp`, `game_result`, `passYDS`, `passTD`, `passINT`, `rushYDS`, `rushTD`, `rec`, `recYDS`, `recTD`, `krtd`, `prtd`, `passBonus`, `rushBonus`, `recBonus`, `fpts`) VALUES
(529, 34, 1, '2011-11-06', 0, 'LAR', 'W 19-13', 0, 0, 0, 20, 0, 2, 13, 0, 0, 0, 0, 0, 0, 5.3),
(530, 34, 2, '2009-12-06', 0, 'MIN', 'W 30-17', 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.8),
(531, 34, 3, '2010-09-26', 0, 'OAK', 'W 24-23', 0, 0, 0, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.5),
(532, 34, 4, '2011-10-02', 0, 'NYG', 'L 27-31', 0, 0, 0, 138, 3, 0, 0, 0, 0, 0, 0, 3, 0, 34.8),
(533, 34, 5, '2011-09-11', 0, 'CAR', 'W 28-21', 0, 0, 0, 90, 1, 4, 12, 0, 0, 0, 0, 0, 0, 20.2),
(534, 34, 6, '2011-11-27', 1, 'LAR', 'W 23-20', 0, 0, 0, 228, 1, 0, 0, 0, 0, 0, 0, 3, 0, 31.8),
(535, 34, 7, '2012-12-02', 1, 'NYJ', 'L 6-7', 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.2),
(536, 34, 8, '2009-11-22', 1, 'LAR', 'W 21-13', 0, 0, 0, 74, 1, 2, 11, 0, 0, 0, 0, 0, 0, 16.5),
(537, 34, 9, '2009-12-14', 1, 'SF', 'L 9-24', 0, 0, 0, 79, 1, 1, 24, 0, 0, 0, 0, 0, 0, 17.3),
(538, 34, 10, '2011-10-30', 1, 'BAL', 'L 27-30', 0, 0, 0, 83, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14.3),
(539, 34, 11, '2009-10-18', 1, 'SEA', 'W 27-3', 0, 0, 0, 29, 0, 1, 7, 0, 0, 0, 0, 0, 0, 4.6),
(540, 34, 12, '2010-10-10', 0, 'NO', 'W 30-20', 0, 0, 0, 35, 0, 1, 5, 0, 0, 0, 0, 0, 0, 5),
(541, 34, 13, '2009-11-15', 0, 'SEA', 'W 31-20', 0, 0, 0, 85, 2, 2, 32, 0, 0, 0, 0, 0, 0, 25.7),
(542, 34, 14, '2011-12-11', 0, 'SF', 'W 21-19', 0, 0, 0, 27, 0, 1, 3, 0, 0, 0, 0, 0, 0, 4),
(543, 34, 15, '2011-09-18', 1, 'WAS', 'L 21-22', 0, 0, 0, 93, 1, 0, 0, 0, 0, 0, 0, 0, 0, 15.3),
(544, 34, 16, '2009-12-20', 1, 'DET', 'W 31-24', 0, 0, 0, 110, 1, 1, 13, 0, 0, 0, 0, 3, 0, 22.3),
(545, 35, 1, '1978-11-19', 0, 'ATL', 'W 13-7', 0, 0, 0, 34, 1, 2, 40, 0, 0, 0, 0, 0, 0, 15.4),
(546, 35, 2, '1986-09-14', 0, 'PHI', 'W 13-10', 0, 0, 1, 177, 1, 1, -2, 0, 0, 0, 0, 3, 0, 26.5),
(547, 35, 3, '1982-09-12', 1, 'DET', 'L 10-17', 0, 0, 0, 26, 0, 2, 23, 0, 0, 0, 0, 0, 0, 6.9),
(548, 35, 4, '1979-09-09', 0, 'MIN', 'W 26-7', 0, 0, 0, 182, 2, 3, 14, 0, 0, 0, 0, 3, 0, 37.6),
(549, 35, 5, '1977-11-13', 0, 'KC', 'W 28-27', 0, 0, 0, 192, 3, 1, 29, 0, 0, 0, 0, 3, 0, 44.1),
(550, 35, 6, '1977-10-30', 1, 'GB', 'W 26-0', 0, 0, 0, 205, 2, 1, 5, 0, 0, 0, 0, 3, 0, 37),
(551, 35, 7, '1980-09-14', 0, 'NO', 'W 22-3', 0, 0, 0, 183, 1, 3, 26, 0, 0, 0, 0, 3, 0, 32.9),
(552, 35, 8, '1980-11-03', 1, 'CLE', 'L 21-27', 0, 0, 0, 30, 0, 5, 31, 0, 0, 0, 0, 0, 0, 11.1),
(553, 35, 9, '1976-12-05', 1, 'SEA', 'W 34-7', 0, 0, 0, 183, 0, 2, 30, 0, 0, 0, 0, 3, 0, 26.3),
(554, 35, 10, '1984-09-09', 0, 'DEN', 'W 27-0', 0, 0, 0, 179, 1, 2, 7, 0, 0, 0, 0, 3, 0, 29.6),
(555, 35, 11, '1975-10-12', 1, 'DET', 'L 7-27', 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 4.3),
(556, 35, 12, '1977-11-20', 0, 'MIN', 'W 10-7', 0, 0, 0, 275, 1, 1, 6, 0, 0, 0, 0, 3, 0, 38.1),
(557, 35, 13, '1985-11-03', 1, 'GB', 'W 16-10', 0, 0, 0, 192, 1, 3, 14, 0, 0, 0, 0, 3, 0, 32.6),
(558, 35, 14, '1987-09-20', 0, 'TB', 'W 20-3', 0, 0, 0, 24, 1, 2, 2, 1, 0, 0, 0, 0, 0, 16.6),
(559, 35, 15, '1981-11-26', 1, 'DAL', 'L 9-10', 0, 0, 0, 179, 0, 2, 4, 0, 0, 0, 0, 3, 0, 23.3),
(560, 35, 16, '1978-10-22', 1, 'TB', 'L 19-33', 0, 0, 0, 34, 0, 5, 74, 0, 0, 0, 0, 0, 0, 15.8),
(561, 36, 1, '1968-10-27', 0, 'MIN', 'W 26-24', 0, 0, 0, 143, 0, 4, 33, 0, 0, 0, 0, 3, 0, 24.6),
(562, 36, 2, '1965-12-05', 1, 'BAL', 'W 13-0', 0, 0, 0, 118, 1, 1, 10, 0, 0, 0, 0, 3, 0, 22.8),
(563, 36, 3, '1969-11-30', 0, 'CLE', 'L 24-28', 0, 0, 0, 126, 1, 1, 21, 0, 0, 0, 0, 3, 0, 24.7),
(564, 36, 4, '1965-10-10', 0, 'LAR', 'W 31-6', 26, 1, 0, 9, 0, 3, 95, 1, 0, 0, 0, 0, 0, 24.44),
(565, 36, 5, '1966-11-06', 0, 'DET', 'T 10-10', 0, 0, 0, 124, 1, 3, 24, 0, 0, 0, 0, 3, 0, 26.8),
(566, 36, 6, '1967-10-15', 0, 'DET', 'W 14-3', 0, 0, 0, 142, 1, 0, 0, 0, 0, 0, 0, 3, 0, 23.2),
(567, 36, 7, '1968-11-03', 1, 'GB', 'W 13-10', 0, 0, 0, 205, 0, 0, 0, 0, 0, 0, 0, 3, 0, 23.5),
(568, 36, 8, '1965-11-07', 0, 'BAL', 'L 21-26', 0, 0, 0, 17, 0, 3, 46, 0, 0, 0, 0, 0, 0, 9.3),
(569, 36, 9, '1967-10-29', 0, 'LAR', 'L 17-28', 0, 0, 0, 13, 0, 2, 6, 0, 0, 0, 0, 0, 0, 3.9),
(570, 36, 10, '1969-10-12', 0, 'MIN', 'L 0-31', 0, 0, 0, 15, 0, 2, 8, 0, 0, 0, 0, 0, 0, 4.3),
(571, 36, 11, '1966-11-27', 0, 'ATL', 'W 23-6', 0, 0, 0, 172, 0, 5, 65, 0, 0, 0, 0, 3, 0, 31.7),
(572, 36, 12, '1966-10-16', 0, 'GB', 'L 0-17', 0, 0, 0, 29, 0, 3, 21, 0, 0, 0, 0, 0, 0, 8),
(573, 36, 13, '1967-12-10', 0, 'MIN', 'T 10-10', 0, 0, 0, 131, 1, 3, 24, 0, 0, 0, 0, 3, 0, 27.5),
(574, 36, 14, '1967-12-17', 1, 'ATL', 'W 23-14', 0, 0, 0, 120, 1, 2, 30, 1, 0, 0, 0, 3, 0, 32),
(575, 36, 15, '1967-12-03', 1, 'SF', 'W 28-14', 0, 0, 0, 30, 1, 0, 0, 0, 1, 1, 0, 0, 0, 21),
(576, 36, 16, '1966-12-18', 0, 'MIN', 'W 41-28', 0, 0, 0, 197, 1, 1, 26, 0, 1, 0, 0, 3, 0, 38.3),
(577, 37, 1, '1995-09-03', 0, 'LAR', 'L 14-17', 0, 0, 0, 21, 0, 2, 2, 0, 0, 0, 0, 0, 0, 4.3),
(578, 37, 2, '1994-12-24', 1, 'TB', 'W 34-19', 0, 0, 0, 100, 1, 6, 35, 0, 0, 0, 0, 3, 0, 28.5),
(579, 37, 3, '1996-09-29', 1, 'SEA', 'W 31-10', 0, 0, 0, 94, 0, 2, 9, 0, 0, 0, 0, 0, 0, 12.3),
(580, 37, 4, '1996-11-24', 1, 'LAR', 'W 24-9', 0, 0, 0, 31, 0, 4, 28, 0, 0, 0, 0, 0, 0, 9.9),
(581, 37, 5, '1996-09-09', 0, 'PHI', 'W 39-13', 0, 0, 0, 93, 0, 5, 49, 1, 0, 0, 0, 0, 0, 25.2),
(582, 37, 6, '1994-12-11', 0, 'CHI', 'W 40-3', 0, 0, 0, 106, 1, 1, 5, 0, 0, 0, 0, 3, 0, 21.1),
(583, 37, 7, '1995-11-12', 0, 'CHI', 'W 35-28', 0, 0, 0, 18, 0, 2, 33, 2, 0, 0, 0, 0, 0, 19.1),
(584, 37, 8, '1994-10-31', 1, 'CHI', 'W 33-6', 0, 0, 0, 105, 2, 1, 13, 1, 0, 0, 0, 3, 0, 33.8),
(585, 37, 9, '1994-10-09', 0, 'LAR', 'W 24-17', 0, 0, 0, 28, 1, 6, 39, 0, 0, 0, 0, 0, 0, 18.7),
(586, 37, 10, '1995-10-29', 1, 'DET', 'L 16-24', 0, 0, 0, 121, 0, 6, 50, 0, 0, 0, 0, 3, 0, 26.1),
(587, 37, 11, '1996-10-27', 0, 'TB', 'W 13-7', 0, 0, 0, 93, 0, 2, 7, 0, 0, 0, 0, 0, 0, 12),
(588, 37, 12, '1992-11-22', 1, 'CHI', 'W 17-3', 0, 0, 0, 107, 0, 3, 24, 0, 0, 0, 0, 3, 0, 19.1),
(589, 37, 13, '1996-12-22', 0, 'MIN', 'W 38-10', 0, 0, 0, 109, 1, 0, 0, 0, 0, 0, 0, 3, 0, 19.9),
(590, 37, 14, '1994-12-04', 1, 'DET', 'L 31-34', 0, 0, 0, 25, 0, 3, 27, 0, 0, 0, 0, 0, 0, 8.2),
(591, 37, 15, '1995-09-11', 1, 'CHI', 'W 27-24', 0, 0, 0, 96, 0, 2, 11, 0, 0, 0, 0, 0, 0, 12.7),
(592, 37, 16, '1996-10-06', 1, 'CHI', 'W 37-6', 0, 0, 0, 32, 0, 2, 15, 0, 0, 0, 0, 0, 0, 6.7),
(593, 38, 1, '2003-09-14', 0, 'DET', 'W 31-6', 0, 0, 0, 160, 1, 0, 0, 0, 0, 0, 0, 3, 0, 25),
(594, 38, 2, '2001-12-30', 0, 'MIN', 'W 24-13', 0, 0, 0, 31, 1, 3, 17, 0, 0, 0, 0, 0, 0, 13.8),
(595, 38, 3, '2003-11-10', 0, 'PHI', 'L 14-17', 0, 0, 0, 192, 1, 3, 32, 1, 0, 0, 0, 3, 0, 40.4),
(596, 38, 4, '2001-09-09', 0, 'DET', 'W 28-6', 0, 0, 0, 157, 2, 3, 20, 0, 0, 0, 0, 3, 0, 35.7),
(597, 38, 5, '2001-11-04', 0, 'TB', 'W 21-20', 0, 0, 0, 169, 1, 6, 49, 0, 0, 0, 0, 3, 0, 36.8),
(598, 38, 6, '2001-12-16', 1, 'TEN', 'L 20-26', 0, 0, 0, 11, 0, 3, 22, 0, 0, 0, 0, 0, 0, 6.3),
(599, 38, 7, '2004-10-11', 0, 'TEN', 'L 27-48', 0, 0, 0, 33, 0, 2, 5, 0, 0, 0, 0, 0, 0, 5.8),
(600, 38, 8, '2003-11-23', 0, 'SF', 'W 20-10', 0, 0, 0, 154, 0, 0, 0, 0, 0, 0, 0, 3, 0, 18.4),
(601, 38, 9, '2000-12-17', 1, 'MIN', 'W 33-28', 0, 0, 0, 161, 0, 4, 31, 1, 0, 0, 0, 3, 0, 32.2),
(602, 38, 10, '2003-10-19', 1, 'LAR', 'L 24-34', 0, 0, 0, 35, 0, 6, 62, 1, 0, 0, 0, 0, 0, 21.7),
(603, 38, 11, '2003-09-29', 1, 'CHI', 'W 38-23', 0, 0, 0, 176, 2, 4, 4, 0, 0, 0, 0, 3, 0, 37),
(604, 38, 12, '2002-09-08', 0, 'ATL', 'W 37-34', 0, 0, 0, 155, 0, 6, 42, 0, 0, 0, 0, 3, 0, 28.7),
(605, 38, 13, '2004-10-24', 0, 'DAL', 'W 41-20', 0, 0, 0, 163, 2, 3, 4, 0, 0, 0, 0, 3, 0, 34.7),
(606, 38, 14, '2006-11-19', 0, 'NE', 'L 0-35', 0, 0, 0, 28, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3.8),
(607, 38, 15, '2003-12-28', 0, 'DEN', 'W 31-3', 0, 0, 0, 218, 2, 1, 9, 0, 0, 0, 0, 3, 0, 38.7),
(608, 38, 16, '2001-12-03', 1, 'JAX', 'W 28-21', 0, 0, 0, 31, 0, 5, 74, 1, 0, 0, 0, 0, 0, 21.5),
(609, 39, 1, '2001-09-10', 1, 'DEN', 'L 20-31', 0, 0, 0, 28, 0, 3, 53, 0, 0, 0, 0, 0, 0, 11.1),
(610, 39, 2, '2006-10-15', 1, 'ATL', 'W 27-14', 0, 0, 0, 185, 0, 3, 42, 0, 0, 0, 0, 3, 0, 28.7),
(611, 39, 3, '2002-12-28', 0, 'PHI', 'W 10-7', 0, 0, 0, 203, 0, 8, 73, 0, 0, 0, 0, 3, 0, 38.6),
(612, 39, 4, '2002-09-05', 0, 'SF', 'L 13-16', 0, 0, 0, 29, 1, 5, 37, 0, 0, 0, 0, 0, 0, 17.6),
(613, 39, 5, '1997-09-07', 1, 'JAX', 'L 13-40', 0, 0, 0, 17, 1, 3, 43, 0, 0, 0, 0, 0, 0, 15),
(614, 39, 6, '2004-10-03', 1, 'GB', 'W 14-7', 0, 0, 0, 182, 1, 4, 14, 0, 0, 0, 0, 3, 0, 32.6),
(615, 39, 7, '2000-12-10', 0, 'PIT', 'W 30-10', 0, 0, 0, 22, 1, 6, 75, 0, 0, 0, 0, 0, 0, 21.7),
(616, 39, 8, '2005-12-31', 1, 'OAK', 'W 30-21', 0, 0, 0, 203, 1, 6, 60, 0, 0, 0, 0, 3, 0, 41.3),
(617, 39, 9, '2005-11-27', 1, 'SEA', 'L 21-24', 0, 0, 0, 151, 0, 5, 27, 0, 0, 0, 0, 3, 0, 25.8),
(618, 39, 10, '2006-11-20', 1, 'JAX', 'L 10-26', 0, 0, 0, 27, 0, 1, 13, 0, 0, 0, 0, 0, 0, 5),
(619, 39, 11, '2002-11-24', 1, 'HOU', 'L 14-16', 0, 0, 0, 147, 1, 4, 20, 0, 0, 0, 0, 3, 0, 29.7),
(620, 39, 12, '2003-09-07', 0, 'LAR', 'W 23-13', 0, 0, 0, 146, 0, 2, 19, 0, 0, 0, 0, 3, 0, 21.5),
(621, 39, 13, '2005-12-17', 0, 'KC', 'W 27-17', 0, 0, 0, 220, 2, 5, 29, 0, 0, 0, 0, 3, 0, 44.9),
(622, 39, 14, '2006-12-30', 1, 'WAS', 'W 34-28', 0, 0, 0, 234, 3, 3, 24, 0, 0, 0, 0, 3, 0, 49.8),
(623, 39, 15, '2005-10-30', 0, 'WAS', 'W 36-0', 0, 0, 0, 206, 1, 1, 5, 0, 0, 0, 0, 3, 0, 31.1),
(624, 39, 16, '2003-11-30', 0, 'BUF', 'L 7-24', 0, 0, 0, 20, 0, 1, 4, 0, 0, 0, 0, 0, 0, 3.4),
(625, 40, 1, '1992-11-26', 1, 'DAL', 'L 3-30', 0, 0, 0, 33, 0, 2, 13, 0, 0, 0, 0, 0, 0, 6.6),
(626, 40, 2, '1994-10-10', 0, 'MIN', 'L 10-27', 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.7),
(627, 40, 3, '1994-11-07', 1, 'DAL', 'L 10-38', 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.4),
(628, 40, 4, '1993-09-12', 0, 'TB', 'W 23-7', 0, 0, 0, 134, 1, 2, 12, 0, 0, 0, 0, 3, 0, 25.6),
(629, 40, 5, '1991-10-06', 0, 'AZ', 'W 20-9', 0, 0, 0, 137, 1, 4, 45, 0, 0, 0, 0, 3, 0, 31.2),
(630, 40, 6, '1995-09-24', 0, 'NO', 'W 45-29', 0, 0, 0, 149, 4, 2, 15, 0, 0, 0, 0, 3, 0, 45.4),
(631, 40, 7, '1994-10-30', 0, 'DET', 'L 25-28', 0, 0, 0, 138, 1, 4, 13, 0, 0, 0, 0, 3, 0, 28.1),
(632, 40, 8, '1992-11-01', 1, 'WAS', 'W 24-7', 0, 0, 0, 138, 0, 3, 13, 0, 0, 0, 0, 3, 0, 21.1),
(633, 40, 9, '1993-12-12', 0, 'IND', 'W 20-6', 0, 0, 0, 173, 1, 0, 0, 0, 0, 0, 0, 3, 0, 26.3),
(634, 40, 10, '1995-12-17', 1, 'DAL', 'L 20-21', 0, 0, 0, 187, 0, 3, 28, 0, 0, 0, 0, 3, 0, 27.5),
(635, 40, 11, '1992-10-11', 0, 'AZ', 'W 31-21', 0, 0, 0, 167, 1, 1, 31, 0, 0, 0, 0, 3, 0, 29.8),
(636, 40, 12, '1991-12-01', 1, 'CIN', 'L 24-27', 0, 0, 0, 33, 0, 3, 16, 0, 0, 0, 0, 0, 0, 7.9),
(637, 40, 13, '1993-11-28', 0, 'AZ', 'W 19-17', 0, 0, 0, 18, 0, 2, 63, 0, 0, 0, 0, 0, 0, 10.1),
(638, 40, 14, '1993-09-19', 0, 'LAR', 'W 20-10', 0, 0, 0, 134, 1, 3, 40, 0, 0, 0, 0, 3, 0, 29.4),
(639, 40, 15, '1991-12-21', 0, 'HOU', 'W 24-20', 0, 0, 0, 140, 1, 3, 25, 0, 0, 0, 0, 3, 0, 28.5),
(640, 40, 16, '1995-10-01', 1, 'SF', 'L 6-20', 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.3),
(641, 41, 1, '1994-09-19', 1, 'DAL', 'W 20-17', 0, 0, 0, 194, 0, 0, 0, 0, 0, 0, 0, 3, 0, 22.4),
(642, 41, 2, '1994-09-11', 1, 'MIN', 'L 3-10', 0, 0, 0, 16, 0, 4, 22, 0, 0, 0, 0, 0, 0, 7.8),
(643, 41, 3, '1993-11-07', 0, 'TB', 'W 23-0', 0, 0, 0, 187, 0, 2, 2, 0, 0, 0, 0, 3, 0, 23.9),
(644, 41, 4, '1997-12-21', 0, 'NYJ', 'W 13-10', 0, 0, 0, 184, 1, 3, 10, 0, 0, 0, 0, 3, 0, 31.4),
(645, 41, 5, '1994-12-04', 0, 'GB', 'W 34-31', 0, 0, 0, 188, 1, 3, 17, 0, 0, 0, 0, 3, 0, 32.5),
(646, 41, 6, '1989-10-29', 1, 'GB', 'L 20-23', 0, 0, 0, 184, 0, 0, 0, 0, 0, 0, 0, 3, 0, 21.4),
(647, 41, 7, '1997-10-12', 1, 'TB', 'W 27-9', 0, 0, 0, 215, 2, 1, 7, 1, 0, 0, 0, 3, 0, 44.2),
(648, 41, 8, '1997-09-07', 0, 'TB', 'L 17-24', 0, 0, 0, 20, 0, 8, 102, 1, 0, 0, 0, 0, 3, 29.2),
(649, 41, 9, '1998-10-04', 1, 'CHI', 'L 27-31', 0, 0, 0, 28, 0, 2, 17, 0, 0, 0, 0, 0, 0, 6.5),
(650, 41, 10, '1998-09-13', 0, 'CIN', 'L 28-34', 0, 0, 0, 185, 3, 1, 44, 0, 0, 0, 0, 3, 0, 44.9),
(651, 41, 11, '1997-11-23', 0, 'IND', 'W 32-10', 0, 0, 0, 216, 2, 2, 10, 0, 0, 0, 0, 3, 0, 39.6),
(652, 41, 12, '1994-11-13', 0, 'TB', 'W 14-9', 0, 0, 0, 237, 0, 1, 16, 0, 0, 0, 0, 3, 0, 29.3),
(653, 41, 13, '1991-11-24', 1, 'MIN', 'W 34-14', 0, 0, 0, 220, 4, 4, 31, 0, 0, 0, 0, 3, 0, 56.1),
(654, 41, 14, '1995-09-25', 0, 'SF', 'W 27-24', 0, 0, 0, 24, 0, 3, 18, 0, 0, 0, 0, 0, 0, 7.2),
(655, 41, 15, '1998-12-14', 1, 'SF', 'L 13-35', 0, 0, 0, 28, 0, 1, -3, 0, 0, 0, 0, 0, 0, 3.5),
(656, 41, 16, '1990-10-28', 1, 'NO', 'W 27-10', 0, 0, 0, 10, 1, 5, 72, 0, 0, 0, 0, 0, 0, 19.2),
(657, 42, 1, '1980-10-26', 1, 'KC', 'L 17-20', 0, 0, 0, 155, 2, 2, 29, 0, 0, 0, 0, 3, 0, 35.4),
(658, 42, 2, '1980-10-05', 1, 'ATL', 'L 28-43', 0, 0, 0, 21, 0, 2, -5, 0, 0, 0, 0, 0, 0, 3.6),
(659, 42, 3, '1981-10-11', 1, 'DEN', 'L 21-27', 0, 0, 0, 185, 2, 0, 0, 0, 0, 0, 0, 3, 0, 33.5),
(660, 42, 4, '1980-11-02', 0, 'SF', 'W 17-13', 0, 0, 0, 37, 0, 11, 96, 1, 0, 0, 0, 0, 0, 30.3),
(661, 42, 5, '1982-12-19', 0, 'MIN', 'L 31-34', 0, 0, 0, 22, 1, 2, 0, 0, 0, 0, 0, 0, 0, 10.2),
(662, 42, 6, '1983-11-20', 1, 'GB', 'W 23-20', 0, 0, 0, 189, 0, 5, 47, 0, 0, 0, 0, 3, 0, 31.6),
(663, 42, 7, '1983-09-04', 1, 'TB', 'W 11-0', 0, 0, 0, 37, 0, 3, 31, 0, 0, 0, 0, 0, 0, 9.8),
(664, 42, 8, '1980-09-28', 0, 'MIN', 'W 27-7', 0, 0, 0, 157, 0, 3, 26, 0, 0, 0, 0, 3, 0, 24.3),
(665, 42, 9, '1982-09-12', 0, 'CHI', 'W 17-10', 0, 0, 0, 33, 1, 3, 25, 0, 0, 0, 0, 0, 0, 14.8),
(666, 42, 10, '1980-09-07', 1, 'LAR', 'W 41-20', 0, 0, 0, 153, 3, 2, 64, 0, 0, 0, 0, 3, 0, 44.7),
(667, 42, 11, '1980-09-14', 1, 'GB', 'W 29-7', 0, 0, 0, 134, 1, 2, 94, 1, 0, 0, 0, 3, 0, 39.8),
(668, 42, 12, '1984-09-09', 1, 'ATL', 'W 27-24', 0, 0, 0, 140, 1, 1, 5, 0, 0, 0, 0, 3, 0, 24.5),
(669, 42, 13, '1983-12-05', 0, 'MIN', 'W 13-2', 0, 0, 0, 137, 0, 0, 0, 0, 0, 0, 0, 3, 0, 16.7),
(670, 42, 14, '1981-09-27', 0, 'OAK', 'W 16-0', 0, 0, 0, 133, 1, 1, 7, 0, 0, 0, 0, 3, 0, 24),
(671, 42, 15, '1980-12-14', 0, 'TB', 'W 27-14', 0, 0, 0, 16, 1, 3, 13, 0, 0, 0, 0, 0, 0, 11.9),
(672, 42, 16, '1981-11-08', 1, 'WAS', 'L 31-33', 0, 0, 0, 159, 2, 2, 34, 0, 0, 0, 0, 3, 0, 36.3),
(673, 43, 1, '2008-10-05', 1, 'PHI', 'W 23-17', 0, 0, 0, 145, 1, 2, 13, 0, 0, 0, 0, 3, 0, 26.8),
(674, 43, 2, '2007-11-04', 1, 'NYJ', 'W 23-20', 0, 0, 0, 196, 1, 0, 0, 0, 0, 0, 0, 3, 0, 28.6),
(675, 43, 3, '2008-10-19', 0, 'CLE', 'W 14-11', 0, 0, 0, 175, 1, 1, 8, 0, 0, 0, 0, 3, 0, 28.3),
(676, 43, 4, '2004-12-05', 0, 'NYG', 'W 31-7', 0, 0, 0, 148, 1, 3, 14, 1, 0, 0, 0, 3, 0, 34.2),
(677, 43, 5, '2005-11-13', 1, 'TB', 'L 35-36', 0, 0, 0, 144, 1, 2, 9, 0, 0, 0, 0, 3, 0, 26.3),
(678, 43, 6, '2004-11-07', 1, 'DET', 'W 17-10', 15, 1, 0, 147, 0, 1, 11, 0, 0, 0, 0, 3, 0, 24.4),
(679, 43, 7, '2004-10-17', 1, 'CHI', 'W 13-10', 0, 0, 0, 171, 0, 1, 11, 0, 0, 0, 0, 3, 0, 22.2),
(680, 43, 8, '2004-09-12', 0, 'TB', 'W 16-10', 0, 0, 0, 148, 1, 4, 15, 0, 0, 0, 0, 3, 0, 29.3),
(681, 43, 9, '2008-11-23', 1, 'SEA', 'W 20-17', 0, 0, 0, 143, 0, 2, 16, 0, 0, 0, 0, 3, 0, 20.9),
(682, 43, 10, '2007-11-11', 0, 'PHI', 'L 25-33', 0, 0, 0, 137, 0, 4, 20, 0, 0, 0, 0, 3, 0, 22.7),
(683, 43, 11, '2007-10-28', 1, 'NE', 'L 7-52', 0, 0, 0, 27, 0, 5, 54, 0, 0, 0, 0, 0, 0, 13.1),
(684, 43, 12, '2008-11-30', 0, 'NYG', 'L 7-23', 0, 0, 0, 22, 0, 1, 15, 0, 0, 0, 0, 0, 0, 4.7),
(685, 43, 13, '2008-12-07', 1, 'BAL', 'L 10-24', 0, 0, 0, 32, 0, 3, 14, 0, 0, 0, 0, 0, 0, 7.6),
(686, 43, 14, '2010-09-19', 0, 'HOU', 'L 27-30', 0, 0, 0, 33, 2, 0, 0, 0, 0, 0, 0, 0, 0, 15.3),
(687, 43, 15, '2004-12-26', 1, 'DAL', 'L 10-13', 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.2),
(688, 43, 16, '2007-11-18', 1, 'DAL', 'L 23-28', 0, 0, 0, 36, 0, 2, 9, 0, 0, 0, 0, 0, 0, 6.5),
(689, 44, 1, '1978-09-24', 0, 'NYJ', 'W 23-3', 0, 0, 0, 114, 0, 3, 16, 0, 0, 0, 0, 3, 0, 19),
(690, 44, 2, '1981-11-08', 0, 'DET', 'W 33-31', 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.8),
(691, 44, 3, '1985-11-18', 0, 'NYG', 'W 23-21', 0, 0, 0, 7, 1, 1, 1, 0, 0, 0, 0, 0, 0, 7.8),
(692, 44, 4, '1979-12-16', 1, 'DAL', 'L 34-35', 0, 0, 0, 151, 2, 0, 0, 0, 0, 0, 0, 3, 0, 30.1),
(693, 44, 5, '1984-09-23', 1, 'NE', 'W 26-10', 0, 0, 0, 140, 1, 0, 0, 0, 0, 0, 0, 3, 0, 23),
(694, 44, 6, '1979-10-21', 0, 'PHI', 'W 17-7', 0, 0, 0, 120, 0, 1, 2, 0, 0, 0, 0, 3, 0, 16.2),
(695, 44, 7, '1976-10-17', 0, 'DET', 'W 20-7', 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.5),
(696, 44, 8, '1981-10-11', 1, 'CHI', 'W 24-7', 0, 0, 0, 126, 2, 0, 0, 0, 0, 0, 0, 3, 0, 27.6),
(697, 44, 9, '1976-10-10', 0, 'KC', 'L 30-33', 0, 0, 0, 24, 1, 3, 28, 0, 0, 0, 0, 0, 0, 14.2),
(698, 44, 10, '1979-10-07', 1, 'PHI', 'L 17-28', 0, 0, 0, 115, 1, 4, 9, 1, 0, 0, 0, 3, 0, 31.4),
(699, 44, 11, '1982-09-19', 1, 'TB', 'W 21-13', 0, 0, 0, 136, 0, 2, 15, 0, 0, 0, 0, 3, 0, 20.1),
(700, 44, 12, '1983-10-09', 1, 'LAR', 'W 38-14', 0, 0, 0, 115, 3, 0, 0, 0, 0, 0, 0, 3, 0, 32.5),
(701, 44, 13, '1984-10-14', 0, 'DAL', 'W 34-14', 0, 0, 0, 165, 0, 0, 0, 0, 0, 0, 0, 3, 0, 19.5),
(702, 44, 14, '1984-09-10', 1, 'SF', 'L 31-37', 0, 0, 0, 12, 2, 1, 0, 0, 0, 0, 0, 0, 0, 14.2),
(703, 44, 15, '1978-11-12', 0, 'NYG', 'W 16-13', 0, 0, 0, 29, 0, 1, 4, 0, 0, 0, 0, 0, 0, 4.3),
(704, 44, 16, '1983-12-17', 0, 'NYG', 'W 31-22', 0, 0, 0, 122, 1, 0, 0, 0, 0, 0, 0, 3, 0, 21.2),
(705, 45, 1, '1995-12-10', 0, 'DAL', 'W 20-17', 0, 0, 0, 112, 1, 6, 36, 0, 0, 0, 0, 3, 0, 29.8),
(706, 45, 2, '1995-09-03', 0, 'TB', 'L 6-21', 0, 0, 0, 37, 0, 5, 34, 0, 0, 0, 0, 0, 0, 12.1),
(707, 45, 3, '1997-11-16', 1, 'BAL', 'T 10-10', 0, 0, 0, 37, 0, 4, 33, 0, 0, 0, 0, 0, 0, 11),
(708, 45, 4, '1995-12-24', 1, 'CHI', 'L 14-20', 0, 0, 0, 13, 0, 3, 12, 0, 0, 0, 0, 0, 0, 5.5),
(709, 45, 5, '1996-09-09', 1, 'GB', 'L 13-39', 0, 0, 0, 38, 1, 1, 1, 0, 0, 0, 0, 0, 0, 10.9),
(710, 45, 6, '1996-09-22', 1, 'ATL', 'W 33-18', 0, 0, 0, 121, 2, 3, 27, 0, 0, 0, 0, 3, 0, 32.8),
(711, 45, 7, '1995-10-08', 0, 'WAS', 'W 37-34', 0, 0, 0, 139, 0, 11, 90, 0, 0, 0, 0, 3, 0, 36.9),
(712, 45, 8, '1996-10-13', 1, 'NYG', 'W 19-10', 0, 0, 0, 110, 0, 2, 8, 0, 0, 0, 0, 3, 0, 16.8),
(713, 45, 9, '1997-09-15', 1, 'DAL', 'L 20-21', 0, 0, 0, 106, 0, 5, 14, 0, 0, 0, 0, 3, 0, 20),
(714, 45, 10, '1995-11-26', 1, 'WAS', 'W 14-7', 0, 0, 0, 124, 2, 4, 14, 0, 0, 0, 0, 3, 0, 32.8),
(715, 45, 11, '1996-11-03', 1, 'DAL', 'W 31-21', 0, 0, 0, 116, 1, 1, 3, 0, 0, 0, 0, 3, 0, 21.9),
(716, 45, 12, '1996-10-27', 0, 'CAR', 'W 20-9', 0, 0, 0, 33, 1, 2, 9, 0, 0, 0, 0, 0, 0, 12.2),
(717, 45, 13, '1996-09-15', 0, 'DET', 'W 24-17', 0, 0, 0, 153, 1, 6, 57, 0, 0, 0, 0, 3, 0, 36),
(718, 45, 14, '1995-10-15', 1, 'NYG', 'W 17-14', 0, 0, 0, 122, 1, 0, 0, 0, 0, 0, 0, 3, 0, 21.2),
(719, 45, 15, '1995-10-29', 0, 'LAR', 'W 20-9', 0, 0, 0, 38, 0, 2, 17, 0, 0, 0, 0, 0, 0, 7.5),
(720, 45, 16, '1996-10-20', 0, 'MIA', 'W 35-28', 0, 0, 0, 173, 1, 3, 23, 0, 0, 0, 0, 3, 0, 31.6),
(721, 46, 1, '2004-10-03', 1, 'CHI', 'W 19-9', 0, 0, 0, 119, 0, 9, 63, 0, 0, 0, 0, 3, 0, 30.2),
(722, 46, 2, '2008-10-05', 0, 'WAS', 'L 17-23', 0, 0, 0, 33, 1, 6, 51, 0, 0, 0, 0, 0, 0, 20.4),
(723, 46, 3, '2006-10-08', 0, 'DAL', 'W 38-24', 0, 0, 0, 33, 1, 5, 53, 0, 0, 0, 0, 0, 0, 19.6),
(724, 46, 4, '2008-12-07', 1, 'NYG', 'W 20-14', 0, 0, 0, 131, 1, 6, 72, 1, 0, 0, 0, 3, 0, 41.3),
(725, 46, 5, '2004-12-05', 0, 'GB', 'W 47-17', 0, 0, 0, 37, 0, 11, 156, 3, 0, 0, 0, 0, 3, 51.3),
(726, 46, 6, '2006-09-24', 1, 'SF', 'W 38-24', 0, 0, 0, 117, 2, 4, 47, 1, 0, 0, 0, 3, 0, 41.4),
(727, 46, 7, '2008-10-26', 0, 'ATL', 'W 27-14', 0, 0, 0, 167, 2, 6, 42, 0, 0, 0, 0, 3, 0, 41.9),
(728, 46, 8, '2006-12-25', 1, 'DAL', 'W 23-7', 0, 0, 0, 122, 0, 2, 6, 0, 0, 0, 0, 3, 0, 17.8),
(729, 46, 9, '2004-09-12', 0, 'NYG', 'W 31-17', 0, 0, 0, 119, 0, 3, 42, 0, 0, 0, 0, 3, 0, 22.1),
(730, 46, 10, '2007-11-18', 0, 'MIA', 'W 17-7', 0, 0, 0, 148, 0, 1, 0, 0, 0, 0, 0, 3, 0, 18.8),
(731, 46, 11, '2005-10-23', 0, 'SD', 'W 20-17', 0, 0, 0, 25, 0, 10, 75, 0, 0, 0, 0, 0, 0, 20),
(732, 46, 12, '2008-11-09', 0, 'NYG', 'L 31-36', 0, 0, 0, 26, 0, 3, 33, 0, 0, 0, 0, 0, 0, 8.9),
(733, 46, 13, '2005-11-27', 0, 'GB', 'W 19-14', 0, 0, 0, 120, 1, 4, 11, 0, 0, 0, 0, 3, 0, 26.1),
(734, 46, 14, '2005-11-06', 1, 'WAS', 'L 10-17', 0, 0, 0, 24, 0, 4, 55, 0, 0, 0, 0, 0, 0, 11.9),
(735, 46, 15, '2007-10-14', 1, 'NYJ', 'W 16-9', 0, 0, 0, 120, 0, 6, 36, 0, 0, 0, 0, 3, 0, 24.6),
(736, 46, 16, '2006-11-26', 1, 'IND', 'L 21-45', 0, 0, 0, 124, 1, 7, 46, 0, 0, 0, 0, 3, 0, 33),
(737, 47, 1, '2002-09-29', 0, 'CLE', 'W 16-13', 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.4),
(738, 47, 2, '2001-09-09', 1, 'JAX', 'L 3-21', 0, 0, 0, 28, 0, 1, 2, 0, 0, 0, 0, 0, 0, 4),
(739, 47, 3, '2001-10-21', 1, 'TB', 'W 17-10', 32, 1, 0, 143, 1, 1, 8, 0, 0, 0, 0, 3, 0, 30.38),
(740, 47, 4, '1999-12-02', 1, 'JAX', 'L 6-20', 0, 0, 0, 23, 0, 1, 14, 0, 0, 0, 0, 0, 0, 4.7),
(741, 47, 5, '1998-12-28', 1, 'JAX', 'L 3-21', 0, 0, 0, 139, 0, 4, 24, 0, 0, 0, 0, 3, 0, 23.3),
(742, 47, 6, '1998-11-01', 0, 'TEN', 'L 31-41', 0, 0, 0, 26, 0, 1, 6, 0, 0, 0, 0, 0, 0, 4.2),
(743, 47, 7, '1999-10-10', 1, 'BUF', 'L 21-24', 0, 0, 0, 24, 1, 2, 10, 0, 0, 0, 0, 0, 0, 11.4),
(744, 47, 8, '1997-10-05', 1, 'BAL', 'W 42-34', 0, 0, 0, 137, 0, 0, 0, 0, 0, 0, 0, 3, 0, 16.7),
(745, 47, 9, '1997-10-12', 0, 'IND', 'W 24-22', 0, 0, 0, 164, 1, 1, 14, 0, 0, 0, 0, 3, 0, 27.8),
(746, 47, 10, '1998-11-15', 1, 'TEN', 'L 14-23', 0, 0, 0, 29, 0, 2, 10, 0, 0, 0, 0, 0, 0, 5.9),
(747, 47, 11, '2001-10-07', 0, 'CIN', 'W 16-7', 0, 0, 0, 153, 0, 1, 7, 0, 0, 0, 0, 3, 0, 20),
(748, 47, 12, '2004-11-07', 0, 'PHI', 'W 27-3', 0, 0, 0, 149, 0, 0, 0, 0, 0, 0, 0, 3, 0, 17.9),
(749, 47, 13, '1997-11-30', 1, 'AZ', 'W 26-20', 0, 0, 0, 142, 3, 2, 19, 0, 0, 0, 0, 3, 0, 39.1),
(750, 47, 14, '2004-12-18', 1, 'NYG', 'W 33-30', 0, 0, 0, 140, 1, 1, 3, 0, 0, 0, 0, 3, 0, 24.3),
(751, 47, 15, '2001-11-11', 1, 'CLE', 'W 15-12', 0, 0, 0, 163, 0, 1, 0, 0, 0, 0, 0, 3, 0, 20.3),
(752, 47, 16, '1998-09-27', 0, 'SEA', 'W 13-10', 0, 0, 0, 138, 0, 2, -4, 0, 0, 0, 0, 3, 0, 18.4),
(753, 48, 1, '1972-10-22', 0, 'NE', 'W 33-3', 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.7),
(754, 48, 2, '1975-11-02', 1, 'CIN', 'W 30-24', 0, 0, 0, 157, 0, 2, 0, 0, 0, 0, 0, 3, 0, 20.7),
(755, 48, 3, '1974-10-28', 0, 'ATL', 'W 24-17', 0, 0, 0, 141, 1, 2, 37, 0, 0, 0, 0, 3, 0, 28.8),
(756, 48, 4, '1974-11-17', 1, 'CLE', 'W 26-16', 0, 0, 0, 156, 0, 0, 0, 0, 0, 0, 0, 3, 0, 18.6),
(757, 48, 5, '1977-12-18', 1, 'SD', 'W 10-9', 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.5),
(758, 48, 6, '1978-12-16', 1, 'DEN', 'W 21-17', 0, 0, 0, 21, 1, 1, 7, 0, 0, 0, 0, 0, 0, 9.8),
(759, 48, 7, '1979-10-07', 1, 'CLE', 'W 51-35', 0, 0, 0, 153, 2, 0, 0, 0, 0, 0, 0, 3, 0, 30.3),
(760, 48, 8, '1972-10-29', 1, 'BUF', 'W 38-21', 0, 0, 0, 138, 2, 1, 17, 1, 0, 0, 0, 3, 0, 37.5),
(761, 48, 9, '1983-09-04', 0, 'DEN', 'L 10-14', 0, 0, 0, 27, 1, 4, 30, 0, 0, 0, 0, 0, 0, 15.7),
(762, 48, 10, '1979-11-25', 0, 'CLE', 'W 33-30', 0, 0, 0, 151, 2, 9, 81, 1, 0, 0, 0, 3, 0, 53.2),
(763, 48, 11, '1981-12-07', 1, 'OAK', 'L 27-30', 0, 0, 0, 15, 0, 5, 24, 0, 0, 0, 0, 0, 0, 8.9),
(764, 48, 12, '1975-11-24', 1, 'HOU', 'W 32-9', 0, 0, 0, 149, 2, 1, -2, 0, 0, 0, 0, 3, 0, 30.7),
(765, 48, 13, '1972-11-19', 1, 'CLE', 'L 24-26', 0, 0, 0, 136, 1, 1, 1, 0, 0, 0, 0, 3, 0, 23.7),
(766, 48, 14, '1972-09-17', 0, 'OAK', 'W 34-28', 0, 0, 0, 28, 0, 2, 16, 0, 0, 0, 0, 0, 0, 6.4),
(767, 48, 15, '1976-10-17', 0, 'CIN', 'W 23-6', 0, 0, 0, 143, 2, 0, 0, 0, 0, 0, 0, 3, 0, 29.3),
(768, 48, 16, '1977-11-20', 0, 'DAL', 'W 28-13', 0, 0, 0, 179, 2, 0, 0, 0, 0, 0, 0, 3, 0, 32.9),
(769, 49, 1, '1983-10-02', 0, 'DET', 'W 21-10', 0, 0, 0, 199, 3, 3, 21, 0, 0, 0, 0, 3, 0, 46),
(770, 49, 2, '1984-12-09', 0, 'HOU', 'W 27-16', 0, 0, 0, 215, 2, 0, 0, 0, 0, 0, 0, 3, 0, 36.5),
(771, 49, 3, '1984-09-16', 1, 'PIT', 'L 14-24', 0, 0, 0, 49, 0, 3, 16, 0, 0, 0, 0, 0, 0, 9.5),
(772, 49, 4, '1984-11-25', 1, 'TB', 'W 34-33', 0, 0, 0, 191, 3, 1, 3, 0, 0, 0, 0, 3, 0, 41.4),
(773, 49, 5, '1986-11-09', 1, 'NO', 'L 0-6', 0, 0, 0, 57, 0, 5, 12, 0, 0, 0, 0, 0, 0, 11.9),
(774, 49, 6, '1983-09-25', 1, 'NYJ', 'L 24-27', 0, 0, 0, 192, 2, 5, 45, 0, 0, 0, 0, 3, 0, 43.7),
(775, 49, 7, '1985-10-06', 0, 'MIN', 'W 13-10', 0, 0, 0, 55, 1, 1, 7, 0, 0, 0, 0, 0, 0, 13.2),
(776, 49, 8, '1983-11-20', 0, 'WAS', 'L 20-42', 0, 0, 0, 37, 0, 1, 12, 0, 0, 0, 0, 0, 0, 5.9),
(777, 49, 9, '1985-09-23', 1, 'SEA', 'W 35-24', 0, 0, 0, 150, 3, 1, 33, 0, 0, 0, 0, 3, 0, 40.3),
(778, 49, 10, '1984-10-28', 0, 'SF', 'L 0-33', 0, 0, 0, 38, 0, 3, 19, 0, 0, 0, 0, 0, 0, 8.7),
(779, 49, 11, '1986-09-07', 1, 'LAR', 'W 16-10', 0, 0, 0, 193, 2, 0, 0, 0, 0, 0, 0, 3, 0, 34.3),
(780, 49, 12, '1984-11-04', 1, 'LAR', 'W 16-13', 0, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 3, 0, 23.8),
(781, 49, 13, '1984-10-14', 1, 'NO', 'W 28-10', 0, 0, 0, 175, 0, 0, 0, 0, 0, 0, 0, 3, 0, 20.5),
(782, 49, 14, '1986-10-26', 0, 'ATL', 'W 14-7', 15, 1, 0, 170, 0, 0, 0, 0, 0, 0, 0, 3, 0, 24.6),
(783, 49, 15, '1986-10-05', 0, 'TB', 'W 26-20', 0, 0, 0, 207, 2, 2, 38, 0, 0, 0, 0, 3, 0, 41.5),
(784, 49, 16, '1985-11-17', 1, 'ATL', 'L 14-30', 0, 0, 0, 41, 1, 0, 0, 0, 0, 0, 0, 0, 0, 10.1),
(785, 50, 1, '2004-12-19', 1, 'AZ', 'L 7-31', 0, 0, 0, 22, 0, 1, 13, 0, 0, 0, 0, 0, 0, 4.5),
(786, 50, 2, '2002-12-30', 0, 'SF', 'W 31-20', 0, 0, 0, 43, 0, 6, 30, 0, 0, 0, 0, 0, 0, 13.3),
(787, 50, 3, '2002-10-13', 0, 'OAK', 'W 28-13', 0, 0, 0, 158, 0, 4, 22, 1, 0, 0, 0, 3, 0, 31),
(788, 50, 4, '2002-09-08', 1, 'DEN', 'L 16-23', 0, 0, 0, 19, 1, 14, 91, 0, 0, 0, 0, 0, 0, 31),
(789, 50, 5, '2000-12-24', 1, 'NO', 'W 26-21', 0, 0, 0, 220, 2, 7, 41, 1, 0, 0, 0, 3, 0, 54.1),
(790, 50, 6, '2002-10-20', 0, 'SEA', 'W 37-20', 0, 0, 0, 183, 3, 7, 52, 1, 0, 0, 0, 3, 0, 57.5),
(791, 50, 7, '2002-12-08', 1, 'KC', 'L 10-49', 0, 0, 0, 13, 0, 4, 35, 0, 0, 0, 0, 0, 0, 8.8),
(792, 50, 8, '2002-11-03', 1, 'AZ', 'W 27-14', 0, 0, 0, 178, 1, 5, 58, 0, 0, 0, 0, 3, 0, 37.6),
(793, 50, 9, '1999-12-12', 1, 'NO', 'W 30-14', 0, 0, 0, 154, 1, 5, 56, 1, 0, 0, 0, 3, 0, 41),
(794, 50, 10, '2002-01-06', 0, 'ATL', 'W 31-13', 0, 0, 0, 168, 1, 5, 58, 0, 0, 0, 0, 3, 0, 36.6),
(795, 50, 11, '1999-12-26', 0, 'CHI', 'W 34-12', 0, 0, 0, 54, 0, 12, 204, 1, 0, 0, 0, 0, 3, 46.8),
(796, 50, 12, '2001-12-23', 1, 'CAR', 'W 38-32', 0, 0, 0, 202, 2, 3, 50, 0, 0, 0, 0, 3, 0, 43.2),
(797, 50, 13, '2001-11-11', 0, 'CAR', 'W 48-14', 0, 0, 0, 183, 2, 4, 14, 0, 0, 0, 0, 3, 0, 38.7),
(798, 50, 14, '1999-10-17', 1, 'ATL', 'W 41-13', 0, 0, 0, 181, 1, 3, 32, 0, 0, 0, 0, 3, 0, 33.3),
(799, 50, 15, '2006-01-01', 1, 'DAL', 'W 20-10', 0, 0, 0, 25, 0, 2, 9, 0, 0, 0, 0, 0, 0, 5.4),
(800, 50, 16, '2000-10-15', 0, 'ATL', 'W 45-29', 0, 0, 0, 208, 1, 7, 78, 0, 0, 0, 0, 3, 0, 44.6),
(801, 51, 1, '1984-09-16', 0, 'NO', 'W 30-20', 0, 0, 0, 21, 0, 7, 57, 0, 0, 0, 0, 0, 0, 14.8),
(802, 51, 2, '1989-11-12', 0, 'ATL', 'W 45-3', 0, 0, 0, 109, 0, 2, 15, 0, 0, 0, 0, 3, 0, 17.4),
(803, 51, 3, '1984-09-30', 0, 'ATL', 'W 14-5', 0, 0, 0, 23, 0, 3, 15, 0, 0, 0, 0, 0, 0, 6.8),
(804, 51, 4, '1988-09-25', 1, 'SEA', 'W 38-7', 0, 0, 0, 107, 0, 6, 38, 0, 0, 0, 0, 3, 0, 23.5),
(805, 51, 5, '1986-12-01', 0, 'NYG', 'L 17-21', 0, 0, 0, 24, 1, 2, 83, 1, 0, 0, 0, 0, 0, 24.7),
(806, 51, 6, '1985-11-11', 1, 'DEN', 'L 16-17', 0, 0, 0, 117, 0, 3, 21, 0, 0, 0, 0, 3, 0, 19.8),
(807, 51, 7, '1985-09-15', 0, 'ATL', 'W 35-16', 0, 0, 0, 107, 2, 6, 77, 0, 0, 0, 0, 3, 0, 39.4),
(808, 51, 8, '1989-09-10', 1, 'IND', 'W 30-24', 0, 0, 0, 131, 2, 1, 0, 0, 0, 0, 0, 3, 0, 29.1),
(809, 51, 9, '1988-10-09', 0, 'DEN', 'L 13-16', 0, 0, 0, 143, 0, 2, 18, 0, 0, 0, 0, 3, 0, 21.1),
(810, 51, 10, '1984-09-23', 1, 'PHI', 'W 21-9', 0, 0, 0, 26, 0, 3, 23, 0, 0, 0, 0, 0, 0, 7.9),
(811, 51, 11, '1988-09-11', 1, 'NYG', 'W 20-17', 0, 0, 0, 110, 0, 9, 69, 0, 0, 0, 0, 3, 0, 29.9),
(812, 51, 12, '1988-11-06', 1, 'AZ', 'L 23-24', 0, 0, 0, 162, 1, 1, 0, 0, 0, 0, 0, 3, 0, 26.2),
(813, 51, 13, '1988-10-16', 1, 'LAR', 'W 24-21', 0, 0, 0, 190, 3, 5, 12, 0, 0, 0, 0, 3, 0, 46.2),
(814, 51, 14, '1983-12-19', 0, 'DAL', 'W 42-17', 0, 0, 0, 16, 0, 10, 61, 0, 0, 0, 0, 0, 0, 17.7),
(815, 51, 15, '1988-12-11', 0, 'NO', 'W 30-17', 0, 0, 0, 115, 1, 2, 7, 0, 0, 0, 0, 3, 0, 23.2),
(816, 51, 16, '1985-09-22', 1, 'OAK', 'W 34-10', 0, 0, 0, 26, 0, 2, 2, 0, 0, 0, 0, 0, 0, 4.8),
(817, 52, 1, '1997-09-29', 1, 'CAR', 'W 34-21', 0, 0, 0, 141, 1, 3, 13, 0, 0, 0, 0, 3, 0, 27.4),
(818, 52, 2, '1998-12-06', 1, 'CAR', 'W 31-28', 0, 0, 0, 139, 1, 2, 28, 0, 0, 0, 0, 3, 0, 27.7),
(819, 52, 3, '1997-09-14', 0, 'NO', 'W 33-7', 0, 0, 0, 29, 0, 4, 23, 1, 0, 0, 0, 0, 0, 15.2),
(820, 52, 4, '1998-09-14', 1, 'WAS', 'W 45-10', 0, 0, 0, 138, 1, 1, 12, 0, 0, 0, 0, 3, 0, 25),
(821, 52, 5, '1998-09-06', 0, 'NYJ', 'W 36-30', 0, 0, 0, 187, 2, 2, 38, 0, 0, 0, 0, 3, 0, 39.5),
(822, 52, 6, '2001-11-11', 0, 'NO', 'W 28-27', 0, 0, 0, 145, 0, 3, 15, 0, 0, 0, 0, 3, 0, 22),
(823, 52, 7, '2003-10-19', 0, 'TB', 'W 24-7', 0, 0, 0, 117, 1, 3, 38, 0, 0, 0, 0, 3, 0, 27.5),
(824, 52, 8, '2002-12-01', 0, 'SEA', 'W 31-24', 0, 0, 0, 124, 3, 2, 28, 0, 0, 0, 0, 3, 0, 38.2),
(825, 52, 9, '1998-12-14', 0, 'DET', 'W 35-13', 0, 0, 0, 198, 1, 0, 0, 0, 0, 0, 0, 3, 0, 28.8),
(826, 52, 10, '2001-12-30', 1, 'DAL', 'L 21-27', 0, 0, 0, 35, 0, 2, 3, 0, 0, 0, 0, 0, 0, 5.8),
(827, 52, 11, '1997-09-21', 0, 'ATL', 'W 34-7', 0, 0, 0, 33, 0, 2, 83, 0, 0, 0, 0, 0, 0, 13.6),
(828, 52, 12, '1998-10-04', 1, 'BUF', 'L 21-26', 0, 0, 0, 28, 0, 5, 38, 0, 0, 0, 0, 0, 0, 11.6),
(829, 52, 13, '1998-12-27', 0, 'LAR', 'W 38-19', 0, 0, 0, 21, 0, 3, 58, 0, 0, 0, 0, 0, 0, 10.9),
(830, 52, 14, '2002-11-03', 1, 'OAK', 'W 23-20', 0, 0, 0, 36, 0, 3, 12, 0, 0, 0, 0, 0, 0, 7.8),
(831, 52, 15, '2001-12-02', 0, 'BUF', 'W 35-0', 0, 0, 0, 124, 1, 2, 18, 0, 0, 0, 0, 3, 0, 25.2),
(832, 52, 16, '1998-11-30', 0, 'NYG', 'W 31-7', 0, 0, 0, 166, 1, 2, 7, 0, 0, 0, 0, 3, 0, 28.3),
(833, 53, 1, '1958-11-30', 0, 'WAS', 'W 21-14', 0, 0, 0, 12, 0, 1, 21, 0, 0, 0, 0, 0, 0, 4.3),
(834, 53, 2, '1959-11-01', 1, 'BAL', 'W 38-31', 0, 0, 0, 178, 5, 1, 0, 0, 0, 0, 0, 3, 0, 51.8),
(835, 53, 3, '1963-12-01', 1, 'LAR', 'W 24-10', 0, 0, 0, 179, 2, 0, 0, 0, 0, 0, 0, 3, 0, 32.9),
(836, 53, 4, '1964-10-18', 1, 'DAL', 'W 20-16', 0, 0, 0, 188, 0, 1, 9, 0, 0, 0, 0, 3, 0, 23.7),
(837, 53, 5, '1963-09-22', 1, 'DAL', 'W 41-24', 0, 0, 0, 232, 2, 0, 0, 0, 0, 0, 0, 3, 0, 38.2),
(838, 53, 6, '1962-10-14', 0, 'BAL', 'L 14-36', 0, 0, 0, 11, 0, 3, 85, 1, 0, 0, 0, 0, 0, 18.6),
(839, 53, 7, '1961-11-19', 0, 'PHI', 'W 45-24', 0, 0, 0, 237, 4, 3, 52, 0, 0, 0, 0, 3, 0, 58.9),
(840, 53, 8, '1965-12-12', 1, 'LAR', 'L 7-42', 0, 0, 0, 20, 0, 3, 13, 0, 0, 0, 0, 0, 0, 6.3),
(841, 53, 9, '1961-10-08', 0, 'WAS', 'W 31-7', 0, 0, 0, 24, 0, 7, 41, 0, 0, 0, 0, 0, 0, 13.5),
(842, 53, 10, '1958-10-26', 1, 'AZ', 'W 38-24', 0, 0, 0, 180, 4, 2, -10, 0, 0, 0, 0, 3, 0, 46),
(843, 53, 11, '1960-11-06', 0, 'NYG', 'L 13-17', 0, 0, 0, 29, 0, 1, -6, 0, 0, 0, 0, 0, 0, 3.3),
(844, 53, 12, '1958-10-12', 0, 'AZ', 'W 35-28', 0, 0, 0, 182, 3, 1, 8, 0, 0, 0, 0, 3, 0, 41),
(845, 53, 13, '1965-10-24', 1, 'NYG', 'W 38-14', 39, 1, 0, 177, 0, 3, 18, 1, 0, 0, 0, 3, 0, 37.06),
(846, 53, 14, '1963-11-03', 1, 'PHI', 'W 23-17', 0, 0, 0, 223, 1, 0, 0, 0, 0, 0, 0, 3, 0, 31.3),
(847, 53, 15, '1957-11-24', 0, 'LAR', 'W 45-31', 0, 0, 0, 237, 4, 3, 21, 0, 0, 0, 0, 3, 0, 55.8),
(848, 53, 16, '1957-10-13', 0, 'PHI', 'W 24-7', 0, 0, 0, 28, 0, 1, 5, 1, 0, 0, 0, 0, 0, 10.3),
(849, 54, 1, '1985-09-16', 0, 'PIT', 'W 17-7', 0, 0, 0, 82, 1, 5, 49, 0, 0, 0, 0, 0, 0, 24.1),
(850, 54, 2, '1984-12-09', 1, 'PIT', 'L 20-23', 0, 0, 0, 103, 0, 0, 0, 0, 0, 0, 0, 3, 0, 13.3),
(851, 54, 3, '1987-11-15', 0, 'BUF', 'W 27-21', 0, 0, 0, 21, 0, 6, 64, 0, 0, 0, 0, 0, 0, 14.5),
(852, 54, 4, '1986-09-07', 1, 'CHI', 'L 31-41', 0, 0, 0, 18, 0, 6, 94, 0, 0, 0, 0, 0, 0, 17.2),
(853, 54, 5, '1987-11-08', 0, 'ATL', 'W 38-3', 0, 0, 0, 29, 2, 4, 40, 1, 0, 0, 0, 0, 0, 28.9),
(854, 54, 6, '1988-09-19', 0, 'IND', 'W 23-17', 0, 0, 0, 22, 0, 2, 27, 0, 0, 0, 0, 0, 0, 6.9),
(855, 54, 7, '1985-09-29', 1, 'SD', 'W 21-7', 0, 0, 0, 83, 0, 2, 12, 1, 0, 0, 0, 0, 0, 17.5),
(856, 54, 8, '1984-12-16', 1, 'HOU', 'W 27-20', 0, 0, 0, 188, 2, 3, 31, 0, 0, 0, 0, 3, 0, 39.9),
(857, 54, 9, '1985-12-22', 1, 'NYJ', 'L 10-37', 0, 0, 0, 101, 0, 1, 4, 0, 0, 0, 0, 3, 0, 14.5),
(858, 54, 10, '1986-10-05', 1, 'PIT', 'W 27-24', 0, 0, 0, 79, 1, 5, 29, 0, 0, 0, 0, 0, 0, 21.8),
(859, 54, 11, '1995-12-17', 0, 'CIN', 'W 26-10', 0, 0, 0, 121, 0, 7, 36, 0, 0, 0, 0, 3, 0, 25.7),
(860, 54, 12, '1985-12-15', 0, 'HOU', 'W 28-21', 0, 0, 0, 87, 0, 3, 13, 0, 0, 0, 0, 0, 0, 13),
(861, 54, 13, '1988-12-04', 0, 'DAL', 'W 24-21', 0, 0, 0, 24, 0, 1, 29, 0, 0, 0, 0, 0, 0, 6.3),
(862, 54, 14, '1985-11-17', 0, 'BUF', 'W 17-7', 0, 0, 0, 109, 1, 4, 20, 0, 0, 0, 0, 3, 0, 25.9),
(863, 54, 15, '1985-09-22', 1, 'DAL', 'L 7-20', 0, 0, 0, 80, 1, 1, 18, 0, 0, 0, 0, 0, 0, 16.8),
(864, 54, 16, '1994-10-13', 1, 'HOU', 'W 11-8', 0, 0, 0, 25, 0, 1, 15, 0, 0, 0, 0, 0, 0, 5),
(865, 55, 1, '2007-11-04', 0, 'NE', 'L 20-24', 0, 0, 0, 112, 0, 5, 114, 1, 0, 0, 0, 3, 3, 39.6),
(866, 55, 2, '2007-10-28', 1, 'CAR', 'W 31-7', 0, 0, 0, 100, 2, 2, 9, 1, 0, 0, 0, 3, 0, 33.9),
(867, 55, 3, '2010-09-19', 0, 'NYG', 'W 38-14', 0, 0, 0, 92, 0, 2, 21, 0, 0, 0, 0, 0, 0, 13.3),
(868, 55, 4, '2008-12-07', 0, 'CIN', 'W 35-3', 0, 0, 0, 26, 0, 2, 14, 0, 0, 0, 0, 0, 0, 6),
(869, 55, 5, '2007-09-06', 0, 'NO', 'W 41-10', 0, 0, 0, 118, 1, 3, 25, 0, 0, 0, 0, 3, 0, 26.3),
(870, 55, 6, '2009-10-11', 1, 'TEN', 'W 31-9', 0, 0, 0, 27, 1, 10, 53, 0, 0, 0, 0, 0, 0, 24),
(871, 55, 7, '2008-09-14', 1, 'MIN', 'W 18-15', 0, 0, 0, 20, 1, 2, 13, 0, 0, 0, 0, 0, 0, 11.3),
(872, 55, 8, '2006-12-10', 1, 'JAX', 'L 17-44', 0, 0, 0, 22, 0, 1, 14, 0, 0, 0, 0, 0, 0, 4.6),
(873, 55, 9, '2011-12-18', 0, 'TEN', 'W 27-13', 0, 0, 0, 20, 0, 2, 7, 0, 0, 0, 0, 0, 0, 4.7),
(874, 55, 10, '2010-10-17', 1, 'WAS', 'W 27-24', 0, 0, 0, 128, 1, 0, 0, 0, 0, 0, 0, 3, 0, 21.8),
(875, 55, 11, '2006-10-29', 1, 'DEN', 'W 34-31', 0, 0, 0, 93, 0, 5, 37, 0, 0, 0, 0, 0, 0, 18),
(876, 55, 12, '2008-11-16', 0, 'HOU', 'W 33-27', 0, 0, 0, 105, 1, 4, 48, 1, 0, 0, 0, 3, 0, 34.3),
(877, 55, 13, '2010-09-26', 1, 'DEN', 'W 27-13', 0, 0, 0, 29, 0, 2, 10, 0, 0, 0, 0, 0, 0, 5.9),
(878, 55, 14, '2006-12-24', 1, 'HOU', 'L 24-27', 0, 0, 0, 100, 0, 4, 8, 0, 0, 0, 0, 3, 0, 17.8),
(879, 55, 15, '2007-09-30', 0, 'DEN', 'W 38-20', 0, 0, 0, 136, 1, 3, 10, 0, 0, 0, 0, 3, 0, 26.6),
(880, 55, 16, '2006-11-26', 0, 'PHI', 'W 45-21', 0, 0, 0, 171, 4, 2, 37, 0, 0, 0, 0, 3, 0, 49.8),
(881, 56, 1, '2002-12-22', 0, 'NYG', 'L 27-44', 0, 0, 0, 13, 0, 3, 2, 0, 0, 0, 0, 0, 0, 4.5),
(882, 56, 2, '2004-09-09', 1, 'NE', 'L 24-27', 0, 0, 0, 142, 0, 3, 29, 0, 0, 0, 0, 3, 0, 23.1),
(883, 56, 3, '2005-12-24', 1, 'SEA', 'L 13-28', 0, 0, 0, 41, 0, 3, 14, 0, 0, 0, 0, 0, 0, 8.5),
(884, 56, 4, '2002-10-27', 1, 'WAS', 'L 21-26', 0, 0, 0, 33, 0, 5, 14, 1, 0, 0, 0, 0, 0, 15.7),
(885, 56, 5, '2004-10-31', 1, 'KC', 'L 35-45', 0, 0, 0, 34, 0, 6, 90, 0, 0, 0, 0, 0, 0, 18.4),
(886, 56, 6, '2002-09-15', 0, 'MIA', 'L 13-21', 0, 0, 0, 138, 0, 8, 82, 0, 0, 0, 0, 3, 0, 33),
(887, 56, 7, '2002-12-15', 1, 'CLE', 'W 28-23', 0, 0, 0, 42, 0, 3, 20, 0, 0, 0, 0, 0, 0, 9.2),
(888, 56, 8, '2000-10-29', 0, 'DET', 'W 30-18', 0, 0, 0, 139, 1, 2, 24, 0, 0, 0, 0, 3, 0, 27.3),
(889, 56, 9, '2003-12-28', 1, 'HOU', 'W 20-17', 0, 0, 0, 171, 1, 5, 35, 0, 0, 0, 0, 3, 0, 34.6),
(890, 56, 10, '2005-10-17', 0, 'LAR', 'W 45-28', 0, 0, 0, 143, 3, 3, 16, 0, 0, 0, 0, 3, 0, 39.9),
(891, 56, 11, '1999-11-21', 1, 'PHI', 'W 44-17', 0, 0, 0, 152, 2, 5, 47, 1, 0, 0, 0, 3, 0, 45.9),
(892, 56, 12, '2004-11-21', 1, 'CHI', 'W 41-10', 0, 0, 0, 204, 1, 1, 11, 0, 0, 0, 0, 3, 0, 31.5),
(893, 56, 13, '2000-10-15', 1, 'SEA', 'W 37-24', 0, 0, 0, 219, 3, 1, 9, 0, 0, 0, 0, 3, 0, 44.8),
(894, 56, 14, '2001-10-21', 0, 'NE', 'L 17-38', 0, 0, 0, 143, 0, 4, 34, 0, 0, 0, 0, 3, 0, 24.7),
(895, 56, 15, '2005-12-18', 0, 'SD', 'L 17-26', 0, 0, 0, 25, 1, 2, 20, 0, 0, 0, 0, 0, 0, 12.5),
(896, 56, 16, '2005-10-23', 1, 'HOU', 'W 38-20', 0, 0, 0, 139, 2, 1, 8, 0, 0, 0, 0, 3, 0, 30.7),
(897, 57, 1, '1987-11-02', 0, 'NYG', 'W 33-24', 0, 0, 0, 3, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1.5),
(898, 57, 2, '1985-09-29', 1, 'HOU', 'W 17-10', 0, 0, 0, 159, 0, 1, 1, 0, 0, 0, 0, 3, 0, 20),
(899, 57, 3, '1986-11-23', 1, 'WAS', 'L 14-41', 0, 0, 0, 13, 0, 1, 16, 0, 0, 0, 0, 0, 0, 3.9),
(900, 57, 4, '1980-10-05', 0, 'NYG', 'W 24-3', 0, 0, 0, 26, 0, 4, 30, 0, 0, 0, 0, 0, 0, 9.6),
(901, 57, 5, '1986-10-12', 0, 'WAS', 'W 30-6', 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.2),
(902, 57, 6, '1978-10-15', 1, 'LAR', 'W 24-21', 0, 0, 0, 24, 0, 4, 21, 0, 0, 0, 0, 0, 0, 8.5),
(903, 57, 7, '1978-09-24', 0, 'LAR', 'W 21-12', 0, 0, 0, 154, 1, 1, 6, 0, 0, 0, 0, 3, 0, 26),
(904, 57, 8, '1981-10-18', 0, 'LAR', 'W 29-17', 0, 0, 0, 159, 1, 1, 22, 0, 0, 0, 0, 3, 0, 28.1),
(905, 57, 9, '1981-12-06', 1, 'BAL', 'W 37-13', 0, 0, 0, 175, 0, 1, 10, 0, 0, 0, 0, 3, 0, 22.5),
(906, 57, 10, '1980-11-09', 1, 'NYG', 'L 35-38', 0, 0, 0, 183, 2, 0, 0, 0, 0, 0, 0, 3, 0, 33.3),
(907, 57, 11, '1978-11-19', 0, 'NO', 'W 27-7', 0, 0, 0, 152, 1, 1, 4, 0, 0, 0, 0, 3, 0, 25.6),
(908, 57, 12, '1983-01-03', 1, 'MIN', 'L 27-31', 0, 0, 0, 153, 1, 1, 5, 0, 0, 0, 0, 3, 0, 25.8),
(909, 57, 13, '1987-11-08', 1, 'DET', 'L 17-27', 0, 0, 0, 29, 0, 1, 5, 0, 0, 0, 0, 0, 0, 4.4),
(910, 57, 14, '1983-09-05', 1, 'WAS', 'W 31-30', 0, 0, 0, 151, 0, 0, 0, 0, 0, 0, 0, 3, 0, 18.1),
(911, 57, 15, '1981-09-21', 1, 'NE', 'W 35-21', 0, 0, 0, 162, 1, 4, 22, 0, 0, 0, 0, 3, 0, 31.4),
(912, 57, 16, '1977-12-04', 0, 'PHI', 'W 24-14', 0, 0, 0, 206, 2, 3, 24, 0, 0, 0, 0, 3, 0, 41),
(913, 58, 1, '2000-11-12', 0, 'CIN', 'W 23-6', 0, 0, 0, 16, 0, 1, 19, 0, 0, 0, 0, 0, 0, 4.5),
(914, 58, 2, '1998-12-06', 1, 'NO', 'L 3-22', 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.6),
(915, 58, 3, '1995-10-29', 1, 'ATL', 'W 28-13', 0, 0, 0, 167, 1, 5, 30, 0, 0, 0, 0, 3, 0, 33.7),
(916, 58, 4, '1992-11-01', 0, 'PHI', 'W 20-10', 0, 0, 0, 163, 0, 1, 9, 0, 0, 0, 0, 3, 0, 21.2),
(917, 58, 5, '1993-10-31', 1, 'PHI', 'W 23-10', 0, 0, 0, 237, 1, 0, 0, 0, 0, 0, 0, 3, 0, 32.7),
(918, 58, 6, '2002-12-29', 1, 'WAS', 'L 14-20', 0, 0, 0, 13, 0, 1, -3, 0, 0, 0, 0, 0, 0, 2),
(919, 58, 7, '1995-09-04', 1, 'NYG', 'W 35-0', 0, 0, 0, 163, 4, 1, 0, 0, 0, 0, 0, 3, 0, 44.3),
(920, 58, 8, '1994-01-02', 1, 'NYG', 'W 16-13', 0, 0, 0, 168, 0, 10, 61, 1, 0, 0, 0, 3, 0, 41.9),
(921, 58, 9, '1993-12-06', 0, 'PHI', 'W 23-17', 0, 0, 0, 172, 0, 4, 26, 0, 0, 0, 0, 3, 0, 26.8),
(922, 58, 10, '1996-11-24', 1, 'NYG', 'L 6-20', 0, 0, 0, 18, 0, 4, 24, 0, 0, 0, 0, 0, 0, 8.2),
(923, 58, 11, '1994-11-07', 0, 'NYG', 'W 38-10', 0, 0, 0, 163, 2, 3, 13, 0, 0, 0, 0, 3, 0, 35.6),
(924, 58, 12, '1994-09-04', 1, 'PIT', 'W 26-9', 0, 0, 0, 171, 1, 3, 3, 0, 0, 0, 0, 3, 0, 29.4),
(925, 58, 13, '1992-12-21', 1, 'ATL', 'W 41-17', 0, 0, 0, 174, 2, 2, 5, 0, 0, 0, 0, 3, 0, 34.9),
(926, 58, 14, '1991-09-22', 1, 'AZ', 'W 17-9', 0, 0, 0, 182, 2, 3, 19, 0, 0, 0, 0, 3, 0, 38.1),
(927, 58, 15, '1997-11-27', 0, 'TEN', 'L 14-27', 0, 0, 0, 22, 0, 3, 20, 0, 0, 0, 0, 0, 0, 7.2),
(928, 58, 16, '2000-12-25', 1, 'TEN', 'L 0-31', 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2),
(929, 59, 1, '2001-09-30', 1, 'WAS', 'W 45-13', 0, 0, 0, 147, 2, 5, 78, 1, 0, 0, 0, 3, 0, 48.5),
(930, 59, 2, '2001-10-07', 1, 'DEN', 'L 6-20', 0, 0, 0, 42, 0, 7, 58, 0, 0, 0, 0, 0, 0, 17),
(931, 59, 3, '2001-10-14', 0, 'PIT', 'L 17-20', 0, 0, 0, 150, 2, 3, -1, 0, 0, 0, 0, 3, 0, 32.9),
(932, 59, 4, '2002-09-22', 1, 'NE', 'L 38-41', 0, 0, 0, 180, 2, 5, 18, 1, 0, 0, 0, 3, 0, 45.8),
(933, 59, 5, '2003-11-30', 1, 'SD', 'W 28-24', 0, 0, 0, 162, 2, 4, 24, 0, 0, 0, 0, 3, 0, 37.6),
(934, 59, 6, '2002-11-10', 1, 'SF', 'L 13-17', 0, 0, 0, 51, 1, 2, 5, 0, 0, 0, 0, 0, 0, 13.6),
(935, 59, 7, '2002-10-06', 1, 'NYJ', 'W 29-25', 0, 0, 0, 152, 1, 9, 81, 1, 0, 0, 0, 3, 0, 47.3),
(936, 59, 8, '2004-09-12', 1, 'DEN', 'L 24-34', 0, 0, 0, 151, 3, 2, -2, 0, 0, 0, 0, 3, 0, 37.9),
(937, 59, 9, '2002-12-15', 1, 'DEN', 'L 24-31', 0, 0, 0, 161, 0, 2, 22, 0, 0, 0, 0, 3, 0, 23.3),
(938, 59, 10, '2001-11-04', 1, 'SD', 'W 25-20', 0, 0, 0, 181, 1, 1, 9, 0, 0, 0, 0, 3, 0, 29),
(939, 59, 11, '2005-10-30', 1, 'SD', 'L 20-28', 0, 0, 0, 38, 0, 3, 15, 0, 0, 0, 0, 0, 0, 8.3),
(940, 59, 12, '2002-11-24', 1, 'SEA', 'L 32-39', 0, 0, 0, 197, 2, 7, 110, 1, 0, 0, 0, 3, 3, 61.7),
(941, 59, 13, '2005-10-16', 0, 'WAS', 'W 28-21', 0, 0, 0, 18, 1, 5, 100, 1, 0, 0, 0, 0, 3, 31.8),
(942, 59, 14, '2001-12-09', 1, 'OAK', 'L 26-28', 0, 0, 0, 168, 1, 5, 109, 1, 0, 0, 0, 3, 3, 50.7),
(943, 59, 15, '2003-12-28', 0, 'CHI', 'W 31-3', 0, 0, 0, 50, 2, 2, 6, 0, 0, 0, 0, 0, 0, 19.6),
(944, 59, 16, '2003-12-07', 1, 'DEN', 'L 27-45', 0, 0, 0, 44, 2, 7, 33, 0, 0, 0, 0, 0, 0, 26.7),
(945, 60, 1, '2005-12-17', 1, 'NYG', 'L 17-27', 0, 0, 0, 167, 2, 2, 17, 0, 0, 0, 0, 3, 0, 35.4),
(946, 60, 2, '2006-11-23', 0, 'DEN', 'W 19-10', 0, 0, 0, 157, 1, 1, 6, 0, 0, 0, 0, 3, 0, 26.3),
(947, 60, 3, '2009-09-13', 1, 'BAL', 'L 24-38', 0, 0, 0, 20, 0, 1, 6, 0, 0, 0, 0, 0, 0, 3.6),
(948, 60, 4, '2006-10-08', 1, 'AZ', 'W 23-20', 0, 0, 0, 36, 0, 6, 106, 1, 0, 0, 0, 0, 3, 29.2),
(949, 60, 5, '2006-11-19', 0, 'OAK', 'W 17-13', 0, 0, 0, 154, 2, 0, 0, 0, 0, 0, 0, 3, 0, 30.4),
(950, 60, 6, '2006-01-01', 0, 'CIN', 'W 37-3', 0, 0, 0, 201, 3, 2, 21, 0, 0, 0, 0, 3, 0, 45.2),
(951, 60, 7, '2006-10-29', 0, 'SEA', 'W 35-28', 0, 0, 0, 155, 3, 2, 26, 1, 0, 0, 0, 3, 0, 47.1),
(952, 60, 8, '2008-09-14', 0, 'OAK', 'L 8-23', 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.2),
(953, 60, 9, '2005-12-11', 1, 'DAL', 'L 28-31', 0, 0, 0, 143, 3, 3, 28, 0, 0, 0, 0, 3, 0, 41.1),
(954, 60, 10, '2006-11-05', 1, 'LAR', 'W 31-17', 0, 0, 0, 172, 1, 0, 0, 0, 0, 0, 0, 3, 0, 26.2),
(955, 60, 11, '2008-09-28', 0, 'DEN', 'W 33-19', 0, 0, 0, 198, 2, 5, 0, 0, 0, 0, 0, 3, 0, 39.8),
(956, 60, 12, '2006-10-15', 1, 'PIT', 'L 7-45', 0, 0, 0, 26, 1, 3, 6, 0, 0, 0, 0, 0, 0, 12.2),
(957, 60, 13, '2005-11-20', 1, 'HOU', 'W 45-17', 0, 0, 0, 211, 2, 1, 6, 0, 0, 0, 0, 3, 0, 37.7),
(958, 60, 14, '2004-12-19', 0, 'DEN', 'W 45-17', 0, 0, 0, 151, 2, 0, 0, 0, 0, 0, 0, 3, 0, 30.1),
(959, 60, 15, '2004-11-07', 1, 'TB', 'L 31-34', 0, 0, 0, 21, 0, 4, 38, 0, 0, 0, 0, 0, 0, 9.9),
(960, 60, 16, '2008-12-28', 1, 'CIN', 'L 6-16', 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.8),
(961, 61, 1, '1995-09-17', 1, 'PHI', 'W 27-21', 0, 0, 0, 122, 0, 0, 0, 0, 0, 0, 0, 3, 0, 15.2),
(962, 61, 2, '1995-09-10', 0, 'SEA', 'W 14-10', 0, 0, 0, 115, 0, 0, 0, 0, 0, 0, 0, 3, 0, 14.5),
(963, 61, 3, '1998-10-04', 1, 'IND', 'L 12-17', 0, 0, 0, 130, 1, 1, 13, 0, 0, 0, 0, 3, 0, 24.3),
(964, 61, 4, '1995-09-24', 0, 'DEN', 'W 17-6', 0, 0, 0, 115, 2, 0, 0, 0, 0, 0, 0, 3, 0, 26.5),
(965, 61, 5, '1994-10-16', 1, 'NO', 'W 36-22', 0, 0, 0, 120, 3, 1, 10, 0, 0, 0, 0, 3, 0, 35),
(966, 61, 6, '1998-09-20', 1, 'KC', 'L 7-23', 0, 0, 0, 165, 1, 0, 0, 0, 0, 0, 0, 3, 0, 25.5),
(967, 61, 7, '1993-12-27', 0, 'MIA', 'W 45-20', 0, 0, 0, 118, 3, 0, 0, 0, 0, 0, 0, 3, 0, 32.8),
(968, 61, 8, '1998-09-27', 0, 'NYG', 'L 16-34', 0, 0, 0, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5.6),
(969, 61, 9, '1994-10-09', 0, 'KC', 'W 20-6', 0, 0, 0, 125, 1, 3, 21, 0, 0, 0, 0, 3, 0, 26.6),
(970, 61, 10, '1998-10-18', 0, 'PHI', 'W 13-10', 0, 0, 0, 112, 1, 2, 7, 0, 0, 0, 0, 3, 0, 22.9),
(971, 61, 11, '1993-12-05', 0, 'DEN', 'W 13-10', 0, 0, 0, 22, 1, 2, 15, 0, 0, 0, 0, 0, 0, 11.7),
(972, 61, 12, '1993-10-17', 0, 'KC', 'L 14-17', 0, 0, 0, 34, 1, 4, 20, 0, 0, 0, 0, 0, 0, 15.4),
(973, 61, 13, '1993-09-19', 0, 'HOU', 'W 18-17', 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.3),
(974, 61, 14, '1993-11-29', 1, 'IND', 'W 31-0', 0, 0, 0, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.4),
(975, 61, 15, '1993-12-19', 1, 'KC', 'L 24-28', 0, 0, 0, 22, 1, 1, 2, 0, 0, 0, 0, 0, 0, 9.4),
(976, 61, 16, '1994-09-11', 0, 'CIN', 'W 27-10', 0, 0, 0, 107, 1, 1, 16, 0, 0, 0, 0, 3, 0, 22.3),
(977, 62, 1, '2005-09-25', 0, 'NYG', 'W 45-23', 26, 1, 0, 192, 3, 6, 28, 0, 0, 0, 0, 3, 0, 54.04),
(978, 62, 2, '2003-09-28', 1, 'OAK', 'L 31-34', 21, 1, 0, 187, 1, 7, 24, 0, 0, 0, 0, 3, 0, 41.94),
(979, 62, 3, '2002-09-29', 0, 'NE', 'W 21-14', 0, 0, 0, 217, 2, 4, 20, 0, 0, 0, 0, 3, 0, 42.7),
(980, 62, 4, '2003-10-05', 1, 'JAX', 'L 21-27', 0, 0, 0, 38, 0, 4, 30, 0, 0, 0, 0, 0, 0, 10.8),
(981, 62, 5, '2003-10-19', 1, 'CLE', 'W 26-20', 0, 0, 0, 200, 1, 3, 21, 0, 0, 0, 0, 3, 0, 34.1),
(982, 62, 6, '2006-12-17', 0, 'KC', 'W 20-9', 0, 0, 0, 199, 2, 1, 5, 0, 0, 0, 0, 3, 0, 36.4),
(983, 62, 7, '2006-10-29', 0, 'LAR', 'W 38-24', 0, 0, 0, 183, 2, 3, 57, 1, 0, 0, 0, 3, 0, 48),
(984, 62, 8, '2002-11-03', 0, 'NYJ', 'L 13-44', 0, 0, 0, 60, 1, 2, 13, 0, 0, 0, 0, 0, 0, 15.3),
(985, 62, 9, '2008-09-14', 1, 'DEN', 'L 38-39', 0, 0, 0, 26, 0, 2, 14, 0, 0, 0, 0, 0, 0, 6),
(986, 62, 10, '2008-10-05', 1, 'MIA', 'L 10-17', 0, 0, 0, 35, 0, 5, 22, 0, 0, 0, 0, 0, 0, 10.7),
(987, 62, 11, '2009-09-14', 1, 'OAK', 'W 24-20', 0, 0, 0, 55, 1, 1, 1, 0, 0, 0, 0, 0, 0, 12.6),
(988, 62, 12, '2005-11-27', 1, 'WAS', 'W 23-17', 0, 0, 0, 184, 3, 6, 29, 0, 0, 0, 0, 3, 0, 48.3),
(989, 62, 13, '2007-10-14', 0, 'OAK', 'W 28-14', 0, 0, 0, 198, 4, 3, 16, 0, 0, 0, 0, 3, 0, 51.4),
(990, 62, 14, '2002-12-01', 0, 'DEN', 'W 30-27', 0, 0, 0, 220, 3, 11, 51, 0, 0, 0, 0, 3, 0, 59.1),
(991, 62, 15, '2003-12-28', 0, 'OAK', 'W 21-14', 0, 0, 0, 243, 2, 8, 17, 0, 0, 0, 0, 3, 0, 49),
(992, 62, 16, '2009-11-08', 1, 'NYG', 'W 21-20', 0, 0, 0, 22, 0, 2, 8, 0, 0, 0, 0, 0, 0, 5),
(993, 63, 1, '2000-12-03', 1, 'NO', 'W 38-23', 0, 0, 0, 251, 4, 1, 5, 0, 0, 0, 0, 3, 0, 53.6),
(994, 63, 2, '2001-10-28', 0, 'NE', 'W 31-20', 0, 0, 0, 40, 1, 0, 0, 0, 0, 0, 0, 0, 0, 10),
(995, 63, 3, '2005-10-02', 1, 'JAX', 'W 20-7', 0, 0, 0, 115, 0, 3, 27, 0, 0, 0, 0, 3, 0, 20.2),
(996, 63, 4, '2001-09-30', 0, 'BAL', 'L 13-20', 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.4),
(997, 63, 5, '2005-10-09', 0, 'WAS', 'W 21-19', 0, 0, 0, 34, 0, 2, 16, 0, 0, 0, 0, 0, 0, 7),
(998, 63, 6, '2000-12-10', 0, 'SEA', 'W 31-24', 0, 0, 0, 131, 2, 0, 0, 0, 0, 0, 0, 3, 0, 28.1),
(999, 63, 7, '2001-11-18', 0, 'WAS', 'L 10-17', 0, 0, 0, 31, 0, 1, 16, 0, 0, 0, 0, 0, 0, 5.7),
(1000, 63, 8, '2000-09-17', 1, 'OAK', 'W 33-24', 0, 0, 0, 187, 0, 1, 2, 0, 0, 0, 0, 3, 0, 22.9),
(1001, 63, 9, '2005-12-04', 1, 'KC', 'L 27-31', 0, 0, 0, 37, 1, 1, 66, 1, 0, 0, 0, 0, 0, 23.3),
(1002, 63, 10, '2001-10-07', 0, 'KC', 'W 20-6', 0, 0, 0, 155, 1, 0, 0, 0, 0, 0, 0, 3, 0, 24.5),
(1003, 63, 11, '2001-11-22', 1, 'DAL', 'W 26-24', 0, 0, 0, 118, 1, 2, 13, 0, 0, 0, 0, 3, 0, 24.1),
(1004, 63, 12, '2000-11-26', 1, 'SEA', 'W 38-31', 0, 0, 0, 195, 2, 2, 14, 0, 0, 0, 0, 3, 0, 37.9),
(1005, 63, 13, '2005-11-24', 1, 'DAL', 'W 24-21', 0, 0, 0, 31, 0, 2, 6, 0, 0, 0, 0, 0, 0, 5.7),
(1006, 63, 14, '2005-10-30', 0, 'PHI', 'W 49-21', 0, 0, 0, 126, 1, 1, 16, 0, 0, 0, 0, 3, 0, 24.2),
(1007, 63, 15, '2000-09-10', 0, 'ATL', 'W 42-14', 0, 0, 0, 131, 2, 1, 18, 0, 0, 0, 0, 3, 0, 30.9),
(1008, 63, 16, '2005-10-23', 1, 'NYG', 'L 23-24', 0, 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 3, 0, 21),
(1009, 64, 1, '1997-11-30', 1, 'SD', 'W 38-28', 0, 0, 0, 178, 1, 4, 36, 0, 0, 0, 0, 3, 0, 34.4),
(1010, 64, 2, '1998-09-13', 0, 'DAL', 'W 42-23', 0, 0, 0, 191, 3, 0, 0, 0, 0, 0, 0, 3, 0, 40.1),
(1011, 64, 3, '1998-12-27', 0, 'SEA', 'W 28-21', 0, 0, 0, 178, 0, 2, 17, 1, 0, 0, 0, 3, 0, 30.5),
(1012, 64, 4, '1997-09-21', 0, 'CIN', 'W 38-20', 0, 0, 0, 215, 1, 2, 13, 0, 0, 0, 0, 3, 0, 33.8),
(1013, 64, 5, '1998-12-21', 1, 'MIA', 'L 21-31', 0, 0, 0, 29, 0, 2, 5, 0, 0, 0, 0, 0, 0, 5.4),
(1014, 64, 6, '1997-10-26', 1, 'BUF', 'W 23-20', 0, 0, 0, 207, 1, 5, 29, 0, 0, 0, 0, 3, 0, 37.6),
(1015, 64, 7, '1999-09-26', 1, 'TB', 'L 10-13', 0, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5.3),
(1016, 64, 8, '1997-10-06', 0, 'NE', 'W 34-13', 0, 0, 0, 171, 2, 2, 7, 0, 0, 0, 0, 3, 0, 34.8),
(1017, 64, 9, '1996-10-06', 0, 'SD', 'W 28-17', 0, 0, 0, 50, 0, 6, 42, 0, 0, 0, 0, 0, 0, 15.2),
(1018, 64, 10, '1998-10-04', 0, 'PHI', 'W 41-16', 0, 0, 0, 168, 2, 0, 0, 0, 0, 0, 0, 3, 0, 31.8),
(1019, 64, 11, '1995-10-16', 0, 'OAK', 'W 27-0', 0, 0, 0, 34, 0, 5, 25, 0, 0, 0, 0, 0, 0, 10.9),
(1020, 64, 12, '1996-12-08', 1, 'GB', 'L 6-41', 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5.4),
(1021, 64, 13, '1998-10-11', 1, 'SEA', 'W 21-16', 0, 0, 0, 208, 1, 0, 0, 0, 0, 0, 0, 3, 0, 29.8),
(1022, 64, 14, '1997-12-15', 1, 'SF', 'L 17-34', 0, 0, 0, 28, 1, 2, 0, 0, 0, 0, 0, 0, 0, 10.8),
(1023, 64, 15, '1995-11-19', 0, 'SD', 'W 30-27', 0, 0, 0, 176, 1, 2, 20, 0, 0, 0, 0, 3, 0, 30.6),
(1024, 64, 16, '1996-10-20', 0, 'BAL', 'W 45-34', 0, 0, 0, 194, 2, 3, 19, 0, 0, 0, 0, 3, 0, 39.3),
(1025, 65, 1, '2005-10-02', 1, 'BAL', 'L 3-13', 0, 0, 0, 30, 0, 3, 15, 0, 0, 0, 0, 0, 0, 7.5),
(1026, 65, 2, '2003-12-14', 0, 'PIT', 'W 6-0', 0, 0, 0, 174, 0, 4, 54, 0, 0, 0, 0, 3, 0, 29.8),
(1027, 65, 3, '2004-09-12', 0, 'CIN', 'W 31-24', 0, 0, 0, 196, 1, 3, 7, 1, 0, 0, 0, 3, 0, 38.3),
(1028, 65, 4, '1999-11-15', 1, 'NE', 'W 24-17', 0, 0, 0, 149, 1, 2, 8, 0, 0, 0, 0, 3, 0, 26.7),
(1029, 65, 5, '2000-12-10', 1, 'OAK', 'L 7-31', 0, 0, 0, 11, 0, 5, 51, 0, 0, 0, 0, 0, 0, 11.2),
(1030, 65, 6, '1998-09-20', 0, 'IND', 'W 44-6', 0, 0, 0, 144, 0, 2, 30, 0, 0, 0, 0, 3, 0, 22.4),
(1031, 65, 7, '2002-12-02', 1, 'OAK', 'L 20-26', 0, 0, 0, 26, 0, 2, 11, 0, 0, 0, 0, 0, 0, 5.7),
(1032, 65, 8, '2005-10-24', 1, 'ATL', 'L 14-27', 0, 0, 0, 28, 1, 3, 26, 0, 0, 0, 0, 0, 0, 14.4),
(1033, 65, 9, '2000-10-15', 1, 'NE', 'W 34-17', 0, 0, 0, 143, 3, 2, 18, 0, 0, 0, 0, 3, 0, 39.1),
(1034, 65, 10, '2000-12-03', 0, 'IND', 'W 27-17', 0, 0, 0, 203, 1, 4, 9, 0, 0, 0, 0, 3, 0, 34.2),
(1035, 65, 11, '2005-01-02', 1, 'LAR', 'L 29-32', 0, 0, 0, 153, 0, 2, 22, 0, 0, 0, 0, 3, 0, 22.5),
(1036, 65, 12, '2001-10-28', 1, 'CAR', 'W 13-12', 0, 0, 0, 159, 0, 7, 39, 0, 0, 0, 0, 3, 0, 29.8),
(1037, 65, 13, '2000-01-02', 0, 'SEA', 'W 19-9', 0, 0, 0, 158, 1, 3, 45, 0, 0, 0, 0, 3, 0, 32.3),
(1038, 65, 14, '2005-12-04', 1, 'NE', 'L 3-16', 0, 0, 0, 29, 0, 4, 26, 0, 0, 0, 0, 0, 0, 9.5),
(1039, 65, 15, '2000-11-26', 0, 'CHI', 'W 17-10', 0, 0, 0, 29, 0, 1, -2, 0, 0, 0, 0, 0, 0, 3.7),
(1040, 65, 16, '2005-10-16', 1, 'BUF', 'L 17-27', 0, 0, 0, 148, 1, 2, 3, 0, 0, 0, 0, 3, 0, 26.1),
(1041, 66, 1, '1983-09-11', 0, 'SEA', 'L 10-17', 0, 0, 0, 140, 0, 2, 16, 0, 0, 0, 0, 3, 0, 20.6),
(1042, 66, 2, '1988-10-02', 0, 'KC', 'T 17-17', 0, 0, 0, 154, 0, 3, 23, 0, 0, 0, 0, 3, 0, 23.7),
(1043, 66, 3, '1985-11-03', 1, 'IND', 'W 35-17', 0, 0, 0, 149, 1, 4, 18, 0, 0, 0, 0, 3, 0, 29.7),
(1044, 66, 4, '1983-09-18', 1, 'NE', 'L 13-23', 0, 0, 0, 33, 0, 4, 26, 0, 0, 0, 0, 0, 0, 9.9),
(1045, 66, 5, '1985-10-27', 0, 'SEA', 'W 17-14', 0, 0, 0, 151, 0, 2, 28, 1, 0, 0, 0, 3, 0, 28.9),
(1046, 66, 6, '1984-09-06', 0, 'PIT', 'L 17-23', 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3),
(1047, 66, 7, '1986-10-26', 0, 'NO', 'W 28-23', 0, 0, 0, 28, 1, 3, 26, 0, 0, 0, 0, 0, 0, 14.4),
(1048, 66, 8, '1988-09-18', 0, 'HOU', 'W 45-3', 0, 0, 0, 26, 1, 1, 4, 0, 0, 0, 0, 0, 0, 10),
(1049, 66, 9, '1985-09-15', 0, 'BUF', 'W 42-3', 0, 0, 0, 192, 2, 3, 35, 0, 0, 0, 0, 3, 0, 40.7),
(1050, 66, 10, '1987-11-15', 1, 'KC', 'W 16-9', 0, 0, 0, 184, 0, 1, 8, 0, 0, 0, 0, 3, 0, 23.2),
(1051, 66, 11, '1984-11-04', 0, 'MIA', 'L 17-31', 0, 0, 0, 132, 1, 4, 29, 0, 0, 0, 0, 3, 0, 29.1),
(1052, 66, 12, '1987-10-25', 1, 'WAS', 'L 16-17', 0, 0, 0, 16, 0, 2, 8, 0, 0, 0, 0, 0, 0, 4.4),
(1053, 66, 13, '1984-09-16', 0, 'CIN', 'W 43-23', 0, 0, 0, 150, 2, 2, 32, 0, 0, 0, 0, 3, 0, 35.2),
(1054, 66, 14, '1986-12-13', 0, 'PIT', 'L 24-45', 0, 0, 0, 137, 0, 6, 51, 0, 0, 0, 0, 3, 0, 27.8),
(1055, 66, 15, '1988-09-11', 1, 'CLE', 'W 23-3', 0, 0, 0, 28, 0, 3, 32, 0, 0, 0, 0, 0, 0, 9),
(1056, 66, 16, '1985-10-14', 0, 'MIA', 'W 23-7', 0, 0, 0, 173, 0, 3, 46, 0, 0, 0, 0, 3, 0, 27.9),
(1057, 67, 1, '2010-11-14', 1, 'PIT', 'W 39-26', 0, 0, 0, 87, 0, 4, 36, 0, 0, 0, 0, 0, 0, 16.3);
INSERT INTO `legends_player_data` (`rowID`, `playerID`, `gameID`, `game_date`, `is_away`, `opp`, `game_result`, `passYDS`, `passTD`, `passINT`, `rushYDS`, `rushTD`, `rec`, `recYDS`, `recTD`, `krtd`, `prtd`, `passBonus`, `rushBonus`, `recBonus`, `fpts`) VALUES
(1058, 67, 2, '2008-11-09', 0, 'BUF', 'W 20-10', 0, 0, 0, 105, 1, 0, 0, 0, 0, 0, 0, 3, 0, 19.5),
(1059, 67, 3, '2010-09-26', 0, 'BUF', 'W 38-30', 0, 0, 0, 98, 1, 1, 6, 0, 0, 0, 0, 0, 0, 17.4),
(1060, 67, 4, '2010-11-21', 0, 'IND', 'W 31-28', 0, 0, 0, 96, 1, 1, 4, 0, 0, 0, 0, 0, 0, 17),
(1061, 67, 5, '2011-11-27', 1, 'PHI', 'W 38-20', 0, 0, 0, 44, 2, 0, 0, 0, 0, 0, 0, 0, 0, 16.4),
(1062, 67, 6, '2010-10-17', 0, 'BAL', 'W 23-20', 0, 0, 0, 20, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8),
(1063, 67, 7, '2010-10-31', 0, 'MIN', 'W 28-18', 0, 0, 0, 112, 2, 1, 11, 0, 0, 0, 0, 3, 0, 28.3),
(1064, 67, 8, '2011-11-21', 0, 'KC', 'W 34-3', 0, 0, 0, 81, 0, 1, 25, 0, 0, 0, 0, 0, 0, 11.6),
(1065, 67, 9, '2010-12-12', 1, 'CHI', 'W 36-7', 0, 0, 0, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.7),
(1066, 67, 10, '2010-12-26', 1, 'BUF', 'W 34-3', 0, 0, 0, 104, 0, 1, 3, 0, 0, 0, 0, 3, 0, 14.7),
(1067, 67, 11, '2011-10-09', 0, 'NYJ', 'W 30-21', 0, 0, 0, 136, 2, 1, 13, 0, 0, 0, 0, 3, 0, 30.9),
(1068, 67, 12, '2010-09-19', 1, 'NYJ', 'L 14-28', 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.9),
(1069, 67, 13, '2011-01-02', 0, 'MIA', 'W 38-7', 0, 0, 0, 80, 1, 1, 6, 0, 0, 0, 0, 0, 0, 15.6),
(1070, 67, 14, '2010-10-24', 1, 'SD', 'W 23-20', 0, 0, 0, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8.4),
(1071, 67, 15, '2011-12-18', 1, 'DEN', 'W 41-23', 0, 0, 0, 17, 1, 2, 32, 0, 0, 0, 0, 0, 0, 12.9),
(1072, 67, 16, '2011-09-25', 1, 'BUF', 'L 31-34', 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.8),
(1073, 68, 1, '2006-11-26', 0, 'CHI', 'W 17-13', 0, 0, 0, 33, 1, 4, 45, 0, 0, 0, 0, 0, 0, 17.8),
(1074, 68, 2, '2009-11-08', 0, 'MIA', 'W 27-17', 0, 0, 0, 82, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14.2),
(1075, 68, 3, '2007-09-23', 0, 'BUF', 'W 38-7', 0, 0, 0, 103, 0, 0, 0, 0, 0, 0, 0, 3, 0, 13.3),
(1076, 68, 4, '2009-12-13', 0, 'CAR', 'W 20-10', 0, 0, 0, 94, 0, 2, 17, 0, 0, 0, 0, 0, 0, 13.1),
(1077, 68, 5, '2007-12-23', 0, 'MIA', 'W 28-7', 0, 0, 0, 156, 1, 0, 0, 0, 0, 0, 0, 3, 0, 24.6),
(1078, 68, 6, '2006-10-01', 1, 'CIN', 'W 38-13', 0, 0, 0, 125, 2, 1, 15, 0, 0, 0, 0, 3, 0, 30),
(1079, 68, 7, '2009-11-15', 1, 'IND', 'L 34-35', 0, 0, 0, 31, 1, 2, 15, 0, 0, 0, 0, 0, 0, 12.6),
(1080, 68, 8, '2006-09-10', 0, 'BUF', 'W 19-17', 0, 0, 0, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.6),
(1081, 68, 9, '2009-09-14', 0, 'BUF', 'W 25-24', 0, 0, 0, 32, 0, 2, 9, 0, 0, 0, 0, 0, 0, 6.1),
(1082, 68, 10, '2006-11-19', 1, 'GB', 'W 35-0', 0, 0, 0, 82, 0, 4, 34, 1, 0, 0, 0, 0, 0, 21.6),
(1083, 68, 11, '2009-10-18', 0, 'TEN', 'W 59-0', 0, 0, 0, 123, 1, 3, 10, 0, 0, 0, 0, 3, 0, 25.3),
(1084, 68, 12, '2007-12-16', 0, 'NYJ', 'W 20-10', 0, 0, 0, 104, 1, 0, 0, 0, 0, 0, 0, 3, 0, 19.4),
(1085, 68, 13, '2009-12-20', 1, 'BUF', 'W 17-10', 0, 0, 0, 81, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14.1),
(1086, 68, 14, '2008-10-05', 1, 'SF', 'W 30-21', 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.6),
(1087, 68, 15, '2006-09-24', 0, 'DEN', 'L 7-17', 0, 0, 0, 18, 0, 5, 61, 0, 0, 0, 0, 0, 0, 12.9),
(1088, 68, 16, '2007-11-25', 0, 'PHI', 'W 31-28', 0, 0, 0, 31, 1, 0, 0, 0, 0, 0, 0, 0, 0, 9.1),
(1089, 69, 1, '1983-01-02', 1, 'SD', 'W 41-34', 0, 0, 0, 126, 2, 3, 40, 0, 0, 0, 0, 3, 0, 34.6),
(1090, 69, 2, '1985-10-06', 0, 'KC', 'W 19-10', 0, 0, 0, 126, 0, 3, 24, 0, 0, 0, 0, 3, 0, 21),
(1091, 69, 3, '1986-12-21', 0, 'IND', 'L 24-30', 0, 0, 0, 31, 0, 3, 12, 0, 0, 0, 0, 0, 0, 7.3),
(1092, 69, 4, '1985-11-17', 0, 'CIN', 'W 13-6', 0, 0, 0, 135, 0, 6, 54, 1, 0, 0, 0, 3, 0, 33.9),
(1093, 69, 5, '1988-10-16', 1, 'KC', 'W 27-17', 0, 0, 0, 20, 1, 1, 7, 0, 0, 0, 0, 0, 0, 9.7),
(1094, 69, 6, '1987-10-25', 0, 'SEA', 'L 13-35', 0, 0, 0, 29, 0, 3, 14, 0, 0, 0, 0, 0, 0, 7.3),
(1095, 69, 7, '1982-12-05', 0, 'SEA', 'W 28-23', 0, 0, 0, 156, 2, 2, 14, 0, 0, 0, 0, 3, 0, 34),
(1096, 69, 8, '1983-10-30', 0, 'SEA', 'L 21-34', 0, 0, 0, 30, 1, 8, 104, 0, 0, 0, 0, 0, 3, 30.4),
(1097, 69, 9, '1990-12-02', 1, 'DEN', 'W 23-20', 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.2),
(1098, 69, 10, '1987-09-13', 1, 'GB', 'W 20-0', 0, 0, 0, 136, 1, 2, 0, 0, 0, 0, 0, 3, 0, 24.6),
(1099, 69, 11, '1985-12-23', 1, 'LAR', 'W 16-6', 0, 0, 0, 123, 0, 8, 25, 0, 0, 0, 0, 3, 0, 25.8),
(1100, 69, 12, '1985-12-01', 1, 'ATL', 'W 34-24', 0, 0, 0, 156, 0, 2, 42, 1, 0, 0, 0, 3, 0, 30.8),
(1101, 69, 13, '1985-12-08', 1, 'DEN', 'W 17-14', 0, 0, 0, 135, 1, 5, 21, 0, 0, 0, 0, 3, 0, 29.6),
(1102, 69, 14, '1982-12-26', 0, 'DEN', 'W 27-10', 0, 0, 0, 16, 0, 5, 91, 2, 0, 0, 0, 0, 0, 27.7),
(1103, 69, 15, '1984-12-02', 1, 'MIA', 'W 45-34', 0, 0, 0, 155, 3, 1, 10, 0, 0, 0, 0, 3, 0, 38.5),
(1104, 69, 16, '1985-11-24', 0, 'DEN', 'W 31-28', 0, 0, 0, 173, 1, 4, 49, 0, 0, 0, 0, 3, 0, 35.2),
(1105, 70, 1, '1989-12-10', 0, 'AZ', 'W 16-14', 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 3, 0, 14.4),
(1106, 70, 2, '1989-10-29', 0, 'WAS', 'W 37-24', 0, 0, 0, 144, 1, 0, 0, 0, 0, 0, 0, 3, 0, 23.4),
(1107, 70, 3, '1990-12-16', 0, 'CIN', 'W 24-7', 0, 0, 0, 117, 0, 0, 0, 0, 0, 0, 0, 3, 0, 14.7),
(1108, 70, 4, '1990-12-02', 1, 'DEN', 'W 23-20', 0, 0, 0, 117, 2, 0, 0, 0, 0, 0, 0, 3, 0, 26.7),
(1109, 70, 5, '1987-11-30', 1, 'SEA', 'W 37-14', 0, 0, 0, 221, 2, 1, 14, 1, 0, 0, 0, 3, 0, 45.5),
(1110, 70, 6, '1989-11-12', 1, 'SD', 'L 12-14', 0, 0, 0, 103, 0, 2, 18, 0, 0, 0, 0, 3, 0, 17.1),
(1111, 70, 7, '1990-12-30', 0, 'SD', 'W 17-12', 0, 0, 0, 28, 0, 3, 31, 0, 0, 0, 0, 0, 0, 8.9),
(1112, 70, 8, '1990-11-19', 1, 'MIA', 'W 13-10', 0, 0, 0, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.9),
(1113, 70, 9, '1987-11-22', 0, 'DEN', 'L 17-23', 0, 0, 0, 98, 2, 5, 20, 0, 0, 0, 0, 0, 0, 28.8),
(1114, 70, 10, '1988-11-28', 1, 'SEA', 'L 27-35', 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.1),
(1115, 70, 11, '1989-12-24', 1, 'NYG', 'L 17-34', 0, 0, 0, 35, 0, 2, 14, 0, 0, 0, 0, 0, 0, 6.9),
(1116, 70, 12, '1989-11-05', 0, 'CIN', 'W 28-7', 0, 0, 0, 159, 2, 0, 0, 0, 0, 0, 0, 3, 0, 30.9),
(1117, 70, 13, '1990-11-04', 1, 'KC', 'L 7-9', 0, 0, 0, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4),
(1118, 70, 14, '1990-11-11', 0, 'GB', 'L 16-29', 0, 0, 0, 25, 0, 2, 24, 0, 0, 0, 0, 0, 0, 6.9),
(1119, 70, 15, '1990-12-10', 1, 'DET', 'W 38-31', 0, 0, 0, 129, 1, 0, 0, 0, 0, 0, 0, 3, 0, 21.9),
(1120, 70, 16, '1989-12-03', 0, 'DEN', 'W 16-13', 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.4),
(1121, 71, 1, '2003-09-28', 1, 'PIT', 'W 30-13', 0, 0, 0, 21, 0, 1, -3, 0, 0, 0, 0, 0, 0, 2.8),
(1122, 71, 2, '2000-10-16', 0, 'JAX', 'W 27-13', 0, 0, 0, 167, 1, 3, 42, 0, 0, 0, 0, 3, 0, 32.9),
(1123, 71, 3, '2000-11-19', 0, 'CLE', 'W 24-10', 0, 0, 0, 134, 3, 2, 15, 0, 0, 0, 0, 3, 0, 37.9),
(1124, 71, 4, '1998-09-27', 0, 'JAX', 'L 22-27', 0, 0, 0, 25, 0, 1, 10, 0, 0, 0, 0, 0, 0, 4.5),
(1125, 71, 5, '2001-10-29', 1, 'PIT', 'L 7-34', 0, 0, 0, 13, 0, 2, 14, 0, 0, 0, 0, 0, 0, 4.7),
(1126, 71, 6, '1999-12-09', 0, 'OAK', 'W 21-14', 0, 0, 0, 199, 2, 6, 50, 0, 0, 0, 0, 3, 0, 45.9),
(1127, 71, 7, '1998-09-13', 0, 'SD', 'L 7-13', 0, 0, 0, 11, 0, 2, 8, 0, 0, 0, 0, 0, 0, 3.9),
(1128, 71, 8, '1997-08-31', 0, 'OAK', 'W 24-21', 0, 0, 0, 216, 1, 0, 0, 0, 0, 0, 0, 3, 0, 30.6),
(1129, 71, 9, '2000-12-17', 1, 'CLE', 'W 24-0', 0, 0, 0, 176, 3, 1, 0, 0, 0, 0, 0, 3, 0, 39.6),
(1130, 71, 10, '2000-10-08', 1, 'CIN', 'W 23-14', 0, 0, 0, 181, 1, 3, 33, 0, 0, 0, 0, 3, 0, 33.4),
(1131, 71, 11, '1998-10-25', 0, 'CHI', 'L 20-23', 0, 0, 0, 137, 0, 3, 22, 0, 0, 0, 0, 3, 0, 21.9),
(1132, 71, 12, '1999-10-17', 1, 'NO', 'W 24-21', 0, 0, 0, 155, 0, 1, 12, 0, 0, 0, 0, 3, 0, 20.7),
(1133, 71, 13, '2001-12-22', 1, 'OAK', 'W 13-10', 0, 0, 0, 23, 0, 2, 15, 0, 0, 0, 0, 0, 0, 5.8),
(1134, 71, 14, '1997-12-21', 0, 'PIT', 'W 16-6', 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.5),
(1135, 71, 15, '1998-11-08', 1, 'TB', 'W 31-22', 0, 0, 0, 134, 1, 1, 0, 0, 0, 0, 0, 3, 0, 23.4),
(1136, 71, 16, '1998-11-01', 1, 'PIT', 'W 41-31', 0, 0, 0, 153, 1, 1, 14, 0, 0, 0, 0, 3, 0, 26.7),
(1137, 72, 1, '2008-09-07', 0, 'JAX', 'W 17-10', 0, 0, 0, 40, 1, 0, 0, 0, 0, 0, 0, 0, 0, 10),
(1138, 72, 2, '2008-10-19', 1, 'KC', 'W 34-10', 0, 0, 0, 149, 3, 1, 7, 0, 0, 0, 0, 3, 0, 37.6),
(1139, 72, 3, '2007-10-07', 0, 'ATL', 'W 20-13', 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.2),
(1140, 72, 4, '2008-09-28', 0, 'MIN', 'W 30-17', 0, 0, 0, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7.3),
(1141, 72, 5, '2008-10-27', 0, 'IND', 'W 31-21', 0, 0, 0, 13, 2, 1, 1, 0, 0, 0, 0, 0, 0, 14.4),
(1142, 72, 6, '2007-11-19', 1, 'DEN', 'L 20-34', 0, 0, 0, 42, 0, 2, 22, 0, 0, 0, 0, 0, 0, 8.4),
(1143, 72, 7, '2008-11-09', 1, 'CHI', 'W 21-14', 0, 0, 0, 14, 1, 1, 6, 0, 0, 0, 0, 0, 0, 9),
(1144, 72, 8, '2007-12-09', 0, 'SD', 'L 17-23', 0, 0, 0, 113, 1, 2, 24, 0, 0, 0, 0, 3, 0, 24.7),
(1145, 72, 9, '2008-11-02', 0, 'GB', 'W 19-16', 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.7),
(1146, 72, 10, '2007-12-16', 1, 'KC', 'W 26-17', 0, 0, 0, 95, 0, 1, 0, 0, 0, 0, 0, 0, 0, 10.5),
(1147, 72, 11, '2007-12-23', 0, 'NYJ', 'W 10-6', 0, 0, 0, 103, 0, 0, 0, 0, 0, 0, 0, 3, 0, 13.3),
(1148, 72, 12, '2008-12-07', 0, 'CLE', 'W 28-9', 0, 0, 0, 99, 1, 1, 2, 0, 0, 0, 0, 0, 0, 17.1),
(1149, 72, 13, '2008-11-27', 1, 'DET', 'W 47-10', 0, 0, 0, 106, 2, 0, 0, 0, 0, 0, 0, 3, 0, 25.6),
(1150, 72, 14, '2007-10-21', 1, 'HOU', 'W 38-36', 0, 0, 0, 104, 1, 4, 22, 0, 0, 0, 0, 3, 0, 25.6),
(1151, 72, 15, '2007-11-04', 0, 'CAR', 'W 20-7', 0, 0, 0, 100, 1, 1, 1, 0, 0, 0, 0, 3, 0, 20.1),
(1152, 72, 16, '2007-10-28', 0, 'OAK', 'W 13-9', 0, 0, 0, 133, 0, 1, 8, 0, 0, 0, 0, 3, 0, 18.1),
(1153, 73, 1, '1973-12-16', 1, 'NYJ', 'W 34-14', 0, 0, 0, 200, 1, 0, 0, 0, 0, 0, 0, 3, 0, 29),
(1154, 73, 2, '1972-10-29', 0, 'PIT', 'L 21-38', 0, 0, 0, 189, 1, 3, 7, 0, 0, 0, 0, 3, 0, 31.6),
(1155, 73, 3, '1975-09-21', 0, 'NYJ', 'W 42-14', 0, 0, 0, 173, 2, 1, 5, 0, 0, 0, 0, 3, 0, 33.8),
(1156, 73, 4, '1970-09-27', 0, 'LAR', 'L 0-19', 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.4),
(1157, 73, 5, '1973-12-09', 0, 'NE', 'W 37-13', 0, 0, 0, 219, 1, 0, 0, 0, 0, 0, 0, 3, 0, 30.9),
(1158, 73, 6, '1975-11-17', 1, 'CIN', 'L 24-33', 0, 0, 0, 197, 2, 2, 21, 0, 0, 0, 0, 3, 0, 38.8),
(1159, 73, 7, '1976-11-25', 1, 'DET', 'L 14-27', 0, 0, 0, 273, 2, 0, 0, 0, 0, 0, 0, 3, 0, 42.3),
(1160, 73, 8, '1969-10-26', 1, 'MIA', 'L 6-24', 0, 0, 0, 12, 0, 4, 60, 0, 0, 0, 0, 0, 0, 11.2),
(1161, 73, 9, '1975-09-28', 1, 'PIT', 'W 30-21', 0, 0, 0, 227, 1, 0, 0, 0, 0, 0, 0, 3, 0, 31.7),
(1162, 73, 10, '1976-12-05', 1, 'MIA', 'L 27-45', 0, 0, 0, 203, 1, 2, 12, 0, 0, 0, 0, 3, 0, 32.5),
(1163, 73, 11, '1975-12-14', 1, 'NE', 'W 34-14', 0, 0, 0, 185, 1, 2, 28, 0, 0, 0, 0, 3, 0, 32.3),
(1164, 73, 12, '1971-12-12', 0, 'HOU', 'L 14-20', 0, 0, 0, 29, 1, 1, 14, 0, 0, 0, 0, 0, 0, 11.3),
(1165, 73, 13, '1971-09-19', 0, 'DAL', 'L 37-49', 0, 0, 0, 25, 1, 1, 4, 0, 0, 0, 0, 0, 0, 9.9),
(1166, 73, 14, '1973-09-16', 1, 'NE', 'W 31-13', -3, 0, 0, 250, 2, 0, 0, 0, 0, 0, 0, 3, 0, 39.88),
(1167, 73, 15, '1969-10-05', 1, 'HOU', 'L 14-28', 0, 0, 0, 27, 0, 3, 32, 0, 0, 0, 0, 0, 0, 8.9),
(1168, 73, 16, '1972-12-03', 1, 'BAL', 'L 7-35', 0, 0, 0, 26, 1, 6, 62, 0, 0, 0, 0, 0, 0, 20.8),
(1169, 74, 1, '1990-10-28', 1, 'NE', 'W 27-10', 0, 0, 0, 136, 1, 1, 9, 0, 0, 0, 0, 3, 0, 24.5),
(1170, 74, 2, '1989-10-29', 0, 'MIA', 'W 31-17', 0, 0, 0, 148, 1, 2, 21, 0, 0, 0, 0, 3, 0, 27.9),
(1171, 74, 3, '1997-09-07', 1, 'NYJ', 'W 28-22', 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7.8),
(1172, 74, 4, '1993-11-28', 1, 'KC', 'L 7-23', 0, 0, 0, 25, 0, 6, 44, 0, 0, 0, 0, 0, 0, 12.9),
(1173, 74, 5, '1990-12-23', 0, 'MIA', 'W 24-14', 0, 0, 0, 154, 1, 2, 29, 0, 0, 0, 0, 3, 0, 29.3),
(1174, 74, 6, '1997-09-14', 1, 'KC', 'L 16-22', 0, 0, 0, 17, 0, 4, 23, 0, 0, 0, 0, 0, 0, 8),
(1175, 74, 7, '1991-09-01', 0, 'MIA', 'W 35-31', 0, 0, 0, 165, 1, 8, 103, 1, 0, 0, 0, 3, 3, 52.8),
(1176, 74, 8, '1990-09-24', 1, 'NYJ', 'W 30-7', 0, 0, 0, 214, 0, 3, 5, 0, 0, 0, 0, 3, 0, 27.9),
(1177, 74, 9, '1992-11-08', 0, 'PIT', 'W 28-20', 0, 0, 0, 155, 1, 4, 30, 0, 0, 0, 0, 3, 0, 31.5),
(1178, 74, 10, '1992-10-26', 1, 'NYJ', 'W 24-20', 0, 0, 0, 142, 0, 3, 22, 1, 0, 0, 0, 3, 0, 28.4),
(1179, 74, 11, '1996-09-08', 0, 'NE', 'W 17-10', 0, 0, 0, 22, 1, 1, 6, 0, 0, 0, 0, 0, 0, 9.8),
(1180, 74, 12, '1995-12-17', 0, 'MIA', 'W 23-20', 0, 0, 0, 148, 1, 1, 11, 1, 0, 0, 0, 3, 0, 31.9),
(1181, 74, 13, '1990-11-18', 0, 'NE', 'W 14-0', 0, 0, 0, 165, 2, 1, 5, 0, 0, 0, 0, 3, 0, 33),
(1182, 74, 14, '1991-11-18', 1, 'MIA', 'W 41-27', 0, 0, 0, 135, 1, 3, 40, 1, 0, 0, 0, 3, 0, 35.5),
(1183, 74, 15, '1995-09-17', 0, 'IND', 'W 20-14', 0, 0, 0, 25, 1, 2, 7, 0, 0, 0, 0, 0, 0, 11.2),
(1184, 74, 16, '1992-11-01', 0, 'NE', 'W 16-7', 0, 0, 0, 29, 0, 5, 45, 0, 0, 0, 0, 0, 0, 12.4),
(1185, 75, 1, '2000-10-01', 1, 'DET', 'W 31-24', 0, 0, 0, 134, 1, 2, 19, 0, 0, 0, 0, 3, 0, 26.3),
(1186, 75, 2, '1998-10-25', 1, 'DET', 'W 34-13', 0, 0, 0, 134, 1, 0, 0, 0, 0, 0, 0, 3, 0, 22.4),
(1187, 75, 3, '2000-12-24', 1, 'IND', 'L 10-31', 0, 0, 0, 37, 0, 1, 3, 0, 0, 0, 0, 0, 0, 5),
(1188, 75, 4, '1996-10-13', 1, 'TB', 'L 13-24', 0, 0, 0, 133, 1, 0, 0, 0, 0, 0, 0, 3, 0, 22.3),
(1189, 75, 5, '1998-11-08', 0, 'NO', 'W 31-24', 0, 0, 0, 137, 1, 1, 9, 0, 0, 0, 0, 3, 0, 24.6),
(1190, 75, 6, '2000-11-23', 1, 'DAL', 'W 27-15', 0, 0, 0, 148, 1, 1, -6, 0, 0, 0, 0, 3, 0, 24.2),
(1191, 75, 7, '2000-12-17', 0, 'GB', 'L 28-33', 0, 0, 0, 26, 0, 3, 16, 0, 0, 0, 0, 0, 0, 7.2),
(1192, 75, 8, '1999-09-19', 0, 'OAK', 'L 17-22', 0, 0, 0, 24, 0, 1, 6, 0, 0, 0, 0, 0, 0, 4),
(1193, 75, 9, '1998-11-22', 0, 'GB', 'W 28-14', 0, 0, 0, 27, 0, 2, 10, 0, 0, 0, 0, 0, 0, 5.7),
(1194, 75, 10, '2000-10-15', 1, 'CHI', 'W 28-16', 0, 0, 0, 170, 1, 1, 7, 0, 0, 0, 0, 3, 0, 27.7),
(1195, 75, 11, '1997-10-26', 1, 'TB', 'W 10-6', 0, 0, 0, 30, 0, 2, 10, 0, 0, 0, 0, 0, 0, 6),
(1196, 75, 12, '1997-08-31', 1, 'BUF', 'W 34-13', 0, 0, 0, 169, 1, 1, 5, 0, 0, 0, 0, 3, 0, 27.4),
(1197, 75, 13, '1998-09-13', 1, 'LAR', 'W 38-31', 0, 0, 0, 179, 2, 3, 7, 0, 0, 0, 0, 3, 0, 36.6),
(1198, 75, 14, '1999-12-26', 1, 'NYG', 'W 34-17', 0, 0, 0, 146, 1, 1, 9, 0, 0, 0, 0, 3, 0, 25.5),
(1199, 75, 15, '1998-09-20', 0, 'DET', 'W 29-6', 0, 0, 0, 39, 0, 2, 10, 0, 0, 0, 0, 0, 0, 6.9),
(1200, 75, 16, '1997-12-21', 0, 'IND', 'W 39-28', 0, 0, 0, 160, 0, 2, 15, 0, 0, 0, 0, 3, 0, 22.5),
(1201, 76, 1, '1991-10-13', 0, 'AZ', 'W 34-7', 0, 0, 0, 30, 1, 2, 12, 0, 0, 0, 0, 0, 0, 12.2),
(1202, 76, 2, '1990-12-09', 1, 'NYG', 'L 15-23', 0, 0, 0, 78, 0, 2, 19, 0, 0, 0, 0, 0, 0, 11.7),
(1203, 76, 3, '1991-09-01', 1, 'CHI', 'L 6-10', 0, 0, 0, 86, 0, 3, 11, 0, 0, 0, 0, 0, 0, 12.7),
(1204, 76, 4, '1989-12-03', 0, 'CHI', 'W 27-16', 0, 0, 0, 36, 1, 2, 22, 0, 0, 0, 0, 0, 0, 13.8),
(1205, 76, 5, '1990-12-02', 0, 'GB', 'W 23-7', 0, 0, 0, 35, 0, 3, 26, 0, 0, 0, 0, 0, 0, 9.1),
(1206, 76, 6, '1991-09-22', 1, 'NO', 'L 0-26', 0, 0, 0, 15, 0, 2, 10, 0, 0, 0, 0, 0, 0, 4.5),
(1207, 76, 7, '1991-09-08', 1, 'ATL', 'W 20-19', 0, 0, 0, 125, 0, 2, 2, 0, 0, 0, 0, 3, 0, 17.7),
(1208, 76, 8, '1990-11-18', 1, 'SEA', 'W 24-21', 0, 0, 0, 99, 1, 4, 29, 0, 0, 0, 0, 0, 0, 22.8),
(1209, 76, 9, '1991-12-08', 1, 'TB', 'W 26-24', 0, 0, 0, 126, 1, 0, 0, 0, 0, 0, 0, 3, 0, 21.6),
(1210, 76, 10, '1990-09-16', 0, 'NO', 'W 32-3', 0, 0, 0, 39, 0, 5, 23, 1, 0, 0, 0, 0, 0, 17.2),
(1211, 76, 11, '1991-10-27', 1, 'AZ', 'W 28-0', 0, 0, 0, 79, 3, 1, 4, 0, 0, 0, 0, 0, 0, 27.3),
(1212, 76, 12, '1991-09-29', 0, 'DEN', 'L 6-13', 0, 0, 0, 103, 0, 3, 17, 0, 0, 0, 0, 3, 0, 18),
(1213, 76, 13, '1989-10-22', 1, 'DET', 'W 20-7', 0, 0, 0, 89, 1, 3, 7, 0, 0, 0, 0, 0, 0, 18.6),
(1214, 76, 14, '1991-11-17', 1, 'GB', 'W 35-21', 0, 0, 0, 95, 1, 1, 7, 0, 0, 0, 0, 0, 0, 17.2),
(1215, 76, 15, '1990-09-30', 0, 'TB', 'L 20-23', 0, 0, 0, 8, 0, 1, 16, 0, 0, 0, 0, 0, 0, 3.4),
(1216, 76, 16, '1989-10-15', 0, 'GB', 'W 26-14', 0, 0, 0, 148, 0, 1, 7, 0, 0, 0, 0, 3, 0, 19.5),
(1217, 77, 1, '1997-10-19', 0, 'SF', 'L 28-35', 27, 1, 0, 19, 0, 2, 28, 0, 0, 0, 0, 0, 0, 11.78),
(1218, 77, 2, '1998-10-18', 0, 'NO', 'W 31-23', 0, 0, 0, 132, 1, 1, 7, 0, 0, 0, 0, 3, 0, 23.9),
(1219, 77, 3, '1998-12-20', 1, 'DET', 'W 24-17', 0, 0, 0, 147, 1, 1, 8, 1, 0, 0, 0, 3, 0, 31.5),
(1220, 77, 4, '1998-11-01', 0, 'LAR', 'W 37-15', 0, 0, 0, 172, 2, 2, 31, 1, 0, 0, 0, 3, 0, 43.3),
(1221, 77, 5, '1998-09-27', 1, 'SF', 'L 20-31', 0, 0, 0, 123, 1, 2, 43, 0, 0, 0, 0, 3, 0, 27.6),
(1222, 77, 6, '1998-12-06', 0, 'IND', 'W 28-21', 0, 0, 0, 122, 1, 4, 58, 0, 0, 0, 0, 3, 0, 31),
(1223, 77, 7, '1998-11-29', 1, 'LAR', 'W 21-10', 0, 0, 0, 188, 1, 2, 9, 0, 0, 0, 0, 3, 0, 30.7),
(1224, 77, 8, '2000-10-08', 0, 'NYG', 'L 6-13', 0, 0, 0, 12, 0, 1, 12, 0, 0, 0, 0, 0, 0, 3.4),
(1225, 77, 9, '1996-11-10', 1, 'LAR', 'L 16-59', 0, 0, 0, 23, 0, 2, 11, 1, 0, 0, 0, 0, 0, 11.4),
(1226, 77, 10, '1997-12-21', 1, 'AZ', 'L 26-29', 0, 0, 1, 152, 0, 4, 36, 0, 0, 0, 0, 3, 0, 24.8),
(1227, 77, 11, '2000-11-12', 1, 'DET', 'L 10-13', 0, 0, 0, 119, 1, 5, 36, 0, 0, 0, 0, 3, 0, 29.5),
(1228, 77, 12, '1998-12-13', 1, 'NO', 'W 27-17', 0, 0, 0, 148, 0, 1, 4, 0, 0, 0, 0, 3, 0, 19.2),
(1229, 77, 13, '1997-08-31', 1, 'DET', 'L 17-28', 0, 0, 0, 33, 1, 2, 26, 0, 0, 0, 0, 0, 0, 13.9),
(1230, 77, 14, '1997-11-02', 0, 'LAR', 'W 34-31', 0, 0, 0, 162, 1, 0, 0, 0, 0, 0, 0, 3, 0, 25.2),
(1231, 77, 15, '2000-11-26', 1, 'OAK', 'L 14-41', 0, 0, 0, 26, 1, 2, 21, 0, 0, 0, 0, 0, 0, 12.7),
(1232, 77, 16, '1996-11-17', 0, 'NO', 'W 17-15', 0, 0, 0, 35, 0, 4, 21, 0, 0, 0, 0, 0, 0, 9.6),
(1233, 78, 1, '2010-11-21', 1, 'LAR', 'W 34-17', 0, 0, 0, 131, 1, 1, -4, 0, 0, 0, 0, 3, 0, 22.7),
(1234, 78, 2, '2011-10-16', 0, 'CAR', 'W 31-17', 0, 0, 0, 139, 2, 1, 8, 0, 0, 0, 0, 3, 0, 30.7),
(1235, 78, 3, '2010-10-10', 1, 'CLE', 'W 20-10', 0, 0, 0, 140, 0, 0, 0, 0, 0, 0, 0, 3, 0, 17),
(1236, 78, 4, '2012-11-11', 1, 'NO', 'L 27-31', 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.5),
(1237, 78, 5, '2009-11-08', 0, 'WAS', 'W 31-17', 0, 0, 0, 166, 2, 2, 14, 0, 0, 0, 0, 3, 0, 35),
(1238, 78, 6, '2012-01-01', 0, 'TB', 'W 45-24', 0, 0, 0, 172, 2, 0, 0, 0, 0, 0, 0, 3, 0, 32.2),
(1239, 78, 7, '2009-11-29', 0, 'TB', 'W 20-17', 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.3),
(1240, 78, 8, '2008-12-28', 0, 'LAR', 'W 31-27', 0, 0, 0, 208, 1, 0, 0, 0, 0, 0, 0, 3, 0, 29.8),
(1241, 78, 9, '2008-12-14', 0, 'TB', 'W 13-10', 0, 0, 0, 152, 1, 2, 30, 0, 0, 0, 0, 3, 0, 29.2),
(1242, 78, 10, '2012-09-09', 1, 'KC', 'W 40-24', 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.2),
(1243, 78, 11, '2009-11-02', 1, 'NO', 'L 27-35', 0, 0, 0, 151, 1, 0, 0, 0, 0, 0, 0, 3, 0, 24.1),
(1244, 78, 12, '2011-09-25', 1, 'TB', 'L 13-16', 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2),
(1245, 78, 13, '2012-11-25', 1, 'TB', 'W 24-23', 0, 0, 0, 17, 1, 3, 13, 0, 0, 0, 0, 0, 0, 12),
(1246, 78, 14, '2008-09-07', 0, 'DET', 'W 34-21', 0, 0, 0, 220, 2, 1, 6, 0, 0, 0, 0, 3, 0, 38.6),
(1247, 78, 15, '2008-11-02', 1, 'OAK', 'W 24-0', 0, 0, 0, 139, 0, 0, 0, 0, 0, 0, 0, 3, 0, 16.9),
(1248, 78, 16, '2009-10-18', 0, 'CHI', 'W 21-14', 0, 0, 0, 30, 1, 2, 16, 0, 0, 0, 0, 0, 0, 12.6),
(1249, 79, 1, '2007-09-30', 0, 'OAK', 'L 17-35', 0, 0, 0, 134, 1, 6, 73, 0, 0, 0, 0, 3, 0, 35.7),
(1250, 79, 2, '2009-10-04', 0, 'BUF', 'W 38-10', 0, 0, 0, 115, 2, 0, 0, 0, 0, 0, 0, 3, 0, 26.5),
(1251, 79, 3, '2006-11-05', 1, 'CHI', 'W 31-13', 0, 0, 0, 157, 0, 2, 33, 0, 0, 0, 0, 3, 0, 24),
(1252, 79, 4, '2009-09-21', 0, 'IND', 'L 23-27', 0, 0, 0, 136, 2, 0, 0, 0, 0, 0, 0, 3, 0, 28.6),
(1253, 79, 5, '2006-12-31', 1, 'IND', 'L 22-27', 0, 0, 0, 115, 0, 1, 10, 0, 0, 0, 0, 3, 0, 16.5),
(1254, 79, 6, '2007-10-07', 1, 'HOU', 'L 19-22', 0, 0, 0, 114, 1, 5, 39, 0, 0, 0, 0, 3, 0, 29.3),
(1255, 79, 7, '2009-11-01', 1, 'NYJ', 'W 30-25', 0, 0, 0, 27, 0, 1, 2, 0, 0, 0, 0, 0, 0, 3.9),
(1256, 79, 8, '2008-10-05', 0, 'SD', 'W 17-10', 0, 0, 0, 125, 1, 1, 8, 0, 0, 0, 0, 3, 0, 23.3),
(1257, 79, 9, '2005-09-25', 0, 'CAR', 'W 27-24', 0, 0, 0, 132, 1, 3, 15, 0, 0, 0, 0, 3, 0, 26.7),
(1258, 79, 10, '2008-09-14', 1, 'AZ', 'L 10-31', 0, 0, 0, 25, 1, 2, 19, 0, 0, 0, 0, 0, 0, 12.4),
(1259, 79, 11, '2008-10-19', 0, 'BAL', 'L 13-27', 0, 0, 0, 27, 0, 1, 1, 0, 0, 0, 0, 0, 0, 3.8),
(1260, 79, 12, '2010-10-04', 0, 'NE', 'L 14-41', 0, 0, 0, 27, 0, 4, 29, 0, 0, 0, 0, 0, 0, 9.6),
(1261, 79, 13, '2006-11-19', 0, 'MIN', 'W 24-20', 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.5),
(1262, 79, 14, '2006-10-15', 1, 'NYJ', 'L 17-20', 0, 0, 0, 127, 1, 0, 0, 0, 0, 0, 0, 3, 0, 21.7),
(1263, 79, 15, '2008-09-21', 1, 'NE', 'W 38-13', 19, 1, 0, 113, 4, 1, 9, 0, 0, 0, 0, 3, 0, 44.96),
(1264, 79, 16, '2010-11-14', 0, 'TEN', 'W 29-17', 0, 0, 0, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7.1),
(1265, 80, 1, '1973-10-15', 1, 'CLE', 'W 17-9', 0, 0, 0, 114, 2, 0, 0, 0, 0, 0, 0, 3, 0, 26.4),
(1266, 80, 2, '1973-11-04', 1, 'NYJ', 'W 24-14', 0, 0, 0, 107, 0, 1, 9, 0, 0, 0, 0, 3, 0, 15.6),
(1267, 80, 3, '1969-11-09', 1, 'NE', 'W 17-16', 0, 0, 0, 121, 1, 1, 3, 0, 0, 0, 0, 3, 0, 22.4),
(1268, 80, 4, '1968-11-24', 1, 'NE', 'W 34-10', 0, 0, 0, 31, 0, 2, 8, 1, 0, 0, 0, 0, 0, 11.9),
(1269, 80, 5, '1974-12-02', 0, 'CIN', 'W 24-3', 0, 0, 0, 123, 0, 0, 0, 0, 0, 0, 0, 3, 0, 15.3),
(1270, 80, 6, '1972-10-22', 0, 'BUF', 'W 24-23', 0, 0, 0, 107, 1, 0, 0, 0, 0, 0, 0, 3, 0, 19.7),
(1271, 80, 7, '1972-09-17', 1, 'KC', 'W 20-10', 0, 0, 0, 118, 1, 0, 0, 0, 0, 0, 0, 3, 0, 20.8),
(1272, 80, 8, '1968-09-21', 0, 'OAK', 'L 21-47', 0, 0, 0, 17, 1, 2, 24, 0, 0, 0, 0, 0, 0, 12.1),
(1273, 80, 9, '1970-11-30', 1, 'ATL', 'W 20-7', 0, 0, 0, 108, 1, 1, -11, 0, 0, 0, 0, 3, 0, 19.7),
(1274, 80, 10, '1970-12-06', 0, 'NE', 'W 37-20', 0, 0, 0, 115, 1, 0, 0, 0, 0, 0, 0, 3, 0, 20.5),
(1275, 80, 11, '1970-11-22', 0, 'BAL', 'W 34-17', 0, 0, 0, 30, 0, 1, 5, 0, 0, 0, 0, 0, 0, 4.5),
(1276, 80, 12, '1972-11-27', 0, 'LAR', 'W 31-10', 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 3, 0, 14.4),
(1277, 80, 13, '1970-11-15', 0, 'NO', 'W 21-10', 0, 0, 0, 29, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8.9),
(1278, 80, 14, '1968-09-14', 0, 'HOU', 'L 10-24', 0, 0, 0, 26, 0, 2, -5, 0, 0, 0, 0, 0, 0, 4.1),
(1279, 80, 15, '1968-12-15', 0, 'NYJ', 'L 7-31', 0, 0, 0, 19, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7.9),
(1280, 80, 16, '1971-10-24', 1, 'NYJ', 'W 30-14', 0, 0, 0, 137, 2, 1, 4, 0, 0, 0, 0, 3, 0, 30.1),
(1281, 81, 1, '2004-12-26', 0, 'ATL', 'W 26-13', 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 3, 0, 15.8),
(1282, 81, 2, '2002-12-22', 1, 'CIN', 'L 13-20', 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.6),
(1283, 81, 3, '2003-11-30', 1, 'WAS', 'W 24-20', 0, 0, 0, 165, 0, 4, 31, 0, 0, 0, 0, 3, 0, 26.6),
(1284, 81, 4, '2005-10-09', 1, 'GB', 'L 3-52', 0, 0, 0, 31, 0, 3, 33, 0, 0, 0, 0, 0, 0, 9.4),
(1285, 81, 5, '2006-12-03', 0, 'SF', 'W 34-10', 0, 0, 0, 136, 0, 1, 4, 0, 0, 0, 0, 3, 0, 18),
(1286, 81, 6, '2003-09-21', 1, 'TEN', 'L 12-27', 0, 0, 0, 8, 0, 3, 23, 0, 0, 0, 0, 0, 0, 6.1),
(1287, 81, 7, '2006-10-01', 1, 'CAR', 'L 18-21', 0, 0, 0, 39, 1, 1, 8, 0, 0, 0, 0, 0, 0, 11.7),
(1288, 81, 8, '2003-11-16', 0, 'ATL', 'W 23-20', 0, 0, 0, 173, 2, 9, 64, 0, 0, 0, 0, 3, 0, 47.7),
(1289, 81, 9, '2006-11-05', 1, 'TB', 'W 31-14', 0, 0, 0, 32, 1, 2, 12, 0, 0, 0, 0, 0, 0, 12.4),
(1290, 81, 10, '2005-01-02', 1, 'CAR', 'W 21-18', 0, 0, 0, 140, 1, 1, 14, 0, 0, 0, 0, 3, 0, 25.4),
(1291, 81, 11, '2004-11-14', 0, 'KC', 'W 27-20', 0, 0, 0, 127, 1, 0, 0, 0, 0, 0, 0, 3, 0, 21.7),
(1292, 81, 12, '2005-10-02', 0, 'BUF', 'W 19-7', 0, 0, 0, 130, 0, 2, 16, 0, 0, 0, 0, 3, 0, 19.6),
(1293, 81, 13, '2002-10-20', 0, 'SF', 'W 35-27', 0, 0, 0, 139, 0, 5, 35, 1, 0, 0, 0, 3, 0, 31.4),
(1294, 81, 14, '2002-12-08', 1, 'BAL', 'W 37-25', 0, 0, 0, 127, 3, 3, 10, 0, 0, 0, 0, 3, 0, 37.7),
(1295, 81, 15, '2007-09-06', 1, 'IND', 'L 10-41', 0, 0, 0, 38, 0, 2, 7, 0, 0, 0, 0, 0, 0, 6.5),
(1296, 81, 16, '2003-11-23', 1, 'PHI', 'L 20-33', 0, 0, 0, 184, 2, 4, 48, 0, 0, 0, 0, 3, 0, 42.2),
(1297, 82, 1, '2000-09-17', 1, 'SEA', 'L 10-20', 0, 0, 0, 107, 0, 5, 35, 0, 0, 0, 0, 3, 0, 22.2),
(1298, 82, 2, '2000-01-02', 1, 'CAR', 'L 13-45', 0, 0, 0, 7, 0, 5, 5, 0, 0, 0, 0, 0, 0, 6.2),
(1299, 82, 3, '2001-10-14', 1, 'CAR', 'W 27-25', 0, 0, 0, 147, 1, 4, 31, 0, 0, 0, 0, 3, 0, 30.8),
(1300, 82, 4, '1999-11-07', 0, 'TB', 'L 16-31', 0, 0, 0, 41, 0, 4, 22, 0, 0, 0, 0, 0, 0, 10.3),
(1301, 82, 5, '2000-10-08', 1, 'CHI', 'W 31-10', 0, 0, 0, 128, 1, 4, 57, 0, 0, 0, 0, 3, 0, 31.5),
(1302, 82, 6, '2001-12-23', 1, 'TB', 'L 21-48', 0, 0, 0, 26, 0, 4, 15, 0, 0, 0, 0, 0, 0, 8.1),
(1303, 82, 7, '2001-10-07', 0, 'MIN', 'W 28-15', 0, 0, 0, 136, 1, 5, 42, 0, 0, 0, 0, 3, 0, 31.8),
(1304, 82, 8, '1999-10-17', 0, 'TEN', 'L 21-24', 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.5),
(1305, 82, 9, '1999-10-31', 0, 'CLE', 'L 16-21', 0, 0, 0, 179, 0, 3, 8, 0, 0, 0, 0, 3, 0, 24.7),
(1306, 82, 10, '2001-11-11', 1, 'SF', 'L 27-28', 0, 0, 0, 121, 0, 3, 52, 0, 0, 0, 0, 3, 0, 23.3),
(1307, 82, 11, '1999-10-24', 1, 'NYG', 'L 3-31', 0, 0, 0, 111, 0, 1, -9, 0, 0, 0, 0, 3, 0, 14.2),
(1308, 82, 12, '2002-01-06', 0, 'SF', 'L 0-38', 0, 0, 0, 33, 0, 4, -8, 0, 0, 0, 0, 0, 0, 6.5),
(1309, 82, 13, '2000-10-15', 0, 'CAR', 'W 24-6', 34, 0, 0, 144, 2, 3, 35, 0, 0, 0, 0, 3, 0, 37.26),
(1310, 82, 14, '2000-10-22', 1, 'ATL', 'W 21-19', 0, 0, 0, 156, 3, 4, 37, 0, 0, 0, 0, 3, 0, 44.3),
(1311, 82, 15, '2001-11-18', 0, 'IND', 'W 34-20', 0, 0, 0, 120, 1, 4, 48, 0, 0, 0, 0, 3, 0, 29.8),
(1312, 82, 16, '1999-09-12', 0, 'CAR', 'W 19-10', 0, 0, 0, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4),
(1313, 83, 1, '2002-10-06', 1, 'IND', 'L 21-28', 0, 0, 0, 164, 2, 6, 21, 0, 0, 0, 0, 3, 0, 39.5),
(1314, 83, 2, '2001-10-28', 1, 'DET', 'W 31-27', 0, 0, 0, 184, 2, 3, 18, 1, 0, 0, 0, 3, 0, 44.2),
(1315, 83, 3, '1999-10-31', 0, 'JAX', 'L 10-41', 0, 0, 0, 32, 0, 2, 25, 0, 0, 0, 0, 0, 0, 7.7),
(1316, 83, 4, '2000-11-05', 0, 'BAL', 'L 7-27', 0, 0, 0, 23, 0, 1, 9, 0, 0, 0, 0, 0, 0, 4.2),
(1317, 83, 5, '2002-10-27', 0, 'TEN', 'L 24-30', 0, 0, 0, 138, 1, 0, 0, 0, 0, 0, 0, 3, 0, 22.8),
(1318, 83, 6, '1998-09-20', 0, 'GB', 'L 6-13', 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.8),
(1319, 83, 7, '2000-10-22', 0, 'DEN', 'W 31-21', 0, 0, 0, 278, 2, 0, 0, 0, 0, 0, 0, 3, 0, 42.8),
(1320, 83, 8, '2000-12-03', 0, 'AZ', 'W 24-13', 0, 0, 0, 216, 1, 0, 0, 0, 0, 0, 0, 3, 0, 30.6),
(1321, 83, 9, '2001-10-21', 0, 'CHI', 'L 0-24', 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3),
(1322, 83, 10, '2000-09-24', 1, 'BAL', 'L 0-37', 0, 0, 0, 9, 0, 3, 22, 0, 0, 0, 0, 0, 0, 6.1),
(1323, 83, 11, '1997-12-04', 0, 'TEN', 'W 41-14', 0, 0, 0, 246, 4, 2, 30, 0, 0, 0, 0, 3, 0, 56.6),
(1324, 83, 12, '1999-12-12', 0, 'CLE', 'W 44-28', 0, 0, 0, 192, 3, 2, 20, 0, 0, 0, 0, 3, 0, 44.2),
(1325, 83, 13, '2000-10-29', 1, 'CLE', 'W 12-3', 0, 0, 0, 137, 1, 0, 0, 0, 0, 0, 0, 3, 0, 22.7),
(1326, 83, 14, '1999-10-10', 1, 'CLE', 'W 18-17', 0, 0, 0, 168, 0, 1, 1, 0, 0, 0, 0, 3, 0, 20.9),
(1327, 83, 15, '2001-10-14', 0, 'CLE', 'W 24-14', 0, 0, 0, 140, 1, 3, 16, 0, 0, 0, 0, 3, 0, 27.6),
(1328, 83, 16, '1999-12-26', 1, 'BAL', 'L 0-22', 0, 0, 0, 27, 0, 5, 30, 0, 0, 0, 0, 0, 0, 10.7),
(1329, 84, 1, '2004-10-03', 1, 'PIT', 'L 17-28', 0, 0, 0, 123, 1, 0, 0, 0, 0, 0, 0, 3, 0, 21.3),
(1330, 84, 2, '2006-09-17', 0, 'CLE', 'W 34-17', 0, 0, 0, 145, 2, 2, 3, 0, 0, 0, 0, 3, 0, 31.8),
(1331, 84, 3, '2003-11-09', 0, 'HOU', 'W 34-27', 0, 0, 0, 182, 2, 2, 18, 0, 0, 0, 0, 3, 0, 37),
(1332, 84, 4, '2006-12-24', 1, 'DEN', 'L 23-24', 0, 0, 0, 129, 1, 2, 11, 0, 0, 0, 0, 3, 0, 25),
(1333, 84, 5, '2003-12-14', 0, 'SF', 'W 41-38', 0, 0, 0, 174, 2, 2, 8, 0, 0, 0, 0, 3, 0, 35.2),
(1334, 84, 6, '2004-12-19', 0, 'BUF', 'L 17-33', 0, 0, 0, 130, 1, 0, 0, 0, 0, 0, 0, 3, 0, 22),
(1335, 84, 7, '2003-11-16', 0, 'KC', 'W 24-19', 0, 0, 0, 165, 0, 2, 12, 0, 0, 0, 0, 3, 0, 22.7),
(1336, 84, 8, '2003-12-21', 1, 'LAR', 'L 10-27', 0, 0, 0, 30, 0, 2, 17, 0, 0, 0, 0, 0, 0, 6.7),
(1337, 84, 9, '2006-01-01', 1, 'KC', 'L 3-37', 0, 0, 0, 18, 0, 1, -1, 0, 0, 0, 0, 0, 0, 2.7),
(1338, 84, 10, '2005-12-11', 0, 'CLE', 'W 23-20', 0, 0, 0, 169, 1, 3, 11, 0, 0, 0, 0, 3, 0, 30),
(1339, 84, 11, '2007-12-02', 1, 'PIT', 'L 10-24', 0, 0, 0, 34, 1, 0, 0, 0, 0, 0, 0, 0, 0, 9.4),
(1340, 84, 12, '2005-09-11', 1, 'CLE', 'W 27-13', 0, 0, 0, 126, 1, 2, 12, 0, 0, 0, 0, 3, 0, 24.8),
(1341, 84, 13, '2003-11-30', 1, 'PIT', 'W 24-20', 0, 0, 0, 29, 0, 1, 4, 0, 0, 0, 0, 0, 0, 4.3),
(1342, 84, 14, '2007-09-23', 1, 'SEA', 'L 21-24', 0, 0, 0, 9, 0, 1, 33, 0, 0, 0, 0, 0, 0, 5.2),
(1343, 84, 15, '2004-12-26', 0, 'NYG', 'W 23-22', 0, 0, 0, 31, 1, 2, 13, 0, 0, 0, 0, 0, 0, 12.4),
(1344, 84, 16, '2004-11-28', 0, 'CLE', 'W 58-48', 0, 0, 0, 202, 2, 1, 5, 0, 0, 0, 0, 3, 0, 36.7),
(1345, 85, 1, '2001-12-09', 1, 'DEN', 'L 7-20', 0, 0, 0, 28, 0, 2, 4, 0, 0, 0, 0, 0, 0, 5.2),
(1346, 85, 2, '2004-11-07', 1, 'SF', 'W 42-27', 0, 0, 0, 160, 2, 0, 0, 0, 0, 0, 0, 3, 0, 31),
(1347, 85, 3, '2005-11-06', 1, 'AZ', 'W 33-19', 0, 0, 0, 173, 2, 0, 0, 0, 0, 0, 0, 3, 0, 32.3),
(1348, 85, 4, '2001-10-07', 0, 'JAX', 'W 24-15', 0, 0, 0, 176, 2, 2, 15, 0, 0, 0, 0, 3, 0, 36.1),
(1349, 85, 5, '2002-10-20', 1, 'LAR', 'L 20-37', 0, 0, 0, 30, 0, 1, 16, 0, 0, 0, 0, 0, 0, 5.6),
(1350, 85, 6, '2004-11-14', 1, 'LAR', 'L 12-23', 0, 0, 0, 176, 0, 1, 3, 0, 0, 0, 0, 3, 0, 21.9),
(1351, 85, 7, '2005-11-13', 0, 'LAR', 'W 31-16', 0, 0, 0, 165, 3, 1, 9, 0, 0, 0, 0, 3, 0, 39.4),
(1352, 85, 8, '2004-10-31', 0, 'CAR', 'W 23-17', 0, 0, 0, 195, 1, 3, 13, 1, 0, 0, 0, 3, 0, 38.8),
(1353, 85, 9, '2005-12-18', 1, 'TEN', 'W 28-24', 0, 0, 0, 172, 1, 0, 0, 0, 0, 0, 0, 3, 0, 26.2),
(1354, 85, 10, '2006-11-27', 0, 'GB', 'W 34-24', 0, 0, 0, 201, 0, 0, 0, 0, 0, 0, 0, 3, 0, 23.1),
(1355, 85, 11, '2001-09-30', 1, 'OAK', 'L 14-38', 0, 0, 0, 18, 1, 7, 66, 0, 0, 0, 0, 0, 0, 21.4),
(1356, 85, 12, '2002-11-17', 0, 'DEN', 'L 9-31', 0, 0, 0, 18, 0, 6, 23, 0, 0, 0, 0, 0, 0, 10.1),
(1357, 85, 13, '2007-11-04', 1, 'CLE', 'L 30-33', 0, 0, 0, 32, 0, 1, 1, 0, 0, 0, 0, 0, 0, 4.3),
(1358, 85, 14, '2004-12-26', 0, 'AZ', 'W 24-21', 0, 0, 0, 154, 3, 0, 0, 0, 0, 0, 0, 3, 0, 36.4),
(1359, 85, 15, '2007-10-07', 1, 'PIT', 'L 0-21', 0, 0, 0, 25, 0, 3, 7, 0, 0, 0, 0, 0, 0, 6.2),
(1360, 85, 16, '2001-11-11', 0, 'OAK', 'W 34-27', 0, 0, 0, 266, 3, 1, 7, 0, 0, 0, 0, 3, 0, 49.3),
(1361, 86, 1, '1995-10-29', 1, 'AZ', 'L 14-20', 0, 0, 0, 127, 0, 0, 0, 0, 0, 0, 0, 3, 0, 15.7),
(1362, 86, 2, '1994-09-25', 0, 'PIT', 'W 30-13', 0, 0, 0, 126, 1, 3, 14, 0, 0, 0, 0, 3, 0, 26),
(1363, 86, 3, '1994-11-13', 1, 'DEN', 'L 10-17', 0, 0, 0, 122, 1, 4, 78, 0, 0, 0, 0, 3, 0, 33),
(1364, 86, 4, '1995-11-19', 1, 'WAS', 'W 27-20', 0, 0, 0, 136, 1, 3, -24, 0, 0, 0, 0, 3, 0, 23.2),
(1365, 86, 5, '1992-09-20', 1, 'NE', 'W 10-6', 0, 0, 0, 122, 1, 1, 7, 0, 0, 0, 0, 3, 0, 22.9),
(1366, 86, 6, '1991-10-20', 1, 'PIT', 'W 27-7', 0, 0, 0, 13, 0, 1, -3, 0, 0, 0, 0, 0, 0, 2),
(1367, 86, 7, '1993-12-19', 0, 'AZ', 'L 27-30', 0, 0, 0, 168, 1, 0, 0, 0, 0, 0, 0, 3, 0, 25.8),
(1368, 86, 8, '1995-12-24', 1, 'KC', 'L 3-26', 0, 0, 0, 7, 0, 1, 8, 0, 0, 0, 0, 0, 0, 2.5),
(1369, 86, 9, '1993-09-19', 1, 'NE', 'W 17-14', 0, 0, 0, 174, 1, 0, 0, 0, 0, 0, 0, 3, 0, 26.4),
(1370, 86, 10, '1992-11-22', 0, 'KC', 'L 14-24', 0, 0, 0, 154, 1, 0, 0, 0, 0, 0, 0, 3, 0, 24.4),
(1371, 86, 11, '1996-09-15', 0, 'KC', 'L 17-35', 0, 0, 0, 6, 0, 3, 26, 0, 0, 0, 0, 0, 0, 6.2),
(1372, 86, 12, '1994-12-11', 1, 'HOU', 'W 16-14', 0, 0, 0, 185, 1, 0, 0, 0, 0, 0, 0, 3, 0, 27.5),
(1373, 86, 13, '1996-10-27', 0, 'SD', 'W 32-13', 0, 0, 0, 146, 1, 4, 40, 0, 0, 0, 0, 3, 0, 31.6),
(1374, 86, 14, '1996-10-06', 1, 'MIA', 'W 22-15', 0, 0, 0, 18, 0, 3, 18, 0, 0, 0, 0, 0, 0, 6.6),
(1375, 86, 15, '1997-12-07', 1, 'BAL', 'L 24-31', 0, 0, 0, 20, 0, 1, -1, 0, 0, 0, 0, 0, 0, 2.9),
(1376, 86, 16, '1993-10-24', 0, 'NE', 'W 10-9', 0, 0, 0, 26, 0, 3, 11, 0, 0, 0, 0, 0, 0, 6.7),
(1377, 87, 1, '1998-11-01', 0, 'MIN', 'W 27-24', 0, 0, 0, 115, 1, 4, 49, 0, 0, 0, 0, 3, 0, 29.4),
(1378, 87, 2, '2001-10-14', 1, 'TEN', 'L 28-31', 0, 0, 0, 16, 1, 7, 65, 1, 0, 0, 0, 0, 0, 27.1),
(1379, 87, 3, '1998-11-15', 1, 'JAX', 'L 24-29', 0, 0, 0, 107, 0, 2, 14, 0, 0, 0, 0, 3, 0, 17.1),
(1380, 87, 4, '1997-11-30', 1, 'NYG', 'W 20-8', 0, 0, 0, 120, 0, 2, 49, 0, 0, 0, 0, 3, 0, 21.9),
(1381, 87, 5, '2000-12-03', 0, 'DAL', 'W 27-7', 0, 0, 0, 210, 2, 2, 11, 0, 0, 0, 0, 3, 0, 39.1),
(1382, 87, 6, '2000-10-01', 1, 'WAS', 'L 17-20', 0, 0, 0, 3, 0, 4, 36, 0, 0, 0, 0, 0, 0, 7.9),
(1383, 87, 7, '2000-11-26', 0, 'BUF', 'W 31-17', 0, 0, 0, 106, 2, 1, 23, 0, 0, 0, 0, 3, 0, 28.9),
(1384, 87, 8, '2000-12-18', 0, 'LAR', 'W 38-35', 0, 0, 0, 145, 3, 5, 53, 0, 0, 0, 0, 3, 0, 45.8),
(1385, 87, 9, '1997-09-21', 0, 'MIA', 'W 31-21', 0, 0, 0, 17, 0, 6, 106, 1, 0, 0, 0, 0, 3, 27.3),
(1386, 87, 10, '1997-12-21', 0, 'CHI', 'W 31-15', 0, 0, 0, 119, 0, 3, 18, 0, 0, 0, 0, 3, 0, 19.7),
(1387, 87, 11, '2008-10-12', 0, 'CAR', 'W 27-3', 0, 0, 0, 115, 0, 3, 18, 0, 0, 0, 0, 3, 0, 19.3),
(1388, 87, 12, '1997-09-28', 0, 'AZ', 'W 19-18', 0, 0, 0, 27, 0, 2, 10, 0, 0, 0, 0, 0, 0, 5.7),
(1389, 87, 13, '1997-09-07', 1, 'DET', 'W 24-17', 0, 0, 0, 130, 1, 2, 20, 0, 0, 0, 0, 3, 0, 26),
(1390, 87, 14, '1997-10-05', 1, 'GB', 'L 16-21', 0, 0, 0, 125, 1, 1, 4, 0, 0, 0, 0, 3, 0, 22.9),
(1391, 87, 15, '1999-12-26', 0, 'GB', 'W 29-10', 0, 0, 0, 25, 0, 6, 48, 1, 0, 0, 0, 0, 0, 19.3),
(1392, 87, 16, '1997-10-12', 0, 'DET', 'L 9-27', 0, 0, 0, 9, 0, 3, 71, 1, 0, 0, 0, 0, 0, 17),
(1393, 88, 1, '1994-11-13', 1, 'DET', 'L 9-14', 0, 0, 0, 112, 0, 1, 6, 0, 0, 0, 0, 3, 0, 15.8),
(1394, 88, 2, '1994-12-11', 0, 'LAR', 'W 24-14', 0, 0, 0, 119, 1, 1, 4, 0, 0, 0, 0, 3, 0, 22.3),
(1395, 88, 3, '1996-10-27', 1, 'GB', 'L 7-13', 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.9),
(1396, 88, 4, '1995-11-26', 1, 'GB', 'L 13-35', 0, 0, 0, 11, 1, 1, 17, 0, 0, 0, 0, 0, 0, 9.8),
(1397, 88, 5, '1995-12-03', 1, 'MIN', 'L 17-31', 0, 0, 0, 96, 0, 1, -3, 0, 0, 0, 0, 0, 0, 10.3),
(1398, 88, 6, '1995-09-24', 0, 'WAS', 'W 14-6', 0, 0, 0, 104, 1, 0, 0, 0, 0, 0, 0, 3, 0, 19.4),
(1399, 88, 7, '1995-11-12', 1, 'DET', 'L 24-27', 0, 0, 0, 144, 0, 0, 0, 0, 0, 0, 0, 3, 0, 17.4),
(1400, 88, 8, '1996-12-08', 0, 'WAS', 'W 24-10', 0, 0, 0, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.7),
(1401, 88, 9, '1995-12-17', 1, 'CHI', 'L 10-31', 0, 0, 0, 33, 0, 1, 4, 0, 0, 0, 0, 0, 0, 4.7),
(1402, 88, 10, '1996-12-15', 1, 'MIN', 'L 10-21', 0, 0, 0, 28, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8.8),
(1403, 88, 11, '1995-12-10', 0, 'GB', 'W 13-10', 0, 0, 0, 118, 0, 0, 0, 0, 0, 0, 0, 3, 0, 14.8),
(1404, 88, 12, '1995-11-19', 0, 'JAX', 'W 17-16', 0, 0, 0, 100, 2, 0, 0, 0, 0, 0, 0, 3, 0, 25),
(1405, 88, 13, '1996-11-17', 1, 'SD', 'W 25-17', 0, 0, 0, 24, 1, 2, 5, 0, 0, 0, 0, 0, 0, 10.9),
(1406, 88, 14, '1994-12-04', 0, 'WAS', 'W 26-21', 0, 0, 0, 192, 1, 0, 0, 0, 0, 0, 0, 3, 0, 28.2),
(1407, 88, 15, '1994-11-06', 0, 'CHI', 'L 6-20', 0, 0, 0, 20, 0, 1, 5, 0, 0, 0, 0, 0, 0, 3.5),
(1408, 88, 16, '1994-11-20', 1, 'SEA', 'L 21-22', 0, 0, 0, 111, 0, 1, 7, 0, 0, 0, 0, 3, 0, 15.8),
(1409, 89, 1, '2001-10-21', 1, 'WAS', 'L 14-17', 0, 0, 0, 121, 1, 4, 29, 0, 0, 0, 0, 3, 0, 28),
(1410, 89, 2, '2000-10-15', 1, 'NO', 'L 6-24', 0, 0, 0, 5, 0, 1, 6, 0, 0, 0, 0, 0, 0, 2.1),
(1411, 89, 3, '2000-10-01', 0, 'DAL', 'L 13-16', 0, 0, 0, 86, 1, 6, 48, 0, 0, 0, 0, 0, 0, 25.4),
(1412, 89, 4, '1998-12-13', 0, 'WAS', 'L 25-28', 0, 0, 0, 103, 1, 2, 71, 1, 0, 0, 0, 3, 0, 34.4),
(1413, 89, 5, '2000-09-17', 0, 'ATL', 'L 10-15', 0, 0, 0, 45, 0, 5, 62, 0, 0, 0, 0, 0, 0, 15.7),
(1414, 89, 6, '2000-10-29', 1, 'ATL', 'L 12-13', 0, 0, 0, 23, 0, 4, 51, 0, 0, 0, 0, 0, 0, 11.4),
(1415, 89, 7, '2001-10-14', 0, 'NO', 'L 25-27', 0, 0, 0, 30, 0, 3, 58, 0, 0, 0, 0, 0, 0, 11.8),
(1416, 89, 8, '2000-11-12', 0, 'NO', 'L 10-20', 0, 0, 0, 22, 0, 3, 40, 0, 0, 0, 0, 0, 0, 9.2),
(1417, 89, 9, '2000-09-03', 1, 'WAS', 'L 17-20', 0, 0, 0, 88, 0, 2, 20, 0, 0, 0, 0, 0, 0, 12.8),
(1418, 89, 10, '1999-12-05', 0, 'LAR', 'L 21-34', 0, 0, 0, 42, 0, 3, 17, 0, 0, 0, 0, 0, 0, 8.9),
(1419, 89, 11, '1998-12-27', 1, 'IND', 'W 27-19', 0, 0, 0, 109, 1, 2, 23, 0, 0, 0, 0, 3, 0, 24.2),
(1420, 89, 12, '2000-10-08', 0, 'SEA', 'W 26-3', 0, 0, 0, 103, 0, 4, 38, 0, 0, 0, 0, 3, 0, 21.1),
(1421, 89, 13, '1999-10-03', 1, 'WAS', 'L 36-38', 0, 0, 0, 142, 3, 1, 12, 0, 0, 0, 0, 3, 0, 37.4),
(1422, 89, 14, '1999-11-21', 1, 'CLE', 'W 31-17', 0, 0, 0, 93, 0, 3, 42, 0, 0, 0, 0, 0, 0, 16.5),
(1423, 89, 15, '1997-10-26', 0, 'ATL', 'W 21-12', 0, 0, 0, 104, 2, 0, 0, 0, 0, 0, 0, 3, 0, 25.4),
(1424, 89, 16, '1999-11-28', 0, 'ATL', 'W 34-28', 0, 0, 0, 94, 1, 3, 25, 0, 0, 0, 0, 0, 0, 20.9),
(1425, 90, 1, '1998-10-04', 1, 'ATL', 'L 23-51', 0, 0, 0, 48, 0, 1, 4, 0, 0, 0, 0, 0, 0, 6.2),
(1426, 90, 2, '1998-09-06', 0, 'ATL', 'L 14-19', 0, 0, 0, 40, 0, 1, 15, 0, 0, 0, 0, 0, 0, 6.5),
(1427, 90, 3, '1998-11-08', 1, 'SF', 'L 23-25', 0, 0, 0, 44, 0, 3, 15, 0, 0, 0, 0, 0, 0, 8.9),
(1428, 90, 4, '1997-12-14', 0, 'GB', 'L 10-31', 0, 0, 0, 119, 1, 0, 0, 0, 0, 0, 0, 3, 0, 20.9),
(1429, 90, 5, '1997-12-20', 0, 'LAR', 'L 18-30', 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.8),
(1430, 90, 6, '1998-10-25', 0, 'BUF', 'L 14-30', 0, 0, 0, 74, 0, 1, 3, 0, 0, 0, 0, 0, 0, 8.7),
(1431, 90, 7, '1999-12-26', 1, 'PIT', 'L 20-30', 0, 0, 0, 90, 1, 2, 0, 0, 0, 0, 0, 0, 0, 17),
(1432, 90, 8, '1997-09-14', 1, 'SD', 'W 26-7', 0, 0, 0, 52, 0, 2, 2, 0, 0, 0, 0, 0, 0, 7.4),
(1433, 90, 9, '1997-12-08', 1, 'DAL', 'W 23-13', 0, 0, 0, 138, 0, 1, 7, 0, 0, 0, 0, 3, 0, 18.5),
(1434, 90, 10, '1997-11-23', 1, 'LAR', 'W 16-10', 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.1),
(1435, 90, 11, '1998-09-27', 0, 'GB', 'L 30-37', 0, 0, 0, 52, 0, 2, 10, 0, 0, 0, 0, 0, 0, 8.2),
(1436, 90, 12, '1998-09-13', 1, 'NO', 'L 14-19', 0, 0, 0, 100, 0, 1, 3, 0, 0, 0, 0, 3, 0, 14.3),
(1437, 90, 13, '1997-11-02', 0, 'OAK', 'W 38-14', 0, 0, 0, 147, 3, 2, 11, 0, 0, 0, 0, 3, 0, 38.8),
(1438, 90, 14, '1997-11-30', 0, 'NO', 'L 13-16', 0, 0, 0, 112, 1, 1, 7, 0, 0, 0, 0, 3, 0, 21.9),
(1439, 90, 15, '1998-11-01', 0, 'NO', 'W 31-17', 0, 0, 0, 101, 1, 0, 0, 0, 0, 0, 0, 3, 0, 19.1),
(1440, 90, 16, '1999-11-07', 0, 'PHI', 'W 33-7', 0, 0, 0, 74, 0, 2, 20, 0, 0, 0, 0, 0, 0, 11.4),
(1441, 91, 1, '2009-10-18', 0, 'LAR', 'W 23-20', 0, 0, 0, 133, 3, 5, 45, 0, 0, 0, 0, 3, 0, 43.8),
(1442, 91, 2, '2006-12-10', 0, 'IND', 'W 44-17', 0, 0, 0, 166, 2, 1, 15, 0, 1, 0, 0, 3, 0, 40.1),
(1443, 91, 3, '2007-11-25', 0, 'BUF', 'W 36-14', 0, 0, 0, 10, 1, 2, 16, 0, 0, 0, 0, 0, 0, 10.6),
(1444, 91, 4, '2007-12-09', 0, 'CAR', 'W 37-6', 0, 0, 0, 24, 0, 2, 21, 0, 0, 0, 0, 0, 0, 6.5),
(1445, 91, 5, '2013-09-15', 1, 'OAK', 'L 9-19', 0, 0, 0, 27, 0, 1, 1, 0, 0, 0, 0, 0, 0, 3.8),
(1446, 91, 6, '2010-10-31', 1, 'DAL', 'W 35-17', 0, 0, 0, 135, 0, 2, 13, 0, 0, 0, 0, 3, 0, 19.8),
(1447, 91, 7, '2006-12-24', 0, 'NE', 'L 21-24', 0, 0, 0, 131, 2, 6, 41, 0, 0, 0, 0, 3, 0, 38.2),
(1448, 91, 8, '2010-12-05', 1, 'TEN', 'W 17-6', 0, 0, 0, 186, 0, 1, 4, 0, 0, 0, 0, 3, 0, 23),
(1449, 91, 9, '2012-09-23', 1, 'IND', 'W 22-17', 0, 0, 0, 177, 1, 2, 16, 0, 0, 0, 0, 3, 0, 30.3),
(1450, 91, 10, '2012-01-01', 0, 'IND', 'W 19-13', 0, 0, 0, 169, 0, 1, 4, 0, 0, 0, 0, 3, 0, 21.3),
(1451, 91, 11, '2013-11-17', 0, 'AZ', 'L 14-27', 0, 0, 0, 23, 1, 4, 12, 0, 0, 0, 0, 0, 0, 13.5),
(1452, 91, 12, '2008-10-26', 0, 'CLE', 'L 17-23', 0, 0, 0, 29, 0, 3, 19, 0, 0, 0, 0, 0, 0, 7.8),
(1453, 91, 13, '2010-11-21', 0, 'CLE', 'W 24-20', 0, 0, 1, 133, 1, 3, 87, 0, 0, 0, 0, 3, 0, 33),
(1454, 91, 14, '2008-10-12', 1, 'DEN', 'W 24-17', 0, 0, 0, 125, 2, 2, 23, 0, 0, 0, 0, 3, 0, 31.8),
(1455, 91, 15, '2013-09-29', 0, 'IND', 'L 3-37', 0, 0, 0, 23, 0, 1, 5, 0, 0, 0, 0, 0, 0, 3.8),
(1456, 91, 16, '2007-10-14', 0, 'HOU', 'W 37-17', 0, 0, 0, 125, 2, 4, 59, 0, 0, 0, 0, 3, 0, 37.4),
(1457, 92, 1, '1998-12-13', 0, 'TEN', 'L 13-16', 0, 0, 0, 42, 1, 7, 32, 0, 0, 0, 0, 0, 0, 20.4),
(1458, 92, 2, '2008-10-05', 0, 'PIT', 'L 21-26', 0, 0, 0, 19, 0, 2, 6, 0, 0, 0, 0, 0, 0, 4.5),
(1459, 92, 3, '2004-12-19', 1, 'GB', 'W 28-25', 0, 0, 0, 165, 1, 0, 0, 0, 0, 0, 0, 3, 0, 25.5),
(1460, 92, 4, '2003-12-07', 0, 'HOU', 'W 27-0', 0, 0, 0, 163, 1, 0, 0, 0, 0, 0, 0, 3, 0, 25.3),
(1461, 92, 5, '2000-10-01', 0, 'PIT', 'L 13-24', 0, 0, 0, 24, 0, 4, 14, 0, 0, 0, 0, 0, 0, 7.8),
(1462, 92, 6, '2000-12-03', 0, 'CLE', 'W 48-0', 0, 0, 0, 181, 3, 1, 6, 0, 0, 0, 0, 3, 0, 40.7),
(1463, 92, 7, '2003-12-21', 0, 'NO', 'W 20-19', 0, 0, 0, 194, 1, 2, 31, 0, 0, 0, 0, 3, 0, 33.5),
(1464, 92, 8, '2003-10-12', 0, 'MIA', 'L 10-24', 0, 0, 0, 35, 0, 8, 64, 0, 0, 0, 0, 0, 0, 17.9),
(1465, 92, 9, '2005-12-11', 0, 'IND', 'L 18-26', 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.9),
(1466, 92, 10, '1998-12-06', 0, 'DET', 'W 37-22', 0, 0, 0, 183, 2, 3, 23, 0, 0, 0, 0, 3, 0, 38.6),
(1467, 92, 11, '2008-09-28', 0, 'HOU', 'W 30-27', 0, 0, 0, 25, 0, 3, 21, 0, 0, 0, 0, 0, 0, 7.6),
(1468, 92, 12, '2003-11-09', 0, 'IND', 'W 28-23', 0, 0, 0, 152, 2, 0, 0, 0, 0, 0, 0, 3, 0, 30.2),
(1469, 92, 13, '2004-11-28', 1, 'MIN', 'L 16-27', 0, 0, 0, 147, 0, 1, 13, 0, 0, 0, 0, 3, 0, 20),
(1470, 92, 14, '2002-10-20', 1, 'BAL', 'L 10-17', 0, 0, 0, 151, 1, 8, 46, 0, 0, 0, 0, 3, 0, 36.7),
(1471, 92, 15, '2000-11-19', 1, 'PIT', 'W 34-24', 0, 0, 0, 234, 3, 3, 14, 1, 0, 0, 0, 3, 0, 54.8),
(1472, 92, 16, '2005-10-30', 1, 'LAR', 'L 21-24', 0, 0, 0, 165, 1, 2, -1, 0, 0, 0, 0, 3, 0, 27.4),
(1473, 93, 1, '2004-12-26', 1, 'PIT', 'L 7-20', 0, 0, 0, 26, 1, 2, 16, 0, 0, 0, 0, 0, 0, 12.2),
(1474, 93, 2, '2005-01-02', 0, 'MIA', 'W 30-23', 0, 0, 0, 167, 1, 0, 0, 0, 0, 0, 0, 3, 0, 25.7),
(1475, 93, 3, '2000-11-19', 0, 'DAL', 'W 27-0', 0, 0, 0, 187, 0, 4, 20, 0, 0, 0, 0, 3, 0, 27.7),
(1476, 93, 4, '2005-10-23', 1, 'CHI', 'L 6-10', 0, 0, 0, 34, 0, 2, 6, 0, 0, 0, 0, 0, 0, 6),
(1477, 93, 5, '2004-09-26', 1, 'CIN', 'W 23-9', 0, 0, 0, 186, 1, 1, 46, 0, 0, 0, 0, 3, 0, 33.2),
(1478, 93, 6, '2002-11-10', 0, 'CIN', 'W 38-27', 0, 0, 0, 135, 2, 0, 0, 0, 0, 0, 0, 3, 0, 28.5),
(1479, 93, 7, '2005-11-20', 0, 'PIT', 'W 16-13', 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.8),
(1480, 93, 8, '2002-10-27', 0, 'PIT', 'L 18-31', 0, 0, 0, 34, 0, 5, 50, 0, 0, 0, 0, 0, 0, 13.4),
(1481, 93, 9, '2003-12-21', 1, 'CLE', 'W 35-0', 0, 0, 0, 205, 2, 3, 21, 0, 0, 0, 0, 3, 0, 40.6),
(1482, 93, 10, '2003-12-07', 0, 'CIN', 'W 31-13', 0, 0, 0, 180, 3, 0, 0, 0, 0, 0, 0, 3, 0, 39),
(1483, 93, 11, '2000-11-26', 0, 'CLE', 'W 44-7', 0, 0, 0, 170, 2, 0, 0, 0, 0, 0, 0, 3, 0, 32),
(1484, 93, 12, '2002-10-06', 1, 'CLE', 'W 26-21', 0, 0, 0, 187, 0, 5, 26, 0, 0, 0, 0, 3, 0, 29.3),
(1485, 93, 13, '2000-10-15', 1, 'WAS', 'L 3-10', 0, 0, 0, 34, 0, 3, 4, 0, 0, 0, 0, 0, 0, 6.8),
(1486, 93, 14, '2003-09-14', 0, 'CLE', 'W 33-13', 0, 0, 0, 295, 2, 0, 0, 0, 0, 0, 0, 3, 0, 44.5),
(1487, 93, 15, '2003-10-26', 0, 'DEN', 'W 26-6', 0, 0, 0, 134, 1, 3, 28, 0, 0, 0, 0, 3, 0, 28.2),
(1488, 93, 16, '2005-09-18', 1, 'TEN', 'L 10-25', 0, 0, 0, 9, 0, 4, 32, 0, 0, 0, 0, 0, 0, 8.1),
(1489, 94, 1, '2012-01-01', 1, 'CIN', 'W 24-16', 0, 0, 0, 191, 2, 2, 8, 0, 0, 0, 0, 3, 0, 36.9),
(1490, 94, 2, '2013-11-17', 1, 'CHI', 'L 20-23', 0, 0, 0, 131, 1, 3, 17, 0, 0, 0, 0, 3, 0, 26.8),
(1491, 94, 3, '2013-11-03', 1, 'CLE', 'L 18-24', 0, 0, 0, 17, 0, 3, 21, 0, 0, 0, 0, 0, 0, 6.8),
(1492, 94, 4, '2013-10-13', 0, 'GB', 'L 17-19', 0, 0, 0, 34, 0, 3, 15, 0, 0, 0, 0, 0, 0, 7.9),
(1493, 94, 5, '2010-10-10', 0, 'DEN', 'W 31-17', 0, 0, 0, 133, 2, 4, 26, 0, 0, 0, 0, 3, 0, 34.9),
(1494, 94, 6, '2012-12-09', 1, 'WAS', 'L 28-31', 0, 0, 0, 121, 1, 3, 15, 0, 0, 0, 0, 3, 0, 25.6),
(1495, 94, 7, '2010-12-19', 0, 'NO', 'W 30-24', 0, 0, 0, 153, 1, 5, 80, 1, 0, 0, 0, 3, 0, 43.3),
(1496, 94, 8, '2012-11-11', 0, 'OAK', 'W 55-20', 0, 0, 0, 35, 1, 4, 33, 0, 0, 0, 0, 0, 0, 16.8),
(1497, 94, 9, '2008-11-02', 1, 'CLE', 'W 37-27', 0, 0, 0, 154, 0, 3, 22, 0, 0, 0, 0, 3, 0, 23.6),
(1498, 94, 10, '2013-11-28', 0, 'PIT', 'W 22-20', 0, 0, 0, 32, 0, 6, 38, 0, 0, 0, 0, 0, 0, 13),
(1499, 94, 11, '2013-11-24', 0, 'NYJ', 'W 19-3', 0, 0, 0, 30, 0, 1, -3, 0, 0, 0, 0, 0, 0, 3.7),
(1500, 94, 12, '2011-12-04', 1, 'CLE', 'W 24-10', 0, 0, 0, 204, 1, 2, 10, 0, 0, 0, 0, 3, 0, 32.4),
(1501, 94, 13, '2009-12-13', 0, 'DET', 'W 48-3', 0, 0, 0, 166, 1, 4, 53, 0, 0, 0, 0, 3, 0, 34.9),
(1502, 94, 14, '2013-11-10', 0, 'CIN', 'W 20-17', 0, 0, 0, 30, 0, 6, 26, 0, 0, 0, 0, 0, 0, 11.6),
(1503, 94, 15, '2009-12-27', 1, 'PIT', 'L 20-23', 0, 0, 0, 141, 0, 1, 14, 0, 0, 0, 0, 3, 0, 19.5),
(1504, 94, 16, '2009-09-13', 0, 'KC', 'W 38-24', 0, 0, 0, 108, 0, 2, 12, 0, 0, 0, 0, 3, 0, 17),
(1505, 95, 1, '1982-12-19', 1, 'PHI', 'L 14-35', 0, 0, 0, 26, 0, 2, 6, 0, 0, 0, 0, 0, 0, 5.2),
(1506, 95, 2, '1980-10-19', 0, 'TB', 'W 20-14', 0, 0, 0, 203, 0, 1, 8, 0, 0, 0, 0, 3, 0, 25.1),
(1507, 95, 3, '1980-10-12', 1, 'KC', 'L 20-21', 0, 0, 0, 178, 1, 0, 0, 0, 0, 0, 0, 3, 0, 26.8),
(1508, 95, 4, '1981-12-03', 0, 'CLE', 'W 17-13', 0, 0, 0, 31, 1, 2, 3, 0, 0, 0, 0, 0, 0, 11.4),
(1509, 95, 5, '1979-09-09', 1, 'PIT', 'L 7-38', 0, 0, 0, 38, 0, 1, 4, 0, 0, 0, 0, 0, 0, 5.2),
(1510, 95, 6, '1980-12-21', 0, 'MIN', 'W 20-16', 0, 0, 0, 203, 1, 1, -1, 0, 0, 0, 0, 3, 0, 30.2),
(1511, 95, 7, '1979-11-22', 1, 'DAL', 'W 30-24', 0, 0, 0, 195, 2, 0, 0, 0, 0, 0, 0, 3, 0, 34.5),
(1512, 95, 8, '1980-10-26', 0, 'CIN', 'W 23-3', 0, 0, 0, 202, 2, 0, 0, 0, 0, 0, 0, 3, 0, 35.2),
(1513, 95, 9, '1978-11-20', 0, 'MIA', 'W 35-30', 0, 0, 0, 199, 4, 0, 0, 0, 0, 0, 0, 3, 0, 46.9),
(1514, 95, 10, '1981-12-20', 0, 'PIT', 'W 21-20', 0, 0, 0, 24, 0, 4, 18, 0, 0, 0, 0, 0, 0, 8.2),
(1515, 95, 11, '1981-10-04', 0, 'CIN', 'W 17-10', 0, 0, 0, 182, 1, 1, 3, 0, 0, 0, 0, 3, 0, 28.5),
(1516, 95, 12, '1980-12-14', 1, 'GB', 'W 22-3', 0, 0, 0, 181, 2, 0, 0, 0, 0, 0, 0, 3, 0, 33.1),
(1517, 95, 13, '1982-11-28', 1, 'NE', 'L 21-29', 0, 0, 0, 37, 1, 0, 0, 0, 0, 0, 0, 0, 0, 9.7),
(1518, 95, 14, '1980-11-16', 1, 'CHI', 'W 10-6', 0, 0, 0, 206, 0, 0, 0, 0, 0, 0, 0, 3, 0, 23.6),
(1519, 95, 15, '1981-10-11', 0, 'SEA', 'W 35-17', 0, 0, 0, 186, 2, 3, 16, 0, 0, 0, 0, 3, 0, 38.2),
(1520, 95, 16, '1979-10-28', 0, 'NYJ', 'W 27-24', 0, 0, 0, 37, 1, 0, 0, 0, 0, 0, 0, 0, 0, 9.7),
(1521, 96, 1, '1990-11-26', 0, 'BUF', 'W 27-24', 0, 0, 0, 125, 1, 5, 89, 0, 0, 0, 0, 3, 0, 35.4),
(1522, 96, 2, '1994-11-13', 1, 'CIN', 'L 31-34', 0, 0, 0, 95, 1, 3, 8, 0, 0, 0, 0, 0, 0, 19.3),
(1523, 96, 3, '1993-10-11', 1, 'BUF', 'L 7-35', 0, 0, 0, 38, 0, 8, 65, 0, 0, 0, 0, 0, 0, 18.3),
(1524, 96, 4, '1989-09-10', 1, 'MIN', 'L 7-38', 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1),
(1525, 96, 5, '1992-09-06', 0, 'PIT', 'L 24-29', 0, 0, 0, 100, 0, 3, 24, 0, 0, 0, 0, 3, 0, 18.4),
(1526, 96, 6, '1989-10-01', 0, 'MIA', 'W 39-7', 0, 0, 0, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.7),
(1527, 96, 7, '1992-12-07', 0, 'CHI', 'W 24-7', 0, 0, 0, 116, 1, 2, 4, 0, 0, 0, 0, 3, 0, 23),
(1528, 96, 8, '1989-12-03', 1, 'PIT', 'W 23-16', 0, 0, 0, 115, 1, 0, 0, 0, 0, 0, 0, 3, 0, 20.5),
(1529, 96, 9, '1990-12-09', 0, 'CLE', 'W 58-14', 0, 0, 0, 116, 4, 0, 0, 0, 0, 0, 0, 3, 0, 38.6),
(1530, 96, 10, '1990-09-23', 0, 'IND', 'W 24-10', 0, 0, 0, 35, 0, 3, 26, 2, 0, 0, 0, 0, 0, 21.1),
(1531, 96, 11, '1991-10-13', 1, 'NYJ', 'W 23-20', 0, 0, 0, 24, 1, 3, 38, 0, 0, 0, 0, 0, 0, 15.2),
(1532, 96, 12, '1992-10-11', 1, 'CIN', 'W 38-24', 0, 0, 0, 149, 0, 1, 4, 0, 0, 0, 0, 3, 0, 19.3),
(1533, 96, 13, '1994-11-21', 0, 'NYG', 'L 10-13', 0, 0, 0, 156, 0, 2, 49, 0, 0, 0, 0, 3, 0, 25.5),
(1534, 96, 14, '1993-10-17', 1, 'NE', 'W 28-14', 0, 0, 0, 94, 0, 6, 41, 0, 0, 0, 0, 0, 0, 19.5),
(1535, 96, 15, '1991-11-03', 1, 'WAS', 'L 13-16', 0, 0, 0, 14, 1, 5, 46, 0, 0, 0, 0, 0, 0, 17),
(1536, 96, 16, '1994-12-24', 0, 'NYJ', 'W 24-10', 0, 0, 0, 97, 1, 0, 0, 0, 0, 0, 0, 0, 0, 15.7),
(1537, 97, 1, '2009-10-25', 1, 'NYG', 'W 24-17', 0, 0, 0, 0, 0, 3, 75, 0, 0, 0, 0, 0, 0, 10.5),
(1538, 97, 2, '2008-11-16', 1, 'SEA', 'W 26-20', 0, 0, 0, 3, 0, 13, 186, 0, 0, 0, 0, 0, 3, 34.9),
(1539, 97, 3, '2005-12-18', 1, 'HOU', 'L 19-30', 0, 0, 0, 0, 0, 8, 134, 1, 0, 0, 0, 0, 3, 30.4),
(1540, 97, 4, '2009-09-13', 0, 'SF', 'L 16-20', 0, 0, 0, 0, 0, 2, 19, 0, 0, 0, 0, 0, 0, 3.9),
(1541, 97, 5, '2006-11-12', 0, 'DAL', 'L 10-27', 0, 0, 0, 0, 0, 2, 53, 0, 0, 0, 0, 0, 0, 7.3),
(1542, 97, 6, '2007-09-23', 1, 'BAL', 'L 23-26', 0, 0, 0, 0, 0, 14, 181, 2, 0, 0, 0, 0, 3, 47.1),
(1543, 97, 7, '2006-12-03', 1, 'LAR', 'W 34-20', 0, 0, 0, 0, 0, 2, 32, 0, 0, 0, 0, 0, 0, 5.2),
(1544, 97, 8, '2006-11-26', 1, 'MIN', 'L 26-31', 0, 0, 0, 0, 0, 9, 140, 1, 0, 0, 0, 0, 3, 32),
(1545, 97, 9, '2008-09-14', 0, 'MIA', 'W 31-10', 0, 0, 0, 0, 0, 6, 140, 3, 0, 0, 0, 0, 3, 41),
(1546, 97, 10, '2003-09-07', 1, 'DET', 'L 24-42', 0, 0, 0, 0, 0, 10, 217, 2, 0, 0, 0, 0, 3, 46.7),
(1547, 97, 11, '2007-12-02', 0, 'CLE', 'W 27-21', 0, 0, 0, 0, 0, 2, 25, 0, 0, 0, 0, 0, 0, 4.5),
(1548, 97, 12, '2007-12-23', 0, 'ATL', 'W 30-27', 0, 0, 0, 0, 0, 13, 162, 2, 0, 0, 0, 0, 3, 44.2),
(1549, 97, 13, '2006-10-16', 0, 'CHI', 'L 23-24', 0, 0, 0, 0, 0, 12, 136, 1, 0, 0, 0, 0, 3, 34.6),
(1550, 97, 14, '2005-10-09', 0, 'CAR', 'L 20-24', 0, 0, 0, 7, 0, 10, 162, 1, 0, 0, 0, 0, 3, 35.9),
(1551, 97, 15, '2005-12-04', 1, 'SF', 'W 17-10', 0, 0, 0, 0, 0, 11, 156, 1, 0, 0, 0, 0, 3, 35.6),
(1552, 97, 16, '2005-10-30', 1, 'DAL', 'L 13-34', 0, 0, 0, 0, 0, 3, 69, 1, 0, 0, 0, 0, 0, 15.9),
(1553, 98, 1, '1997-12-07', 0, 'WAS', 'L 28-38', 0, 0, 0, 0, 0, 5, 114, 3, 0, 0, 0, 0, 3, 37.4),
(1554, 98, 2, '2000-01-02', 1, 'GB', 'L 24-49', 0, 0, 0, 0, 0, 6, 120, 0, 0, 0, 0, 0, 3, 21),
(1555, 98, 3, '1995-12-25', 0, 'DAL', 'L 13-37', 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 0, 1.6),
(1556, 98, 4, '1997-11-16', 1, 'NYG', 'L 10-19', 0, 0, 0, 0, 0, 8, 139, 0, 0, 0, 0, 0, 3, 24.9),
(1557, 98, 5, '1996-09-29', 0, 'LAR', 'W 31-28', 0, 0, 0, 0, 0, 9, 143, 1, 0, 0, 0, 0, 3, 32.3),
(1558, 98, 6, '1997-11-30', 0, 'PIT', 'L 20-26', 0, 0, 0, 0, 0, 8, 188, 0, 0, 0, 0, 0, 3, 29.8),
(1559, 98, 7, '1996-11-24', 0, 'PHI', 'W 36-30', 0, 0, 0, 0, 0, 9, 156, 0, 0, 0, 0, 0, 3, 27.6),
(1560, 98, 8, '1996-09-15', 1, 'NE', 'L 0-31', 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 1.4),
(1561, 98, 9, '1995-12-17', 1, 'PHI', 'L 20-21', 0, 0, 0, 0, 0, 1, 27, 0, 0, 0, 0, 0, 0, 3.7),
(1562, 98, 10, '1999-10-17', 0, 'WAS', 'L 10-24', 0, 0, 0, 0, 0, 1, 10, 1, 0, 0, 0, 0, 0, 8),
(1563, 98, 11, '1999-11-21', 0, 'DAL', 'W 13-9', 0, 0, 0, 0, 0, 1, 21, 1, 0, 0, 0, 0, 0, 9.1),
(1564, 98, 12, '1997-09-28', 1, 'TB', 'L 18-19', 0, 0, 0, 0, 0, 8, 147, 1, 0, 0, 0, 0, 3, 31.7),
(1565, 98, 13, '1996-12-22', 1, 'PHI', 'L 19-29', 0, 0, 0, 0, 0, 1, 21, 0, 0, 0, 0, 0, 0, 3.1),
(1566, 98, 14, '1996-10-27', 0, 'NYJ', 'L 21-31', 0, 0, 0, 0, 0, 7, 143, 1, 0, 0, 0, 0, 3, 30.3),
(1567, 98, 15, '1995-09-24', 1, 'DAL', 'L 20-34', 33, 0, 0, 0, 0, 9, 154, 1, 0, 0, 0, 0, 3, 34.72),
(1568, 98, 16, '1995-11-26', 0, 'ATL', 'W 40-37', 0, 0, 0, 0, 0, 8, 121, 1, 0, 0, 0, 0, 3, 29.1),
(1569, 99, 1, '1995-09-03', 0, 'MIN', 'W 31-14', 0, 0, 0, 0, 0, 5, 110, 2, 0, 0, 0, 0, 3, 31),
(1570, 99, 2, '1997-12-07', 0, 'BUF', 'W 20-3', 0, 0, 0, 10, 0, 7, 115, 0, 0, 0, 0, 0, 3, 22.5),
(1571, 99, 3, '1993-11-25', 1, 'DET', 'W 10-6', 0, 0, 0, -5, 0, 1, 11, 0, 0, 0, 0, 0, 0, 1.6),
(1572, 99, 4, '1993-11-21', 1, 'KC', 'W 19-17', 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 1.4),
(1573, 99, 5, '1993-12-18', 0, 'DEN', 'L 3-13', 0, 0, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 1.9),
(1574, 99, 6, '1997-12-14', 1, 'LAR', 'W 13-10', 0, 0, 0, 0, 0, 7, 109, 1, 0, 0, 0, 0, 3, 26.9),
(1575, 99, 7, '1996-10-13', 1, 'NO', 'L 24-27', 0, 0, 0, 0, 0, 7, 111, 2, 0, 0, 0, 0, 3, 33.1),
(1576, 99, 8, '1995-10-22', 0, 'HOU', 'W 35-32', 0, 0, 0, 19, 0, 3, 111, 1, 0, 0, 0, 0, 3, 25),
(1577, 99, 9, '1995-11-12', 1, 'GB', 'L 28-35', 0, 0, 0, 0, 0, 6, 126, 2, 0, 0, 0, 0, 3, 33.6),
(1578, 99, 10, '1993-09-26', 0, 'TB', 'W 47-17', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(1579, 99, 11, '1996-09-22', 1, 'DET', 'L 16-35', 0, 0, 0, 0, 0, 8, 126, 1, 0, 0, 0, 0, 3, 29.6),
(1580, 99, 12, '1994-09-12', 1, 'PHI', 'L 22-30', 0, 0, 0, 0, 0, 7, 148, 2, 0, 0, 0, 0, 3, 36.8),
(1581, 99, 13, '1999-12-19', 0, 'DET', 'W 28-10', 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 1.4),
(1582, 99, 14, '1996-12-22', 1, 'TB', 'L 19-34', 0, 0, 0, 0, 0, 9, 120, 0, 0, 0, 0, 0, 3, 24),
(1583, 99, 15, '1999-10-03', 0, 'NO', 'W 14-10', 0, 0, 0, 0, 0, 8, 103, 2, 0, 0, 0, 0, 3, 33.3);
INSERT INTO `legends_player_data` (`rowID`, `playerID`, `gameID`, `game_date`, `is_away`, `opp`, `game_result`, `passYDS`, `passTD`, `passINT`, `rushYDS`, `rushTD`, `rec`, `recYDS`, `recTD`, `krtd`, `prtd`, `passBonus`, `rushBonus`, `recBonus`, `fpts`) VALUES
(1584, 99, 16, '1993-09-05', 0, 'NYG', 'L 20-26', 0, 0, 0, 8, 0, 1, 6, 0, 0, 0, 0, 0, 0, 2.4),
(1585, 100, 1, '1983-10-02', 0, 'DEN', 'W 31-14', 0, 0, 0, 22, 0, 3, 98, 2, 0, 0, 0, 0, 0, 27),
(1586, 100, 2, '1986-11-03', 0, 'LAR', 'L 17-20', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(1587, 100, 3, '1987-11-16', 1, 'DEN', 'L 29-31', 0, 0, 0, 9, 0, 5, 133, 2, 0, 0, 0, 0, 3, 34.2),
(1588, 100, 4, '1986-09-28', 1, 'CIN', 'W 44-7', 0, 0, 0, 0, 0, 7, 174, 1, 0, 0, 0, 0, 3, 33.4),
(1589, 100, 5, '1986-11-09', 1, 'TB', 'W 23-3', 0, 0, 0, -15, 0, 4, 116, 1, 0, 0, 0, 0, 3, 23.1),
(1590, 100, 6, '1985-10-27', 0, 'MIN', 'W 27-9', 0, 0, 0, 5, 0, 1, 7, 0, 0, 0, 0, 0, 0, 2.2),
(1591, 100, 7, '1985-09-19', 1, 'MIN', 'W 33-24', 0, 0, 0, 0, 0, 6, 146, 1, 0, 0, 0, 0, 3, 29.6),
(1592, 100, 8, '1986-12-21', 1, 'DAL', 'W 24-10', 0, 0, 0, 11, 0, 1, 33, 1, 0, 0, 0, 0, 0, 11.4),
(1593, 100, 9, '1983-12-04', 1, 'GB', 'L 28-31', 0, 0, 0, 1, 0, 4, 129, 1, 0, 0, 0, 0, 3, 26),
(1594, 100, 10, '1986-10-19', 1, 'MIN', 'L 7-23', 0, 0, 0, 0, 0, 1, 50, 1, 1, 0, 0, 0, 0, 18),
(1595, 100, 11, '1983-09-18', 1, 'NO', 'L 31-34', 0, 0, 0, 0, 0, 4, 103, 3, 0, 0, 0, 0, 3, 35.3),
(1596, 100, 12, '1983-09-25', 1, 'BAL', 'L 19-22', 0, 0, 0, 0, 0, 5, 130, 1, 0, 0, 0, 0, 3, 27),
(1597, 100, 13, '1987-09-20', 0, 'TB', 'W 20-3', 0, 0, 0, 0, 0, 1, 46, 0, 0, 0, 0, 0, 0, 5.6),
(1598, 100, 14, '1984-10-14', 1, 'LAR', 'L 21-38', 0, 0, 0, 0, 0, 3, 84, 1, 0, 0, 0, 0, 0, 17.4),
(1599, 100, 15, '1986-10-05', 0, 'MIN', 'W 23-0', 0, 0, 0, 3, 0, 1, 9, 0, 0, 0, 0, 0, 0, 2.2),
(1600, 100, 16, '1987-11-01', 0, 'KC', 'W 31-28', 0, 0, 0, 0, 0, 4, 98, 2, 0, 0, 0, 0, 0, 25.8),
(1601, 101, 1, '1983-11-27', 1, 'ATL', 'L 41-47', 0, 0, 0, 13, 0, 7, 161, 1, 0, 0, 0, 0, 3, 33.4),
(1602, 101, 2, '1983-09-04', 1, 'HOU', 'W 41-38', 0, 0, 0, 12, 0, 8, 154, 1, 0, 0, 0, 0, 3, 33.6),
(1603, 101, 3, '1984-11-22', 1, 'DET', 'L 28-31', 0, 0, 0, 0, 0, 1, 24, 0, 0, 0, 0, 0, 0, 3.4),
(1604, 101, 4, '1981-09-13', 0, 'ATL', 'L 17-31', 0, 0, 0, 0, 0, 8, 179, 0, 0, 0, 0, 0, 3, 28.9),
(1605, 101, 5, '1980-11-16', 1, 'NYG', 'L 21-27', 0, 0, 0, 0, 0, 8, 175, 1, 0, 0, 0, 0, 3, 34.5),
(1606, 101, 6, '1983-09-11', 0, 'PIT', 'L 21-25', 0, 0, 0, 0, 0, 5, 169, 3, 0, 0, 0, 0, 3, 42.9),
(1607, 101, 7, '1985-10-06', 0, 'DET', 'W 43-10', 0, 0, 0, 0, 0, 10, 151, 0, 0, 0, 0, 0, 3, 28.1),
(1608, 101, 8, '1985-11-03', 0, 'CHI', 'L 10-16', 0, 0, 0, 3, 0, 1, 9, 0, 0, 0, 0, 0, 0, 2.2),
(1609, 101, 9, '1981-11-29', 1, 'MIN', 'W 35-23', 0, 0, 0, 0, 0, 7, 159, 1, 0, 0, 0, 0, 3, 31.9),
(1610, 101, 10, '1985-12-15', 1, 'DET', 'W 26-23', 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 0, 2.3),
(1611, 101, 11, '1984-10-21', 0, 'SEA', 'L 24-30', 0, 0, 0, 5, 0, 5, 162, 2, 0, 0, 0, 0, 3, 36.7),
(1612, 101, 12, '1983-12-12', 1, 'TB', 'W 12-9', 0, 0, 0, 0, 0, 1, 24, 0, 0, 0, 0, 0, 0, 3.4),
(1613, 101, 13, '1984-09-23', 1, 'DAL', 'L 6-20', 0, 0, 0, 8, 0, 1, 8, 0, 0, 0, 0, 0, 0, 2.6),
(1614, 101, 14, '1985-09-22', 0, 'NYJ', 'L 3-24', 0, 0, 0, 0, 0, 1, 27, 0, 0, 0, 0, 0, 0, 3.7),
(1615, 101, 15, '1984-10-07', 0, 'SD', 'L 28-34', 0, 0, 0, 1, 0, 5, 158, 1, 0, 0, 0, 0, 3, 29.9),
(1616, 101, 16, '1984-10-15', 1, 'DEN', 'L 14-17', 0, 0, 0, 0, 0, 11, 206, 1, 0, 0, 0, 0, 3, 40.6),
(1617, 102, 1, '1992-10-25', 0, 'CHI', 'L 10-30', 0, 0, 0, 3, 0, 9, 144, 1, 0, 0, 0, 0, 3, 32.7),
(1618, 102, 2, '1988-09-25', 0, 'CHI', 'L 6-24', 0, 0, 0, 0, 0, 7, 137, 0, 0, 0, 0, 0, 3, 23.7),
(1619, 102, 3, '1989-11-26', 0, 'MIN', 'W 20-19', 0, 0, 0, 0, 0, 10, 157, 2, 0, 0, 0, 0, 3, 40.7),
(1620, 102, 4, '1990-11-18', 1, 'AZ', 'W 24-21', 0, 0, 0, 0, 0, 10, 157, 1, 0, 0, 0, 0, 3, 34.7),
(1621, 102, 5, '1988-09-11', 0, 'TB', 'L 10-13', 0, 0, 0, 0, 0, 1, 15, 0, 0, 0, 0, 0, 0, 2.5),
(1622, 102, 6, '1990-10-14', 1, 'TB', 'L 14-26', 0, 0, 0, 0, 0, 7, 139, 0, 0, 0, 0, 0, 3, 23.9),
(1623, 102, 7, '1992-11-08', 1, 'NYG', 'L 7-27', 0, 0, 0, 0, 0, 11, 160, 0, 0, 0, 0, 0, 3, 30),
(1624, 102, 8, '1989-12-03', 1, 'TB', 'W 17-16', 0, 0, 0, 0, 0, 8, 169, 2, 0, 0, 0, 0, 3, 39.9),
(1625, 102, 9, '1991-09-08', 1, 'DET', 'L 14-23', 0, 0, 0, 12, 0, 1, 20, 0, 0, 0, 0, 0, 0, 4.2),
(1626, 102, 10, '1989-09-24', 1, 'LAR', 'L 38-41', 0, 0, 0, 0, 0, 8, 164, 1, 0, 0, 0, 0, 3, 33.4),
(1627, 102, 11, '1989-12-10', 0, 'KC', 'L 3-21', 0, 0, 0, 26, 0, 1, 5, 0, 0, 0, 0, 0, 0, 4.1),
(1628, 102, 12, '1990-12-22', 0, 'DET', 'L 17-24', 0, 0, 0, 10, 0, 1, 13, 0, 0, 0, 0, 0, 0, 3.3),
(1629, 102, 13, '1994-11-13', 0, 'NYJ', 'W 17-10', 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 0, 2.3),
(1630, 102, 14, '1991-11-10', 0, 'BUF', 'L 24-34', 0, 0, 0, -15, 0, 8, 133, 1, 0, 0, 0, 0, 3, 28.8),
(1631, 102, 15, '1993-10-24', 1, 'TB', 'W 37-14', 1, 0, 0, 5, 0, 10, 147, 4, 0, 0, 0, 0, 3, 52.24),
(1632, 102, 16, '1991-11-24', 0, 'IND', 'W 14-10', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(1633, 103, 1, '2011-12-24', 1, 'NYJ', 'W 29-14', 0, 0, 0, 0, 0, 3, 164, 1, 0, 0, 0, 0, 3, 28.4),
(1634, 103, 2, '2012-01-01', 0, 'DAL', 'W 31-14', 0, 0, 0, 0, 0, 6, 178, 1, 0, 0, 0, 0, 3, 32.8),
(1635, 103, 3, '2011-11-28', 1, 'NO', 'L 24-49', 0, 0, 0, 0, 0, 9, 157, 2, 0, 0, 0, 0, 3, 39.7),
(1636, 103, 4, '2013-09-29', 1, 'KC', 'L 7-31', 0, 0, 0, 0, 0, 10, 164, 1, 0, 0, 0, 0, 3, 35.4),
(1637, 103, 5, '2012-10-21', 0, 'WAS', 'W 27-23', 0, 0, 0, 0, 0, 7, 131, 1, 0, 0, 0, 0, 3, 29.1),
(1638, 103, 6, '2011-12-04', 0, 'GB', 'L 35-38', 0, 0, 0, 0, 0, 7, 119, 0, 0, 0, 0, 0, 3, 21.9),
(1639, 103, 7, '2012-12-09', 0, 'NO', 'W 52-27', 0, 0, 0, 0, 0, 8, 121, 1, 0, 0, 0, 0, 3, 29.1),
(1640, 103, 8, '2016-11-20', 0, 'CHI', 'W 22-16', 0, 0, 0, 0, 0, 1, 48, 0, 0, 0, 0, 0, 0, 5.8),
(1641, 103, 9, '2016-12-11', 0, 'DAL', 'W 10-7', 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 1.4),
(1642, 103, 10, '2012-09-16', 0, 'TB', 'W 41-34', 0, 0, 0, 0, 0, 11, 179, 1, 0, 0, 0, 0, 3, 37.9),
(1643, 103, 11, '2011-10-09', 0, 'SEA', 'L 25-36', 0, 0, 0, 3, 0, 8, 161, 1, 0, 0, 0, 0, 3, 33.4),
(1644, 103, 12, '2016-11-27', 1, 'CLE', 'W 27-13', 0, 0, 0, 0, 0, 1, 37, 0, 0, 0, 0, 0, 0, 4.7),
(1645, 103, 13, '2011-11-20', 0, 'PHI', 'L 10-17', 0, 0, 0, 0, 0, 6, 128, 1, 0, 0, 0, 0, 3, 27.8),
(1646, 103, 14, '2016-12-18', 0, 'DET', 'W 17-6', 0, 0, 0, 0, 0, 1, 29, 0, 0, 0, 0, 0, 0, 3.9),
(1647, 103, 15, '2017-01-01', 1, 'WAS', 'W 19-10', 0, 0, 0, 0, 0, 2, 7, 0, 0, 0, 0, 0, 0, 2.7),
(1648, 103, 16, '2016-11-06', 0, 'PHI', 'W 28-23', 0, 0, 0, 0, 0, 1, 46, 0, 0, 0, 0, 0, 0, 5.6),
(1649, 104, 1, '1960-10-09', 1, 'PIT', 'W 19-17', 0, 0, 0, 14, 0, 1, 44, 1, 0, 0, 0, 0, 0, 12.8),
(1650, 104, 2, '1958-10-05', 1, 'PHI', 'L 24-27', 0, 0, 0, 51, 0, 7, 113, 1, 0, 0, 0, 0, 3, 32.4),
(1651, 104, 3, '1956-10-21', 0, 'PIT', 'W 38-10', 0, 0, 0, 67, 1, 7, 100, 0, 0, 0, 0, 0, 3, 32.7),
(1652, 104, 4, '1959-12-06', 0, 'CLE', 'W 48-7', 38, 0, 0, 46, 1, 7, 129, 1, 0, 0, 0, 0, 3, 41.02),
(1653, 104, 5, '1962-09-23', 1, 'PHI', 'W 29-13', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(1654, 104, 6, '1962-10-07', 1, 'LAR', 'W 31-14', 0, 0, 0, 0, 0, 6, 97, 0, 0, 0, 0, 0, 0, 15.7),
(1655, 104, 7, '1962-09-16', 1, 'CLE', 'L 7-17', 0, 0, 0, 0, 0, 1, 12, 0, 0, 0, 0, 0, 0, 2.2),
(1656, 104, 8, '1962-09-30', 1, 'PIT', 'W 31-27', 0, 0, 0, 0, 0, 4, 99, 1, 0, 0, 0, 0, 0, 19.9),
(1657, 104, 9, '1960-09-25', 1, 'SF', 'W 21-19', 0, 0, 0, 41, 0, 1, 9, 0, 0, 0, 0, 0, 0, 6),
(1658, 104, 10, '1956-11-11', 0, 'AZ', 'W 23-10', 0, 0, 0, 68, 0, 6, 116, 1, 0, 0, 0, 0, 3, 33.4),
(1659, 104, 11, '1962-11-18', 0, 'PHI', 'W 19-14', 0, 0, 0, 0, 0, 1, 12, 0, 0, 0, 0, 0, 0, 2.2),
(1660, 104, 12, '1962-10-28', 0, 'WAS', 'W 49-34', 0, 0, 0, 0, 0, 4, 127, 1, 0, 0, 0, 0, 3, 25.7),
(1661, 104, 13, '1959-10-25', 1, 'PIT', 'W 21-16', 0, 0, 0, 3, 0, 4, 135, 2, 0, 0, 0, 0, 3, 32.8),
(1662, 104, 14, '1960-10-02', 1, 'LAR', 'W 35-14', 0, 0, 0, 11, 0, 1, 4, 0, 0, 0, 0, 0, 0, 2.5),
(1663, 104, 15, '1959-10-18', 0, 'PHI', 'W 24-7', 0, 0, 0, 46, 0, 4, 117, 0, 0, 0, 0, 0, 3, 23.3),
(1664, 104, 16, '1957-12-01', 0, 'SF', 'L 17-27', 0, 0, 0, 16, 0, 11, 105, 1, 0, 0, 0, 0, 3, 32.1),
(1665, 105, 1, '2015-10-18', 0, 'CHI', 'W 37-34', 0, 0, 0, 0, 0, 6, 166, 1, 0, 0, 0, 0, 3, 31.6),
(1666, 105, 2, '2009-10-11', 0, 'PIT', 'L 20-28', 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1.2),
(1667, 105, 3, '2014-09-28', 1, 'NYJ', 'W 24-17', 0, 0, 0, 0, 0, 2, 12, 0, 0, 0, 0, 0, 0, 3.2),
(1668, 105, 4, '2012-11-11', 1, 'MIN', 'L 24-34', 0, 0, 0, 0, 0, 12, 207, 1, 0, 0, 0, 0, 3, 41.7),
(1669, 105, 5, '2014-10-05', 0, 'BUF', 'L 14-17', 0, 0, 0, 0, 0, 1, 7, 0, 0, 0, 0, 0, 0, 1.7),
(1670, 105, 6, '2007-10-07', 1, 'WAS', 'L 3-34', 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 1.3),
(1671, 105, 7, '2013-11-17', 1, 'PIT', 'L 27-37', 0, 0, 0, 0, 0, 6, 179, 2, 0, 0, 0, 0, 3, 38.9),
(1672, 105, 8, '2014-09-08', 0, 'NYG', 'W 35-14', 0, 0, 0, 0, 0, 7, 164, 2, 0, 0, 0, 0, 3, 38.4),
(1673, 105, 9, '2012-01-01', 1, 'GB', 'L 41-45', 0, 0, 0, 0, 0, 11, 244, 1, 0, 0, 0, 0, 3, 44.4),
(1674, 105, 10, '2009-11-26', 0, 'GB', 'L 12-34', 0, 0, 0, 0, 0, 2, 10, 1, 0, 0, 0, 0, 0, 9),
(1675, 105, 11, '2011-12-18', 1, 'OAK', 'W 28-27', 0, 0, 0, 0, 0, 9, 214, 2, 0, 0, 0, 0, 3, 45.4),
(1676, 105, 12, '2010-11-07', 0, 'NYJ', 'L 20-23', 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 0, 2.3),
(1677, 105, 13, '2013-10-27', 0, 'DAL', 'W 31-30', 0, 0, 0, 0, 0, 14, 329, 1, 0, 0, 0, 0, 3, 55.9),
(1678, 105, 14, '2012-12-22', 0, 'ATL', 'L 18-31', 0, 0, 0, 0, 0, 11, 225, 0, 0, 0, 0, 0, 3, 36.5),
(1679, 105, 15, '2012-12-02', 0, 'IND', 'L 33-35', 0, 0, 0, 0, 0, 13, 171, 1, 0, 0, 0, 0, 3, 39.1),
(1680, 105, 16, '2012-09-23', 1, 'TEN', 'L 41-44', 0, 0, 0, 0, 0, 10, 164, 1, 0, 0, 0, 0, 3, 35.4),
(1681, 106, 1, '1994-10-23', 0, 'CHI', 'W 21-16', 0, 0, 0, 0, 0, 1, 14, 0, 0, 0, 0, 0, 0, 2.4),
(1682, 106, 2, '2000-10-19', 1, 'TB', 'W 28-14', 0, 0, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 1.9),
(1683, 106, 3, '1996-09-01', 1, 'MIN', 'L 13-17', 0, 0, 0, 0, 0, 12, 157, 1, 0, 0, 0, 0, 3, 36.7),
(1684, 106, 4, '1995-09-03', 1, 'PIT', 'L 20-23', 0, 0, 0, 0, 0, 10, 131, 1, 0, 0, 0, 0, 3, 32.1),
(1685, 106, 5, '1995-10-29', 0, 'GB', 'W 24-16', 0, 0, 0, 0, 0, 6, 147, 3, 0, 0, 0, 0, 3, 41.7),
(1686, 106, 6, '1998-11-15', 0, 'CHI', 'W 26-3', 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 1.3),
(1687, 106, 7, '1994-11-24', 0, 'BUF', 'W 35-21', 0, 0, 0, 0, 0, 7, 169, 1, 0, 0, 0, 0, 3, 32.9),
(1688, 106, 8, '1995-11-23', 0, 'MIN', 'W 44-38', 0, 0, 0, 0, 0, 8, 127, 1, 0, 0, 0, 0, 3, 29.7),
(1689, 106, 9, '1995-12-04', 0, 'CHI', 'W 27-7', 0, 0, 0, 0, 0, 14, 183, 1, 0, 0, 0, 0, 3, 41.3),
(1690, 106, 10, '1993-12-05', 0, 'MIN', 'L 0-13', 0, 0, 0, 0, 0, 2, 12, 0, 0, 0, 0, 0, 0, 3.2),
(1691, 106, 11, '1993-11-21', 1, 'GB', 'L 17-26', 0, 0, 0, 0, 0, 2, 8, 0, 0, 0, 0, 0, 0, 2.8),
(1692, 106, 12, '1997-11-16', 0, 'MIN', 'W 38-15', 0, 0, 0, 0, 0, 10, 130, 1, 0, 0, 0, 0, 3, 32),
(1693, 106, 13, '1998-11-26', 0, 'PIT', 'W 19-16', 0, 0, 0, 0, 0, 8, 148, 1, 0, 0, 0, 0, 3, 31.8),
(1694, 106, 14, '1994-11-13', 0, 'TB', 'W 14-9', 0, 0, 0, 0, 0, 1, 9, 1, 0, 0, 0, 0, 0, 7.9),
(1695, 106, 15, '1994-11-06', 1, 'GB', 'L 30-38', 0, 0, 0, 0, 0, 8, 151, 2, 0, 0, 0, 0, 3, 38.1),
(1696, 106, 16, '1995-11-05', 1, 'ATL', 'L 22-34', 0, 0, 0, 0, 0, 9, 176, 0, 0, 0, 0, 0, 3, 29.6),
(1697, 107, 1, '1987-12-13', 0, 'DAL', 'W 24-20', 0, 0, 0, 0, 0, 9, 187, 1, 0, 0, 0, 0, 3, 36.7),
(1698, 107, 2, '1991-11-10', 0, 'ATL', 'W 56-17', 0, 0, 0, 0, 0, 4, 203, 3, 0, 0, 0, 0, 3, 45.3),
(1699, 107, 3, '1992-11-23', 1, 'NO', 'L 3-20', 0, 0, 0, 0, 0, 2, 43, 0, 0, 0, 0, 0, 0, 6.3),
(1700, 107, 4, '1989-10-29', 1, 'OAK', 'L 24-37', 0, 0, 0, 0, 0, 8, 145, 1, 0, 0, 0, 0, 3, 31.5),
(1701, 107, 5, '1985-09-15', 0, 'HOU', 'W 16-13', 0, 0, 0, 0, 0, 1, 22, 0, 0, 0, 0, 0, 0, 3.2),
(1702, 107, 6, '1985-10-20', 1, 'NYG', 'L 3-17', 0, 0, 0, 3, 0, 11, 193, 0, 0, 0, 0, 0, 3, 33.6),
(1703, 107, 7, '1985-09-22', 0, 'PHI', 'L 6-19', 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 1.5),
(1704, 107, 8, '1988-10-02', 0, 'NYG', 'L 23-24', 0, 0, 0, 0, 0, 1, 29, 0, 0, 0, 0, 0, 0, 3.9),
(1705, 107, 9, '1986-10-27', 1, 'NYG', 'L 20-27', 0, 0, 0, 0, 0, 11, 241, 1, 0, 0, 0, 0, 3, 44.1),
(1706, 107, 10, '1990-09-30', 1, 'AZ', 'W 38-10', 0, 0, 0, 0, 0, 8, 162, 2, 0, 0, 0, 0, 3, 39.2),
(1707, 107, 11, '1986-09-21', 1, 'SD', 'W 30-27', 0, 0, 0, 0, 0, 6, 144, 1, 0, 0, 0, 0, 3, 29.4),
(1708, 107, 12, '1989-12-23', 1, 'SEA', 'W 29-0', 0, 0, 0, 0, 0, 9, 149, 1, 0, 0, 0, 0, 3, 32.9),
(1709, 107, 13, '1990-10-28', 1, 'NYG', 'L 10-21', 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 0, 1.6),
(1710, 107, 14, '1992-11-01', 0, 'NYG', 'L 7-24', 0, 0, 0, 0, 0, 2, 27, 0, 0, 0, 0, 0, 0, 4.7),
(1711, 107, 15, '1989-09-17', 0, 'PHI', 'L 37-42', 0, 0, 0, 0, 0, 4, 153, 2, 0, 0, 0, 0, 3, 34.3),
(1712, 107, 16, '1986-11-23', 0, 'DAL', 'W 41-14', 0, 0, 0, 0, 0, 8, 152, 1, 0, 0, 0, 0, 3, 32.2),
(1713, 108, 1, '1991-11-10', 0, 'ATL', 'W 56-17', 0, 0, 0, 3, 0, 7, 164, 2, 0, 0, 0, 0, 3, 38.7),
(1714, 108, 2, '1993-11-21', 1, 'LAR', 'L 6-10', 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 1.4),
(1715, 108, 3, '1992-12-13', 0, 'DAL', 'W 20-17', 0, 0, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 1.9),
(1716, 108, 4, '1990-11-04', 1, 'DET', 'W 41-38', 0, 0, 0, 8, 0, 13, 168, 0, 0, 0, 0, 0, 3, 33.6),
(1717, 108, 5, '1985-12-15', 0, 'CIN', 'W 27-24', 0, 0, 0, 1, 0, 13, 230, 1, 0, 0, 0, 0, 3, 45.1),
(1718, 108, 6, '1992-12-20', 1, 'PHI', 'L 13-17', 0, 0, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 2.1),
(1719, 108, 7, '1986-09-21', 1, 'SD', 'W 30-27', 0, 0, 0, 21, 0, 7, 174, 0, 0, 0, 0, 0, 3, 29.5),
(1720, 108, 8, '1984-09-10', 1, 'SF', 'L 31-37', 0, 0, 0, 0, 0, 10, 200, 0, 0, 0, 0, 0, 3, 33),
(1721, 108, 9, '1984-10-07', 1, 'IND', 'W 35-7', 0, 0, 0, 0, 0, 8, 141, 3, 0, 0, 0, 0, 3, 43.1),
(1722, 108, 10, '1985-12-01', 0, 'SF', 'L 8-35', 0, 0, 0, 0, 0, 8, 150, 0, 0, 0, 0, 0, 3, 26),
(1723, 108, 11, '1984-12-16', 0, 'LAR', 'W 29-27', 0, 0, 0, 0, 0, 11, 136, 2, 0, 0, 0, 0, 3, 39.6),
(1724, 108, 12, '1992-12-06', 1, 'NYG', 'W 28-10', 0, 0, 0, 0, 0, 1, 42, 1, 0, 0, 0, 0, 0, 11.2),
(1725, 108, 13, '1993-12-26', 1, 'DAL', 'L 3-38', 0, 0, 0, 0, 0, 1, 12, 0, 0, 0, 0, 0, 0, 2.2),
(1726, 108, 14, '1989-11-26', 0, 'CHI', 'W 38-14', 0, 0, 0, 0, 0, 9, 152, 2, 0, 0, 0, 0, 3, 39.2),
(1727, 108, 15, '1993-12-05', 1, 'TB', 'W 23-17', 0, 0, 0, 0, 0, 1, 7, 0, 0, 0, 0, 0, 0, 1.7),
(1728, 108, 16, '1981-12-13', 0, 'BAL', 'W 38-14', 0, 0, 0, 0, 0, 7, 148, 1, 0, 0, 0, 0, 3, 30.8),
(1729, 109, 1, '1979-09-10', 0, 'ATL', 'L 10-14', 0, 0, 0, 0, 0, 9, 127, 0, 0, 0, 0, 0, 3, 24.7),
(1730, 109, 2, '1983-10-23', 0, 'CHI', 'L 6-7', 0, 0, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 1.9),
(1731, 109, 3, '1978-10-29', 0, 'LAR', 'L 10-16', 0, 0, 0, 0, 0, 7, 126, 1, 0, 0, 0, 0, 3, 28.6),
(1732, 109, 4, '1981-11-01', 0, 'DAL', 'L 14-17', 0, 0, 0, 1, 0, 5, 151, 1, 0, 0, 0, 0, 3, 29.2),
(1733, 109, 5, '1977-10-30', 1, 'WAS', 'L 17-23', 0, 0, 0, 0, 0, 4, 116, 1, 0, 0, 0, 0, 3, 24.6),
(1734, 109, 6, '1983-09-18', 1, 'DEN', 'W 13-10', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(1735, 109, 7, '1978-12-03', 1, 'MIN', 'L 27-28', 0, 0, 0, 0, 0, 4, 115, 2, 0, 0, 0, 0, 3, 30.5),
(1736, 109, 8, '1973-12-16', 1, 'WAS', 'L 20-38', 0, 0, 0, 0, 0, 4, 111, 0, 0, 0, 0, 0, 3, 18.1),
(1737, 109, 9, '1973-10-14', 1, 'LAR', 'W 27-24', 0, 0, 0, 0, 0, 12, 187, 2, 0, 0, 0, 0, 3, 45.7),
(1738, 109, 10, '1973-12-09', 0, 'NYJ', 'W 24-23', 0, 0, 0, 0, 0, 5, 146, 1, 0, 0, 0, 0, 3, 28.6),
(1739, 109, 11, '1983-10-02', 1, 'ATL', 'W 28-24', 0, 0, 0, 0, 0, 1, 29, 1, 0, 0, 0, 0, 0, 9.9),
(1740, 109, 12, '1980-09-07', 0, 'DEN', 'W 27-6', 0, 0, 0, 0, 0, 3, 135, 1, 0, 0, 0, 0, 3, 25.5),
(1741, 109, 13, '1983-09-25', 0, 'LAR', 'L 11-14', 0, 0, 0, 0, 0, 1, 7, 0, 0, 0, 0, 0, 0, 1.7),
(1742, 109, 14, '1981-10-25', 0, 'TB', 'W 20-10', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(1743, 109, 15, '1981-10-18', 1, 'MIN', 'L 23-35', 0, 0, 0, 0, 0, 8, 109, 1, 0, 0, 0, 0, 3, 27.9),
(1744, 109, 16, '1983-11-06', 0, 'DAL', 'L 20-27', 0, 0, 0, 0, 0, 1, 12, 0, 0, 0, 0, 0, 0, 2.2),
(1745, 110, 1, '1984-10-28', 0, 'LAR', 'L 14-34', 0, 0, 0, 0, 0, 6, 170, 1, 0, 0, 0, 0, 3, 32),
(1746, 110, 2, '1984-12-16', 1, 'ATL', 'L 10-26', 0, 0, 0, 0, 0, 7, 135, 1, 0, 0, 0, 0, 3, 29.5),
(1747, 110, 3, '1985-11-03', 1, 'SF', 'L 13-24', 0, 0, 0, 0, 0, 6, 146, 1, 0, 0, 0, 0, 3, 29.6),
(1748, 110, 4, '1989-10-08', 0, 'NYG', 'W 21-19', 0, 0, 0, 0, 0, 1, 21, 0, 0, 0, 0, 0, 0, 3.1),
(1749, 110, 5, '1989-10-15', 1, 'AZ', 'W 17-5', 0, 0, 0, 0, 0, 1, 24, 0, 0, 0, 0, 0, 0, 3.4),
(1750, 110, 6, '1989-09-10', 0, 'SEA', 'W 31-7', 0, 0, 0, 0, 0, 6, 140, 1, 0, 0, 0, 0, 3, 29),
(1751, 110, 7, '1986-12-14', 1, 'DAL', 'W 23-21', 0, 0, 0, 0, 0, 1, 17, 0, 0, 0, 0, 0, 0, 2.7),
(1752, 110, 8, '1987-12-06', 1, 'NYG', 'L 20-23', 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1.1),
(1753, 110, 9, '1984-09-02', 1, 'NYG', 'L 27-28', 0, 0, 0, -5, 0, 8, 147, 1, 0, 0, 0, 0, 3, 31.2),
(1754, 110, 10, '1987-12-20', 1, 'NYJ', 'W 38-27', 0, 0, 0, 0, 0, 6, 148, 2, 0, 0, 0, 0, 3, 35.8),
(1755, 110, 11, '1983-09-25', 0, 'LAR', 'L 11-14', 0, 0, 0, 0, 0, 6, 133, 0, 0, 0, 0, 0, 3, 22.3),
(1756, 110, 12, '1990-09-16', 0, 'AZ', 'L 21-23', 0, 0, 0, 0, 0, 1, 39, 0, 0, 0, 0, 0, 0, 4.9),
(1757, 110, 13, '1986-11-30', 1, 'OAK', 'W 33-27', 0, 0, 0, 0, 0, 8, 145, 3, 0, 0, 0, 0, 3, 43.5),
(1758, 110, 14, '1989-10-02', 1, 'CHI', 'L 13-27', 0, 0, 0, 0, 0, 1, 7, 0, 0, 0, 0, 0, 0, 1.7),
(1759, 110, 15, '1985-11-10', 0, 'ATL', 'W 23-17', 0, 0, 0, 0, 0, 3, 145, 1, 0, 0, 0, 0, 3, 26.5),
(1760, 110, 16, '1983-09-18', 1, 'DEN', 'W 13-10', 0, 0, 0, 0, 0, 6, 152, 1, 0, 0, 0, 0, 3, 30.2),
(1761, 111, 1, '1982-09-19', 0, 'CIN', 'W 26-20', 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 1.4),
(1762, 111, 2, '1978-11-27', 1, 'SF', 'W 24-7', 0, 0, 0, 0, 0, 8, 134, 2, 0, 0, 0, 0, 3, 36.4),
(1763, 111, 3, '1977-10-09', 1, 'HOU', 'L 10-27', 0, 0, 0, 0, 0, 6, 102, 0, 0, 0, 0, 0, 3, 19.2),
(1764, 111, 4, '1980-11-16', 0, 'CLE', 'W 16-13', 0, 0, 0, 0, 0, 9, 138, 1, 0, 0, 0, 0, 3, 31.8),
(1765, 111, 5, '1981-11-29', 0, 'LAR', 'W 24-0', 0, 0, 0, 0, 0, 1, 9, 1, 0, 0, 0, 0, 0, 7.9),
(1766, 111, 6, '1980-10-05', 1, 'MIN', 'W 23-17', 0, 0, 0, 0, 0, 6, 107, 0, 0, 0, 0, 0, 3, 19.7),
(1767, 111, 7, '1975-11-02', 1, 'CIN', 'W 30-24', 0, 0, 0, 0, 0, 6, 116, 2, 0, 0, 0, 0, 3, 32.6),
(1768, 111, 8, '1982-11-28', 1, 'SEA', 'L 0-16', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(1769, 111, 9, '1979-12-02', 0, 'CIN', 'W 37-17', 0, 0, 0, 0, 0, 5, 192, 2, 0, 0, 0, 0, 3, 39.2),
(1770, 111, 10, '1979-11-04', 0, 'WAS', 'W 38-7', 0, 0, 0, 0, 0, 5, 106, 0, 0, 0, 0, 0, 3, 18.6),
(1771, 111, 11, '1981-12-20', 1, 'HOU', 'L 20-21', 0, 0, 0, 0, 0, 1, 12, 0, 0, 0, 0, 0, 0, 2.2),
(1772, 111, 12, '1981-11-22', 1, 'CLE', 'W 32-10', 0, 0, 0, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 2.9),
(1773, 111, 13, '1977-11-13', 0, 'CLE', 'W 35-31', 0, 0, 0, 0, 0, 5, 129, 1, 0, 0, 0, 0, 3, 26.9),
(1774, 111, 14, '1975-10-05', 1, 'CLE', 'W 42-6', 0, 0, 0, 0, 0, 5, 126, 1, 0, 0, 0, 0, 3, 26.6),
(1775, 111, 15, '1983-01-02', 0, 'CLE', 'W 37-21', 0, 0, 0, 25, 0, 5, 114, 0, 0, 0, 0, 0, 3, 21.9),
(1776, 111, 16, '1982-09-13', 1, 'DAL', 'W 36-28', 0, 0, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 1.9),
(1777, 112, 1, '2011-12-08', 0, 'CLE', 'W 14-3', 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 0, 1.6),
(1778, 112, 2, '2005-12-04', 0, 'CIN', 'L 31-38', 0, 0, 0, 7, 0, 9, 135, 2, 0, 0, 0, 0, 3, 38.2),
(1779, 112, 3, '2002-11-17', 1, 'TEN', 'L 23-31', 0, 0, 0, 0, 0, 10, 168, 2, 0, 0, 0, 0, 3, 41.8),
(1780, 112, 4, '2006-10-22', 1, 'ATL', 'L 38-41', 0, 0, 0, 0, 0, 8, 171, 3, 0, 0, 0, 0, 3, 46.1),
(1781, 112, 5, '2011-11-13', 1, 'CIN', 'W 24-17', 0, 0, 0, 0, 0, 1, 10, 0, 0, 0, 0, 0, 0, 2),
(1782, 112, 6, '2010-12-05', 1, 'BAL', 'W 13-10', 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 0, 2.3),
(1783, 112, 7, '2010-10-24', 1, 'MIA', 'W 23-22', 0, 0, 0, 0, 0, 7, 131, 1, 0, 0, 0, 0, 3, 29.1),
(1784, 112, 8, '2002-11-10', 0, 'ATL', 'T 34-34', 0, 0, 0, 29, 0, 11, 139, 1, 0, 0, 0, 0, 3, 36.8),
(1785, 112, 9, '2010-09-19', 1, 'TEN', 'W 19-11', 0, 0, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 1.9),
(1786, 112, 10, '2003-11-30', 0, 'CIN', 'L 20-24', 0, 0, 0, 0, 0, 13, 149, 1, 0, 0, 0, 0, 3, 36.9),
(1787, 112, 11, '2011-10-02', 1, 'HOU', 'L 10-17', 0, 0, 0, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 2.9),
(1788, 112, 12, '2003-09-14', 1, 'KC', 'L 20-41', 0, 0, 0, 5, 0, 9, 146, 0, 0, 0, 0, 0, 3, 27.1),
(1789, 112, 13, '2004-12-18', 1, 'NYG', 'W 33-30', 0, 0, 0, 0, 0, 9, 134, 0, 0, 0, 0, 0, 3, 25.4),
(1790, 112, 14, '2009-10-25', 0, 'MIN', 'W 27-17', 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 1.3),
(1791, 112, 15, '2009-10-18', 0, 'CLE', 'W 27-14', 0, 0, 0, 0, 0, 8, 159, 1, 0, 0, 0, 0, 3, 32.9),
(1792, 112, 16, '2004-09-19', 1, 'BAL', 'L 13-30', 0, 0, 0, 0, 0, 6, 151, 1, 0, 0, 0, 0, 3, 30.1),
(1793, 113, 1, '2006-01-01', 1, 'DAL', 'W 20-10', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(1794, 113, 2, '2001-10-28', 0, 'NO', 'L 31-34', 0, 0, 0, 0, 0, 7, 179, 1, 0, 0, 0, 0, 3, 33.9),
(1795, 113, 3, '1995-10-01', 1, 'IND', 'L 18-21', 0, 0, 0, 0, 0, 8, 181, 2, 0, 0, 0, 0, 3, 41.1),
(1796, 113, 4, '1996-10-27', 1, 'BAL', 'L 31-37', 0, 0, 0, 0, 0, 11, 229, 1, 0, 0, 0, 0, 3, 42.9),
(1797, 113, 5, '2005-09-25', 0, 'TEN', 'W 31-27', 0, 0, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 2.1),
(1798, 113, 6, '2004-11-29', 1, 'GB', 'L 17-45', 0, 0, 0, 0, 0, 9, 170, 1, 0, 0, 0, 0, 3, 35),
(1799, 113, 7, '2000-09-17', 0, 'SF', 'W 41-24', 0, 0, 0, 0, 0, 8, 188, 1, 0, 0, 0, 0, 3, 35.8),
(1800, 113, 8, '2005-11-13', 1, 'SEA', 'L 16-31', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(1801, 113, 9, '2006-11-19', 1, 'CAR', 'L 0-15', 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 0, 1.6),
(1802, 113, 10, '1995-10-22', 0, 'SF', 'L 10-44', 0, 0, 0, 0, 0, 9, 173, 0, 0, 0, 0, 0, 3, 29.3),
(1803, 113, 11, '2007-09-30', 1, 'DAL', 'L 7-35', 0, 0, 0, 0, 0, 1, 24, 0, 0, 0, 0, 0, 0, 3.4),
(1804, 113, 12, '1997-11-02', 1, 'ATL', 'L 31-34', 0, 0, 0, 0, 0, 10, 233, 2, 0, 0, 0, 0, 3, 48.3),
(1805, 113, 13, '1995-12-24', 0, 'MIA', 'L 22-41', 0, 0, 0, 12, 0, 15, 210, 1, 0, 0, 0, 0, 3, 46.2),
(1806, 113, 14, '2004-10-18', 0, 'TB', 'W 28-21', 0, 0, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 2.1),
(1807, 113, 15, '1998-09-13', 0, 'MIN', 'L 31-38', 0, 0, 0, 30, 0, 11, 192, 1, 0, 0, 0, 0, 3, 42.2),
(1808, 113, 16, '1995-10-12', 0, 'ATL', 'W 21-19', 0, 0, 0, 0, 0, 10, 191, 2, 0, 0, 0, 0, 3, 44.1),
(1809, 114, 1, '2000-09-24', 1, 'ATL', 'W 41-20', 0, 0, 0, 0, 0, 3, 189, 2, 0, 0, 0, 0, 3, 36.9),
(1810, 114, 2, '2006-10-15', 0, 'SEA', 'L 28-30', 0, 0, 0, 0, 0, 8, 154, 3, 0, 0, 0, 0, 3, 44.4),
(1811, 114, 3, '2004-10-24', 1, 'MIA', 'L 14-31', 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 1.4),
(1812, 114, 4, '2000-12-18', 1, 'TB', 'L 35-38', 0, 0, 0, 0, 0, 9, 165, 1, 0, 0, 0, 0, 3, 34.5),
(1813, 114, 5, '1999-12-05', 1, 'CAR', 'W 34-21', 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 1.4),
(1814, 114, 6, '2003-10-26', 1, 'PIT', 'W 33-21', 0, 0, 0, 0, 0, 7, 174, 1, 0, 0, 0, 0, 3, 33.4),
(1815, 114, 7, '2008-09-07', 1, 'PHI', 'L 3-38', 0, 0, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 1.9),
(1816, 114, 8, '2003-10-13', 0, 'ATL', 'W 36-0', 0, 0, 0, 0, 0, 11, 161, 2, 0, 0, 0, 0, 3, 42.1),
(1817, 114, 9, '2004-12-05', 0, 'SF', 'W 16-6', 0, 0, 0, 0, 0, 10, 160, 1, 0, 0, 0, 0, 3, 35),
(1818, 114, 10, '2003-11-02', 1, 'SF', 'L 10-30', 0, 0, 0, 0, 0, 11, 200, 1, 0, 0, 0, 0, 3, 40),
(1819, 114, 11, '2000-12-10', 0, 'MIN', 'W 40-29', 0, 0, 0, 0, 0, 9, 172, 0, 0, 0, 0, 0, 3, 29.2),
(1820, 114, 12, '2002-11-03', 1, 'AZ', 'W 27-14', 0, 0, 0, 0, 0, 1, 7, 1, 0, 0, 0, 0, 0, 7.7),
(1821, 114, 13, '2005-12-24', 0, 'SF', 'L 20-24', 0, 0, 0, 0, 0, 10, 163, 1, 0, 0, 0, 0, 3, 35.3),
(1822, 114, 14, '2008-11-09', 1, 'NYJ', 'L 3-47', 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 1.5),
(1823, 114, 15, '2001-12-30', 0, 'IND', 'W 42-17', 0, 0, 0, 0, 0, 7, 203, 2, 0, 0, 0, 0, 3, 42.3),
(1824, 114, 16, '2005-09-25', 0, 'TEN', 'W 31-27', 0, 0, 0, 0, 0, 9, 163, 1, 0, 0, 0, 0, 3, 34.3),
(1825, 115, 1, '2002-11-25', 0, 'PHI', 'L 17-38', 0, 0, 0, 0, 0, 13, 166, 2, 0, 0, 0, 0, 3, 44.6),
(1826, 115, 2, '1996-12-23', 0, 'DET', 'W 24-14', 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 1.4),
(1827, 115, 3, '1997-09-21', 0, 'ATL', 'W 34-7', 0, 0, 0, 0, 0, 1, 56, 1, 0, 0, 0, 0, 0, 12.6),
(1828, 115, 4, '2002-11-03', 1, 'OAK', 'W 23-20', 0, 0, 0, 0, 0, 12, 191, 0, 0, 0, 0, 0, 3, 34.1),
(1829, 115, 5, '2003-12-21', 1, 'PHI', 'W 31-28', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(1830, 115, 6, '2002-11-17', 1, 'SD', 'L 17-20', 0, 0, 0, 0, 0, 7, 171, 2, 0, 0, 0, 0, 3, 39.1),
(1831, 115, 7, '1997-08-31', 1, 'TB', 'L 6-13', 0, 0, 0, 0, 0, 1, 12, 0, 0, 0, 0, 0, 0, 2.2),
(1832, 115, 8, '1999-11-14', 0, 'CAR', 'W 35-10', 0, 0, 0, 0, 0, 2, 16, 0, 0, 0, 0, 0, 0, 3.6),
(1833, 115, 9, '2001-10-14', 1, 'ATL', 'W 37-31', 0, 0, 0, 0, 0, 9, 183, 3, 0, 0, 0, 0, 3, 48.3),
(1834, 115, 10, '2000-12-17', 0, 'CHI', 'W 17-0', 0, 0, 0, 5, 0, 20, 283, 1, 0, 0, 0, 0, 3, 57.8),
(1835, 115, 11, '2000-11-12', 0, 'KC', 'W 21-7', 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 0, 1.6),
(1836, 115, 12, '2000-10-08', 0, 'OAK', 'L 28-34', 0, 0, 0, 4, 0, 12, 176, 2, 0, 0, 0, 0, 3, 45),
(1837, 115, 13, '1999-12-26', 0, 'WAS', 'L 20-26', 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 1.2),
(1838, 115, 14, '2003-11-17', 0, 'PIT', 'W 30-14', 0, 0, 0, 0, 0, 8, 155, 1, 0, 0, 0, 0, 3, 32.5),
(1839, 115, 15, '2003-10-19', 0, 'TB', 'W 24-7', 0, 0, 0, 0, 0, 6, 152, 1, 0, 0, 0, 0, 3, 30.2),
(1840, 115, 16, '1999-12-05', 1, 'CIN', 'L 30-44', 0, 0, 0, 0, 0, 9, 145, 0, 0, 0, 0, 0, 3, 26.5),
(1841, 116, 1, '1993-11-14', 1, 'TB', 'W 45-21', 0, 0, 0, 0, 0, 8, 172, 4, 0, 0, 0, 0, 3, 52.2),
(1842, 116, 2, '1992-10-18', 0, 'ATL', 'W 56-17', 0, 0, 0, 26, 1, 7, 183, 2, 0, 0, 0, 0, 3, 48.9),
(1843, 116, 3, '1986-11-17', 1, 'WAS', 'L 6-14', 0, 0, 0, 9, 0, 12, 204, 0, 0, 0, 0, 0, 3, 36.3),
(1844, 116, 4, '1990-11-04', 1, 'GB', 'W 24-20', 0, 0, 0, 0, 0, 6, 187, 1, 0, 0, 0, 0, 3, 33.7),
(1845, 116, 5, '1991-09-02', 1, 'NYG', 'L 14-16', 0, 0, 0, 0, 0, 1, 73, 1, 0, 0, 0, 0, 0, 14.3),
(1846, 116, 6, '1995-12-18', 0, 'MIN', 'W 37-30', 0, 0, 0, 10, 0, 14, 289, 3, 0, 0, 0, 0, 3, 64.9),
(1847, 116, 7, '1985-12-09', 0, 'LAR', 'L 20-27', 0, 0, 0, 14, 0, 10, 241, 1, 0, 0, 0, 0, 3, 44.5),
(1848, 116, 8, '1990-10-14', 1, 'ATL', 'W 45-35', 0, 0, 0, 0, 0, 13, 225, 5, 0, 0, 0, 0, 3, 68.5),
(1849, 116, 9, '1988-11-27', 1, 'SD', 'W 48-10', 0, 0, 0, 0, 0, 6, 171, 2, 0, 0, 0, 0, 3, 38.1),
(1850, 116, 10, '1985-10-20', 1, 'DET', 'L 21-23', 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 1.3),
(1851, 116, 11, '1986-10-05', 0, 'IND', 'W 35-14', 0, 0, 0, 0, 0, 6, 172, 3, 0, 0, 0, 0, 3, 44.2),
(1852, 116, 12, '1990-12-03', 0, 'NYG', 'W 7-3', 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 0, 2.3),
(1853, 116, 13, '1988-10-30', 0, 'MIN', 'W 24-21', 0, 0, 0, 0, 0, 1, 22, 0, 0, 0, 0, 0, 0, 3.2),
(1854, 116, 14, '1999-12-18', 1, 'CAR', 'L 24-41', 0, 0, 0, 11, 0, 2, 56, 1, 0, 0, 0, 0, 0, 14.7),
(1855, 116, 15, '1985-11-17', 0, 'KC', 'W 31-3', 0, 0, 0, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 2.9),
(1856, 116, 16, '1995-09-25', 1, 'DET', 'L 24-27', 0, 0, 0, 0, 0, 11, 181, 0, 0, 0, 0, 0, 3, 32.1),
(1857, 117, 1, '1987-12-20', 1, 'OAK', 'W 24-17', 0, 0, 0, 0, 0, 7, 115, 1, 0, 0, 0, 0, 3, 27.5),
(1858, 117, 2, '1986-12-07', 1, 'BUF', 'W 21-17', 0, 0, 0, 0, 0, 1, 15, 0, 0, 0, 0, 0, 0, 2.5),
(1859, 117, 3, '1991-12-22', 1, 'PIT', 'L 10-17', 0, 0, 0, 0, 0, 11, 138, 0, 0, 0, 0, 0, 3, 27.8),
(1860, 117, 4, '1990-10-08', 1, 'DEN', 'W 30-29', 0, 0, 0, 17, 0, 7, 123, 1, 0, 0, 0, 0, 3, 30),
(1861, 117, 5, '1990-11-25', 0, 'MIA', 'L 13-30', 0, 0, 0, -2, 0, 1, 23, 0, 0, 0, 0, 0, 0, 3.1),
(1862, 117, 6, '1988-12-18', 0, 'HOU', 'W 28-23', 0, 0, 0, 0, 0, 6, 136, 1, 0, 0, 0, 0, 3, 28.6),
(1863, 117, 7, '1986-11-16', 1, 'OAK', 'L 14-27', 0, 0, 0, 0, 0, 1, 35, 0, 0, 0, 0, 0, 0, 4.5),
(1864, 117, 8, '1989-10-23', 0, 'CHI', 'W 27-7', 0, 0, 0, 0, 0, 8, 186, 1, 0, 0, 0, 0, 3, 35.6),
(1865, 117, 9, '1990-09-23', 0, 'SD', 'L 14-24', 0, 0, 0, 0, 0, 1, 40, 0, 0, 0, 0, 0, 0, 5),
(1866, 117, 10, '1989-12-10', 1, 'IND', 'L 17-23', 0, 0, 0, 0, 0, 6, 152, 0, 0, 0, 0, 0, 3, 24.2),
(1867, 117, 11, '1986-11-23', 0, 'PIT', 'W 37-31', 0, 0, 0, 0, 0, 6, 134, 1, 0, 0, 0, 0, 3, 28.4),
(1868, 117, 12, '1989-10-29', 0, 'HOU', 'W 28-17', 0, 0, 0, 0, 0, 4, 184, 2, 0, 0, 0, 0, 3, 37.4),
(1869, 117, 13, '1990-12-30', 1, 'CIN', 'L 14-21', 0, 0, 0, 14, 0, 6, 115, 0, 0, 0, 0, 0, 3, 21.9),
(1870, 117, 14, '1987-12-13', 0, 'CIN', 'W 38-24', 0, 0, 0, 0, 0, 5, 119, 2, 0, 0, 0, 0, 3, 31.9),
(1871, 117, 15, '1989-12-17', 0, 'MIN', 'W 23-17', 0, 0, 0, 0, 0, 1, 17, 0, 0, 0, 0, 0, 0, 2.7),
(1872, 117, 16, '1989-11-05', 1, 'TB', 'W 42-31', 0, 0, 0, 0, 0, 1, 15, 0, 0, 0, 0, 0, 0, 2.5),
(1873, 118, 1, '1968-11-10', 0, 'NO', 'W 35-17', 0, 0, 0, 0, 0, 5, 107, 1, 0, 0, 0, 0, 3, 24.7),
(1874, 118, 2, '1968-12-01', 0, 'NYG', 'W 45-10', 0, 0, 0, 0, 0, 6, 137, 1, 0, 0, 0, 0, 3, 28.7),
(1875, 118, 3, '1968-09-29', 0, 'LAR', 'L 6-24', 0, 0, 0, 0, 0, 1, 57, 1, 0, 0, 0, 0, 0, 12.7),
(1876, 118, 4, '1969-10-05', 0, 'DET', 'L 21-28', 0, 0, 0, 0, 0, 7, 106, 1, 0, 0, 0, 0, 3, 26.6),
(1877, 118, 5, '1964-10-04', 0, 'DAL', 'W 27-6', 0, 0, 0, 0, 0, 5, 123, 1, 0, 0, 0, 0, 3, 26.3),
(1878, 118, 6, '1967-10-01', 1, 'NO', 'W 42-7', 0, 0, 0, 0, 0, 4, 107, 2, 0, 0, 0, 0, 3, 29.7),
(1879, 118, 7, '1969-12-14', 1, 'LAR', 'W 27-21', 0, 0, 0, 0, 0, 4, 119, 2, 0, 0, 0, 0, 3, 30.9),
(1880, 118, 8, '1977-10-23', 1, 'BUF', 'W 27-16', 0, 0, 0, 0, 0, 1, 52, 1, 0, 0, 0, 0, 0, 12.2),
(1881, 118, 9, '1966-12-17', 1, 'LAR', 'W 38-10', 0, 0, 0, 0, 0, 6, 161, 0, 0, 0, 0, 0, 3, 25.1),
(1882, 118, 10, '1968-12-08', 1, 'WAS', 'W 24-21', 0, 0, 0, 0, 0, 1, 38, 1, 0, 0, 0, 0, 0, 10.8),
(1883, 118, 11, '1969-11-23', 0, 'NYG', 'W 28-17', 0, 0, 0, 0, 0, 1, 30, 0, 0, 0, 0, 0, 0, 4),
(1884, 118, 12, '1967-10-29', 1, 'NYG', 'L 34-38', 0, 0, 0, 0, 0, 5, 126, 2, 0, 0, 0, 0, 3, 32.6),
(1885, 118, 13, '1969-11-16', 1, 'PIT', 'W 24-3', 0, 0, 0, 0, 0, 5, 132, 1, 0, 0, 0, 0, 3, 27.2),
(1886, 118, 14, '1967-10-15', 0, 'LAR', 'W 20-16', 0, 0, 0, 0, 0, 1, 28, 0, 0, 0, 0, 0, 0, 3.8),
(1887, 118, 15, '1964-11-22', 1, 'GB', 'L 21-28', 0, 0, 0, 0, 0, 7, 126, 2, 0, 0, 0, 0, 3, 34.6),
(1888, 118, 16, '1967-10-22', 0, 'CHI', 'W 24-0', 0, 0, 0, 0, 0, 1, 33, 0, 0, 0, 0, 0, 0, 4.3),
(1889, 119, 1, '2001-10-21', 0, 'NE', 'L 17-38', 0, 0, 0, 0, 0, 8, 157, 1, 0, 0, 0, 0, 3, 32.7),
(1890, 119, 2, '2003-09-28', 1, 'NO', 'W 55-21', 0, 0, 0, 0, 0, 6, 158, 3, 0, 0, 0, 0, 3, 42.8),
(1891, 119, 3, '2000-10-22', 0, 'NE', 'W 30-23', 0, 0, 0, 0, 0, 5, 156, 2, 0, 0, 0, 0, 3, 35.6),
(1892, 119, 4, '1999-09-26', 1, 'SD', 'W 27-19', 0, 0, 0, 4, 0, 13, 196, 1, 0, 0, 0, 0, 3, 42),
(1893, 119, 5, '2008-10-27', 1, 'TEN', 'L 21-31', 0, 0, 0, 0, 0, 1, 12, 0, 0, 0, 0, 0, 0, 2.2),
(1894, 119, 6, '2003-10-06', 1, 'TB', 'W 38-35', 0, 0, 0, 0, 0, 11, 176, 2, 0, 0, 0, 0, 3, 43.6),
(1895, 119, 7, '2007-09-30', 0, 'DEN', 'W 38-20', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(1896, 119, 8, '2002-12-15', 1, 'CLE', 'W 28-23', 0, 0, 0, 0, 0, 9, 172, 2, 0, 0, 0, 0, 3, 41.2),
(1897, 119, 9, '1999-10-24', 0, 'CIN', 'W 31-10', 0, 0, 0, 0, 0, 8, 156, 1, 0, 0, 0, 0, 3, 32.6),
(1898, 119, 10, '1996-10-13', 0, 'BAL', 'W 26-21', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(1899, 119, 11, '2000-10-08', 1, 'NE', 'L 16-24', 0, 0, 0, 0, 0, 13, 159, 1, 0, 0, 0, 0, 3, 37.9),
(1900, 119, 12, '2006-11-26', 0, 'PHI', 'W 45-21', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(1901, 119, 13, '2008-09-14', 1, 'MIN', 'W 18-15', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(1902, 119, 14, '2003-11-09', 1, 'JAX', 'L 23-28', 0, 0, 0, 0, 0, 1, 30, 1, 0, 0, 0, 0, 0, 10),
(1903, 119, 15, '2001-11-11', 0, 'MIA', 'L 24-27', 0, 0, 0, 0, 0, 9, 174, 3, 0, 0, 0, 0, 3, 47.4),
(1904, 119, 16, '2006-12-03', 1, 'TEN', 'L 17-20', 0, 0, 0, 0, 0, 7, 172, 1, 0, 0, 0, 0, 3, 33.2),
(1905, 120, 1, '2004-09-09', 1, 'NE', 'L 24-27', 0, 0, 0, 0, 0, 1, 42, 0, 0, 0, 0, 0, 0, 5.2),
(1906, 120, 2, '2014-12-07', 1, 'CLE', 'W 25-24', 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 1.5),
(1907, 120, 3, '2010-12-05', 0, 'DAL', 'L 35-38', 0, 0, 0, 0, 0, 14, 200, 1, 0, 0, 0, 0, 3, 43),
(1908, 120, 4, '2004-09-26', 0, 'GB', 'W 45-31', 0, 0, 0, 0, 0, 11, 184, 1, 0, 0, 0, 0, 3, 38.4),
(1909, 120, 5, '2010-10-03', 1, 'JAX', 'L 28-31', 0, 0, 0, 0, 0, 15, 196, 0, 0, 0, 0, 0, 3, 37.6),
(1910, 120, 6, '2001-12-23', 0, 'NYJ', 'L 28-29', 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 1.5),
(1911, 120, 7, '2012-10-07', 0, 'GB', 'W 30-27', 0, 0, 0, 0, 0, 13, 212, 1, 0, 0, 0, 0, 3, 43.2),
(1912, 120, 8, '2007-10-28', 1, 'CAR', 'W 31-7', 0, 0, 0, 0, 0, 7, 168, 1, 0, 0, 0, 0, 3, 32.8),
(1913, 120, 9, '2001-12-10', 1, 'MIA', 'L 6-41', 0, 0, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 2.1),
(1914, 120, 10, '2009-09-13', 0, 'JAX', 'W 14-12', 0, 0, 0, 0, 0, 10, 162, 1, 0, 0, 0, 0, 3, 35.2),
(1915, 120, 11, '2003-09-21', 0, 'JAX', 'W 23-13', 0, 0, 0, 0, 0, 10, 141, 2, 0, 0, 0, 0, 3, 39.1),
(1916, 120, 12, '2008-12-28', 0, 'TEN', 'W 23-0', 0, 0, 0, 0, 0, 1, 15, 0, 0, 0, 0, 0, 0, 2.5),
(1917, 120, 13, '2009-11-01', 0, 'SF', 'W 18-14', 0, 0, 0, 0, 0, 12, 147, 1, 0, 0, 0, 0, 3, 35.7),
(1918, 120, 14, '2007-12-02', 0, 'JAX', 'W 28-25', 0, 0, 0, 0, 0, 8, 158, 1, 0, 0, 0, 0, 3, 32.8),
(1919, 120, 15, '2001-10-14', 0, 'OAK', 'L 18-23', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(1920, 120, 16, '2007-12-23', 0, 'HOU', 'W 38-15', 0, 0, 0, 0, 0, 10, 143, 1, 0, 0, 0, 0, 3, 33.3),
(1921, 121, 1, '1981-10-04', 1, 'LAR', 'L 17-20', 0, 0, 0, 0, 0, 1, 25, 0, 0, 0, 0, 0, 0, 3.5),
(1922, 121, 2, '1979-11-04', 1, 'NYG', 'W 16-14', 0, 0, 0, 0, 0, 6, 124, 1, 0, 0, 0, 0, 3, 27.4),
(1923, 121, 3, '1979-11-22', 0, 'HOU', 'L 24-30', 0, 0, 0, 6, 0, 5, 118, 1, 0, 0, 0, 0, 3, 26.4),
(1924, 121, 4, '1976-11-15', 0, 'BUF', 'W 17-10', 0, 0, 0, 0, 0, 9, 135, 1, 0, 0, 0, 0, 3, 31.5),
(1925, 121, 5, '1974-10-13', 1, 'LAR', 'L 28-31', 0, 0, 0, -22, 0, 8, 118, 0, 0, 0, 0, 0, 3, 20.6),
(1926, 121, 6, '1977-10-30', 0, 'DET', 'W 37-0', 0, 0, 0, 0, 0, 1, 26, 0, 0, 0, 0, 0, 0, 3.6),
(1927, 121, 7, '1975-10-06', 1, 'DET', 'W 36-10', 0, 0, 0, 0, 0, 6, 188, 2, 0, 0, 0, 0, 3, 39.8),
(1928, 121, 8, '1973-12-16', 1, 'LAR', 'W 30-3', 0, 0, 0, 0, 0, 5, 140, 2, 0, 0, 0, 0, 3, 34),
(1929, 121, 9, '1977-10-16', 0, 'WAS', 'W 34-16', 0, 0, 0, 0, 0, 6, 157, 1, 0, 0, 0, 0, 3, 30.7),
(1930, 121, 10, '1974-09-23', 1, 'PHI', 'L 10-13', 0, 0, 0, 6, 0, 10, 161, 0, 0, 0, 0, 0, 3, 29.7),
(1931, 121, 11, '1975-10-12', 1, 'NYG', 'W 13-7', 0, 0, 0, 0, 0, 1, 29, 0, 0, 0, 0, 0, 0, 3.9),
(1932, 121, 12, '1979-10-21', 0, 'LAR', 'W 22-13', 0, 0, 0, 0, 0, 1, 29, 0, 0, 0, 0, 0, 0, 3.9),
(1933, 121, 13, '1980-12-15', 1, 'LAR', 'L 14-38', 0, 0, 0, 0, 0, 1, 25, 0, 0, 0, 0, 0, 0, 3.5),
(1934, 121, 14, '1978-11-23', 0, 'WAS', 'W 37-10', 0, 0, 0, 0, 0, 4, 116, 1, 0, 0, 0, 0, 3, 24.6),
(1935, 121, 15, '1979-11-18', 1, 'WAS', 'L 20-34', 0, 0, 0, 0, 0, 8, 134, 2, 0, 0, 0, 0, 3, 36.4),
(1936, 121, 16, '1974-10-06', 0, 'MIN', 'L 21-23', 0, 0, 0, 0, 0, 1, 28, 0, 0, 0, 0, 0, 0, 3.8),
(1937, 122, 1, '1988-10-03', 1, 'NO', 'L 17-20', 0, 0, 0, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 2.9),
(1938, 122, 2, '1992-11-22', 1, 'AZ', 'W 16-10', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(1939, 122, 3, '1992-09-20', 0, 'AZ', 'W 31-20', 0, 0, 0, -9, 0, 8, 210, 3, 0, 0, 0, 0, 3, 49.1),
(1940, 122, 4, '1993-10-17', 0, 'SF', 'W 26-17', 0, 0, 0, 0, 0, 12, 168, 1, 0, 0, 0, 0, 3, 37.8),
(1941, 122, 5, '1990-12-30', 1, 'ATL', 'L 7-26', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(1942, 122, 6, '1988-11-24', 0, 'HOU', 'L 17-25', 0, 0, 0, 0, 0, 1, 22, 0, 0, 0, 0, 0, 0, 3.2),
(1943, 122, 7, '1996-10-27', 1, 'MIA', 'W 29-10', 0, 0, 0, 0, 0, 12, 186, 1, 0, 0, 0, 0, 3, 39.6),
(1944, 122, 8, '1990-12-02', 0, 'NO', 'W 17-13', 0, 0, 0, 0, 0, 1, 24, 0, 0, 0, 0, 0, 0, 3.4),
(1945, 122, 9, '1996-12-08', 1, 'AZ', 'W 10-6', 0, 0, 0, 0, 0, 8, 198, 1, 0, 0, 0, 0, 3, 36.8),
(1946, 122, 10, '1991-11-28', 0, 'PIT', 'W 20-10', 0, 0, 0, 0, 0, 8, 157, 1, 0, 0, 0, 0, 3, 32.7),
(1947, 122, 11, '1995-10-08', 0, 'GB', 'W 34-24', 0, 0, 0, 0, 0, 8, 150, 1, 0, 0, 0, 0, 3, 32),
(1948, 122, 12, '1997-08-31', 1, 'PIT', 'W 37-7', 0, 0, 0, 0, 0, 7, 153, 2, 0, 0, 0, 0, 3, 37.3),
(1949, 122, 13, '1993-10-03', 0, 'GB', 'W 36-14', 0, 0, 0, 0, 0, 7, 155, 1, 0, 0, 0, 0, 3, 31.5),
(1950, 122, 14, '1992-11-15', 0, 'LAR', 'L 23-27', 0, 0, 0, 0, 0, 8, 168, 0, 0, 0, 0, 0, 3, 27.8),
(1951, 122, 15, '1991-12-22', 0, 'ATL', 'W 31-27', 0, 0, 0, 0, 0, 10, 169, 1, 0, 0, 0, 0, 3, 35.9),
(1952, 122, 16, '1988-09-12', 1, 'AZ', 'W 17-14', 0, 0, 0, 0, 0, 1, 47, 0, 0, 0, 0, 0, 0, 5.7),
(1953, 123, 1, '2009-10-04', 0, 'NYG', 'L 16-27', 0, 0, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 2.1),
(1954, 123, 2, '2007-09-30', 1, 'SD', 'W 30-16', 0, 0, 0, 0, 0, 8, 164, 1, 0, 0, 0, 0, 3, 33.4),
(1955, 123, 3, '2013-10-27', 0, 'CLE', 'W 23-17', 0, 0, 0, 0, 0, 1, 7, 0, 0, 0, 0, 0, 0, 1.7),
(1956, 123, 4, '2010-12-26', 0, 'TEN', 'W 34-14', 0, 0, 0, 0, 0, 6, 153, 1, 0, 0, 0, 0, 3, 30.3),
(1957, 123, 5, '2010-11-21', 0, 'AZ', 'W 31-13', 0, 0, 0, 0, 0, 6, 109, 2, 0, 0, 0, 0, 3, 31.9),
(1958, 123, 6, '2010-11-28', 1, 'SEA', 'W 42-24', 0, 0, 0, 0, 0, 13, 170, 3, 0, 0, 0, 0, 3, 51),
(1959, 123, 7, '2010-09-13', 0, 'SD', 'W 21-14', 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 0, 2.3),
(1960, 123, 8, '2010-11-14', 1, 'DEN', 'L 29-49', 0, 0, 0, 0, 0, 13, 186, 2, 0, 0, 0, 0, 3, 46.6),
(1961, 123, 9, '2012-09-30', 0, 'SD', 'L 20-37', 0, 0, 0, 0, 0, 7, 108, 1, 0, 0, 0, 0, 3, 26.8),
(1962, 123, 10, '2010-10-17', 1, 'HOU', 'L 31-35', 0, 0, 0, 0, 0, 6, 108, 2, 0, 0, 0, 0, 3, 31.8),
(1963, 123, 11, '2013-09-19', 1, 'PHI', 'W 26-16', 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 1.4),
(1964, 123, 12, '2010-01-03', 1, 'DEN', 'W 44-24', 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 0, 1.6),
(1965, 123, 13, '2009-10-18', 1, 'WAS', 'W 14-6', 0, 0, 0, 0, 0, 6, 109, 0, 0, 0, 0, 0, 3, 19.9),
(1966, 123, 14, '2011-10-02', 0, 'MIN', 'W 22-17', 0, 0, 0, 0, 0, 5, 107, 1, 0, 0, 0, 0, 3, 24.7),
(1967, 123, 15, '2007-12-30', 1, 'NYJ', 'L 10-13', 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 0, 2.3),
(1968, 123, 16, '2011-10-09', 1, 'IND', 'W 28-24', 0, 0, 0, 0, 0, 7, 128, 2, 0, 0, 0, 0, 3, 34.8),
(1969, 124, 1, '1966-11-20', 0, 'NE', 'T 27-27', 0, 0, 1, 0, 0, 9, 133, 2, 0, 0, 0, 0, 3, 36.3),
(1970, 124, 2, '1968-12-08', 1, 'SD', 'W 40-3', 0, 0, 0, -2, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.4),
(1971, 124, 3, '1966-11-27', 1, 'NYJ', 'W 32-24', 0, 0, 0, 0, 0, 6, 136, 0, 0, 0, 0, 0, 3, 22.6),
(1972, 124, 4, '1966-10-30', 0, 'HOU', 'W 48-23', 0, 0, 0, 14, 0, 5, 187, 1, 0, 0, 0, 0, 3, 34.1),
(1973, 124, 5, '1970-11-01', 0, 'OAK', 'T 17-17', 0, 0, 0, 0, 0, 4, 129, 1, 0, 0, 0, 0, 3, 25.9),
(1974, 124, 6, '1970-10-18', 1, 'CIN', 'W 27-19', 0, 0, 0, 0, 0, 1, 25, 0, 0, 0, 0, 0, 0, 3.5),
(1975, 124, 7, '1971-10-18', 0, 'PIT', 'W 38-16', 0, 0, 0, 0, 0, 6, 190, 2, 0, 0, 0, 0, 3, 40),
(1976, 124, 8, '1969-11-27', 0, 'DEN', 'W 31-17', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(1977, 124, 9, '1972-10-15', 0, 'CIN', 'L 16-23', 0, 0, 0, 0, 0, 10, 149, 1, 0, 0, 0, 0, 3, 33.9),
(1978, 124, 10, '1965-10-17', 0, 'BUF', 'L 7-23', 0, 0, 0, 2, 0, 1, 15, 0, 0, 0, 0, 0, 0, 2.7),
(1979, 124, 11, '1969-10-19', 0, 'MIA', 'W 17-10', 0, 0, 0, 0, 0, 4, 131, 0, 0, 0, 0, 0, 3, 20.1),
(1980, 124, 12, '1967-10-15', 1, 'SD', 'L 31-45', 0, 0, 0, 24, 1, 9, 134, 0, 0, 0, 0, 0, 3, 33.8),
(1981, 124, 13, '1967-12-10', 1, 'NYJ', 'W 21-7', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(1982, 124, 14, '1965-10-10', 1, 'DEN', 'W 31-23', 0, 0, 0, 0, 0, 1, 48, 0, 0, 0, 0, 0, 0, 5.8),
(1983, 124, 15, '1966-10-02', 0, 'BUF', 'L 14-29', 0, 0, 0, 0, 0, 4, 125, 1, 0, 0, 0, 0, 3, 25.5),
(1984, 124, 16, '1968-12-14', 1, 'DEN', 'W 30-7', 0, 0, 0, 0, 0, 3, 119, 1, 0, 0, 0, 0, 3, 23.9),
(1985, 125, 1, '1962-09-07', 1, 'DEN', 'L 21-30', 0, 0, 0, 0, 0, 1, 17, 0, 0, 0, 0, 0, 0, 2.7),
(1986, 125, 2, '1968-09-21', 0, 'HOU', 'W 30-14', 0, 0, 0, 3, 0, 8, 183, 1, 0, 0, 0, 0, 3, 35.6),
(1987, 125, 3, '1970-09-27', 0, 'OAK', 'T 27-27', 0, 0, 0, 0, 0, 1, 37, 1, 0, 0, 0, 0, 0, 10.7),
(1988, 125, 4, '1965-09-11', 0, 'DEN', 'W 34-31', 0, 0, 0, 0, 0, 7, 211, 1, 0, 0, 0, 0, 3, 37.1),
(1989, 125, 5, '1968-10-13', 1, 'OAK', 'W 23-14', 0, 0, 0, 0, 0, 9, 182, 1, 0, 0, 0, 0, 3, 36.2),
(1990, 125, 6, '1963-11-02', 1, 'NYJ', 'W 53-7', 0, 0, 0, 0, 0, 5, 180, 1, 0, 0, 0, 0, 3, 32),
(1991, 125, 7, '1965-11-14', 1, 'KC', 'L 7-31', 0, 0, 0, -1, 0, 6, 181, 1, 0, 0, 0, 0, 3, 33),
(1992, 125, 8, '1963-10-20', 1, 'KC', 'W 38-17', 0, 0, 0, 0, 0, 9, 232, 2, 0, 0, 0, 0, 3, 47.2),
(1993, 125, 9, '1967-10-29', 1, 'OAK', 'L 10-51', 0, 0, 0, 0, 0, 10, 213, 1, 0, 0, 0, 0, 3, 40.3),
(1994, 125, 10, '1968-11-10', 1, 'NE', 'W 27-17', 0, 0, 0, 0, 0, 1, 29, 0, 0, 0, 0, 0, 0, 3.9),
(1995, 125, 11, '1963-11-10', 1, 'NE', 'W 7-6', 0, 0, 0, 0, 0, 13, 210, 1, 0, 0, 0, 0, 3, 43),
(1996, 125, 12, '1964-11-26', 0, 'BUF', 'L 24-27', 0, 0, 0, 0, 0, 4, 185, 2, 0, 0, 0, 0, 3, 37.5),
(1997, 125, 13, '1968-09-29', 1, 'CIN', 'W 31-10', 0, 0, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 2.1),
(1998, 125, 14, '1964-11-01', 0, 'OAK', 'W 31-17', 0, 0, 0, 0, 0, 8, 203, 2, 0, 0, 0, 0, 3, 43.3),
(1999, 125, 15, '1970-10-12', 0, 'GB', 'L 20-22', 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 0, 1.6),
(2000, 125, 16, '1963-12-22', 0, 'DEN', 'W 58-20', 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 1.4),
(2001, 126, 1, '1978-11-12', 0, 'KC', 'W 29-23', 0, 0, 0, 0, 0, 1, 27, 0, 0, 0, 0, 0, 0, 3.7),
(2002, 126, 2, '1981-09-07', 1, 'CLE', 'W 44-14', 0, 0, 0, 0, 0, 6, 191, 0, 0, 0, 0, 0, 3, 28.1),
(2003, 126, 3, '1981-10-25', 1, 'CHI', 'L 17-20', 0, 0, 0, 0, 0, 5, 124, 1, 0, 0, 0, 0, 3, 26.4),
(2004, 126, 4, '1980-10-19', 0, 'NYG', 'W 44-7', 0, 0, 0, 0, 0, 10, 171, 1, 0, 0, 0, 0, 3, 36.1),
(2005, 126, 5, '1986-09-14', 1, 'NYG', 'L 7-20', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(2006, 126, 6, '1976-12-05', 0, 'SF', 'W 13-7', 0, 0, 0, 0, 0, 1, 30, 0, 0, 0, 0, 0, 0, 4),
(2007, 126, 7, '1978-11-05', 0, 'CIN', 'W 22-13', 0, 0, 0, 0, 0, 1, 14, 0, 0, 0, 0, 0, 0, 2.4),
(2008, 126, 8, '1980-10-12', 1, 'OAK', 'L 24-38', 0, 0, 0, 0, 0, 8, 135, 0, 0, 0, 0, 0, 3, 24.5),
(2009, 126, 9, '1977-11-06', 1, 'DET', 'L 0-20', 0, 0, 0, 0, 0, 1, 23, 0, 0, 0, 0, 0, 0, 3.3),
(2010, 126, 10, '1981-09-13', 0, 'DET', 'W 28-23', 0, 0, 0, 0, 0, 7, 166, 0, 0, 0, 0, 0, 3, 26.6),
(2011, 126, 11, '1980-11-09', 0, 'DEN', 'L 13-20', 0, 0, 0, 0, 0, 9, 127, 0, 0, 0, 0, 0, 3, 24.7),
(2012, 126, 12, '1979-10-21', 1, 'LAR', 'W 40-16', 0, 0, 0, 0, 0, 7, 168, 0, 0, 0, 0, 0, 3, 26.8),
(2013, 126, 13, '1982-11-22', 1, 'OAK', 'L 24-28', 0, 0, 0, 0, 0, 1, 22, 0, 0, 0, 0, 0, 0, 3.2),
(2014, 126, 14, '1976-09-26', 0, 'LAR', 'W 43-24', 0, 0, 0, 0, 0, 5, 134, 1, 0, 0, 0, 0, 3, 27.4),
(2015, 126, 15, '1982-12-11', 1, 'SF', 'W 41-37', 0, 0, 0, 0, 0, 8, 145, 0, 0, 0, 0, 0, 3, 25.5),
(2016, 126, 16, '1979-11-25', 0, 'KC', 'W 28-7', 0, 0, 0, 0, 0, 9, 123, 1, 0, 0, 0, 0, 3, 30.3),
(2017, 127, 1, '2002-10-27', 1, 'NE', 'W 24-16', 0, 0, 0, 0, 0, 8, 116, 0, 0, 0, 0, 0, 3, 22.6),
(2018, 127, 2, '2002-12-01', 1, 'SD', 'L 27-30', 0, 0, 0, 0, 0, 7, 126, 0, 0, 0, 0, 0, 3, 22.6),
(2019, 127, 3, '1999-10-17', 0, 'GB', 'W 31-10', 0, 0, 0, 0, 0, 5, 116, 2, 0, 0, 0, 0, 3, 31.6),
(2020, 127, 4, '2000-10-22', 1, 'CIN', 'L 21-31', 0, 0, 0, 0, 0, 10, 136, 0, 0, 0, 0, 0, 3, 26.6),
(2021, 127, 5, '1998-11-01', 1, 'CIN', 'W 33-26', 0, 0, 0, 0, 0, 7, 133, 1, 0, 0, 0, 0, 3, 29.3),
(2022, 127, 6, '2000-11-19', 0, 'SD', 'W 38-37', 0, 0, 0, 0, 0, 10, 148, 2, 0, 0, 0, 0, 3, 39.8),
(2023, 127, 7, '1995-11-05', 0, 'AZ', 'W 38-6', 0, 0, 0, 0, 0, 1, 23, 1, 0, 0, 0, 0, 0, 9.3),
(2024, 127, 8, '1995-11-19', 0, 'SD', 'W 30-27', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2025, 127, 9, '1998-11-16', 1, 'KC', 'W 30-7', 0, 0, 0, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 2.9),
(2026, 127, 10, '1998-09-13', 0, 'DAL', 'W 42-23', 0, 0, 0, 0, 0, 5, 117, 0, 0, 0, 0, 0, 3, 19.7),
(2027, 127, 11, '2000-10-15', 0, 'CLE', 'W 44-10', 0, 0, 0, 0, 0, 5, 129, 0, 0, 0, 0, 0, 3, 20.9),
(2028, 127, 12, '2003-12-21', 1, 'IND', 'W 31-17', 0, 0, 0, 0, 0, 1, 23, 0, 0, 0, 0, 0, 0, 3.3),
(2029, 127, 13, '1997-10-26', 1, 'BUF', 'W 23-20', 0, 0, 0, 0, 0, 1, 17, 0, 0, 0, 0, 0, 0, 2.7),
(2030, 127, 14, '1998-11-08', 0, 'SD', 'W 27-10', 0, 0, 0, 0, 0, 9, 133, 1, 0, 0, 0, 0, 3, 31.3),
(2031, 127, 15, '1999-11-14', 1, 'SEA', 'L 17-20', 0, 0, 0, 0, 0, 6, 125, 1, 0, 0, 0, 0, 3, 27.5),
(2032, 127, 16, '1997-09-14', 0, 'LAR', 'W 35-14', 0, 0, 0, 0, 0, 1, 23, 1, 0, 0, 0, 0, 0, 9.3),
(2033, 128, 1, '1995-11-26', 1, 'HOU', 'L 33-42', 0, 0, 0, 0, 0, 1, 24, 0, 0, 0, 0, 0, 0, 3.4),
(2034, 128, 2, '1995-09-17', 0, 'WAS', 'W 38-31', 0, 0, 0, 0, 0, 1, 43, 1, 0, 0, 0, 0, 0, 11.3),
(2035, 128, 3, '2005-12-17', 1, 'BUF', 'W 28-17', 0, 0, 0, 0, 0, 11, 137, 1, 0, 0, 0, 0, 3, 33.7),
(2036, 128, 4, '2000-10-01', 0, 'NE', 'L 19-28', 0, 0, 0, 0, 0, 13, 160, 0, 0, 0, 0, 0, 3, 32),
(2037, 128, 5, '2001-09-23', 1, 'AZ', 'W 38-17', 0, 0, 0, 0, 0, 14, 162, 2, 0, 0, 0, 0, 3, 45.2),
(2038, 128, 6, '1995-12-10', 0, 'SEA', 'L 27-31', 0, 0, 0, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 2.9),
(2039, 128, 7, '2000-09-24', 0, 'KC', 'L 22-23', 0, 0, 0, 0, 0, 8, 134, 0, 0, 0, 0, 0, 3, 24.4),
(2040, 128, 8, '2000-11-19', 0, 'SD', 'W 38-37', 0, 0, 0, 0, 0, 11, 187, 1, 0, 0, 0, 0, 3, 38.7),
(2041, 128, 9, '2004-10-17', 1, 'OAK', 'W 31-3', 0, 0, 0, 22, 0, 1, 24, 0, 0, 0, 0, 0, 0, 5.6),
(2042, 128, 10, '1998-10-11', 1, 'SEA', 'W 21-16', 0, 0, 0, 0, 0, 8, 136, 1, 0, 0, 0, 0, 3, 30.6),
(2043, 128, 11, '1996-10-20', 0, 'BAL', 'W 45-34', 0, 0, 0, 0, 0, 1, 35, 0, 0, 0, 0, 0, 0, 4.5),
(2044, 128, 12, '1998-12-27', 0, 'SEA', 'W 28-21', 0, 0, 0, 0, 0, 9, 158, 1, 0, 0, 0, 0, 3, 33.8),
(2045, 128, 13, '2003-11-30', 1, 'OAK', 'W 22-8', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(2046, 128, 14, '2004-10-31', 0, 'ATL', 'L 28-41', 0, 0, 0, 6, 0, 9, 208, 1, 0, 0, 0, 0, 3, 39.4),
(2047, 128, 15, '1998-12-06', 0, 'KC', 'W 35-31', 0, 0, 0, 0, 0, 8, 165, 0, 0, 0, 0, 0, 3, 27.5),
(2048, 128, 16, '2001-10-28', 0, 'NE', 'W 31-20', 0, 0, 0, 0, 0, 6, 159, 1, 0, 0, 0, 0, 3, 30.9),
(2049, 129, 1, '1967-12-17', 1, 'OAK', 'L 29-38', 0, 0, 0, 7, 0, 12, 159, 2, 0, 0, 0, 0, 3, 43.6),
(2050, 129, 2, '1972-11-19', 1, 'MIA', 'L 24-28', 0, 0, 0, 0, 0, 1, 41, 0, 0, 0, 0, 0, 0, 5.1),
(2051, 129, 3, '1968-09-22', 1, 'NE', 'W 47-31', 0, 0, 0, 0, 0, 1, 39, 1, 0, 0, 0, 0, 0, 10.9),
(2052, 129, 4, '1971-10-24', 0, 'MIA', 'L 14-30', 0, 0, 0, 0, 0, 1, 32, 0, 0, 0, 0, 0, 0, 4.2),
(2053, 129, 5, '1971-10-17', 0, 'BUF', 'W 28-17', 0, 0, 0, 0, 0, 1, 44, 0, 0, 0, 0, 0, 0, 5.4),
(2054, 129, 6, '1963-10-26', 0, 'DEN', 'T 35-35', 0, 0, 0, 0, 0, 5, 159, 3, 0, 0, 0, 0, 3, 41.9),
(2055, 129, 7, '1968-11-17', 1, 'OAK', 'L 32-43', 0, 0, 0, 0, 0, 10, 228, 1, 0, 0, 0, 0, 3, 41.8),
(2056, 129, 8, '1968-12-01', 0, 'MIA', 'W 35-17', 0, 0, 0, 0, 0, 7, 160, 3, 0, 0, 0, 0, 3, 44),
(2057, 129, 9, '1967-10-15', 0, 'HOU', 'T 28-28', 0, 0, 0, 0, 0, 10, 157, 1, 0, 0, 0, 0, 3, 34.7),
(2058, 129, 10, '1965-11-07', 1, 'KC', 'W 13-10', 0, 0, 0, 0, 0, 1, 31, 1, 0, 0, 0, 0, 0, 10.1),
(2059, 129, 11, '1965-12-19', 0, 'BUF', 'W 14-12', 0, 0, 0, 0, 0, 9, 180, 2, 0, 0, 0, 0, 3, 42),
(2060, 129, 12, '1968-11-24', 1, 'SD', 'W 37-15', 0, 0, 0, 0, 0, 6, 166, 1, 0, 0, 0, 0, 3, 31.6),
(2061, 129, 13, '1967-11-19', 1, 'NE', 'W 29-24', 0, 0, 0, 0, 0, 5, 164, 1, 0, 0, 0, 0, 3, 30.4),
(2062, 129, 14, '1968-09-15', 1, 'KC', 'W 20-19', 0, 0, 0, 0, 0, 8, 203, 2, 0, 0, 0, 0, 3, 43.3),
(2063, 129, 15, '1972-09-24', 1, 'BAL', 'W 44-34', 0, 0, 0, 0, 0, 1, 28, 1, 0, 0, 0, 0, 0, 9.8),
(2064, 129, 16, '1969-10-20', 0, 'HOU', 'W 26-17', 0, 0, 0, 0, 0, 7, 212, 2, 0, 0, 0, 0, 3, 43.2),
(2065, 130, 1, '1990-09-30', 1, 'NE', 'W 37-13', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(2066, 130, 2, '1985-11-17', 0, 'TB', 'W 62-28', 0, 0, 0, 0, 0, 6, 133, 1, 0, 0, 0, 0, 3, 28.3),
(2067, 130, 3, '1987-12-20', 0, 'PHI', 'L 27-38', 0, 0, 0, 0, 0, 10, 168, 1, 0, 0, 0, 0, 3, 35.8),
(2068, 130, 4, '1988-11-27', 0, 'MIA', 'W 38-34', 0, 0, 0, 0, 0, 14, 181, 0, 0, 0, 0, 0, 3, 35.1),
(2069, 130, 5, '1990-10-28', 1, 'HOU', 'W 17-12', 0, 0, 0, 0, 0, 7, 119, 1, 0, 0, 0, 0, 3, 27.9),
(2070, 130, 6, '1990-09-09', 1, 'CIN', 'L 20-25', 0, 0, 0, 0, 0, 8, 118, 2, 0, 0, 0, 0, 3, 34.8),
(2071, 130, 7, '1985-11-03', 1, 'IND', 'W 35-17', 0, 0, 0, 0, 0, 1, 17, 1, 0, 0, 0, 0, 0, 8.7),
(2072, 130, 8, '1991-11-17', 1, 'NE', 'W 28-21', 0, 0, 0, 0, 0, 9, 127, 0, 0, 0, 0, 0, 3, 24.7),
(2073, 130, 9, '1991-09-23', 1, 'CHI', 'L 13-19', 0, 0, 0, 0, 0, 1, 29, 0, 0, 0, 0, 0, 0, 3.9),
(2074, 130, 10, '1989-12-10', 0, 'PIT', 'L 0-13', 0, 0, 0, 0, 0, 1, 25, 0, 0, 0, 0, 0, 0, 3.5),
(2075, 130, 11, '1986-11-02', 1, 'SEA', 'W 38-7', 0, 0, 0, 0, 0, 9, 195, 2, 0, 0, 0, 0, 3, 43.5),
(2076, 130, 12, '1985-11-10', 1, 'MIA', 'L 17-21', 0, 0, 0, 0, 0, 10, 156, 0, 0, 0, 0, 0, 3, 28.6),
(2077, 130, 13, '1989-09-24', 1, 'MIA', 'W 40-33', 0, 0, 0, 0, 0, 10, 159, 1, 0, 0, 0, 0, 3, 34.9),
(2078, 130, 14, '1992-09-06', 1, 'ATL', 'L 17-20', 0, 0, 0, 0, 0, 1, 15, 1, 0, 0, 0, 0, 0, 8.5),
(2079, 130, 15, '1986-09-07', 1, 'BUF', 'W 28-24', 0, 0, 0, 0, 0, 6, 119, 1, 0, 0, 0, 0, 3, 26.9),
(2080, 130, 16, '1990-10-14', 0, 'SD', 'L 3-39', 0, 0, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 2.1),
(2081, 131, 1, '1997-10-27', 0, 'GB', 'L 10-28', 0, 0, 0, 0, 0, 7, 163, 0, 0, 0, 0, 0, 3, 26.3),
(2082, 131, 2, '1999-12-12', 1, 'IND', 'L 15-20', 0, 0, 0, 0, 0, 9, 148, 0, 0, 0, 0, 0, 3, 26.8),
(2083, 131, 3, '1998-12-06', 1, 'PIT', 'W 23-9', 0, 0, 0, 0, 0, 9, 193, 1, 0, 0, 0, 0, 3, 37.3),
(2084, 131, 4, '2000-12-24', 0, 'MIA', 'L 24-27', 0, 0, 0, 4, 0, 2, 41, 1, 0, 0, 0, 0, 0, 12.5),
(2085, 131, 5, '1999-10-03', 1, 'CLE', 'W 19-7', 0, 0, 0, 0, 0, 13, 214, 1, 0, 0, 0, 0, 3, 43.4),
(2086, 131, 6, '2000-10-15', 0, 'NYJ', 'L 17-34', 0, 0, 0, 0, 0, 2, 45, 0, 0, 0, 0, 0, 0, 6.5),
(2087, 131, 7, '2000-11-19', 0, 'CIN', 'W 16-13', 0, 0, 0, 0, 0, 11, 129, 0, 0, 0, 0, 0, 3, 26.9),
(2088, 131, 8, '1999-09-19', 0, 'IND', 'W 31-28', 0, 0, 0, 0, 0, 7, 122, 0, 0, 0, 0, 0, 3, 22.2),
(2089, 131, 9, '1998-10-19', 0, 'NYJ', 'L 14-24', 0, 0, 0, 0, 0, 2, 34, 0, 0, 0, 0, 0, 0, 5.4),
(2090, 131, 10, '1998-12-13', 1, 'LAR', 'L 18-32', 0, 0, 0, 0, 0, 1, 14, 0, 0, 0, 0, 0, 0, 2.4),
(2091, 131, 11, '1996-11-03', 0, 'MIA', 'W 42-23', 0, 0, 0, 0, 0, 10, 112, 0, 0, 0, 0, 0, 3, 24.2),
(2092, 131, 12, '1996-12-21', 1, 'NYG', 'W 23-22', 0, 0, 0, -2, 0, 8, 124, 1, 0, 0, 0, 0, 3, 29.2),
(2093, 131, 13, '1997-10-06', 1, 'DEN', 'L 13-34', 0, 0, 0, 0, 0, 2, 27, 0, 0, 0, 0, 0, 0, 4.7),
(2094, 131, 14, '2001-10-14', 0, 'SD', 'W 29-26', 0, 0, 0, 0, 0, 7, 110, 1, 0, 0, 0, 0, 3, 27),
(2095, 131, 15, '1999-09-12', 1, 'NYJ', 'W 30-28', 0, 0, 0, 0, 0, 7, 113, 0, 0, 0, 0, 0, 3, 21.3),
(2096, 131, 16, '1999-10-24', 0, 'DEN', 'W 24-23', 0, 0, 0, 0, 0, 2, 80, 0, 0, 0, 0, 0, 0, 10),
(2097, 132, 1, '2011-11-21', 0, 'KC', 'W 34-3', 0, 0, 0, 0, 0, 2, 22, 0, 0, 0, 0, 0, 0, 4.2),
(2098, 132, 2, '2010-01-03', 1, 'HOU', 'L 27-34', 0, 0, 0, 0, 0, 1, 12, 0, 0, 0, 0, 0, 0, 2.2),
(2099, 132, 3, '2007-11-25', 0, 'PHI', 'W 31-28', 0, 0, 0, 0, 0, 13, 149, 0, 0, 0, 0, 0, 3, 30.9),
(2100, 132, 4, '2008-12-28', 1, 'BUF', 'W 13-0', 0, 0, 0, 0, 0, 2, 26, 0, 0, 0, 0, 0, 0, 4.6),
(2101, 132, 5, '2007-12-16', 0, 'NYJ', 'W 20-10', 0, 0, 0, -2, 0, 3, 30, 0, 0, 0, 0, 0, 0, 5.8),
(2102, 132, 6, '2009-12-27', 0, 'JAX', 'W 35-7', 0, 0, 0, 0, 0, 13, 138, 0, 0, 0, 0, 0, 3, 29.8),
(2103, 132, 7, '2009-12-06', 1, 'MIA', 'L 21-22', 0, 0, 0, 0, 0, 10, 167, 0, 0, 0, 0, 0, 3, 29.7),
(2104, 132, 8, '2011-09-25', 1, 'BUF', 'L 31-34', 0, 0, 0, 19, 0, 16, 217, 2, 0, 0, 0, 0, 3, 54.6),
(2105, 132, 9, '2010-12-19', 0, 'GB', 'W 31-27', 0, 0, 0, 0, 0, 3, 42, 0, 0, 0, 0, 0, 0, 7.2);
INSERT INTO `legends_player_data` (`rowID`, `playerID`, `gameID`, `game_date`, `is_away`, `opp`, `game_result`, `passYDS`, `passTD`, `passINT`, `rushYDS`, `rushTD`, `rec`, `recYDS`, `recTD`, `krtd`, `prtd`, `passBonus`, `rushBonus`, `recBonus`, `fpts`) VALUES
(2106, 132, 10, '2011-09-12', 1, 'MIA', 'W 38-24', 0, 0, 0, 0, 0, 8, 160, 2, 0, 0, 0, 0, 3, 39),
(2107, 132, 11, '2011-10-02', 1, 'OAK', 'W 31-19', 0, 0, 0, 0, 0, 9, 158, 1, 0, 0, 0, 0, 3, 33.8),
(2108, 132, 12, '2012-09-23', 1, 'BAL', 'L 30-31', 0, 0, 0, 0, 0, 8, 142, 0, 0, 0, 0, 0, 3, 25.2),
(2109, 132, 13, '2009-10-18', 0, 'TEN', 'W 59-0', 0, 0, 0, 0, 0, 10, 150, 2, 0, 0, 0, 0, 3, 40),
(2110, 132, 14, '2012-12-10', 0, 'HOU', 'W 42-14', 0, 0, 0, 0, 0, 3, 52, 0, 0, 0, 0, 0, 0, 8.2),
(2111, 132, 15, '2009-11-22', 0, 'NYJ', 'W 31-14', 0, 0, 0, 11, 0, 15, 192, 0, 0, 0, 0, 0, 3, 38.3),
(2112, 132, 16, '2007-10-21', 1, 'MIA', 'W 49-28', 0, 0, 0, 0, 0, 9, 138, 2, 0, 0, 0, 0, 3, 37.8),
(2113, 133, 1, '1968-11-03', 0, 'KC', 'W 38-21', 0, 0, 0, 0, 0, 8, 144, 0, 0, 0, 0, 0, 3, 25.4),
(2114, 133, 2, '1969-09-20', 0, 'MIA', 'W 20-17', 0, 0, 0, 0, 0, 9, 132, 1, 0, 0, 0, 0, 3, 31.2),
(2115, 133, 3, '1978-10-15', 0, 'KC', 'W 28-6', 0, 0, 0, 0, 0, 1, 49, 0, 0, 0, 0, 0, 0, 5.9),
(2116, 133, 4, '1971-10-31', 0, 'KC', 'T 20-20', 0, 0, 0, 0, 0, 7, 128, 1, 0, 0, 0, 0, 3, 28.8),
(2117, 133, 5, '1977-10-03', 1, 'KC', 'W 37-28', 0, 0, 0, 0, 0, 1, 21, 1, 0, 0, 0, 0, 0, 9.1),
(2118, 133, 6, '1978-12-03', 0, 'DEN', 'L 6-21', 0, 0, 0, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 2.9),
(2119, 133, 7, '1965-10-24', 0, 'NE', 'W 30-21', 0, 0, 0, 0, 0, 7, 118, 0, 0, 0, 0, 0, 3, 21.8),
(2120, 133, 8, '1971-10-17', 0, 'PHI', 'W 34-10', 0, 0, 0, 0, 0, 8, 148, 1, 0, 0, 0, 0, 3, 31.8),
(2121, 133, 9, '1974-11-24', 0, 'DEN', 'L 17-20', 0, 0, 0, 0, 0, 8, 121, 2, 0, 0, 0, 0, 3, 35.1),
(2122, 133, 10, '1968-11-17', 0, 'NYJ', 'W 43-32', 0, 0, 0, 0, 0, 7, 120, 1, 0, 0, 0, 0, 3, 28),
(2123, 133, 11, '1969-10-04', 1, 'MIA', 'T 20-20', 0, 0, 0, 0, 0, 9, 119, 1, 0, 0, 0, 0, 3, 29.9),
(2124, 133, 12, '1968-11-24', 1, 'CIN', 'W 34-0', 0, 0, 0, 0, 0, 8, 137, 0, 0, 0, 0, 0, 3, 24.7),
(2125, 133, 13, '1967-10-01', 0, 'KC', 'W 23-21', 0, 0, 0, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 2.9),
(2126, 133, 14, '1967-11-23', 1, 'KC', 'W 44-22', 0, 0, 0, 0, 0, 6, 158, 1, 0, 0, 0, 0, 3, 30.8),
(2127, 133, 15, '1968-10-13', 0, 'SD', 'L 14-23', 0, 0, 0, 0, 0, 1, 58, 0, 0, 0, 0, 0, 0, 6.8),
(2128, 133, 16, '1977-09-25', 1, 'PIT', 'W 16-7', 0, 0, 0, 0, 0, 1, 22, 0, 0, 0, 0, 0, 0, 3.2),
(2129, 134, 1, '1994-01-02', 0, 'DEN', 'W 33-30', 0, 0, 0, 0, 0, 11, 173, 2, 0, 0, 0, 0, 3, 43.3),
(2130, 134, 2, '1997-08-31', 1, 'TEN', 'L 21-24', 0, 0, 0, 0, 0, 8, 158, 3, 0, 0, 0, 0, 3, 44.8),
(2131, 134, 3, '1990-12-30', 0, 'SD', 'W 17-12', 0, 0, 0, 0, 0, 1, 22, 0, 0, 0, 0, 0, 0, 3.2),
(2132, 134, 4, '2000-10-08', 1, 'SF', 'W 34-28', 0, 0, 0, 0, 0, 7, 172, 2, 0, 0, 0, 0, 3, 39.2),
(2133, 134, 5, '1997-11-02', 1, 'CAR', 'L 14-38', 0, 0, 0, 0, 0, 10, 163, 0, 0, 0, 0, 0, 3, 29.3),
(2134, 134, 6, '1992-10-11', 0, 'BUF', 'W 20-3', 0, 0, 0, 0, 0, 1, 52, 1, 0, 0, 0, 0, 0, 12.2),
(2135, 134, 7, '2003-11-16', 0, 'MIN', 'W 28-18', 0, 0, 0, 0, 0, 1, 25, 0, 0, 0, 0, 0, 0, 3.5),
(2136, 134, 8, '1999-10-24', 0, 'NYJ', 'W 24-23', 0, 0, 0, 0, 0, 11, 190, 1, 0, 0, 0, 0, 3, 39),
(2137, 134, 9, '1992-10-18', 1, 'SEA', 'W 19-0', 0, 0, 0, 0, 0, 1, 22, 0, 0, 0, 0, 0, 0, 3.2),
(2138, 134, 10, '1997-12-21', 0, 'JAX', 'L 9-20', 0, 0, 0, 0, 0, 14, 164, 0, 0, 0, 0, 0, 3, 33.4),
(2139, 134, 11, '1993-10-31', 0, 'SD', 'L 23-30', 0, 0, 0, 0, 0, 5, 156, 2, 0, 0, 0, 0, 3, 35.6),
(2140, 134, 12, '1993-12-05', 1, 'BUF', 'W 25-24', 0, 0, 0, 0, 0, 10, 183, 1, 0, 0, 0, 0, 3, 37.3),
(2141, 134, 13, '1991-10-20', 0, 'LAR', 'W 20-17', 0, 0, 0, 0, 0, 1, 45, 0, 0, 0, 0, 0, 0, 5.5),
(2142, 134, 14, '1988-09-18', 0, 'LAR', 'L 17-22', 0, 0, 0, 0, 0, 1, 49, 1, 0, 0, 0, 0, 0, 11.9),
(2143, 134, 15, '1995-10-01', 1, 'NYJ', 'W 47-10', 0, 0, 0, 0, 0, 8, 156, 2, 0, 0, 0, 0, 3, 38.6),
(2144, 134, 16, '1995-11-19', 0, 'DAL', 'L 21-34', 0, 0, 0, 0, 0, 12, 161, 1, 0, 0, 0, 0, 3, 37.1),
(2145, 135, 1, '2003-12-01', 1, 'NYJ', 'L 17-24', 0, 0, 0, 0, 0, 11, 133, 1, 0, 0, 0, 0, 3, 33.3),
(2146, 135, 2, '1999-10-17', 1, 'NO', 'W 24-21', 0, 0, 0, 0, 0, 1, 31, 0, 0, 0, 0, 0, 0, 4.1),
(2147, 135, 3, '2001-11-25', 0, 'PIT', 'L 24-34', 0, 0, 0, 0, 0, 7, 114, 0, 0, 0, 0, 0, 3, 21.4),
(2148, 135, 4, '1998-09-13', 0, 'SD', 'L 7-13', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2149, 135, 5, '2002-12-01', 1, 'NYG', 'W 32-29', 0, 0, 0, 0, 0, 12, 116, 1, 0, 0, 0, 0, 3, 32.6),
(2150, 135, 6, '1997-09-28', 1, 'PIT', 'L 24-37', 0, 0, 0, 0, 0, 1, 12, 0, 0, 0, 0, 0, 0, 2.2),
(2151, 135, 7, '2003-12-14', 0, 'BUF', 'W 28-26', 0, 0, 0, 0, 0, 9, 137, 0, 0, 0, 0, 0, 3, 25.7),
(2152, 135, 8, '2001-12-02', 1, 'CLE', 'W 31-15', 0, 0, 0, 0, 0, 3, 122, 2, 0, 0, 0, 0, 3, 30.2),
(2153, 135, 9, '2004-12-19', 1, 'OAK', 'L 35-40', 0, 0, 0, 0, 0, 9, 121, 1, 0, 0, 0, 0, 3, 30.1),
(2154, 135, 10, '2002-09-15', 1, 'DAL', 'L 13-21', 0, 0, 0, 0, 0, 7, 118, 0, 0, 0, 0, 0, 3, 21.8),
(2155, 135, 11, '1998-11-22', 0, 'NYJ', 'L 3-24', 0, 0, 0, 0, 0, 1, 24, 0, 0, 0, 0, 0, 0, 3.4),
(2156, 135, 12, '2003-10-12', 0, 'HOU', 'W 38-17', 0, 0, 0, 0, 0, 6, 177, 3, 0, 0, 0, 0, 3, 44.7),
(2157, 135, 13, '2000-12-17', 1, 'CLE', 'W 24-0', 0, 0, 0, 0, 0, 1, 33, 0, 0, 0, 0, 0, 0, 4.3),
(2158, 135, 14, '1997-08-31', 0, 'OAK', 'W 24-21', 0, 0, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 2.1),
(2159, 135, 15, '2002-01-06', 0, 'CIN', 'L 21-23', 0, 0, 0, 0, 0, 9, 186, 2, 0, 0, 0, 0, 3, 42.6),
(2160, 135, 16, '2002-09-08', 0, 'PHI', 'W 27-24', 0, 0, 0, 0, 0, 7, 109, 0, 0, 0, 0, 0, 3, 20.9),
(2161, 136, 1, '2014-11-17', 0, 'PIT', 'L 24-27', 0, 0, 0, 0, 0, 1, 80, 1, 0, 0, 0, 0, 0, 15),
(2162, 136, 2, '2011-09-18', 0, 'BAL', 'W 26-13', 0, 0, 0, 0, 0, 7, 99, 0, 0, 0, 0, 0, 0, 16.9),
(2163, 136, 3, '2011-11-20', 1, 'ATL', 'L 17-23', 0, 0, 0, 0, 0, 9, 115, 2, 0, 0, 0, 0, 3, 35.5),
(2164, 136, 4, '2011-12-11', 0, 'NO', 'L 17-22', 0, 0, 0, 0, 0, 6, 130, 1, 0, 0, 0, 0, 3, 28),
(2165, 136, 5, '2013-12-22', 1, 'JAX', 'W 20-16', 0, 0, 0, 0, 0, 6, 117, 1, 0, 0, 0, 0, 3, 26.7),
(2166, 136, 6, '2014-09-28', 1, 'IND', 'L 17-41', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(2167, 136, 7, '2013-09-22', 0, 'SD', 'W 20-17', 0, 0, 0, 0, 0, 8, 131, 0, 0, 0, 0, 0, 3, 24.1),
(2168, 136, 8, '2010-11-21', 0, 'WAS', 'L 16-19', 0, 0, 0, 0, 0, 5, 117, 0, 0, 0, 0, 0, 3, 19.7),
(2169, 136, 9, '2011-01-02', 1, 'IND', 'L 20-23', 0, 0, 0, 0, 0, 1, 38, 0, 0, 0, 0, 0, 0, 4.8),
(2170, 136, 10, '2012-09-23', 0, 'DET', 'W 44-41', 0, 0, 0, 0, 0, 3, 112, 1, 0, 0, 0, 0, 3, 23.2),
(2171, 136, 11, '2010-10-10', 1, 'DAL', 'W 34-27', 0, 0, 0, 0, 0, 1, 24, 1, 0, 0, 0, 0, 0, 9.4),
(2172, 136, 12, '2010-10-31', 1, 'SD', 'L 25-33', 0, 0, 0, 0, 0, 4, 117, 1, 0, 0, 0, 0, 3, 24.7),
(2173, 136, 13, '2013-09-29', 0, 'NYJ', 'W 38-13', 0, 0, 0, 0, 0, 4, 105, 2, 0, 0, 0, 0, 3, 29.5),
(2174, 136, 14, '2014-12-14', 0, 'NYJ', 'L 11-16', 0, 0, 0, 0, 0, 6, 102, 0, 0, 0, 0, 0, 3, 19.2),
(2175, 136, 15, '2012-12-30', 0, 'JAX', 'W 38-20', 0, 0, 0, 0, 0, 1, 21, 0, 0, 0, 0, 0, 0, 3.1),
(2176, 136, 16, '2009-12-20', 0, 'MIA', 'W 27-24', 0, 0, 0, 0, 0, 1, 32, 1, 0, 0, 0, 0, 0, 10.2),
(2177, 137, 1, '2011-09-25', 0, 'NE', 'W 34-31', 0, 0, 0, 0, 0, 8, 94, 1, 0, 0, 0, 0, 0, 23.4),
(2178, 137, 2, '2011-12-11', 1, 'SD', 'L 10-37', 0, 0, 0, 0, 0, 4, 116, 0, 0, 0, 0, 0, 3, 18.6),
(2179, 137, 3, '2012-11-25', 1, 'IND', 'L 13-20', 0, 0, 0, 0, 0, 6, 106, 0, 0, 0, 0, 0, 3, 19.6),
(2180, 137, 4, '2013-09-15', 0, 'CAR', 'W 24-23', 0, 0, 0, 0, 0, 8, 111, 1, 0, 0, 0, 0, 3, 28.1),
(2181, 137, 5, '2008-12-07', 0, 'MIA', 'L 3-16', 0, 0, 0, 0, 0, 1, 14, 0, 0, 0, 0, 0, 0, 2.4),
(2182, 137, 6, '2012-12-16', 0, 'SEA', 'L 17-50', 0, 0, 0, 0, 0, 8, 115, 1, 0, 0, 0, 0, 3, 28.5),
(2183, 137, 7, '2012-12-30', 0, 'NYJ', 'W 28-9', 0, 0, 0, 0, 0, 6, 111, 0, 0, 0, 0, 0, 3, 20.1),
(2184, 137, 8, '2008-11-09', 1, 'NE', 'L 10-20', 0, 0, 0, 0, 0, 1, 15, 0, 0, 0, 0, 0, 0, 2.5),
(2185, 137, 9, '2009-11-15', 1, 'TEN', 'L 17-41', 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 1.5),
(2186, 137, 10, '2008-11-02', 0, 'NYJ', 'L 17-26', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(2187, 137, 11, '2008-10-05', 1, 'AZ', 'L 17-41', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(2188, 137, 12, '2010-11-21', 1, 'CIN', 'W 49-31', 0, 0, 0, 0, 0, 8, 137, 3, 0, 0, 0, 0, 3, 42.7),
(2189, 137, 13, '2010-11-07', 0, 'CHI', 'L 19-22', 0, 0, 0, 0, 0, 11, 145, 0, 0, 0, 0, 0, 3, 28.5),
(2190, 137, 14, '2011-09-18', 0, 'OAK', 'W 38-35', 0, 0, 0, 0, 0, 8, 96, 1, 0, 0, 0, 0, 0, 23.6),
(2191, 137, 15, '2009-11-01', 0, 'HOU', 'L 10-31', 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 1.5),
(2192, 137, 16, '2010-10-24', 1, 'BAL', 'L 34-37', 0, 0, 0, 0, 0, 8, 158, 1, 0, 0, 0, 0, 3, 32.8),
(2193, 138, 1, '1989-09-18', 0, 'DEN', 'L 14-28', 0, 0, 0, 0, 0, 13, 157, 0, 0, 0, 0, 0, 3, 31.7),
(2194, 138, 2, '1993-09-12', 1, 'DAL', 'W 13-10', 0, 0, 0, 9, 0, 1, 10, 0, 0, 0, 0, 0, 0, 2.9),
(2195, 138, 3, '1992-09-13', 1, 'SF', 'W 34-31', 0, 0, 0, 0, 0, 10, 144, 0, 0, 0, 0, 0, 3, 27.4),
(2196, 138, 4, '1989-11-26', 0, 'CIN', 'W 24-7', 0, 0, 0, 23, 0, 1, 19, 1, 0, 0, 0, 0, 0, 11.2),
(2197, 138, 5, '1997-08-31', 0, 'MIN', 'L 13-34', 0, 0, 0, 0, 0, 7, 142, 0, 0, 0, 0, 0, 3, 24.2),
(2198, 138, 6, '1991-12-01', 0, 'NYJ', 'W 24-13', 0, 0, 0, 15, 0, 1, 16, 1, 0, 0, 0, 0, 0, 10.1),
(2199, 138, 7, '1994-11-20', 0, 'GB', 'W 29-20', 0, 0, 0, 4, 0, 15, 191, 2, 0, 0, 0, 0, 3, 49.5),
(2200, 138, 8, '1985-10-13', 1, 'NE', 'L 3-14', 0, 0, 0, 0, 0, 1, 10, 0, 0, 0, 0, 0, 0, 2),
(2201, 138, 9, '1987-12-06', 1, 'OAK', 'L 21-34', 0, 0, 0, 0, 0, 7, 153, 0, 0, 0, 0, 0, 3, 25.3),
(2202, 138, 10, '1991-09-01', 0, 'MIA', 'W 35-31', 0, 0, 0, 0, 0, 11, 154, 1, 0, 0, 0, 0, 3, 35.4),
(2203, 138, 11, '1996-09-01', 1, 'NYG', 'W 23-20', 0, 0, 0, 13, 0, 5, 138, 1, 0, 0, 0, 0, 3, 29.1),
(2204, 138, 12, '1985-12-15', 1, 'PIT', 'L 24-30', 0, 0, 0, 0, 0, 1, 21, 0, 0, 0, 0, 0, 0, 3.1),
(2205, 138, 13, '1994-09-11', 1, 'NE', 'W 38-35', 0, 0, 0, 5, 0, 7, 142, 1, 0, 0, 0, 0, 3, 30.7),
(2206, 138, 14, '1992-09-27', 1, 'NE', 'W 41-7', 0, 0, 0, 0, 0, 9, 168, 1, 0, 0, 0, 0, 3, 34.8),
(2207, 138, 15, '1993-11-01', 0, 'WAS', 'W 24-10', 0, 0, 0, 0, 0, 7, 159, 1, 0, 0, 0, 0, 3, 31.9),
(2208, 138, 16, '1986-09-14', 1, 'CIN', 'L 33-36', 0, 0, 0, 4, 0, 1, 19, 0, 0, 0, 0, 0, 0, 3.3),
(2209, 139, 1, '1990-12-09', 1, 'NYG', 'L 15-23', 0, 0, 0, 0, 0, 1, 10, 0, 0, 0, 0, 0, 0, 2),
(2210, 139, 2, '1991-12-08', 1, 'TB', 'W 26-24', 0, 0, 0, 0, 0, 1, 41, 0, 0, 0, 0, 0, 0, 5.1),
(2211, 139, 3, '1994-11-06', 0, 'NO', 'W 21-20', 0, 0, 0, 0, 0, 12, 151, 0, 0, 0, 0, 0, 3, 30.1),
(2212, 139, 4, '1995-11-19', 0, 'NO', 'W 43-24', 0, 0, 0, 0, 0, 12, 137, 2, 0, 0, 0, 0, 3, 40.7),
(2213, 139, 5, '2001-12-30', 1, 'GB', 'L 13-24', 0, 0, 0, 4, 0, 1, 11, 0, 0, 0, 0, 0, 0, 2.5),
(2214, 139, 6, '1996-11-10', 1, 'SEA', 'L 23-42', 0, 0, 0, 0, 0, 7, 142, 0, 0, 0, 0, 0, 3, 24.2),
(2215, 139, 7, '2001-09-23', 1, 'CHI', 'L 10-17', 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 0, 2.3),
(2216, 139, 8, '1994-10-02', 1, 'AZ', 'L 7-17', 0, 0, 0, 0, 0, 14, 167, 0, 0, 0, 0, 0, 3, 33.7),
(2217, 139, 9, '1999-11-14', 1, 'CHI', 'W 27-24', 0, 0, 0, 0, 0, 9, 141, 3, 0, 0, 0, 0, 3, 44.1),
(2218, 139, 10, '1991-12-15', 0, 'LAR', 'W 20-14', 0, 0, 0, 0, 0, 1, 17, 0, 0, 0, 0, 0, 0, 2.7),
(2219, 139, 11, '1995-11-12', 1, 'AZ', 'W 30-24', 0, 0, 0, 0, 0, 12, 157, 2, 0, 0, 0, 0, 3, 42.7),
(2220, 139, 12, '2000-11-19', 0, 'CAR', 'W 31-17', 0, 0, 0, 0, 0, 8, 138, 1, 0, 0, 0, 0, 3, 30.8),
(2221, 139, 13, '1990-10-15', 1, 'PHI', 'L 24-32', 0, 0, 0, -2, 0, 6, 151, 2, 0, 0, 0, 0, 3, 35.9),
(2222, 139, 14, '1999-10-31', 1, 'DEN', 'W 23-20', 0, 0, 0, 0, 0, 8, 144, 2, 0, 0, 0, 0, 3, 37.4),
(2223, 139, 15, '2000-09-10', 0, 'MIA', 'W 13-7', 0, 0, 0, 0, 0, 9, 168, 0, 0, 0, 0, 0, 3, 28.8),
(2224, 139, 16, '1999-12-12', 1, 'KC', 'L 28-31', 0, 0, 0, 0, 0, 1, 22, 0, 0, 0, 0, 0, 0, 3.2),
(2225, 140, 1, '2003-11-30', 1, 'LAR', 'L 17-48', 0, 0, 0, 5, 0, 10, 160, 1, 0, 0, 0, 0, 3, 35.5),
(2226, 140, 2, '2001-09-09', 0, 'CAR', 'L 13-24', 0, 0, 0, 0, 0, 1, 28, 0, 0, 0, 0, 0, 0, 3.8),
(2227, 140, 3, '2000-10-01', 1, 'DET', 'W 31-24', 0, 0, 0, -1, 0, 7, 168, 3, 0, 0, 0, 0, 3, 44.7),
(2228, 140, 4, '1998-11-08', 0, 'NO', 'W 31-24', 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 0, 1.6),
(2229, 140, 5, '1998-11-22', 0, 'GB', 'W 28-14', 0, 0, 0, 0, 0, 8, 153, 1, 0, 0, 0, 0, 3, 32.3),
(2230, 140, 6, '1999-11-14', 1, 'CHI', 'W 27-24', 0, 0, 0, 0, 0, 12, 204, 0, 0, 0, 0, 0, 3, 35.4),
(2231, 140, 7, '2004-10-17', 1, 'NO', 'W 38-31', 0, 0, 0, 0, 0, 2, 89, 1, 0, 0, 0, 0, 0, 16.9),
(2232, 140, 8, '1998-10-05', 1, 'GB', 'W 37-24', 0, 0, 0, 0, 0, 5, 190, 2, 0, 0, 0, 0, 3, 39),
(2233, 140, 9, '2000-12-24', 1, 'IND', 'L 10-31', 0, 0, 0, 0, 0, 1, 42, 1, 0, 0, 0, 0, 0, 11.2),
(2234, 140, 10, '2010-10-31', 1, 'NE', 'L 18-28', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(2235, 140, 11, '1999-10-24', 0, 'SF', 'W 40-16', 0, 0, 0, 11, 0, 1, 24, 0, 0, 0, 0, 0, 0, 4.5),
(2236, 140, 12, '2003-09-28', 0, 'SF', 'W 35-7', 0, 0, 0, 0, 0, 8, 172, 3, 0, 0, 0, 0, 3, 46.2),
(2237, 140, 13, '2000-01-02', 0, 'DET', 'W 24-17', 0, 0, 0, 0, 0, 5, 155, 1, 0, 0, 0, 0, 3, 29.5),
(2238, 140, 14, '2001-12-09', 0, 'TEN', 'W 42-24', 0, 0, 0, 0, 0, 7, 158, 1, 0, 0, 0, 0, 3, 31.8),
(2239, 140, 15, '1998-11-26', 1, 'DAL', 'W 46-36', 0, 0, 0, 0, 0, 3, 163, 3, 0, 0, 0, 0, 3, 40.3),
(2240, 140, 16, '2001-11-19', 0, 'NYG', 'W 28-16', 0, 0, 0, 18, 0, 10, 171, 3, 0, 0, 0, 0, 3, 49.9),
(2241, 141, 1, '1993-11-14', 1, 'LAR', 'W 13-0', 0, 0, 0, 0, 0, 5, 120, 1, 0, 0, 0, 0, 3, 26),
(2242, 141, 2, '1991-12-01', 0, 'GB', 'W 35-31', 0, 0, 0, 0, 0, 8, 124, 2, 0, 0, 0, 0, 3, 35.4),
(2243, 141, 3, '1991-09-29', 0, 'NO', 'L 6-27', 0, 0, 0, -9, 0, 1, 9, 0, 0, 0, 0, 0, 0, 1),
(2244, 141, 4, '1990-10-21', 1, 'LAR', 'L 24-44', 0, 0, 0, 0, 0, 5, 161, 2, 0, 0, 0, 0, 3, 36.1),
(2245, 141, 5, '1990-09-23', 1, 'SF', 'L 13-19', 0, 0, 0, 0, 0, 11, 128, 0, 0, 0, 0, 0, 3, 26.8),
(2246, 141, 6, '1990-10-14', 0, 'SF', 'L 35-45', 0, 0, 0, 0, 0, 9, 172, 2, 0, 0, 0, 0, 3, 41.2),
(2247, 141, 7, '1994-12-24', 0, 'AZ', 'W 10-6', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(2248, 141, 8, '1992-09-27', 1, 'CHI', 'L 31-41', 0, 0, 0, 0, 0, 10, 177, 3, 0, 0, 0, 0, 3, 48.7),
(2249, 141, 9, '1994-10-23', 1, 'OAK', 'L 17-30', 0, 0, 0, 0, 0, 2, 56, 0, 0, 0, 0, 0, 0, 7.6),
(2250, 141, 10, '1990-10-28', 0, 'CIN', 'W 38-17', 0, 0, 0, 0, 0, 2, 14, 0, 0, 0, 0, 0, 0, 3.4),
(2251, 141, 11, '1990-10-07', 0, 'NO', 'W 28-27', 0, 0, 0, 0, 0, 10, 154, 2, 0, 0, 0, 0, 3, 40.4),
(2252, 141, 12, '1994-12-04', 1, 'SF', 'L 14-50', 0, 0, 0, 0, 0, 2, 16, 0, 0, 0, 0, 0, 0, 3.6),
(2253, 141, 13, '1994-09-04', 1, 'DET', 'L 28-31', 0, 0, 0, 0, 0, 14, 193, 2, 0, 0, 0, 0, 3, 48.3),
(2254, 141, 14, '1993-10-31', 0, 'TB', 'L 24-31', 0, 0, 0, 0, 0, 11, 147, 2, 0, 0, 0, 0, 3, 40.7),
(2255, 141, 15, '1992-09-13', 1, 'WAS', 'L 17-24', 0, 0, 0, 0, 0, 2, 22, 0, 0, 0, 0, 0, 0, 4.2),
(2256, 141, 16, '1994-09-11', 0, 'LAR', 'W 31-13', 0, 0, 0, 0, 0, 12, 123, 2, 0, 0, 0, 0, 3, 39.3),
(2257, 142, 1, '2011-11-20', 0, 'TEN', 'W 23-17', 0, 0, 0, 0, 0, 7, 147, 0, 0, 0, 0, 0, 3, 24.7),
(2258, 142, 2, '2015-11-08', 1, 'SF', 'L 16-17', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(2259, 142, 3, '2005-12-18', 1, 'CHI', 'L 3-16', 0, 0, 0, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 2.9),
(2260, 142, 4, '2013-12-01', 1, 'BUF', 'W 34-31', 0, 0, 0, 0, 0, 10, 143, 0, 0, 0, 0, 0, 3, 27.3),
(2261, 142, 5, '2008-12-07', 1, 'NO', 'L 25-29', 0, 0, 0, 0, 0, 10, 164, 0, 0, 0, 0, 0, 3, 29.4),
(2262, 142, 6, '2012-12-22', 1, 'DET', 'W 31-18', 0, 0, 0, 0, 0, 8, 153, 2, 0, 0, 0, 0, 3, 38.3),
(2263, 142, 7, '2010-10-24', 0, 'CIN', 'W 39-32', 0, 0, 0, 0, 0, 11, 201, 2, 0, 0, 0, 0, 3, 46.1),
(2264, 142, 8, '2012-09-30', 0, 'CAR', 'W 30-28', 0, 0, 0, 0, 0, 8, 169, 2, 0, 0, 0, 0, 3, 39.9),
(2265, 142, 9, '2006-09-17', 0, 'TB', 'W 14-3', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2266, 142, 10, '2006-11-19', 1, 'BAL', 'L 10-24', 0, 0, 0, 0, 0, 1, 49, 0, 0, 0, 0, 0, 0, 5.9),
(2267, 142, 11, '2007-12-23', 1, 'AZ', 'L 27-30', 0, 0, 0, 0, 0, 12, 141, 0, 0, 0, 0, 0, 3, 29.1),
(2268, 142, 12, '2007-12-02', 1, 'LAR', 'L 16-28', 0, 0, 0, 0, 0, 10, 146, 1, 0, 0, 0, 0, 3, 33.6),
(2269, 142, 13, '2013-11-10', 0, 'SEA', 'L 10-33', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(2270, 142, 14, '2013-12-23', 1, 'SF', 'L 24-34', 0, 0, 0, 0, 0, 12, 141, 1, 0, 0, 0, 0, 3, 35.1),
(2271, 142, 15, '2012-11-29', 0, 'NO', 'W 23-13', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(2272, 142, 16, '2009-10-11', 1, 'SF', 'W 45-10', 0, 0, 0, 0, 0, 8, 210, 2, 0, 0, 0, 0, 3, 44),
(2273, 143, 1, '1984-12-02', 0, 'OAK', 'L 34-45', 0, 0, 0, 0, 0, 9, 177, 2, 0, 0, 0, 0, 3, 41.7),
(2274, 143, 2, '1984-12-09', 1, 'IND', 'W 35-17', 0, 0, 0, 0, 0, 9, 127, 1, 0, 0, 0, 0, 3, 30.7),
(2275, 143, 3, '1984-12-17', 0, 'DAL', 'W 28-21', 0, 0, 0, 0, 0, 4, 150, 3, 0, 0, 0, 0, 3, 40),
(2276, 143, 4, '1983-09-19', 1, 'OAK', 'L 14-27', 0, 0, 0, 0, 0, 1, 31, 0, 0, 0, 0, 0, 0, 4.1),
(2277, 143, 5, '1991-09-01', 1, 'BUF', 'L 31-35', 0, 0, 0, 0, 0, 6, 138, 2, 0, 0, 0, 0, 3, 34.8),
(2278, 143, 6, '1983-11-20', 0, 'BAL', 'W 37-0', 0, 0, 0, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 2.9),
(2279, 143, 7, '1988-10-23', 0, 'NYJ', 'L 30-44', 0, 0, 0, 0, 0, 10, 153, 2, 0, 0, 0, 0, 3, 40.3),
(2280, 143, 8, '1985-12-22', 0, 'BUF', 'W 28-0', 0, 0, 0, 0, 0, 1, 23, 0, 0, 0, 0, 0, 0, 3.3),
(2281, 143, 9, '1986-09-07', 1, 'SD', 'L 28-50', 0, 0, 0, 0, 0, 5, 143, 2, 0, 0, 0, 0, 3, 34.3),
(2282, 143, 10, '1986-09-21', 1, 'NYJ', 'L 45-51', 0, 0, 0, 0, 0, 8, 174, 1, 0, 0, 0, 0, 3, 34.4),
(2283, 143, 11, '1989-10-01', 1, 'HOU', 'L 7-39', 0, 0, 0, 0, 0, 1, 24, 0, 0, 0, 0, 0, 0, 3.4),
(2284, 143, 12, '1985-09-29', 1, 'DEN', 'W 30-26', 0, 0, 0, 0, 0, 1, 30, 0, 0, 0, 0, 0, 0, 4),
(2285, 143, 13, '1989-12-03', 1, 'KC', 'L 21-26', 0, 0, 0, 0, 0, 9, 128, 1, 0, 0, 0, 0, 3, 30.8),
(2286, 143, 14, '1992-12-20', 0, 'NYJ', 'W 19-17', 0, 0, 0, 0, 0, 1, 39, 1, 0, 0, 0, 0, 0, 10.9),
(2287, 143, 15, '1984-09-30', 1, 'LAR', 'W 36-28', 0, 0, 0, 15, 0, 5, 143, 1, 0, 0, 0, 0, 3, 29.8),
(2288, 143, 16, '1989-11-12', 1, 'NYJ', 'W 31-23', 0, 0, 0, 0, 0, 4, 125, 1, 0, 0, 0, 0, 3, 25.5),
(2289, 144, 1, '1989-12-03', 1, 'KC', 'L 21-26', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2290, 144, 2, '1984-09-30', 1, 'LAR', 'W 36-28', 0, 0, 0, 0, 0, 8, 164, 0, 0, 0, 0, 0, 3, 27.4),
(2291, 144, 3, '1987-12-28', 0, 'NE', 'L 10-24', 0, 0, 0, 0, 0, 1, 24, 0, 0, 0, 0, 0, 0, 3.4),
(2292, 144, 4, '1986-12-14', 1, 'LAR', 'W 37-31', 0, 0, 0, 0, 0, 5, 145, 3, 0, 0, 0, 0, 3, 40.5),
(2293, 144, 5, '1987-12-20', 0, 'WAS', 'W 23-21', 0, 0, 0, 0, 0, 6, 170, 3, 0, 0, 0, 0, 3, 44),
(2294, 144, 6, '1983-10-09', 0, 'BUF', 'L 35-38', 0, 0, 0, 0, 0, 7, 202, 2, 0, 0, 0, 0, 3, 42.2),
(2295, 144, 7, '1992-10-25', 0, 'IND', 'L 20-31', 0, 0, 0, 0, 0, 1, 48, 1, 0, 0, 0, 0, 0, 11.8),
(2296, 144, 8, '1992-12-14', 0, 'OAK', 'W 20-7', 0, 0, 0, 0, 0, 1, 62, 1, 0, 0, 0, 0, 0, 13.2),
(2297, 144, 9, '1985-11-10', 0, 'NYJ', 'W 21-17', 0, 0, 0, 0, 0, 8, 217, 2, 0, 0, 0, 0, 3, 44.7),
(2298, 144, 10, '1986-09-21', 1, 'NYJ', 'L 45-51', 0, 0, 0, 0, 0, 7, 154, 2, 0, 0, 0, 0, 3, 37.4),
(2299, 144, 11, '1984-09-02', 1, 'WAS', 'W 35-17', 0, 0, 0, 0, 0, 6, 178, 2, 0, 0, 0, 0, 3, 38.8),
(2300, 144, 12, '1992-11-08', 1, 'IND', 'W 28-0', 0, 0, 0, 0, 0, 1, 42, 0, 0, 0, 0, 0, 0, 5.2),
(2301, 144, 13, '1984-11-04', 1, 'NYJ', 'W 31-17', 0, 0, 0, 0, 0, 7, 155, 0, 0, 0, 0, 0, 3, 25.5),
(2302, 144, 14, '1987-12-13', 1, 'PHI', 'W 28-10', 0, 0, 0, 0, 0, 1, 49, 1, 0, 0, 0, 0, 0, 11.9),
(2303, 144, 15, '1984-09-23', 0, 'IND', 'W 44-7', 0, 0, 0, 0, 0, 7, 173, 2, 0, 0, 0, 0, 3, 39.3),
(2304, 144, 16, '1983-10-30', 0, 'LAR', 'W 30-14', 0, 0, 0, 0, 0, 7, 134, 1, 0, 0, 0, 0, 3, 29.4),
(2305, 145, 1, '2012-09-30', 1, 'GB', 'L 27-28', 0, 0, 0, 0, 0, 9, 153, 1, 0, 0, 0, 0, 3, 33.3),
(2306, 145, 2, '2007-11-04', 0, 'JAX', 'W 41-24', 0, 0, 0, 0, 0, 10, 159, 0, 0, 0, 0, 0, 3, 28.9),
(2307, 145, 3, '2015-10-25', 1, 'IND', 'W 27-21', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(2308, 145, 4, '2012-12-23', 1, 'DAL', 'W 34-31', 0, 0, 0, 0, 0, 10, 153, 0, 0, 0, 0, 0, 3, 28.3),
(2309, 145, 5, '2009-10-18', 0, 'NYG', 'W 48-27', 0, 0, 0, 0, 0, 8, 166, 1, 0, 0, 0, 0, 3, 33.6),
(2310, 145, 6, '2015-12-06', 0, 'CAR', 'L 38-41', 0, 0, 0, 0, 0, 1, 14, 0, 0, 0, 0, 0, 0, 2.4),
(2311, 145, 7, '2006-11-12', 1, 'PIT', 'L 31-38', 0, 0, 0, 0, 0, 10, 169, 0, 0, 0, 0, 0, 3, 29.9),
(2312, 145, 8, '2008-11-24', 0, 'GB', 'W 51-29', 0, 0, 0, 0, 0, 1, 70, 1, 0, 0, 0, 0, 0, 14),
(2313, 145, 9, '2006-10-01', 1, 'CAR', 'L 18-21', 0, 0, 0, 0, 0, 5, 132, 1, 0, 0, 0, 0, 3, 27.2),
(2314, 145, 10, '2012-01-01', 0, 'CAR', 'W 45-17', 0, 0, 0, 0, 0, 7, 145, 2, 0, 0, 0, 0, 3, 36.5),
(2315, 145, 11, '2011-10-02', 1, 'JAX', 'W 23-10', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(2316, 145, 12, '2013-10-13', 1, 'NE', 'L 27-30', 0, 0, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 2.1),
(2317, 145, 13, '2012-10-07', 0, 'SD', 'W 31-24', 0, 0, 0, 0, 0, 9, 131, 3, 0, 0, 0, 0, 3, 43.1),
(2318, 145, 14, '2006-10-29', 0, 'BAL', 'L 22-35', 0, 0, 0, 0, 0, 6, 163, 2, 0, 0, 0, 0, 3, 37.3),
(2319, 145, 15, '2008-11-09', 1, 'ATL', 'L 20-34', 0, 0, 0, 0, 0, 7, 140, 0, 0, 0, 0, 0, 3, 24),
(2320, 145, 16, '2009-11-08', 0, 'CAR', 'W 30-20', 0, 0, 0, 0, 0, 1, 45, 0, 0, 0, 0, 0, 0, 5.5),
(2321, 146, 1, '2001-12-09', 1, 'ATL', 'W 28-10', 0, 0, 0, 0, 0, 7, 138, 1, 0, 0, 0, 0, 3, 29.8),
(2322, 146, 2, '2006-12-03', 0, 'SF', 'W 34-10', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2323, 146, 3, '2004-11-14', 0, 'KC', 'W 27-20', 0, 0, 0, 0, 0, 5, 167, 1, 0, 0, 0, 0, 3, 30.7),
(2324, 146, 4, '2001-10-07', 0, 'MIN', 'W 28-15', 0, 0, 0, 0, 0, 1, 41, 0, 0, 0, 0, 0, 0, 5.1),
(2325, 146, 5, '2003-09-21', 1, 'TEN', 'L 12-27', 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 1.5),
(2326, 146, 6, '2005-09-19', 0, 'NYG', 'L 10-27', 0, 0, 0, 0, 0, 9, 143, 1, 0, 0, 0, 0, 3, 32.3),
(2327, 146, 7, '2000-12-03', 0, 'DEN', 'L 23-38', 0, 0, 0, 0, 0, 10, 170, 0, 0, 0, 0, 0, 3, 30),
(2328, 146, 8, '2005-12-18', 0, 'CAR', 'L 10-27', 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 0, 1.6),
(2329, 146, 9, '2005-09-25', 1, 'MIN', 'L 16-33', 0, 0, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 2.1),
(2330, 146, 10, '2003-10-19', 1, 'ATL', 'W 45-17', 0, 0, 0, 0, 0, 8, 133, 1, 0, 0, 0, 0, 3, 30.3),
(2331, 146, 11, '2002-11-17', 1, 'ATL', 'L 17-24', 0, 0, 0, 0, 0, 3, 134, 1, 0, 0, 0, 0, 3, 25.4),
(2332, 146, 12, '2001-12-02', 0, 'CAR', 'W 27-23', 0, 0, 0, 0, 0, 13, 150, 1, 0, 0, 0, 0, 3, 37),
(2333, 146, 13, '2001-11-18', 0, 'IND', 'W 34-20', 0, 0, 0, 0, 0, 8, 148, 0, 0, 0, 0, 0, 3, 25.8),
(2334, 146, 14, '2004-12-05', 0, 'CAR', 'L 21-32', 0, 0, 0, 0, 0, 8, 160, 2, 0, 0, 0, 0, 3, 39),
(2335, 146, 15, '2000-11-05', 0, 'SF', 'W 31-15', 0, 0, 0, 0, 0, 10, 180, 1, 0, 0, 0, 0, 3, 37),
(2336, 146, 16, '2006-01-01', 1, 'TB', 'L 13-27', 0, 0, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 2.1),
(2337, 147, 1, '1984-11-25', 0, 'ATL', 'W 35-14', 0, 0, 0, 0, 0, 6, 134, 2, 0, 0, 0, 0, 3, 34.4),
(2338, 147, 2, '1987-11-08', 0, 'MIA', 'L 14-20', 0, 0, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 2.1),
(2339, 147, 3, '1985-09-30', 1, 'PIT', 'W 37-24', 0, 0, 1, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 2),
(2340, 147, 4, '1981-12-20', 1, 'ATL', 'W 30-28', 0, 0, 0, 0, 0, 5, 128, 1, 0, 0, 0, 0, 3, 26.8),
(2341, 147, 5, '1984-09-02', 1, 'DEN', 'L 17-20', 0, 0, 0, 0, 0, 10, 141, 0, 0, 0, 0, 0, 3, 27.1),
(2342, 147, 6, '1983-10-16', 1, 'DEN', 'L 17-24', 0, 0, 0, 0, 0, 7, 149, 0, 0, 0, 0, 0, 3, 24.9),
(2343, 147, 7, '1986-11-30', 1, 'DEN', 'L 28-34', 0, 0, 0, 0, 0, 8, 138, 2, 0, 0, 0, 0, 3, 36.8),
(2344, 147, 8, '1985-11-10', 0, 'CLE', 'W 27-10', 0, 0, 0, 0, 0, 8, 135, 0, 0, 0, 0, 0, 3, 24.5),
(2345, 147, 9, '1985-11-24', 1, 'CLE', 'L 6-24', 0, 0, 0, 0, 0, 1, 17, 0, 0, 0, 0, 0, 0, 2.7),
(2346, 147, 10, '1982-12-20', 1, 'SD', 'L 34-50', 0, 0, 0, 0, 0, 9, 156, 1, 0, 0, 0, 0, 3, 33.6),
(2347, 147, 11, '1988-11-06', 0, 'PIT', 'W 42-7', 0, 0, 0, 0, 0, 1, 36, 0, 0, 0, 0, 0, 0, 4.6),
(2348, 147, 12, '1988-09-25', 0, 'CLE', 'W 24-17', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(2349, 147, 13, '1985-09-22', 0, 'SD', 'L 41-44', 0, 0, 0, 0, 0, 10, 161, 2, 0, 0, 0, 0, 3, 41.1),
(2350, 147, 14, '1982-09-19', 1, 'PIT', 'L 20-26', 0, 0, 0, 0, 0, 9, 144, 0, 0, 0, 0, 0, 3, 26.4),
(2351, 147, 15, '1983-10-02', 0, 'BAL', 'L 31-34', 0, 0, 0, 0, 0, 8, 206, 1, 0, 0, 0, 0, 3, 37.6),
(2352, 147, 16, '1988-10-30', 1, 'CLE', 'L 16-23', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2353, 148, 1, '2001-11-25', 1, 'CLE', 'L 0-18', 0, 0, 0, 0, 0, 1, 7, 0, 0, 0, 0, 0, 0, 1.7),
(2354, 148, 2, '2007-12-09', 0, 'LAR', 'W 19-10', 0, 0, 0, 0, 0, 2, 60, 0, 0, 0, 0, 0, 0, 8),
(2355, 148, 3, '2002-11-24', 1, 'PIT', 'L 21-29', 0, 0, 0, 0, 0, 7, 152, 0, 0, 0, 0, 0, 3, 25.2),
(2356, 148, 4, '2002-09-22', 1, 'ATL', 'L 3-30', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(2357, 148, 5, '2006-11-12', 0, 'SD', 'L 41-49', 0, 0, 0, 0, 0, 11, 260, 2, 0, 0, 0, 0, 3, 52),
(2358, 148, 6, '2004-10-25', 0, 'DEN', 'W 23-10', 0, 0, 0, 0, 0, 7, 149, 1, 0, 0, 0, 0, 3, 30.9),
(2359, 148, 7, '2010-11-08', 0, 'PIT', 'L 21-27', 0, 0, 0, 0, 0, 1, 15, 0, 0, 0, 0, 0, 0, 2.5),
(2360, 148, 8, '2005-11-20', 0, 'IND', 'L 37-45', 0, 0, 0, 0, 0, 8, 189, 1, 0, 0, 0, 0, 3, 35.9),
(2361, 148, 9, '2007-09-16', 1, 'CLE', 'L 45-51', 0, 0, 0, 0, 0, 11, 209, 2, 0, 0, 0, 0, 3, 46.9),
(2362, 148, 10, '2004-12-05', 1, 'BAL', 'W 27-26', 0, 0, 0, 0, 0, 10, 161, 2, 0, 0, 0, 0, 3, 41.1),
(2363, 148, 11, '2008-09-07', 1, 'BAL', 'L 10-17', 0, 0, 0, 0, 0, 1, 22, 0, 0, 0, 0, 0, 0, 3.2),
(2364, 148, 12, '2006-09-24', 1, 'PIT', 'W 28-20', 0, 0, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 2.1),
(2365, 148, 13, '2006-11-19', 1, 'NO', 'W 31-16', 0, 0, 0, 3, 0, 6, 190, 3, 0, 0, 0, 0, 3, 46.3),
(2366, 148, 14, '2007-09-23', 1, 'SEA', 'L 21-24', 0, 0, 0, 0, 0, 9, 138, 0, 0, 0, 0, 0, 3, 25.8),
(2367, 148, 15, '2010-09-12', 1, 'NE', 'L 24-38', 0, 0, 0, 0, 0, 12, 159, 1, 0, 0, 0, 0, 3, 36.9),
(2368, 148, 16, '2005-09-18', 0, 'MIN', 'W 37-8', 0, 0, 0, 0, 0, 7, 139, 1, 0, 0, 0, 0, 3, 29.9),
(2369, 149, 1, '1995-12-17', 0, 'OAK', 'W 44-10', 0, 0, 0, 0, 0, 5, 108, 1, 0, 0, 0, 0, 3, 24.8),
(2370, 149, 2, '1998-09-27', 1, 'PIT', 'L 10-13', 0, 0, 0, 0, 0, 7, 139, 0, 0, 0, 0, 0, 3, 23.9),
(2371, 149, 3, '1998-12-06', 1, 'NYJ', 'L 31-32', 0, 0, 0, -3, 0, 2, 127, 2, 0, 0, 0, 0, 3, 29.4),
(2372, 149, 4, '1998-10-25', 1, 'SD', 'W 27-20', 0, 0, 0, 0, 0, 4, 130, 1, 0, 0, 0, 0, 3, 26),
(2373, 149, 5, '1997-09-28', 1, 'KC', 'L 17-20', 0, 0, 0, 0, 0, 1, 41, 1, 0, 0, 0, 0, 0, 11.1),
(2374, 149, 6, '1995-11-12', 1, 'JAX', 'W 47-30', 0, 0, 0, 86, 1, 5, 114, 2, 0, 0, 0, 0, 3, 46),
(2375, 149, 7, '1997-09-21', 0, 'SD', 'W 26-22', 0, 0, 0, 0, 0, 5, 106, 1, 0, 0, 0, 0, 3, 24.6),
(2376, 149, 8, '1997-10-26', 0, 'OAK', 'W 45-34', 0, 0, 0, 44, 0, 7, 117, 3, 0, 0, 0, 0, 3, 44.1),
(2377, 149, 9, '1996-12-08', 0, 'BUF', 'W 26-18', 0, 0, 0, 5, 0, 1, 27, 1, 0, 0, 0, 0, 0, 10.2),
(2378, 149, 10, '1996-10-27', 0, 'SD', 'W 32-13', 0, 0, 0, 4, 0, 1, 18, 0, 0, 0, 0, 0, 0, 3.2),
(2379, 149, 11, '1998-09-06', 1, 'PHI', 'W 38-0', 0, 0, 0, 0, 0, 6, 142, 2, 0, 0, 0, 0, 3, 35.2),
(2380, 149, 12, '1996-12-01', 1, 'DEN', 'L 7-34', 0, 0, 0, 0, 0, 5, 108, 0, 0, 0, 0, 0, 3, 18.8),
(2381, 149, 13, '1998-11-08', 0, 'KC', 'W 24-12', 0, 0, 0, 0, 0, 1, 45, 0, 0, 0, 0, 0, 0, 5.5),
(2382, 149, 14, '1999-11-28', 0, 'TB', 'L 3-16', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2383, 149, 15, '1999-11-21', 1, 'KC', 'W 31-19', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2384, 149, 16, '1996-10-06', 1, 'MIA', 'W 22-15', 0, 0, 0, -3, 0, 5, 137, 2, 0, 0, 0, 0, 3, 33.4),
(2385, 150, 1, '1977-11-06', 1, 'OAK', 'L 7-44', 0, 0, 0, 0, 0, 1, 15, 0, 0, 0, 0, 0, 0, 2.5),
(2386, 150, 2, '1980-12-07', 0, 'NYG', 'L 21-27', 0, 0, 0, 0, 0, 8, 139, 1, 0, 0, 0, 0, 3, 30.9),
(2387, 150, 3, '1981-12-06', 0, 'NYJ', 'W 27-23', 0, 0, 0, 0, 0, 7, 169, 1, 0, 0, 0, 0, 3, 32.9),
(2388, 150, 4, '1980-10-26', 1, 'OAK', 'L 14-33', 0, 0, 0, 0, 0, 4, 142, 1, 0, 0, 0, 0, 3, 27.2),
(2389, 150, 5, '1989-12-04', 0, 'BUF', 'W 17-16', 0, 0, 0, 0, 0, 1, 24, 0, 0, 0, 0, 0, 0, 3.4),
(2390, 150, 6, '1987-10-18', 1, 'DET', 'W 37-14', 0, 0, 0, 0, 0, 15, 261, 3, 0, 0, 0, 0, 3, 62.1),
(2391, 150, 7, '1977-12-18', 0, 'CLE', 'W 20-19', 0, 0, 0, 0, 0, 1, 15, 1, 0, 0, 0, 0, 0, 8.5),
(2392, 150, 8, '1989-09-10', 1, 'PHI', 'L 7-31', 0, 0, 0, 0, 0, 1, 23, 1, 0, 0, 0, 0, 0, 9.3),
(2393, 150, 9, '1979-09-16', 0, 'OAK', 'W 27-10', 0, 0, 0, 0, 0, 5, 139, 2, 0, 0, 0, 0, 3, 33.9),
(2394, 150, 10, '1985-11-17', 0, 'NE', 'L 13-20', 0, 0, 0, 0, 0, 8, 138, 0, 0, 0, 0, 0, 3, 24.8),
(2395, 150, 11, '1980-09-28', 1, 'WAS', 'W 14-0', 0, 0, 0, 0, 0, 1, 24, 0, 0, 0, 0, 0, 0, 3.4),
(2396, 150, 12, '1979-10-21', 0, 'HOU', 'W 34-14', 0, 0, 0, 0, 0, 6, 135, 2, 0, 0, 0, 0, 3, 34.5),
(2397, 150, 13, '1979-11-18', 0, 'NO', 'W 38-24', 0, 0, 0, 0, 0, 9, 146, 2, 0, 0, 0, 0, 3, 38.6),
(2398, 150, 14, '1983-11-13', 1, 'LAR', 'L 28-33', 0, 0, 0, 0, 0, 8, 155, 3, 0, 0, 0, 0, 3, 44.5),
(2399, 150, 15, '1984-09-23', 0, 'CHI', 'W 38-9', 0, 0, 0, 0, 0, 1, 29, 0, 0, 0, 0, 0, 0, 3.9),
(2400, 150, 16, '1984-11-25', 1, 'DEN', 'W 27-24', 0, 0, 0, 4, 0, 12, 191, 1, 0, 0, 0, 0, 3, 40.5),
(2401, 151, 1, '2014-12-28', 0, 'NO', 'L 20-23', 0, 0, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 2.1),
(2402, 151, 2, '2012-12-09', 0, 'PHI', 'L 21-23', 0, 0, 0, 0, 0, 6, 131, 1, 0, 0, 0, 0, 3, 28.1),
(2403, 151, 3, '2014-11-23', 1, 'CHI', 'L 13-21', 0, 0, 0, 0, 0, 5, 117, 0, 0, 0, 0, 0, 3, 19.7),
(2404, 151, 4, '2012-09-16', 1, 'NYG', 'L 34-41', 0, 0, 0, 0, 0, 5, 128, 1, 0, 0, 0, 0, 3, 26.8),
(2405, 151, 5, '2014-10-05', 1, 'NO', 'L 31-37', 0, 0, 0, 0, 0, 8, 144, 0, 0, 0, 0, 0, 3, 25.4),
(2406, 151, 6, '2012-10-21', 0, 'NO', 'L 28-35', 0, 0, 0, 0, 0, 7, 216, 1, 0, 0, 0, 0, 3, 37.6),
(2407, 151, 7, '2013-09-08', 1, 'NYJ', 'L 17-18', 0, 0, 0, 0, 0, 7, 154, 0, 0, 0, 0, 0, 3, 25.4),
(2408, 151, 8, '2015-10-04', 0, 'CAR', 'L 23-37', 0, 0, 0, 0, 0, 10, 147, 1, 0, 0, 0, 0, 3, 33.7),
(2409, 151, 9, '2012-09-23', 1, 'DAL', 'L 10-16', 0, 0, 0, 0, 0, 1, 29, 0, 0, 0, 0, 0, 0, 3.9),
(2410, 151, 10, '2014-12-07', 1, 'DET', 'L 17-34', 0, 0, 0, 0, 0, 10, 159, 0, 0, 0, 0, 0, 3, 28.9),
(2411, 151, 11, '2013-10-20', 1, 'ATL', 'L 23-31', 0, 0, 0, 0, 0, 10, 138, 2, 0, 0, 0, 0, 3, 38.8),
(2412, 151, 12, '2013-11-17', 0, 'ATL', 'W 41-28', 0, 0, 0, 0, 0, 10, 165, 1, 0, 0, 0, 0, 3, 35.5),
(2413, 151, 13, '2014-10-26', 0, 'MIN', 'L 13-19', 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 0, 2.3),
(2414, 151, 14, '2015-10-25', 1, 'WAS', 'L 30-31', 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 0, 2.3),
(2415, 151, 15, '2015-12-13', 0, 'NO', 'L 17-24', 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 1.5),
(2416, 151, 16, '2015-10-11', 0, 'JAX', 'W 38-31', 0, 0, 0, 0, 0, 1, 14, 0, 0, 0, 0, 0, 0, 2.4),
(2417, 152, 1, '2001-12-16', 1, 'CHI', 'L 3-27', 0, 0, 0, 0, 0, 7, 119, 0, 0, 0, 0, 0, 3, 21.9),
(2418, 152, 2, '2003-11-02', 0, 'NO', 'L 14-17', 0, 0, 0, 0, 0, 10, 123, 0, 0, 0, 0, 0, 3, 25.3),
(2419, 152, 3, '2003-10-26', 0, 'DAL', 'W 16-0', 0, 0, 0, 0, 0, 1, 7, 1, 0, 0, 0, 0, 0, 7.7),
(2420, 152, 4, '2001-10-14', 1, 'TEN', 'L 28-31', 0, 0, 0, 0, 0, 8, 140, 0, 0, 0, 0, 0, 3, 25),
(2421, 152, 5, '2002-11-24', 0, 'GB', 'W 21-7', 0, 0, 0, 0, 0, 2, 48, 0, 0, 0, 0, 0, 0, 6.8),
(2422, 152, 6, '2003-09-14', 0, 'CAR', 'L 9-12', 0, 0, 0, 0, 0, 9, 102, 0, 0, 0, 0, 0, 3, 22.2),
(2423, 152, 7, '2000-10-29', 0, 'MIN', 'W 41-13', 0, 0, 0, 0, 0, 6, 121, 1, 0, 0, 0, 0, 3, 27.1),
(2424, 152, 8, '2002-11-03', 0, 'MIN', 'W 38-24', 0, 0, 0, 0, 0, 9, 133, 2, 0, 0, 0, 0, 3, 37.3),
(2425, 152, 9, '2001-10-21', 0, 'PIT', 'L 10-17', 0, 0, 0, 0, 0, 10, 159, 0, 0, 0, 0, 0, 3, 28.9),
(2426, 152, 10, '2000-09-10', 0, 'CHI', 'W 41-0', 0, 0, 0, 0, 0, 2, 32, 1, 0, 0, 0, 0, 0, 11.2),
(2427, 152, 11, '2001-12-23', 0, 'NO', 'W 48-21', 0, 0, 0, 0, 0, 2, 41, 0, 0, 0, 0, 0, 0, 6.1),
(2428, 152, 12, '2002-12-23', 0, 'PIT', 'L 7-17', 0, 0, 0, 0, 0, 8, 132, 1, 0, 0, 0, 0, 3, 30.2),
(2429, 152, 13, '2002-10-06', 1, 'ATL', 'W 20-6', 0, 0, 0, 0, 0, 6, 131, 1, 0, 0, 0, 0, 3, 28.1),
(2430, 152, 14, '2003-10-19', 1, 'SF', 'L 7-24', 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 1.4),
(2431, 152, 15, '2000-09-24', 0, 'NYJ', 'L 17-21', 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1.1),
(2432, 152, 16, '2000-12-18', 0, 'LAR', 'W 38-35', 0, 0, 0, 0, 0, 7, 116, 2, 0, 0, 0, 0, 3, 33.6),
(2433, 153, 1, '2000-11-27', 0, 'GB', 'W 31-14', 0, 0, 0, 0, 0, 11, 131, 2, 0, 0, 0, 0, 3, 39.1),
(2434, 153, 2, '2001-09-23', 1, 'ATL', 'L 16-24', 0, 0, 0, 0, 0, 10, 132, 0, 0, 0, 0, 0, 3, 26.2),
(2435, 153, 3, '1999-12-18', 0, 'SF', 'W 41-24', 0, 0, 0, 0, 0, 11, 126, 3, 0, 0, 0, 0, 3, 44.6),
(2436, 153, 4, '1998-09-13', 1, 'NO', 'L 14-19', 0, 0, 0, 0, 0, 9, 192, 1, 0, 0, 0, 0, 3, 37.2),
(2437, 153, 5, '2003-09-07', 0, 'JAX', 'W 24-23', 0, 0, 0, 0, 0, 1, 13, 1, 0, 0, 0, 0, 0, 8.3),
(2438, 153, 6, '2003-11-16', 0, 'WAS', 'W 20-17', 0, 0, 0, 0, 0, 9, 189, 0, 0, 0, 0, 0, 3, 30.9),
(2439, 153, 7, '2004-12-18', 1, 'ATL', 'L 31-34', 0, 0, 0, 0, 0, 10, 135, 1, 0, 0, 0, 0, 3, 32.5),
(2440, 153, 8, '1996-10-13', 0, 'LAR', 'W 45-13', 0, 0, 0, 0, 0, 1, 54, 1, 0, 0, 0, 0, 0, 12.4),
(2441, 153, 9, '2008-09-28', 0, 'ATL', 'W 24-9', 0, 0, 0, 0, 0, 8, 147, 1, 0, 0, 0, 0, 3, 31.7),
(2442, 153, 10, '2008-11-16', 0, 'DET', 'W 31-22', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(2443, 153, 11, '2001-11-18', 0, 'SF', 'L 22-25', 0, 0, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 1.9),
(2444, 153, 12, '2003-12-14', 1, 'AZ', 'W 20-17', 0, 0, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 2.1),
(2445, 153, 13, '1999-10-03', 1, 'WAS', 'L 36-38', 0, 0, 0, 0, 0, 8, 151, 0, 0, 0, 0, 0, 3, 26.1),
(2446, 153, 14, '2000-10-22', 0, 'SF', 'W 34-16', 0, 0, 0, 0, 0, 9, 127, 0, 0, 0, 0, 0, 3, 24.7),
(2447, 153, 15, '2004-12-05', 1, 'NO', 'W 32-21', 0, 0, 0, 0, 0, 10, 179, 1, 0, 0, 0, 0, 3, 36.9),
(2448, 153, 16, '2004-10-10', 1, 'DEN', 'L 17-20', 0, 0, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 1.9),
(2449, 154, 1, '2013-12-22', 0, 'NO', 'W 17-13', 0, 0, 0, 0, 0, 1, 44, 0, 0, 0, 0, 0, 0, 5.4),
(2450, 154, 2, '2011-10-02', 1, 'CHI', 'L 29-34', 0, 0, 0, 0, 0, 8, 181, 0, 0, 0, 0, 0, 3, 29.1),
(2451, 154, 3, '2008-11-23', 1, 'ATL', 'L 28-45', 0, 0, 0, 0, 0, 8, 168, 0, 0, 0, 0, 0, 3, 27.8),
(2452, 154, 4, '2011-09-11', 1, 'AZ', 'L 21-28', 0, 0, 0, 0, 0, 8, 178, 2, 0, 0, 0, 0, 3, 40.8),
(2453, 154, 5, '2005-12-24', 0, 'DAL', 'L 20-24', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2454, 154, 6, '2005-09-25', 1, 'MIA', 'L 24-27', 0, 0, 0, -2, 0, 11, 170, 3, 0, 0, 0, 0, 3, 48.8),
(2455, 154, 7, '2001-11-04', 1, 'MIA', 'L 6-23', 0, 0, 0, 10, 0, 1, 29, 0, 0, 0, 0, 0, 0, 4.9),
(2456, 154, 8, '2009-12-20', 0, 'MIN', 'W 26-7', 0, 0, 0, -6, 0, 9, 157, 1, 0, 0, 0, 0, 3, 33.1),
(2457, 154, 9, '2012-11-11', 0, 'DEN', 'L 14-36', 0, 0, 0, 2, 0, 1, 19, 0, 0, 0, 0, 0, 0, 3.1),
(2458, 154, 10, '2002-10-20', 1, 'ATL', 'L 0-30', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(2459, 154, 11, '2005-10-30', 0, 'MIN', 'W 38-13', 0, 0, 0, 0, 0, 11, 201, 1, 0, 0, 0, 0, 3, 40.1),
(2460, 154, 12, '2006-10-15', 1, 'BAL', 'W 23-21', 0, 0, 0, 0, 0, 8, 189, 1, 0, 0, 0, 0, 3, 35.9),
(2461, 154, 13, '2005-11-20', 1, 'CHI', 'L 3-13', 0, 0, 0, 0, 0, 14, 169, 0, 0, 0, 0, 0, 3, 33.9),
(2462, 154, 14, '2011-09-18', 0, 'GB', 'L 23-30', 0, 0, 0, 0, 0, 6, 156, 0, 0, 0, 0, 0, 3, 24.6),
(2463, 154, 15, '2008-12-14', 0, 'DEN', 'W 30-10', 0, 0, 0, 9, 0, 9, 165, 1, 0, 0, 0, 0, 3, 35.4),
(2464, 154, 16, '2001-12-23', 0, 'LAR', 'L 32-38', 0, 0, 0, 0, 0, 1, 33, 0, 0, 0, 0, 0, 0, 4.3),
(2465, 155, 1, '2001-09-09', 0, 'PIT', 'W 21-3', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(2466, 155, 2, '2000-11-12', 0, 'SEA', 'L 21-28', 0, 0, 0, 0, 0, 6, 156, 1, 0, 0, 0, 0, 3, 30.6),
(2467, 155, 3, '2000-12-23', 1, 'NYG', 'L 25-28', 0, 0, 0, 0, 0, 11, 131, 0, 0, 0, 0, 0, 3, 27.1),
(2468, 155, 4, '1997-12-21', 1, 'OAK', 'W 20-9', 0, 0, 0, 0, 0, 7, 116, 1, 0, 0, 0, 0, 3, 27.6),
(2469, 155, 5, '2001-10-28', 1, 'BAL', 'L 17-18', 0, 0, 0, 0, 0, 10, 118, 0, 0, 0, 0, 0, 3, 24.8),
(2470, 155, 6, '1997-12-07', 0, 'NE', 'L 20-26', 0, 0, 0, 0, 0, 11, 152, 2, 0, 0, 0, 0, 3, 41.2),
(2471, 155, 7, '1996-10-20', 1, 'LAR', 'L 14-17', 0, 0, 0, 0, 0, 16, 232, 0, 0, 0, 0, 0, 3, 42.2),
(2472, 155, 8, '2000-10-01', 0, 'PIT', 'L 13-24', 0, 0, 0, 0, 0, 11, 137, 1, 0, 0, 0, 0, 3, 33.7),
(2473, 155, 9, '1998-11-15', 0, 'TB', 'W 29-24', 0, 0, 0, 0, 0, 2, 34, 0, 0, 0, 0, 0, 0, 5.4),
(2474, 155, 10, '1996-09-22', 1, 'NE', 'L 25-28', 0, 0, 0, 0, 0, 2, 27, 0, 0, 0, 0, 0, 0, 4.7),
(2475, 155, 11, '1997-10-19', 1, 'DAL', 'L 22-26', 0, 0, 0, 0, 0, 7, 120, 1, 0, 0, 0, 0, 3, 28),
(2476, 155, 12, '2001-12-30', 0, 'KC', 'L 26-30', 0, 0, 0, 0, 0, 7, 132, 1, 0, 0, 0, 0, 3, 29.2),
(2477, 155, 13, '1998-09-13', 0, 'KC', 'W 21-16', 0, 0, 0, 0, 0, 1, 14, 0, 0, 0, 0, 0, 0, 2.4),
(2478, 155, 14, '1997-11-09', 0, 'KC', 'W 24-10', 0, 0, 0, 0, 0, 1, 23, 0, 0, 0, 0, 0, 0, 3.3),
(2479, 155, 15, '1999-10-31', 1, 'CIN', 'W 41-10', 0, 0, 0, 0, 0, 1, 23, 1, 0, 0, 0, 0, 0, 9.3),
(2480, 155, 16, '2000-09-03', 1, 'CLE', 'W 27-7', 0, 0, 0, 0, 0, 9, 115, 0, 0, 0, 0, 0, 3, 23.5),
(2481, 156, 1, '2000-09-25', 1, 'IND', 'L 14-43', 0, 0, 0, 0, 0, 9, 132, 2, 0, 0, 0, 0, 3, 37.2),
(2482, 156, 2, '2004-12-19', 1, 'GB', 'W 28-25', 0, 0, 0, 0, 0, 4, 87, 2, 0, 0, 0, 0, 0, 24.7),
(2483, 156, 3, '1998-10-12', 0, 'MIA', 'W 28-21', 0, 0, 0, 0, 0, 1, 41, 0, 0, 0, 0, 0, 0, 5.1),
(2484, 156, 4, '2002-09-29', 0, 'NYJ', 'W 28-3', 0, 0, 0, 0, 0, 1, 10, 0, 0, 0, 0, 0, 0, 2),
(2485, 156, 5, '1995-11-19', 1, 'TB', 'L 16-17', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(2486, 156, 6, '1996-12-15', 0, 'SEA', 'W 20-13', 0, 0, 0, 0, 0, 8, 124, 2, 0, 0, 0, 0, 3, 35.4),
(2487, 156, 7, '2000-09-10', 1, 'BAL', 'L 36-39', 0, 0, 0, 0, 0, 15, 291, 3, 0, 0, 0, 0, 3, 65.1),
(2488, 156, 8, '2000-12-10', 0, 'AZ', 'W 44-10', 0, 0, 0, 0, 0, 8, 147, 1, 0, 0, 0, 0, 3, 31.7),
(2489, 156, 9, '2005-09-11', 0, 'SEA', 'W 26-14', 0, 0, 0, 0, 0, 7, 130, 2, 0, 0, 0, 0, 3, 35),
(2490, 156, 10, '1997-08-31', 1, 'BAL', 'W 28-27', 0, 0, 0, 0, 0, 6, 106, 2, 0, 0, 0, 0, 3, 31.6),
(2491, 156, 11, '1997-09-22', 0, 'PIT', 'W 30-21', 0, 0, 0, 0, 0, 10, 164, 1, 0, 0, 0, 0, 3, 35.4),
(2492, 156, 12, '1999-11-21', 0, 'NO', 'W 41-23', 0, 0, 0, 0, 0, 9, 220, 1, 0, 0, 0, 0, 3, 40),
(2493, 156, 13, '2000-10-16', 1, 'TEN', 'L 13-27', 0, 0, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 1.9),
(2494, 156, 14, '2001-09-09', 0, 'PIT', 'W 21-3', 0, 0, 0, 0, 0, 8, 126, 2, 0, 0, 0, 0, 3, 35.6),
(2495, 156, 15, '1995-12-17', 1, 'DET', 'L 0-44', 0, 0, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 1.9),
(2496, 156, 16, '1995-11-12', 0, 'SEA', 'L 30-47', 0, 0, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 1.9),
(2497, 157, 1, '2002-01-07', 0, 'MIN', 'W 19-3', 0, 0, 0, 0, 0, 2, 29, 0, 0, 0, 0, 0, 0, 4.9),
(2498, 157, 2, '1999-12-12', 1, 'PIT', 'W 31-24', 0, 0, 0, 0, 0, 6, 258, 3, 0, 0, 0, 0, 3, 52.8),
(2499, 157, 3, '2001-10-21', 1, 'CLE', 'L 14-24', 0, 0, 0, 0, 0, 7, 85, 1, 0, 0, 0, 0, 0, 21.5),
(2500, 157, 4, '2001-10-28', 0, 'JAX', 'W 18-17', 0, 0, 0, 0, 0, 7, 85, 1, 0, 0, 0, 0, 0, 21.5),
(2501, 157, 5, '2001-10-07', 0, 'TEN', 'W 26-7', 0, 0, 0, 0, 0, 3, 93, 1, 0, 0, 0, 0, 0, 18.3),
(2502, 157, 6, '2000-10-15', 1, 'WAS', 'L 3-10', 0, 0, 0, 0, 0, 2, 38, 0, 0, 0, 0, 0, 0, 5.8),
(2503, 157, 7, '1999-09-26', 0, 'CLE', 'W 17-10', 0, 0, 0, 0, 0, 2, 49, 0, 0, 0, 0, 0, 0, 6.9),
(2504, 157, 8, '1999-12-05', 0, 'TEN', 'W 41-14', 0, 0, 0, 0, 0, 5, 113, 0, 0, 0, 0, 0, 3, 19.3),
(2505, 157, 9, '2000-10-08', 1, 'JAX', 'W 15-10', 0, 0, 0, 0, 0, 9, 85, 0, 0, 0, 0, 0, 0, 17.5),
(2506, 157, 10, '2001-09-09', 0, 'CHI', 'W 17-6', 0, 0, 0, 0, 0, 6, 88, 0, 0, 0, 0, 0, 0, 14.8),
(2507, 157, 11, '2001-09-30', 1, 'DEN', 'W 20-13', 0, 0, 0, 0, 0, 2, 44, 1, 0, 0, 0, 0, 0, 12.4),
(2508, 157, 12, '1999-11-07', 1, 'CLE', 'W 41-9', 0, 0, 0, 0, 0, 2, 43, 1, 0, 0, 0, 0, 0, 12.3),
(2509, 157, 13, '2001-11-12', 1, 'TEN', 'W 16-10', 0, 0, 0, 0, 0, 8, 129, 1, 0, 0, 0, 0, 3, 29.9),
(2510, 157, 14, '2000-12-24', 0, 'NYJ', 'W 34-20', 0, 0, 0, 0, 0, 1, 7, 1, 0, 0, 0, 0, 0, 7.7),
(2511, 157, 15, '1999-12-19', 0, 'NO', 'W 31-8', 0, 0, 0, 0, 0, 7, 115, 1, 0, 0, 0, 0, 3, 27.5),
(2512, 157, 16, '2000-09-03', 1, 'PIT', 'W 16-0', 0, 0, 0, 0, 0, 7, 102, 1, 0, 0, 0, 0, 3, 26.2),
(2513, 158, 1, '1996-11-10', 1, 'JAX', 'L 27-30', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(2514, 158, 2, '1998-09-27', 0, 'CIN', 'W 31-24', 0, 0, 0, -1, 0, 4, 122, 1, 0, 0, 0, 0, 3, 25.1),
(2515, 158, 3, '1997-09-21', 1, 'TEN', 'W 36-10', 0, 0, 0, 0, 0, 8, 124, 1, 0, 0, 0, 0, 3, 29.4),
(2516, 158, 4, '1999-11-28', 0, 'JAX', 'L 23-30', 0, 0, 0, 0, 0, 1, 46, 0, 0, 0, 0, 0, 0, 5.6),
(2517, 158, 5, '1998-11-15', 1, 'SD', 'L 13-14', 0, 0, 0, 0, 0, 2, 78, 1, 0, 0, 0, 0, 0, 15.8),
(2518, 158, 6, '2002-10-13', 0, 'BUF', 'L 24-31', 0, 0, 0, 0, 0, 1, 33, 0, 0, 0, 0, 0, 0, 4.3),
(2519, 158, 7, '2003-09-07', 1, 'CAR', 'L 23-24', 0, 0, 0, 0, 0, 3, 90, 1, 0, 0, 0, 0, 0, 18),
(2520, 158, 8, '1997-08-31', 0, 'JAX', 'L 27-28', 0, 0, 0, 5, 0, 4, 73, 2, 0, 0, 0, 0, 0, 23.8),
(2521, 158, 9, '1998-11-29', 0, 'IND', 'W 38-31', 0, 0, 0, 0, 0, 1, 53, 0, 0, 0, 0, 0, 0, 6.3),
(2522, 158, 10, '1998-09-20', 1, 'JAX', 'L 10-24', 0, 0, 0, 0, 0, 4, 117, 1, 0, 0, 0, 0, 3, 24.7),
(2523, 158, 11, '1998-09-06', 0, 'PIT', 'L 13-20', 0, 0, 0, 3, 0, 2, 76, 1, 0, 0, 0, 0, 0, 15.9),
(2524, 158, 12, '1996-10-13', 1, 'IND', 'L 21-26', 0, 0, 0, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 2.9),
(2525, 158, 13, '1997-10-19', 0, 'MIA', 'L 13-24', 0, 0, 0, 0, 0, 6, 105, 0, 0, 0, 0, 0, 3, 19.5),
(2526, 158, 14, '1998-10-25', 1, 'GB', 'L 10-28', 0, 0, 0, 0, 0, 6, 79, 1, 0, 0, 0, 0, 0, 19.9),
(2527, 158, 15, '1997-11-02', 1, 'NYJ', 'L 16-19', 0, 0, 0, 0, 0, 4, 72, 0, 0, 0, 0, 0, 0, 11.2),
(2528, 158, 16, '2001-12-02', 0, 'IND', 'W 39-27', 0, 0, 0, 9, 0, 1, 12, 0, 0, 0, 0, 0, 0, 3.1),
(2529, 159, 1, '1990-09-09', 1, 'ATL', 'L 27-47', 0, 0, 0, 0, 0, 4, 109, 2, 0, 0, 0, 0, 3, 29.9),
(2530, 159, 2, '1987-11-22', 0, 'CLE', 'L 7-40', 0, 0, 0, -13, 0, 3, 126, 1, 0, 0, 0, 0, 3, 23.3),
(2531, 159, 3, '1994-09-18', 0, 'BUF', 'L 7-15', 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 0, 2.3),
(2532, 159, 4, '1989-12-03', 1, 'PIT', 'W 23-16', 0, 0, 0, 0, 0, 1, 12, 0, 0, 0, 0, 0, 0, 2.2),
(2533, 159, 5, '1987-09-13', 0, 'LAR', 'W 20-16', 0, 0, 0, 0, 0, 6, 117, 1, 0, 0, 0, 0, 3, 26.7),
(2534, 159, 6, '1989-10-08', 1, 'NE', 'L 13-23', 0, 0, 0, 0, 0, 5, 128, 0, 0, 0, 0, 0, 3, 20.8),
(2535, 159, 7, '1986-10-05', 1, 'DET', 'L 13-24', 0, 0, 0, 0, 0, 5, 155, 0, 0, 0, 0, 0, 3, 23.5),
(2536, 159, 8, '1991-10-06', 0, 'DEN', 'W 42-14', 0, 0, 0, 0, 0, 5, 151, 0, 0, 0, 0, 0, 3, 23.1),
(2537, 159, 9, '1989-12-17', 1, 'CIN', 'L 7-61', 0, 0, 0, 0, 0, 1, 23, 0, 0, 0, 0, 0, 0, 3.3),
(2538, 159, 10, '1994-12-04', 0, 'AZ', 'L 12-30', 0, 0, 0, -5, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.3),
(2539, 159, 11, '1986-12-14', 0, 'MIN', 'W 23-10', 0, 0, 0, 30, 0, 6, 108, 1, 0, 0, 0, 0, 3, 28.8),
(2540, 159, 12, '1986-11-16', 1, 'PIT', 'L 10-21', 0, 0, 0, 0, 0, 8, 156, 1, 0, 0, 0, 0, 3, 32.6),
(2541, 159, 13, '1992-12-07', 0, 'CHI', 'W 24-7', 0, 0, 0, 44, 0, 1, 12, 0, 0, 0, 0, 0, 0, 6.6),
(2542, 159, 14, '1988-11-20', 0, 'AZ', 'W 38-20', 0, 0, 0, 4, 0, 5, 118, 2, 0, 0, 0, 0, 3, 32.2),
(2543, 159, 15, '1988-12-18', 1, 'CLE', 'L 23-28', 0, 0, 0, 0, 0, 6, 119, 0, 0, 0, 0, 0, 3, 20.9),
(2544, 159, 16, '1994-10-30', 1, 'OAK', 'L 14-17', 0, 0, 0, 0, 0, 1, 7, 0, 0, 0, 0, 0, 0, 1.7),
(2545, 160, 1, '1987-11-29', 1, 'IND', 'L 27-51', 0, 0, 0, 0, 0, 1, 23, 0, 0, 0, 0, 0, 0, 3.3),
(2546, 160, 2, '1991-10-13', 1, 'NYJ', 'W 23-20', 0, 0, 0, 0, 0, 13, 186, 0, 0, 0, 0, 0, 3, 34.6),
(2547, 160, 3, '1995-12-17', 0, 'NYJ', 'W 23-6', 0, 0, 0, 0, 0, 1, 35, 1, 0, 0, 0, 0, 0, 10.5),
(2548, 160, 4, '1992-09-06', 0, 'PIT', 'L 24-29', 0, 0, 0, 0, 0, 7, 117, 0, 0, 0, 0, 0, 3, 21.7),
(2549, 160, 5, '1988-12-11', 0, 'CIN', 'W 41-6', 0, 0, 0, 0, 0, 1, 42, 0, 0, 0, 0, 0, 0, 5.2),
(2550, 160, 6, '1991-11-24', 1, 'PIT', 'L 14-26', 0, 0, 0, 0, 0, 8, 122, 1, 0, 0, 0, 0, 3, 29.2),
(2551, 160, 7, '1993-11-28', 0, 'PIT', 'W 23-3', 0, 0, 0, 0, 0, 7, 139, 1, 0, 0, 0, 0, 3, 29.9),
(2552, 160, 8, '1991-12-15', 1, 'CLE', 'W 17-14', 0, 0, 0, 0, 0, 7, 91, 1, 0, 0, 0, 0, 0, 22.1),
(2553, 160, 9, '1991-09-08', 1, 'CIN', 'W 30-7', 0, 0, 0, 0, 0, 4, 91, 1, 0, 0, 0, 0, 0, 19.1),
(2554, 160, 10, '1994-11-21', 0, 'NYG', 'L 10-13', 0, 0, 0, 0, 0, 1, 21, 0, 0, 0, 0, 0, 0, 3.1),
(2555, 160, 11, '1990-12-16', 1, 'KC', 'W 27-10', 0, 0, 0, 0, 0, 9, 245, 1, 0, 0, 0, 0, 3, 42.5),
(2556, 160, 12, '1989-12-10', 0, 'TB', 'W 20-17', 0, 0, 0, 0, 0, 1, 23, 0, 0, 0, 0, 0, 0, 3.3),
(2557, 160, 13, '1994-09-11', 1, 'DAL', 'L 17-20', 0, 0, 0, 0, 0, 6, 103, 0, 0, 0, 0, 0, 3, 19.3),
(2558, 160, 14, '1990-11-26', 0, 'BUF', 'W 27-24', 0, 0, 0, 0, 0, 1, 37, 1, 0, 0, 0, 0, 0, 10.7),
(2559, 160, 15, '1991-09-22', 1, 'NE', 'L 20-24', 0, 0, 0, 0, 0, 7, 98, 0, 0, 0, 0, 0, 0, 16.8),
(2560, 160, 16, '1994-09-04', 1, 'IND', 'L 21-45', 0, 0, 0, 0, 0, 8, 99, 2, 0, 0, 0, 0, 0, 29.9),
(2561, 161, 1, '2006-12-31', 1, 'SD', 'L 20-27', 0, 0, 0, 0, 0, 3, 76, 0, 0, 0, 0, 0, 0, 10.6),
(2562, 161, 2, '2007-11-25', 0, 'SF', 'L 31-37', 0, 0, 0, 0, 0, 5, 80, 0, 0, 0, 0, 0, 0, 13),
(2563, 161, 3, '2006-12-10', 0, 'SEA', 'W 27-21', 0, 0, 0, 0, 0, 3, 81, 1, 0, 0, 0, 0, 0, 17.1),
(2564, 161, 4, '2007-09-23', 1, 'BAL', 'L 23-26', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2565, 161, 5, '2006-09-17', 1, 'SEA', 'L 10-21', 0, 0, 0, 0, 0, 1, 40, 1, 0, 0, 0, 0, 0, 11),
(2566, 161, 6, '2003-09-21', 0, 'GB', 'W 20-13', 0, 0, 0, 0, 0, 6, 86, 0, 0, 0, 0, 0, 0, 14.6),
(2567, 161, 7, '2007-11-04', 1, 'TB', 'L 10-17', 0, 0, 0, 0, 0, 1, 14, 0, 0, 0, 0, 0, 0, 2.4),
(2568, 161, 8, '2003-11-09', 1, 'PIT', 'L 15-28', 0, 0, 0, 0, 0, 3, 76, 1, 0, 0, 0, 0, 0, 16.6),
(2569, 161, 9, '2007-10-07', 1, 'LAR', 'W 34-31', 0, 0, 0, 0, 0, 6, 80, 0, 0, 0, 0, 0, 0, 14),
(2570, 161, 10, '2005-11-27', 0, 'JAX', 'L 17-24', 0, 0, 0, 0, 0, 5, 77, 0, 0, 0, 0, 0, 0, 12.7),
(2571, 161, 11, '2004-12-12', 0, 'SF', 'L 28-31', 0, 0, 0, 0, 0, 4, 77, 0, 0, 0, 0, 0, 0, 11.7),
(2572, 161, 12, '2006-10-22', 1, 'OAK', 'L 9-22', 0, 0, 0, 0, 0, 3, 87, 0, 0, 0, 0, 0, 0, 11.7),
(2573, 161, 13, '2006-09-24', 0, 'LAR', 'L 14-16', 0, 0, 0, -3, 0, 1, 54, 0, 0, 0, 0, 0, 0, 6.1),
(2574, 161, 14, '2007-11-18', 1, 'CIN', 'W 35-27', 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 0, 2.3),
(2575, 161, 15, '2006-10-08', 0, 'KC', 'L 20-23', 0, 0, 0, 0, 0, 6, 82, 0, 0, 0, 0, 0, 0, 14.2),
(2576, 161, 16, '2003-12-14', 0, 'CAR', 'L 17-20', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2577, 162, 1, '1961-09-17', 1, 'MIN', 'L 13-37', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2578, 162, 2, '1962-09-23', 1, 'LAR', 'W 27-23', 0, 0, 0, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 2.9),
(2579, 162, 3, '1961-10-08', 1, 'DET', 'W 31-17', 0, 0, 0, 0, 0, 5, 120, 1, 0, 0, 0, 0, 3, 26),
(2580, 162, 4, '1961-11-12', 0, 'GB', 'L 28-31', 0, 0, 0, 0, 0, 9, 190, 3, 0, 0, 0, 0, 3, 49),
(2581, 162, 5, '1961-10-15', 0, 'BAL', 'W 24-10', 0, 0, 0, 0, 0, 1, 22, 0, 0, 0, 0, 0, 0, 3.2),
(2582, 162, 6, '1964-10-25', 1, 'WAS', 'L 20-27', 0, 0, 0, 0, 0, 13, 168, 0, 0, 0, 0, 0, 3, 32.8),
(2583, 162, 7, '1961-09-23', 1, 'LAR', 'W 21-17', 0, 0, 0, 0, 0, 5, 130, 1, 0, 0, 0, 0, 3, 27),
(2584, 162, 8, '1961-11-05', 1, 'PHI', 'L 14-16', 0, 0, 0, 0, 0, 1, 76, 1, 0, 0, 0, 0, 0, 14.6),
(2585, 162, 9, '1963-11-24', 1, 'PIT', 'T 17-17', 0, 0, 0, 0, 0, 7, 146, 0, 0, 0, 0, 0, 3, 24.6),
(2586, 162, 10, '1962-10-14', 0, 'SF', 'L 27-34', 0, 0, 0, 0, 0, 8, 132, 0, 0, 0, 0, 0, 3, 24.2),
(2587, 162, 11, '1963-10-13', 1, 'LAR', 'W 52-14', 0, 0, 0, 0, 0, 9, 110, 4, 0, 0, 0, 0, 3, 47),
(2588, 162, 12, '1964-12-13', 0, 'MIN', 'L 14-41', 0, 0, 0, 0, 0, 1, 24, 0, 0, 0, 0, 0, 0, 3.4),
(2589, 162, 13, '1962-12-09', 0, 'LAR', 'W 30-14', 0, 0, 0, 0, 0, 6, 155, 1, 0, 0, 0, 0, 3, 30.5),
(2590, 162, 14, '1962-11-18', 1, 'DAL', 'W 34-33', 0, 0, 0, 0, 0, 7, 133, 1, 0, 0, 0, 0, 3, 29.3),
(2591, 162, 15, '1965-09-19', 1, 'SF', 'L 24-52', 0, 0, 0, 0, 0, 1, 26, 0, 0, 0, 0, 0, 0, 3.6),
(2592, 162, 16, '1963-09-22', 1, 'MIN', 'W 28-7', 0, 0, 0, 0, 0, 8, 124, 2, 0, 0, 0, 0, 3, 35.4),
(2593, 163, 1, '1985-10-06', 0, 'DET', 'W 43-10', 0, 0, 0, 0, 0, 1, 24, 0, 0, 0, 0, 0, 0, 3.4),
(2594, 163, 2, '1979-12-09', 0, 'CHI', 'L 14-15', 0, 0, 0, 0, 0, 6, 79, 2, 0, 0, 0, 0, 0, 25.9),
(2595, 163, 3, '1980-10-26', 0, 'MIN', 'W 16-3', 0, 0, 0, 0, 0, 1, 12, 1, 0, 0, 0, 0, 0, 8.2),
(2596, 163, 4, '1979-10-28', 1, 'MIA', 'L 7-27', 0, 0, 0, 0, 0, 5, 116, 1, 0, 0, 0, 0, 3, 25.6),
(2597, 163, 5, '1983-10-17', 0, 'WAS', 'W 48-47', 0, 0, 0, 0, 0, 6, 124, 2, 0, 0, 0, 0, 3, 33.4),
(2598, 163, 6, '1979-10-21', 1, 'TB', 'L 3-21', 0, 0, 0, 0, 0, 7, 106, 0, 0, 0, 0, 0, 3, 20.6),
(2599, 163, 7, '1981-10-04', 1, 'NYG', 'W 27-14', 0, 0, 0, 0, 0, 6, 92, 1, 0, 0, 0, 0, 0, 21.2),
(2600, 163, 8, '1984-10-07', 0, 'SD', 'L 28-34', 0, 0, 0, 0, 0, 8, 104, 1, 0, 0, 0, 0, 3, 27.4),
(2601, 163, 9, '1983-12-18', 1, 'CHI', 'L 21-23', 0, 0, 0, 0, 0, 4, 122, 1, 0, 0, 0, 0, 3, 25.2),
(2602, 163, 10, '1980-10-12', 1, 'TB', 'T 14-14', 0, 0, 0, 0, 0, 9, 109, 1, 0, 0, 0, 0, 3, 28.9),
(2603, 163, 11, '1984-11-22', 1, 'DET', 'L 28-31', 0, 0, 0, 0, 0, 1, 44, 1, 0, 0, 0, 0, 0, 11.4),
(2604, 163, 12, '1982-12-19', 1, 'BAL', 'T 20-20', 0, 0, 0, 0, 0, 1, 27, 0, 0, 0, 0, 0, 0, 3.7),
(2605, 163, 13, '1985-09-29', 1, 'LAR', 'L 28-43', 0, 0, 0, 0, 0, 6, 79, 2, 0, 0, 0, 0, 0, 25.9),
(2606, 163, 14, '1981-09-06', 1, 'CHI', 'W 16-9', 0, 0, 0, 0, 0, 1, 27, 0, 0, 0, 0, 0, 0, 3.7),
(2607, 163, 15, '1985-10-27', 1, 'IND', 'L 10-37', 0, 0, 0, 0, 0, 5, 80, 1, 0, 0, 0, 0, 0, 19),
(2608, 163, 16, '1980-10-05', 0, 'CIN', 'W 14-9', 0, 0, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 2.1),
(2609, 164, 1, '2002-12-22', 1, 'IND', 'W 44-27', 0, 0, 0, 0, 0, 7, 116, 0, 0, 0, 0, 0, 3, 21.6),
(2610, 164, 2, '2002-10-06', 1, 'DAL', 'W 21-17', 0, 0, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 0, 2.1),
(2611, 164, 3, '2005-11-27', 1, 'SEA', 'L 21-24', 0, 0, 0, 0, 0, 10, 127, 1, 0, 0, 0, 0, 3, 31.7),
(2612, 164, 4, '2007-12-09', 1, 'PHI', 'W 16-13', 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 1.4),
(2613, 164, 5, '2002-11-17', 0, 'WAS', 'W 19-17', 0, 0, 0, 0, 0, 11, 111, 0, 0, 0, 0, 0, 3, 25.1),
(2614, 164, 6, '2006-11-12', 0, 'CHI', 'L 20-38', 0, 0, 0, 0, 0, 1, 15, 0, 0, 0, 0, 0, 0, 2.5),
(2615, 164, 7, '2007-11-11', 0, 'DAL', 'L 20-31', 0, 0, 0, 0, 0, 12, 129, 1, 0, 0, 0, 0, 3, 33.9),
(2616, 164, 8, '2005-11-20', 0, 'PHI', 'W 27-17', 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 7.1),
(2617, 164, 9, '2006-10-08', 0, 'WAS', 'W 19-3', 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 0, 2.3),
(2618, 164, 10, '2005-10-16', 1, 'DAL', 'L 13-16', 0, 0, 0, 0, 0, 5, 129, 1, 0, 0, 0, 0, 3, 26.9),
(2619, 164, 11, '2005-12-11', 1, 'PHI', 'W 26-23', 0, 0, 0, 0, 0, 10, 107, 0, 0, 0, 0, 0, 3, 23.7),
(2620, 164, 12, '2007-09-30', 0, 'PHI', 'W 16-3', 0, 0, 0, 0, 0, 1, 17, 0, 0, 0, 0, 0, 0, 2.7),
(2621, 164, 13, '2002-12-08', 1, 'WAS', 'W 27-21', 0, 0, 0, 0, 0, 5, 89, 0, 0, 0, 0, 0, 0, 13.9),
(2622, 164, 14, '2005-09-25', 1, 'SD', 'L 23-45', 0, 0, 0, 0, 0, 6, 101, 0, 0, 0, 0, 0, 3, 19.1),
(2623, 164, 15, '2002-12-28', 0, 'PHI', 'W 10-7', 0, 0, 0, 0, 0, 10, 98, 1, 0, 0, 0, 0, 0, 25.8),
(2624, 164, 16, '2003-10-05', 0, 'MIA', 'L 10-23', 0, 0, 0, 0, 0, 11, 110, 0, 0, 0, 0, 0, 3, 25),
(2625, 165, 1, '1974-10-27', 0, 'GB', 'W 19-17', 0, 0, 0, 0, 0, 7, 146, 1, 0, 0, 0, 0, 3, 30.6),
(2626, 165, 2, '1968-09-15', 1, 'DAL', 'L 13-59', 0, 0, 0, 0, 0, 1, 15, 0, 0, 0, 0, 0, 0, 2.5),
(2627, 165, 3, '1972-10-30', 1, 'DAL', 'L 24-28', 0, 0, 0, 0, 0, 3, 82, 0, 0, 0, 0, 0, 0, 11.2);
INSERT INTO `legends_player_data` (`rowID`, `playerID`, `gameID`, `game_date`, `is_away`, `opp`, `game_result`, `passYDS`, `passTD`, `passINT`, `rushYDS`, `rushTD`, `rec`, `recYDS`, `recTD`, `krtd`, `prtd`, `passBonus`, `rushBonus`, `recBonus`, `fpts`) VALUES
(2628, 165, 4, '1970-11-08', 1, 'NO', 'L 17-19', 0, 0, 0, 0, 0, 6, 88, 1, 0, 0, 0, 0, 0, 20.8),
(2629, 165, 5, '1971-10-03', 0, 'ATL', 'W 41-38', 0, 0, 0, 0, 0, 1, 16, 1, 0, 0, 0, 0, 0, 8.6),
(2630, 165, 6, '1968-12-15', 1, 'WAS', 'L 3-14', 0, 0, 0, 0, 0, 10, 133, 0, 0, 0, 0, 0, 3, 26.3),
(2631, 165, 7, '1968-11-03', 1, 'LAR', 'L 7-10', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(2632, 165, 8, '1973-10-14', 1, 'NO', 'L 13-20', 0, 0, 0, -1, 0, 3, 80, 0, 0, 0, 0, 0, 0, 10.9),
(2633, 165, 9, '1974-09-15', 1, 'CHI', 'L 9-17', 0, 0, 0, 0, 0, 1, 21, 0, 0, 0, 0, 0, 0, 3.1),
(2634, 165, 10, '1973-10-28', 0, 'GB', 'W 34-0', 0, 0, 0, 0, 0, 1, 22, 0, 0, 0, 0, 0, 0, 3.2),
(2635, 165, 11, '1972-12-03', 1, 'GB', 'L 7-33', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(2636, 165, 12, '1976-10-24', 1, 'SEA', 'W 41-14', 0, 0, 0, 0, 0, 4, 89, 1, 0, 0, 0, 0, 0, 18.9),
(2637, 165, 13, '1970-10-05', 0, 'CHI', 'W 28-14', 0, 0, 0, 0, 0, 3, 77, 0, 0, 0, 0, 0, 0, 10.7),
(2638, 165, 14, '1968-11-10', 0, 'BAL', 'L 10-27', 0, 0, 0, 0, 0, 6, 86, 0, 0, 0, 0, 0, 0, 14.6),
(2639, 165, 15, '1970-12-06', 0, 'LAR', 'W 16-3', 0, 0, 0, 0, 0, 5, 76, 0, 0, 0, 0, 0, 0, 12.6),
(2640, 165, 16, '1971-11-25', 0, 'KC', 'W 32-21', 0, 0, 0, 0, 0, 5, 90, 1, 0, 0, 0, 0, 0, 20),
(2641, 166, 1, '2007-10-14', 1, 'GB', 'L 14-17', 0, 0, 0, 0, 0, 9, 105, 1, 0, 0, 0, 0, 3, 28.5),
(2642, 166, 2, '2004-11-14', 0, 'CIN', 'L 10-17', 0, 0, 0, 0, 0, 1, 9, 1, 0, 0, 0, 0, 0, 7.9),
(2643, 166, 3, '2007-12-23', 1, 'MIN', 'W 32-21', 0, 0, 0, 0, 0, 1, 33, 1, 0, 0, 0, 0, 0, 10.3),
(2644, 166, 4, '2008-12-07', 1, 'BAL', 'L 10-24', 0, 0, 0, 0, 0, 1, 12, 0, 0, 0, 0, 0, 0, 2.2),
(2645, 166, 5, '2007-12-02', 0, 'BUF', 'L 16-17', 0, 0, 0, 0, 0, 7, 89, 0, 0, 0, 0, 0, 0, 15.9),
(2646, 166, 6, '2007-11-25', 1, 'TB', 'L 13-19', 0, 0, 0, 0, 0, 6, 96, 1, 0, 0, 0, 0, 0, 21.6),
(2647, 166, 7, '2007-12-06', 0, 'CHI', 'W 24-16', 0, 0, 0, 0, 0, 5, 93, 0, 0, 0, 0, 0, 0, 14.3),
(2648, 166, 8, '2010-11-21', 1, 'TEN', 'W 19-16', 0, 0, 0, 0, 0, 7, 91, 0, 0, 0, 0, 0, 0, 16.1),
(2649, 166, 9, '2009-09-20', 0, 'LAR', 'W 9-7', 0, 0, 0, 0, 0, 7, 83, 0, 0, 0, 0, 0, 0, 15.3),
(2650, 166, 10, '2008-10-05', 1, 'PHI', 'W 23-17', 0, 0, 0, 0, 0, 8, 109, 1, 0, 0, 0, 0, 3, 27.9),
(2651, 166, 11, '2005-11-06', 0, 'PHI', 'W 17-10', 0, 0, 0, 0, 0, 7, 85, 0, 0, 0, 0, 0, 0, 15.5),
(2652, 166, 12, '2007-09-09', 0, 'MIA', 'W 16-13', 0, 0, 0, 0, 0, 1, 10, 0, 0, 0, 0, 0, 0, 2),
(2653, 166, 13, '2007-11-18', 1, 'DAL', 'L 23-28', 0, 0, 0, 0, 0, 8, 89, 1, 0, 0, 0, 0, 0, 22.9),
(2654, 166, 14, '2004-09-12', 0, 'TB', 'W 16-10', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(2655, 166, 15, '2006-09-17', 1, 'DAL', 'L 10-27', 0, 0, 0, 0, 0, 1, 23, 0, 0, 0, 0, 0, 0, 3.3),
(2656, 166, 16, '2006-11-26', 0, 'CAR', 'W 17-13', 0, 0, 0, 0, 0, 3, 89, 1, 0, 0, 0, 0, 0, 17.9),
(2657, 167, 1, '1960-10-16', 0, 'DET', 'W 28-10', 0, 0, 0, 0, 0, 1, 25, 0, 0, 0, 0, 0, 0, 3.5),
(2658, 167, 2, '1962-09-16', 0, 'LAR', 'L 21-27', 0, 0, 0, 0, 0, 4, 126, 0, 0, 0, 0, 0, 3, 19.6),
(2659, 167, 3, '1966-10-23', 1, 'NYG', 'W 31-3', 0, 0, 0, 0, 0, 1, 30, 1, 0, 0, 0, 0, 0, 10),
(2660, 167, 4, '1956-12-02', 1, 'CLE', 'L 14-17', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(2661, 167, 5, '1965-11-14', 0, 'WAS', 'W 21-14', 0, 0, 0, 0, 0, 7, 204, 0, 0, 0, 0, 0, 3, 30.4),
(2662, 167, 6, '1965-09-19', 0, 'LAR', 'W 34-27', 0, 0, 0, 0, 0, 1, 23, 0, 0, 0, 0, 0, 0, 3.3),
(2663, 167, 7, '1959-10-18', 1, 'NYG', 'L 7-24', 0, 0, 0, 0, 0, 1, 24, 0, 0, 0, 0, 0, 0, 3.4),
(2664, 167, 8, '1965-11-28', 1, 'LAR', 'W 28-24', 0, 0, 0, 0, 0, 9, 148, 3, 0, 0, 0, 0, 3, 44.8),
(2665, 167, 9, '1961-10-29', 1, 'WAS', 'W 27-24', 0, 0, 0, 0, 0, 7, 125, 2, 0, 0, 0, 0, 3, 34.5),
(2666, 167, 10, '1964-09-13', 0, 'NYG', 'W 38-7', 0, 0, 0, 0, 0, 6, 139, 1, 0, 0, 0, 0, 3, 28.9),
(2667, 167, 11, '1965-11-07', 1, 'CLE', 'L 34-38', 0, 0, 0, 0, 0, 7, 151, 3, 0, 0, 0, 0, 3, 43.1),
(2668, 167, 12, '1962-12-02', 1, 'WAS', 'W 37-14', 0, 0, 0, 0, 0, 8, 135, 1, 0, 0, 0, 0, 3, 30.5),
(2669, 167, 13, '1960-10-09', 0, 'LAR', 'W 31-27', 0, 0, 0, 0, 0, 7, 132, 2, 0, 0, 0, 0, 3, 35.2),
(2670, 167, 14, '1965-10-17', 1, 'NYG', 'L 27-35', 0, 0, 0, 0, 0, 6, 133, 1, 0, 0, 0, 0, 3, 28.3),
(2671, 167, 15, '1959-11-15', 0, 'AZ', 'W 27-17', 0, 0, 0, 0, 0, 5, 137, 1, 0, 0, 0, 0, 3, 27.7),
(2672, 167, 16, '1964-12-06', 0, 'DAL', 'W 24-14', 0, 0, 0, 0, 0, 1, 31, 1, 0, 0, 0, 0, 0, 10.1),
(2673, 168, 1, '2011-11-27', 1, 'KC', 'W 13-9', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(2674, 168, 2, '2006-09-07', 0, 'MIA', 'W 28-17', 0, 0, 0, 0, 0, 3, 101, 1, 0, 0, 0, 0, 3, 22.1),
(2675, 168, 3, '2015-11-01', 0, 'CIN', 'L 10-16', 0, 0, 0, 0, 0, 10, 105, 0, 0, 0, 0, 0, 3, 23.5),
(2676, 168, 4, '2013-11-28', 1, 'BAL', 'L 20-22', 0, 0, 0, 0, 0, 8, 86, 0, 0, 0, 0, 0, 0, 16.6),
(2677, 168, 5, '2011-12-24', 0, 'LAR', 'W 27-0', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2678, 168, 6, '2012-12-16', 1, 'DAL', 'L 24-27', 0, 0, 0, 0, 0, 7, 92, 1, 0, 0, 0, 0, 0, 22.2),
(2679, 168, 7, '2014-10-26', 0, 'IND', 'W 51-34', 0, 0, 0, 0, 0, 7, 112, 1, 0, 0, 0, 0, 3, 27.2),
(2680, 168, 8, '2009-12-06', 0, 'OAK', 'L 24-27', 0, 0, 0, 0, 0, 1, 27, 0, 0, 0, 0, 0, 0, 3.7),
(2681, 168, 9, '2014-09-28', 0, 'TB', 'L 24-27', 0, 0, 0, 0, 0, 10, 85, 1, 0, 0, 0, 0, 0, 24.5),
(2682, 168, 10, '2006-10-15', 0, 'KC', 'W 45-7', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(2683, 168, 11, '2009-12-20', 0, 'GB', 'W 37-36', 0, 0, 0, 0, 0, 7, 118, 0, 0, 0, 0, 0, 3, 21.8),
(2684, 168, 12, '2011-10-30', 0, 'NE', 'W 25-17', 0, 0, 0, 0, 0, 7, 85, 0, 0, 0, 0, 0, 0, 15.5),
(2685, 168, 13, '2005-12-24', 1, 'CLE', 'W 41-0', 0, 0, 0, 0, 0, 1, 21, 0, 0, 0, 0, 0, 0, 3.1),
(2686, 168, 14, '2009-11-22', 1, 'KC', 'L 24-27', 0, 0, 0, 0, 0, 7, 95, 1, 0, 0, 0, 0, 0, 22.5),
(2687, 168, 15, '2012-12-02', 1, 'BAL', 'W 23-20', 0, 0, 0, 0, 0, 5, 97, 1, 0, 0, 0, 0, 0, 20.7),
(2688, 168, 16, '2011-09-18', 0, 'SEA', 'W 24-0', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(2689, 169, 1, '1967-10-22', 0, 'WAS', 'T 28-28', 0, 0, 0, 0, 0, 4, 62, 0, 0, 0, 0, 0, 0, 10.2),
(2690, 169, 2, '1969-11-02', 1, 'ATL', 'W 38-6', 0, 0, 0, 0, 0, 3, 63, 0, 0, 0, 0, 0, 0, 9.3),
(2691, 169, 3, '1966-09-25', 1, 'GB', 'L 13-24', 0, 0, 0, 0, 0, 7, 62, 0, 0, 0, 0, 0, 0, 13.2),
(2692, 169, 4, '1968-10-20', 0, 'ATL', 'W 27-14', 0, 0, 0, 0, 0, 7, 111, 1, 0, 0, 0, 0, 3, 27.1),
(2693, 169, 5, '1967-10-15', 1, 'BAL', 'T 24-24', 0, 0, 0, 0, 0, 6, 74, 0, 0, 0, 0, 0, 0, 13.4),
(2694, 169, 6, '1970-11-01', 1, 'NO', 'W 30-17', 0, 0, 0, 0, 0, 6, 124, 0, 0, 0, 0, 0, 3, 21.4),
(2695, 169, 7, '1968-09-22', 0, 'PIT', 'W 45-10', 0, 0, 0, 0, 0, 5, 66, 0, 0, 0, 0, 0, 0, 11.6),
(2696, 169, 8, '1966-10-23', 1, 'CHI', 'L 10-17', 0, 0, 0, 0, 0, 1, 21, 0, 0, 0, 0, 0, 0, 3.1),
(2697, 169, 9, '1970-12-14', 0, 'DET', 'L 23-28', 0, 0, 0, 0, 0, 7, 60, 1, 0, 0, 0, 0, 0, 19),
(2698, 169, 10, '1966-10-30', 0, 'BAL', 'L 3-17', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(2699, 169, 11, '1968-09-16', 1, 'LAR', 'W 24-13', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(2700, 169, 12, '1967-10-29', 1, 'CHI', 'W 28-17', 0, 0, 0, 0, 0, 1, 28, 0, 0, 0, 0, 0, 0, 3.8),
(2701, 169, 13, '1968-11-03', 0, 'DET', 'W 10-7', 0, 0, 0, 0, 0, 1, 21, 0, 0, 0, 0, 0, 0, 3.1),
(2702, 169, 14, '1965-12-05', 1, 'LAR', 'W 27-3', 0, 0, 0, 0, 0, 4, 86, 1, 0, 0, 0, 0, 0, 18.6),
(2703, 169, 15, '1969-10-26', 1, 'CHI', 'W 9-7', 0, 0, 0, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 2.9),
(2704, 169, 16, '1969-10-12', 1, 'SF', 'W 27-21', 0, 0, 0, 0, 0, 5, 71, 1, 0, 0, 0, 0, 0, 18.1),
(2705, 170, 1, '1992-10-04', 0, 'LAR', 'W 27-24', 0, 0, 0, 0, 0, 4, 89, 0, 0, 0, 0, 0, 0, 12.9),
(2706, 170, 2, '1988-11-21', 0, 'WAS', 'W 37-21', 0, 0, 0, 0, 0, 1, 18, 1, 0, 0, 0, 0, 0, 8.8),
(2707, 170, 3, '1987-12-20', 0, 'ATL', 'W 35-7', 0, 0, 0, 0, 0, 1, 22, 0, 0, 0, 0, 0, 0, 3.2),
(2708, 170, 4, '1989-10-22', 0, 'NE', 'W 37-20', 0, 0, 0, 0, 0, 1, 17, 0, 0, 0, 0, 0, 0, 2.7),
(2709, 170, 5, '1997-12-07', 0, 'MIN', 'W 28-17', 0, 0, 0, 0, 0, 1, 23, 0, 0, 0, 0, 0, 0, 3.3),
(2710, 170, 6, '1991-11-17', 0, 'AZ', 'W 14-10', 0, 0, 0, 0, 0, 5, 79, 0, 0, 0, 0, 0, 0, 12.9),
(2711, 170, 7, '1997-11-23', 0, 'SD', 'W 17-10', 0, 0, 0, 0, 0, 5, 83, 0, 0, 0, 0, 0, 0, 13.3),
(2712, 170, 8, '1992-10-18', 0, 'ATL', 'W 56-17', 0, 0, 0, 0, 0, 5, 86, 1, 0, 0, 0, 0, 0, 19.6),
(2713, 170, 9, '1992-12-28', 0, 'DET', 'W 24-6', 0, 0, 0, 0, 0, 6, 91, 1, 0, 0, 0, 0, 0, 21.1),
(2714, 170, 10, '1989-12-11', 1, 'LAR', 'W 30-27', 0, 0, 0, 0, 0, 7, 85, 0, 0, 0, 0, 0, 0, 15.5),
(2715, 170, 11, '1994-11-06', 1, 'WAS', 'W 37-22', 0, 0, 0, 0, 0, 1, 69, 1, 0, 0, 0, 0, 0, 13.9),
(2716, 170, 12, '1994-12-04', 0, 'ATL', 'W 50-14', 0, 0, 0, 0, 0, 4, 81, 0, 0, 0, 0, 0, 0, 12.1),
(2717, 170, 13, '1996-12-15', 1, 'PIT', 'W 25-15', 0, 0, 0, 0, 0, 6, 93, 0, 0, 0, 0, 0, 0, 15.3),
(2718, 170, 14, '1989-10-15', 1, 'DAL', 'W 31-14', 0, 0, 0, 0, 0, 1, 36, 1, 0, 0, 0, 0, 0, 10.6),
(2719, 170, 15, '1991-09-08', 0, 'SD', 'W 34-14', 0, 0, 0, 0, 0, 5, 86, 0, 0, 0, 0, 0, 0, 13.6),
(2720, 170, 16, '1990-09-23', 0, 'ATL', 'W 19-13', 0, 0, 0, 0, 0, 5, 125, 1, 0, 0, 0, 0, 3, 26.5),
(2721, 171, 1, '1978-11-05', 1, 'HOU', 'L 10-14', 0, 0, 0, 0, 0, 4, 124, 0, 0, 0, 0, 0, 3, 19.4),
(2722, 171, 2, '1981-10-11', 1, 'PIT', 'L 7-13', 0, 0, 0, 14, 0, 5, 120, 1, 0, 0, 0, 0, 3, 27.4),
(2723, 171, 3, '1978-12-17', 1, 'CIN', 'L 16-48', 0, 0, 0, 4, 0, 1, 19, 0, 0, 0, 0, 0, 0, 3.3),
(2724, 171, 4, '1990-12-23', 1, 'PIT', 'L 0-35', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2725, 171, 5, '1984-11-25', 0, 'HOU', 'W 27-10', 0, 0, 0, 0, 0, 10, 102, 1, 0, 0, 0, 0, 3, 29.2),
(2726, 171, 6, '1983-11-27', 0, 'BAL', 'W 41-23', 0, 0, 0, 0, 0, 8, 108, 1, 0, 0, 0, 0, 3, 27.8),
(2727, 171, 7, '1986-09-07', 1, 'CHI', 'L 31-41', 0, 0, 0, 0, 0, 1, 14, 0, 0, 0, 0, 0, 0, 2.4),
(2728, 171, 8, '1980-11-23', 0, 'CIN', 'W 31-7', 0, 0, 0, 0, 0, 1, 14, 0, 0, 0, 0, 0, 0, 2.4),
(2729, 171, 9, '1983-10-16', 1, 'PIT', 'L 17-44', 0, 0, 0, 0, 0, 9, 103, 0, 0, 0, 0, 0, 3, 22.3),
(2730, 171, 10, '1978-12-10', 0, 'NYJ', 'W 37-34', 0, 0, 0, 3, 0, 1, 29, 0, 0, 0, 0, 0, 0, 4.2),
(2731, 171, 11, '1983-01-02', 1, 'PIT', 'L 21-37', 0, 0, 0, 0, 0, 9, 123, 0, 0, 0, 0, 0, 3, 24.3),
(2732, 171, 12, '1984-10-14', 0, 'NYJ', 'L 20-24', 0, 0, 0, 0, 0, 14, 191, 0, 0, 0, 0, 0, 3, 36.1),
(2733, 171, 13, '1989-12-17', 0, 'MIN', 'W 23-17', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2734, 171, 14, '1984-09-23', 0, 'PIT', 'W 20-10', 0, 0, 0, 0, 0, 6, 99, 0, 0, 0, 0, 0, 0, 15.9),
(2735, 171, 15, '1982-12-05', 0, 'SD', 'L 13-30', 0, 0, 0, 0, 0, 10, 140, 1, 0, 0, 0, 0, 3, 33),
(2736, 171, 16, '1982-09-19', 0, 'PHI', 'L 21-24', 0, 0, 0, 0, 0, 8, 122, 2, 0, 0, 0, 0, 3, 35.2),
(2737, 172, 1, '2006-09-24', 0, 'JAX', 'W 21-14', 0, 0, 0, 0, 0, 1, 30, 1, 0, 0, 0, 0, 0, 10),
(2738, 172, 2, '2011-12-11', 1, 'BAL', 'L 10-24', 0, 0, 0, 0, 0, 1, 12, 0, 0, 0, 0, 0, 0, 2.2),
(2739, 172, 3, '2008-12-14', 0, 'DET', 'W 31-21', 0, 0, 0, 0, 0, 12, 142, 1, 0, 0, 0, 0, 3, 35.2),
(2740, 172, 4, '2007-12-09', 1, 'BAL', 'W 44-20', 0, 0, 0, 0, 0, 1, 15, 0, 0, 0, 0, 0, 0, 2.5),
(2741, 172, 5, '2009-11-08', 0, 'HOU', 'W 20-17', 0, 0, 0, 4, 0, 14, 119, 0, 0, 0, 0, 0, 3, 29.3),
(2742, 172, 6, '2009-11-01', 0, 'SF', 'W 18-14', 0, 0, 0, 0, 0, 8, 99, 0, 0, 0, 0, 0, 0, 17.9),
(2743, 172, 7, '2008-12-18', 1, 'JAX', 'W 31-24', 0, 0, 0, 0, 0, 8, 105, 1, 0, 0, 0, 0, 3, 27.5),
(2744, 172, 8, '2009-09-21', 1, 'MIA', 'W 27-23', 0, 0, 0, 0, 0, 7, 183, 1, 0, 0, 0, 0, 3, 34.3),
(2745, 172, 9, '2004-12-19', 0, 'BAL', 'W 20-10', 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 0, 2.3),
(2746, 172, 10, '2009-12-17', 1, 'JAX', 'W 35-31', 0, 0, 0, 0, 0, 7, 95, 2, 0, 0, 0, 0, 0, 28.5),
(2747, 172, 11, '2003-09-07', 1, 'CLE', 'W 9-6', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2748, 172, 12, '2004-11-14', 0, 'HOU', 'W 49-14', 0, 0, 0, 0, 0, 3, 102, 2, 0, 0, 0, 0, 3, 28.2),
(2749, 172, 13, '2003-11-16', 0, 'NYJ', 'W 38-31', 0, 0, 0, 0, 0, 5, 100, 0, 0, 0, 0, 0, 3, 18),
(2750, 172, 14, '2004-09-09', 1, 'NE', 'L 24-27', 0, 0, 0, 0, 0, 1, 64, 0, 0, 0, 0, 0, 0, 7.4),
(2751, 172, 15, '2008-10-27', 1, 'TEN', 'L 21-31', 0, 0, 0, 0, 0, 7, 94, 2, 0, 0, 0, 0, 0, 28.4),
(2752, 172, 16, '2005-11-20', 1, 'CIN', 'W 45-37', 0, 0, 0, 0, 0, 6, 125, 1, 0, 0, 0, 0, 3, 27.5),
(2753, 173, 1, '1990-09-30', 1, 'NYG', 'L 17-31', 0, 0, 0, 0, 0, 9, 85, 1, 0, 0, 0, 0, 0, 23.5),
(2754, 173, 2, '1993-09-12', 0, 'BUF', 'L 10-13', 0, 0, 0, 0, 0, 8, 106, 0, 0, 0, 0, 0, 3, 21.6),
(2755, 173, 3, '1995-09-04', 1, 'NYG', 'W 35-0', 0, 0, 0, 0, 0, 5, 91, 0, 0, 0, 0, 0, 0, 14.1),
(2756, 173, 4, '1994-12-04', 1, 'PHI', 'W 31-19', 0, 0, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 1.9),
(2757, 173, 5, '1990-12-30', 1, 'ATL', 'L 7-26', 0, 0, 0, 0, 0, 1, 27, 1, 0, 0, 0, 0, 0, 9.7),
(2758, 173, 6, '1991-11-10', 1, 'HOU', 'L 23-26', 0, 0, 0, 0, 0, 5, 75, 0, 0, 0, 0, 0, 0, 12.5),
(2759, 173, 7, '1991-10-27', 1, 'DET', 'L 10-34', 0, 0, 0, 0, 0, 10, 131, 0, 0, 0, 0, 0, 3, 26.1),
(2760, 173, 8, '1990-11-11', 0, 'SF', 'L 6-24', 0, 0, 0, 0, 0, 1, 17, 0, 0, 0, 0, 0, 0, 2.7),
(2761, 173, 9, '1992-12-06', 1, 'DEN', 'W 31-27', 0, 0, 0, 0, 0, 7, 87, 1, 0, 0, 0, 0, 0, 21.7),
(2762, 173, 10, '1991-10-06', 1, 'GB', 'W 20-17', 0, 0, 0, 0, 0, 11, 121, 1, 0, 0, 0, 0, 3, 32.1),
(2763, 173, 11, '1990-10-28', 0, 'PHI', 'L 20-21', 0, 0, 0, 0, 0, 7, 105, 1, 0, 0, 0, 0, 3, 26.5),
(2764, 173, 12, '1991-12-22', 0, 'ATL', 'W 31-27', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(2765, 173, 13, '1995-10-08', 0, 'GB', 'W 34-24', 0, 0, 0, 0, 0, 7, 83, 1, 0, 0, 0, 0, 0, 21.3),
(2766, 173, 14, '1991-10-13', 0, 'CIN', 'W 35-23', 0, 0, 0, 0, 0, 1, 26, 1, 0, 0, 0, 0, 0, 9.6),
(2767, 173, 15, '1990-11-22', 0, 'WAS', 'W 27-17', 0, 0, 0, 0, 0, 4, 88, 0, 0, 0, 0, 0, 0, 12.8),
(2768, 173, 16, '1995-12-10', 1, 'PHI', 'L 17-20', 0, 0, 0, 0, 0, 1, 15, 0, 0, 0, 0, 0, 0, 2.5),
(2769, 174, 1, '2009-09-27', 1, 'NE', 'L 10-26', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(2770, 174, 2, '2013-09-29', 0, 'NE', 'L 23-30', 0, 0, 0, 0, 0, 12, 149, 2, 0, 0, 0, 0, 3, 41.9),
(2771, 174, 3, '2012-01-01', 0, 'TB', 'W 45-24', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(2772, 174, 4, '2012-12-22', 1, 'DET', 'W 31-18', 0, 0, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 1.9),
(2773, 174, 5, '2009-11-29', 0, 'TB', 'W 20-17', 0, 0, 0, 0, 0, 9, 83, 0, 0, 0, 0, 0, 0, 17.3),
(2774, 174, 6, '2011-09-18', 0, 'PHI', 'W 35-31', 0, 0, 0, 0, 0, 7, 83, 2, 0, 0, 0, 0, 0, 27.3),
(2775, 174, 7, '2010-09-26', 1, 'NO', 'W 27-24', 0, 0, 0, 0, 0, 8, 110, 1, 0, 0, 0, 0, 3, 28),
(2776, 174, 8, '2013-10-07', 0, 'NYJ', 'L 28-30', 0, 0, 0, 0, 0, 10, 97, 0, 0, 0, 0, 0, 0, 19.7),
(2777, 174, 9, '2011-12-04', 1, 'HOU', 'L 10-17', 0, 0, 0, 0, 0, 7, 100, 0, 0, 0, 0, 0, 3, 20),
(2778, 174, 10, '2011-12-15', 0, 'JAX', 'W 41-14', 0, 0, 0, 0, 0, 1, 14, 0, 0, 0, 0, 0, 0, 2.4),
(2779, 174, 11, '2013-10-20', 0, 'TB', 'W 31-23', 0, 0, 0, 0, 0, 2, 30, 0, 0, 0, 0, 0, 0, 5),
(2780, 174, 12, '2009-11-02', 1, 'NO', 'L 27-35', 0, 0, 0, 0, 0, 6, 89, 0, 0, 0, 0, 0, 0, 14.9),
(2781, 174, 13, '2012-10-07', 1, 'WAS', 'W 24-17', 0, 0, 0, 0, 0, 13, 123, 1, 0, 0, 0, 0, 3, 34.3),
(2782, 174, 14, '2012-09-23', 1, 'SD', 'W 27-3', 0, 0, 0, 0, 0, 9, 91, 1, 0, 0, 0, 0, 0, 24.1),
(2783, 174, 15, '2012-11-11', 1, 'NO', 'L 27-31', 0, 0, 0, 0, 0, 11, 122, 2, 0, 0, 0, 0, 3, 38.2),
(2784, 174, 16, '2010-09-12', 1, 'PIT', 'L 9-15', 0, 0, 0, 0, 0, 2, 35, 0, 0, 0, 0, 0, 0, 5.5),
(2785, 175, 1, '1985-12-08', 0, 'PIT', 'W 54-44', 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 1.4),
(2786, 175, 2, '1985-12-01', 0, 'BUF', 'W 40-7', 0, 0, 0, 0, 0, 1, 17, 0, 0, 0, 0, 0, 0, 2.7),
(2787, 175, 3, '1981-11-22', 1, 'OAK', 'W 55-21', 0, 0, 0, 0, 0, 13, 144, 5, 0, 0, 0, 0, 3, 60.4),
(2788, 175, 4, '1981-12-06', 0, 'BUF', 'L 27-28', 0, 0, 0, 0, 0, 6, 126, 1, 0, 0, 0, 0, 3, 27.6),
(2789, 175, 5, '1984-09-16', 0, 'HOU', 'W 31-14', 0, 0, 0, 0, 0, 10, 146, 0, 0, 0, 0, 0, 3, 27.6),
(2790, 175, 6, '1980-09-14', 0, 'OAK', 'W 30-24', 0, 0, 0, 0, 0, 9, 132, 1, 0, 0, 0, 0, 3, 31.2),
(2791, 175, 7, '1980-12-22', 0, 'PIT', 'W 26-17', 0, 0, 0, 0, 0, 10, 171, 0, 0, 0, 0, 0, 3, 30.1),
(2792, 175, 8, '1980-12-07', 1, 'WAS', 'L 17-40', 0, 0, 0, 0, 0, 1, 42, 0, 0, 0, 0, 0, 0, 5.2),
(2793, 175, 9, '1984-10-07', 1, 'GB', 'W 34-28', 0, 0, 0, 0, 0, 15, 157, 0, 0, 0, 0, 0, 3, 33.7),
(2794, 175, 10, '1987-09-20', 0, 'LAR', 'W 28-24', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(2795, 175, 11, '1985-12-15', 0, 'PHI', 'W 20-14', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(2796, 175, 12, '1980-11-02', 1, 'CIN', 'W 31-14', 0, 0, 0, 0, 0, 9, 153, 1, 0, 0, 0, 0, 3, 33.3),
(2797, 175, 13, '1984-09-24', 1, 'OAK', 'L 30-33', 0, 0, 0, 0, 0, 9, 119, 1, 0, 0, 0, 0, 3, 29.9),
(2798, 175, 14, '1985-12-22', 1, 'KC', 'L 34-38', 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 0, 2.3),
(2799, 175, 15, '1982-12-26', 0, 'BAL', 'W 44-26', 0, 0, 0, 0, 0, 7, 120, 3, 0, 0, 0, 0, 3, 40),
(2800, 175, 16, '1983-12-11', 0, 'KC', 'W 41-38', 0, 0, 0, 0, 0, 14, 162, 3, 0, 0, 0, 0, 3, 51.2),
(2801, 176, 1, '1998-12-06', 0, 'KC', 'W 35-31', 0, 0, 0, 0, 0, 1, 24, 1, 0, 0, 0, 0, 0, 9.4),
(2802, 176, 2, '1997-11-24', 0, 'OAK', 'W 31-3', 0, 0, 0, 0, 0, 10, 142, 0, 0, 0, 0, 0, 3, 27.2),
(2803, 176, 3, '2002-10-20', 1, 'KC', 'W 37-34', 0, 0, 0, 0, 0, 12, 214, 2, 0, 0, 0, 0, 3, 48.4),
(2804, 176, 4, '1994-10-23', 1, 'SD', 'W 20-15', 0, 0, 0, 0, 0, 6, 121, 1, 0, 0, 0, 0, 3, 27.1),
(2805, 176, 5, '1996-10-20', 0, 'BAL', 'W 45-34', 0, 0, 0, 0, 0, 9, 161, 0, 0, 0, 0, 0, 3, 28.1),
(2806, 176, 6, '1997-12-21', 0, 'SD', 'W 38-3', 0, 0, 0, 0, 0, 8, 162, 1, 0, 0, 0, 0, 3, 33.2),
(2807, 176, 7, '1997-10-06', 0, 'NE', 'W 34-13', 0, 0, 0, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 2.9),
(2808, 176, 8, '1995-09-03', 0, 'BUF', 'W 22-7', 0, 0, 0, 0, 0, 10, 180, 0, 0, 0, 0, 0, 3, 31),
(2809, 176, 9, '2003-09-07', 1, 'CIN', 'W 30-10', 0, 0, 0, 0, 0, 1, 23, 0, 0, 0, 0, 0, 0, 3.3),
(2810, 176, 10, '1991-11-17', 1, 'KC', 'W 24-20', 0, 0, 0, 15, 0, 1, 24, 0, 0, 0, 0, 0, 0, 4.9),
(2811, 176, 11, '1996-10-06', 0, 'SD', 'W 28-17', 0, 0, 0, 0, 0, 13, 153, 3, 0, 0, 0, 0, 3, 49.3),
(2812, 176, 12, '1990-11-22', 1, 'DET', 'L 27-40', 0, 0, 0, 0, 0, 1, 33, 0, 0, 0, 0, 0, 0, 4.3),
(2813, 176, 13, '1995-11-19', 0, 'SD', 'W 30-27', 0, 0, 0, 0, 0, 8, 137, 1, 0, 0, 0, 0, 3, 30.7),
(2814, 176, 14, '1991-09-08', 1, 'OAK', 'L 13-16', 0, 0, 0, 0, 0, 1, 37, 0, 0, 0, 0, 0, 0, 4.7),
(2815, 176, 15, '1996-09-22', 1, 'KC', 'L 14-17', 0, 0, 0, 0, 0, 9, 131, 0, 0, 0, 0, 0, 3, 25.1),
(2816, 176, 16, '1997-11-09', 0, 'CAR', 'W 34-0', 0, 0, 0, 0, 0, 8, 174, 0, 0, 0, 0, 0, 3, 28.4),
(2817, 177, 1, '1970-11-15', 1, 'LAR', 'W 31-20', 0, 0, 0, 0, 0, 1, 29, 1, 0, 0, 0, 0, 0, 9.9),
(2818, 177, 2, '1971-11-28', 0, 'SF', 'L 21-24', 0, 0, 0, -7, 0, 5, 126, 2, 0, 0, 0, 0, 3, 31.9),
(2819, 177, 3, '1974-12-01', 0, 'SD', 'W 27-14', 0, 0, 0, 0, 0, 7, 137, 0, 0, 0, 0, 0, 3, 23.7),
(2820, 177, 4, '1974-10-07', 1, 'MIA', 'L 17-21', 0, 0, 0, 0, 0, 3, 117, 1, 0, 0, 0, 0, 3, 23.7),
(2821, 177, 5, '1972-09-24', 1, 'BAL', 'W 44-34', 0, 0, 0, 0, 0, 6, 204, 3, 0, 0, 0, 0, 3, 47.4),
(2822, 177, 6, '1977-11-20', 1, 'BAL', 'L 12-33', 0, 0, 0, 0, 0, 1, 58, 0, 0, 0, 0, 0, 0, 6.8),
(2823, 177, 7, '1973-11-18', 1, 'CIN', 'L 14-20', 0, 0, 0, 0, 0, 9, 131, 1, 0, 0, 0, 0, 3, 31.1),
(2824, 177, 8, '1972-10-22', 0, 'BAL', 'W 24-20', 0, 0, 0, 0, 0, 1, 49, 0, 0, 0, 0, 0, 0, 5.9),
(2825, 177, 9, '1975-10-26', 0, 'BAL', 'L 28-45', 0, 0, 0, 0, 0, 3, 115, 0, 0, 0, 0, 0, 3, 17.5),
(2826, 177, 10, '1975-10-05', 0, 'NE', 'W 36-7', 0, 0, 0, 0, 0, 6, 110, 2, 0, 0, 0, 0, 3, 32),
(2827, 177, 11, '1972-09-17', 1, 'BUF', 'W 41-24', 0, 0, 0, 0, 0, 1, 36, 0, 0, 0, 0, 0, 0, 4.6),
(2828, 177, 12, '1972-11-12', 0, 'BUF', 'W 41-3', 0, 0, 0, 0, 0, 1, 26, 1, 0, 0, 0, 0, 0, 9.6),
(2829, 177, 13, '1974-11-24', 0, 'MIA', 'W 17-14', 0, 0, 0, 0, 0, 6, 100, 2, 0, 0, 0, 0, 3, 31),
(2830, 177, 14, '1973-10-21', 1, 'PIT', 'L 14-26', 0, 0, 0, 0, 0, 1, 28, 1, 0, 0, 0, 0, 0, 9.8),
(2831, 177, 15, '1970-10-04', 1, 'BUF', 'L 31-34', 0, 0, 0, 0, 0, 4, 138, 1, 0, 0, 0, 0, 3, 26.8),
(2832, 177, 16, '1975-09-21', 1, 'BUF', 'L 14-42', 0, 0, 0, 0, 0, 6, 103, 1, 0, 0, 0, 0, 3, 25.3),
(2833, 178, 1, '1994-01-02', 0, 'MIA', 'W 33-27', 0, 0, 0, 0, 0, 6, 95, 2, 0, 0, 0, 0, 0, 27.5),
(2834, 178, 2, '1993-10-31', 1, 'IND', 'L 6-9', 0, 0, 0, 0, 0, 6, 108, 0, 0, 0, 0, 0, 3, 19.8),
(2835, 178, 3, '1991-10-20', 0, 'MIN', 'W 26-23', 0, 0, 0, 0, 0, 1, 17, 0, 0, 0, 0, 0, 0, 2.7),
(2836, 178, 4, '1993-09-05', 1, 'BUF', 'L 14-38', 0, 0, 0, 0, 0, 1, 54, 1, 0, 0, 0, 0, 0, 12.4),
(2837, 178, 5, '1996-11-03', 0, 'MIA', 'W 42-23', 0, 0, 0, 0, 0, 5, 135, 2, 0, 0, 0, 0, 3, 33.5),
(2838, 178, 6, '1999-12-26', 0, 'BUF', 'L 10-13', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(2839, 178, 7, '1998-11-01', 1, 'IND', 'W 21-16', 0, 0, 0, 0, 0, 10, 109, 1, 0, 0, 0, 0, 3, 29.9),
(2840, 178, 8, '1994-09-04', 1, 'MIA', 'L 35-39', 0, 0, 0, 0, 0, 8, 161, 2, 0, 0, 0, 0, 3, 39.1),
(2841, 178, 9, '1994-09-18', 1, 'CIN', 'W 31-28', 0, 0, 0, 0, 0, 8, 108, 0, 0, 0, 0, 0, 3, 21.8),
(2842, 178, 10, '1996-11-24', 0, 'IND', 'W 27-13', 0, 0, 0, 0, 0, 1, 12, 0, 0, 0, 0, 0, 0, 2.2),
(2843, 178, 11, '1994-09-11', 0, 'BUF', 'L 35-38', 0, 0, 0, 0, 0, 9, 124, 2, 0, 0, 0, 0, 3, 36.4),
(2844, 178, 12, '1994-10-09', 0, 'OAK', 'L 17-21', 0, 0, 0, 0, 0, 9, 123, 0, 0, 0, 0, 0, 3, 24.3),
(2845, 178, 13, '1995-09-03', 0, 'CLE', 'W 17-14', 0, 0, 0, 0, 0, 9, 106, 0, 0, 0, 0, 0, 3, 22.6),
(2846, 178, 14, '1994-11-27', 1, 'IND', 'W 12-10', 0, 0, 0, 0, 0, 12, 119, 0, 0, 0, 0, 0, 3, 26.9),
(2847, 178, 15, '1992-12-27', 0, 'MIA', 'L 13-16', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(2848, 178, 16, '1999-10-10', 1, 'KC', 'L 14-16', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2849, 179, 1, '1976-09-26', 1, 'HOU', 'W 14-13', 0, 0, 0, 0, 0, 1, 15, 0, 0, 0, 0, 0, 0, 2.5),
(2850, 179, 2, '1976-10-03', 1, 'NE', 'L 17-48', 0, 0, 0, 0, 0, 12, 136, 0, 0, 0, 0, 0, 3, 28.6),
(2851, 179, 3, '1979-10-21', 1, 'NYJ', 'L 19-28', 0, 0, 0, 0, 0, 6, 93, 0, 0, 0, 0, 0, 0, 15.3),
(2852, 179, 4, '1979-11-18', 0, 'KC', 'L 21-24', 0, 0, 0, 0, 0, 7, 91, 0, 0, 0, 0, 0, 0, 16.1),
(2853, 179, 5, '1976-11-07', 1, 'CHI', 'W 28-27', 0, 0, 0, 0, 0, 1, 17, 1, 0, 0, 0, 0, 0, 8.7),
(2854, 179, 6, '1977-10-03', 1, 'KC', 'W 37-28', 0, 0, 0, 0, 0, 7, 101, 0, 0, 0, 0, 0, 3, 20.1),
(2855, 179, 7, '1977-10-23', 1, 'NYJ', 'W 28-27', 0, 0, 0, 0, 0, 7, 92, 1, 0, 0, 0, 0, 0, 22.2),
(2856, 179, 8, '1978-09-10', 1, 'SD', 'W 21-20', 0, 0, 0, 0, 0, 5, 100, 1, 0, 0, 0, 0, 3, 24),
(2857, 179, 9, '1979-09-30', 0, 'DEN', 'W 27-3', 0, 0, 0, 0, 0, 4, 92, 1, 0, 0, 0, 0, 0, 19.2),
(2858, 179, 10, '1977-11-20', 1, 'SD', 'L 7-12', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(2859, 179, 11, '1976-11-21', 1, 'PHI', 'W 26-7', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(2860, 179, 12, '1976-10-24', 0, 'GB', 'W 18-14', 0, 0, 0, 0, 0, 1, 27, 1, 0, 0, 0, 0, 0, 9.7),
(2861, 179, 13, '1975-09-22', 1, 'MIA', 'W 31-21', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(2862, 179, 14, '1976-10-10', 1, 'SD', 'W 27-17', 0, 0, 0, 0, 0, 7, 104, 1, 0, 0, 0, 0, 3, 26.4),
(2863, 179, 15, '1978-11-05', 1, 'KC', 'W 20-10', 0, 0, 0, 0, 0, 7, 112, 0, 0, 0, 0, 0, 3, 21.2),
(2864, 179, 16, '1976-09-12', 0, 'PIT', 'W 31-28', 0, 0, 0, 0, 0, 7, 124, 2, 0, 0, 0, 0, 3, 34.4),
(2865, 180, 1, '2008-11-27', 1, 'DET', 'W 47-10', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(2866, 180, 2, '2008-09-07', 0, 'JAX', 'W 17-10', 0, 0, 0, 0, 0, 6, 105, 0, 0, 0, 0, 0, 3, 19.5),
(2867, 180, 3, '2007-12-23', 0, 'NYJ', 'W 10-6', 0, 0, 0, 0, 0, 1, 12, 0, 0, 0, 0, 0, 0, 2.2),
(2868, 180, 4, '2009-11-29', 0, 'AZ', 'W 20-17', 0, 0, 0, 0, 0, 5, 68, 0, 0, 0, 0, 0, 0, 11.8),
(2869, 180, 5, '2007-12-02', 0, 'HOU', 'W 28-20', 0, 0, 0, 0, 0, 4, 57, 0, 0, 0, 0, 0, 0, 9.7),
(2870, 180, 6, '2006-11-05', 1, 'JAX', 'L 7-37', 0, 0, 0, 0, 0, 5, 70, 0, 0, 0, 0, 0, 0, 12),
(2871, 180, 7, '2010-11-28', 1, 'HOU', 'L 0-20', 0, 0, 0, 0, 0, 1, 10, 0, 0, 0, 0, 0, 0, 2),
(2872, 180, 8, '2006-09-10', 0, 'NYJ', 'L 16-23', 0, 0, 0, 0, 0, 1, 12, 0, 0, 0, 0, 0, 0, 2.2),
(2873, 180, 9, '2008-10-05', 1, 'BAL', 'W 13-10', 0, 0, 0, 0, 0, 7, 72, 0, 0, 0, 0, 0, 0, 14.2),
(2874, 180, 10, '2006-09-17', 1, 'SD', 'L 7-40', 0, 0, 0, 0, 0, 3, 53, 0, 0, 0, 0, 0, 0, 8.3),
(2875, 180, 11, '2005-11-06', 1, 'CLE', 'L 14-20', 0, 0, 0, 0, 0, 5, 59, 0, 0, 0, 0, 0, 0, 10.9),
(2876, 180, 12, '2005-12-04', 1, 'IND', 'L 3-35', 0, 0, 0, 0, 0, 6, 53, 0, 0, 0, 0, 0, 0, 11.3),
(2877, 180, 13, '2008-11-09', 1, 'CHI', 'W 21-14', 0, 0, 0, 0, 0, 10, 78, 1, 0, 0, 0, 0, 0, 23.8),
(2878, 180, 14, '2005-10-16', 0, 'CIN', 'L 23-31', 0, 0, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 1.9),
(2879, 180, 15, '2007-09-16', 0, 'IND', 'L 20-22', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(2880, 180, 16, '2009-12-06', 1, 'IND', 'L 17-27', 0, 0, 0, 0, 0, 5, 56, 1, 0, 0, 0, 0, 0, 16.6),
(2881, 181, 1, '2012-12-23', 1, 'MIA', 'L 10-24', 0, 0, 0, 0, 0, 1, 25, 0, 0, 0, 0, 0, 0, 3.5),
(2882, 181, 2, '2012-12-09', 0, 'LAR', 'L 12-15', 0, 0, 0, 0, 0, 5, 71, 0, 0, 0, 0, 0, 0, 12.1),
(2883, 181, 3, '2011-11-20', 1, 'MIA', 'L 8-35', 0, 0, 0, 0, 0, 5, 71, 0, 0, 0, 0, 0, 0, 12.1),
(2884, 181, 4, '2011-09-11', 1, 'KC', 'W 41-7', 0, 0, 0, 0, 0, 5, 63, 2, 0, 0, 0, 0, 0, 23.3),
(2885, 181, 5, '2014-10-26', 1, 'NYJ', 'W 43-23', 0, 0, 0, 0, 0, 1, 12, 1, 0, 0, 0, 0, 0, 8.2),
(2886, 181, 6, '2013-09-22', 1, 'NYJ', 'L 20-27', 0, 0, 0, 0, 0, 5, 79, 1, 0, 0, 0, 0, 0, 18.9),
(2887, 181, 7, '2014-09-21', 0, 'SD', 'L 10-22', 0, 0, 0, 0, 0, 5, 74, 0, 0, 0, 0, 0, 0, 12.4),
(2888, 181, 8, '2013-10-27', 1, 'NO', 'L 17-35', 0, 0, 0, 0, 0, 7, 72, 0, 0, 0, 0, 0, 0, 14.2),
(2889, 181, 9, '2014-12-28', 1, 'NE', 'W 17-9', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(2890, 181, 10, '2011-10-09', 0, 'PHI', 'W 31-24', 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 1.4),
(2891, 181, 11, '2010-12-19', 1, 'MIA', 'W 17-14', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(2892, 181, 12, '2014-12-07', 1, 'DEN', 'L 17-24', 0, 0, 0, 0, 0, 8, 81, 0, 0, 0, 0, 0, 0, 16.1),
(2893, 181, 13, '2014-10-12', 0, 'NE', 'L 22-37', 0, 0, 0, 0, 0, 6, 105, 0, 0, 0, 0, 0, 3, 19.5),
(2894, 181, 14, '2012-12-02', 0, 'JAX', 'W 34-18', 0, 0, 0, 0, 0, 1, 11, 1, 0, 0, 0, 0, 0, 8.1),
(2895, 181, 15, '2013-12-01', 0, 'ATL', 'L 31-34', 0, 0, 0, 0, 0, 4, 63, 0, 0, 0, 0, 0, 0, 10.3),
(2896, 181, 16, '2012-11-11', 1, 'NE', 'L 31-37', 0, 0, 0, 0, 0, 5, 65, 1, 0, 0, 0, 0, 0, 17.5),
(2897, 182, 1, '1986-12-21', 0, 'NO', 'W 33-17', 0, 0, 0, 0, 0, 7, 85, 2, 0, 0, 0, 0, 0, 27.5),
(2898, 182, 2, '1986-11-30', 0, 'TB', 'W 45-13', 0, 0, 0, 0, 0, 7, 97, 1, 0, 0, 0, 0, 0, 22.7),
(2899, 182, 3, '1983-10-02', 0, 'DAL', 'L 24-37', 0, 0, 0, 0, 0, 1, 28, 0, 0, 0, 0, 0, 0, 3.8),
(2900, 182, 4, '1990-09-09', 1, 'KC', 'L 21-24', 0, 0, 0, 0, 0, 4, 90, 1, 0, 0, 0, 0, 0, 19),
(2901, 182, 5, '1991-09-01', 1, 'CHI', 'L 6-10', 0, 0, 0, 0, 0, 8, 89, 0, 0, 0, 0, 0, 0, 16.9),
(2902, 182, 6, '1988-11-06', 0, 'DET', 'W 44-17', 0, 0, 0, 0, 0, 8, 88, 1, 0, 0, 0, 0, 0, 22.8),
(2903, 182, 7, '1990-10-07', 0, 'DET', 'L 27-34', 0, 0, 0, 0, 0, 7, 95, 0, 0, 0, 0, 0, 0, 16.5),
(2904, 182, 8, '1986-11-02', 1, 'WAS', 'L 38-44', 0, 0, 0, 0, 0, 6, 179, 1, 0, 0, 0, 0, 3, 32.9),
(2905, 182, 9, '1987-09-20', 1, 'LAR', 'W 21-16', 0, 0, 0, 0, 0, 1, 38, 0, 0, 0, 0, 0, 0, 4.8),
(2906, 182, 10, '1985-10-20', 0, 'SD', 'W 21-17', 0, 0, 0, 0, 0, 8, 91, 0, 0, 0, 0, 0, 0, 17.1),
(2907, 182, 11, '1989-12-17', 1, 'CLE', 'L 17-23', 0, 0, 0, 0, 0, 6, 87, 1, 0, 0, 0, 0, 0, 20.7),
(2908, 182, 12, '1992-11-02', 1, 'CHI', 'W 38-10', 0, 0, 0, 0, 0, 1, 60, 1, 0, 0, 0, 0, 0, 13),
(2909, 182, 13, '1986-09-28', 0, 'GB', 'W 42-7', 0, 0, 0, 0, 0, 6, 112, 2, 0, 0, 0, 0, 3, 32.2),
(2910, 182, 14, '1989-12-25', 0, 'CIN', 'W 29-21', 0, 0, 0, 0, 0, 1, 32, 0, 0, 0, 0, 0, 0, 4.2),
(2911, 182, 15, '1990-09-23', 1, 'CHI', 'L 16-19', 0, 0, 0, 0, 0, 1, 38, 0, 0, 0, 0, 0, 0, 4.8),
(2912, 182, 16, '1983-01-03', 0, 'DAL', 'W 31-27', 0, 0, 0, 0, 0, 1, 29, 0, 0, 0, 0, 0, 0, 3.9),
(2913, 183, 1, '2006-11-26', 0, 'NO', 'L 13-31', 0, 0, 0, 0, 0, 1, 43, 0, 0, 0, 0, 0, 0, 5.3),
(2914, 183, 2, '2006-09-17', 0, 'TB', 'W 14-3', 0, 0, 0, 0, 0, 1, 22, 0, 0, 0, 0, 0, 0, 3.2),
(2915, 183, 3, '2006-10-22', 0, 'PIT', 'W 41-38', 0, 0, 0, 0, 0, 6, 117, 3, 0, 0, 0, 0, 3, 38.7),
(2916, 183, 4, '2005-10-09', 0, 'NE', 'L 28-31', 0, 0, 0, 0, 0, 6, 99, 1, 0, 0, 0, 0, 0, 21.9),
(2917, 183, 5, '2002-09-22', 0, 'CIN', 'W 30-3', 0, 0, 0, 0, 0, 1, 15, 0, 0, 0, 0, 0, 0, 2.5),
(2918, 183, 6, '2004-10-10', 0, 'DET', 'L 10-17', 0, 0, 0, 0, 0, 1, 24, 0, 0, 0, 0, 0, 0, 3.4),
(2919, 183, 7, '2005-11-24', 1, 'DET', 'W 27-7', 0, 0, 0, 0, 0, 7, 104, 2, 0, 0, 0, 0, 3, 32.4),
(2920, 183, 8, '2004-11-14', 0, 'TB', 'W 24-14', 0, 0, 0, 0, 0, 4, 118, 1, 0, 0, 0, 0, 3, 24.8),
(2921, 183, 9, '2001-12-16', 1, 'IND', 'L 27-41', 0, 0, 0, 0, 0, 1, 15, 0, 0, 0, 0, 0, 0, 2.5),
(2922, 183, 10, '2004-12-12', 0, 'OAK', 'W 35-10', 0, 0, 0, 0, 0, 1, 22, 0, 0, 0, 0, 0, 0, 3.2),
(2923, 183, 11, '2003-09-07', 1, 'DAL', 'W 27-13', 0, 0, 0, 0, 0, 5, 94, 1, 0, 0, 0, 0, 0, 20.4),
(2924, 183, 12, '2004-10-31', 1, 'DEN', 'W 41-28', 0, 0, 0, 0, 0, 7, 86, 0, 0, 0, 0, 0, 0, 15.6),
(2925, 183, 13, '2004-10-03', 1, 'CAR', 'W 27-10', 0, 0, 0, 0, 0, 5, 85, 0, 0, 0, 0, 0, 0, 13.5),
(2926, 183, 14, '2005-12-12', 0, 'NO', 'W 36-17', 0, 0, 0, 0, 0, 3, 94, 0, 0, 0, 0, 0, 0, 12.4),
(2927, 183, 15, '2004-09-12', 1, 'SF', 'W 21-19', 0, 0, 0, 0, 0, 6, 82, 1, 0, 0, 0, 0, 0, 20.2),
(2928, 183, 16, '2004-11-28', 0, 'NO', 'W 24-21', 0, 0, 0, 0, 0, 4, 103, 1, 0, 0, 0, 0, 3, 23.3),
(2929, 184, 1, '1992-11-01', 1, 'NYJ', 'L 14-26', 0, 0, 0, 0, 0, 4, 74, 1, 0, 0, 0, 0, 0, 17.4),
(2930, 184, 2, '1993-11-21', 0, 'NE', 'W 17-13', 0, 0, 0, 0, 0, 5, 99, 0, 0, 0, 0, 0, 0, 14.9),
(2931, 184, 3, '1993-12-27', 1, 'SD', 'L 20-45', 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 1.8),
(2932, 184, 4, '1993-09-05', 1, 'IND', 'W 24-20', 0, 0, 0, 0, 0, 3, 73, 2, 0, 0, 0, 0, 0, 22.3),
(2933, 184, 5, '1994-12-04', 0, 'BUF', 'L 31-42', 0, 0, 0, 0, 0, 7, 64, 1, 0, 0, 0, 0, 0, 19.4),
(2934, 184, 6, '1993-09-12', 0, 'NYJ', 'L 14-24', 0, 0, 0, 0, 0, 1, 57, 1, 0, 0, 0, 0, 0, 12.7),
(2935, 184, 7, '1992-10-04', 1, 'BUF', 'W 37-10', 0, 0, 0, 0, 0, 4, 64, 1, 0, 0, 0, 0, 0, 16.4),
(2936, 184, 8, '1993-11-07', 1, 'NYJ', 'L 10-27', 0, 0, 0, 0, 0, 2, 48, 0, 0, 0, 0, 0, 0, 6.8),
(2937, 184, 9, '1994-11-06', 0, 'IND', 'W 22-21', 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 0, 1.6),
(2938, 184, 10, '1992-11-08', 1, 'IND', 'W 28-0', 0, 0, 0, 0, 0, 6, 69, 1, 0, 0, 0, 0, 0, 18.9),
(2939, 184, 11, '1992-12-06', 1, 'SF', 'L 3-27', 0, 0, 0, 0, 0, 7, 63, 0, 0, 0, 0, 0, 0, 13.3),
(2940, 184, 12, '1992-12-14', 0, 'OAK', 'W 20-7', 0, 0, 0, 0, 0, 2, 38, 0, 0, 0, 0, 0, 0, 5.8),
(2941, 184, 13, '1992-10-18', 0, 'NE', 'W 38-17', 0, 0, 0, 0, 0, 4, 70, 2, 0, 0, 0, 0, 0, 23),
(2942, 184, 14, '1994-12-18', 1, 'IND', 'L 6-10', 0, 0, 0, 0, 0, 4, 64, 0, 0, 0, 0, 0, 0, 10.4),
(2943, 184, 15, '1994-09-18', 0, 'NYJ', 'W 28-14', 0, 0, 0, 0, 0, 6, 100, 0, 0, 0, 0, 0, 3, 19),
(2944, 184, 16, '1993-11-14', 1, 'PHI', 'W 19-14', 0, 0, 0, 0, 0, 1, 7, 0, 0, 0, 0, 0, 0, 1.7),
(2945, 185, 1, '1978-10-08', 0, 'CLE', 'L 16-24', 0, 0, 0, 0, 0, 7, 86, 0, 0, 0, 0, 0, 0, 15.6),
(2946, 185, 2, '1980-12-07', 1, 'SF', 'L 35-38', 0, 0, 0, 0, 0, 8, 144, 1, 0, 0, 0, 0, 3, 31.4),
(2947, 185, 3, '1978-09-17', 0, 'PHI', 'L 17-24', 0, 0, 0, 0, 0, 1, 17, 0, 0, 0, 0, 0, 0, 2.7),
(2948, 185, 4, '1976-10-24', 0, 'LAR', 'L 10-16', 0, 0, 0, 0, 0, 6, 85, 0, 0, 0, 0, 0, 0, 14.5),
(2949, 185, 5, '1978-11-05', 1, 'PIT', 'L 14-20', 0, 0, 0, 0, 0, 6, 94, 0, 0, 0, 0, 0, 0, 15.4),
(2950, 185, 6, '1977-11-13', 0, 'SF', 'L 7-10', 0, 0, 0, 0, 0, 1, 31, 0, 0, 0, 0, 0, 0, 4.1),
(2951, 185, 7, '1977-10-09', 0, 'SD', 'L 0-14', 0, 0, 0, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 2.9),
(2952, 185, 8, '1975-10-26', 1, 'LAR', 'L 14-38', 0, 0, 0, 0, 0, 1, 21, 0, 0, 0, 0, 0, 0, 3.1),
(2953, 185, 9, '1975-10-19', 1, 'SF', 'L 21-35', 0, 0, 0, 0, 0, 1, 31, 0, 0, 0, 0, 0, 0, 4.1),
(2954, 185, 10, '1980-12-21', 0, 'NE', 'L 27-38', 0, 0, 0, 0, 0, 5, 94, 0, 0, 0, 0, 0, 0, 14.4),
(2955, 185, 11, '1976-12-12', 0, 'SF', 'L 7-27', 0, 0, 0, 0, 0, 3, 87, 1, 0, 0, 0, 0, 0, 17.7),
(2956, 185, 12, '1978-11-26', 1, 'ATL', 'L 17-20', 0, 0, 0, 0, 0, 3, 100, 0, 0, 0, 0, 0, 3, 16),
(2957, 185, 13, '1979-11-18', 1, 'SEA', 'L 24-38', 0, 0, 0, 0, 0, 6, 121, 0, 0, 0, 0, 0, 3, 21.1),
(2958, 185, 14, '1979-11-25', 1, 'ATL', 'W 37-6', 0, 0, 0, 0, 0, 3, 117, 1, 0, 0, 0, 0, 3, 23.7),
(2959, 185, 15, '1979-09-09', 1, 'GB', 'L 19-28', 0, 0, 0, 0, 0, 7, 112, 1, 0, 0, 0, 0, 3, 27.2),
(2960, 185, 16, '1979-12-03', 0, 'OAK', 'L 35-42', 0, 0, 0, 0, 0, 1, 28, 1, 0, 0, 0, 0, 0, 9.8),
(2961, 186, 1, '1968-09-15', 0, 'DEN', 'W 24-10', 0, 0, 0, 0, 0, 4, 114, 1, 0, 0, 0, 0, 3, 24.4),
(2962, 186, 2, '1968-11-17', 1, 'MIA', 'W 38-21', 0, 0, 0, 0, 0, 1, 80, 1, 0, 0, 0, 0, 0, 15),
(2963, 186, 3, '1969-12-07', 1, 'OAK', 'L 17-37', 0, 0, 0, 0, 0, 1, 47, 0, 0, 0, 0, 0, 0, 5.7),
(2964, 186, 4, '1970-11-29', 0, 'NO', 'W 26-6', 0, 0, 0, 0, 0, 1, 30, 0, 0, 0, 0, 0, 0, 4),
(2965, 186, 5, '1973-10-21', 0, 'KC', 'W 14-6', 0, 0, 0, 0, 0, 1, 30, 1, 0, 0, 0, 0, 0, 10),
(2966, 186, 6, '1968-11-10', 0, 'KC', 'L 9-16', 0, 0, 0, 0, 0, 4, 99, 0, 0, 0, 0, 0, 0, 13.9),
(2967, 186, 7, '1970-11-08', 1, 'BUF', 'W 43-14', 0, 0, 0, 0, 0, 4, 96, 0, 0, 0, 0, 0, 0, 13.6),
(2968, 186, 8, '1972-10-29', 0, 'HOU', 'W 30-7', 0, 0, 0, 0, 0, 8, 90, 0, 0, 0, 0, 0, 0, 17),
(2969, 186, 9, '1969-11-02', 0, 'OAK', 'W 31-17', 0, 0, 0, 0, 0, 4, 85, 0, 0, 0, 0, 0, 0, 12.5),
(2970, 186, 10, '1969-11-09', 1, 'HOU', 'T 31-31', 0, 0, 0, 0, 0, 5, 159, 3, 0, 0, 0, 0, 3, 41.9),
(2971, 186, 11, '1968-12-08', 1, 'NYJ', 'L 14-27', 0, 0, 0, 0, 0, 1, 42, 0, 0, 0, 0, 0, 0, 5.2),
(2972, 186, 12, '1970-10-04', 0, 'HOU', 'L 13-20', 0, 0, 0, 0, 0, 6, 90, 1, 0, 0, 0, 0, 0, 21),
(2973, 186, 13, '1976-12-12', 1, 'NYJ', 'W 42-3', 0, 0, 0, 0, 0, 1, 39, 1, 0, 0, 0, 0, 0, 10.9),
(2974, 186, 14, '1969-09-28', 0, 'KC', 'W 24-19', 0, 0, 0, 0, 0, 4, 100, 1, 0, 0, 0, 0, 3, 23),
(2975, 186, 15, '1971-11-21', 0, 'HOU', 'W 28-13', 0, 0, 0, 0, 0, 5, 87, 1, 0, 0, 0, 0, 0, 19.7),
(2976, 186, 16, '1969-09-21', 0, 'SD', 'W 34-20', 0, 0, 0, 0, 0, 3, 118, 1, 0, 0, 0, 0, 3, 23.8),
(2977, 187, 1, '2005-09-18', 0, 'ATL', 'W 21-18', 0, 0, 0, 0, 0, 3, 49, 1, 0, 0, 0, 0, 0, 13.9),
(2978, 187, 2, '2003-12-21', 0, 'AZ', 'W 28-10', 0, 0, 0, 0, 0, 1, 26, 0, 0, 0, 0, 0, 0, 3.6),
(2979, 187, 3, '2005-11-13', 0, 'LAR', 'W 31-16', 0, 0, 0, 0, 0, 4, 49, 0, 0, 0, 0, 0, 0, 8.9),
(2980, 187, 4, '2005-10-23', 0, 'DAL', 'W 13-10', 0, 0, 0, 0, 0, 5, 60, 0, 0, 0, 0, 0, 0, 11),
(2981, 187, 5, '2005-11-20', 1, 'SF', 'W 27-25', 0, 0, 0, 0, 0, 1, 27, 0, 0, 0, 0, 0, 0, 3.7),
(2982, 187, 6, '2002-12-22', 0, 'LAR', 'W 30-10', 0, 0, 0, 0, 0, 4, 70, 0, 0, 0, 0, 0, 0, 11),
(2983, 187, 7, '2004-12-06', 0, 'DAL', 'L 39-43', 0, 0, 0, 0, 0, 2, 58, 0, 0, 0, 0, 0, 0, 7.8),
(2984, 187, 8, '2005-12-18', 1, 'TEN', 'W 28-24', 0, 0, 0, 0, 0, 4, 53, 1, 0, 0, 0, 0, 0, 15.3),
(2985, 187, 9, '2006-12-14', 0, 'SF', 'L 14-24', 0, 0, 0, 0, 0, 5, 64, 1, 0, 0, 0, 0, 0, 17.4),
(2986, 187, 10, '2006-12-31', 1, 'TB', 'W 23-7', 0, 0, 0, 0, 0, 4, 54, 0, 0, 0, 0, 0, 0, 9.4),
(2987, 187, 11, '2002-11-17', 0, 'DEN', 'L 9-31', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2988, 187, 12, '2004-10-17', 1, 'NE', 'L 20-30', 0, 0, 0, 0, 0, 4, 50, 0, 0, 0, 0, 0, 0, 9),
(2989, 187, 13, '2004-10-24', 1, 'AZ', 'L 17-25', 0, 0, 0, 0, 0, 1, 17, 0, 0, 0, 0, 0, 0, 2.7),
(2990, 187, 14, '2005-10-09', 1, 'LAR', 'W 37-31', 0, 0, 0, 0, 0, 3, 65, 1, 0, 0, 0, 0, 0, 15.5),
(2991, 187, 15, '2003-11-02', 0, 'PIT', 'W 23-16', 0, 0, 0, 0, 0, 1, 17, 0, 0, 0, 0, 0, 0, 2.7),
(2992, 187, 16, '2006-11-19', 1, 'SF', 'L 14-20', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(2993, 188, 1, '2009-10-11', 1, 'PHI', 'L 14-33', 0, 0, 0, 0, 0, 9, 102, 2, 0, 0, 0, 0, 3, 34.2),
(2994, 188, 2, '2010-10-10', 1, 'CIN', 'W 24-21', 0, 0, 0, 0, 0, 6, 75, 0, 0, 0, 0, 0, 0, 13.5),
(2995, 188, 3, '2010-10-31', 1, 'AZ', 'W 38-35', 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 1.5),
(2996, 188, 4, '2011-09-25', 0, 'ATL', 'W 16-13', 0, 0, 0, 0, 0, 2, 20, 0, 0, 0, 0, 0, 0, 4),
(2997, 188, 5, '2009-10-04', 1, 'WAS', 'L 13-16', 0, 0, 0, 0, 0, 2, 21, 0, 0, 0, 0, 0, 0, 4.1),
(2998, 188, 6, '2009-12-20', 1, 'SEA', 'W 24-7', 0, 0, 0, 0, 0, 6, 93, 0, 0, 0, 0, 0, 0, 15.3),
(2999, 188, 7, '2009-10-25', 0, 'NE', 'L 7-35', 0, 0, 0, 0, 0, 2, 9, 0, 0, 0, 0, 0, 0, 2.9),
(3000, 188, 8, '2010-12-12', 1, 'WAS', 'W 17-16', 0, 0, 0, 0, 0, 2, 52, 1, 0, 0, 0, 0, 0, 13.2),
(3001, 188, 9, '2009-09-20', 1, 'BUF', 'L 20-33', 0, 0, 0, 0, 0, 7, 90, 1, 0, 0, 0, 0, 0, 22),
(3002, 188, 10, '2009-12-27', 1, 'NO', 'W 20-17', 0, 0, 0, 0, 0, 4, 76, 0, 0, 0, 0, 0, 0, 11.6),
(3003, 188, 11, '2009-11-15', 1, 'MIA', 'L 23-25', 0, 0, 0, 0, 0, 7, 102, 0, 0, 0, 0, 0, 3, 20.2),
(3004, 188, 12, '2011-11-20', 1, 'GB', 'L 26-35', 0, 0, 0, 0, 0, 9, 132, 0, 0, 0, 0, 0, 3, 25.2),
(3005, 188, 13, '2010-09-19', 1, 'CAR', 'W 20-7', 0, 0, 0, 0, 0, 4, 83, 0, 0, 0, 0, 0, 0, 12.3),
(3006, 188, 14, '2011-12-11', 1, 'JAX', 'L 14-41', 0, 0, 0, 0, 0, 2, 38, 0, 0, 0, 0, 0, 0, 5.8),
(3007, 188, 15, '2009-11-29', 1, 'ATL', 'L 17-20', 0, 0, 0, 0, 0, 7, 81, 0, 0, 0, 0, 0, 0, 15.1),
(3008, 188, 16, '2010-12-26', 0, 'SEA', 'W 38-15', 0, 0, 0, 0, 0, 7, 98, 2, 0, 0, 0, 0, 0, 28.8),
(3009, 189, 1, '2000-09-10', 1, 'SF', 'W 38-22', 0, 0, 0, 0, 0, 5, 99, 1, 0, 0, 0, 0, 0, 20.9),
(3010, 189, 2, '2000-01-02', 0, 'NO', 'W 45-13', 0, 0, 0, 0, 0, 4, 88, 2, 0, 0, 0, 0, 0, 24.8),
(3011, 189, 3, '1997-09-07', 1, 'ATL', 'W 9-6', 0, 0, 0, 0, 0, 7, 147, 0, 0, 0, 0, 0, 3, 24.7),
(3012, 189, 4, '2002-12-01', 1, 'CLE', 'W 13-6', 0, 0, 0, 0, 0, 1, 24, 1, 0, 0, 0, 0, 0, 9.4),
(3013, 189, 5, '2001-10-07', 1, 'SF', 'L 14-24', 0, 0, 0, 0, 0, 10, 91, 1, 0, 0, 0, 0, 0, 25.1),
(3014, 189, 6, '2000-10-08', 0, 'SEA', 'W 26-3', 0, 0, 0, 0, 0, 7, 102, 0, 0, 0, 0, 0, 3, 20.2),
(3015, 189, 7, '1998-09-13', 1, 'NO', 'L 14-19', 0, 0, 0, 0, 0, 1, 12, 0, 0, 0, 0, 0, 0, 2.2),
(3016, 189, 8, '1997-11-23', 1, 'LAR', 'W 16-10', 0, 0, 0, 0, 0, 8, 106, 0, 0, 0, 0, 0, 3, 21.6),
(3017, 189, 9, '2002-10-20', 1, 'ATL', 'L 0-30', 0, 0, 0, 0, 0, 1, 24, 0, 0, 0, 0, 0, 0, 3.4),
(3018, 189, 10, '1999-12-12', 1, 'GB', 'W 33-31', 0, 0, 0, 0, 0, 6, 96, 0, 0, 0, 0, 0, 0, 15.6),
(3019, 189, 11, '1997-09-21', 0, 'KC', 'L 14-35', 0, 0, 0, 0, 0, 1, 19, 1, 0, 0, 0, 0, 0, 8.9),
(3020, 189, 12, '1996-09-22', 0, 'SF', 'W 23-7', 0, 0, 0, 0, 0, 6, 81, 2, 0, 0, 0, 0, 0, 26.1),
(3021, 189, 13, '1999-10-24', 0, 'DET', 'L 9-24', 0, 0, 0, 0, 0, 7, 83, 0, 0, 0, 0, 0, 0, 15.3),
(3022, 189, 14, '1996-10-20', 0, 'NO', 'W 19-7', 0, 0, 0, 0, 0, 1, 22, 0, 0, 0, 0, 0, 0, 3.2),
(3023, 189, 15, '1998-11-15', 0, 'MIA', 'L 9-13', 0, 0, 0, 0, 0, 8, 84, 0, 0, 0, 0, 0, 0, 16.4),
(3024, 189, 16, '2002-09-15', 0, 'DET', 'W 31-7', 0, 0, 0, 0, 0, 1, 20, 0, 0, 0, 0, 0, 0, 3),
(3025, 190, 1, '2000-10-29', 1, 'DAL', 'W 23-17', 0, 0, 0, 0, 0, 10, 138, 1, 0, 0, 0, 0, 3, 32.8),
(3026, 190, 2, '1999-11-21', 0, 'NO', 'W 41-23', 0, 0, 0, 0, 0, 1, 30, 0, 0, 0, 0, 0, 0, 4),
(3027, 190, 3, '2005-12-04', 1, 'CLE', 'W 20-14', 0, 0, 0, 0, 0, 1, 17, 0, 0, 0, 0, 0, 0, 2.7),
(3028, 190, 4, '2006-12-10', 0, 'IND', 'W 44-17', 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 0, 2.3),
(3029, 190, 5, '2002-12-15', 1, 'CIN', 'W 29-15', 0, 0, 0, 0, 0, 1, 23, 0, 0, 0, 0, 0, 0, 3.3),
(3030, 190, 6, '2002-09-29', 0, 'NYJ', 'W 28-3', 0, 0, 0, 0, 0, 1, 19, 0, 0, 0, 0, 0, 0, 2.9),
(3031, 190, 7, '2001-12-30', 0, 'KC', 'L 26-30', 0, 0, 0, 0, 0, 5, 51, 0, 0, 0, 0, 0, 0, 10.1),
(3032, 190, 8, '2001-09-30', 0, 'CLE', 'L 14-23', 0, 0, 0, 0, 0, 1, 14, 0, 0, 0, 0, 0, 0, 2.4),
(3033, 190, 9, '2002-12-01', 0, 'PIT', 'L 23-25', 0, 0, 0, 0, 0, 3, 54, 1, 0, 0, 0, 0, 0, 14.4),
(3034, 190, 10, '2002-12-22', 0, 'TEN', 'L 10-28', 0, 0, 0, 0, 0, 5, 55, 0, 0, 0, 0, 0, 0, 10.5),
(3035, 190, 11, '2000-11-19', 1, 'PIT', 'W 34-24', 0, 0, 0, 0, 0, 5, 62, 0, 0, 0, 0, 0, 0, 11.2),
(3036, 190, 12, '2000-10-22', 0, 'WAS', 'L 16-35', 0, 0, 0, 0, 0, 8, 111, 0, 0, 0, 0, 0, 3, 22.1),
(3037, 190, 13, '2002-09-15', 1, 'KC', 'W 23-16', 0, 0, 0, 0, 0, 5, 60, 0, 0, 0, 0, 0, 0, 11),
(3038, 190, 14, '1999-11-28', 1, 'BAL', 'W 30-23', 0, 0, 0, 0, 0, 4, 65, 0, 0, 0, 0, 0, 0, 10.5),
(3039, 190, 15, '2000-10-08', 0, 'BAL', 'L 10-15', 0, 0, 0, 0, 0, 5, 45, 0, 0, 0, 0, 0, 0, 9.5),
(3040, 190, 16, '2000-09-03', 1, 'CLE', 'W 27-7', 0, 0, 0, 0, 0, 5, 85, 0, 0, 0, 0, 0, 0, 13.5),
(3041, 191, 1, '2003-10-19', 1, 'CIN', 'L 26-34', 0, 0, 0, 0, 0, 7, 129, 0, 0, 0, 0, 0, 3, 22.9),
(3042, 191, 2, '2001-11-18', 0, 'CLE', 'L 17-27', 0, 0, 0, 0, 0, 1, 24, 1, 0, 0, 0, 0, 0, 9.4),
(3043, 191, 3, '2002-12-08', 0, 'NO', 'L 25-37', 0, 0, 0, 0, 0, 5, 87, 0, 0, 0, 0, 0, 0, 13.7),
(3044, 191, 4, '2005-10-16', 0, 'CLE', 'W 16-3', 0, 0, 0, 0, 0, 6, 79, 1, 0, 0, 0, 0, 0, 19.9),
(3045, 191, 5, '2010-10-10', 0, 'DEN', 'W 31-17', 0, 0, 0, 0, 0, 1, 22, 0, 0, 0, 0, 0, 0, 3.2),
(3046, 191, 6, '2001-12-23', 0, 'CIN', 'W 16-0', 0, 0, 0, 0, 0, 1, 18, 0, 0, 0, 0, 0, 0, 2.8),
(3047, 191, 7, '2002-09-30', 0, 'DEN', 'W 34-23', 0, 0, 0, 0, 0, 5, 84, 2, 0, 0, 0, 0, 0, 25.4),
(3048, 191, 8, '2003-11-23', 0, 'SEA', 'W 44-41', 0, 0, 0, 7, 0, 1, 22, 0, 0, 0, 0, 0, 0, 3.9),
(3049, 191, 9, '2003-12-07', 0, 'CIN', 'W 31-13', 0, 0, 0, 0, 0, 1, 14, 0, 0, 0, 0, 0, 0, 2.4),
(3050, 191, 10, '2005-12-19', 0, 'GB', 'W 48-3', 0, 0, 0, 0, 0, 9, 110, 2, 0, 0, 0, 0, 3, 35),
(3051, 191, 11, '2003-12-14', 1, 'OAK', 'L 12-20', 0, 0, 0, 0, 0, 6, 93, 1, 0, 0, 0, 0, 0, 21.3),
(3052, 191, 12, '2005-11-27', 1, 'CIN', 'L 29-42', 0, 0, 0, 0, 0, 6, 87, 2, 0, 0, 0, 0, 0, 26.7),
(3053, 191, 13, '2006-11-05', 0, 'CIN', 'W 26-20', 0, 0, 0, 0, 0, 4, 84, 0, 0, 0, 0, 0, 0, 12.4),
(3054, 191, 14, '2008-12-14', 0, 'PIT', 'L 9-13', 0, 0, 0, 0, 0, 1, 24, 0, 0, 0, 0, 0, 0, 3.4),
(3055, 191, 15, '2002-12-29', 1, 'PIT', 'L 31-34', 0, 0, 0, 0, 0, 7, 146, 1, 0, 0, 0, 0, 3, 30.6),
(3056, 191, 16, '2004-09-12', 1, 'CLE', 'L 3-20', 0, 0, 0, 0, 0, 9, 86, 0, 0, 0, 0, 0, 0, 17.6),
(3057, 192, 1, '1995-11-12', 0, 'CIN', 'L 25-32', 0, 0, 0, 0, 0, 2, 39, 0, 0, 0, 0, 0, 0, 5.9),
(3058, 192, 2, '1995-09-03', 1, 'JAX', 'W 10-3', 0, 0, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 0, 1.9),
(3059, 192, 3, '1996-12-15', 0, 'CIN', 'L 13-21', 0, 0, 0, 0, 0, 5, 57, 1, 0, 0, 0, 0, 0, 16.7),
(3060, 192, 4, '1996-11-17', 0, 'MIA', 'L 20-23', 0, 0, 0, 0, 0, 5, 54, 1, 0, 0, 0, 0, 0, 16.4),
(3061, 192, 5, '1996-10-06', 1, 'CIN', 'W 30-27', 0, 0, 0, 0, 0, 7, 59, 1, 0, 0, 0, 0, 0, 18.9),
(3062, 192, 6, '1995-12-24', 1, 'BUF', 'W 28-17', 0, 0, 0, 0, 0, 5, 72, 1, 0, 0, 0, 0, 0, 18.2),
(3063, 192, 7, '1996-11-10', 1, 'NO', 'W 31-14', 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2.6),
(3064, 192, 8, '1996-11-24', 0, 'CAR', 'L 6-31', 0, 0, 0, 0, 0, 4, 44, 0, 0, 0, 0, 0, 0, 8.4),
(3065, 192, 9, '1995-11-19', 1, 'KC', 'L 13-20', 0, 0, 0, 0, 0, 5, 44, 0, 0, 0, 0, 0, 0, 9.4),
(3066, 192, 10, '1996-12-01', 1, 'NYJ', 'W 35-10', 0, 0, 0, 0, 0, 1, 23, 1, 0, 0, 0, 0, 0, 9.3),
(3067, 192, 11, '1995-11-26', 0, 'DEN', 'W 42-33', 0, 0, 0, 0, 0, 4, 51, 0, 0, 0, 0, 0, 0, 9.1),
(3068, 192, 12, '1995-09-17', 0, 'CLE', 'L 7-14', 0, 0, 0, 0, 0, 2, 22, 0, 0, 0, 0, 0, 0, 4.2),
(3069, 192, 13, '1995-12-03', 1, 'PIT', 'L 7-21', 0, 0, 0, 0, 0, 3, 50, 0, 0, 0, 0, 0, 0, 8),
(3070, 192, 14, '1995-12-10', 0, 'DET', 'L 17-24', 0, 0, 0, 0, 0, 5, 71, 0, 0, 0, 0, 0, 0, 12.1),
(3071, 192, 15, '1996-09-15', 0, 'BAL', 'W 29-13', 0, 0, 0, 0, 0, 6, 64, 1, 0, 0, 0, 0, 0, 18.4),
(3072, 192, 16, '1996-09-08', 1, 'JAX', 'W 34-27', 0, 0, 0, 0, 0, 2, 19, 1, 0, 0, 0, 0, 0, 9.9);
-- --------------------------------------------------------
--
-- Table structure for table `positions`
--
DROP TABLE IF EXISTS `positions`;
CREATE TABLE IF NOT EXISTS `positions` (
`posID` int(6) NOT NULL AUTO_INCREMENT,
`pos` varchar(10) NOT NULL,
PRIMARY KEY (`posID`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `positions`
--
INSERT INTO `positions` (`posID`, `pos`) VALUES
(1, 'QB'),
(2, 'RB'),
(3, 'WR'),
(4, 'TE'),
(5, 'DST'),
(6, 'K');
-- --------------------------------------------------------
--
-- Table structure for table `roofs`
--
DROP TABLE IF EXISTS `roofs`;
CREATE TABLE IF NOT EXISTS `roofs` (
`roofID` int(11) NOT NULL AUTO_INCREMENT,
`roof_type` varchar(15) NOT NULL,
PRIMARY KEY (`roofID`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `roofs`
--
INSERT INTO `roofs` (`roofID`, `roof_type`) VALUES
(1, 'Open'),
(2, 'Retractable'),
(3, 'Dome');
-- --------------------------------------------------------
--
-- Table structure for table `stadiums`
--
DROP TABLE IF EXISTS `stadiums`;
CREATE TABLE IF NOT EXISTS `stadiums` (
`stadiumID` int(6) NOT NULL AUTO_INCREMENT,
`stadium_name` varchar(75) NOT NULL,
`capacity` int(6) NOT NULL,
`stadium_city` varchar(50) NOT NULL,
`stadium_state` varchar(50) NOT NULL,
`surfaceID` int(2) NOT NULL,
`roofID` int(2) NOT NULL,
PRIMARY KEY (`stadiumID`)
) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `stadiums`
--
INSERT INTO `stadiums` (`stadiumID`, `stadium_name`, `capacity`, `stadium_city`, `stadium_state`, `surfaceID`, `roofID`) VALUES
(1, 'Arrowhead Stadium', 76416, 'Kansas City', 'Missouri', 1, 1),
(2, 'AT&T Stadium', 80000, 'Arlington', 'Texas', 2, 2),
(3, 'Bank of America Stadium', 75419, 'Charlotte', 'North Carolina', 1, 1),
(4, 'CenturyLink Field', 68000, 'Seattle', 'Washington', 2, 1),
(5, 'EverBank Field', 67246, 'Jacksonville', 'Florida', 1, 1),
(6, 'FedEx Field', 82000, 'Landover', 'Maryland', 1, 1),
(7, 'FirstEnergy Stadium', 67895, 'Cleveland', 'Ohio', 1, 1),
(8, 'Ford Field', 65000, 'Detroit', 'Michigan', 2, 3),
(9, 'Gillette Stadium', 66829, 'Foxborough', 'Massachusetts', 2, 1),
(10, 'Hard Rock Stadium', 65326, 'Miami Gardens', 'Florida', 1, 1),
(11, 'Heinz Field', 68400, 'Pittsburgh', 'Pennsylvania', 1, 1),
(12, 'Lambeau Field', 81435, 'Green Bay', 'Wisconsin', 1, 1),
(13, 'Levi\'s Stadium', 68500, 'Santa Clara', 'California', 1, 1),
(14, 'Lincoln Financial Field', 69596, 'Philadelphia', 'Pennsylvania', 1, 1),
(15, 'Los Angeles Memorial Coliseum', 93607, 'Los Angeles', 'California', 1, 1),
(16, 'Lucas Oil Stadium', 67000, 'Indianapolis', 'Indiana', 2, 2),
(17, 'M&T Bank Stadium', 71008, 'Baltimore', 'Maryland', 1, 1),
(18, '<NAME>', 76468, 'New Orleans', 'Louisiana', 2, 3),
(19, 'Mercedes-Benz Stadium', 71000, 'Atlanta', 'Georgia', 2, 2),
(20, 'MetLife Stadium', 82500, 'East Rutherford', 'New Jersey', 2, 1),
(21, 'New Era Field', 71608, 'Orchard Park', 'New York', 2, 1),
(22, 'Nissan Stadium', 69143, 'Nashville', 'Tennessee', 1, 1),
(23, 'NRG Stadium', 72220, 'Houston', 'Texas', 2, 2),
(24, 'Oakland-Alameda County Coliseum', 53286, 'Oakland', 'California', 1, 1),
(25, 'Paul Brown Stadium', 65515, 'Cincinnati', 'Ohio', 2, 1),
(26, 'Raymond James Stadium', 65890, 'Tampa', 'Florida', 1, 1),
(27, 'Soldier Field', 61500, 'Chicago', 'Illinois', 1, 1),
(28, 'Sports Authority Field at Mile High', 76125, 'Denver', 'Colorado', 1, 1),
(29, 'StubHub Center', 30000, 'Carson', 'California', 1, 1),
(30, 'University of Phoenix Stadium', 63400, 'Glendale', 'Arizona', 1, 2),
(31, 'U.S. Bank Stadium', 66655, 'Minneapolis', 'Minnesota', 2, 3);
-- --------------------------------------------------------
--
-- Table structure for table `statuses`
--
DROP TABLE IF EXISTS `statuses`;
CREATE TABLE IF NOT EXISTS `statuses` (
`statusID` int(11) NOT NULL AUTO_INCREMENT,
`status` varchar(15) NOT NULL,
PRIMARY KEY (`statusID`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `statuses`
--
INSERT INTO `statuses` (`statusID`, `status`) VALUES
(1, 'Open'),
(2, 'Full'),
(3, 'In Progress'),
(4, 'Pending Review'),
(5, 'Closed');
-- --------------------------------------------------------
--
-- Table structure for table `styles`
--
DROP TABLE IF EXISTS `styles`;
CREATE TABLE IF NOT EXISTS `styles` (
`styleID` int(1) NOT NULL AUTO_INCREMENT,
`style_name` varchar(4) NOT NULL,
PRIMARY KEY (`styleID`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `styles`
--
INSERT INTO `styles` (`styleID`, `style_name`) VALUES
(1, 'DK'),
(2, 'FD'),
(3, 'FDr');
-- --------------------------------------------------------
--
-- Table structure for table `surfaces`
--
DROP TABLE IF EXISTS `surfaces`;
CREATE TABLE IF NOT EXISTS `surfaces` (
`surfaceID` int(2) NOT NULL AUTO_INCREMENT,
`surface_type` varchar(6) NOT NULL,
PRIMARY KEY (`surfaceID`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `surfaces`
--
INSERT INTO `surfaces` (`surfaceID`, `surface_type`) VALUES
(1, 'Grass'),
(2, 'Turf');
-- --------------------------------------------------------
--
-- Table structure for table `teams`
--
DROP TABLE IF EXISTS `teams`;
CREATE TABLE IF NOT EXISTS `teams` (
`teamID` int(2) NOT NULL AUTO_INCREMENT,
`team_city` varchar(25) NOT NULL,
`team_name` varchar(15) NOT NULL,
`abbrv` varchar(4) NOT NULL,
`stadiumID` int(2) NOT NULL,
PRIMARY KEY (`teamID`)
) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `teams`
--
INSERT INTO `teams` (`teamID`, `team_city`, `team_name`, `abbrv`, `stadiumID`) VALUES
(1, 'Arizona', 'Cardinals', 'AZ', 30),
(2, 'Chicago', 'Bears', 'CHI', 27),
(3, 'Green Bay', 'Packers', 'GB', 12),
(4, 'New York', 'Giants', 'NYG', 20),
(5, 'Detroit', 'Lions', 'DET', 8),
(6, 'Washington', 'Redskins', 'WAS', 6),
(7, 'Philadelphia', 'Eagles', 'PHI', 14),
(8, 'Pittsburgh', 'Steelers', 'PIT', 11),
(9, 'St. Louis', 'Rams', 'STL', 15),
(10, 'San Francisco', '49ers', 'SF', 13),
(11, 'Cleveland', 'Browns', 'CLE', 7),
(12, 'Indianapolis', 'Colts', 'IND', 16),
(13, 'Dallas', 'Cowboys', 'DAL', 2),
(14, 'Kansas City', 'Chiefs', 'KC', 1),
(15, 'San Diego', 'Chargers', 'SD', 29),
(16, 'Denver', 'Broncos', 'DEN', 28),
(17, 'New York', 'Jets', 'NYJ', 20),
(18, 'New England', 'Patriots', 'NE', 9),
(19, 'Oakland', 'Raiders', 'OAK', 24),
(20, 'Tennessee', 'Titans', 'TEN', 22),
(21, 'Buffalo', 'Bills', 'BUF', 21),
(22, 'Minnesota', 'Vikings', 'MIN', 31),
(23, 'Atlanta', 'Falcons', 'ATL', 19),
(24, 'Miami', 'Dolphins', 'MIA', 10),
(25, 'New Orleans', 'Saints', 'NO', 18),
(26, 'Cincinnati', 'Bengals', 'CIN', 25),
(27, 'Seattle', 'Seahawks', 'SEA', 4),
(28, 'Tampa Bay', 'Buccaneers', 'TB', 26),
(29, 'Carolina', 'Panthers', 'CAR', 3),
(30, 'Jacksonville', 'Jaguars', 'JAX', 5),
(31, 'Baltimore', 'Ravens', 'BAL', 17),
(32, 'Houston', 'Oilers', 'HOU', 23);
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>nationalarchives/tdr-prototype-sangria
/**
Index file path in file table to optimize pagination queries
*/
CREATE INDEX idx_path ON file USING btree(path); |
<reponame>z3z1ma/dbt-re-data
{{
config(re_data_monitored=true, re_data_time_filter='creation_time', materialized='table')
}}
select *
from {{ ref('sample_with_anomaly') }}
where event_type = 'buy' |
<reponame>NaturalSolutions/ecoReleve-Data
USE [EcoReleve_ECWP]
GO
/****** Object: StoredProcedure [dbo].[sp_validate_Argos_GPS] Script Date: 18/12/2015 15:48:16 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[sp_validate_Argos_GPS]
@listID xml,
@ind int,
@user int,
@ptt int ,
@nb_insert int OUTPUT,
@exist int output,
@error int output
AS
BEGIN
SET NOCOUNT ON;
DECLARE @data_to_insert table (
data_id int,FK_Sensor int, date_ datetime, lat decimal(9,5), lon decimal(9,5)
, lc varchar(1), iq tinyint,ele int , nbMsg tinyint, nbMsg120dB tinyint
, bestLevel smallint, passDuration smallint,nopc tinyint,freq float
,errorRadius int,semiMajor int,semiMinor int,orientation tinyint,hdop int ,
speed int,course int, type_ varchar(3),
FK_ind int,creator int,name varchar(100)
);
DECLARE @data_duplicate table (
data_id int,fk_sta_id int
);
DECLARE @output TABLE (sta_id int,data_id int,type_ varchar(3));
DECLARE @NbINserted int ;
INSERT INTO @data_to_insert (data_id ,FK_Sensor , date_ , lat , lon , lc , iq ,ele ,
nbMsg , nbMsg120dB , bestLevel , passDuration ,nopc ,freq ,
errorRadius ,semiMajor,semiMinor ,orientation ,hdop
,speed,course ,type_,
FK_ind ,creator )
SELECT
[PK_id],FK_Sensor,[date],[lat],[lon],[lc],[iq],[ele]
,[nbMsg],[nbMsg120],[bestLevel],[passDuration],[nopc],[freq],
[errorRadius],[semiMajor],[semiMinor],[orientation],[hdop]
,[speed],[course],[type]
,@ind,@user
FROM VArgosData_With_EquipIndiv
WHERE PK_id in (
select * from [dbo].[XML_int] (@listID)
) and checked = 0
-- check duplicate location before insert data in @data_without_duplicate
insert into @data_duplicate
select d.data_id, s.ID
from @data_to_insert d join Individual_Location s on round(d.lat,3)=round(s.LAT,3) and round(d.lon,3) = round(s.LON,3) and d.date_ = s.DATE and s.FK_Individual = d.FK_ind
-- insert data creating new Location
INSERT INTO [dbo].[Individual_Location]
([LAT]
,[LON]
,[Date]
,[Precision]
,[FK_Sensor]
,[FK_Individual]
,[ELE]
,[creationDate]
,[creator]
,[type_]
,OriginalData_ID)
select
lat,
lon,
date_,
CASE
WHEN type_ = 'gps' then
CASE WHEN hdop is null then 26
ELSE hdop
END
ELSE loc.[TLocCl_Precision]
END
,FK_Sensor
,FK_ind
,ele
,GETDATE()
,@user
,[type_]
,'Targos_gps_'+CONVERT(VARCHAR,data_id)
from @data_to_insert i
LEFT JOIN ecoReleve_Sensor.dbo.TLocationClass loc
ON loc.TLocCl_Classe = i.lc COLLATE SQL_Latin1_General_CP1_CI_AS
where i.data_id not in (select data_id from @data_duplicate)
SET @NbINserted=@@ROWCOUNT
update ecoreleve_sensor.dbo.T_argosgps set imported = 1 where PK_id in (select data_id from @data_to_insert)
update VArgosData_With_EquipIndiv set checked = 1 where FK_ptt = @ptt and [FK_Individual] = @ind
SET @nb_insert = @NbINserted
SELECT @exist = COUNT(*) FROM @data_duplicate
SET @error=@@ERROR
RETURN
END
GO
|
/*
PLT39 - Script para relatório
Create By Bitts
(20/10/2016)
Melhoramento do mapa de notas apresentação de todos os trimestres
Exibição por disciplina e turma
*/
DECLARE @CODTURMA1_S VARCHAR(10) = 'EM201';-- :CODTURMA;
DECLARE @CODSTATUS_M INT = 50;
DECLARE @STATUS_M VARCHAR(20) = 'Matriculado';
DECLARE @SPERLETIVO_M VARCHAR(10) = '2016'; -- :PLETIVO;
DECLARE @CODCOLIGADA_N INT = 3;
DECLARE @CODFILIAL_N INT = 6;
DECLARE @DISCIPLINA VARCHAR(10) = 'Matematica';
WITH MAPA_FALTAS AS (
SELECT
SMATRICPL.NUMALUNO,
SALUNO.RA,
PPESSOA.NOME,
SMATRICPL.CODSTATUS,
SSTATUS.DESCRICAO,
ETAPA.CODCOLIGADA,
ETAPA.CODFILIAL,
ETAPA.IDPERLET,
ETAPA.SPERLETIVO,
ETAPA.CODTURMA,
ETAPA.CODDISC,
ETAPA.NOMEDISCIPLINA,
ETAPA.CODETAPA,
ETAPA.DESCRICAO AS DESCRICAOETAPA,
ETAPA.TIPOETAPA,
ETAPA.NOTAFALTA,
SHABILITACAO.NOME AS NOME_SERIE
FROM
PPESSOA (NOLOCK)
LEFT JOIN SALUNO (NOLOCK) ON
SALUNO.CODPESSOA = PPESSOA.CODIGO
LEFT JOIN SMATRICPL (NOLOCK) ON
SMATRICPL.CODCOLIGADA = SALUNO.CODCOLIGADA
AND SMATRICPL.RA = SALUNO.RA
LEFT JOIN SSTATUS (NOLOCK) ON
SMATRICPL.CODCOLIGADA = SSTATUS.CODCOLIGADA
AND SMATRICPL.CODSTATUS = SSTATUS.CODSTATUS
INNER JOIN SHABILITACAOFILIAL (NOLOCK) ON
SHABILITACAOFILIAL.IDHABILITACAOFILIAL = SMATRICPL.IDHABILITACAOFILIAL
INNER JOIN SHABILITACAO (NOLOCK) ON
SHABILITACAOFILIAL.CODCURSO = SHABILITACAO.CODCURSO
AND SHABILITACAOFILIAL.CODHABILITACAO = SHABILITACAO.CODHABILITACAO
LEFT JOIN (
SELECT
STURMADISC.CODCOLIGADA,
STURMADISC.IDTURMADISC,
STURMADISC.CODFILIAL,
STURMADISC.CODTURMA,
STURMADISC.IDPERLET,
SPLETIVO.DESCRICAO AS SPERLETIVO,
STURMADISC.IDHABILITACAOFILIAL,
SDISCIPLINA.CODDISC,
SDISCIPLINA.NOME AS NOMEDISCIPLINA,
SETAPAS.CODETAPA,
SETAPAS.DESCRICAO,
SNOTAETAPA.TIPOETAPA,
SNOTAETAPA.NOTAFALTA,
SNOTAETAPA.AULASDADAS,
SNOTAETAPA.RA
FROM
STURMADISC (NOLOCK)
LEFT JOIN SDISCIPLINA (NOLOCK) ON
SDISCIPLINA.CODDISC = STURMADISC.CODDISC AND
SDISCIPLINA.CODCOLIGADA = STURMADISC.CODCOLIGADA AND
SDISCIPLINA.CODTIPOCURSO = STURMADISC.CODTIPOCURSO
LEFT JOIN SETAPAS (NOLOCK) ON
SETAPAS.IDTURMADISC = STURMADISC.IDTURMADISC AND
SETAPAS.CODCOLIGADA = STURMADISC.CODCOLIGADA
LEFT JOIN SNOTAETAPA (NOLOCK) ON
SNOTAETAPA.IDTURMADISC = SETAPAS.IDTURMADISC AND
SNOTAETAPA.CODETAPA = SETAPAS.CODETAPA AND
SNOTAETAPA.TIPOETAPA = SETAPAS.TIPOETAPA
LEFT JOIN SPLETIVO (NOLOCK) ON
SPLETIVO.CODCOLIGADA = STURMADISC.CODCOLIGADA AND
SPLETIVO.IDPERLET = STURMADISC.IDPERLET
)
ETAPA (
CODCOLIGADA,
IDTURMADISC,
CODFILIAL,
CODTURMA,
IDPERLET,
SPERLETIVO,
IDHABILITACAOFILIAL,
CODDISC,
NOMEDISCIPLINA,
CODETAPA,
DESCRICAO,
TIPOETAPA,
NOTAFALTA,
AULASDADAS,
RA
) ON
ETAPA.CODTURMA = SMATRICPL.CODTURMA
AND ETAPA.RA = SMATRICPL.RA
AND ETAPA.IDPERLET = SMATRICPL.IDPERLET
AND ETAPA.CODCOLIGADA = SMATRICPL.CODCOLIGADA
AND ETAPA.CODFILIAL = SMATRICPL.CODFILIAL
AND ETAPA.IDHABILITACAOFILIAL = SMATRICPL.IDHABILITACAOFILIAL
)
SELECT DISTINCT
NUMALUNO,
RA,
NOME,
CODSTATUS,
DESCRICAO,
CODFILIAL,
CODCOLIGADA,
IDPERLET,
SPERLETIVO,
NOME_SERIE,
CODTURMA ,
[1TRI].NOTA1 AS [1º TRI NOTA],
[1TRIF].FALTAS1 AS [1º TRI FALTA],
[2TRI].NOTA2 AS [2º TRI NOTA],
[2TRIF].FALTAS2 AS [2º TRI FALTA],
[3TRI].NOTA3 AS [3º TRI NOTA],
[3TRIF].FALTAS3 AS [3º TRI FALTA]
FROM
MAPA_FALTAS
LEFT JOIN (
SELECT NOTAFALTA AS NOTA1, CODETAPA AS CE1, NUMALUNO AS NA1, CODSTATUS AS CS1, CODFILIAL AS CF1, CODCOLIGADA AS CC1, IDPERLET AS IP1, SPERLETIVO AS SP1, CODTURMA AS CT1, CODDISC AS CD1
FROM MAPA_FALTAS
) [1TRI] (NOTA1, CE1, NA1, CS1, CF1, CC1, IP1, SP1, CT1, CD1) ON
[1TRI].CE1 = '1' AND
[1TRI].NA1 = NUMALUNO AND
[1TRI].CS1 = CODSTATUS AND
[1TRI].CF1 = CODFILIAL AND
[1TRI].CC1 = CODCOLIGADA AND
[1TRI].IP1 = IDPERLET AND
[1TRI].SP1 = SPERLETIVO AND
[1TRI].CT1 = CODTURMA AND
[1TRI].CD1 = CODDISC
LEFT JOIN (
SELECT NOTAFALTA AS FALTAS1, CODETAPA AS CE1F, NUMALUNO AS NA1F, CODSTATUS AS CS1F, CODFILIAL AS CF1F, CODCOLIGADA AS CC1F, IDPERLET AS IP1F, SPERLETIVO AS SP1F, CODTURMA AS CT1F, CODDISC AS CD1F
FROM MAPA_FALTAS
) [1TRIF] (FALTAS1, CE1F, NA1F, CS1F, CF1F, CC1F, IP1F, SP1F, CT1F, CD1F) ON
[1TRIF].CE1F = '2' AND
[1TRIF].NA1F = NUMALUNO AND
[1TRIF].CS1F = CODSTATUS AND
[1TRIF].CF1F = CODFILIAL AND
[1TRIF].CC1F = CODCOLIGADA AND
[1TRIF].IP1F = IDPERLET AND
[1TRIF].SP1F = SPERLETIVO AND
[1TRIF].CT1F = CODTURMA AND
[1TRIF].CD1F = CODDISC
LEFT JOIN (
SELECT NOTAFALTA AS NOTA2, CODETAPA AS CE2, NUMALUNO AS NA2, CODSTATUS AS CS2, CODFILIAL AS CF2, CODCOLIGADA AS CC2, IDPERLET AS IP2, SPERLETIVO AS SP2, CODTURMA AS CT2, CODDISC AS CD2
FROM MAPA_FALTAS
) [2TRI] (NOTA2, CE2, NA2, CS2, CF2, CC2, IP2, SP2, CT2, CD2) ON
[2TRI].CE2 = '3' AND
[2TRI].NA2 = NUMALUNO AND
[2TRI].CS2 = CODSTATUS AND
[2TRI].CF2 = CODFILIAL AND
[2TRI].CC2 = CODCOLIGADA AND
[2TRI].IP2 = IDPERLET AND
[2TRI].SP2 = SPERLETIVO AND
[2TRI].CT2 = CODTURMA AND
[2TRI].CD2 = CODDISC
LEFT JOIN (
SELECT NOTAFALTA AS FALTAS2, CODETAPA AS CE2F, NUMALUNO AS NA2F, CODSTATUS AS CS2F, CODFILIAL AS CF2F, CODCOLIGADA AS CC2F, IDPERLET AS IP2F, SPERLETIVO AS SP2F, CODTURMA AS CT2F, CODDISC AS CD2F
FROM MAPA_FALTAS
) [2TRIF] (FALTAS2, CE2F, NA2F, CS2F, CF2F, CC2F, IP2F, SP2F, CT2F, CD2F) ON
[2TRIF].CE2F = '4' AND
[2TRIF].NA2F = NUMALUNO AND
[2TRIF].CS2F = CODSTATUS AND
[2TRIF].CF2F = CODFILIAL AND
[2TRIF].CC2F = CODCOLIGADA AND
[2TRIF].IP2F = IDPERLET AND
[2TRIF].SP2F = SPERLETIVO AND
[2TRIF].CT2F = CODTURMA AND
[2TRIF].CD2F = CODDISC
LEFT JOIN (
SELECT NOTAFALTA AS NOTA3, CODETAPA AS CE3, NUMALUNO AS NA3, CODSTATUS AS CS3, CODFILIAL AS CF3, CODCOLIGADA AS CC3, IDPERLET AS IP3, SPERLETIVO AS SP3, CODTURMA AS CT3, CODDISC AS CD3
FROM MAPA_FALTAS
) [3TRI] (NOTA3, CE3, NA3, CS3, CF3, CC3, IP3, SP3, CT3, CD3) ON
[3TRI].CE3 = '5' AND
[3TRI].NA3 = NUMALUNO AND
[3TRI].CS3 = CODSTATUS AND
[3TRI].CF3 = CODFILIAL AND
[3TRI].CC3 = CODCOLIGADA AND
[3TRI].IP3 = IDPERLET AND
[3TRI].SP3 = SPERLETIVO AND
[3TRI].CT3 = CODTURMA AND
[3TRI].CD3 = CODDISC
LEFT JOIN (
SELECT NOTAFALTA AS FALTAS3, CODETAPA AS CE3F, NUMALUNO AS NA3F, CODSTATUS AS CS3F, CODFILIAL AS CF3F, CODCOLIGADA AS CC3F, IDPERLET AS IP3F, SPERLETIVO AS SP3F, CODTURMA AS CT3F, CODDISC AS CD3F
FROM MAPA_FALTAS
) [3TRIF] (FALTAS3, CE3F, NA3F, CS3F, CF3F, CC3F, IP3F, SP3F, CT3F, CD3F) ON
[3TRIF].CE3F = '6' AND
[3TRIF].NA3F = NUMALUNO AND
[3TRIF].CS3F = CODSTATUS AND
[3TRIF].CF3F = CODFILIAL AND
[3TRIF].CC3F = CODCOLIGADA AND
[3TRIF].IP3F = IDPERLET AND
[3TRIF].SP3F = SPERLETIVO AND
[3TRIF].CT3F = CODTURMA AND
[3TRIF].CD3F = CODDISC
WHERE
CODSTATUS = @CODSTATUS_M AND
DESCRICAO = @STATUS_M AND
CODTURMA = @CODTURMA1_S AND
SPERLETIVO = @SPERLETIVO_M AND
CODCOLIGADA = @CODCOLIGADA_N AND
CODFILIAL = @CODFILIAL_N AND
NOMEDISCIPLINA = @DISCIPLINA AND
CODETAPA IN (1,3,5)
GROUP BY
NUMALUNO,
RA,
NOME,
CODSTATUS,
DESCRICAO,
CODFILIAL,
CODCOLIGADA,
IDPERLET,
SPERLETIVO,
NOME_SERIE,
CODTURMA,
CODETAPA,
[1TRI].NOTA1,
[1TRIF].FALTAS1,
[2TRI].NOTA2,
[2TRIF].FALTAS2,
[3TRI].NOTA3,
[3TRIF].FALTAS3
ORDER BY
NUMALUNO;
|
<gh_stars>10-100
-- file:plpgsql.sql ln:1268 expect:true
insert into PSlot values ('PS.first.a2', 'PF1_1', '', 'WS.101.1b')
|
<reponame>Shuttl-Tech/antlr_psql
-- file:guc.sql ln:127 expect:true
SET datestyle = 'ISO, DMY'
|
<reponame>mr337/mymove<gh_stars>10-100
-- Local test migration.
-- This will be run on development environments. It should mirror what you
-- intend to apply on production, but do not include any sensitive data.
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
-- ----------------
-- Create a test TSP
INSERT INTO public.transportation_service_providers
VALUES (
'd7c0e4e0-ddcf-47b8-bdfd-6c0bce555b28',
'TRS1',
now(), now(),
true
);
-- ----------------
-- Create users for the TSP
INSERT INTO public.tsp_users
VALUES (
uuid_generate_v4(), NULL,
'Joe', 'Schmoe', 'O',
'<EMAIL>', '(555) 123-4567',
'd7c0e4e0-ddcf-47b8-bdfd-6c0bce555b28',
now(), now()
);
-- ----------------
-- Create a test TDL
-- Create a Service Area for the test ZIP: 00000
INSERT INTO public.tariff400ng_zip3s
VALUES (
uuid_generate_v4(),
'000', -- ZIP3
'Test Town', 'CA', -- basepoint_city, state
'000', -- service_area
'US00', -- rate_area
'0', -- region
now(), now()
);
-- Create a TDL
INSERT INTO public.traffic_distribution_lists
VALUES (
'4a8e3a96-265b-4150-900e-f86eedb38b47', -- UUID
'US00', -- source_rate_area
'11', -- destination_region (for ZIP 401xx, including Ft Knox)
'D', -- code_of_service
now(), now()
);
-- File rates in the TDL
INSERT INTO public.transportation_service_provider_performances
VALUES (
uuid_generate_v4(),
'2018-01-01', -- performance_period_start
'2030-01-01', -- performance_period_end (super far in the future)
'4a8e3a96-265b-4150-900e-f86eedb38b47', -- traffic_distribution_list_id
NULL, -- quality_band
0, -- offer_count
100.0, -- best_value_score
'd7c0e4e0-ddcf-47b8-bdfd-6c0bce555b28', -- transportation_service_provider_id
now(), now(), -- created_at, updated_at
'2018-01-01', -- rate_cycle_start
'2030-01-01', -- rate_cycle_end
0.6, -- linehaul_rate
0.6 -- sit_rate
);
|
--
-- Copyright 2005-2014 The Kuali Foundation
--
-- Licensed under the Educational Community License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.opensource.org/licenses/ecl2.php
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
INSERT INTO KRMS_ATTR_DEFN_T (ACTV,ATTR_DEFN_ID,DESC_TXT,LBL,NM,NMSPC_CD,VER_NBR)
VALUES ('Y','1000','An identifier for a PeopleFlow','PeopleFlow','peopleFlowId','KR-RULE',0)
/
INSERT INTO KRMS_ATTR_DEFN_T (ACTV,ATTR_DEFN_ID,DESC_TXT,LBL,NM,NMSPC_CD,VER_NBR)
VALUES ('Y','1001','If true, execute the action','Invalid Rule','ruleTypeCode','KR-RULE',1)
/
INSERT INTO KRMS_ATTR_DEFN_T (ACTV,ATTR_DEFN_ID,DESC_TXT,LBL,NM,NMSPC_CD,VER_NBR)
VALUES ('Y','1004','Error','Error Action','actionTypeCode','KR-RULE',1)
/
INSERT INTO KRMS_ATTR_DEFN_T (ACTV,ATTR_DEFN_ID,DESC_TXT,LBL,NM,NMSPC_CD,VER_NBR)
VALUES ('Y','1005','Message validation action returns','Action Message','actionMessage','KR-RULE',1)
/
INSERT INTO KRMS_ATTR_DEFN_T (ACTV,ATTR_DEFN_ID,DESC_TXT,LBL,NM,NMSPC_CD,VER_NBR)
VALUES ('Y','1006','PeopleFlow Name','PeopleFlow Name','peopleFlowName','KR-RULE',1)
/
|
CREATE TABLE ofGojaraStatistics (
logID Integer Identity NOT NULL,
messageDate BIGINT NOT NULL,
messageType VARCHAR(255) NOT NULL,
fromJID VARCHAR(255) NOT NULL,
toJID VARCHAR(255) NOT NULL,
component VARCHAR(255) NOT NULL,
PRIMARY KEY (logID)
);
INSERT INTO ofVersion (name, version) VALUES ('gojara', 1);
|
#standardSQL
# 14_13d: Distribution of image stats per CMS
SELECT
percentile,
_TABLE_SUFFIX AS client,
app,
COUNT(DISTINCT url) AS pages,
APPROX_QUANTILES(reqImg, 1000)[OFFSET(percentile * 10)] AS image_count,
ROUND(APPROX_QUANTILES(bytesImg, 1000)[OFFSET(percentile * 10)] / 1024, 2) AS image_kbytes
FROM
`httparchive.summary_pages.2019_07_01_*`
JOIN
`httparchive.technologies.2019_07_01_*`
USING (_TABLE_SUFFIX, url),
UNNEST([10, 25, 50, 75, 90]) AS percentile
WHERE
category = 'CMS'
GROUP BY
percentile,
client,
app
ORDER BY
percentile,
client,
pages DESC |
<gh_stars>10-100
--
-- Licensed to the Apache Software Foundation (ASF) under one or more
-- contributor license agreements. See the NOTICE file distributed with
-- this work for additional information regarding copyright ownership.
-- The ASF licenses this file to You under the Apache License, Version 2.0
-- (the "License"); you may not use this file except in compliance with
-- the License. You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
create table t1( id integer not null primary key, i1 integer, i2 integer, c10 char(10), c30 char(30), tm time);
create table t2( id integer not null primary key, i1 integer, i2 integer, vc20 varchar(20), d double, dt date);
insert into t1(id,i1,i2,c10,c30) values
(1,1,1,'a','123456789012345678901234567890'),
(2,1,2,'a','bb'),
(3,1,3,'b','bb'),
(4,1,3,'zz','5'),
(5,null,null,null,'1.0'),
(6,null,null,null,'a');
insert into t2(id,i1,i2,vc20,d) values
(1,1,1,'a',1.0),
(2,1,2,'a',1.1),
(5,null,null,'12345678901234567890',3),
(100,1,3,'zz',3),
(101,1,2,'bb',null),
(102,5,5,'',null),
(103,1,3,' a',null),
(104,1,3,'null',7.4);
-- no duplicates
select id,i1,i2 from t1 intersect select id,i1,i2 from t2 order by id DESC,i1,i2;
select id,i1,i2 from t1 intersect distinct select id,i1,i2 from t2 order by id DESC,i1,i2;
select id,i1,i2 from t1 intersect all select id,i1,i2 from t2 order by 1,2,3;
-- Only specify order by on some columns
select id,i1,i2 from t1 intersect select id,i1,i2 from t2 order by i2, id DESC;
select id,i1,i2 from t1 intersect all select id,i1,i2 from t2 order by 3 DESC, 1;
-- duplicates
select i1,i2 from t1 intersect select i1,i2 from t2 order by 1,2;
select i1,i2 from t1 intersect distinct select i1,i2 from t2 order by 1,2;
select i1,i2 from t1 intersect all select i1,i2 from t2 order by 1,2;
-- right side is empty
select i1,i2 from t1 intersect select i1,i2 from t2 where id = -1;
select i1,i2 from t1 intersect all select i1,i2 from t2 where id = -1;
-- left side is empty
select i1,i2 from t1 where id = -1 intersect all select i1,i2 from t2;
-- check precedence
select i1,i2 from t1 intersect all select i1,i2 from t2 intersect values(5,5),(1,3) order by 1,2;
(select i1,i2 from t1 intersect all select i1,i2 from t2) intersect values(5,5),(1,3) order by 1,2;
values(-1,-1,-1) union select id,i1,i2 from t1 intersect select id,i1,i2 from t2 order by 1,2,3;
select id,i1,i2 from t1 intersect select id,i1,i2 from t2 union values(-1,-1,-1) order by 1,2,3;
-- check conversions
select c10 from t1 intersect select vc20 from t2 order by 1;
select c30 from t1 intersect select vc20 from t2;
select c30 from t1 intersect all select vc20 from t2;
-- check insert intersect into table and intersect without order by
create table r( i1 integer, i2 integer);
insert into r select i1,i2 from t1 intersect select i1,i2 from t2;
select i1,i2 from r order by 1,2;
delete from r;
insert into r select i1,i2 from t1 intersect all select i1,i2 from t2;
select i1,i2 from r order by 1,2;
delete from r;
-- test LOB
create table t3( i1 integer, cl clob(64), bl blob(1M));
insert into t3 values
(1, cast( 'aa' as clob(64)), cast(X'01' as blob(1M)));
create table t4( i1 integer, cl clob(64), bl blob(1M));
insert into t4 values
(1, cast( 'aa' as clob(64)), cast(X'01' as blob(1M)));
select cl from t3 intersect select cl from t4 order by 1;
select bl from t3 intersect select bl from t4 order by 1;
-- invalid conversion
select tm from t1 intersect select dt from t2;
select c30 from t1 intersect select d from t2;
-- different number of columns
select i1 from t1 intersect select i1,i2 from t2;
-- ? in select list of intersect
select ? from t1 intersect select i1 from t2;
select i1 from t1 intersect select ? from t2;
-- except tests
select id,i1,i2 from t1 except select id,i1,i2 from t2 order by id,i1,i2;
select id,i1,i2 from t1 except distinct select id,i1,i2 from t2 order by id,i1,i2;
select id,i1,i2 from t1 except all select id,i1,i2 from t2 order by 1 DESC,2,3;
select id,i1,i2 from t2 except select id,i1,i2 from t1 order by 1,2,3;
select id,i1,i2 from t2 except all select id,i1,i2 from t1 order by 1,2,3;
select i1,i2 from t1 except select i1,i2 from t2 order by 1,2;
select i1,i2 from t1 except distinct select i1,i2 from t2 order by 1,2;
select i1,i2 from t1 except all select i1,i2 from t2 order by 1,2;
select i1,i2 from t2 except select i1,i2 from t1 order by 1,2;
select i1,i2 from t2 except all select i1,i2 from t1 order by 1,2;
-- right side is empty
select i1,i2 from t1 except select i1,i2 from t2 where id = -1 order by 1,2;
select i1,i2 from t1 except all select i1,i2 from t2 where id = -1 order by 1,2;
-- left side is empty
select i1,i2 from t1 where id = -1 except select i1,i2 from t2 order by 1,2;
select i1,i2 from t1 where id = -1 except all select i1,i2 from t2 order by 1,2;
-- Check precedence. Union and except have the same precedence. Intersect has higher precedence.
select i1,i2 from t1 except select i1,i2 from t2 intersect values(-1,-1) order by 1,2;
select i1,i2 from t1 except (select i1,i2 from t2 intersect values(-1,-1)) order by 1,2;
select i1,i2 from t2 except select i1,i2 from t1 union values(5,5) order by 1,2;
(select i1,i2 from t2 except select i1,i2 from t1) union values(5,5) order by 1,2;
select i1,i2 from t2 except all select i1,i2 from t1 except select i1,i2 from t1 where id = 3 order by 1,2;
(select i1,i2 from t2 except all select i1,i2 from t1) except select i1,i2 from t1 where id = 3 order by 1,2;
-- check conversions
select c10 from t1 except select vc20 from t2 order by 1;
select c30 from t1 except select vc20 from t2 order by 1;
select c30 from t1 except all select vc20 from t2;
-- check insert except into table and except without order by
insert into r select i1,i2 from t2 except select i1,i2 from t1;
select i1,i2 from r order by 1,2;
delete from r;
insert into r select i1,i2 from t2 except all select i1,i2 from t1;
select i1,i2 from r order by 1,2;
delete from r;
-- test LOB
select cl from t3 except select cl from t4 order by 1;
select bl from t3 except select bl from t4 order by 1;
-- invalid conversion
select tm from t1 except select dt from t2;
select c30 from t1 except select d from t2;
-- different number of columns
select i1 from t1 except select i1,i2 from t2;
-- ? in select list of except
select ? from t1 except select i1 from t2;
-- Invalid order by
select id,i1,i2 from t1 intersect select id,i1,i2 from t2 order by t1.i1;
select id,i1,i2 from t1 except select id,i1,i2 from t2 order by t1.i1;
-- views using intersect and except
create view view_intr_uniq as select id,i1,i2 from t1 intersect select id,i1,i2 from t2;
select * from view_intr_uniq order by 1 DESC,2,3;
create view view_intr_all as select id,i1,i2 from t1 intersect all select id,i1,i2 from t2;
select * from view_intr_all order by 1,2,3;
create view view_ex_uniq as select id,i1,i2 from t1 except select id,i1,i2 from t2;
select * from view_ex_uniq order by 1,2,3;
create view view_ex_all as select id,i1,i2 from t1 except all select id,i1,i2 from t2;
select * from view_ex_all order by 1 DESC,2,3;
-- intersect joins
select t1.id,t1.i1,t2.i1 from t1 join t2 on t1.id = t2.id
intersect select t1.id,t1.i2,t2.i2 from t1 join t2 on t1.id = t2.id;
|
CREATE TABLE tenant.person_password_reset (
id UUID NOT NULL,
token_hash TEXT NOT NULL,
person_id UUID NOT NULL,
expires_at TIMESTAMP NOT NULL,
created_at TIMESTAMP NOT NULL,
used_at TIMESTAMP,
CONSTRAINT person_password_reset_id PRIMARY KEY ("id"),
CONSTRAINT person_password_reset_person FOREIGN KEY ("person_id")
REFERENCES tenant.person("id") ON DELETE CASCADE
);
CREATE UNIQUE INDEX person_password_reset_token
ON tenant.person_password_reset(token_hash);
|
<filename>platinumGenomes/sql/sample-rare-pathenogenic-snps.sql
#standardSQL
--
-- Return SNPs for sample NA12878 that are:
-- annotated as 'pathogenic' in ClinVar
-- with observed population frequency less than 1%
--
WITH
sample_variants AS (
SELECT
REGEXP_EXTRACT(reference_name, r'chr(.+)') AS chr,
start AS start,
reference_bases,
alt,
call.call_set_name
FROM
`genomics-public-data.platinum_genomes.variants` v,
v.call call,
v.alternate_bases alt WITH OFFSET alt_offset
WHERE
call_set_name = 'NA12878'
-- Require that at least one genotype matches this alternate.
AND EXISTS (SELECT gt FROM UNNEST(call.genotype) gt WHERE gt = alt_offset+1) )
--
--
SELECT
call_set_name,
annots.Chr,
annots.Start,
Ref,
annots.Alt,
Func,
Gene,
PopFreqMax,
ExonicFunc,
ClinVar_SIG,
ClinVar_DIS
FROM
`silver-wall-555.TuteTable.hg19` AS annots
JOIN
sample_variants AS vars
ON
vars.chr = annots.Chr
AND vars.start = annots.Start
AND vars.reference_bases = annots.Ref
AND vars.alt = annots.Alt
WHERE
PopFreqMax <= 0.01
AND ClinVar_SIG LIKE '%pathogenic%'
AND NOT CLinVar_SIG LIKE '%non-pathogenic%'
ORDER BY
Chr,
Start,
Ref,
Alt,
call_set_name
|
<reponame>nenadnoveljic/tpt-oracle<gh_stars>100-1000
-- Copyright 2018 <NAME>. All rights reserved. More info at http://tanelpoder.com
-- Licensed under the Apache License, Version 2.0. See LICENSE.txt for terms & conditions.
--DROP TABLE t_intrablock_chained ;
CREATE TABLE t_intrablock_chained
TABLESPACE tanel_bigfile
AS SELECT
CAST('x' AS CHAR(100)) padding
, 0 col_1
, 0 col_2
, 0 col_3
, 0 col_4
, 0 col_5
, 0 col_6
, 0 col_7
, 0 col_8
, 0 col_9
, 0 col_10
, 0 col_11
, 0 col_12
, 0 col_13
, 0 col_14
, 0 col_15
, 0 col_16
, 0 col_17
, 0 col_18
, 0 col_19
, 0 col_20
, 0 col_21
, 0 col_22
, 0 col_23
, 0 col_24
, 0 col_25
, 0 col_26
, 0 col_27
, 0 col_28
, 0 col_29
, 0 col_30
, 0 col_31
, 0 col_32
, 0 col_33
, 0 col_34
, 0 col_35
, 0 col_36
, 0 col_37
, 0 col_38
, 0 col_39
, 0 col_40
, 0 col_41
, 0 col_42
, 0 col_43
, 0 col_44
, 0 col_45
, 0 col_46
, 0 col_47
, 0 col_48
, 0 col_49
, 0 col_50
, 0 col_51
, 0 col_52
, 0 col_53
, 0 col_54
, 0 col_55
, 0 col_56
, 0 col_57
, 0 col_58
, 0 col_59
, 0 col_60
, 0 col_61
, 0 col_62
, 0 col_63
, 0 col_64
, 0 col_65
, 0 col_66
, 0 col_67
, 0 col_68
, 0 col_69
, 0 col_70
, 0 col_71
, 0 col_72
, 0 col_73
, 0 col_74
, 0 col_75
, 0 col_76
, 0 col_77
, 0 col_78
, 0 col_79
, 0 col_80
, 0 col_81
, 0 col_82
, 0 col_83
, 0 col_84
, 0 col_85
, 0 col_86
, 0 col_87
, 0 col_88
, 0 col_89
, 0 col_90
, 0 col_91
, 0 col_92
, 0 col_93
, 0 col_94
, 0 col_95
, 0 col_96
, 0 col_97
, 0 col_98
, 0 col_99
, 0 col_100
, 0 col_101
, 0 col_102
, 0 col_103
, 0 col_104
, 0 col_105
, 0 col_106
, 0 col_107
, 0 col_108
, 0 col_109
, 0 col_110
, 0 col_111
, 0 col_112
, 0 col_113
, 0 col_114
, 0 col_115
, 0 col_116
, 0 col_117
, 0 col_118
, 0 col_119
, 0 col_120
, 0 col_121
, 0 col_122
, 0 col_123
, 0 col_124
, 0 col_125
, 0 col_126
, 0 col_127
, 0 col_128
, 0 col_129
, 0 col_130
, 0 col_131
, 0 col_132
, 0 col_133
, 0 col_134
, 0 col_135
, 0 col_136
, 0 col_137
, 0 col_138
, 0 col_139
, 0 col_140
, 0 col_141
, 0 col_142
, 0 col_143
, 0 col_144
, 0 col_145
, 0 col_146
, 0 col_147
, 0 col_148
, 0 col_149
, 0 col_150
, 0 col_151
, 0 col_152
, 0 col_153
, 0 col_154
, 0 col_155
, 0 col_156
, 0 col_157
, 0 col_158
, 0 col_159
, 0 col_160
, 0 col_161
, 0 col_162
, 0 col_163
, 0 col_164
, 0 col_165
, 0 col_166
, 0 col_167
, 0 col_168
, 0 col_169
, 0 col_170
, 0 col_171
, 0 col_172
, 0 col_173
, 0 col_174
, 0 col_175
, 0 col_176
, 0 col_177
, 0 col_178
, 0 col_179
, 0 col_180
, 0 col_181
, 0 col_182
, 0 col_183
, 0 col_184
, 0 col_185
, 0 col_186
, 0 col_187
, 0 col_188
, 0 col_189
, 0 col_190
, 0 col_191
, 0 col_192
, 0 col_193
, 0 col_194
, 0 col_195
, 0 col_196
, 0 col_197
, 0 col_198
, 0 col_199
, 0 col_200
, 0 col_201
, 0 col_202
, 0 col_203
, 0 col_204
, 0 col_205
, 0 col_206
, 0 col_207
, 0 col_208
, 0 col_209
, 0 col_210
, 0 col_211
, 0 col_212
, 0 col_213
, 0 col_214
, 0 col_215
, 0 col_216
, 0 col_217
, 0 col_218
, 0 col_219
, 0 col_220
, 0 col_221
, 0 col_222
, 0 col_223
, 0 col_224
, 0 col_225
, 0 col_226
, 0 col_227
, 0 col_228
, 0 col_229
, 0 col_230
, 0 col_231
, 0 col_232
, 0 col_233
, 0 col_234
, 0 col_235
, 0 col_236
, 0 col_237
, 0 col_238
, 0 col_239
, 0 col_240
, 0 col_241
, 0 col_242
, 0 col_243
, 0 col_244
, 0 col_245
, 0 col_246
, 0 col_247
, 0 col_248
, 0 col_249
, 0 col_250
, 0 col_251
, 0 col_252
, 0 col_253
, 0 col_254
, 0 col_255
, 0 col_256
, 0 col_257
, 0 col_258
, 0 col_259
, 0 col_260
FROM
DUAL
CONNECT BY LEVEL <= 1000000
/
|
INSERT INTO background_updates (ordering, update_name, progress_json) VALUES
(5822, 'users_have_local_media', '{}');
|
<reponame>suryatmodulus/tidb<gh_stars>1000+
CREATE TABLE `q_config` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`key` varchar(255) NOT NULL,
`value` varchar(255) NOT NULL,
`type` tinyint(4) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
CREATE TABLE blocked_guilds (
guild INTEGER PRIMARY KEY NOT NULL
);
CREATE TABLE blocked_users (
"user" INTEGER PRIMARY KEY NOT NULL
);
|
<filename>project.sql
-- phpMyAdmin SQL Dump
-- version 4.9.0.1
-- https://www.phpmyadmin.net/
--
-- Хост: 127.0.0.1:3306
-- Время создания: Фев 19 2020 г., 08:40
-- Версия сервера: 10.3.13-MariaDB-log
-- Версия PHP: 7.1.32
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 */;
--
-- База данных: `project`
--
-- --------------------------------------------------------
--
-- Структура таблицы `news`
--
CREATE TABLE `news` (
`ID` int(11) NOT NULL,
`text` text COLLATE utf8mb4_unicode_ci NOT NULL,
`time` int(11) NOT NULL,
`author` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
`img` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
`title` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
`short` varchar(300) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Структура таблицы `tags_link`
--
CREATE TABLE `tags_link` (
`ID` int(11) NOT NULL,
`tag_id` int(11) NOT NULL,
`model_text` text COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Структура таблицы `tegs`
--
CREATE TABLE `tegs` (
`ID` int(11) NOT NULL,
`title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Индексы сохранённых таблиц
--
--
-- Индексы таблицы `news`
--
ALTER TABLE `news`
ADD PRIMARY KEY (`ID`);
--
-- Индексы таблицы `tags_link`
--
ALTER TABLE `tags_link`
ADD PRIMARY KEY (`ID`);
--
-- Индексы таблицы `tegs`
--
ALTER TABLE `tegs`
ADD PRIMARY KEY (`ID`);
--
-- AUTO_INCREMENT для сохранённых таблиц
--
--
-- AUTO_INCREMENT для таблицы `news`
--
ALTER TABLE `news`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT для таблицы `tags_link`
--
ALTER TABLE `tags_link`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT для таблицы `tegs`
--
ALTER TABLE `tegs`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT;
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 */;
|
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`event_id` UUID NOT NULL,
`payload_id` INTEGER NOT NULL,
`event_timestamp` TIMESTAMP,
`event_type` VARCHAR(16),
`given_name` VARCHAR(16),
`surname` VARCHAR(16),
`email` VARCHAR(16),
PRIMARY KEY (`event_id`)
);
DROP TABLE IF EXISTS `user_snapshot`;
CREATE TABLE `user_snapshot` (
`snapshot_id` UUID NOT NULL,
`payload_id` INTEGER NOT NULL,
`snapshot_timestamp` TIMESTAMP,
`given_name` VARCHAR(16),
`surname` VARCHAR(16),
`email` VARCHAR(16),
PRIMARY KEY (`snapshot_id`)
);
|
-- --------------------------------------------------------
-- Хост: 127.0.0.1
-- Версия сервера: 5.7.24 - MySQL Community Server (GPL)
-- Операционная система: Win64
-- HeidiSQL Версия: 9.5.0.5332
-- --------------------------------------------------------
/*!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' */;
-- Дамп структуры для таблица sport-kostukovka03092020.ads
CREATE TABLE IF NOT EXISTS `ads` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`date` date NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`user_id` int(11) NOT NULL DEFAULT '0',
`status` int(11) NOT NULL DEFAULT '0',
`folder` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `ads_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.ads: ~2 rows (приблизительно)
/*!40000 ALTER TABLE `ads` DISABLE KEYS */;
INSERT INTO `ads` (`id`, `title`, `photo`, `content`, `date`, `created_at`, `updated_at`, `deleted_at`, `user_id`, `status`, `folder`, `slug`) VALUES
(18, 'Повышение цен на услуги', NULL, '<p>Обращаем Ваше внимание,что с 1 марта 2020 года повышаются цены на некоторые виды оказываемых услуг.</p>', '2020-02-07', '2020-02-07 07:33:54', '2020-02-07 07:34:43', NULL, 3, 1, 'Ad_N_18', 'povyshenie-cen-na-uslugi'),
(23, 'Начало сезона.', '1598274701-ОБЪЯВЛЕНИЕ 1 СЕНТЯБРЯ.png', '<p>Наконец-то открываемся. Приходите!</p>', '2020-08-24', '2020-08-24 13:11:41', '2020-08-24 13:11:41', NULL, 1, 1, 'Ad_N_19', 'nachalo-sezona');
/*!40000 ALTER TABLE `ads` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.banners
CREATE TABLE IF NOT EXISTS `banners` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`link` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `banners_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.banners: ~7 rows (приблизительно)
/*!40000 ALTER TABLE `banners` DISABLE KEYS */;
INSERT INTO `banners` (`id`, `banner`, `link`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, '1559824394-maxresdefault_live.jpg', 'https://1prof.by/', '2019-06-06 11:55:07', '2019-06-06 12:33:14', NULL),
(2, '1559822417-otdel.jpg', 'http://www.jdroo.by/', '2019-06-06 12:00:17', '2019-06-06 12:00:29', NULL),
(3, '1559826816-000028_277894_big.jpg', 'http://www.noc.by/', '2019-06-06 12:01:35', '2019-06-06 13:13:36', NULL),
(4, '1559826463-prezidentclub.jpg', 'http://www.sportclub.by/', '2019-06-06 12:02:24', '2019-06-06 13:07:43', NULL),
(5, '1559826176-sm.11jpg.jpg', 'http://www.mst.by/ru/', '2019-06-06 12:03:03', '2019-06-06 13:02:56', NULL),
(6, '1559825971-001498_752418.jpg', 'https://www.belarus.by/ru', '2019-06-06 12:03:37', '2019-06-06 12:59:31', NULL);
/*!40000 ALTER TABLE `banners` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.boards
CREATE TABLE IF NOT EXISTS `boards` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`photo` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `boards_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.boards: ~24 rows (приблизительно)
/*!40000 ALTER TABLE `boards` DISABLE KEYS */;
INSERT INTO `boards` (`id`, `name`, `photo`, `description`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, '<NAME>', '1556704170-gulevich.jpg', '<p><strong>Мастер Спорта СССР по классической борьбе.</strong> <br />\r\nМногократный чемпион БССР, призер первенства СССР.</p>', '2019-05-01 09:49:30', '2019-05-01 09:49:30', NULL),
(2, '<NAME>', '1556704327-metelskiy.jpg', '<p><strong>Первый мастер спорта в коллективе физкультуры стекольного завода по классической борьбе.</strong> <br />\r\nСеребряный призер 2-х молодежных игр СССР 1977 года, многократный чемпион БССР.</p>', '2019-05-01 09:52:07', '2019-05-01 09:52:07', NULL),
(3, '<NAME>', '1556704360-kopytov.jpg', '<p><strong>Заслуженный мастер спорта РБ по греко-римской борьбе.</strong> <br />\r\nБронзовый призер спартакиады народов СССР, неоднократный призер Европы и Мира. Участник Олимпийских игр в Атланте 1996 (США) и Сиднее 2000 (Австралия).</p>', '2019-05-01 09:52:40', '2019-05-01 09:52:40', NULL),
(4, '<NAME>', '1556704846-bondarev.jpg', '<p><strong>Мастер спорта СССР по греко-римской борьбе.</strong> <br />\r\nНеоднократный победитель первенств РБ.</p>', '2019-05-01 10:00:46', '2019-05-01 10:00:46', NULL),
(5, '<NAME>', '1556704894-yaxyaev.jpg', '<p><strong>Мастер спорта международного класса по грекоримской борьбе.</strong> <br />\r\nСеребряный призер первенства СССР и молодежного первенства Евроры.</p>', '2019-05-01 10:01:34', '2019-05-01 10:01:34', NULL),
(6, '<NAME>', '1557623078-stas.jpg', '<p><strong>Мастер спорта РБ.</strong> <br />\r\nНеоднократный победитель первенств РБ. Серебряный призер первенства мира.</p>', '2019-05-12 01:04:38', '2019-05-12 01:04:38', NULL),
(7, '<NAME>', '1557624167-ezepenko.jpg', '<p><strong>Мастер сопорта РБ по грекоримской борьбе.</strong> <br />\r\nДвукратный победитель первенства РБ, участник первенства мира.</p>', '2019-05-12 01:22:47', '2019-05-12 01:22:47', NULL),
(8, '<NAME>', '1557624209-klementsev.jpg', '<p><strong>Мастер спрота по греко-римской борьбе.</strong> <br />\r\nПобедитель первенства РБ.</p>', '2019-05-12 01:23:29', '2019-05-12 01:23:29', NULL),
(9, '<NAME>', '1557624247-karpaev.jpg', '<p><strong>Мастер спрота по греко-римской борьбе.</strong> <br />\r\nНеоднократный победитель первенств РБ среди юношей и юниоров. Участник первенства мира.</p>', '2019-05-12 01:24:07', '2019-05-12 01:24:07', NULL),
(10, '<NAME>', '1557624961-yakyshevskiy.jpg', '<p><strong>Заслуженный тренер БССР.</strong> <br />\r\nТренер, который подготовил не одного победителя и призера Республиканских и Международных соревнований.</p>', '2019-05-12 01:36:01', '2019-05-12 01:36:01', NULL),
(11, '<NAME>', '1557625003-nevskiy.jpg', '<p><strong>Мастер спорта международного класса по легкой атлетике (многоборье).</strong> <br />\r\nЧлен сборной команды СССР, экс.рекордмен по Зимнему л/атлетическому многоборью, участник Олимпийских игр.</p>', '2019-05-12 01:36:43', '2019-05-12 01:36:43', NULL),
(12, '<NAME>', '1557625038-serduk.jpg', '<p><strong>Мастер спорта РБ по легкой атлетике (копье).</strong> <br />\r\nСеребряный призер молодежного первенства Европы, неоднократная чемпионка Республики Беларусь.</p>', '2019-05-12 01:37:18', '2019-05-12 01:37:18', NULL),
(13, '<NAME>', '1557625067-fedorenko.jpg', '<p><strong>Мастер спорта СССР по легкой атлетике (многоборье).</strong> <br />\r\nПобедительница первенства СССР среди юниорок, рекордсменка СССР.</p>', '2019-05-12 01:37:47', '2019-05-12 01:37:47', NULL),
(14, '<NAME>', '1557625097-yatchenko.jpg', '<p><strong>Заслуженный мастер спорта РБ по легкой атлетике (диск).</strong> <br />\r\nБронзовый призер Олимпийских игр: Сидней 2000(Австралия), Афины 2004(Греция). Участница Олимпийских игр в Атланте 1996(США) и Пекине 2008(Китай). Чемпионка мира.</p>', '2019-05-12 01:38:17', '2019-05-12 01:38:17', NULL),
(15, '<NAME>', '1557625133-boldovskaya.jpg', '<p><strong>Мастер спорта СССР по легкой атлетике (многоборье).</strong> <br />\r\nСеребряный призер Молодежных игр СССР 1977 г. Экс рекорсменка среди юниоров.</p>', '2019-05-12 01:38:53', '2019-05-12 01:38:53', NULL),
(16, '<NAME>', '1557625167-kupriyanova.jpg', '<p><strong>Мастер спорта международного класса по легкой атлетике (диск).</strong> <br />\r\nНеоднократная чемпионка РБ, бронзовый призер молодежных первенств Европы.</p>', '2019-05-12 01:39:27', '2019-05-12 01:39:27', NULL),
(17, '<NAME>', '1557625204-kupriyanov.jpg', '<p><strong>Мастер спорта по легкой атлетике (многоборье).</strong></p>', '2019-05-12 01:40:04', '2019-05-12 01:40:04', NULL),
(18, '<NAME>', '1557625268-yakushev.jpg', '<p><strong>Мастер спорта СССР по плаванию.</strong> <br />\r\nПервый выполнивший норматив мастера спорта по плаванию в поселке Костюковка</p>', '2019-05-12 01:41:08', '2019-05-12 01:41:08', NULL),
(19, '<NAME>', '1557625305-shubenok.jpg', '<p><strong>Заслуженный мастер спорта РБ по современному пятиборью.</strong> <br />\r\nНеоднократная чемпионка Мира и Европы. Участница Олимпийских игр в Сиднее 2000 (Австралия) – 6 место.</p>', '2019-05-12 01:41:45', '2019-05-12 01:41:45', NULL),
(20, '<NAME>', '1557625333-aksenov.jpg', '<p><strong>Мастер спорта по современному пятиборью.</strong> <br />\r\nПобедитель первенств РБ, призер юношеского первенства Европы.</p>', '2019-05-12 01:42:13', '2019-05-12 01:42:13', NULL),
(21, '<NAME>', '1557625361-chueshkov.jpg', '<p><strong>Мастер спорта по современному пятиборью.</strong></p>', '2019-05-12 01:42:41', '2019-05-12 01:42:41', NULL),
(22, '<NAME>', '1557625395-ivanov.jpg', '<p><strong>Заслуженный мастер спорта СССР по баскетболу.</strong> <br />\r\nЧемпион СССР, чемпион Европы, обладатель кубка Европы, призер чемпионата мира.</p>', '2019-05-12 01:43:15', '2019-05-12 01:43:15', NULL),
(23, '<NAME>', '1557625447-zelezhyakova.jpg', '<p><strong>Мастер спорта международного класса по волейболу.</strong> <br />\r\nКапитан "Комуналка" г. Минск. Бронзовый призер чемпионата СССР, победитель розыгрыша Кубка обладателей кубка.</p>', '2019-05-12 01:44:07', '2019-05-12 01:44:07', NULL);
/*!40000 ALTER TABLE `boards` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.coaches
CREATE TABLE IF NOT EXISTS `coaches` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`photo` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`section_id` int(11) NOT NULL,
`work` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `coaches_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.coaches: ~17 rows (приблизительно)
/*!40000 ALTER TABLE `coaches` DISABLE KEYS */;
INSERT INTO `coaches` (`id`, `name`, `photo`, `description`, `section_id`, `work`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, '<NAME>', '1556195099-veretennikov.jpg', '1979 года рождения. Заместитель директора СДЮШОР, образование высшее (окончил Академию физического воспитания и спорта РБ в 2002 году), работает в СДЮШОР с 1998 года. В 2014 году прошел курсы повышения квалификации в ИППК БГУФК. Присвоена первая тренерско-преподавательская категория и первая категория судья по спорту.', 1, 'Да', '2019-04-25 12:24:59', '2019-04-25 13:22:12', NULL),
(2, '<NAME>', '1556195145-chueshkov.jpg', '1975 года рождения. Образование высшее (окончил Академию физического воспитания и спорта РБ в 2002 году), работает в СДЮШОР с 2002 года. В 2014 году прошел курсы повышения квалификации в ИППК БГУФК. Присвоена первая тренерско-преподавательская категория и первая категория судья по спорту.', 1, 'Да', '2019-04-25 12:25:45', '2019-04-25 13:22:39', NULL),
(3, '<NAME>', '1556195201-volchun.jpg', '1992 года рождения. Образование среднее специальное (окончила Гомельское училище олимпийского резерва в 2011 году), на данный момент студентка Гомельского университета им.Ф.Скарины. Работает в СДЮШОР с 2010 года. Присвоена вторая тренерско-преподавательская категория и первая категория судья по спорту.', 1, 'Да', '2019-04-25 12:26:41', '2019-04-25 13:23:09', NULL),
(4, '<NAME>', '1556264360-kopytov.jpg', '<p>1965 года рождения. Высшее физкультурное образование. Заслуженный мастер спорта Республики Беларусь по греко-римской борьбе, тренер-преподаватель высшей категории. Работает в СДЮШОР с 2002 года.</p>', 2, 'Да', '2019-04-26 07:39:20', '2019-04-26 07:39:20', NULL),
(5, '<NAME>', '1556264442-varivoda.jpg', '<p>1979 года рождения. Высшее физкультурное образование. Кандидат в мастера спорта по греко-римской борьбе, тренер-преподаватель высшей категории, судья международной категории. Работает в СДЮШОР с 1998 года. В 2014 году прошел курсы повышения квалификации в ИППК БГУФК.</p>', 2, 'Да', '2019-04-26 07:40:42', '2019-04-26 07:40:42', NULL),
(6, '<NAME>', '1556264480-klementsev.jpg', '<p>1982 года рождения. Высшее физкультурное образование, тренер-преподаватель второй категории. Работает в СДЮШОР с 2002 года.</p>', 2, 'Да', '2019-04-26 07:41:21', '2019-04-26 07:41:21', NULL),
(7, 'Клеменцев <NAME>', '1556264541-klementsev_dm.jpg', '<p>1990 года рождения. Высшее физкультурное образование, тренер-преподаватель второй категории. Работает в СДЮШОР с 2010 года. В 2017 году прошел курсы повышения квалификации в ИППК БГУФК. Мастер спорта Республики Беларусь.</p>', 2, 'Да', '2019-04-26 07:42:21', '2019-04-26 07:42:21', NULL),
(8, '<NAME>', '1556264643-gognidthe.jpg', '<p>1992 г. р. Мастер спорта Республики Беларусь по греко-римской борьбе. Образование высшее физкультурное. Окончил "Гомельский ГГУ им. Ф. Скорины" в 2015 году. Работает в СДЮШОР с 2018 года.</p>', 2, 'Да', '2019-04-26 07:44:03', '2019-04-26 07:44:03', NULL),
(9, '<NAME>', '1556264945-kupriyanov.jpg', '<p>1973 года рождения. Высшее физкультурное образование. Тренер-преподаватель высшей категории по легкой атлетике. Работает в СДЮШОР с 1998 года.</p>', 3, 'Да', '2019-04-26 07:49:05', '2019-04-26 07:49:05', NULL),
(10, '<NAME>', '1556264994-katolikov.jpg', '<p>1985 года рождения. Высшее физкультурное образование. Тренер-преподаватель первой категории по легкой атлетике. Работает в СДЮШОР с 2004 года.</p>', 3, 'Да', '2019-04-26 07:49:54', '2019-04-26 07:49:54', NULL),
(11, '<NAME>', '1556265027-starovoytova.jpg', '<p>1974 года рождения. Высшее физкультурное образование. Тренер-преподаватель первой категории по легкой атлетике. Работала в СДЮШОР с 1998 г. по 2016 г.</p>', 3, 'Нет', '2019-04-26 07:50:27', '2019-04-26 07:52:00', NULL),
(12, '<NAME>', '1556265112-klementseva.jpg', '<p>1992 года рождения. Высшее физкультурное образование, тренер-преподаватель второй категории по легкой атлетике. Работала в СДЮШОР с 2016 г. по 2018 г.</p>', 3, 'Нет', '2019-04-26 07:51:52', '2019-04-26 09:51:20', NULL),
(13, 'Подлобников <NAME>', '1558608729-podlobnikov.jpg', '<p>1994 года рождения. Мастер спорта по тяжелой атлетике. Среднее специальное физкультурное образование, тренер-преподаватель второй категории. Работает в СДЮШОР с 2014 года.</p>', 4, 'Нет', '2019-05-23 10:52:09', '2019-05-23 10:55:30', NULL),
(14, '<NAME>', '1558614488-petrishina.jpg', '<p>1985 г.р. Тренер-преподаватель «СДЮШОР ППО ОАО «Гомельстекло» по волейболу. Образование высшее – закончила ГГУ им.Ф.Скарины в 2010 году. Вторая тренерская категория. Работает в СДЮШОР с февраля 2015 года.</p>', 6, 'Да', '2019-05-23 12:28:08', '2019-05-23 12:28:08', NULL),
(15, '<NAME>', '1558615277-kravchenko.jpg', '<p>1982 года рождения. Мастер спорта РБ по тяжелой атлетике. Среднее специальное физкультурное образование, тренер-преподаватеь высшей категории. Работает в СДЮШОР с 2004 года.</p>', 4, 'Да', '2019-05-23 12:41:17', '2019-05-23 12:41:17', NULL),
(16, '<NAME>', '1558615330-blashkevich.jpg', '<p>1974 года рождения. Высшее физкультурное образование. Тренер-преподаватель по футболу первой категории. В 2015 году прошел курсы повышения квалификации в ИППК БГУФК. Работал в СДЮШОР с 1996 года по 2020 год.</p>', 5, 'Нет', '2019-05-23 12:42:10', '2020-09-15 09:55:05', NULL);
/*!40000 ALTER TABLE `coaches` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.comments
CREATE TABLE IF NOT EXISTS `comments` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`text` text COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` int(11) DEFAULT NULL,
`post_id` int(11) NOT NULL,
`status` int(11) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `comments_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.comments: ~6 rows (приблизительно)
/*!40000 ALTER TABLE `comments` DISABLE KEYS */;
INSERT INTO `comments` (`id`, `text`, `user_id`, `post_id`, `status`, `created_at`, `updated_at`, `deleted_at`, `name`) VALUES
(4, 'Артем, так держать!', NULL, 9, 1, '2019-10-03 08:56:02', '2019-10-03 08:57:10', NULL, 'Виктория'),
(5, 'Спорт это круто!!!', NULL, 37, 1, '2019-10-15 07:15:13', '2019-10-15 07:17:31', NULL, 'Александр'),
(7, 'Молодцы! Умеете организовать деткам праздник.', 1, 27, 1, '2019-10-15 09:22:53', '2019-10-15 10:02:50', NULL, NULL),
(14, 'Молодцы! Так держать!', NULL, 54, 1, '2020-03-10 09:36:13', '2020-03-10 09:42:24', NULL, 'Данила'),
(19, 'Молодцы, что делаете такие турниры!', NULL, 53, 1, '2020-10-09 12:04:03', '2020-10-14 04:46:50', NULL, '<NAME>'),
(20, 'Отлично! Просто супер!', NULL, 55, 1, '2020-10-09 12:47:32', '2020-10-14 06:13:20', NULL, 'Kaylinf'),
(21, 'Да, да, молодцы!', 1, 55, 0, '2020-10-14 06:15:20', '2020-10-14 06:15:24', NULL, NULL),
(22, 'Ух и нравится мне борьба!!!', 1, 54, 1, '2020-10-15 10:04:36', '2020-10-15 10:06:04', NULL, NULL);
/*!40000 ALTER TABLE `comments` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.contacts
CREATE TABLE IF NOT EXISTS `contacts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`phone` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `contacts_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.contacts: ~0 rows (приблизительно)
/*!40000 ALTER TABLE `contacts` DISABLE KEYS */;
/*!40000 ALTER TABLE `contacts` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.directors
CREATE TABLE IF NOT EXISTS `directors` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`photo` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`department` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `directors_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.directors: ~6 rows (приблизительно)
/*!40000 ALTER TABLE `directors` DISABLE KEYS */;
INSERT INTO `directors` (`id`, `name`, `photo`, `description`, `created_at`, `updated_at`, `deleted_at`, `department`) VALUES
(1, '<NAME>', '1556701880-freidlin.jpg', '<p>Первый директор Спортивно-оздоровительного комплекса. Тренер-преподаватель по классической борьбе. Заслуженный тренер РБ.</p>', '2019-05-01 09:11:20', '2019-05-01 09:11:20', NULL, 'Директор СОК'),
(2, '<NAME>', '1556701520-firer.jpg', '<p>Второй директор ГУ «Физкультурно-оздоровительного центра « КОСТЮКОВКА-СПОРТ».</p>', '2019-05-01 09:05:20', '2019-05-01 09:05:20', NULL, 'Директор СОК'),
(3, '<NAME>', '1556527337-cherbakov.jpg', '<p>Третий директор ГУ «Физкультурно-оздоровительного центра «КОСТЮКОВКА-СПОРТ». Утвержден на должность в 2016 году.</p>', '2019-04-29 08:42:17', '2019-05-01 08:57:26', NULL, 'Директор СОК'),
(4, '<NAME>', '1557625585-chemarev.jpg', '<p>Первый директор Детской Юношеской Спортивной Школы.</p>', '2019-05-12 01:46:25', '2019-05-12 01:46:25', NULL, 'Директор СДЮШОР'),
(5, '<NAME>', '1556526234-paevsky.jpg', '<p>Директор Специализированной Детско-Юношеской Школы Олимпийского Резерва ППО ОАО "Гомельстекло".</p>', '2019-04-29 08:23:54', '2019-05-01 09:04:01', NULL, 'Директор СДЮШОР');
/*!40000 ALTER TABLE `directors` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.gomelglasses
CREATE TABLE IF NOT EXISTS `gomelglasses` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`photo` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`sport` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `gomelglasses_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.gomelglasses: ~41 rows (приблизительно)
/*!40000 ALTER TABLE `gomelglasses` DISABLE KEYS */;
INSERT INTO `gomelglasses` (`id`, `photo`, `description`, `sport`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, '1556761224-img_tennis_1.jpg', '<p>Групповая игра - мужчины. В защите участник из теплосилового цеха.</p>', 'Настольный теннис', '2019-05-02 01:40:24', '2019-05-02 01:40:24', NULL),
(2, '1556762439-img_tennis_6.jpg', '<p>Групповая игра - мужчины. Команды охрана - составной цех.</p>', 'Настольный теннис', '2019-05-02 02:00:39', '2019-05-02 02:00:39', NULL),
(3, '1556762473-img_tennis_4.jpg', '<p>1/4 финала - девушки. ЦПП-ЦПС.</p>', 'Настольный теннис', '2019-05-02 02:01:14', '2019-05-02 02:01:14', NULL),
(4, '1556762503-img_tennis_9.jpg', '<p>1/4 финала - мужчины. Настрой на подачу. Команда охраны.</p>', 'Настольный теннис', '2019-05-02 02:01:43', '2019-05-02 02:01:43', NULL),
(5, '1556765964-img_tennis_8.jpg', '<p>В защите Крумкачёв С.Г. капитан ЦПС.</p>', 'Настольный теннис', '2019-05-02 02:59:24', '2019-05-02 02:59:24', NULL),
(6, '1556765988-img_tennis_5.jpg', '<p>1/4 финала - мужчины. Составной цех - охрана. Подача с подкруткой.</p>', 'Настольный теннис', '2019-05-02 02:59:48', '2019-05-02 02:59:48', NULL),
(7, '1556766009-img_tennis_7.jpg', '<p>Второе место - команда ЦПС.</p>', 'Настольный теннис', '2019-05-02 03:00:09', '2019-05-02 03:00:09', NULL),
(8, '1556766033-img_tennis_2.jpg', '<p>Победители 2013 года - команда транспортного цеха.</p>', 'Настольный теннис', '2019-05-02 03:00:33', '2019-05-02 03:00:33', NULL),
(9, '1556766055-img_tennis_3.jpg', '<p>3-е место - команда составного цеха.</p>', 'Настольный теннис', '2019-05-02 03:00:55', '2019-05-02 03:00:55', NULL),
(10, '1556766087-img_skiing_1.jpg', '<p>Сборные цехов и участков на построении.</p>', 'Лыжи', '2019-05-02 03:01:27', '2019-05-02 03:01:27', NULL),
(11, '1558690582-img_swiming_1.jpg', '<p>Парад - открытие. Участники перед началом заплывов.</p>', 'Плавание', '2019-05-24 09:36:22', '2019-05-24 09:36:22', NULL),
(12, '1558690831-img_swiming_2.jpg', '<p>Очередной заплыв у мужчин.</p>', 'Плавание', '2019-05-24 09:40:31', '2019-05-24 09:40:31', NULL),
(13, '1558690857-img_swiming_3.jpg', '<p>Победители - команда ЦПС.</p>', 'Плавание', '2019-05-24 09:40:58', '2019-05-24 09:40:58', NULL),
(14, '1558691103-img_skiing_2.jpg', '<p>Первый старт - Девушки вперёд!!!</p>', 'Лыжи', '2019-05-24 09:45:03', '2019-05-24 09:45:03', NULL),
(15, '1558691122-img_skiing_3.jpg', '<p>Сильнейший забег девушек.</p>', 'Лыжи', '2019-05-24 09:45:22', '2019-05-24 09:45:22', NULL),
(16, '1558691164-img_skiing_4.jpg', '<p>На старт выходят мужчины.</p>', 'Лыжи', '2019-05-24 09:46:04', '2019-05-24 09:46:04', NULL),
(17, '1558691185-img_skiing_5.jpg', '<p>Судьи принимают решение опоздавшим дать шанс проявить себя.</p>', 'Лыжи', '2019-05-24 09:46:25', '2019-05-24 09:46:25', NULL),
(18, '1558691202-img_skiing_6.jpg', '<p>Победитель лыжных гонок:<br />\r\nЮрий Байков.</p>', 'Лыжи', '2019-05-24 09:46:42', '2019-05-24 09:46:42', NULL),
(19, '1558702374-img_volleyball_1.jpg', '<p>СЗАО "Гомельский стеклотарный завод" и ОАО "Гомельстекло" перед финальной игрой.</p>', 'Волейбол', '2019-05-24 12:52:54', '2019-05-24 12:52:54', NULL),
(20, '1558702396-img_volleyball_2.jpg', '<p>Дружественное рукопожатие.</p>', 'Волейбол', '2019-05-24 12:53:16', '2019-05-24 12:53:16', NULL),
(21, '1558702419-img_volleyball_3.jpg', '<p>Фото директоров на память:<br />\r\n<NAME> - ОАО "Гомельстекло";<br />\r\nВ.<NAME> - СЗАО "ГСЗ".</p>', 'Волейбол', '2019-05-24 12:53:39', '2019-05-24 12:53:39', NULL),
(22, '1558702444-img_volleyball_4.jpg', '<p><NAME>езняцкий готов к принятию подачи!</p>', 'Волейбол', '2019-05-24 12:54:04', '2019-05-24 12:54:04', NULL),
(23, '1558702469-img_volleyball_5.jpg', '<p>Соперники обменялись парочкой забитых голов.</p>', 'Волейбол', '2019-05-24 12:54:29', '2019-05-24 12:54:29', NULL),
(24, '1558702501-img_volleyball_6.jpg', '<p><NAME> готов атаковать!!!</p>', 'Волейбол', '2019-05-24 12:55:01', '2019-05-24 12:55:01', NULL),
(25, '1558702532-img_volleyball_7.jpg', '<p>Вручение Павлу Шипицину почётной грамоты.</p>', 'Волейбол', '2019-05-24 12:55:32', '2019-05-24 12:55:32', NULL),
(26, '1558702565-img_volleyball_8.jpg', '<p>Сборная СЗАО "Гомельский стеклотарный завод" занимает второе место.</p>', 'Волейбол', '2019-05-24 12:56:05', '2019-05-24 12:56:05', NULL),
(27, '1558702585-img_volleyball_9.jpg', '<p>Сборная Заводоуправления ОАО"Гомельстекло", команда-победитель 2013 года</p>', 'Волейбол', '2019-05-24 12:56:25', '2019-05-24 12:56:25', NULL),
(28, '1558702953-img_light_athletics_1_1.jpg', '<p><NAME>ерезняцкий идёт на личный рекорд.</p>', 'Многоборье', '2019-05-24 13:02:33', '2019-05-24 13:02:33', NULL),
(29, '1558702972-img_light_athletics_2.jpg', '<p>Финиш. Дистанция один киллометр у мужчин.</p>', 'Многоборье', '2019-05-24 13:02:52', '2019-05-24 13:02:52', NULL),
(30, '1558702995-img_light_athletics_3.jpg', '<p>Девушки перед началом забега на 500 метров.</p>', 'Многоборье', '2019-05-24 13:03:15', '2019-05-24 13:03:15', NULL),
(31, '1558703134-chess_1.jpg', '<p>Сборные Заводоуправления и Охраны в задумчивости стараются друг друга обыграть.</p>', 'Шахматы', '2019-05-24 13:05:34', '2019-05-24 13:05:34', NULL),
(32, '1558703156-chess_2.jpg', '<p>Борьба команд Электроцех - Промпереработка.</p>', 'Шахматы', '2019-05-24 13:05:56', '2019-05-24 13:05:56', NULL),
(33, '1558703173-chess_3.jpg', '<p>Девушки не отстают от мужчин и с достоинством проводят поединки.</p>', 'Шахматы', '2019-05-24 13:06:13', '2019-05-24 13:06:13', NULL),
(34, '1558703194-chess_4.jpg', '<p>Промпереработка - по моему у меня всё получилось!</p>', 'Шахматы', '2019-05-24 13:06:34', '2019-05-24 13:06:34', NULL),
(35, '1558703212-chess_5.jpg', '<p>Гомельский стеклотарный завод - Электроцех. Кто же победит в этой схватке?</p>', 'Шахматы', '2019-05-24 13:06:52', '2019-05-24 13:06:52', NULL),
(36, '1558703229-chess_6.jpg', '<p>Команда Заводоуправления в очередной раз доказывает, что им нет равных в этом виде спорта.</p>', 'Шахматы', '2019-05-24 13:07:09', '2019-05-24 13:07:09', NULL),
(37, '1558703300-darts_1.jpg', '<p>Участница из подразделения охраны.</p>', 'Дартс', '2019-05-24 13:08:20', '2019-05-24 13:08:20', NULL),
(38, '1558703316-darts_2.jpg', '<p>Разминочные броски у девушек перед началом соревнований.</p>', 'Дартс', '2019-05-24 13:08:36', '2019-05-24 13:08:36', NULL),
(39, '1558703331-darts_3.jpg', '<p><NAME> (в майке) - лучший дартист цеховой спартакиады.</p>', 'Дартс', '2019-05-24 13:08:51', '2019-05-24 13:08:51', NULL);
/*!40000 ALTER TABLE `gomelglasses` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.histories
CREATE TABLE IF NOT EXISTS `histories` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`photo` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `histories_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.histories: ~11 rows (приблизительно)
/*!40000 ALTER TABLE `histories` DISABLE KEYS */;
INSERT INTO `histories` (`id`, `title`, `photo`, `description`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'Секция греко-римской борьбы', '1556694246-img_2.jpg', '<p>Победители и призеры по греко-римской турнира памяти Героя Советского Союза П.Х.Басенкова. учащиеся КДЮСШ (1985 г.)</p>', '2019-05-01 07:04:06', '2019-05-01 07:04:06', NULL),
(2, 'Команда по волейболу', '1557622333-img_3.jpg', '<p>Заводская женская сборная по волейболу «Алмаз»</p>', '2019-05-12 00:52:13', '2019-05-12 00:52:13', NULL),
(3, 'Парад', '1557622408-img_5.jpg', '<p>Парад открытие открытого Республиканского турнира по волейболу памяти ГСС <NAME> (1983 г)</p>', '2019-05-12 00:53:28', '2019-05-12 00:53:28', NULL),
(4, 'Спартакиада', '1557622463-img_6.jpg', '<p>Спартакиада завода по легкой атлетике. Прыжок в длину. Очередная попытка <NAME>.</p>', '2019-05-12 00:54:23', '2019-05-12 00:57:15', NULL),
(5, 'Спартакиада', '1557622546-img_7.jpg', '<p>Открытие заводской спартакиады среди цехов и подразделений</p>', '2019-05-12 00:55:46', '2019-05-12 00:55:46', NULL),
(6, 'Спартакиада', '1557622705-img_8.jpg', '<p>Прыжок в длину с места. Заводская спартакиада среди руководителей</p>', '2019-05-12 00:58:25', '2019-05-12 00:58:25', NULL),
(7, 'Спартакиада', '1557622743-img_10.jpg', '<p>На дистанции легкоатлетического забега - Тать<NAME></p>', '2019-05-12 00:59:03', '2019-05-12 00:59:03', NULL),
(8, 'Хоккей', '1557622807-img_12.jpg', '<p>Товарищеская игра по хоккею между командами: «Бролерная» - «Алмаз» (1985 г.)</p>', '2019-05-12 01:00:07', '2019-05-12 01:00:07', NULL),
(9, 'Футбол', '1557622851-img_13.jpg', '<p>Чемпионы по футболу среди заводских команд. Сборная механического цеха</p>', '2019-05-12 01:00:51', '2019-05-12 01:00:51', NULL),
(10, 'Футбол', '1557622886-img_14.jpg', '<p>Сборная команда «Алмаз» по футболу. Чемпионат Республики Беларусь первая лига (1986 г.)</p>', '2019-05-12 01:01:26', '2019-05-12 01:01:26', NULL);
/*!40000 ALTER TABLE `histories` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.mains
CREATE TABLE IF NOT EXISTS `mains` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`photo` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci,
`block` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`class` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`position` int(11) DEFAULT NULL,
`for_indicators` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `mains_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.mains: ~17 rows (приблизительно)
/*!40000 ALTER TABLE `mains` DISABLE KEYS */;
INSERT INTO `mains` (`id`, `photo`, `description`, `block`, `created_at`, `updated_at`, `deleted_at`, `class`, `position`, `for_indicators`) VALUES
(4, '1555399659-8fShpI05n0w.jpg', NULL, 'Слайд', '2019-04-16 07:27:39', '2019-04-16 07:37:51', NULL, 'active', 45, 0),
(5, '1555400285-IMG_20190320_103634.jpg', NULL, 'Слайд', '2019-04-16 07:38:06', '2019-05-31 13:03:16', NULL, NULL, 50, 1),
(6, '1555400306-IMG-956e2490dad534950e1194cb3a2b1ec5-V.jpg', NULL, 'Слайд', '2019-04-16 07:38:26', '2019-04-16 07:38:26', NULL, NULL, 30, 2),
(7, '1555412575-PsH87PFRKbo.jpg', NULL, 'Слайд', '2019-04-16 11:02:55', '2019-04-16 11:02:55', NULL, NULL, 40, 3),
(8, '1556015824-face2.jpg', '<div>Государственное Учреждение “Физкультурно-оздоровительный центр\r\n<h6 class="h6-responsive d-inline">“КОСТЮКОВКА-СПОРТ”</h6>\r\nрасполагает стандартным <em>футбольным полем</em> с беговыми дорожками, где в летнее время проводятся игры Чемпионата города, области, Кубка РБ по футболу, а также занятия легкой атлетикой и пляжному волейболу.</div>\r\n\r\n<div> </div>\r\n\r\n<div>В здании “Физкультурно-оздоровительного центра” имеются<em> два спортивных зала.</em> В одном зале, площадью 32×18 м,ежегодно проводятся занятия по футболу, волейболу, легкой атлетике. Во втором зале, площадью 12×8 м, проводятся занятия по греко-римской борьбе.</div>\r\n\r\n<div> </div>\r\n\r\n<div>На втором этаже располагается <em>малый спортивный зал </em>(площадью 16×8 м), где стоят спортивные тренажеры и столы для настольного тенниса. В зале тренируются воспитанники СДЮШОР, проводятся занятия по шейпингу.</div>\r\n\r\n<div> </div>\r\n\r\n<div>В состав “Физкультурно-оздоровительного центра” входит стандартный <em>плавательный бассейн</em> длинной 25 м, с шестью дорожками, двумя вышками, женской и мужской саунами. Работают инструкторский и тренерско-преподавательский составы.</div>\r\n\r\n<div> </div>\r\n\r\n<div>На третьем этаже здания расположился <em>бильярдный зал</em> с двумя игровыми столами, где можно за умеренную плату поиграть в свое удовольствие.</div>', 'Сооружение', '2019-04-23 10:37:04', '2019-06-11 08:58:39', NULL, NULL, 0, NULL),
(9, '1556021198-face3.jpg', NULL, 'Сооружение', '2019-04-23 12:06:38', '2019-04-23 12:10:15', NULL, NULL, 0, NULL),
(10, '1556021211-face4.jpg', NULL, 'Сооружение', '2019-04-23 12:06:51', '2019-04-23 12:10:25', NULL, NULL, 0, NULL),
(11, '1556021223-face5.jpg', NULL, 'Сооружение', '2019-04-23 12:07:04', '2019-04-23 12:10:38', NULL, NULL, 0, NULL),
(12, '1556021238-face7.jpg', NULL, 'Сооружение', '2019-04-23 12:07:18', '2019-04-23 12:10:48', NULL, NULL, 0, NULL),
(13, '1556021257-Img_2.jpg', NULL, 'Сооружение', '2019-04-23 12:07:37', '2019-04-23 12:10:59', NULL, NULL, 0, NULL),
(14, '1556021267-Img_3.jpg', NULL, 'Сооружение', '2019-04-23 12:07:47', '2019-04-23 12:11:07', NULL, NULL, 0, NULL),
(15, '1556021288-Img_4.jpg', NULL, 'Сооружение', '2019-04-23 12:08:08', '2019-04-23 12:11:17', NULL, NULL, 0, NULL),
(16, '1556021309-Img_6.jpg', NULL, 'Сооружение', '2019-04-23 12:08:29', '2019-04-23 12:11:27', NULL, NULL, 0, NULL),
(17, '1556021343-table_tennis.jpg', NULL, 'Сооружение', '2019-04-23 12:09:03', '2019-04-23 12:11:37', NULL, NULL, 0, NULL),
(18, '1559304773-261.jpg', NULL, 'Слайд', '2019-05-31 12:12:53', '2019-05-31 12:12:53', NULL, NULL, 50, 4),
(19, '1559304929-10-12-31-IMG_3645.JPG', NULL, 'Слайд', '2019-05-31 12:15:29', '2019-05-31 12:15:29', NULL, NULL, 50, 5);
/*!40000 ALTER TABLE `mains` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.menus
CREATE TABLE IF NOT EXISTS `menus` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`drop` tinyint(1) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `menus_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.menus: ~7 rows (приблизительно)
/*!40000 ALTER TABLE `menus` DISABLE KEYS */;
INSERT INTO `menus` (`id`, `title`, `slug`, `drop`, `created_at`, `updated_at`, `deleted_at`) VALUES
(9, 'Услуги', 'uslugi', 0, '2019-03-17 08:49:16', '2019-03-17 12:29:19', NULL),
(10, 'Расписание', 'raspisanie', 0, '2019-03-17 08:49:33', '2019-03-17 08:49:33', NULL),
(11, 'Новости', 'novosti', 0, '2019-03-17 08:51:36', '2019-03-17 08:51:36', NULL),
(14, 'Контакты', 'kontakty', 0, '2019-03-17 08:52:27', '2019-03-17 08:52:27', NULL),
(15, 'Костюковские Лужники', 'kostyukovskie-luzhniki', 1, '2019-03-17 08:53:25', '2019-03-17 08:53:38', NULL),
(16, 'Доска почета', 'doska-pocheta', 1, '2019-03-17 08:53:49', '2019-03-17 08:53:57', NULL),
(17, 'ОАО "Гомельстекло"', 'oao-gomelsteklo', 1, '2019-03-17 08:54:15', '2019-03-17 08:54:15', NULL);
/*!40000 ALTER TABLE `menus` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.migrations
CREATE TABLE IF NOT EXISTS `migrations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.migrations: ~42 rows (приблизительно)
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
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, '2018_12_22_051057_create_1545448257_roles_table', 1),
(4, '2018_12_22_051101_create_1545448260_users_table', 1),
(5, '2018_12_22_051102_add_5c1dab4713251_relationships_to_user_table', 1),
(6, '2018_12_24_122409_create_1545647049_services_table', 1),
(7, '2018_12_26_133413_create_1545824053_timetables_table', 1),
(8, '2018_12_26_133805_create_1545824285_ads_table', 1),
(9, '2018_12_26_134051_create_1545824451_contacts_table', 1),
(10, '2018_12_27_151231_create_1545916351_coaches_table', 1),
(11, '2018_12_27_152536_create_1545917136_sections_table', 1),
(12, '2018_12_28_053501_create_1545968101_prides_table', 1),
(13, '2018_12_28_193652_create_1546018612_directors_table', 1),
(14, '2018_12_28_193858_create_1546018738_boards_table', 1),
(15, '2019_01_10_084720_create_1547102840_histories_table', 1),
(16, '2019_01_10_094524_create_1547106324_mains_table', 1),
(17, '2019_01_11_200711_create_1547230031_categories_table', 1),
(18, '2019_01_11_201255_create_1547230375_tags_table', 1),
(19, '2019_01_11_203601_create_1547231761_posts_table', 1),
(20, '2019_01_11_204420_create_1547232260_comments_table', 1),
(21, '2019_01_11_214118_create_1547235678_poststags_table', 1),
(22, '2019_01_11_214450_create_1547235890_subscribes_table', 1),
(23, '2019_01_13_091335_create_1547363615_gomelglasses_table', 1),
(24, '2019_01_13_091713_create_1547363833_banners_table', 1),
(25, '2019_02_06_174631_make_acl_rules_table', 1),
(26, '2019_02_16_100159_add_user_id_column_ads_table', 1),
(27, '2019_02_16_103322_add_status_column_ads_table', 1),
(28, '2019_02_17_074656_change_description_column_on_content_table_ads', 1),
(29, '2019_02_17_080503_add_folder_column_ads_table', 1),
(30, '2019_02_28_013023_add_column_slug_on_table_ads', 1),
(31, '2019_03_15_124106_create_menus_table', 2),
(32, '2019_03_19_031211_add_column_class_to_table_mains', 3),
(33, '2019_03_26_062800_add_column_section-menu_to_section_table', 4),
(34, '2019_04_19_080015_add_collumn_description_on_table_user', 5),
(35, '2019_04_19_082655_add_collumn_description_on_table_users', 5),
(36, '2019_04_22_081641_add_column_avatar_to_table_users', 5),
(37, '2019_04_24_082510_add_collumn_description_main_page_to_table_sections', 5),
(38, '2019_04_25_084436_add_collumn_photo_sport_to_sections_table', 6),
(39, '2019_05_01_081538_add_collumn_department_to_table_directors', 7),
(40, '2019_05_12_053622_add_collumn_name_to_comments_table', 8),
(41, '2019_05_31_123529_add_collumn_position_to_mains_table', 9),
(42, '2019_06_07_115954_add_collumn_for-indicators_to_mains_table', 10);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.password_resets
CREATE TABLE IF NOT EXISTS `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,
KEY `password_resets_email_index` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.password_resets: ~0 rows (приблизительно)
/*!40000 ALTER TABLE `password_resets` DISABLE KEYS */;
INSERT INTO `password_resets` (`email`, `token`, `created_at`) VALUES
('<EMAIL>', '$2y$10$47fMhgOdsdKkWu3USdCL/u.RAE3p56Fr1w77Y7dAU9pqY.go9Pcze', '2020-09-30 08:40:09');
/*!40000 ALTER TABLE `password_resets` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.posts
CREATE TABLE IF NOT EXISTS `posts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`date` date NOT NULL,
`section_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`status` int(11) NOT NULL DEFAULT '0',
`views` int(11) NOT NULL DEFAULT '0',
`is_featured` int(11) NOT NULL DEFAULT '0',
`folder` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `posts_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.posts: ~52 rows (приблизительно)
/*!40000 ALTER TABLE `posts` DISABLE KEYS */;
INSERT INTO `posts` (`id`, `title`, `slug`, `content`, `image`, `date`, `section_id`, `user_id`, `status`, `views`, `is_featured`, `folder`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'Областная спартакиада ДЮСШ по греко-римской борьбе.', 'oblastnaya-spartakiada-dyussh-po-greko-rimskoy-borbe-1', '<p>На базе ГУ «ФОЦ «Костюковка-спорт» прошла областная спартакиада по греко-римской борьбе среди юношей 2003-2004 г.р. Нашу команду представляли ребята в составе 10 учащихся. В упорной борьбе наши спортсмены показали хорошие результаты:</p>\r\n\r\n<p><NAME> – 3место;</p>\r\n\r\n<p>Варивода Егор – 1 место;</p>\r\n\r\n<p><NAME> – 2 место;</p>\r\n\r\n<p><NAME> – 3 место;</p>\r\n\r\n<p><NAME> – 1 место;</p>\r\n\r\n<p><NAME> – 3 место.</p>\r\n\r\n<p>Уже через некоторое время эти ребята будут сражаться на Республиканской спартакиаде в г. Могилеве. Пожелаем им легких побед и удачи.</p>', NULL, '2018-02-28', 2, 2, 1, 692, 0, 'N_1', '2019-05-14 15:36:54', '2020-10-06 13:08:06', NULL),
(2, 'Олимпийские дни молодежи Гомельской области по плаванию.', 'olimpiyskie-dni-molodezhi-gomelskoy-oblasti-po-plavaniyu', '<p>На базе ГУ «Гомельского областного центра олимпийского резерва» во дворце водных видов спорта, в период с 21 февраля по 24 февраля 2018 года прошли олимпийские дни молодежи Гомельской области по плаванию (юноши 2002-2003 г.р., и моложе, девушки 2003-2004 г.р., и моложе). Участие в соревнованиях приняли 10 команд из г. Гомеля и Гомельской области с общим количеством 192 человека.</p>\r\n\r\n<p>От команды СДЮШОР ППО ОАО «Гомельстекло» участие приняли 6 девушек и 2 юношей; Эти соревнования являются отборочными на первенство Республики Беларусь по плаванию, которые пройдут в г. Пинске в период с 13 марта по 17 марта 2018 года.</p>\r\n\r\n<p><NAME> – 2004 г.р., на дистанции 100 м спина заняла первое место. В эстафетном плавании 4х100 м в/стиль среди девушек вместе с Валерией Портеноковой, Дарья и двое девушек из команды «Гомсельмаш» заняли третье место. В эстафетном плавании 4х100 м комплексное плавание девушки заняли 2 место.</p>\r\n\r\n<p><NAME> и <NAME> отобрались состав команды Гомельской области по плаванию и будут биться за медали на Олимпийских днях Республики Беларусь в г. Пинске.</p>\r\n\r\n<p>Поздравляем наших девушек и юношей с большим успехом желаем удачи, здоровья и быстрых секунд в спортивном плавании.</p>', '1556779609-IMG_20180221_143455.jpg', '2018-03-01', 1, 2, 1, 721, 0, 'N_2', '2019-05-02 06:46:50', '2020-10-06 13:08:06', NULL),
(3, 'Открытое первенство учреждения «СДЮШОР ППО ОАО «Гомельстекло» по тяжелой атлетике.', 'otkrytoe-pervenstvo-uchrezhdeniya-sdyushor-ppo-oao-gomelsteklo-po-tyazheloy-atletike', '<p>На базе ГУО «СШ №13 г. Гомеля 21 сентября 2018 года прошло открытое первенство учреждения «СДЮШОР ППО ОАО «Гомельстекло» по тяжелой атлетике среди юношей и девушек 2004-2006 г.р. Участие в турнире приняли команды: СДЮШОР «Гомсельмаш», БФСО «Динамо», СДЮШОР – 7 г. Гомеля.</p>\r\n\r\n<p>От команды СДЮШОР ППО ОАО «Гомельстекло» участие приняли 8 девушек и 10 юношей; Данные соревнования популяризируют тяжелую атлетику в микрорайоне Костюковка, определяют сильнейших спортсменов на участие в областных соревнованиях, а также выполнение разрядных показателей.</p>\r\n\r\n<p>На снимке мы видим победителя и призеров среди девушек 2004 г.р.</p>', '1556779760-26.09.jpg', '2018-09-26', 4, 2, 1, 617, 0, 'N_3', '2019-05-02 06:49:20', '2020-10-06 13:08:06', NULL),
(4, 'Открытые соревнования по легкой атлетике на призы Олимпийцев Жлобинщины среди юношей и девушек 2002-2004 г. р.', 'otkrytye-sorevnovaniya-po-legkoy-atletike-na-prizy-olimpiycev-zhlobinshchiny-sredi-yunoshey-i-devushek-2002-2004-g-r', '<p>В период с 28 по 29 сентября 2018 года на стадионе государственного учреждения «ДЮСШ г. Жлобина» прошли открытые соревнования по легкой атлетике на призы Олимпийцев Жлобинщины.</p>\r\n\r\n<p>В соревнованиях приняли участие в основном команды г. Гомеля и Гомельской области. От команды учреждения «СДЮШОР ППО ОАО «Гомельстекло» выступили: <NAME> – 1 место (диск), 1 место (ядро); <NAME> – 2 место (800м), 3 место (60м с/б); <NAME> – 3 место (60м с/б). Наши ребята были награждены медалями и дипломами соответствующих степеней.</p>\r\n\r\n<p>На снимке слева направо мы видим: <NAME>, <NAME>, <NAME> и тренер-преподаватель по легкой атлетике Клеменцева Дарья.</p>\r\n\r\n<p>Поздравляем наших ребят с хорошими результатами. Пожелаем им терпения, мужества и легкой работы на учебно-тренировочных занятиях.</p>', '1556780144-02_10_2018_1.jpg', '2018-10-01', 3, 2, 1, 661, 1, 'N_4', '2019-05-02 06:55:44', '2020-10-06 13:08:06', NULL),
(5, 'Открытый областной юношеский турнир по греко-римской борьбе памяти Заслуженного тренера БССР М.Н. Доленко, на призы УСДЮШОР «Жемчужи<NAME>» ППО ОАО «Мозырьский НПЗ» юноши 2004-2006 г.р.', 'otkrytyy-oblastnoy-yunosheskiy-turnir-po-greko-rimskoy-borbe-pamyati-zasluzhennogo-trenera-bssr-m-n-dolenko-na-prizy-usdyushor-zhemchuzhina-polesya-ppo-oao-mozyrskiy-npz-yunoshi-2004-2006-g-r', '<p>В период с 28 по 30 сентября 2018 года в г. Калинковичи прошел Открытый областной юношеский турнир по греко-римской борьбе памяти Заслуженного тренера БССР М.Н. Доленко, на призы УСДЮШОР «Жемчужи<NAME>я» ППО ОАО «Мозырьский НПЗ». Участие в данных соревнованиях приняло 144 спортсмена из городов: Минска, Пуховичи, Бреста, Бобруйска, а также большинство команд из г. Гомеля и Гомельской области.</p>\r\n\r\n<p>Нашу школу представляла команда ребят из микрорайона Костюковка и а/г Еремино с общим количеством 15 учащихся. Вот имена победителей и призеров: <NAME> – 3место (в/к до 38кг); <NAME> - 3 место (в/к до 41кг); <NAME> – 1 место (в/к до 44кг); <NAME> – 3 место (в/к до 48 кг); <NAME> – 3место (в/к до 52 кг); <NAME> – 2 место (в/к до 68 кг); <NAME> – 3место (в/к +85 кг). Все ребята боролись в разных весовых категориях от 38 кг до + 85 кг; Ребят подготовили тренеры-преподаватели: <NAME>., <NAME>., <NAME>.</p>\r\n\r\n<p>Не забываем о тех ребятах, которые не попали в призовую тройку, но были близки. Пожелаем им терпения, мужества, чтобы в скором будущем быть на высшей ступеньке пьедестала.</p>\r\n\r\n<p><strong>На снимке победитель турнира Павлючков Евгений в/к до 44 кг.</strong></p>', '1557848658-YKs1NqQYr6.jpeg', '2018-10-02', 2, 2, 1, 638, 0, 'N_5', '2019-05-14 15:44:19', '2020-10-06 13:08:06', NULL),
(6, 'Детский осенний турнир по футболу « КУБОК КОСТЮКОВКИ – 2018»', 'detskiy-osenniy-turnir-po-futbolu-kubok-kostyukovki-2018', '<p>На базе "Физкультурно-оздоровительного центра "Костюковка-Спорт" прошел детский турнир по футболу.</p>\r\n\r\n<p>В турнире приняли участие такие команды как:</p>\r\n\r\n<ol>\r\n <li>СДЮШОР №8</li>\r\n <li>СДЮШОР «ГОМСЕЛЬМАШ»</li>\r\n <li>ДЮСШ «ЭНЕРГИЯ»</li>\r\n <li>РОГАЧЕВСКАЯ ДЮСШ № 1</li>\r\n <li>КОСТЮКОВКА - СПОРТ</li>\r\n <li>ДЮСШ «ДСК»</li>\r\n</ol>\r\n\r\n<p>Турнир прошел в веселой обстановке. Все ребята показали себя с наилучшей стороны, но удача оказалась на стороне СДЮШОР №8.</p>\r\n\r\n<p>Поздравляем всех ребят. Желаем им дальнейших спортивных достижений и играть, играть и еще раз играть.</p>\r\n\r\n<p>Успехов!!!</p>', '1556780017-1.jpg', '2018-10-03', 5, 3, 1, 1072, 1, 'N_6', '2019-05-02 06:53:38', '2020-10-07 06:35:01', NULL),
(7, 'Открытый областной юношеский турнир по греко-римской борьбе на призы ЗМС Владимира Копытова и ОАО «Гомельстекло»', 'otkrytyy-oblastnoy-yunosheskiy-turnir-po-greko-rimskoy-borbe-na-prizy-zms-vladimira-kopytova-i-oao-gomelsteklo', '<p>В ГУ «ФОЦ «Костюковка-спорт» в период с 5 по 6 октября состоялся открытый областной турнир по греко-римской борьбе на призы ЗМС Владимира Копытова. Турнир проводился в 24-й раз и собрал 300 участников из Республики Беларусь, России, Литвы, Латвии, Эстонии, Украины и Молдовы. Всего участвовало 38 команд.</p>\r\n\r\n<p>Успешно выступили юные борцы учреждения «СДЮШОР ППО ОАО «Гомельстекло», которые принесли в копилку нашей школы медали различного достоинства: <NAME> – 3 место (в/к 32кг), <NAME> – 1 место (в/к 35 кг), <NAME> – 3 место (в/к 35 кг), <NAME> – 2 место (в/к 38 кг), <NAME>хип - 2 место (в/к 46кг), <NAME> – 3 место (в/к 46 кг), <NAME> – 3 место (в/к 51 кг), <NAME> – 2 место (в/к 60 кг).</p>\r\n\r\n<p>На церемонии открытия присутствовали: председатель профкома ОАО «Гомельстекло» Владимир Аниськов, директор ГУ «ФОЦ «Костюковка-спорт» - <NAME>. Все они дали очень высокую оценку открытому турниру по греко-римской борьбе. Понравилось организация турнира, проведения поединков и весь праздник спорта в целом.</p>', '1558953962-10-26-49-IMG_3433.JPG', '2018-10-12', 2, 2, 1, 871, 0, 'N_7', '2019-05-27 10:46:02', '2020-10-06 13:08:06', NULL),
(8, 'Открытое первенство г. Гродно по греко-римской борьбе среди юношей 2006-2008 г.р., памяти тренера-преподавателя <NAME>', 'otkrytoe-pervenstvo-g-grodno-po-greko-rimskoy-borbe-sredi-yunoshey-2006-2008-g-r-pamyati-trenera-prepodavatelya-i-yu-sanzhieva', '<p>В период с 17 по 18 октября 2018 года в г. Гродно прошло открытое первенство г. Гродно по греко-римской борьбе среди юношей 2006-2008 г.р., памяти тренера-преподавателя И.Ю. Санжиева. В данном турнире участие приняло более 15 команд с общим количеством участников 270.</p>\r\n\r\n<p>Нашу школу представляла команда ребят из микрорайона Костюковка в составе 9 учащихся. Вот имена победителей и призеров: <NAME> – 1 место (в/к до 29кг); <NAME> - 2 место (в/к до 32кг); Шаховский Глеб – 3 место (в/к до 35кг); Шатилов Артем – 1 место (в/к до 41 кг); Р<NAME> – 1место (в/к до 44 кг); Ш<NAME> – 1 место (в/к до 48 кг); Дробышевский Саша – 3место (в/к 66 кг). Ребят подготовили тренеры-преподаватели: <NAME>., <NAME>.</p>\r\n\r\n<p>Пожелаем тем ребятам, которые не попали на пьедестал – терпения, удачи и пусть их дальнейшие поединки будут для них победными!</p>\r\n\r\n<p><strong>На снимке тренер-преподаватель учреждения «СДЮШОР ППО ОАО «Гомельстекло» по греко-римской борьбе ВАРИВОДА АЛЕКСАНД АЛЕКСЕЕВИЧ со своими воспитанниками.</strong></p>', '1559130926-IMG-41f33510e37d4a99844a7f3819ab8701-V-1024x768.jpg', '2018-10-18', 2, 2, 1, 692, 0, 'N_8', '2019-05-27 11:34:03', '2020-10-06 13:08:06', NULL),
(9, 'Ч<NAME> по тяжелой атлетике', 'chempionat-evropy-po-tyazheloy-atletike', '<p>С 20 октября по 27 октября 2018 года в польском городе Замость прошел чемпионат Европы по тяжелой атлетике среди юниоров и молодежи до 23 лет. Нашу школу представлял член национальной команды неоднократный призер европейских первенств – Шагов Артем.</p>\r\n\r\n<p><strong>Шагов Артем</strong> стал бронзовым призером чемпионата Европы в весовой категории до 77 кг среди юниоров. В сумме двоеборья он поднял вес 328 кг – 148 кг в рывке (4 место) и 180 кг в толчке (3 место).</p>\r\n\r\n<p>Поздравляем Артема с завоеванной медалью. Пожелаем ему терпения, мужества и больших побед на международных соревнованиях.</p>', '1558958190-047.jpg', '2018-10-26', 4, 2, 1, 894, 1, 'N_9', '2019-05-27 11:56:30', '2020-10-06 13:08:06', NULL),
(10, 'Спартакиада среди ДЮСШ и СДЮШОР Республики Беларусь по тяжелой атлетике среди юношей и девушек 2004-2005 г.р.', 'spartakiada-sredi-dyussh-i-sdyushor-respubliki-belarus-po-tyazheloy-atletike-sredi-yunoshey-i-devushek-2004-2005-g-r', '<p>В период с 19 ноября по 24 ноября 2018 года в г. Бобруйске прошла Спартакиада среди ДЮСШ и СДЮШОР Республики Беларусь по тяжелой атлетике. В соревнованиях приняли участие спортсмены всех спортивных школ Республики Беларусь, курирующие тяжелую атлетику. От нашей школы участвовало четверо ребят: две девушки и двое юношей. Голобурда Евгений в в/к до 38 кг в сумме двоеборья стал третьим. Он поднял вес 90 кг. Шныпаркова Дарья – стала четвертой, ей не хватило совсем немного до призовой тройки. Эти соревнования являются просмотром юношей и девушек для попадания в национальную команду Республики Беларусь. </p>\r\n\r\n<p>На снимке мы видим воспитанника нашей школы бронзового призера Голобурду Евгения.</p>', '1559123608-qWIYfkpuIb.jpeg', '2018-11-26', 4, 2, 1, 707, 0, 'N_10', '2019-05-27 11:58:48', '2020-10-06 13:08:06', NULL),
(11, 'Открытое первенство ДЮСШ Гомельской области по плаванию в программе «Веселый дельфин»', 'otkrytoe-pervenstvo-dyussh-gomelskoy-oblasti-po-plavaniyu-v-programme-veselyy-delfin', '<p>На базе ГУ «ФОЦ «Костюковка-спорт» в период с 28 ноября по 30 ноября 2018 года прошло открытое первенство ДЮСШ Гомельской области по плаванию в программе «Веселый дельфин» (юноши 2005 г.р., и моложе, девушки 2007 г.р., и моложе). Участие в соревнованиях приняли 13 команд из г. Гомеля и Гомельской области с общим количеством 56 девушек и 144 юношей (200 участников).</p>\r\n\r\n<p>От команды СДЮШОР ППО ОАО «Гомельстекло» участие приняли 10 юношей. Эти соревнования являются отборочными на первенство Республики Беларусь по плаванию, которые пройдут в г. Гродно в период с 18 декабря по 22 декабря 2018 года.</p>\r\n\r\n<p><NAME> – 2005 г.р., на дистанции 400м в/стилем и 200м комплексным плаванием занял первое место; на дистанции 100м в/стиль – 2 место; по сумме трех дистанций он занял итоговое первое место, тем самым попав в состав команды Гомельской области по плаванию и отобравшись на Первенство Республики Беларусь в г. Гродно. Так же <NAME> – на дистанции 100 м спина – занял четвертое место.</p>\r\n\r\n<p>Поздравляем наших ребят с большим успехом, желаем удачи, здоровья и быстрых секунд в спортивном плавании. </p>\r\n\r\n<p><strong>На снимке победитель первенства – <NAME>.</strong></p>', '1558958763-IMG_20181130_124547.jpg', '2018-12-03', 1, 2, 1, 735, 0, 'N_11', '2019-05-27 12:06:04', '2020-10-06 13:08:06', NULL),
(12, 'Детский Рождественский турнир по футболу', 'detskiy-rozhdestvenskiy-turnir-po-futbolu', '<p>На протяжении трех дней 11-13 ЯНВАРЯ 2019 г. на базе ГУ «Физкультурно-оздоровительного центра «Костюковка-Спорт» проходил второй детский Рождественский турнир по футболу среди ребят 2010 г.р. «КУБОК КОСТЮКОВКИ - 2019» на призы ГУ ФОЦ «КОСТЮКОВКА-СПОРТ» и ППО ОАО «ГОМЕЛЬСТЕКЛО»<br />\r\nВ турнире принимали участие восемь команд: СДЮШОР №8 -1, СДЮШОР №8 -2, ДЮСШ «ЭНЕРГИЯ», РОГАЧЕВСКАЯ ДЮСШ № 1, «КОСТЮКОВКА-СПОРТ», ДЮСШ «ДСК», СДЮШОР «ГОМСЕЛЬМАШ», ДЮСШ «ЕРЕМИНО».</p>\r\n\r\n<p>Турнир порадовал всех напряженной борьбой, по детски красивой игрой, обилием голов. Все команды хотели победить, поэтому много было ничейных результатов, так как никто не хотел уступать. Команды до последнего матча держали всех в напряжении. Никто не знал, как распределятся призовые места.</p>\r\n\r\n<p>И все-таки, турнир не мог, останься без победителя и им в упорной борьбе стала команда - РОГАЧЕВСКАЯ ДЮСШ № 1, с чем мы ее и поздравляем!!!<br />\r\nВторое место заняла команда - СДЮШОР№8 – 1!!!<br />\r\nТретье место заняли хозяева турнира - «КОСТЮКОВКА-СПОРТ»!!!</p>\r\n\r\n<p>А потом была торжественная часть: много хороших, теплых слов детям с пожеланием дальнейших успехов, особая благодарность родителям и тренерам ребят за активное участие в жизни детей, за их поддержку, искренние переживания, помощь.</p>\r\n\r\n<p>Так как это Рождественский детский турнир, то кроме обычных призов (медалей и кубков), детей ждали сладкие призы, за что хотелось бы выразить благодарность председателю ППО ОАО «ГОМЕЛЬСТЕКЛО» Владимиру Петровичу Аниськову.<br />\r\nПризы получили все команды, т.к. турнир в первую очередь это праздник для детей, а потом уже соревнования.<br />\r\nОрганизаторы турнира определили лучших игроков Рождественского турнира.<br />\r\nИми стали:<br />\r\nЛУЧШИЙ ВРАТАРЬ – ДАНИИЛ НАПРЕЕНКО (СДЮШОР "Гомсельмаш")<br />\r\nЛУЧШИЙ ЗАЩИТНИК – АЛЕКСАНДР ЦАПОВ (ДЮСШ ДСК)<br />\r\nЛУЧШИЙ НАПАДАЮЩИЙ - ЮРИЙ ОВСЯНКОВ (СДЮШОР-8- I)<br />\r\nЛУЧШИЙ ИГРОК ТУРНИРА – ДОМИНИК АНДРИЕВСКИЙ ("Костюковка-спорт")<br />\r\nЛУЧШИЙ БОМБАРДИР ТУРНИРА – СТЕПАН СТЕПАНОВ (ДЮСШ-1, Рогачёв).</p>\r\n\r\n<p>Отдельно хотелось бы выразить благодарность одному из воспитанников нашего учреждения - Никите Андриевскому. Для некоторых людей спорт, а в частности футбол становится не просто привычкой, а частью жизни. Так в жизни сложилось и у Никиты, который на сегодняшний день является игроком МФК «БЧ» и членом национальной сборной команды РБ по мини-футболу. Он, как никто другой, знает, как сложен и тернист путь футбольный и как важна поддержка игрокам, особенно на начальных этапах. Поэтому он не в первый раз оказывает помощь в награждении участников детских турниров. К сожалению, на этот раз сам Никита не смог присутствовать на награждении, но просил выделить и наградить призами имени <NAME>ого (статуэтки были приобретены им лично) ЛУЧШЕГО НАПАДАЮЩЕГО и ЛУЧШЕГО БОМБАРДИРА турнира, так как сам является нападающим. Так же был специальный приз <NAME>ского - личная игровая футболка, который был вручён с самыми наилучшими пожеланиями ПОТЕМКИНУ ЕГОРУ (ДЮСШ «ЭНЕРГИЯ»). Безусловно, это еще один стимул для детей заниматься футболом, расти и развиваться.</p>\r\n\r\n<p>В конце торжественной части состоялось награждение команд кубками, медалями и дипломами соответствующих степеней, которые вручали организаторы турнира ГУ ФОЦ «КОСТЮКОВКА-СПОРТ», в лице исполняющей обязанности директора Зуброновой Татьяны Ивановны.<br />\r\nНу и, конечно же, общее фото на память.<em> </em><br />\r\nВ конце хотелось бы выразить благодарность руководству государственного учреждения “Физкультурно-оздоровительный центр “КОСТЮКОВКА-СПОРТ” за организацию турнира, а всем участникам турнира сказать спасибо и до новых встреч в уже традиционных соревнованиях на призы ГУ ФОЦ «КОСТЮКОВКА-СПОРТ».</p>', '1600154004-luT34iiGzhE.jpg', '2019-01-15', 5, 3, 1, 746, 0, 'N_12', '2019-05-27 12:12:47', '2020-10-06 13:08:06', NULL),
(13, 'Областная спартакиада среди ДЮСШ по греко-римской борьбе среди юношей 2002-2004 г.р.', 'oblastnaya-spartakiada-sredi-dyussh-po-greko-rimskoy-borbe-sredi-yunoshey-2002-2004-g-r', '<p>В период с 27 по 29 ноября 2018 года на базе ГУ «ФОЦ «Костюковка-спорт» прошла областная спартакиада среди ДЮСШ по греко-римской борьбе среди юношей 2002-2004 г.р. В данных соревнованиях участие приняло более 10 команд из г. Гомеля и Гомельской области.</p>\r\n\r\n<p>Нашу школу представляла команда ребят из микрорайона Костюковка и а/г Еремино в составе 12 учащихся. Вот имена победителей и призеров: <NAME> – 1 место (в/к до 45кг); Варивода Егор - 2 место (в/к до 48кг); Матвейчиков Алексей – 2 место (в/к до 51кг); <NAME> – 1 место (в/к до 65 кг); Победители и призеры примут участие в Республиканской Спартакиаде в г. Минске. Ребят подготовили тренеры-преподаватели: Варивода А.А., <NAME>.</p>\r\n\r\n<p>Пожелаем тем ребятам, которые не попали на пьедестал – терпения, удачи и пусть их дальнейшие поединки будут для них победными!</p>', NULL, '2018-12-03', 2, 2, 1, 593, 0, 'N_13', '2019-05-28 09:36:59', '2020-10-06 13:08:06', NULL),
(14, 'Открытый Чемпионат Гомельской области по плаванию среди мужчин и женщин по короткой воде.', 'otkrytyy-chempionat-gomelskoy-oblasti-po-plavaniyu-sredi-muzhchin-i-zhenshchin-po-korotkoy-vode', '<p>На базе ГУ «ФОЦ «Костюковка-спорт» в период с 21 декабря по 22 декабря 2018 года прошел открытый чемпионат Гомельской области по плаванию среди мужчин и женщин на короткой воде. Участие в соревнованиях приняло 9 команд из г. Гомеля и Гомельской области. От нашей школы участие приняли 6 девушек и 5 юношей. Эти соревнования являются отборочными на открытый Чемпионат Республики Беларусь по плаванию, который пройдет в г. Бресте в середине января 2019 года.</p>\r\n\r\n<p>Победителями и призерами стали:</p>\r\n\r\n<p><NAME> – 1 место 100 метров брасс; 200 метров брасс; 100 метров комплексное плавание; 2 место – 200 метров в/стиль;</p>\r\n\r\n<p>Команда Железнодорожного района в эстафетном плавании 4х50м кпл микс в составе: Валерии Портенковой; <NAME>, <NAME>, <NAME> – заняла 2 место;</p>\r\n\r\n<p>Поздравляем наших ребят с наступающим Новым 2019 годом, желаем в новом году - удачи, терпения, здоровья и семейного благополучия!</p>\r\n\r\n<p><strong>На снимке награждение победителя области – <NAME>.</strong></p>', '1559036314-26.12.2018.jpg', '2018-12-26', 1, 2, 1, 628, 0, 'N_14', '2019-05-28 09:38:34', '2020-10-06 13:08:06', NULL),
(15, 'Итоги 2018 года', 'itogi-2018-goda', '<p>2018 год выдался для всех спортсменов и любителей спорта необычно.</p>\r\n\r\n<p>Подводя итоги года, хочется привести некоторые статистические показатели спортивной школы. За летний отчетный период было оздоровлено 211 учащихся школы: в городских лагерях дневного пребывания было оздоровлено 120 учащихся, в загородных лагерях 91 учащийся. И в городских и загородных лагерях дети не только проходили оздоровление, но и продолжали заниматься спортом и совершенствовать свое спортивное мастерство. 90 учащихся учреждения выполнили юношеские разряды, 8 учащихся – выполнили нормативы кандидата в мастера спорта и первые спортивные разряды. В 2018 году в высшее звено подготовки было передано трое воспитанников школы: двое учащихся отделения тяжелой атлетики в Борисовское училище олимпийского резерва и одна воспитанница отделения волейбола в Минское училище олимпийского резерва. В списочном составе национальной команды Республики Беларусь 12 спортсменов-воспитанников школы, четыре из которых в основном составе.</p>\r\n\r\n<p>Среди высоких спортивных результатов хочется отметить выступление Горностаева Никиты, который в составе сборной Республики Беларусь по современному пятиборью завоевал серебряную медаль в команде на первенстве Европы среди юниоров. Артем Шагов на первенстве Европы по тяжелой атлетике среди юниоров до 23-х лет завоевал бронзовую медаль. Аг<NAME> на первенстве мира занял одиннадцатое место. Участник Олимпийских игр в Рио - Прямов Владислав – неоднократно становился призером чемпионатов Республики Беларусь на дистанциях 5000 и 1000 метров. Так же принимал участие в Международных соревнованиях в марафонской дисциплине. </p>\r\n\r\n<p>К вышеназванным спортсменам, подтягивается, и наш молодежный состав способный показать высокие результаты на Республиканском уровне: <NAME>, Вирская Амина – легкая атлетика; <NAME>, <NAME>, Варивода Егор – борьба греко-римская. <NAME>, <NAME>, <NAME>, <NAME> – плавание; <NAME>, Пискунова Валерия, Голобурда Никита – тяжелая атлетика. Все эти успехи были бы не возможны без нашего Учредителя профсоюзного комитета ОАО «Гомельстекло» лично его председателя Аниськова В.П.</p>\r\n\r\n<p>В новом году хочется пожелать всем здоровья, успехов в спорте и новых высоких достижений.</p>', NULL, '2019-01-16', 0, 2, 1, 640, 0, 'N_15', '2019-05-28 10:52:44', '2020-10-06 13:08:06', NULL),
(16, 'Открытый Чемпионат Республики Беларусь по плаванию среди мужчин и женщин по короткой воде', 'otkrytyy-chempionat-respubliki-belarus-po-plavaniyu-sredi-muzhchin-i-zhenshchin-po-korotkoy-vode', '<p>Открытый Чемпионат Беларуси по плаванию на короткой воде прошел в Брестском дворце водных видов спорта в период с 16 января по 19 января 2019 года. В главном национальном старте сезона приняли участие 313 атлетов из Беларуси, Украины и России. Эти соревнования являются отборочными на Чемпионат Европы в г. Глазго (Великобритания), который пройдет в декабре месяце 2019 года.</p>\r\n\r\n<p>Сборную команду Гомельской области представляли наши спортсмены-воспитанники: <NAME> и <NAME>.</p>\r\n\r\n<p><NAME> – на дистанции 100 метров комплексным плаванием занял 3 место; на дистанции 100м брасс стал вторым; В эстафетном плавании 4х50м комплексным плаванием в составе: <NAME>, <NAME>, <NAME> и <NAME> – мужская команда заняла второе место, уступив команде из Минска. Так же в эстафетном плавании 4х50м в/стиль ребята стали вторыми.</p>\r\n\r\n<p>Гомельская область в общекомандном зачете заняла второе место.</p>\r\n\r\n<p>Поздравляем наших ребят с наступившим Новым 2019 годом, желаем в новом году - удачи, терпения, здоровья и семейного благополучия.</p>', NULL, '2019-01-24', 1, 2, 1, 585, 0, 'N_16', '2019-05-29 12:01:11', '2020-10-06 13:08:06', NULL),
(17, 'Областная спартакиада среди ДЮСШ по греко-римской борьбе среди юношей 2004-2005 г.р.', 'oblastnaya-spartakiada-sredi-dyussh-po-greko-rimskoy-borbe-sredi-yunoshey-2004-2005-g-r', '<p>В период с 22 по 23 января 2019 года на базе ГУ «ФОЦ «Костюковка-спорт» прошла областная спартакиада ДЮСШ по греко-римской борьбе среди юношей 2004-2005 г.р. В данных соревнованиях участие приняло 9 команд из г. Гомеля и Гомельской области с общим числом 101 спортсмен.</p>\r\n\r\n<p>Нашу школу представляла команда ребят из микрорайона Костюковка и а/г Еремино в составе 20 учащихся. Вот имена победителей и призеров: <NAME> – 1 место (в/к до 41кг); Варивода Егор - 1 место (в/к до 48кг); Матвейчиков Алексей – 2 место (в/к до 52кг); Зубарев Артем – 2 место (в/к до 38 кг); Руднев Александр – 3 место (в/к до 38 кг); Парфенков Алексей – 2 место (в/к до 41кг); Павлючков Евгений – 2 место (в/к до 44кг); <NAME> – 3 место (в/к 48кг); <NAME> – 3 место (в/к до 48кг); <NAME> – 3 место (в/к до 75кг); <NAME> – 2 место (в/к до 85 кг); Победители и призеры примут участие в Республиканской Спартакиаде ДЮСШ, которая пройдет в г. Минске в апреле этого года. Ребят подготовили тренеры-преподаватели: <NAME>., <NAME>., <NAME>., <NAME>.</p>\r\n\r\n<p>В общекомандном зачете сборная СДЮШОР «Гомельстекло» заняла первое место.</p>\r\n\r\n<p>Пожелаем тем ребятам, которые не попали на пьедестал – терпения, удачи и пусть их дальнейшие поединки будут для них победными!</p>', NULL, '2019-01-24', 2, 2, 1, 564, 0, 'N_17', '2019-05-29 12:03:18', '2020-10-06 13:08:06', NULL),
(18, '"Пока мы помним – мы живём"', 'poka-my-pomnim-my-zhivem', '<p>5 февраля 2019г. в ГУ ФОЦ «КОСТЮКОВКА-СПОРТ» завершился финальными матчами традиционный турнир по мини-футболу, посвященный Дню памяти воинов-интернационалистов Беларуси.<br />\r\n Все мы люди и у каждого из нас в сердце живут чувства. Данный турнир, своего рода, дань памяти тем бравым солдатам, защитникам, отважным героям, которые смело и гордо исполняли свой интернациональный долг вдалеке от Родины, от близких и родных людей. Все они достойны светлой памяти и громкой благодарности, истинного уважения и героического призвания. Пусть каждый из нас также смело шагает по жизни, как они сражались за победу, пусть подвиги этих людей послужат всем примером самоотверженности, настоящего мужества и преданности великому делу.<br />\r\n <br />\r\n Торжественное закрытие турнира началось с поздравления воинов-интернационалистов. Для них прозвучали слова благодарности и пожелания крепкого здоровья, а так же были вручены сувениры. Команды минутой молчания почтили память, погибших воинов. <br />\r\n <br />\r\n Среди присутствующих. уважаемых гостей был более чем просто хороший человек! Это всеми любимый и уважаемый тренер и наставник ОЛЕГ НИКОЛАЕВИЧ КОВАЛЕВ, который тоже проходил службу в Афганистане. Хотелось бы ему выразить отдельную благодарность за все то, что он сделал и продолжает делать. <br />\r\n <NAME>! Крепкого здоровья Вам, тепла и радости даже не в самые радостные моменты в жизни! Мы надеемся, что Вы вырастите еще не одно поколение футболистов и будете ими гордиться! <br />\r\n С самыми наилучшими пожеланиями его ученики, друзья, коллеги, которые играли за команду «АЛМАЗ-ВЕТЕРАНЫ» сделали ему в этот день два подарка - это тяжелая, волевая, с сильным соперником («КОЛОС - U21»), добытая в серии пенальти победа в турнире и небольшой, скромный подарок, который обязательно согреет его в холодный скучный вечер! <br />\r\n В конце торжественной части состоялось награждение команд кубками и грамотами соответствующих степеней, а также совместное фото. <br />\r\n <br />\r\n Подводим итоги турнира: <br />\r\n В упорной борьбе, в серии пенальти. первое место заняла команда «АЛМАЗ - ВЕТЕРАНЫ» <br />\r\n Второе место заняла команда «КОЛОС» –U21<br />\r\n Третье место – «УСК-ГОМЕЛЬ»<br />\r\n <br />\r\n Приводим результаты сыгранных матчей. <br />\r\n Полуфиналы: <br />\r\n «УСК-ГОМЕЛЬ» 3:5 (0:2) «АЛМАЗ - ВЕТЕРАНЫ» (<NAME>., <NAME>. - Сорвин С. -2, Куренной В. -2, Черняк И.)<br />\r\n «ВЕДАТРАНЗИТ» 1:3 (1:1) «КОЛОС» –U21 (Лущай Е. - Фицев Д., Варкове<NAME>., <NAME>.)<br />\r\n <br />\r\n ИГРА ЗА ТРЕТЬЕ МЕСТО <br />\r\n «УСК-ГОМЕЛЬ» 4:2 (3:0)«ВЕДАТРАНЗИТ» (Грищенко Ю, Зайцев М., <NAME>., <NAME>. - Холюп<NAME>., <NAME>.)</p>\r\n\r\n<p>ФИНАЛ </p>\r\n\r\n<p>«АЛМАЗ - ВЕТЕРАНЫ» 4:4 (1:1) по пенальти 3:2 «КОЛОС» –U21 (Куренной, Болсун, Тарасенко, Сорвин - Балуев -2, Фицев, Каешко П.)<br />\r\n <br />\r\n В День памяти воинов-интернационалистов пожелаем всем никогда не ощутить печали и скорби войны, выделить место в своих сердцах для светлых воспоминаний и доброй благодарности нашим героям – защитникам нашей страны, которым пришлось отдать жизнь за любимых, дорогих сердцу людей или за соседа, друга, товарища<br />\r\n Выражаем благодарность командам, которые приняли участие в турнире и ждем в следующем году!!! </p>', '1559131911-yPPpdWB17P.jpeg', '2019-02-19', 5, 3, 1, 811, 1, 'N_18', '2019-05-29 12:11:51', '2020-10-07 11:19:20', NULL),
(19, 'Кубок Республики Беларусь по тяжелой атлетике', 'kubok-respubliki-belarus-po-tyazheloy-atletike', '<p>В период с 18 февраля по 23 февраля 2019 года в г. Борисове прошел Кубок Республики Беларусь по тяжелой атлетике среди мужчин и женщин. Участие в данных соревнованиях принял наш спортсмен-воспитанник мастер спорта - Зуев Леонид, который в в/к до 61 кг завоевал первое место.</p>\r\n\r\n<p>Рывок 110 кг + толчок 130 кг = сумма 240 кг.</p>\r\n\r\n<p>Поздравляем Леонида с первым местом, желаем здоровья и дальнейших успехов в спорте высших достижений.</p>', NULL, '2019-02-26', 4, 2, 1, 685, 0, 'N_19', '2019-05-29 12:16:09', '2020-10-06 13:08:06', NULL),
(20, 'Детский весенний турнир по футболу «KOSTUKOVKA CUP – 2019» завершен', 'detskiy-vesenniy-turnir-po-futbolu-kostukovka-cup-2019-zavershen', '<p>На протяжении трех дней 1-3 марта 2019 г. на базе ГУ «Физкультурно-оздоровительного центра «Костюковка-Спорт» проходил ДЕТСКИЙ ВЕСЕННИЙ ТУРНИР ПО ФУТБОЛУ «KOSTUKOVKA CUP – 2019» среди юниоров 2011г.г. и младше. на призы ГУ ФОЦ «КОСТЮКОВКА-СПОРТ»</p>\r\n\r\n<p>В турнире принимали участие шесть команд: СДЮШОР №8 -2011, СДЮШОР №8 -2012, ДЮСШ «ЭНЕРГИЯ», «КОСТЮКОВКА-СПОРТ», ДЮСШ «ДСК», СДЮШОР «ГОМСЕЛЬМАШ».</p>\r\n\r\n<p>Турнир порадовал всех напряженной борьбой, не по-детски красивой игрой, обилием голов. Все команды хотели победить, и никто не хотел уступать. Команды до последнего матча держали всех в напряжении. Никто не знал, как распределятся призовые места.</p>\r\n\r\n<p>И все-таки, турнир не мог, останься без победителя и им в упорной борьбе стала команда - СДЮШОР №8 -2011, с чем мы ее и поздравляем!!!<br />\r\n Второе место заняла команда - СДЮШОР «ГОМСЕЛЬМАШ»!!!</p>\r\n\r\n<p>Третье место заняли команда ДЮСШ «ЭНЕРГИЯ»!!!</p>\r\n\r\n<p>Четвертое место заняли хозяева турнира - «КОСТЮКОВКА-СПОРТ», пятое - ДЮСШ «ДСК», шестое, самые юные участники турнира (все ребята 2012 года рождения), команда СДЮШОР №8 -2012.</p>\r\n\r\n<p>А потом была торжественная часть: много хороших, теплых слов детям с пожеланием дальнейших успехов, особая благодарность родителям и тренерам ребят за активное участие в жизни детей, за их поддержку, искренние переживания, помощь.<br />\r\n Организаторы турнира определили лучших игроков Рождественского турнира.<br />\r\n Ими стали:<br />\r\n <strong>ЛУЧШИЙ ВРАТАРЬ</strong> – КОРОВКИН ИВАН («КОСТЮКОВКА-СПОРТ»)<br />\r\n <strong>ЛУЧШИЙ ЗАЩИТНИК</strong> – ЧЕРЕВАНЬ БОГДАН («КОСТЮКОВКА-СПОРТ»)<br />\r\n <strong>ЛУЧШИЙ НАПАДАЮЩИЙ</strong> – ДАНИЛЕНКО ТИМУР (ДЮСШ «ДСК»)<br />\r\n <strong>ЛУЧШИЙ ИГРОК ТУРНИРА</strong> – СМУСЕНОК НИКИТА (СДЮШОР №8 -2011)<br />\r\n <strong>ЛУЧШИЙ БОМБАРДИР ТУРНИРА</strong> – ВОЛКОВ КИРИЛЛ <strong>- 11 МЯЧЕЙ</strong> (- СДЮШОР «ГОМСЕЛЬМАШ»).</p>\r\n\r\n<p>Так же были специальные призы для наших самых маленьких участников, команды СДЮШОР №8 -2012. Им были вручены символические медали за участие в турнире. Так же в команде были выделены два игрока: <strong>ЛУЧШИЙ ИГРОК КОМАНДЫ</strong>: НЕРУС ИВАН - и <strong>САМЫЙ ПОЛЕЗНЫЙ ИГРОК КОМАНДЫ</strong>: ЛЫСЕНКО ЕГОР. Безусловно, это еще один стимул для детей заниматься футболом, расти и развиваться.</p>\r\n\r\n<p>В конце торжественной части состоялось награждение команд кубками, медалями и дипломами соответствующих степеней, которые вручали организаторы турнира ГУ ФОЦ «КОСТЮКОВКА-СПОРТ»,<br />\r\n В конце хотелось бы выразить благодарность руководству государственного учреждения “Физкультурно-оздоровительный центр “КОСТЮКОВКА-СПОРТ” за организацию турнира, а всем участникам турнира сказать спасибо. Так же пожелать всем не останавливаться на достигнутом, расти и развиваться. Организатором улучшаться в организации и масштабах соревнований, привлекать еще больше команд и не только гомельских, а командам добавлять в мастерстве и сыгранности.</p>\r\n\r\n<p> До новых встреч в уже традиционных соревнованиях на призы ГУ ФОЦ «КОСТЮКОВКА-СПОРТ».</p>\r\n\r\n<p>Продолжение следует…</p>\r\n\r\n<p>Состав команды «КОСТЮКОВКА-СПОРТ»: КОРОВКИН ИВАН (<strong>ЛУЧШИЙ ВРАТАРЬ ТУРНИРА</strong>), ПРОХОРЕНКО АЛЕКСАНДР (<strong>забил 1 мяч, капитан команды</strong>), ЧЕРЕВАНЬ БОГДАН<strong> забил 5 мячей (ЛУЧШИЙ ЗАЩИТНИК ТУРНИРА)</strong>, ПЕТРАЧКОВ ЕВГЕНИЙ – <strong>забил 5 мячей</strong>, ТАРАСЕНКО МАТВЕЙ (2012), ФЛЕРКО ДМИТРИЙ, КРАЙНЮКОВ АРТЕМ <strong>(забил 1 мяч</strong>), ЗУБКОВ АРТЕМ, ТУЗОВ КИРИЛЛ (2012), МИХЕЕВ АЛЕКСЕЙ (2012), ФЕДОСЕЕНКО РОДИОН (2012), РЯБЦЕВ НИКИТА, ТЕРЕЩЕНКО ДАНИЛА, ГОНЧАРОВ ДАНИИЛ (2012).</p>', '1559132840-azUnDjBSy0.jpeg', '2019-03-05', 5, 3, 1, 722, 0, 'N_20', '2019-05-29 12:27:20', '2020-10-06 13:08:06', NULL),
(21, 'Второй турнир по мини - футболу «КУБОК КОСТЮКОВКИ 2018 - 2019»', 'vtoroy-turnir-po-mini-futbolu-kubok-kostyukovki-2018-2019', '<p>Второй турнир по мини - футболу «КУБОК КОСТЮКОВКИ 2018 - 2019» завершен.</p>\r\n\r\n<p>Вот и подошел к концу второй турнир по мини - футболу «КУБОК КОСТЮКОВКИ 2018 - 2019», в котором приняло участие девять команд. На протяжении четырех месяцев мы следили за невероятным, драматичным зрелищем, болельщики переживали за свои команды, а команды сражались за победу в турнире. И вот 12 марта состоялись финальные игры. Они получились напряженными, зрелищными, и порадовали любителей футбола красивой игрой.</p>\r\n\r\n<p>В игре за третье место встречались РУП «БЕЛОРУСНЕФТЬ – ОСОБИНО» и «КОЛОС» Гомельский район. Победу со счетом 5:3 одержала команда "КОЛОС" Гомельский район (в прошлом году они так же были третьими).</p>\r\n\r\n<p>В финале, в упорной борьбе, победу одержала молодая (сформировалась как раз незадолго до начала турнира), но очень амбициозная команда - «ФАСТ» Гомель (победитель группового этапа турнира), которая со счетом 6:3 обыграла команду «ГОМЕЛЬСТЕКЛО».</p>\r\n\r\n<p>И так, первое место заняла команда - «ФАСТ» Гомель</p>\r\n\r\n<p>Состав: Трифонов Ю. - Жигулич М., <NAME>., <NAME>., Русинович И., <NAME>., Куренной В., Гутий Д., <NAME>., <NAME>., <NAME>., <NAME>., <NAME>., Пастушок В.</p>\r\n\r\n<p>Представитель: Андриевский Н.Л.</p>\r\n\r\n<p> </p>\r\n\r\n<p>Второе место заняла команда «ГОМЕЛЬСТЕКЛО»</p>\r\n\r\n<p>Состав: <NAME>., <NAME>., <NAME>.,<NAME>., Вырский М., <NAME>., <NAME>., <NAME>., <NAME>. <NAME>., <NAME>., Савченко С., Савченко А., Шевцов О.,</p>\r\n\r\n<p>Представитель: Савчиц В.</p>\r\n\r\n<p> </p>\r\n\r\n<p>Третье место – «КОЛОС» Гомельский район.</p>\r\n\r\n<p>Состав: Музычкин А., Болсун И., Цитриков А., Кротов Д., Лямцев Д., Рябцев В., Аубакиров А., <NAME>, Лущай Е., Юрченко Е., Себелев Н., <NAME>., <NAME>., Скороходов В., Сергеенко Н., Коршунов С.</p>\r\n\r\n<p>Представитель: Ковалев О.Н.</p>\r\n\r\n<p> </p>\r\n\r\n<p>Четвертое место – РУП «БЕЛОРУСНЕФТЬ – ОСОБИНО»</p>\r\n\r\n<p>Состав: Марченко Е., <NAME>., <NAME>., <NAME>., Любутин В., Денисов В., Косаримов О., Кайгородов С., Бондаренко И., Назаренко М., Пономарев Е., Гузов А., <NAME>.,</p>\r\n\r\n<p>Представитель: Денисов В.В.</p>\r\n\r\n<p> </p>\r\n\r\n<p>После окончания финальной игры пришло время самому приятному мероприятию – награждению победителей и призеров турнира.</p>\r\n\r\n<p>Сначала были определены лучшие игроки турнира по номинациям.</p>\r\n\r\n<ul>\r\n <li>Лучший вратарь турнира – Музычкин Артем («КОЛОС» Гомельский район).</li>\r\n <li>Лучший защитник турнира – <NAME> («ГОМЕЛЬСТЕКЛО»).</li>\r\n <li>Лучший нападающий турнира – Пастушок Владимир («ФАСТ» Гомель)</li>\r\n <li>Лучший игрок турнира – Музыченко Артем (РУП «БЕЛОРУСНЕФТЬ – ОСОБИНО»)</li>\r\n</ul>\r\n\r\n<p>В конце торжественной части состоялось награждение команд кубками и грамотами соответствующих степеней, а также совместное фото.</p>\r\n\r\n<p>Выражаем благодарность командам, которые приняли участие в турнире и ждем в следующем году!!!</p>', '1559133072-74IcOqW4eY.jpeg', '2019-03-15', 5, 3, 1, 761, 0, 'N_21', '2019-05-29 12:31:12', '2020-10-06 13:08:06', NULL),
(22, 'Республиканская спартакиада ДЮСШ по тяжелой атлетике среди юношей и девушек до 15 лет', 'respublikanskaya-spartakiada-dyussh-po-tyazheloy-atletike-sredi-yunoshey-i-devushek-do-15-let', '<p>С 25 марта по 30 марта 2019 года в г. Пинске прошла Республиканская Спартакиада детских юношеских спортивных школ по тяжелой атлетике. На соревнования прибыли 250 юных спортсменов 2004-2006 г.р., в составе 32 команд из всех областей страны. На церемонии открытия присутствовали почетные гости из Белорусского тяжелоатлетического союза, национальной сборной по тяжелой атлетике, Пинского горисполкома и другие. </p>\r\n\r\n<p>Учреждение «СДЮШОР ППО ОАО «Гомельстекло» представляли наши спортсмены-воспитанники: <NAME>, <NAME> и Дарья Шныпаркова. </p>\r\n\r\n<p>В первый день соревнований <NAME> – 2005 г.р., в в/к до 55 кг заняла четвертое место, проиграв третьему всего лишь пять кг. <NAME> – в в/к до 61 кг стал 12 из 35 участников. В заключительный день <NAME> заняла второе место. </p>\r\n\r\n<p>Поздравляем наших спортсменов с хорошим результатом. Пожелаем им терпения, мужества и больших побед на Республиканских соревнованиях.</p>\r\n\r\n<p>Учащихся подготовил тренер-преподаватель по тяжелой атлетике – <NAME>.</p>\r\n\r\n<p><strong>На фотографии призер Республиканской спартакиады среди ДЮСШ Дарья Шныпаркова на второй ступеньке пьедестала.</strong></p>', '1559299958-04.04.2019.jpg', '2019-04-04', 4, 2, 1, 619, 0, 'N_22', '2019-05-31 10:52:38', '2020-10-06 13:08:06', NULL),
(23, 'Открытая Республиканская спартакиада среди СУСУПов по греко-римской борьбе среди юношей 2004-2005 г.р.', 'otkrytaya-respublikanskaya-spartakiada-sredi-susupov-po-greko-rimskoy-borbe-sredi-yunoshey-2004-2005-g-r', '<p>В период с 10 апреля по 12 апреля 2019 года в г. Витебске прошла Открытая Республиканская спартакиада среди специализированных учебно-спортивных учреждений профсоюзов по греко-римской борьбе среди юношей 2004-2005 г.р. Участие в данных соревнованиях от команды учреждения «СДЮШОР ППО ОАО «Гомельстекло» приняло 10 спортсменов-учащихся.</p>\r\n\r\n<p>Вот имена победителей и призеров: <NAME> – 1место (в/к до 38кг); <NAME> – 1 место (в/к до 41 кг); <NAME> - 2 место (в/к до 44кг); <NAME> – 3 место (в/к до 48кг); <NAME> – 1 место (в/к до 52 кг); <NAME> – 2место (в/к до 52 кг); <NAME> – 2 место (в/к до 75 кг); Все ребята боролись в разных весовых категориях от 38 кг до 75 кг; В общекомандном месте сборная СДЮШОР ППО ОАО «Гомельстекло» заняла второе место, уступив хозяевам спартакиады команде из Витебска. Ребят подготовили тренеры-преподаватели: <NAME>., <NAME>., <NAME>.</p>\r\n\r\n<p>Не забываем о тех ребятах, которые не попали в призовую тройку, но были близки. Пожелаем им терпения, мужества, чтобы в скором будущем быть на высшей ступеньке пьедестала.</p>\r\n\r\n<p>На снимке сборная команда СДЮШОР ППО ОАО «Гомельстекло» по греко-римской борьбе юноши 2004-2005 г.р.</p>', '1559300294-ZLbvyKT4FA.jpeg', '2019-04-16', 2, 2, 1, 614, 0, 'N_23', '2019-05-31 10:56:29', '2020-10-06 13:08:06', NULL),
(24, 'Победители весеннего международного детско-юношеского турнира по футболу "Кубок рыси - 2019"', 'pobediteli-vesennego-mezhdunarodnogo-detsko-yunosheskogo-turnira-po-futbolu-kubok-rysi-2019', '<p>C 29 марта по 1 апреля наша детская команда «КОСТЮКОВКА-СПОРТ» участвовала в международном турнире по футболу «КУБОК РЫСИ-2019» среди юношеских команд 2011г.р., который проходил в г. Гомеле на поле стадиона «Центральный». </p>\r\n\r\n<p>В турнире принимали участие шесть команд: СДЮШОР №8 -1 (Гомель), СДЮШОР №8 -2 (Гомель), ДЮСШ «ЭНЕРГИЯ» ( Гомель), «КОСТЮКОВКА-СПОРТ» (Гомель), НЕВСКИЙ ФРОНТ-2 (Бетта, Санкт-Петербург), НЕВСКИЙ ФРОНТ-2 (Альфа, Санкт-Петербург) </p>\r\n\r\n<p>В первый день турнира 30 марта наши ребята играли две игры. Первую с СДЮШОР №8 -1, с которой сыграли в ничью 3:3 (забивали: <NAME>, <NAME>, автогол соперника), при этом проигрывали по ходу матча 1:3, но проявили характер и вырвали ничью. Вторая игра была с командой из Санкт-Петербурга НЕВСКИЙ ФРОНТ-2 (Бетта). Игра прошла в упорной борьбе. Ничья держалась до последних минут матча. Только за 3 минуты до конца игры, наша команда смогла вырвать победу со счетом 4:2 (забивали: <NAME>, Кацубо Артем, К<NAME> – 2) </p>\r\n\r\n<p>Во второй день турнира 31 марта было сыграно еще два матча. Сначала наша команда обыграла команду ДЮСШ «ЭНЕРГИЯ» со счетом 2:1 (два мяча забил Кацубо Артем), а потом в матче, в котором решалась судьба первого места, обыграла команду НЕВСКИЙ ФРОНТ-2 (Альфа, Санкт-Петербург) со счетом 4:2 (забивали: <NAME>, Кацубо Артем -3).</p>\r\n\r\n<p>В третий день турнира 1 апреля наша команда сыграли с командой СДЮШОР №8 -2, которую обыграла со счетом 2:0 (забивали: Прохор<NAME>, Кацубо Артем). Тем самым команда, набрав 13 очков, заняла первое место на турнире. ПОЗДРАВЛЯЕМ!!! </p>\r\n\r\n<p>Второе место заняла команда НЕВСКИЙ ФРОНТ-2 (Альфа, Санкт-Петербург) </p>\r\n\r\n<p>Третье место – команда ДЮСШ «ЭНЕРГИЯ» ( Гомель) </p>\r\n\r\n<p>Так же в номинации «Лучший игрок турнира» приз получил наш игрок - Артем Кацубо. С чем его и всю команду мы поздравляем!!!!! </p>\r\n\r\n<p>Хотелось бы выразить благодарность родителям наших ребят за активное участие в жизни команды, за их поддержку, искреннее переживания, помощь! </p>\r\n\r\n<p>Состав команды «КОСТЮКОВКА-СПОРТ»: КОРОВКИН ИВАН, ПРОХОРЕНКО АЛЕКСАНДР (забил 1 мяч), ЧЕРЕВАНЬ БОГДАН (забил 2 мячей), ПЕТРАЧКОВ ЕВГЕНИЙ, ТАРАСЕНКО МАТВЕЙ (2012), ФЛЕРКО ДМИТРИЙ, КРАЙНЮКОВ АРТЕМ, ЗУБКОВ АРТЕМ, ТУЗОВ КИРИЛЛ (2012), КАЦУБО АРТЕМ (забил 8 мячей), КОНДРУСЬ ЗАХАР (ЗАБИЛ 3 МЯЧА), ДУБРОВКА ИЛЬЯ, КОРХОВ МАКСИМ, СУХОДОЛОВ ДЕНИС.</p>', '1559300935-IMG_5899.jpg', '2019-04-16', 5, 3, 1, 666, 0, 'N_24', '2019-05-31 11:08:55', '2020-10-06 13:08:06', NULL),
(25, '«Пока мы помним – мы живём!!!»', 'poka-my-pomnim-my-zhivem-1', '<p>9 мая 2019 года на стадионе ГУ Физкультурно-оздоровительный центр «Костюковка-Спорт» прошел традиционный, ежегодный товарищеский матч, посвященный Дню Победы! Сборная ветеранов футбола м-на Костюковка и работников завода ОАО "Гомельстекло" встречалась со сборной ветеранов футбола города Гомеля (Гомсельмаш). </p>\r\n\r\n<p>Матч прошел в упорной, бескомпромиссной борьбе, который закончился победой сборной ветеранов футбола города Гомеля (Гомсельмаш) 3:1. </p>\r\n\r\n<p>После матча в торжественной обстановке были награждены ценными призами команды и лучшие игроки обеих команд.</p>\r\n\r\n<p><NAME> - сборная ветеранов футбола м-на Костюковка и работников завода ОАО "Гомельстекло"</p>\r\n\r\n<p><NAME> - сборная ветеранов футбола города Гомеля (Гомсельмаш)</p>\r\n\r\n<p>В конце хотелось бы поблагодарить команды, которые каждый год собираются, чтобы своей игрой почтить память погибших воинов, и поблагодарить за подвиг ныне живущих ветеранов в такой большой для всех нас праздник. </p>\r\n\r\n<p>Надеемся на продолжение данной традиции.</p>\r\n\r\n<p>«Пока мы помним – мы живём!!!» </p>', '1559301422-IMG_20190509_124800.jpg', '2019-05-10', 5, 3, 1, 710, 0, 'N_25', '2019-05-31 11:17:03', '2020-10-06 13:08:06', NULL),
(26, 'День физкультурника 2019', 'den-fizkulturnika-2019', '<p>В третью субботу мая в Беларуси традиционно отмечается День работников физической культуры и спорта. Так сложилось, что этот праздник стал своим не только для тех, кто по профессии связан с физической культурой, но и для всех любителей здорового образа жизни. Тем более, что практически в каждой нашей семье есть и спортивные болельщики, и те, кто не может представить свою жизнь без активных занятий спортом. </p>\r\n\r\n<p>Вот и 18 мая традиционно, на базе ГУ ФОЦ "Костюковка -Спорт", прошли соревнование между учащимися Костюковских средних школ, посвященные Деню работников физической культуры и спорта.</p>\r\n\r\n<p>Ребята участвовали в соревнованиях по плаванию, в многоборье, волейболе, футболе и перетягиванию каната. По итогам всех видов, победу в соревнованиях одержала ГУО "СШ 42", второе место заняла ГУО "СШ 13". </p>\r\n\r\n<p>Все ребята были награждены дипломами и сладкими призами, а победители получили Кубок.</p>', '1559301983-IMG-4c7232560e83ad031abee2487f580ac4-V.jpg', '2019-05-20', 0, 3, 1, 1228, 0, 'N_26', '2019-05-31 11:26:23', '2020-10-06 13:08:06', NULL),
(27, '1 июня. День защиты детей', '1-iyunya-den-zashchity-detey', '<p>В микрорайоне Костюковка 1 июня на стадионе ГУ ФОЦ "КОСТЮКОВКА - СПОРТ" прошло праздничное мероприятие посвященное Международному дню защиты детей, где была интерактивная зона для детей, игровые и спортивные площадки, музыкальная программа, выставки. Предлагаем фотоотчет с мероприятия.</p>', '1562764116-1-12июля.jpg', '2019-06-03', 0, 3, 1, 624, 0, 'N_27', '2019-07-10 13:08:36', '2020-10-06 13:08:06', NULL),
(28, 'ДЕТСКИЙ ВЕСЕННИЙ ТУРНИР ПО ФУТБОЛУ «KOSTUKOVKA CUP – 2019» СРЕДИ ДЕТЕЙ 2010 Г.Р. ЗАВЕРШЕН.', 'detskiy-vesenniy-turnir-po-futbolu-kostukovka-cup-2019-sredi-detey-2010-g-r-zavershen', '<p>На протяжении двух дней 23-24 мая 2019 г. на базе ГУ «Физкультурно-оздоровительный центр «Костюковка-Спорт» проходил ДЕТСКИЙ ВЕСЕННИЙ ТУРНИР ПО ФУТБОЛУ «KOSTUKOVKA CUP – 2019» среди детей 2010г.р. и младше на призы ГУ ФОЦ «КОСТЮКОВКА-СПОРТ».</p>\r\n\r\n<p>В турнире принимали участие шесть команд: СДЮШОР №8 -2010, СДЮШОР №8 -2011, ДЮСШ «ЭНЕРГИЯ», «КОСТЮКОВКА-СПОРТ», ДЮСШ«ЕРЕМИНО », СДЮШОР «ГОМСЕЛЬМАШ».</p>\r\n\r\n<p>Проведение турнира было организовано на достойном уровне, а команды порадовали всех напряженной борьбой, эффектным играми и обилием ярких голов. Каждая команда была нацелена на победу и никто не хотел уступать.</p>\r\n\r\n<p>И все-таки, турнир не мог останься без победителя, и им в упорной борьбе, победив во всех играх, стала команда ДЮСШ «ЕРЕМИНО»!!!</p>\r\n\r\n<p>Второе место, победив в четырех матчах и проиграв только ДЮСШ «ЕРЕМИНО» со счётом 1:2 (победный гол был забит за две минуты до конца игры), заняли хозяева турнира - команда «КОСТЮКОВКА-СПОРТ»!!!</p>\r\n\r\n<p>Третье место, опередив команду ДЮСШ «ЭНЕРГИЯ» лишь по разнице забитых и пропущенных мячей (обе команды набрали по 7 очков), заняла команда СДЮШОР ГОМСЕЛЬМАШ!!!</p>\r\n\r\n<p>Четвертое место заняла команда ДЮСШ «ЭНЕРГИЯ»</p>\r\n\r\n<p>Пятое место заняла команда СДЮШОР №8 -2010</p>\r\n\r\n<p>Шестое место заняли самые юные участники турнира (все ребята 2011 года рождения), команда СДЮШОР №8 -2011.</p>\r\n\r\n<p>После окончания игр в торжественной обстановке состоялось награждение участников и закрытие турнира. Было сказано много хороших, теплых слов детям с пожеланием дальнейших успехов, особая благодарность родителям и тренерам ребят за активное участие в жизни детей, за их поддержку, искренние переживания, помощь.</p>\r\n\r\n<p>Так сложилась традиция наших турниров, а это уже 5 турнир среди детей 2010 года рождения, что на каждом из них присутствовал воспитанник нашего учреждения и СДЮШОР "ГОМЕЛЬСТЕКЛО", действующий игрок мини-футбольного клуба "БЧ" и сборной Беларуси - НИКИТА АНДРИЕВСКИЙ.</p>\r\n\r\n<p>Вот и на этот раз ему было предоставлено слово для поздравления ребят. А ещё он пришел не с пустыми руками! Каждая команда получила сладкий приз в виде торта. Своим присутствием на турнирах он показывает, что помнит где вырос, а так же напоминает всем нам, чтобы и мы не забывали, что для развития спорта, в нашем случае футбола, нужно совсем не много, просто маленькая частичка своей души. А для детей это не только приятно, но и стимул расти и развиваться дальше, а так же память на всю жизнь.</p>\r\n\r\n<p>Еще одним стимулом для развития, конечно же служат победы, они придают детям уверенность и силу. К сожалению, призовых мест только три, но зато всегда есть личные награды.</p>\r\n\r\n<p>Организаторы турнира определили лучших игроков детского турнира.</p>\r\n\r\n<p>Ими стали:</p>\r\n\r\n<p>ЛУЧШИЙ ИГРОК ТУРНИРА – МАКСИМ ХАРАК (ДЮСШ «ЕРЕМИНО»)</p>\r\n\r\n<p>ЛУЧШИЙ БОМБАРДИР ТУРНИРА – ТИМОФЕЙ РУДЕНКОВ - 7 МЯЧЕЙ («КОСТЮКОВКА-СПОРТ»).</p>\r\n\r\n<p>ЛУЧШИЙ НАПАДАЮЩИЙ –ГЕОРГИЙ ЕРИН (СДЮШОР №8 -2010)</p>\r\n\r\n<p>ЛУЧШИЙ ПОЛУЗАЩИТНИК – НИКИТА МАРТЫНОВ (СДЮШОР «ГОМСЕЛЬМАШ»)</p>\r\n\r\n<p>ЛУЧШИЙ ЗАЩИТНИК –ЯРОСЛАВ КАРАБАНЬ (СДЮШОР №8 -2011)</p>\r\n\r\n<p>ЛУЧШИЙ ВРАТАРЬ – САМУСЕНКО МАКСИМ (СДЮШОР «ЭНЕРГИЯ»)</p>\r\n\r\n<p>САМЫЙ МОЛОДОЙ ИГРОК ТУРНИРА: МАТВЕЙ ТАРАСЕНКО (2012г.р.) («КОСТЮКОВКА-СПОРТ»).</p>\r\n\r\n<p>В завершении торжественной части состоялось награждение команд кубками, медалями и дипломами соответствующих степеней, которые вручали организаторы турнира ГУ ФОЦ «КОСТЮКОВКА-СПОРТ».</p>\r\n\r\n<p>По сложившейся традиции, в конце хотелось бы выразить благодарность руководству государственного учреждения “Физкультурно-оздоровительный центр “КОСТЮКОВКА-СПОРТ” за организацию турнира, а всем участникам турнира сказать спасибо. Так же пожелать всем не останавливаться на достигнутом, расти и развиваться. Организаторам расширить масштаб проведения соревнований, привлекать еще больше команд и не только гомельских, а командам добавлять в мастерстве и сыгранности.</p>\r\n\r\n<p>До новых встреч в уже традиционных соревнованиях на призы ГУ ФОЦ «КОСТЮКОВКА-СПОРТ».</p>\r\n\r\n<p>Продолжение следует...</p>\r\n\r\n<p>Состав команды «КОСТЮКОВКА-СПОРТ»: ИЛЬЯ ДУБРОВКА, АЛЕКСАНДР ПРОХОРЕНКО, БОГДАН ЧЕРЕВАНЬ, ЕВГЕНИЙ ПЕТРАЧКОВ, МАТВЕЙ ТАРАСЕНКО, АРТЕМ ЗУБКОВ, АРТЕМ КАЦУБО, ТИМОФЕЙ РУДЕНКОВ, АНДРЕЙ ГАВРИЛОВ, АРТЕМ ЕРМОЛАЕВ, СТАНИСЛАВ ЯКИМОВИЧ, ДОМИНИК АНДРИЕВСКИЙ, МАКСИМ ГОРЕЧЕНКО, МАКСИМ КОРХОВ, ЗАХАР КОНДРУСЬ.</p>', '1562765116-наго.jpg', '2019-05-25', 5, 3, 1, 635, 0, 'N_28', '2019-07-10 13:25:17', '2020-10-06 13:08:06', NULL),
(29, 'Турнир по футболу "КУБОК КОСТЮКОВКИ - 2019" объявляется открытым!!!', 'turnir-po-futbolu-kubok-kostyukovki-2019-obyavlyaetsya-otkrytym', '<p>27 мая стартовал долгожданный третий турнир по футболу "КУБОК - КОСТЮКОВКИ -2019". На стадион ГУ ФОЦ «Костюковка-спорт» мы увидели противостояние первых команд турнира. Команде РУП "Белоруснефть - Особино" противостояла команда "Колос" - U21. Матч получился зрелищным, результативным, держал до последних минут всех в напряжении, но более удачливей в этот день оказалась команда "Колос" - U21 , которая победила со счетом 2:3.</p>', '1562848386-1тур.jpg', '2019-05-28', 5, 4, 1, 720, 0, 'N_29', '2019-07-11 12:33:07', '2020-10-06 13:08:06', NULL),
(30, 'Колосок детский турнир. 6-7 июня', 'kolosok-detskiy-turnir-6-7-iyunya', '<p>6 и 7 июня на стадионе ГУ ФОЦ "КОСТЮКОВКА - СПОРТ" прошли областные соревнования по футболу "КОЛОСОК" для детей и юношества аграгородков, сельских населенных пунктов (юноши 2005 - 2007гг.р.)</p>\r\n\r\n<p>В соревнованиях приняла участие пять юношеских команд из разных районов Гомельской области:</p>\r\n\r\n<p>Гомельский район, Буда-Кошелевский район, Брагинский район, Мозырский район, Житковический район.</p>\r\n\r\n<p>Соревнования, под четким руководством главного судьи соревнований, <NAME>., прошли в упорной борьбе, каждая команда стремилась победить и только в последней игре соревнований определились все призовые места.</p>\r\n\r\n<p>Первое место заняла команда Гомельского района (8 очков), обогнав своих соперников на одно очко.</p>\r\n\r\n<p>Второе место заняла команда Мозырского района (7 очков), набравшая семь очков, как и команда Буда-Кошелевского района, но победившая соперника в очной встрече.</p>\r\n\r\n<p>Третья строчка осталась за Буда-Кошелевским районом (7очков).</p>\r\n\r\n<p>Четвертое место занял Житковический район (6 очков).</p>\r\n\r\n<p>Пятое место занял Брагинский район (0 очков).</p>', '1562849175-кол.jpg', '2019-06-08', 5, 4, 1, 651, 0, 'N_30', '2019-07-11 12:46:16', '2020-10-06 13:08:06', NULL),
(31, 'Детский турнир по футболу', 'detskiy-turnir-po-futbolu', '<p>И СНОВА ВТОРЫЕ….</p>\r\n\r\n<p>Вот и завершился ДЕТСКИЙ ЛЕТНИЙ ТУРНИР ПО ФУТБОЛУ «KOSTUKOVKA CUP – 2019» среди детей 2011 г.р. и младше на призы ГУ ФОЦ «КОСТЮКОВКА-СПОРТ», который проходил 8 и 9 июня 2019 г. на стадионе ГУ «Физкультурно-оздоровительный центр «Костюковка-Спорт».</p>\r\n\r\n<p>В турнире принимали участие семь команд. Постоянные участники наших детских турниров – это команды СДЮШОР 8 (Гомель, 2012), СДЮШОР 8 (Гомель, 2011), «КОСТЮКОВКА-СПОРТ», СДЮШОР «ГОМЕЛЬСТЕКЛО» (Костюковка), ДЮСШ ДСК (Гомель), а также новички наших турниров, которые впервые приняли участие в наших турнирах, но надеемся, что увидим их еще много раз – это самые младшие участник турнира - команда ФШ «ЮНИОР» (Гомель) (дети 2012-2013гг.р.), а также гости из России, детская команда «ЮНОСТЬ» (Московская область).</p>\r\n\r\n<p>Турнир прошел на достойном уровне, и на сей раз носил статус международного, так как в турнире принимала участие команда из России, детская команда «ЮНОСТЬ» (Московская область).</p>\r\n\r\n<p>Все команды старались показать максимум своих умений и способностей, радовали всех напряженной борьбой, эффектным играми и обилием ярких голов. Каждая команда была нацелена на победу, и никто не хотел уступать.</p>\r\n\r\n<p>Хоть это и детский турнир, и главное в нем не победа, а возможность для детей посоперничать между собой, показать чему они научились на тренировках, это все таки турнир, и в каждом турнире есть победитель. И наш турнир не мог остаться без него.</p>\r\n\r\n<p>Первое место в нашем турнире выиграли дебютанты турнира, команда «ЮНОСТЬ» (Московская область) (16 очков)!!! Команда прошла турнир без единого поражения. Сыграв только один раз в ничью с хозяевами турнира, командой «КОСТЮОВКА-СПОРТ».</p>\r\n\r\n<p>Второе место, как и в турнире по 2010 году заняли хозяева турнира, команда «КОСТЮКОВКА-СПОРТ» (13 очков)!!! На этот раз им не хватило совсем немного, чтобы выиграть турнир. После пяти игр они занимали первое место, но обидное поражение в последней игре с командой СДЮШОР 8 (Гомель, 2012) не позволило им стать первыми. ОПЯТЬ ВТОРЫЕ!!! Но команда заслуживает только положительных отзывов, все старались, отлично играли!</p>\r\n\r\n<p>Третье место заняла команда СДЮШОР 8 (Гомель,2012) (12 очков), неожиданно обыграв в последней игре хозяев турнира, лишив тем самым их первого места, и обогнали своих старших ребят СДЮШОР8 (Гомель,2011). Команда СДЮШОР8 (Гомель,2012) на протяжении всего турнира показывала хорошую игру, была дружным коллективом, просто молодцы!</p>\r\n\r\n<p>Четвертое место заняла команда СДЮШОР 8 (Гомель, 2011) (10 очков).</p>\r\n\r\n<p>Пятое место заняла команда СДЮШОР «ГОМЕЛЬСТЕКЛО» (7 очков).</p>\r\n\r\n<p>Шестое место заняла команда ДЮСШ ДСК (3 очка).</p>\r\n\r\n<p>Седьмое место заняли самые юные участники турнира (в основном ребята 2012-2013 годов рождения), команда ФШ «ЮНИОР» (0 очков). Несмотря, на их юный возраст, и то, что не получилось набрать очки в турнире, команда показывала местами хорошую игру, видно, что есть потенциал у ребят, и хотелось бы, что бы ребята не расстраивались, их победы еще впереди. Выражаем надежду, что и дальше будем видеть данную команду в наших турнирах.</p>\r\n\r\n<p>После окончания игр в торжественной обстановке состоялось награждение участников и закрытие турнира. Было сказано много хороших, теплых слов детям с пожеланием дальнейших успехов, особая благодарность родителям и тренерам ребят за активное участие в жизни детей, за их поддержку, искренние переживания, помощь.</p>\r\n\r\n<p>Не обошлось и без сюрпризов на нашем турнире. Так сошлось, что на нашем турнире были именинники. Накануне нашего турнира свои день рождения отметили: НИКИТА БОЧКАРЕВ, 6 июня (СДЮШОР 8 (Гомель,2012)) БОГДАН ЧЕРЕВАНЬ, 7 июня («КОСТЮКОВКА – СПОРТ»), а 9 июня в, заключительный день турнира, отметил свой день рождения ПЛАТОН МОСКОВКИН, (СДЮШОР 8 (Гомель,2011)). Ребятам пожелали здоровья, успехов в футболе, расти и развиваться.</p>\r\n\r\n<p>И уже по сложившейся традиции, награждение начинается со сладких призов. Хоть это и соревнования, но они все-таки детские и главное в них, что бы дети любили футбол, а победы и медали обязательно будут.</p>\r\n\r\n<p>После сладких подарков и поздравлений, перешли к поздравлению в личных номинациях. Хотелось бы отметить, что каждый из ребят заслуживает только хороших слов.</p>\r\n\r\n<p>Организаторы турнира определили лучших игроков детского турнира.</p>\r\n\r\n<p>Ими стали:</p>\r\n\r\n<p>ЛУЧШИЙ ИГРОК ТУРНИРА – ПЛАТОН МОСКОВКИН – (СДЮШОР8 - 2011, Гомель)</p>\r\n\r\n<p>ЛУЧШИЙ МОЛОДОЙ ИГРОК ТУРНИРА: ТИМУР ПОПКОВ (20123г.р.) (ФШ «ЮНИОР», Гомель).</p>\r\n\r\n<p>ЛУЧШИЙ БОМБАРДИР ТУРНИРА – СЕРГЕЙ КОРЖ - 15 МЯЧЕЙ («ЮНОСТЬ», Московская область, Россия).</p>\r\n\r\n<p>ЛУЧШИЙ НАПАДАЮЩИЙ – ДМИТРИЙ ФЛЕРКО (СДЮШОР «ГОМЕЛЬСТЕКЛО», Костюковка)</p>\r\n\r\n<p>ЛУЧШИЙ ПОЛУЗАЩИТНИК – ТИМУР ДАНИЛЕНКО (ДЮСШ ДСК, Гомель)</p>\r\n\r\n<p>ЛУЧШИЙ ЗАЩИТНИК – ИВАН НЕРУС (СДЮШОР 8 -2012, Гомель)</p>\r\n\r\n<p>ЛУЧШИЙ ВРАТАРЬ – АРТЕМ КРАЙНЮКОВ («КОСТЮКОВКА - СПОРТ»)</p>\r\n\r\n<p>В завершении торжественной части состоялось награждение команд кубками, медалями и дипломами соответствующих степеней, которые вручали организаторы турнира ГУ ФОЦ «КОСТЮКОВКА-СПОРТ».</p>\r\n\r\n<p>По сложившейся традиции, в конце хотелось бы выразить благодарность руководству государственного учреждения “Физкультурно-оздоровительный центр “КОСТЮКОВКА-СПОРТ” за организацию турнира, а всем участникам турнира сказать спасибо. Так же пожелать всем не останавливаться на достигнутом, расти и развиваться. Организаторам еще больше расширить масштаб проведения соревнований, привлекать еще больше команд и не только гомельских, и не только белорусские, а командам добавлять в мастерстве и сыгранности.</p>\r\n\r\n<p>До новых встреч в уже традиционных соревнованиях на призы ГУ ФОЦ «КОСТЮКОВКА-СПОРТ».</p>\r\n\r\n<p>Продолжение следует...</p>\r\n\r\n<p>Состав команды «КОСТЮКОВКА-СПОРТ»: АРТЕМ КРАЙНЮКОВ ,АЛЕКСАНДР ПРОХОРЕНКО , БОГДАН ЧЕРЕВАНЬ , ЕВГЕНИЙ ПЕТРАЧКОВ, МАТВЕЙ ТАРАСЕНКО , АРТЕМ ЗУБКОВ, АЛЕКСЕЙ МИХЕЕВ, ЗАХАР КОНДРУСЬ, РЕНАТ ГОЛОВНЕВ, ИВАН КОРОВКИН, САВЕЛИЙ КОРОВКИН, ДАНИИЛ ГОНЧАРОВ.</p>\r\n\r\n<p>Состав команды СДЮШОР «ГОМЕЛЬСТЕКЛО»: ИЛЬЯ ДУБРОВКА, АРСЕНИЙ РУДЕНКОВ, СТАНИСЛАВ ВЛАСЕНКО, МАКСИМ КОРХОВ, ВЛАДИМИР ПРИЩЕПА, ДМИТРИЙ ФЛЕРКО, КИРИЛЛ ТУЗОВ, ДАНИЛА ТЕРЕЩЕНКО, ЕГОР КРСТИЧ, РОДИОН ФЕДОСЕЕНКО, АРТЕМ МОСКАЛЕВ, ИВАН ИВАНЕШКО.</p>\r\n\r\n<p><a href="https://vk.com/album-143916012_263637117">В контакте</a></p>', '1562850133-68TwgBnihw8.jpg', '2019-06-10', 5, 4, 1, 725, 0, 'N_31', '2019-07-11 13:02:13', '2020-10-06 13:08:06', NULL),
(32, 'Товарищеская игра', 'tovarishcheskaya-igra', '<p>3 июля - День Независимости Республики Беларусь. Это радостный момент в жизни не только страны, но и каждого ее жителя. Он радостный и в то же время грустный. В этот день вспоминают о Великой Победе советского народа над фашизмом. Ведь во время войны погибло более 30% жителей этой страны.</p>\r\n\r\n<p>По уже сложившейся традиции, в ГУ ФОЦ «КОСТЮКОВКА-СПОРТ» все значимые праздники нашего города и страны традиционно отмечаются футбольным матчем. Главный праздник нашей страны ДЕНЬ НЕЗАВИСИМОСТИ не стал исключением! 3 июля 2019 года на стадионе ГУ ФОЦ "КОСТЮКОВКА - СПОРТ" состоялся товарищеский матч, посвященный памяти солдатам, погибшим в годы Великой Отечественной войны.</p>\r\n\r\n<p>В матче приняли участие сборные команды любителей футбола г. Гомеля и мкрн-на Костюковка.</p>\r\n\r\n<p>Матч прошел в дружеской обстановке, порадовал обилием голов и завершился с красивым счётом 5:5!!! Как говорится, победила дружба!!!</p>\r\n\r\n<p>В конце хотелось бы сказать огромное спасибо всем участникам этого матча за такую яркую и насыщенную игру! А так же выразить благодарность администрации ГУ ФОЦ «Костюковка-Спорт» за то, что организовывает такие матчи.</p>\r\n\r\n<p>Надеемся, что проведение таких матчей будет продолжаться и получит свое развитие и признание, что будет еще больше желающих принять участие в таких мероприятиях! Ведь очень важно помнить о том, что мир и свобода это самое важное и ценное в жизни человека! Мы обязаны сохранить мир и независимость, которые для нас добыты очень большой ценой- ценой человеческих жизней, разбитых и покалеченных жизней. Нужно сохранить и передать это следующему поколению!!!</p>\r\n\r\n<p>«Пока мы помним – мы живём!!!»</p>', '1562850921-ULc4lfnOWKo.jpg', '2019-07-04', 5, 4, 1, 611, 0, 'N_32', '2019-07-11 13:14:32', '2020-10-06 13:08:06', NULL),
(33, 'КУБОК КОСТЮКОВКИ ФУТБОЛ 2019', 'kubok-kostyukovki-futbol-2019', '<p>9, 10, 12 июля 2019 года был сыгран седьмой тур группового этапа открытого турнира по футболу "КУБОК КОСТЮКОВКИ - 2019" и тем самым закончился первый круг группового этапа.</p>\r\n\r\n<p>После первого круга лидером турнира стала команда СК "ГОМСЕЛЬМАШ" (13 очков), которая прошла первый круг с минимальными очковыми потерями. Вслед за командой устремились команды "ФАСТ" ГОМЕЛЬ (11 очков) и ФК "ХИМИК" (10 очков). Немного отстали от них команды "КОЛОС" - U21 (7 очков) и "ГОМЕЛЬСТЕКЛО" (7 очков), и замыкают турнирную таблицу на данный момент команды РУП "БЕЛОРУСНЕФТЬ - ОСОБИНО" (5 очков) и ФК "БАЦЬКI" ГОМЕЛЬ (4 очка).</p>\r\n\r\n<p>Подводя итог первого круга, тяжело выделить как лидера турнира, так и аутсайдера, так как команды очень плотно располагаются друг к другу. Ситуация в турнире может измениться в любой момент, и любая команда может как опуститься, так и подняться по турнирной сетке. Хотелось бы напомнить, что после второго круга стартует плей-офф, куда попадут 4 первые команды турнира. На данный момент ни одна команда не потеряла шанса туда пробиться, только у некоторых команд осталось меньше шансов на потерю очков. Второй круг будет (стартует уже 17 июля) еще жарче, еще зрелищнее и еще интересней.</p>\r\n\r\n<p>ПРИХОДИТЕ!!! БУДЕТ ЖАРКО!!!</p>\r\n\r\n<p>Предлагаем вашему вниманию отчет игр 7-го тура, также турнирную таблицу, таблицу бомбардиров, таблицу нарушений после игр первого круга и расписание второго круга группового этапа турнира по футболу "КУБОК КОСТЮКОВКИ - 2019"</p>\r\n\r\n<p>Полный фото отчёт 7-го тура в нашем альбоме по ссылке: <a href="https://vk.com/album-143916012_264215000">VK</a></p>', '1563269993-КУБОК КОСТЮКОВКИ ФУТБОЛ 2019_7_REZALT.jpg', '2019-07-12', 5, 4, 1, 1099, 0, 'N_33', '2019-07-16 09:39:54', '2020-10-06 13:08:06', NULL),
(34, 'Международный турнир по футболу', 'mezhdunarodnyy-turnir-po-futbolu', '<p>14 июля 2019 года в городе Клинцы Брянской области прошел 19-й по счету МЕЖДУНАРОДНЫЙ ТУРНИР по футболу памяти Героя России <NAME>, погибшего в Чечне. Традиционно на этом турнире выступает команда «КОЛОС» из Гомельского района (ЕРЕМИНО), а также российские команды. В этот раз на турнире выступили сразу две белорусские команды– участники турнира по футболу «КУБОК КОСТЮКОВКИ -2019», "ФАСТ" ГОМЕЛЬ и «КОЛОС» Гомельский район (сборная команд «ГОМЕЛЬСТЕКЛО» и «КОЛОС» - U21).</p>\r\n\r\n<p>Для команды «ФАСТ» турнир за пределами Беларуси был первый в истории. И команда смогла сходу вписать свое имя в анналы одного из старейших однодневных турниров Брянщины (если не старейшего). В турнире участвовали шесть команд, которые были разбиты на две группы. Победители групп отправлялись сразу в финал, а вторые места разыгрывали бронзу.</p>\r\n\r\n<p>В группе «А» в первой игре клинцовские команды «Динамо-УВД» и КАЗ сыграли 0:0. Команда «ФАСТ» тяжело вошла в турнир, но сумела вырвать ничью в своем первом матче против «Динамо-УВД» - 2:2. Счет открыл блестящим ударом со штрафного Никита Андриевский. И он же за две минуты до конца спас команду от поражения, которое лишили бы «Фаст» шансов на выход в финал. Второй матч гомельский коллектив провел уже намного увереннее, победив КАЗ 1:0. Гол на счету Дмитрия Гончарова. Это победа гарантировала выход в финал.</p>\r\n\r\n<p>В соседней группе «КОЛОС» Гомельский район (ЕРЕМИНО) оказался на третьем месте, впервые в истории оставшись без призового места на этом турнире. В финал вышла команда ФК «Клинцы», представляющая второй город Брянщины на чемпионате области. А второе место в группе заняла «Молодость» из Брянска, в составе которой был целый ряд футболистов, еще недавно игравших на профессиональном уровне в чемпионате России за брянское «Динамо» и другие команды ПФЛ.</p>\r\n\r\n<p>В матче за третье место «Молодость» по пенальти обыграла «Динамо-МВД».</p>\r\n\r\n<p>Финальный поединок – стал лучшим для команды «ФАСТ» по игре, но худшим по результату. Не обошлось и без явных судейских оплошностей. Не был засчитан из-за офсайда чистый гол гомельской команды. Да и единственный гол в этом матче был забит, когда во время атаки ФК «Клинцы» на поле на расстоянии метра друг от друга было два мяча, но игра не была остановлена. Можно посетовать и на невезение – «ФАСТ» мог несколько раз забить, но здорово сыграл голкипер ФК «Клинцы», а однажды мяч с линии вынес защитник хозяев поля. Впрочем, ФК «Клинцы» заслужили кубок своей победой над «Молодостью» (в этом матче игрок «Клинцов» <NAME> забив роскошный гол с 35-ти метров) и ничьей с командой «КОЛОС», а для команды «ФАСТ», учитывая, что это был дебют на международном уровне, второе место можно признать отличным результатом! Команды «ФАСТ» ГОМЕЛЬ и "КОЛОС" Гомельский район благодарят организаторов за приглашение!!! Отдельная благодарность и спасибо за помощь от команды "ФАСТ" - ЮРИЮ ЖИГАЛОВУ!!! Надеемся ему понравилось быть частью нашей команды и надеемся на дальнейшее с ним сотрудничество!!!</p>', '1563270787-IMG_8230.JPG', '2019-07-16', 5, 4, 1, 693, 0, 'N_34', '2019-07-16 09:53:07', '2020-10-06 13:08:06', NULL),
(35, '"КУБОК КОСТЮКОВКИ -2019"', 'kubok-kostyukovki-2019', '<p>14 сентября на стадионе ГУ ФОЦ "КОСТЮКОВКА - СПОРТ" прошли финальные матчи турнира по футболу "КУБОК КОСТЮКОВКИ -2019":<br />\r\nВ игре за третье место турнира встретились, проигравшие в полуфинальных играх турнира, команды "ФАСТ" ГОМЕЛЬ и "КОЛОС" U-21. Каждая из команд стремилась закончить турнир на мажорной ноте, что значило победить и взять кубок за третье место. Борьба на футбольном поле была нешуточная , команда "КОЛОС" U-21 не только хотела победить в этом матче, но и жаждала взять реванш за проигрыши в группе. Команда "ФАСТ" ГОМЕЛЬ, к сожалению, не смогла собрать свой сильнейший состав, да и в настрое и желании победить, уступила команде "КОЛОС" U-21. В итоге заслуженная победа команды "КОЛОС" U-21 со счётом 3:1, и итоговое третье место в турнире. ПОЗДРАВЛЯЕМ!!!<br />\r\nКульминацией же всего турнира стал долгожданный финал турнира, в котором по результатам полуфинальных игр, сыграли команды СК "ГОМСЕЛЬМАШ" и FC "БАЦЬКI". Команды стоили друг друга и отдать предпочтение какой-то одной команде было сложно. На бумаге фаворитом был СК "ГОМСЕЛЬМАШ", победитель группового этапа турнира, но команда FC "БАЦЬКI", которая после первого круга группового этапа турнира шла на последнем месте, но смогла собраться, и выдав семиматчевую (с учётом полуфинала) серию побед подряд, была с этим не согласна. <br />\r\nФинал удался на славу, здесь было все: и красивый футбол и борьба, и драма одних, и радость других. Футбол как никогда справедлив, да же тогда когда всем кажется, что он не справедлив. Побеждает всегда лучший на данный момент времени. Так было и в этот раз. Свой статус лидера и игровой класс подтвердила команда СК "ГОМСЕЛЬМАШ", обыграв в финале FC "БАЦЬКI со счётом 4:0, став не только победителем группового этапа турнира, но и всего открытого городского турнира по футболу "КУБОК КОСТЮКОВКИ -2019"!!!! ПОЗДРАВЛЯЕМ!!! <br />\r\nКоманда FC "БАЦЬКI" занимает второе место на турнире, с чем и ее ПОЗДРАВЛЯЕМ!!!<br />\r\nПредлагаем вашему вниманию результаты финальных матчей , таблицу бомбардиров и таблицу нарушений плей-офф турнира по футболу "КУБОК КОСТЮКОВКИ -2019".</p>', '1569226483-jkskQqp8sw8.jpg', '2019-09-23', 5, 4, 1, 685, 0, 'N_35', '2019-09-23 08:14:43', '2020-10-06 13:08:06', NULL),
(36, 'ДЕТСКИЙ ОСЕННИЙ ТУРНИР ПО ФУТБОЛУ «KOSTUKOVKA CUP – 2019» ЗАВЕРШЕН…', 'detskiy-osenniy-turnir-po-futbolu-kostukovka-cup-2019-zavershen', '<p>На протяжении трех дней 19-21 сентября 2019г. на базе ГУ «Физкультурно-оздоровительного центра «КОСТЮКОВКА - СПОРТ» проходил очередной ДЕТСКИЙ ОСЕННИЙ ТУРНИР ПО ФУТБОЛУ «KOSTUKOVKA CUP – 2019» среди детей 2010г.р. и младше на призы ГУ ФОЦ «КОСТЮКОВКА-СПОРТ»<br />\r\nВ турнире принимали участие восемь команд: ДЮСШ «ЕРЕМИНО», «КОСТЮКОВКА-СПОРТ», СДЮШОР «ГОМСЕЛЬМАШ», СДЮШОР «ЭНЕРГИЯ», СДЮШОР №8-2010, «ЗУБРЫ» (СДЮШОР №8-2010) ГОМЕЛЬ, ДЮСШ «ДСК», «РЫСИ» (СДЮШОР №8 -2010) ГОМЕЛЬ.<br />\r\nВсе команды старались показать максимум своих умений и способностей, показать чему они научились на тренировках. Все игры прошли в упорной, напряженной борьбе, команды порадовали эффектными играми и обилием ярких голов. Команды заслуживают только положительных отзывов, все старались, отлично играли!<br />\r\nПервое место в нашем турнире выиграли хозяева (первая их победа, до этого были только третьи и вторые места) турнира, команда «КОСТЮКОВКА-СПОРТ» (16 очков)!!! Команда прошла турнир ровно, захватив лидерство с первого дня турнира и не отдав его до последнего никому.<br />\r\nВторое место заняла команда СДЮШОР №8-2010 (13 очков)!!! Проиграв в первой игре хозяевам турнира, ребята собрались и до последней игры претендовали на первое место. К сожалению, проиграв в последней игре ДЮСШ ДСК, лишились шансов на первое место.<br />\r\nЗа третье место развернулась нешуточная борьба, так как сразу четыре команды претендовали на него. По дополнительным показателям третье место заняла команда СДЮШОР «ЭНЕРГИЯ» (11 очков), которая на протяжении всего турнира показывала хорошую игру, была дружным коллективом!<br />\r\nЧетвертое место заняла команда ДЮСШ ДСК (11 очков), так как в очной встрече проиграла команде СДЮШОР «ЭНЕРГИЯ».<br />\r\nПятое место заняла команда СДЮШОР «ГОМСЕЛЬМАШ» (11 очков). Этой команде обиднее всего, так как, не проиграв ни одной игры (две победы и пять!!! ничьих), но по дополнительным показателям пропустила вперед команды СДЮШОР «ЭНЕРГИЯ» и ДЮСШ ДСК.<br />\r\nШестое место заняла команда ДЮСШ «ЕРЕМИНО» (9 очков).<br />\r\nСедьмое место заняла команда «РЫСИ» (СДЮШОР №8 -2010) ГОМЕЛЬ (6 очков).<br />\r\nВосьмое место команда «ЗУБРЫ» (СДЮШОР №8-2010) ГОМЕЛЬ (0 очков). Несмотря на то, что не получилось набрать очки в турнире, команда показывала местами хорошую игру. Видно, что есть потенциал у ребят, и хотелось бы, что бы ребята не расстраивались, их победы еще впереди. Выражаем надежду, что и дальше будем видеть данную команду в наших турнирах.<br />\r\nПосле окончания игр в торжественной обстановке состоялось награждение участников и закрытие турнира. Было сказано много хороших, теплых слов детям с пожеланием дальнейших успехов, особая благодарность родителям и тренерам ребят за активное участие в жизни детей, за их поддержку, искренние переживания, помощь.<br />\r\nИ уже по сложившейся традиции, награждение начинается со сладких призов. Хоть это и соревнования, но они все-таки детские и главное в них, что бы дети любили футбол, а победы и медали обязательно будут.<br />\r\nПосле сладких подарков и поздравлений, перешли к поздравлению в личных номинациях. Хотелось бы отметить, что каждый из ребят заслуживает только хороших слов.<br />\r\nОрганизаторы турнира определили как лучших игроков в каждой команде, так и лучших игроков по номинациям турнира:<br />\r\nИми стали:<br />\r\nЛУЧШИЙ НАПАДАЮЩИЙ ТУРНИРА – АРТЕМ КАЦУБО ("КОСТЮКОВКА - СПОРТ").<br />\r\nЛУЧШИЙ ЗАЩИТНИК – СЕРГЕЙ ЛИСТОПАДОВ (ДЮСШ "ЕРЕМИНО").<br />\r\nЛУЧШИЙ ВРАТАРЬ – ЕГОР ГЛОМОЗДА (СДЮШОР "ГОМСЕЛЬМАШ").<br />\r\nЛУЧШИЙ ИГРОК КОМАНДЫ "КОСТЮКОВКА - СПОРТ" - МАКСИМ ГОРЕЧЕНКО<br />\r\nЛУЧШИЙ ИГРОК КОМАНДЫ СДЮШОР №8 - 2010 - ДМИТРИЙ ЛЕБЕДЬКО<br />\r\nЛУЧШИЙ ИГРОК КОМАНДЫ СДЮШОР "ЭНЕРГИЯ" - ЕГОР ПОТЕМКИН<br />\r\nЛУЧШИЙ ИГРОК КОМАНДЫ ДЮСШ ДСК - ИВАН СОКОЛЕНКО<br />\r\nЛУЧШИЙ ИГРОК КОМАНДЫ СДЮШОР "ГОМСЕЛЬМАШ" - НИКИТА МАРТЫНОВ<br />\r\nЛУЧШИЙ ИГРОК КОМАНДЫ ДЮСШ "ЕРЕМИНО" - ДМИТРИЙ ШЕВЦОВ<br />\r\nЛУЧШИЙ ИГРОК КОМАНДЫ "РЫСИ" ГОМЕЛЬ - НИКИТА ГАКОВ<br />\r\nЛУЧШИЙ ИГРОК КОМАНДЫ "ЗУБРЫ" ГОМЕЛЬ - КИРИЛЛ ПРОЦКЕВИЧ<br />\r\nВ завершении торжественной части состоялось награждение команд кубками, медалями и дипломами соответствующих степеней, которые вручали организаторы турнира ГУ ФОЦ «КОСТЮКОВКА-СПОРТ».<br />\r\nПо сложившейся традиции, в конце хотелось бы выразить благодарность руководству государственного учреждения “Физкультурно-оздоровительный центр “КОСТЮКОВКА-СПОРТ” за организацию турнира, а всем участникам турнира сказать спасибо. Так же пожелать всем не останавливаться на достигнутом, расти и развиваться. Организаторам еще больше расширить масштаб проведения соревнований, привлекать еще больше команд и не только гомельских, и не только белорусские, а командам добавлять в мастерстве и сыгранности.<br />\r\nДо новых встреч в уже традиционных соревнованиях на призы ГУ ФОЦ «КОСТЮКОВКА-СПОРТ».<br />\r\nПродолжение следует...<br />\r\nСостав команды «КОСТЮКОВКА-СПОРТ»: ИЛЬЯ ДУБРОВКА, АЛЕКСАНДР ПРОХОРЕНКО, БОГДАН ЧЕРЕВАНЬ, МАКСИМ КОРХОВ, ЕВГЕНИЙ ПЕТРАЧКОВ, МАТВЕЙ ТАРАСЕНКО, АРТЕМ ЗУБКОВ, ЗАХАР КОНДРУСЬ, ИВАН КОРОВКИН, МАКСИМ ГОРЕЧЕНКО, ДОМИНИК АНДРИЕВСКИЙ, ИЛЬЯ СЕРГЕЕНКО, АРТЕМ ЕРМОЛАЕВ, АРТЕМ КАЦУБО.<br />\r\n </p>', '1569568254-IMG_0038.jpg', '2019-09-25', 5, 4, 1, 579, 0, 'N_36', '2019-09-27 07:10:54', '2020-10-06 13:08:06', NULL),
(37, 'ФУТБОЛ ЖИВЕТ В КОСТЮКОВКЕ!', 'futbol-zhivet-v-kostyukovke', '<p><span style="font-family:arial,helvetica,sans-serif">Это не просто громкие слова, а факт, который говорит о том, что в нашем городе футбол развивается!</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">Многие годы стадион в Костюковке жил активной «футбольной жизнью», и после смены собственника в 2015 году и назначения в 2016 году нового молодого, амбициозного и целеустремленного директора «футбольная жизнь» микрорайона получила второе дыхание! В нынешнем году прошел уже третий турнир по футболу среди учреждений и предприятий г.Гомеля и Гомельского района «КУБОК КОСТЮКОВКИ-2019». Организатор турнира ГУ ФОЦ «КОСТЮКОВКА-СПОРТ», в лице директора учреждения, Анатолия <NAME>, при поддержке Гомельского горисполкома и при содействии Гомельской Областной Федерации Футбола и, безусловно, благодаря команде специалистов, под непосредственным руководством заместителя директора по основной деятельности Татьяны Ивановны Зуброновой, смогли, из практически любительского турнира, сделать турнир городского значения!</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">В турнире сезона 2019 года принимали участие семь не профессиональных, но очень хорошо подготовленных команд: команда «ФАСТ» ГОМЕЛЬ , FC«БАЦЬКI», РУП «БЕЛОРУСНЕФТЬ-ОСОБИНО», ФК «ХИМИК», «ГОМЕЛЬСТЕКЛО», СК «ГОМСЕЛЬМАШ» и, конечно же, постоянный участник турниров, самая молодая команда «КОЛОС» U-21 (победитель первого турнира в 2017 году).</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">С мая по сентябрь самые активные болельщики наблюдали, как достойные соперники проявляли в поле азарт, силу воли, командный дух и упорную борьбу за заветный приз – «КУБОК КОСТЮКОВКИ -2019»!</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">После группового этапа турнира в полуфинал прошли команды: СК «ГОМСЕЛЬМАШ», «ФАСТ» ГОМЕЛЬ, FC«БАЦЬКI», и «КОЛОС» U-21. Стоит отметить, что выход этих команд в полуфинал только усилил интригу!</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">И наконец, 14 сентября, в день праздника города, финальным играми, завершился третий открытый городской турнир по футболу «КУБОК КОСТЮКОВКИ - 2019».</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">Побеждает сильнейший! Так стало и на этот раз! В финальной игре со счетом 4:0 статус лидера подтвердила команда СК «ГОМСЕЛЬМАШ», которая стала ПОБЕДИТЕЛЕМ третьего открытого городского турнира по футболу «КУБОК КОСТЮКОВКИ-219»!</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">Второе место заняла команда FC «БАЦЬКI»<br />\r\nТретье место – команда «КОЛОС» - U21</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">Четвертое место – команда «ФАСТ» ГОМЕЛЬ</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">Пятое место - команда «ГОМЕЛЬСТЕКЛО»</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">Шестое место – команда ФК «ХИМИК»</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">Седьмое место – команда РУП «БЕЛОРУСНЕФТЬ-ОСОБИНО».</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">Здесь же на стадионе 14 сентября после финального матча, состоялась торжественная церемония награждения победителей и закрытие турнира. На церемонии присутствовали представители партнера проведения турнира (пиццерия « ФАСТ ПИЦЦА»), начальник отдела по работе с населением микрорайона Костюковка Клец Людмила Александровна и организаторы турнира.</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">В начале награждения все команды и судьи получили от партнёра турнира «КУБОК КОСТЮКОВКИ-2109 » пиццерии «ФАСТ ПИЦЦА – БЫСТРО И ВКУСНО» подарки: по фирменной пицце и сладкий напиток.</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">После были определены лучшие игроки турнира по номинациям.</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">Лучший вратарь турнира – ОСТАШЕВ ВЛАДСЛАВ («КОЛОС»-U21).</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">Лучший защитник турнира – ГАВРИН АЛЕКСАНДР («ФАСТ» ГОМЕЛЬ).</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">Лучший полузащитник турнира – СОРВИН СЕРГЕЙ («ГОМЕЛЬСТЕКЛО»).</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">Лучший нападающий турнира – КУЛАКЕВИЧ ДМИТРИЙ (ФК «ХИМИК»)</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">Лучший игрок турнира – ХИЖНЯК СЕРГЕЙ (СК «ГОМСЕЛЬМАШ»)</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">Бомбардир турнира – СИГАЙ ДМИТРИЙ (FC «БАЦЬКI»)</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">В конце торжественной части состоялось награждение команд кубками и грамотами соответствующих степеней.</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">Выражаем благодарность командам, которые приняли участие в турнире и ждем в следующем году!!!</span></p>\r\n\r\n<p><span style="font-family:arial,helvetica,sans-serif">До встречи в сезоне 2020г!!!!!</span></p>', '1569569982-tgM53ruT8eM.jpg', '2019-09-26', 5, 4, 1, 772, 0, 'N_37', '2019-09-27 07:39:42', '2020-10-06 13:08:06', NULL),
(41, 'Снова на пьедестале!', 'snova-na-pedestale', '<p dir="ltr">В период с 11 октября по 13 октября в городе Герое Бресте состоялся XI-й Международный турнир по вольной и греко-римской борьбе памяти <NAME>ата В.Н. и посвященного 1000-летию г. Бреста.</p>\r\n\r\n<p dir="ltr">Наша команда во главе с тренером-преподавателем по греко-римской борьбе Варивода А.А., приняла участие в этом турнире. Так же участие принимали не только команды из городов Республики Беларусь, но и команды из таких стран как: Украина и Россия.</p>\r\n\r\n<p dir="ltr">Победителями и призерами этого турнира стали учащиеся нашей школы: Артем Дмитрачков – 1 место (в/к до 38 кг); <NAME> – 1 место (в/к до 44 кг); <NAME> – 3 место (в/к до 41кг); <NAME> (в/к до 41 кг);</p>\r\n\r\n<p>Поздравляем наших ребят с хорошим выступлением. Желаем дальнейших побед на Международных соревнованиях. </p>', NULL, '2019-10-20', 2, 2, 1, 598, 0, 'N_38', '2019-10-21 15:26:06', '2020-10-06 13:08:06', NULL),
(42, 'Снова на пьедестале!', 'snova-na-pedestale-1', '<p dir="ltr">18 октября в городе Гродно состоялось Республиканское открытое первенство по греко-римской борьбе памяти тренера-преподавателя И.Ю.Санжиева.</p>\r\n\r\n<p dir="ltr">Наша команда во главе с тренерами-преподавателями по греко-римской борьбе Клеменцевым Д.В. и Гагнидзе Г.Г., приняла участие в этом турнире.</p>\r\n\r\n<p dir="ltr">Победителями и призерами этого турнира стали учащиеся нашей школы: Иван Бакай – 2 место (в/к до 29 кг); <NAME> – 1 место (в/к до 35 кг); Г<NAME>ский – 3 место (в/к до 44кг); Ар<NAME> – 1 место (в/к до 52 кг); <NAME> – 2 место (в/к до 57 кг);</p>\r\n\r\n<p>Поздравляем наших ребят с хорошим выступлением. Желаем дальнейших побед на Республиканских соревнованиях. </p>', NULL, '2019-10-23', 2, 2, 1, 582, 0, 'N_42', '2019-10-24 02:50:15', '2020-10-06 13:08:06', NULL),
(43, 'Турнир по футболу памяти <NAME>', 'turnir-po-futbolu-pamyati-v-d-ageeva', '<p>1-3 ноября 2019 года детская футбольная команда СДЮШОР "ГОМЕЛЬСТЕКЛО" участвовала в турнире по футболу памяти <NAME>. среди юношей 2011 -2012 гг. р., который проходил в Гомеле на площадке СДЮШОР №8. В турнире принимали участие 10 команд. Помимо гомельских команд (СДЮШОР-8, ДЮСШ ДСК, СДЮШОР "Гомельстекло"), в соревновании принимали участие ряд команд из других уголков Беларуси - Минска, Мозыря, а также гости из России - брянский "Партизан" и СШОР-5 из Смоленска. Команды были поделены на две группы. Наша команда попала в группу "А" с СДЮШОР №8 1-2011 (проиграли 2-9), МИНСК-1(проиграли 1-4), СДЮШОР №8 -2012 (победили 7-1), а также победителями этого турнира, командой СШОР-5 из Смоленска. (проиграли 1-11), после чего боролась за 5-8 места. Сначала сыграли стыковую игру с командой МИНСК-2 (группа "Б") и выиграли со счетом 6-4, а потом за 5-6 место сыграли с МИНСК-1. Основное время игры завершилось со счетом 3-3, а в серии пенальти удача улыбнулась нашим парням. Тем самым, взяв реванш за поражение в группе, наша команда заняла пятое место на турнире (год назад было 6 место).</p>\r\n\r\n<p>Команда демонстрировала хороший футбол, все старались, боролись, конечно, где-то пока не хватает мастерства и хладнокровия в завершающей стадии атак. Главное, что дети получили не только опыт в играх с сильными соперниками, но получили удовольствие от игры в футбол, а в этом возрасте это самое главное. С каждой игрой ребята показывали более уверенную игру, характер, что позволило в конечном итоге выиграть матчи за 5-8 место.</p>\r\n\r\n<p>Хотелось бы выразить благодарность родителям наших ребят за активное участие в жизни команд, за их поддержку, искреннее переживания, помощь!!!<br />\r\nСОСТАВ КОМАНДЫ СДЮШОР «ГОМЕЛЬСТЕКЛО»: <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>.</p>', '1572942886-IMG-e939f413eca14db1bf2fef962705c433-V-min.jpg', '2019-11-05', 5, 4, 1, 660, 0, 'N_43', '2019-11-05 08:34:46', '2020-10-06 13:08:06', NULL),
(44, 'ДЕТСКИЙ ЗИМНИЙ ТУРНИРА ПО МИНИ - ФУТБОЛУ «GOMEL GLASS CUP - 2019»', 'detskiy-zimniy-turnira-po-mini-futbolu-gomel-glass-cup-2019', '<p>ДЕТСКИЙ ЗИМНИЙ ТУРНИРА ПО МИНИ - ФУТБОЛУ «GOMEL GLASS CUP - 2019» среди детей 2011-2012 годов рождения (6-8 декабря 2019 года) ЗАВЕРШЕН… <br />\r\n6-8 декабря 2019г. в зале ГУ «Физкультурно-оздоровительного центра «КОСТЮКОВКА - СПОРТ» прошел ДЕТСКИЙ ЗИМНИЙ ТУРНИРА ПО МИНИ - ФУТБОЛУ «GOMEL GLASS CUP - 2019» среди детей 2011-2012 годов рождения на призы УЧРЕЖДЕНИЯ «СДЮШОР ППО ОАО "ГОМЕЛЬСТЕКЛО» <br />\r\nВ турнире принимали участие восемь команд: СДЮШОР «ГОМЕЛЬСТЕКЛО» -1 , СДЮШОР «ГОМЕЛЬСТЕКЛО» -2, ДЮСШ ДСК, СДЮШОР №8 -2011, СДЮШОР «ГОМСЕЛЬМАШ», СДЮШОР №8 -2012, СДЮШОР «ЭНЕРГИЯ», «МЕТЕОР» ГОМЕЛЬ.<br />\r\nВсе команды старались показать максимум своих умений и способностей, показать чему они научились на тренировках. Все игры прошли в упорной, напряженной борьбе, команды порадовали эффектными играми и обилием ярких голов. Команды заслуживают только положительных отзывов, все старались, отлично играли! <br />\r\nПервое место в турнире выиграли хозяева турнира, команда СДЮШОР «ГОМЕЛЬСТЕКЛО» -1 (21 очко)!!! Поздравляем команду с первым местом!!!</p>\r\n\r\n<p>Команда прошла турнир ровно, захватив лидерство с первого дня турнира и не отдав его до последнего никому, выиграв все семь матчей.Все игроки проявили свои лучшие качества и внесли свой вклад в общую победу. <br />\r\nВторое место заняла команда ДЮСШ ДСК (15 очков)!!! Команда показала уверенную игру, ребята много атаковали и много забивали, особенно выделялся лучший бомбардир турнира <NAME> (17 мячей). Команда уступила хозяевам турнира (как в последствии оказалась, это был матч за первое место) и в последней игре турнира, в ранге серебренного призера, команде СДЮШОР «ГОМСЕЛЬМАШ». В игре с победителями турнира при этом дала настоящий бой. Матч получился очень напряженным и результативным, победить могла как одна команда, так и другая, но в конце матча команда СДЮШОР «ГОМЕЛЬСТЕКЛО» -1 смогла вырвать победу со счетом 4-3.<br />\r\nЗа третье место развернулась нешуточная борьба между СДЮШОР №8-2011 и СДЮШОР «ГОМСЕЛЬМАШ». Команды набрали ровное количество очков, по 12, но в игре между собой победу одержала команда СДЮШОР №8-2011 со счетом 4:3 и тем самым заняла третье место, четвертое же место досталось команде СДЮШОР «ГОМСЕЛЬМАШ».<br />\r\nПятое место заняла команда СДЮШОР «ГОМЕЛЬСТЕКЛО» -2 (8 очков). Вторая команда хозяев местами показывала хорошую по детски игру, уступив только первой тройке команд, но при этом смогла победить сильную команды СДЮШОР «ГОМСЕЛЬМАШ», тем самым лишив их шансов на пьедестал и команду СДЮШОР «ЭНЕРГИЯ», так же сыграла в ничью с командами СДЮШОР №8 -2012 и «МЕТЕОР» ГОМЕЛЬ.<br />\r\nШестое место заняла команда СДЮШОР №8-2012 (7 очков). Лучший свой матч турнира команда сыграла с победителем турнира, командой СДЮШОР «ГОМЕЛЬСТЕКЛО» -1. Хоть они и проиграли со четом 2:4, но очень сильно потрепали нервы как игрокам, так и болельщикам хозяев. После первого тайма счет был в пользу команды СДЮШОР №8-2012 2:0. И только во втором тайме команда СДЮШОР «ГОМЕЛЬСТЕКЛО» -1 смогла склонить чашу весов в свою пользу. Хотелось бы выделить в этой игре вратаря команды СДЮШОР №8-2012 Тимура Попкова (2013 г.р.), который много раз спасал свою команду, как в этой игре, так и во всем турнире, поэтому заслуженно был признан ЛУЧШИМ ВРАТАРЕМ ТУРНИРА среди детей 2012 г.р.<br />\r\nСедьмое место заняла команда СДЮШОР «ЭНЕРГИЯ» (3 очка).<br />\r\nВосьмое место команда «МЕТЕОР» (СДЮШОР №8-2012) ГОМЕЛЬ (1 очко). <br />\r\nПосле окончания игр в торжественной обстановке состоялось награждение участников и закрытие турнира. Было сказано много хороших, теплых слов детям с пожеланием дальнейших успехов, особая благодарность родителям и тренерам ребят за активное участие в жизни детей, за их поддержку, искренние переживания, помощь. <br />\r\nИ уже по сложившейся традиции, награждение начинается со сладких призов. Хоть это и соревнования, но они все-таки детские и главное в них, что бы дети любили футбол, а победы и медали обязательно будут. <br />\r\nПосле сладких подарков и поздравлений, перешли к поздравлению в личных номинациях. Хотелось бы отметить, что каждый из ребят заслуживает только хороших слов. <br />\r\nОрганизаторы турнира определили как лучших игроков в каждой команде, так и лучших игроков по номинациям турнира: <br />\r\nИми стали: <br />\r\nБОМБАРДИР ТУРНИРА — Тимур Даниленко (ДЮСШ ДСК) <br />\r\nЛУЧШИЙ ИГРОК ТУРНИРА (2011 г.р.) - <NAME> (СДЮШОР "ГОМЕЛЬСТЕКЛО" -1) <br />\r\nЛУЧШИЙ ИГРОК ТУРНИРА (2012 г.р.) -Сергей Егеров (ДЮСШ ДСК) <br />\r\nЛУЧШИЙ НАПАДАЮЩИЙ ТУРНИРА (2011 г.р.) – Кирилл Волков (СДЮШОР "ГОМСЕЛЬМАШ") <br />\r\nЛУЧШИЙ НАПАДАЮЩИЙ ТУРНИРА (2012 г.р.) - <NAME>ов СДЮШОР "ГОМЕЛЬСТЕКЛО" -2) <br />\r\nЛУЧШИЙ ЗАЩИТНИК ТУРНИРА (2011 г.р.) – Иван Колчанов (МЕТЕОР) <br />\r\nЛУЧШИЙ ЗАЩИТНИК ТУРНИРА (2012 г.р.) - Матвей Тарасенко (СДЮШОР "ГОМЕЛЬСТЕКЛО" -1) <br />\r\nЛУЧШИЙ ВРАТАРЬ ТУРНИРА (2011 г.р.)– Евгений Левковец (СДЮШОР №8 - 2011) <br />\r\nЛУЧШИЙ ВРАТАРЬ ТУРНИРА (2012 г.р.) — Тимур Попков (СДЮШОР №8 -2012) <br />\r\nЛУЧШИЙ ИГРОК КОМАНДЫ СДЮШОР "ГОМЕЛЬСТЕКЛО" -1 - Богдан Черевань <br />\r\nЛУЧШИЙ ИГРОК КОМАНДЫ ДЮСШ ДСК - Никита Ковалев <br />\r\nЛУЧШИЙ ИГРОК КОМАНДЫ СДЮШОР 8 - 2011 - Иван Коноплев <br />\r\nЛУЧШИЙ ИГРОК КОМАНДЫ СДЮШОР "ГОМСЕЛЬМАШ" - Степан Якушев <br />\r\nЛУЧШИЙ ИГРОК КОМАНДЫ СДЮШОР "ГОМЕЛЬСТЕКЛО" -2 - Захар Кондрусь <br />\r\nЛУЧШИЙ ИГРОК КОМАНДЫ СДЮШОР 8 - 2012 - Иван Нерус<br />\r\nЛУЧШИЙ ИГРОК КОМАНДЫ СДЮШОР "ЭНЕРГИЯ" - Матвей Баскин <br />\r\nЛУЧШИЙ ИГРОК КОМАНДЫ "МЕТЕОР" ГОМЕЛЬ - <NAME><br />\r\nВ завершении торжественной части состоялось награждение команд кубками, медалями и дипломами соответствующих степеней, которые вручали организаторы турнира - учреждение "СДЮШОР ППО ОАО "ГОМЕЛЬСТЕКЛО"<br />\r\nДо новых встреч!!!<br />\r\nПродолжение следует... <br />\r\nСостав команды СДЮШОР «ГОМЕЛЬСТЕКЛО» -1: <br />\r\nАртем Крайнюков, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, Станисл<NAME>асенко.<br />\r\nСостав команды СДЮШОР "ГОМЕЛЬСТЕКЛО" -2: <br />\r\nЗахар Кондрусь, Максим Корхов, Р<NAME>ев, Ар<NAME>, Роди<NAME>ко, Артем Москалев, Кир<NAME>, Алек<NAME>, Вячеслав Журок.</p>', '1576482511-img_1121-min.jpg', '2019-12-10', 5, 4, 1, 568, 0, 'N_44', '2019-12-13 15:38:31', '2020-10-06 13:08:06', NULL),
(45, 'Из Клинцов с бронзой…', 'iz-klincov-s-bronzoy', '<p>Команда СДЮШОР «ГОМЕЛЬСТЕКЛО» 6 января 2020 года принимала участие в международном турнире по мини-футболу, посвященного памяти Героя России В.И. Шкурного в городе Клинцы (Брянская область, Россия) среди мальчиков 2009 - 2010 годов рождения. В турнире участвовала 8 команд: две из Гомеля (Беларусь) СДЮШОР «ГОМЕЛЬСТЕКЛО» и СДЮШОР №8, а так же шесть российских: две команды хозяев паркета из ДЮСШ Шкурного г. Клинцы, команда из Стародуба, команда Почепа, команда ДЮСШ Луч г. Клинцы, команда из Новозыбкова. Команды были разбиты на две группы по 4 команды . Далее были стыковые матчи за 1-е, 3-е места. </p>\r\n\r\n<p>Наша команда в группе обыграла СДЮШОР №8 со счетом 4:0 и команду из Новозыбкова со счетом 3:0, а так же уступила команде хозяев паркета ДЮСШ Шкурного -1 со счетом 2:5. Тем самым заняла 2 место в группе и играла за 3-е место с командой Почепа, где победили со счетом 4:1. </p>\r\n\r\n<p>Итоговое распределение мест на турнире.</p>\r\n\r\n<p>1.ДЮСШ Шкурного -2</p>\r\n\r\n<p>2.ДЮСШ Шкурного -1</p>\r\n\r\n<p>3.СДЮШОР «ГОМЕЛЬСТЕКЛО»</p>\r\n\r\n<p>4.Почеп</p>', '1578558608-IMG_2691-min.JPG', '2020-01-08', 5, 4, 1, 471, 0, 'N_45', '2020-01-09 08:30:10', '2020-10-06 13:08:06', NULL),
(46, 'Открытое первенство ДЮСШ ДСК среди юношей 2010 года рождения', 'otkrytoe-pervenstvo-dyussh-dsk-sredi-yunoshey-2010-goda-rozhdeniya', '<p>11 - 12 января, после новогодних праздников, возобновилось ОТКРЫТОЕ ПЕРВЕНСТВО ДЮСШ ДСК среди юношей 2010 года рождения, которое проходит в зале Дворца Физической Культы профсоюзов.</p>\r\n\r\n<p>Команда СДЮШОР "ГОМЕЛЬСТЕКЛО" играла 12 января две игры. С начало сыграли с командой ФШ "Юниор" Гомель. Игра получилось напряженной, не смотря на итоговый счет 11-1 в пользу нашей команды (голы забивали: Гориченко М. (3), Андриевский Д. (3), Кацубо А.(2), Кондрусь З., Зубков А., Руденков Т.). В первом тайме команда "Юниор" грамотно оборонялось, да и вратарь хорошо играл, поэтому наша команда долгое время не могла забить. Помог соперник, рикошетом от ноги защитника был открыт счет, после чего наши ребята раскрепостились и в первом тайме забили еще три гола. Во втором тайме команда СДЮШОР "ГОМЕЛЬСТЕКЛО" играла еще раскованней. Проходило много красивых комбинаций и было забито еще семь мячей. Но не обошлось в бочке с медом и без ложки дегтя, в виде необязательного пропущенного мяча, лишившего нашего вратаря "сухаря".</p>\r\n\r\n<p>Во втором матче играли с лидером группового этапа, командой "Славия" (Мозырь). И игра показала, что не зря эта команда занимает первое место. Уже в самом начале наши ребята дали фору сопернику в два мяча, потом один отыграли, но сразу же пропустили и третий, но не расклеились и сократили разрыв до минимума. Первый тайм закончился со счетом 3-2 в пользу команды "Славия" (Мозырь).</p>\r\n\r\n<p>Во втором тайме наши ребята собрались и еще с большей яростью начали атаковать ворота соперника и были вознаграждены. Они не только сравняли счет, но и вышли в перед, сделав счет 4-3, но к сожалению победный счет не смогли удержать. В итоге боевая ничья со счетом 4-4. (голы забивали: Кацубо А.(3), Андриевский Д.).</p>\r\n\r\n<p>После 6-го тура команда СДЮШОР "ГОМЕЛЬСТЕКЛО" набрала 13 очков и занимает второе место в группе, на первом месте с 16 очками расположилась команда "Славия" (Мозырь).</p>\r\n\r\n<p>Команда СДЮШОР "ГОМЕЛЬСТЕКЛО", как и остальным командам, осталось сыграть еще один матч на групповом этапе (25-26 января) с командой ДЮСШ ДСК, после чего будет ясно какое место команда займет на групповом этапе и на кого выйдет в 1/4 плей-офф.</p>', '1579087216-IMG_2804-min.JPG', '2020-01-12', 5, 4, 1, 403, 0, 'N_46', '2020-01-15 11:20:17', '2020-10-06 13:08:06', NULL),
(47, 'Детский рождественский турнир «GOMEL GLASS CUP - 2020»', 'detskiy-rozhdestvenskiy-turnir-gomel-glass-cup-2020', '<p>16 января 2020 года стартовал ДЕТСКИЙ РОЖДЕСТВЕНСКИЙ ТУРНИР ПО МИНИ - ФУТБОЛУ «GOMEL GLASS CUP - 2020» среди мальчиков 2010 года рождения.</p>\r\n\r\n<p>И стартовал, как и полагается новогоднему турниру с сюрпризов и подарков. Воспитанник учреждения "СДЮШОР ППО ОАО "ГОМЕЛЬСТЕКЛО", а также действующий игрок мини-футбольного клуба "БЧ", Андриевский Никита, в составе которого в январе 2020 года он стал двукратным обладателем КУБКА БЕЛАРУСИ ПО МИНИ-ФУТБОЛУ, пришел на турнир с подарками.</p>\r\n\r\n<p>Детям был предоставлен тот самый КУБОК БЕЛАРУСИ ПО МИНИ-ФУТБОЛУ, как стимул расти, развиваться и добиваться больших побед. Всем желающим была дана возможность прикоснуться к кубку и сделать с ним фото.</p>\r\n\r\n<p>СДЮШОР "ГОМЕЛЬСТЕКЛО", в лице ее директора Владимира <NAME>ского, был вручен памятный мяч с автографами игроков и тренерского состава МФК "БЧ", тем самым Никита хотел выразить признательность школе, которая дала ему путевку в увлекательное путешествие под названием футбол. Не осталась в долгу и школа, вручив памятный приз Никите, тем самым показав, что школа помнит каждого своего воспитанника и двери школы всегда открыты для них.</p>\r\n\r\n<p>После Торжественного открытия состоялись игры первого игрового дня.</p>', '1579511889-DSC_7298-min.JPG', '2020-01-17', 5, 4, 1, 399, 0, 'N_47', '2020-01-17 12:37:56', '2020-10-06 13:08:06', NULL),
(48, 'Детский рождественский турнир по мини-футболу «GOMEL GLASS CUP - 2020» с золотым отливом!!!', 'detskiy-rozhdestvenskiy-turnir-po-mini-futbolu-gomel-glass-cup-2020-s-zolotym-otlivom', '<p>ДЕТСКИЙ РОЖДЕСТВЕНСКИЙ ТУРНИР ПО МИНИ – ФУТБОЛУ «GOMEL GLASS CUP - 2020» С ЗОЛОТЫМ ОТЛИВОМ!!!</p>\r\n\r\n<p>Команда СДЮШОР «ГОМЕЛЬСТЕКЛО» -1 (в турнире участвовало две команды) победила в ежегодном, уже вошедшем в традицию, ДЕТСКОМ РОЖДЕСТВЕНСКОМ ТУРНИРЕ ПО МИНИ – ФУТБОЛУ «GOMEL GLASS CUP - 2020» среди мальчиков 2010 года рождения на призы УЧРЕЖДЕНИЯ «СДЮШОР ППО ОАО "ГОМЕЛЬСТЕКЛО» и ПЕРВИЧНОЙ ПРОФСОЮЗНОЙ ОРГАНИЗАЦИИ ОАО "ГОМЕЛЬСТЕКЛО», который проходил 16-18 января 2020 года на паркете спортивного зала ГУ «Физкультурно-оздоровительного центра «КОСТЮКОВКА - СПОРТ»</p>\r\n\r\n<p>В турнире принимали участие восемь команд: СДЮШОР «ГОМЕЛЬСТЕКЛО» - 1, СДЮШОР «ГОМЕЛЬСТЕКЛО» -2, ДЮСШ "ЕРЕМИНО", СДЮШОР №8 -2010, СДЮШОР «ГОМСЕЛЬМАШ», ФК "НОВОБЕЛИЦА", СДЮШОР «ЭНЕРГИЯ», ФК «СИТИ» ГОМЕЛЬ.</p>\r\n\r\n<p>Турнир прошел в дружеской, теплой атмосфере, хоть на протяжении всего турнира на паркете спортивного зала кипели нешуточные страсти. Забитые или пропущенные мячи в ворота вызывали бурю эмоций не только у болельщиков, но и у самих игроков и их наставников.</p>\r\n\r\n<p>Все команды старались показать максимум своих умений и способностей, оставили хорошее впечатление на турнире. Видно, что за год проведенной тренировочной работы и участия в других турнирах подобного уровня, ребята приобрели опыт, уверенность в своих силах и в дальнейшем добиваться высоких результатов. Это касалась всех тактико-технических действий (пасы, обводка, отборы, игра головой, перехваты).</p>\r\n\r\n<p>Все игры прошли в упорной, напряженной борьбе. Команды радовали эффектными комбинациями и обилием ярких голов. Игроки проявили в играх характер, бойцовские качества, волю к победе, чувства коллективизма, все заслуживают только положительных отзывов, все старались, отлично играли, не смотря на итоговый результат.</p>\r\n\r\n<p>Как было написано выше, первое место в турнире выиграли хозяева турнира, команда СДЮШОР «ГОМЕЛЬСТЕКЛО» - 1 (18 очков)!!! Команда прошла турнир ровно, захватив лидерство с первого дня турнира, и несмотря на единственное поражение от серебреного призера турнира, команды ФК «НОВОБЕЛИЦА», не отдала его до последнего никому!!! Поздравляем команду с первым местом!!!</p>\r\n\r\n<p>Второе место заняла команда ФК «НОВОБЕЛИЦА» (17 очков)!!! Команда показала уверенную игру, ребята много атаковали и много забивали, особенно выделялись лучший бомбардир турнира ГЕОРГИЙ ЕРИН (11 мячей) и МАТВЕЙ НИКОНОВИЧ (10 мячей). Команда никому не уступила и единственная команда, которая смогла обыграть победителя турнира, команду СДЮШОР «ГОМЕЛЬСТЕКЛО» -1. Но обогнать хозяев турнира не позволили два матча, сыгранных в ничью с командами ДЮСШ «ЕРЕМИНО» и СДЮШОР «ЭНЕРГИЯ».</p>\r\n\r\n<p>За третье место развернулась нешуточная борьба между ДЮСШ «ЕРЕМИНО» и СДЮШОР «ГОМСЕЛЬМАШ». Перед очной встречей команд, команда ДЮСШ «ЕРЕМИНО» на одно очко опережала команду СДЮШОР «ГОМСЕЛЬМАШ». Победа команды ДЮСШ «ЕРЕМИНО» гарантировала ей третье место в турнире и оставляла шансы даже на второе. Но ребята с команды СДЮШОР «ГОМСЕЛЬМАШ» были не согласны с таким раскладом. Они не только навязали сопернику борьбу, но и смогли победить в очень тяжелом, но очень эмоциональном матче со счетом 1-0. Тем самым перехватив инициативу в свои руки, точнее сказать в свои ноги. Командам оставалось сыграть еще по одному матчу, при этом «СЕЛЬМАШЕВЦАМ» достаточно было не проиграть. Последние игры оказались очень тяжелыми для команд, все - таки это был последний день турнира и было потрачено много сил и эмоций до этого. Особо было это видно по команде СДЮШОР «ГОМСЕЛЬМАШ». И если команда ДЮСШ «ЕРЕМИНО» смогла все-таки победить своего соперника со счетом 2-1, то команде СДЮШОР «ГОМСЕЛЬМАШ» (12 очков) не удалось добиться даже ничьи. Они проиграли СДЮШОР «ЭНЕРГИЯ» со счетом 2:0 и тем самым заняли обидное четвертное место. пропустив на третье место команду ДЮСШ «ЕРЕМИНО» (13 очков).</p>\r\n\r\n<p>Пятое место в турнире заняла «злой гений» этого турнира, команда СДЮШОР «ЭНЕРГИЯ» (8 очков). Можно сказать, что она поучаствовала в распределении всех мест. Сначала, отобрав очки у команды ФК «НОВОБЕЛИЦА, сыграв с ней в ничью 4-4, лишила их (как оказалось в конце турнира) шансов на победу в турнире. А победив в последнем матче турнира, она не только лишила шансов команду СДЮШОР «ГОМСЕЛЬМАШ» на третье место, но и сама поднялась с седьмого места сразу на пятое.</p>\r\n\r\n<p>Шестое место заняла команда ФК «СИТИ» ГОМЕЛЬ (7 очков). Ребята играли весь турнир хорошо, даже претендовали на призовые места, но третий день турнира, где им выпало сыграть игры, как впоследствии оказалось, с победителем и призерами турнира, принес им три поражения и итоговое шестое место.</p>\r\n\r\n<p>Седьмое место заняла команда СДЮШОР №8 -2010 (6 очков). Команда местами показывала хорошую игру, а местами проваливала отрезок матча и в итоге проигрывала матч. Это нестабильность не позволила команде подняться выше седьмого места.</p>\r\n\r\n<p>Восьмое место заняла команда СДЮШОР «ГОМЕЛЬСТЕКЛО» - 2 (0 очко). Ребята старались, местами выходила даже не плохо, но нехватка опыта (для многих это первый турнир) не позволило добиться лучшего результата. Но полученный опыт позволит ребятам в будущем быть более уверенными в своих силах.</p>\r\n\r\n<p>После окончания игр в торжественной обстановке состоялось награждение участников и закрытие турнира. Было сказано много хороших, теплых слов детям с пожеланием дальнейших успехов, особая благодарность родителям и тренерам ребят за активное участие в жизни детей, за их поддержку, искренние переживания, помощь.</p>\r\n\r\n<p>Каждому тренеру команды организаторы турнира вручили подарок, кружку с фотографией МФК «БЧ» и календарь на 2020 год с этой же командой, переданные воспитанником учреждения «СДЮШОР ППО ОАО «ГОМЕЛЬСТЕКЛО», НИКИТОЙ АНДРИЕВСКИМ. В данный момент НИКИТА является игроком МФК «БЧ», в составе которого в январе 2020 года он стал двукратным обладателем КУБКА БЕЛАРУСИ ПО МИНИ-ФУТБОЛУ.</p>\r\n\r\n<p>На этом подарки от НИКИТЫ не закончились. Мяч с автографами всего состава МФК «БЧ» был вручен самому эффективному на его взгляд игроку турнира, АРТЕМУ КАЦУБО (СДЮШОР «ГОМЕЛЬСТЕКЛО» -1), с пожеланиями и дальше расти и развиваться, с каждым днем становиться еще сильнее, и идти за своей мечтой, несмотря ни на что.</p>\r\n\r\n<p>Дальше, по сложившейся уже традиции, награждение продолжилось сладкими призами. Хотелось бы выразить признательность за помощь в организации сладкого стола председателю ПЕРВИЧНОЙ ПРОФСОЮЗНОЙ ОРГАНИЗАЦИИ ОАО "ГОМЕЛЬСТЕКЛО», ВЛАДИМИРУ ПЕТРОВИЧУ АНИСЬКОВУ.</p>\r\n\r\n<p>После сладких подарков, перешли к поздравлению в личных номинациях. Хотелось бы отметить, что каждый из ребят заслуживает только хороших слов.</p>\r\n\r\n<p>Организаторы турнира определили лучших игроков по номинациям турнира:</p>\r\n\r\n<p>Ими стали:</p>\r\n\r\n<p>ЛУЧШИЙ ИГРОК ТУРНИРА - ТИМОФЕЙ РУДЕНКОВ (СДЮШОР "ГОМЕЛЬСТЕКЛО" - 1)</p>\r\n\r\n<p>ЛУЧШИЙ БОМБАРДИР ТУРНИРА - ГЕОРГИЙ ЕРИН (ФК "НОВОБЕЛИЦА")</p>\r\n\r\n<p>ЛУЧШИЙ НАПАДАЮЩИЙ ТУРНИРА –КИРИЛЛ КОНОПЛИЧ (ФК "СИТИ")</p>\r\n\r\n<p>ЛУЧШИЙ НАПАДАЮЩИЙ ТУРНИРА - ЕВГЕНИЙ БЫРКОВ (ДЮСШ "ЕРЕМИНО")</p>\r\n\r\n<p>ЛУЧШИЙ ЗАЩИТНИК ТУРНИРА – ИЛЬЯ КОНОДА (ФК "НОВОБЕЛИЦА")</p>\r\n\r\n<p>ЛУЧШИЙ ЗАЩИТНИК ТУРНИРА - ЕВГЕНИЙ ПЕТРАЧКОВ (СДЮШОР "ГОМЕЛЬСТЕКЛО" -1)</p>\r\n\r\n<p>ЛУЧШИЙ ВРАТАРЬ ТУРНИРА – ЕГОР ГЛОМОЗДА (СДЮШОР "ГОМСЕЛЬМАШ")</p>\r\n\r\n<p>ЛУЧШИЙ ВРАТАРЬ ТУРНИРА - НИКИТА СЕРИК (СДЮШОР "ЭНЕРГИЯ")</p>\r\n\r\n<p>В завершении торжественной части состоялось награждение команд кубками, медалями и дипломами соответствующих степеней, которые вручали организаторы турнира - учреждение "СДЮШОР ППО ОАО "ГОМЕЛЬСТЕКЛО"</p>\r\n\r\n<p>До новых встреч!!!</p>\r\n\r\n<p>Продолжение следует...</p>\r\n\r\n<p>Состав команды СДЮШОР «ГОМЕЛЬСТЕКЛО» - 1:</p>\r\n\r\n<p>ИЛЬЯ ДУБРОВКА, АЛЕКСАНДР ПРОХОРЕНКО, БОГДАН ЧЕРЕВАНЬ, ИВАН КОРОВКИН, ЕВГЕНИЙ ПЕТРАЧКОВ, МАТВЕЙ ТАРАСЕНКО, ЗАХАР КОНДРУСЬ, АРТЕМ КАЦУБО, ВЛАДИСЛАВ КУРЕННОЙ, ДОМИНИК АНДРИЕВСКИЙ, МАКСИМ ГОРИЧЕНКО, ТИМОФЕЙ РУДЕНКОВ.</p>\r\n\r\n<p>Состав команды СДЮШОР "ГОМЕЛЬСТЕКЛО" - 2:</p>\r\n\r\n<p>АРТЕМ КРАЙНЮКОВ, АНДРЕЙ ГАВРИЛОВ, МАКСИМ КОРХОВ, МАКСИМ ПОМОЗОВ, СТАНИСЛАВ ЯКИМОВИЧ, ДАНИЛА ТЕРЕЩЕНКО, НИКИТА РЯБЦЕВ, НИКИТА ДУШКЕВИЧ, ВЛАДИМИР РЕШЕНОК, АЛЕКСАНДР ЧАЙКОВ, АЛЕКСЕЙ ФЕДОРЕНКО, ДМИТРИЙ ФЛЕРКО, АРТЕМ ЗУБКОВ.</p>', '1579513276-F4yNEaYhF9w-min.jpg', '2020-01-20', 5, 4, 1, 437, 0, 'N_48', '2020-01-20 09:41:17', '2020-10-06 13:08:06', NULL),
(49, 'Первая победа ….!!!!', 'pervaya-pobeda', '<p>31 января 2020 года прошло открытое первенство ДЮСШ ДСК среди команд, составленных из юношей 2012-2013 годов рождения по мини-футболу, в котором приняла участие и наша команда СДЮШОР «ГОМЕЛЬСТЕКЛО», составленная из ребят 2012 года рождения.</p>\r\n\r\n<p>Для ребят 2012 года рождения это был только второй их совместный турнир (некоторые ребята с этого состава участвовали в турнирах за 2011 год). Первый турнир был в декабре 2019 года в городе Речица, где они заняли 10 место из 12 команд.</p>\r\n\r\n<p>Кроме нашей команды, в турнире принимали участие еще пять команд: ДЮСШ ДСК, ДЮСШ -2 город Речица была представлена двумя командами, ФШ «ЮНИОР», ФШ «ГРАНД», которые были поделены на две группы по 3 команды.</p>\r\n\r\n<p>СДЮШОР «ГОМЕЛЬСТЕКЛО» попала в группу «Б» вместе со второй командой ДЮСШ-2 (г. Речица) и с ФШ «ЮНИОР» (г. Гомель).</p>\r\n\r\n<p>Сначала наши ребята сыграли со второй командой ДЮСШ-2 -II (г. Речица) и уверенно ее обыграли со счетом 4-0 (голы забивали Т<NAME> -2, <NAME>, <NAME>). На протяжении всего матча ребята атаковали, при этом надежно играя в защите.</p>\r\n\r\n<p>Во второй игре с командой ФШ «ЮНИОР» (г. Гомель) решалось, кто займет первое место в группе, а кто второе. До этого матча команда ФШ «ЮНИОР» (г. Гомель) обыграла вторую команду ДЮСШ-2 -II (г. Речица) со счетом 1-0.</p>\r\n\r\n<p>И в этой игре нашим юным футболистам удалось победить не простого соперника со счетом 3-1 (голы забивали <NAME>, <NAME> -2). С самого начала игры наши ребята начали атаковать ворота соперника, но хорошо играл вратарь и защитники. Но нашим ребятам удалось забить сначала один мяч, а после и второй. Немного успокоившись, ребята позволили сопернику один мяч отыграть. Но большего сделать сопернику не позволили, а сами в конце забили еще и третий, тем самым выиграв матч и заняв первое место в группе.</p>\r\n\r\n<p>В финале турнира нашей команде противостояла первая команда ДЮСШ-2 (г. Речица), которая так же обыграла в группе «А» своих соперников (ФШ «ГРАНД» 4-0 и ДЮСШ ДСК 2-1) и заняла там первое место.</p>\r\n\r\n<p>Финал получился на славу. Две команды предстали равными друг другу соперниками. Каждая из них достойна была победы на турнире. Сначала команда СДЮШОР «ГОМЕЛЬСТЕКЛО», забив дважды, повела в счете. Но команда ДЮСШ-2 (г. Речица) собралась, навязала борьбу и смогла отыграться, забив один мяч со штрафного, а второй с аута. Но в этот день удача была на стороне команды СДЮШОР «ГОМЕЛЬСТЕКЛО». В самом конце нашим ребятам удалось забить решающий победный гол. Тем самым победив в матче со счетом 3-2 (голы забивали К<NAME>, <NAME> -2) команда СДЮШОР «ГОМЕЛЬСТЕКЛО» стала ПОБЕДИТЕЛЕМ турнира!!! ПОЗДРАВЛЯЕМ!!!</p>\r\n\r\n<p>Лучшим игроком в нашей команде был признан <NAME>!!!</p>\r\n\r\n<p>ИТОГОВЫЕ МЕСТА:</p>\r\n\r\n<ol>\r\n <li>СДЮШОР "ГОМЕЛЬСТЕКЛО"</li>\r\n <li>ДЮСШ-2 (г. Речица)</li>\r\n <li>ФШ "Юниор" (г. Гомель)</li>\r\n <li>ДЮСШ ДСК (г. Гомель)</li>\r\n <li>ДЮСШ-2- II (г. Речица)</li>\r\n <li>ФШ "Гранд" (г. Гомель)</li>\r\n</ol>\r\n\r\n<p>Состав команды СДЮШОР «ГОМЕЛЬСТЕКЛО»:</p>\r\n\r\n<p><NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>.</p>', '1580718064-IMG_3345-min.JPG', '2020-02-01', 5, 4, 1, 395, 0, 'N_49', '2020-02-03 05:19:51', '2020-10-06 13:08:06', NULL),
(50, 'Борцы – чемпионы!', 'borcy-chempiony', '<p style="text-align: center;"><strong>Областная спартакиада ДЮСШ по греко-римской борьбе среди юношей 2005-2007 г.р.</strong></p>\r\n\r\n<p>В период с 27 по 29 января 2020 года на базе ГУ «ФОЦ «Костюковка-спорт» прошла областная спартакиада среди ДЮСШ по греко-римской борьбе среди юношей 2005-2007 г.р. В данных соревнованиях участие приняло более 10 команд из г. Гомеля и Гомельской области.</p>\r\n\r\n<p>Нашу школу представляла команда ребят из микрорайона Костюковка и а/г Еремино в составе 20 учащихся. Вот имена победителей и призеров:</p>\r\n\r\n<p><NAME> - 1место (в/к 38 кг); <NAME> - 3 место (в/к 38 кг); <NAME> - 1 место (в/к 41 кг); <NAME> - 3 место (в/к 41 кг);</p>\r\n\r\n<p>Шаховский Глеб - 2 место (в/к 44 кг); Волжнов Илья - 3 место (в/к 44 кг);</p>\r\n\r\n<p><NAME> - 1 место (в/к 48 кг); <NAME> - 3 место (в/к 48 кг);</p>\r\n\r\n<p><NAME> - 2 место (в/к 48 кг); <NAME> - 1 место (в/к 52 кг); <NAME> - 3 место (в/к 57 кг);</p>\r\n\r\n<p><NAME> -2 место (в/к 57 кг); <NAME> - 1 место (в/к 62 кг);</p>\r\n\r\n<p><NAME> - 3 место (в/к 62 кг); <NAME> - 1 место (в/к 85 кг);</p>\r\n\r\n<p>Победители и призеры примут участие в Республиканской Спартакиаде в г. Минске. Ребят подготовили тренеры-преподаватели: <NAME>., Гагнидзе Г.Г., Клеменцев Д.В.</p>\r\n\r\n<p>Пожелаем тем ребятам, которые не попали на пьедестал – терпения, удачи и пусть их дальнейшие поединки будут для них победными!</p>', '1581055489-IMG-06f668c010a54bdb866b07c8c743dcd7-V.jpg', '2020-02-06', 2, 2, 1, 423, 0, 'N_50', '2020-02-07 06:04:49', '2020-10-06 13:08:06', NULL),
(51, 'С "Бронзой" с турнира по футболу "ПЛАНЕТА ФУТБОЛА -2020".', 's-bronzoy-s-turnira-po-futbolu-planeta-futbola-2020', '<p>9 февраля финишировал турнир по футболу "ПЛАНЕТА ФУТБОЛА-2020". среди команд, составленных из юношей 2011-12 годов рождения.</p>\r\n\r\n<p>Команда СДЮШОР "ГОМЕЛЬСТЕКЛО" (дети 2011-2012 годов рождения) заняла третье место на турнире.</p>\r\n\r\n<p>Главный трофей турнира уехал в Украину - в г. Вышгород Киевской области, команда ФК "Чайка". "Серебро" у команды СДЮШОР-8 "Новобелица" (Гомель).</p>\r\n\r\n<p>Наша команда на турнире попала в группу "В" вместе с командами: СДЮШОР-8 "Барселона" (Гомель), ФШ "Вингер" (Гомель), "Гидромашина" (Ливны, Орловская обл., Россия).</p>\r\n\r\n<p>В группе ребята обыграли команды ФШ "Вингер" (Гомель) со счетом 15-1, СДЮШОР-8 "Барселона" (Гомель) со счетом 6-0 и проиграли команде "Гидромашина" (Ливны, Орловская обл., Россия) со счетом 2-3, но по дополнительным показателям все-таки заняли первое место в группе. Это позволило побороться за призовые места.</p>\r\n\r\n<p>В полуфинале команда СДЮШОР "ГОМЕЛЬСТЕКЛО" играла с командой ФК "Чайка" (Вышгород, Киевская обл., Украина). Игра получилась равной, тяжелой, каждая команда заслуживала выход в финал. Но гол, которой был забит в начале матча со штрафного, позволил победить нашему сопернику, команде ФК "Чайка", которая в последствии стала победителем турнира, обыграв еще одну гомельскую команду СДЮШОР-8 "Новобелица" (Гомель, тренер Хомченко Н.П.).</p>\r\n\r\n<p>Наши же ребята играли за третье место со своим обидчиком в групповом этапе, командой "Гидромашина". Игра получилась очень напряженной, как и первый матч. Но в этот раз наши ребята провели матч более собранно в защите и более активно в нападение. что позволило им победить в матче со счетом 3-1 (голы забивали <NAME>, <NAME>, К<NAME>).</p>\r\n\r\n<p>В награждении команд приняли участие заместитель председателя Гомельской областной федерации футбола Аркадий <NAME>, мастера спорта СССР, ветераны гомельского футбола <NAME> и Владимир <NAME>.<br />\r\nЛучшим игроком в составе команды СДЮШОР "ГОМЕЛЬСТЕКЛО" был признан <NAME>. Поздравляем!!!</p>\r\n\r\n<p>ИТОГОВЫЕ МЕСТА</p>\r\n\r\n<p>1. ФК "Чайка" (Вышгород, Киевская обл., Украина)</p>\r\n\r\n<p>2. СДЮШОР-8 "Новобелица" (Гомель)</p>\r\n\r\n<p>3. СДЮШОР "Гомельстекло" (Гомель)</p>\r\n\r\n<p>4. ФК "Гидромашина" (Ливны, Орловская обл., Россия)</p>\r\n\r\n<p>5. СДЮШОР-8 "Реал" (Гомель)</p>\r\n\r\n<p>6. ФК "Славия" (Мозырь)</p>\r\n\r\n<p>7. СДЮШОР-8 "Барселона" (Гомель)</p>\r\n\r\n<p>8. ДЮСШ ДСК (Гомель)</p>\r\n\r\n<p>9. ФК "Атлетик" (С-Петербург, Россия)</p>\r\n\r\n<p>10. ФК "Варяг" (Брянск, Россия)</p>\r\n\r\n<p>11. ДЮФК "Атлетик" (Одесса, Украина)</p>\r\n\r\n<p>12. ФК "Вингер" (Гомель)</p>\r\n\r\n<p>13. ФК "Гомель" (2012)</p>\r\n\r\n<p>Состав команды СДЮШОР «ГОМЕЛЬСТЕКЛО»:</p>\r\n\r\n<p><NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, <NAME>.</p>', '1581937170-0-02-0a-6aa47305d6466150c1b06e4dad5c869c5c9732f74d5e0f661e45f36228238ac8_2f8f12e9-min.jpg', '2020-02-13', 5, 4, 1, 403, 0, 'N_51', '2020-02-17 10:59:30', '2020-10-06 13:08:06', NULL),
(52, 'Серебряные призеры ОТКРЫТОГО ПЕРВЕНСТВА ДЮСШ ДСК среди юношей 2010 года рождения!!!', 'serebryanye-prizery-otkrytogo-pervenstva-dyussh-dsk-sredi-yunoshey-2010-goda-rozhdeniya', '<p>16 февраля 2020 года завершилось ОТКРЫТОЕ ПЕРВЕНСТВО ДЮСШ ДСК среди юношей 2010 года рождения, которое проходило в зале Дворца Физической Культуры профсоюзов в течении 3-х месяцев, начиная с декабря месяца 2019 года.</p>\r\n\r\n<p>Команда СДЮШОР "ГОМЕЛЬСТЕКЛО" заняла итоговое второе место, проиграв в финале команде ФК "СЛАВИЯ" (Мозырь) со счетом 3-4 (голы у нас забивали <NAME>, <NAME>, <NAME>). Соперник показал себя как очень организованная, атакующая, не прощающая ошибок командой, подтвердив то, что не зря заняла первое место в групповом этапе турнира, не проиграв ни одной игры. Была только одна ничья с нашей командой со счетом 4-4, кстати вырванная на последних секундах, что не удалось сделать нашим ребятам в финале. Дав фору в два мяча в самом начале игры, игроки команды СДЮШОР "ГОМЕЛЬСТЕКЛО" не сложили руки, а пытались отыграться. Они смогли еще в первом тайме отыграть один матч, могли забить еще один, но заигрались в атаке и пропустили третий. Во втором тайме наша команда продолжила атаковать, но опять заигралась и получила контратаку, пропустив четвертый гол. К чести ребят, они не сдались и смогли отыграть быстро два мяча. Оставалась играть еще минут пять до конца, но к сожалению, ребята так и не смогли поразить ворота соперника в четвертый раз и перевести игру в серию пенальти. Что ж, нужно поздравить соперника за хорошую игру, а самим продолжить тренировать свое мастерство дальше.</p>\r\n\r\n<p>Финальным играм предшествовали полуфинальные игры, сыгранные в этот же день. Сначала команда СДЮШОР "ГОМЕЛЬСТЕКЛО" обыграла команду СДЮШОР №8-2010 (тренер <NAME>) со счетом 7-1 (голы у нас забивали <NAME>, <NAME>ский -3, <NAME>, <NAME>, <NAME>н.), не дав усомниться не на секунду, что именно команда СДЮШОР "ГОМЕЛЬСТЕКЛО" достойна финала. Во второй паре полуфиналистов встречались команды ФК "СЛАВИЯ" (Мозырь) и СДЮШОР "ГОМСЕЛЬМАШ". Несмотря на итоговый счет 6-2 в пользу ФК "СЛАВИИ", матч получился очень напряженный, счет 2-1 в пользу ФК "СЛАВИЯ" держался до середины второго тайма, и у "Сельмашевцев" были моменты, чтобы сровнять счет, но класс игроков команды из Мозыря оказался выше. В конце забив еще пару мячей, они сняли все вопросы о победителе.</p>\r\n\r\n<p>В матче за третье место сильнее оказалось команда СДЮШОР "ГОМСЕЛЬМАШ", со счетом 4-1 победив команду СДЮШОР-8 (Гомель).</p>\r\n\r\n<p>ИТОГОВЫЕ МЕСТА</p>\r\n\r\n<p>1. ФК "Славия" (Мозырь)</p>\r\n\r\n<p>2. СДЮШОР "Гомельстекло"</p>\r\n\r\n<p>3. СДЮШОР "Гомсельмаш"</p>\r\n\r\n<p>4. СДЮШОР-8 (Гомель)</p>\r\n\r\n<p>5. ДЮСШ ДСК (Гомель)</p>\r\n\r\n<p>6. ФШ "Юниор" (Гомель)</p>\r\n\r\n<p>7. ФШ "Вингер" (Гомель)</p>\r\n\r\n<p>8. ДЮСШ (Жлобин)</p>\r\n\r\n<p>Лучшим игроком в составе команды СДЮШОР "Гомельстекло" был признан Артем Кацубо.</p>\r\n\r\n<p>Приз от партнёра турнира компании "VIMPEX SPORT" достался игроку команды СДЮШОР "Гомельстекло" - Доминику Андриевскому.</p>\r\n\r\n<p>Состав команды СДЮШОР «ГОМЕЛЬСТЕКЛО»:</p>\r\n\r\n<p>ИЛЬЯ ДУБРОВКА, АЛЕКСАНДР ПРОХОРЕНКО, БОГДАН ЧЕРЕВАНЬ, ИВАН КОРОВКИН, ЕВГЕНИЙ ПЕТРАЧКОВ, МАТВЕЙ ТАРАСЕНКО, ЗАХАР КОНДРУСЬ, АРТЕМ КАЦУБО, ДОМИНИК АНДРИЕВСКИЙ, МАКСИМ ГОРИЧЕНКО, ТИМОФЕЙ РУДЕНКОВ. АНДРЕЙ ГАВРИЛОВ, МАКСИМ КОРХОВ, ДМИТРИЙ ФЛЕРКО, АРТЕМ ЗУБКОВ.</p>', '1581941298-IMG_3143-min.JPG', '2020-02-16', 5, 4, 1, 442, 0, 'N_52', '2020-02-17 12:08:19', '2020-10-06 13:08:06', NULL),
(53, 'День памяти воинов интернациолистов', 'den-pamyati-voinov-internaciolistov', '<p>15 февраля в Беларуси отмечается День памяти воинов-интернационалистов.</p>\r\n\r\n<p>Трагические события, которые унесли жизни десятков и сотен защитников, исполнявших свой служебный долг за пределами Отечества, не могут быть забыты! Воевавшие в Афганистане вошли в историю как истинные патриоты и герои своего времени, не жалевшие жизней ради справедливости.</p>\r\n\r\n<p>Мы искренне восхищаемся мужеством и стойкостью ветеранов войны в Афганистане и выражаем свою признательность за их активную жизненную позицию. Желаем всем крепкого здоровья, благополучия, а самое главное мира и добра!</p>\r\n\r\n<p>Вечная память и низкий поклон погибшим!</p>\r\n\r\n<p>Ежегодно в ГУ ФОЦ «Костюковка-спорт» проводится турнир по мини-футболу, посвященный этой дате.</p>\r\n\r\n<p>С 11 по 14 февраля семь команд боролись за победу:</p>\r\n\r\n<ol>\r\n <li>«ГОМЕЛЬСТЕКЛО»</li>\r\n <li> «БОЛЬШЕВИК»</li>\r\n <li> «ПАСЧ-6»</li>\r\n <li>«УСК»</li>\r\n <li>«АЛМАЗ-ВЕТЕРАНЫ»</li>\r\n <li>«ККЛФ»</li>\r\n <li>«СПАСАТЕЛЬ».</li>\r\n</ol>\r\n\r\n<p style="margin-left:18.0pt">Участники турнира были разделены на две подгруппы. Команды, занявшие 1 и 2 места в подгруппах встретились в полуфинале</p>\r\n\r\n<p style="margin-left:18.0pt"> («УСК» 3:2 «АЛМАЗ-ВЕТЕРАНЫ» и «ПАСЧ-6» 5:3 «ККЛФ»).</p>\r\n\r\n<p style="margin-left:18.0pt">После полуфинальных игр состоялся матч за третье место между командами</p>\r\n\r\n<p style="margin-left:18.0pt"> «ККЛФ» 6:2 «АЛМАЗ-ВЕТЕРАНЫ».</p>\r\n\r\n<p style="margin-left:18.0pt">В финале встретились «УСК» 6:3 «ПАСЧ-6».</p>\r\n\r\n<p style="margin-left:18.0pt">В торжественной обстановке на закрытии турнира прозвучали слова благодарности и конечно же самые искренние пожелания крепкого здоровья, мира и добра людям, которые не понаслышке знают о войне в Афганистане, после чего присутствовавшим гостям Ковалеву Олегу Николаевичу, К<NAME>андру Владимировичу и Храмину Олегу Николаевичу были вручены небольшие подарки.</p>\r\n\r\n<p style="margin-left:18.0pt">В завершении состоялось награждение победителей и призеров.</p>\r\n\r\n<p style="margin-left:18.0pt">I место –команда «УСК»</p>\r\n\r\n<p style="margin-left:18.0pt">II место – команда «ПАСЧ-6»</p>\r\n\r\n<p style="margin-left:18.0pt">III - место команда «ККЛФ». </p>\r\n\r\n<p style="margin-left:18.0pt">ВЫРАЖАЕМ ВСЕМ КОМАНДАМ БЛАГОДАРНОСТЬ ЗА УЧАСТИЕ В ТУРНИРЕ И ЖДЕМ В СЛЕДУЮЩЕМ ГОДУ!</p>', '1582108831-IMG-2251246b77388bfeb43c670bbc551f89-V.jpg', '2020-02-15', 5, 3, 1, 381, 0, 'N_53', '2020-02-19 10:40:31', '2020-10-09 12:02:08', NULL),
(54, 'Республиканская Спартакиада среди ДЮСШ, СДЮШОР по греко-римской борьбе (юноши 2005-2006 г.р.)', 'respublikanskaya-spartakiada-sredi-dyussh-sdyushor-po-greko-rimskoy-borbe-yunoshi-2005-2006-g-r', '<p>В период с 12 по 14 февраля 2020 года в городе Минске столице нашей Республики во Дворце борьбы имени <NAME> прошла Республиканская Спартакиада среди ДЮСШ, СДЮШОР по греко-римской борьбе (юноши 2005-2006 г.р.). В данных соревнованиях участие приняло 29 команд из всех областей Республики Беларусь.</p>\r\n\r\n<p>Нашу школу представляла команда ребят из микрорайона Костюковка и а/г Еремино в составе 17 учащихся. По итогам командного первенства – «СДЮШОР ППО ОАО «Гомельстекло» с суммой 73 очка завоевала первое место! Вторыми стала команда из Витебска ЦСДЮШОР «Богатырь» (68 очков) и третьими стала команда из Гродно ЦСДЮШОР (59 очков);</p>\r\n\r\n<p>Вот имена победителей и призеров:</p>\r\n\r\n<p><NAME> - 3место (в/к 38кг); <NAME> - 1 место (в/к 41 кг); <NAME> - 2 место (в/к 41кг); <NAME> - 1 место (в/к 48 кг); <NAME> - 3 место (в/к 62кг);</p>\r\n\r\n<p><NAME> - 1 место (в/к 85кг);</p>\r\n\r\n<p>Спортсмены, которые заняли первые и вторые места в Республиканской Спартакиаде среди ДЮСШ, СДЮШОР примут участие в первенстве Европы среди юношей в Болгарии. Ребят подготовили тренеры-преподаватели: <NAME>., <NAME>., <NAME>.</p>\r\n\r\n<p>Пожелаем тем ребятам, которые не попали на пьедестал – терпения, удачи и пусть их дальнейшие поединки будут для них победными!</p>', '1582109151-IMG-0926cef0ee551514aef37daac86427ca-V (1).jpg', '2020-02-16', 2, 2, 1, 521, 0, 'N_54', '2020-02-19 10:45:51', '2020-10-07 06:34:34', NULL),
(55, '9 мая 2020 года.', '9-maya-2020-goda', '<p>В День 75 - летия Великой Победы, на стадионе ГУ "ФОЦ "Костюковка-спорт" состоялся традиционный футбольный матч среди ветеранов футбола.</p>\r\n\r\n<p>Участие в данном матче приняли команды: Костюковка-"Ветераны" и СК "Гомсельмаш".</p>\r\n\r\n<p> Победу со счётом 3:1одержала команда СК "Гомсельмаш".(Сырцов Н.,12</p>\r\n\r\n<p>Федосенко В., 18</p>\r\n\r\n<p>Логош Е., 25</p>\r\n\r\n<p>Борисов А., 34-пенальти).</p>\r\n\r\n<p>В этот знаменательный день, поздравляем всех с днём Победы! Желаем крепкого здоровья, счастья и мирного неба над головой.</p>', NULL, '2020-05-09', 5, 3, 1, 243, 0, 'N_55', '2020-06-02 06:09:32', '2020-10-14 04:35:11', NULL);
/*!40000 ALTER TABLE `posts` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.poststags
CREATE TABLE IF NOT EXISTS `poststags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`post_id` int(11) NOT NULL,
`tag_id` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `poststags_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.poststags: ~44 rows (приблизительно)
/*!40000 ALTER TABLE `poststags` DISABLE KEYS */;
INSERT INTO `poststags` (`id`, `post_id`, `tag_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(5, 33, 1, NULL, NULL, NULL),
(7, 35, 1, NULL, NULL, NULL),
(13, 7, 1, NULL, NULL, NULL),
(14, 8, 4, NULL, NULL, NULL),
(15, 9, 5, NULL, NULL, NULL),
(16, 10, 6, NULL, NULL, NULL),
(17, 11, 1, NULL, NULL, NULL),
(18, 12, 1, NULL, NULL, NULL),
(19, 13, 1, NULL, NULL, NULL),
(20, 14, 1, NULL, NULL, NULL),
(21, 16, 7, NULL, NULL, NULL),
(22, 17, 1, NULL, NULL, NULL),
(23, 18, 1, NULL, NULL, NULL),
(24, 19, 8, NULL, NULL, NULL),
(25, 20, 1, NULL, NULL, NULL),
(26, 21, 1, NULL, NULL, NULL),
(27, 22, 9, NULL, NULL, NULL),
(28, 24, 11, NULL, NULL, NULL),
(29, 25, 1, NULL, NULL, NULL),
(30, 26, 1, NULL, NULL, NULL),
(31, 23, 10, NULL, NULL, NULL),
(32, 27, 1, NULL, NULL, NULL),
(33, 28, 1, NULL, NULL, NULL),
(34, 29, 1, NULL, NULL, NULL),
(35, 30, 1, NULL, NULL, NULL),
(36, 31, 1, NULL, NULL, NULL),
(37, 32, 1, NULL, NULL, NULL),
(38, 34, 12, NULL, NULL, NULL),
(39, 36, 1, NULL, NULL, NULL),
(40, 37, 1, NULL, NULL, NULL),
(41, 41, 7, NULL, NULL, NULL),
(42, 42, 4, NULL, NULL, NULL),
(43, 43, 11, NULL, NULL, NULL),
(44, 44, 1, NULL, NULL, NULL),
(45, 45, 13, NULL, NULL, NULL),
(46, 46, 11, NULL, NULL, NULL),
(47, 47, 1, NULL, NULL, NULL),
(48, 48, 1, NULL, NULL, NULL),
(50, 49, 11, NULL, NULL, NULL),
(51, 50, 1, NULL, NULL, NULL),
(52, 51, 11, NULL, NULL, NULL),
(53, 52, 11, NULL, NULL, NULL),
(54, 53, 1, NULL, NULL, NULL),
(55, 55, 1, NULL, NULL, NULL);
/*!40000 ALTER TABLE `poststags` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.prides
CREATE TABLE IF NOT EXISTS `prides` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`photo` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`section_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `prides_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.prides: ~22 rows (приблизительно)
/*!40000 ALTER TABLE `prides` DISABLE KEYS */;
INSERT INTO `prides` (`id`, `name`, `photo`, `description`, `section_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, '<NAME>', '1556280577-chaikov.jpg', '<p><strong>Мастер спорта РБ по плаванию.</strong><br />\r\nЧлен национальной команды РБ, неоднократный победитель первенств РБ.</p>', '1', '2019-04-26 12:09:37', '2019-04-26 12:09:37', NULL),
(2, '<NAME>', '1556280619-baikov.jpg', '<p><strong>Кандидат в мастера спорта по плаванию.</strong><br />\r\nЧлен национальной команды РБ, неоднократный победитель первенств РБ.</p>', '1', '2019-04-26 12:10:19', '2019-04-26 12:10:19', NULL),
(3, '<NAME>', '1556280655-gornostaev.jpg', '<p><strong>Мастер спорта по современному пятиборью.</strong><br />\r\nБронзовый призер первенства Европы, член национальной команды РБ, участник юношеских олимпийских игр в Китае 2014 г.</p>', '1', '2019-04-26 12:10:55', '2019-05-23 11:18:38', NULL),
(4, '<NAME>', '1556280704-novikov.jpg', '<p><strong>Мастер спорта по плаванию.</strong><br />\r\nПобедитель и призер первенств РБ.</p>', '1', '2019-04-26 12:11:44', '2019-05-23 11:18:46', NULL),
(5, '<NAME>', '1558604874-medvedev.jpg', '<p><strong>Кандидат в мастера спорта по греко-римской борьбе.</strong></p>\r\n\r\n<p>Победитель спартакиад школьников РБ.</p>', '2', '2019-05-23 09:47:54', '2019-05-23 09:48:38', NULL),
(6, '<NAME>', '1558605202-saikov.jpg', '<p><strong>Мастер спорта по греко-римской борьбе.</strong><br />\r\nНеоднократный победитель первенства РБ, бронзовый призер первенства мира.</p>', '2', '2019-05-23 09:53:22', '2019-05-23 09:53:22', NULL),
(7, '<NAME>', '1558605231-glazkov.jpg', '<p><strong>Мастер спорта по греко-римской борьбе.</strong><br />\r\nПобедитель первенства РБ, победитель спартакиад школьников РБ.</p>', '2', '2019-05-23 09:53:51', '2019-05-23 09:53:51', NULL),
(8, '<NAME>', '1558605268-agamaliev.jpg', '<p><strong>Мастер спорта по греко-римской борьбе.</strong><br />\r\nПобедитель и призер первенств РБ.</p>', '2', '2019-05-23 09:54:28', '2019-05-23 09:54:28', NULL),
(9, '<NAME>', '1558608599-zuevS.jpg', '<p><strong>Мастер спорта по греко-римской борьбе.</strong><br />\r\nНеоднократный победитель первенств РБ, чемпион РБ.</p>', '2', '2019-05-23 09:55:00', '2019-05-23 10:49:59', NULL),
(10, '<NAME>', '1558605330-lakutko.jpg', '<p><strong>Мастер спорта по греко-римской борьбе.</strong><br />\r\nНеоднократный победитель первенств РБ, участник чемпионата мири.</p>', '2', '2019-05-23 09:55:30', '2019-05-23 09:55:30', NULL),
(11, '<NAME>', '1558605363-shutov.jpg', '<p><strong>Мастер спорта РБ по греко-римской борьбе.</strong><br />\r\nПризер стран Балтии 2016 года.</p>', '2', '2019-05-23 09:56:03', '2019-05-23 09:56:03', NULL),
(12, '<NAME>', '1558605756-nikitina.jpg', '<p><strong>Кандидат в мастера спорта по легкой атлетике (диск).</strong><br />\r\nУчастница первенства мира, неоднократный победитель первенств РБ.</p>', '3', '2019-05-23 10:02:36', '2019-05-23 10:02:36', NULL),
(13, '<NAME>', '1558608581-zuevL.jpg', '<p><strong>Мастер спорта РБ по тяжелой атлетике.</strong><br />\r\nПобедитель чемпионата РБ. Неоднократный победитель первенств РБ среди юниоров. Чемпион Республики Беларусь.</p>', '4', '2019-05-23 10:49:41', '2019-05-23 11:18:29', NULL),
(14, '<NAME>', '1558608665-shagov.jpg', '<p><strong>Мастер спорта РБ по тяжелой атлетике.</strong><br />\r\nПобедитель чемпионата РБ. Победитель первенства Европы среди юниоров.</p>', '4', '2019-05-23 10:51:05', '2019-05-23 11:18:19', NULL),
(15, '<NAME>', '1558614104-virskiy.jpg', '<p><strong>1-й взрослый разряд по футболу.</strong><br />\r\nПобедитель первенства РБ среди участников 1994 года рождения в 2008 году.</p>', '5', '2019-05-23 12:21:44', '2019-05-23 12:21:44', NULL),
(16, '<NAME>', '1558614174-suslenkova.jpg', '<p><strong>1-й разряд.</strong><br />\r\nПризер областной спартакиады по классическому волейболу. Призер спартакиады РБ по пляжному волейболу в паре с Мельчен<NAME>.</p>', '6', '2019-05-23 12:22:54', '2019-05-23 12:22:54', NULL),
(17, '<NAME>', '1558614207-melchenko.jpg', '<p><strong>1-й разряд.</strong><br />\r\nПризер областной спартакиады по классическому волейболу. Призер спартакиады РБ по пляжному волейболу в паре с Сусленковой Алиной.</p>', '6', '2019-05-23 12:23:27', '2019-05-23 12:23:27', NULL),
(18, '<NAME>', '1558614247-vlasova.jpg', '<p><strong>1-й разряд.</strong><br />\r\nПризер областной спартакиады по классическому волейболу. Призер спартакиады РБ по пляжному волейболу в паре с Казаковой Алиной.</p>', '6', '2019-05-23 12:24:07', '2019-05-23 12:24:07', NULL),
(19, '<NAME>', '1558614285-kazakova.jpg', '<p><strong>1-й разряд.</strong><br />\r\nПризер областной спартакиады по классическому волейболу. Призер спартакиады РБ по пляжному волейболу в паре с Власовой Татьяной.</p>', '6', '2019-05-23 12:24:45', '2019-05-23 12:24:45', NULL),
(20, '<NAME>', '1558614317-ignatenko.jpg', '<p><strong>1-й разряд.</strong><br />\r\nПризер областной спартакиады по классическому волейболу. Призер спартакиады РБ по пляжному волейболу в паре с Назаренко Дарьей.</p>', '6', '2019-05-23 12:25:17', '2019-05-23 12:25:17', NULL),
(21, '<NAME>', '1558614349-nazarenko.jpg', '<p><strong>1-й разряд.</strong><br />\r\nПризер областной спартакиады по классическому волейболу. Призер спартакиады РБ по пляжному волейболу в паре с Игнатенко Яной.</p>', '6', '2019-05-23 12:25:49', '2019-05-23 12:25:49', NULL);
/*!40000 ALTER TABLE `prides` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.roles
CREATE TABLE IF NOT EXISTS `roles` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.roles: ~2 rows (приблизительно)
/*!40000 ALTER TABLE `roles` DISABLE KEYS */;
INSERT INTO `roles` (`id`, `title`, `created_at`, `updated_at`) VALUES
(1, 'Администратор сайта', '2019-03-12 04:08:12', '2020-09-11 12:20:31'),
(2, 'Редактор сайта', '2019-03-12 04:08:12', '2020-09-11 12:22:36');
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.sections
CREATE TABLE IF NOT EXISTS `sections` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`photo_section_menu` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description_main_page` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`photo_sport` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `sections_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.sections: ~7 rows (приблизительно)
/*!40000 ALTER TABLE `sections` DISABLE KEYS */;
INSERT INTO `sections` (`id`, `title`, `slug`, `photo`, `description`, `created_at`, `updated_at`, `deleted_at`, `photo_section_menu`, `description_main_page`, `photo_sport`) VALUES
(1, 'Плавание', 'plavanie', '1556104384-swiming.jpg', '<div>Плавание – это олимпийский водный вид спорта, который заключается в преодолении различных дистанций вплавь и за наименьшее время. Независимо от вида плавания, под водой пловцу разрешается проплыть не более 15 метров (на старте или после поворота).</div>', '2019-03-26 08:40:04', '2019-04-25 10:40:01', NULL, '1553589604-olimpycs_13_icon-icons.com_68627.png', 'Отделение "Плавания"', '1556188420-920w0h78e2fbcbbf42bffdba1eefe732a2b744.jpg'),
(2, 'Борьба', 'borba', '1556104241-wrestling.jpg', '<div>Грееко-римская борьба (классическая борьба, французская борьба, спортивная борьба греко-римского стиля) — европейский вид единоборства, в котором спортсмен должен, с помощью определённого арсенала технических действий (приёмов), вывести соперника из равновесия и прижать лопатками к ковру. В греко-римской борьбе, в отличие от вольной, запрещены технические действия ногами (зацепы, подножки, подсечки) и захваты ног руками.</div>', '2019-03-26 08:45:57', '2019-04-25 10:44:21', NULL, '1553589957-olimpycs_29_icon-icons.com_68611.png', 'Отделение "Греко-римская борьба"', '1556189061-252710.jpg'),
(3, 'Легкая атлетика', 'legkaya-atletika', '1556266244-light_athletics.jpg', '<div>Легкая атлетика – это олимпийский вид спорта, который включает в себя беговые виды, спортивную ходьбу, многоборья, пробеги, кроссы и технические виды. Легкую атлетику принято называть королевой спорта, потому что она является одним из самых массовых видов спорта и в её дисциплинах всегда разыгрывалось наибольшее количество медалей на Олимпийских играх.</div>', '2019-03-26 08:46:56', '2019-04-26 08:10:44', NULL, '1553590016-olimpycs_atletismo_icon-icons.com_68597.png', 'Отделение "Легкая атлетика"', '1556265701-920w0h78640e2ea331589ce78010ee7517a76c.jpg'),
(4, 'Тяжелая атлетика', 'tyazhelaya-atletika', '1556106547-img-default.jpg', '<div>Тяжелая атлетика – это олимпийский вид спорта, в котором спортсмены соревнуются в выполнении упражнений по поднятию штанги. В современную тяжелую атлетику входят два таких упражнения: толчок и рывок. Соревнования по тяжелой атлетике проводятся как между мужчинами, так и между женщинами.</div>', '2019-03-26 08:48:43', '2019-05-23 12:46:52', NULL, '1553590123-olimpycs_28_icon-icons.com_68612.png', 'Отделение "Тяжелая атлетика"', '1558615611-047.jpg'),
(5, 'Футбол', 'futbol', '1556104282-football.jpg', '<div>Футбол (от англ. foot — ступня, ball — мяч) — самый популярный командный вид спорта в мире, целью в котором является забить мяч в ворота соперника большее число раз, чем это сделает команда соперника в установленное время. Мяч в ворота можно забивать ногами или любыми другими частями тела (кроме рук).</div>', '2019-03-26 08:49:32', '2019-05-23 12:49:45', NULL, '1553590172-olimpycs_17_icon-icons.com_68623.png', 'Отделение "Футбол"', '1558615785-1038703530.jpg'),
(6, 'Волейбол', 'voleybol', '1556104296-volleyball.jpg', '<div>Волейбол (от англ. volley — удар с лёта и ball — мяч) – это олимпийский вид спорта, целью в котором является направить мяч в сторону соперника таким образом, чтобы он приземлился на половине соперника или добиться ошибки со стороны игрока команды соперника. Во время одной атаки допускается только три касания мяча подряд.</div>', '2019-03-26 08:50:29', '2019-05-23 12:51:34', NULL, '1553590229-olimpycs_41_icon-icons.com_68599.png', 'Отделение "Волейбол"', '1558615894-stavki-na-voleybol.jpg');
/*!40000 ALTER TABLE `sections` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.services
CREATE TABLE IF NOT EXISTS `services` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`service` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`price` double(4,2) DEFAULT NULL,
`price_the_evening` double(4,2) DEFAULT NULL,
`price_5_lessons` double(4,2) DEFAULT NULL,
`price_10_lessons` double(4,2) DEFAULT NULL,
`price_other` double(4,2) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `services_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.services: ~23 rows (приблизительно)
/*!40000 ALTER TABLE `services` DISABLE KEYS */;
INSERT INTO `services` (`id`, `service`, `price`, `price_the_evening`, `price_5_lessons`, `price_10_lessons`, `price_other`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'Универсальный спортивный зал: час/руб.', 3.00, 3.60, 15.00, 29.00, NULL, '2019-04-30 07:38:28', '2019-05-03 08:36:53', NULL),
(2, 'Плавательный бассейн: академический час/руб.', 3.30, 4.00, 17.00, 27.00, NULL, '2019-04-30 07:42:01', '2020-03-04 06:04:24', NULL),
(3, 'Обучение плаванию взрослых: академический час/руб', 3.50, 4.30, NULL, NULL, NULL, '2019-04-30 09:48:54', '2019-04-30 09:48:54', NULL),
(4, 'Обучение плаванию детей: академический час/руб', 3.50, NULL, NULL, NULL, NULL, '2019-04-30 09:49:48', '2020-03-04 06:02:31', NULL),
(5, '<NAME> (выдача фена)/руб.', NULL, NULL, NULL, NULL, 0.50, '2019-04-30 09:58:03', '2019-04-30 10:07:29', NULL),
(6, 'Плавательный бассейн для детей (до 14 лет): академический час/руб.', 2.00, NULL, NULL, 17.00, NULL, '2019-05-03 08:34:10', '2020-03-04 06:03:23', NULL),
(7, 'Восстановительный центр (бассейн+сауна): академический час/руб.', 6.00, NULL, 24.00, 50.00, NULL, '2019-05-03 08:35:06', '2020-03-04 06:05:17', NULL),
(8, 'Восстановительный центр для детей (до 14 лет): академический час/руб.', 4.00, NULL, NULL, NULL, NULL, '2019-05-03 08:35:42', '2020-03-04 06:06:35', NULL),
(9, 'Аквааэробика: академический час/руб.', 4.00, NULL, 17.00, 27.00, NULL, '2019-05-03 08:36:02', '2020-03-04 06:02:01', NULL),
(10, 'Малый тренажерный зал: час/руб.', 3.00, NULL, 13.50, 27.00, NULL, '2019-05-03 08:36:41', '2020-01-21 11:59:16', NULL),
(11, 'Настольный теннис: час/руб.', 2.50, NULL, NULL, NULL, NULL, '2019-05-03 08:37:24', '2019-05-03 08:37:24', NULL),
(12, 'Бильярдный зал: час/руб.', 2.50, NULL, NULL, NULL, NULL, '2019-05-03 08:37:45', '2019-05-03 08:37:45', NULL),
(15, 'Плавательный бассейн для студентов', NULL, NULL, NULL, 20.00, NULL, '2019-05-03 09:00:21', '2019-05-03 09:00:21', NULL),
(16, 'Плавательный бассейн для СДЮШОР', NULL, NULL, NULL, 13.00, NULL, '2019-05-03 09:01:05', '2019-05-03 09:01:05', NULL),
(17, 'Подарочный сертификат*', NULL, NULL, NULL, NULL, 30.00, '2019-05-03 09:01:35', '2019-05-03 09:01:35', NULL),
(18, 'Подарочный сертификат*', NULL, NULL, NULL, NULL, 45.00, '2019-05-03 09:01:53', '2019-05-03 09:01:53', NULL),
(19, 'Аренда дорожки плавательного бассейна (12 человек единовременно): академический час/руб.', 45.00, NULL, NULL, NULL, NULL, '2020-01-21 12:05:13', '2020-03-04 06:04:47', NULL),
(20, 'Аренда дорожки плавательного бассейна (бассейн + сауна) - 12 человек единовременно: академический час/руб.', 70.00, NULL, NULL, NULL, NULL, '2020-01-21 12:08:38', '2020-03-04 06:05:57', NULL),
(21, 'Универсальный зал - групповое посещение (от 8 человек): 1 час', 20.00, NULL, NULL, NULL, NULL, '2020-01-21 12:18:46', '2020-01-21 12:18:46', NULL),
(22, 'Универсальный зал - групповое посещение (от 8 человек): 1.5 часа', 30.00, NULL, NULL, NULL, NULL, '2020-01-21 12:19:06', '2020-01-21 12:19:06', NULL),
(23, 'футбольное поле - групповое посещение (от 8 человек): 1 час', 50.00, NULL, NULL, NULL, NULL, '2020-01-21 12:19:56', '2020-03-04 05:52:45', NULL);
/*!40000 ALTER TABLE `services` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.sessions
CREATE TABLE IF NOT EXISTS `sessions` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) unsigned DEFAULT NULL,
`ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_agent` text COLLATE utf8mb4_unicode_ci,
`payload` text COLLATE utf8mb4_unicode_ci NOT NULL,
`last_activity` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `sessions_user_id_index` (`user_id`),
KEY `sessions_last_activity_index` (`last_activity`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.sessions: ~1 rows (приблизительно)
/*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
INSERT INTO `sessions` (`id`, `user_id`, `ip_address`, `user_agent`, `payload`, `last_activity`) VALUES
('4mmrhRlxKq6wj5i1MWI1XlY35oUANgzDoIh6EBqN', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 YaBrowser/20.9.1.110 Yowser/2.5 Safari/537.36', 'YTo0OntzOjY6Il90b2tlbiI7czo0MDoiaFIzNUpNWnZsYlpnazlSdFIzbE14aWdkNzJrVnVTb1U2bWJBWmlFQyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDM6Imh0dHA6Ly9sYXJhdmVsOC50ZXN0L2NhcHRjaGEvZmxhdD9KVjR3NmRPeT0iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX1zOjc6ImNhcHRjaGEiO2E6Mzp7czo5OiJzZW5zaXRpdmUiO2I6MDtzOjM6ImtleSI7czozMDA6ImV5SnBkaUk2SW1sa1VqaEdSek5PYjBZclUyeDVjakZ1ZGxJM2IyYzlQU0lzSW5aaGJIVmxJam9pUXl0U05ETjRLMHRLVFU1VVQxTTFZbUZ5ZUdKM2JGUk5VbkpXU1VjcmNXdENhMnRSVTJsdVozQTNlVUZwUnpnM1RDczBaV2RhYnpKR1QyWTVTVVozWlhScVdUUnRMMlo1TmtZMllqZ3pTRkJ5TVhaSk1FaG1TbVpXY1VwcVdtOTVlRVJXYWtzcmJWcEVORWs5SWl3aWJXRmpJam9pTVRnek56ZzJZVFpqT1RZMFpHWmxZalJtTW1FeE4yTXdPRGMyT1RSaE5EZzNabVEzWWpVd1pUVXlOR1ZsWkRka01XWXlNRGhrTVRNMVpERTFaVEU0WkNKOSI7czo3OiJlbmNyeXB0IjtiOjE7fX0=', 1602823434);
/*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.subscribes
CREATE TABLE IF NOT EXISTS `subscribes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `subscribes_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.subscribes: ~3 rows (приблизительно)
/*!40000 ALTER TABLE `subscribes` DISABLE KEYS */;
INSERT INTO `subscribes` (`id`, `email`, `token`, `created_at`, `updated_at`, `deleted_at`) VALUES
(6, '<EMAIL>', NULL, '2019-10-03 05:23:18', '2019-10-03 05:24:11', NULL),
(8, '<EMAIL>', NULL, '2019-12-12 20:53:17', '2019-12-13 05:59:24', NULL);
/*!40000 ALTER TABLE `subscribes` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.tags
CREATE TABLE IF NOT EXISTS `tags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` 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,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `tags_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.tags: ~13 rows (приблизительно)
/*!40000 ALTER TABLE `tags` DISABLE KEYS */;
INSERT INTO `tags` (`id`, `title`, `slug`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'Костюковка', 'kostyukovka', '2019-03-13 02:06:43', '2019-03-13 02:06:43', NULL),
(2, 'Жлобин', 'zhlobin', '2019-05-02 06:56:18', '2019-05-02 06:56:18', NULL),
(3, 'Калинковичи', 'kalinkovichi', '2019-05-14 15:39:59', '2019-05-14 15:39:59', NULL),
(4, 'Гродно', 'grodno', '2019-05-27 11:34:48', '2019-05-27 11:34:48', NULL),
(5, 'Европа', 'evropa', '2019-05-27 11:54:57', '2019-05-27 11:54:57', NULL),
(6, 'Бобруйск', 'bobruysk', '2019-05-27 11:59:24', '2019-05-27 11:59:24', NULL),
(7, 'Брест', 'brest', '2019-05-29 12:01:43', '2019-05-29 12:01:43', NULL),
(8, 'Борисов', 'borisov', '2019-05-29 12:16:36', '2019-05-29 12:16:36', NULL),
(9, 'Пинск', 'pinsk', '2019-05-31 10:53:15', '2019-05-31 10:53:15', NULL),
(10, 'Витебск', 'vitebsk', '2019-05-31 10:57:36', '2019-05-31 10:57:36', NULL),
(11, 'Гомель', 'gomel', '2019-05-31 10:59:56', '2019-05-31 10:59:56', NULL),
(12, 'Россия', 'rossiya', '2019-07-16 09:41:50', '2019-07-16 09:41:50', NULL),
(13, 'Клинцы', 'klincy', '2020-01-09 08:31:24', '2020-01-09 08:31:24', NULL);
/*!40000 ALTER TABLE `tags` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.timetables
CREATE TABLE IF NOT EXISTS `timetables` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`photo` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`timetable` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `timetables_deleted_at_index` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.timetables: ~8 rows (приблизительно)
/*!40000 ALTER TABLE `timetables` DISABLE KEYS */;
INSERT INTO `timetables` (`id`, `photo`, `timetable`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, '1556689173-Img_5.jpg', '<h3 class="h3-responsive">БАССЕЙН:</h3>\r\n\r\n<p>Понедельник: 15.00, 16.00, 17.15, 18.30</p>\r\n\r\n<p>Вторник, Четверг: 8.00, 9.00, 10.00, 11.00, 12.00, 13.00, 14.00, 15.00, 16.00, 17.30, 18.45, 19.45</p>\r\n\r\n<p>Среда, Пятница: 8.00, 9.00, 10.00, 11.00, 12.00, 13.00, 14.00, 15.00, 16.00</p>\r\n\r\n<p><span style="color:#FF0000">Суббота</span>: 9.00, 10.00, 11.00, 12.00, 13.00</p>', '2019-04-30 11:37:25', '2019-06-11 09:35:10', NULL),
(2, '1556689183-sauna.jpg', '<h3>БАССЕЙН+САУНА:</h3>\r\n\r\n<p>Среда, Пятница: 17.30, 18.45, 20.00, 20.45</p>\r\n\r\n<p><span style="color:#FF0000">Суббота:</span> 14.00, 15.00, 16.00, 17.00, 18.00, 19.00</p>\r\n\r\n<p><span style="color:#FF0000">Воскресение:</span> 9.00, 10.00, 11.00, 12.00, 13.00, 14.00, 15.00, 16.00, 17.00, 18.00, 19.00</p>', '2019-04-30 11:38:08', '2020-01-11 13:19:38', NULL),
(3, '1557573778-Img_2.jpg', '<h3 class="h3-responsive">УНИВЕРСАЛЬНЫЙ СПОРТИВНЫЙ ЗАЛ:</h3>\r\n\r\n<p>Понедельник с 8.00 до 20.00</p>\r\n\r\n<p>Вторник, Среда, Четверг, Пятница, <span style="color:#FF0000">Суббота</span> с 8.00 до 22.00</p>\r\n\r\n<p><span style="color:#FF0000">Воскресенье</span> с 8.00 до 20.00</p>', '2019-05-11 11:22:58', '2019-06-11 09:36:00', NULL),
(4, '1557573992-shaping.jpg', '<h3 class="h3-responsive">ШЕЙПИНГ:</h3>\r\n\r\n<p><em><NAME></em></p>\r\n\r\n<p>Понедельник, Среда, Пятница: 13.30, 17.30, 19.00</p>\r\n\r\n<p><em>Калиночкина Оксан<NAME></em></p>\r\n\r\n<p>Вторник, Четверг: 17.30</p>', '2019-05-11 11:26:32', '2019-06-11 09:36:15', NULL),
(5, '1557574059-water_aerobics.jpg', '<h3 class="h3-responsive">АКВААЭРОБИКА:</h3>\r\n\r\n<p>Вторник, Четверг: 9.00, 12.00</p>\r\n\r\n<p><strong><em>(занятия проводятся по мере комплектования групп)</em></strong></p>', '2019-05-11 11:27:39', '2019-06-11 09:36:27', NULL),
(6, '1557574135-table_tennis.jpg', '<h3 class="h3-responsive">НАСТОЛЬНЫЙ ТЕННИС:</h3>\r\n\r\n<p>Понедельник с 8.00 до 20.00</p>\r\n\r\n<p>Вторник, Среда, Четверг, Пятница, <span style="color:#FF0000">Суббота</span> с 8.00 до 22.00</p>\r\n\r\n<p><span style="color:#FF0000">Воскресенье</span> с 8.00 до 20.00</p>', '2019-05-11 11:28:56', '2019-06-11 09:36:38', NULL),
(7, '1557574194-Img_3.jpg', '<h3 class="h3-responsive">ТРЕНАЖЕРНЫЙ ЗАЛ:</h3>\r\n\r\n<p>Понедельник с 8.00 до 20.00</p>\r\n\r\n<p>Вторник, Среда, Четверг, Пятница, <span style="color:#FF0000">Суббота</span> с 8.00 до 22.00</p>\r\n\r\n<p><span style="color:#FF0000">Воскресенье</span> с 8.00 до 20.00</p>', '2019-05-11 11:29:54', '2019-06-11 09:36:51', NULL),
(8, '1557574237-Img_6.jpg', '<h3 class="h3-responsive">БИЛЬЯРДНЫЙ ЗАЛ:</h3>\r\n\r\n<p>Понедельник с 8.00 до 20.00</p>\r\n\r\n<p>Вторник, Среда, Четверг, Пятница, <span style="color:#FF0000">Суббота</span> с 8.00 до 22.00</p>\r\n\r\n<p><span style="color:#FF0000">Воскресенье</span> с 8.00 до 20.00</p>', '2019-05-11 11:30:37', '2019-06-11 09:37:01', NULL);
/*!40000 ALTER TABLE `timetables` ENABLE KEYS */;
-- Дамп структуры для таблица sport-kostukovka03092020.users
CREATE TABLE IF NOT EXISTS `users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`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,
`role_id` int(10) unsigned DEFAULT NULL,
`description` text COLLATE utf8mb4_unicode_ci,
`avatar` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `users_email_unique` (`email`),
KEY `244200_5c1dab4565ec4` (`role_id`),
CONSTRAINT `244200_5c1dab4565ec4` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Дамп данных таблицы sport-kostukovka03092020.users: ~4 rows (приблизительно)
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `role_id`, `description`, `avatar`) VALUES
(1, '<NAME>', '<EMAIL>', NULL, '$2y$10$fAL7Is0eqdM7vj1tgbphj.H91M1PDR8liU0seY5Wn74jG/b5aL7Oi', '2T4G5n1BMvW332GHgedsGSXd1NwYX25yN00rKgrId6KOahvdKLpjAM8rKp1O', '2019-03-12 04:08:13', '2020-10-14 12:54:27', 1, 'Администратор сайта.', 'g1bBuSqPdi.jpeg'),
(2, '<NAME>', '<EMAIL>', NULL, '$2y$10$GFFZfr6dqsjvMWLq8Bhki.r/mposyqgp7F3XFP38.TTbKCmv8V336', 'usDeTpHVCFAIaKInQrSt6Q2mRxCNjS6AuqFZwq6fJipnDghhf02L3h2sl8MW', '2019-04-16 02:56:43', '2020-03-09 15:25:29', 2, 'Заместитель директора СДЮШОР микрорайона Костюковка города Гомеля', '1583767529-1556195099-veretennikov.jpg'),
(3, '<NAME>', '<EMAIL>', NULL, '$2y$10$EIqZsKUVXP0Im22EhpNoleIeinQfqPXmXgqvmES1QXseUJR8Hl1Mm', 'htZO194stzlXsQLMflBHdZUmaeoufGIEZI7ap9WUJ33wpAgNPSit2ljABR7g', '2019-04-16 02:59:21', '2019-10-24 09:41:18', 2, 'Директор Государственного учреждения "Физкультурно-оздоровительный центр "Костюковка-спорт"', '0QKhmukeSK.jpeg'),
(4, '<NAME>', '<EMAIL>', NULL, '$2y$10$c7X1ok.n/8zHuBdG90EXk.8f.pto87KGhBXzPEG5ixDZxIAWKxa7W', '3in6wk1cDRk5jwnxQbEqZoKoAdWWx1dWDCbTNYDeoCi79KZhywAluuAOIKAU', '2019-07-11 12:23:04', '2020-01-09 20:06:32', 2, 'Тренер-преподаватель учреждения «СДЮШОР ППО ОАО «ГОМЕЛЬСТЕКЛО»', '1578559142-jWtUDDJ7uQ0.jpg');
/*!40000 ALTER TABLE `users` 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 */;
|
DROP TABLE IF EXISTS loans;
DROP TABLE IF EXISTS users;
CREATE TABLE users(id BIGINT GENERATED BY DEFAULT AS IDENTITY NOT NULL PRIMARY KEY, created TIMESTAMP WITHOUT TIME ZONE, updated TIMESTAMP WITHOUT TIME ZONE, email VARCHAR(255) NOT NULL UNIQUE, first_name VARCHAR(255) NOT NULL, last_name VARCHAR(255) NOT NULL);
CREATE TABLE loans(id BIGINT GENERATED BY DEFAULT AS IDENTITY NOT NULL PRIMARY KEY, created TIMESTAMP WITHOUT TIME ZONE, updated TIMESTAMP WITHOUT TIME ZONE, total DOUBLE PRECISION NOT NULL, user_id BIGINT, CONSTRAINT fk_user_id FOREIGN KEY(user_id) REFERENCES users(id) ON DELETE CASCADE);
|
<gh_stars>0
DELIMITER $$
USE `atp`$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `aumentar_salario`(IN porcentagem INT)
BEGIN
START TRANSACTION;
UPDATE pessoa SET salario = (salario + (salario / 100 * porcentagem)) where tipo_pessoa in (1, 2, 3, 4, 5);
COMMIT;
END$$
DELIMITER ;
call aumentar_salario(10);
CREATE VIEW empregados_dependentes AS
SELECT
funcionario.nome funcionario,
dependente.nome dependente
FROM
pessoa funcionario
JOIN dependentes dependentes on dependentes.id_funcionario = funcionario.id
JOIN pessoa dependente on dependentes.id_dependente = dependente.id
ORDER BY funcionario.nome ASC;
SELECT nome issoEUmAlias FROM pessoa, (SELECT id, nome nome1, salario FROM pessoa WHERE id_tipo_pessoa <> 3 HAVING MAX(salario) = salario) AS maiorSalario WHERE pessoa.id = maiorSalario.id;
SELECT nome, salario FROM pessoa WHERE id_tipo_pessoa <> 3 ORDER BY salario DESC;
SELECT nome, salario FROM pessoa WHERE id_tipo_pessoa <> 3 HAVING MAX(salario) = salario;
SELECT ROUND(AVG(salario),2) FROM pessoa WHERE sexo = 'M';
SELECT ROUND(AVG(salario),2) FROM pessoa WHERE sexo = 'f';
SELECT nome FROM pessoa WHERE id_tipo_pessoa = 1;
SELECT nome FROM pessoa p
JOIN projeto_pessoa pp ON pp.id_pessoa = p.id
HAVING COUNT(1) >= 1;
|
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Mar 31, 2021 at 04:55 PM
-- Server version: 10.4.11-MariaDB
-- PHP Version: 7.4.5
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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: `m_bantuan_2020`
--
-- --------------------------------------------------------
--
-- Table structure for table `tb_kriteria`
--
CREATE TABLE `tb_kriteria` (
`id_kriteria` int(11) NOT NULL,
`kd_kriteria` varchar(10) NOT NULL,
`nama_kriteria` varchar(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tb_kriteria`
--
INSERT INTO `tb_kriteria` (`id_kriteria`, `kd_kriteria`, `nama_kriteria`) VALUES
(1, 'C1', 'Jumlah Tanggungan'),
(2, 'C2', 'Umur'),
(3, 'C3', 'Kondisi Rumah'),
(4, 'C4', 'Kepemilikan Rumah'),
(5, 'C5', 'Jaringan Listrik'),
(6, 'C6', 'Sumber Air'),
(7, 'C7', 'Jenis Pekerjaan'),
(8, 'C8', 'Jumlah Penghasilan'),
(9, 'C9', 'Pendidikan');
-- --------------------------------------------------------
--
-- Table structure for table `tb_nilai_kriteria`
--
CREATE TABLE `tb_nilai_kriteria` (
`id_nilai_kriteria` int(11) NOT NULL,
`id_kriteria` int(11) NOT NULL,
`pilihan` varchar(50) NOT NULL,
`nilai` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tb_nilai_kriteria`
--
INSERT INTO `tb_nilai_kriteria` (`id_nilai_kriteria`, `id_kriteria`, `pilihan`, `nilai`) VALUES
(1, 7, 'PNS', 1),
(2, 7, 'Wiraswasta', 2),
(3, 7, 'Buruh', 3),
(4, 7, 'Pengangguran', 4),
(7, 1, '1 atau tidak punya anak', 1),
(8, 1, '2 anak', 2),
(9, 1, '3 anak', 3),
(10, 1, '4 anak atau lebih', 4),
(11, 2, '> 50', 4),
(12, 2, '>=40 s/d <=50', 3),
(13, 2, '>= 35 s/d < 40', 2),
(14, 2, '< 35', 1),
(15, 3, 'Permanen', 1),
(16, 3, '<NAME>', 2),
(17, 3, 'Panggung', 3),
(18, 3, '<NAME>', 4),
(19, 4, '<NAME>', 2),
(20, 4, 'Kontrak', 3),
(21, 4, 'Numpang', 4),
(22, 5, '<NAME>', 2),
(23, 5, 'Numpang', 3),
(24, 5, 'Tidak Ada', 4),
(25, 6, 'PDAM', 2),
(26, 6, 'Air Sumur', 3),
(27, 6, 'Air Sungai', 4),
(28, 8, '> 1.000.000', 1),
(29, 8, '>=500.000 s/d <= 1.0', 2),
(30, 8, '>=200.000 s/d <=500.', 3),
(31, 8, '<= 200.000', 4),
(32, 9, 'Tidak Sekolah', 4),
(33, 9, 'SD dan SMP', 3),
(34, 9, 'SMA', 2),
(35, 9, 'Kuliah', 1);
-- --------------------------------------------------------
--
-- Table structure for table `tb_penduduk`
--
CREATE TABLE `tb_penduduk` (
`id_penduduk` int(11) NOT NULL,
`nik` varchar(20) NOT NULL,
`nama` varchar(50) NOT NULL,
`jk` int(11) NOT NULL,
`alamat` text NOT NULL,
`notelp` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tb_penduduk`
--
INSERT INTO `tb_penduduk` (`id_penduduk`, `nik`, `nama`, `jk`, `alamat`, `notelp`) VALUES
(1, '12345', 'Fadli', 1, 'alamat', '082259500319'),
(18, '129090129923', 'Jefry', 1, 'alamat', '082259500319'),
(19, '123213', 'Syamsul', 1, 'alamat', '082259500319'),
(22, '12345678910111214', 'Pahlawan', 1, 'Alamat Penduduk', '082259500319');
-- --------------------------------------------------------
--
-- Table structure for table `tb_penduduk_nilai`
--
CREATE TABLE `tb_penduduk_nilai` (
`id_penduduk_nilai` int(11) NOT NULL,
`id_penduduk` varchar(50) NOT NULL,
`C1` int(11) NOT NULL,
`C2` int(11) NOT NULL,
`C3` int(11) NOT NULL,
`C4` int(11) NOT NULL,
`C5` int(11) NOT NULL,
`C6` int(11) NOT NULL,
`C7` int(11) NOT NULL,
`C8` int(11) NOT NULL,
`C9` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tb_penduduk_nilai`
--
INSERT INTO `tb_penduduk_nilai` (`id_penduduk_nilai`, `id_penduduk`, `C1`, `C2`, `C3`, `C4`, `C5`, `C6`, `C7`, `C8`, `C9`) VALUES
(15, '1', 10, 14, 17, 20, 22, 27, 3, 28, 32),
(21, '18', 8, 11, 18, 19, 23, 26, 1, 31, 35),
(22, '19', 9, 13, 15, 21, 24, 25, 4, 29, 33),
(24, '22', 9, 12, 18, 21, 24, 27, 4, 31, 32);
-- --------------------------------------------------------
--
-- Table structure for table `tb_user`
--
CREATE TABLE `tb_user` (
`id` int(11) NOT NULL,
`username` varchar(100) NOT NULL,
`password` varchar(100) NOT NULL,
`nama` varchar(100) NOT NULL,
`status` int(11) NOT NULL,
`level` int(11) NOT NULL COMMENT '1=admin,2=lurah,3=penduduk'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tb_user`
--
INSERT INTO `tb_user` (`id`, `username`, `password`, `nama`, `status`, `level`) VALUES
(1, 'admin', 'admin', '<PASSWORD>', 1, 1),
(7, '12345', '12345', 'Fadli', 1, 3),
(17, '129090129923', '129090129923', '<PASSWORD>', 1, 3),
(18, '123213', '123213', 'addwd', 1, 3),
(21, '12345678910111214', '12345678910111214', 'Pahlawan', 1, 3);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `tb_kriteria`
--
ALTER TABLE `tb_kriteria`
ADD PRIMARY KEY (`id_kriteria`);
--
-- Indexes for table `tb_nilai_kriteria`
--
ALTER TABLE `tb_nilai_kriteria`
ADD PRIMARY KEY (`id_nilai_kriteria`);
--
-- Indexes for table `tb_penduduk`
--
ALTER TABLE `tb_penduduk`
ADD PRIMARY KEY (`id_penduduk`);
--
-- Indexes for table `tb_penduduk_nilai`
--
ALTER TABLE `tb_penduduk_nilai`
ADD PRIMARY KEY (`id_penduduk_nilai`);
--
-- Indexes for table `tb_user`
--
ALTER TABLE `tb_user`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `tb_kriteria`
--
ALTER TABLE `tb_kriteria`
MODIFY `id_kriteria` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `tb_nilai_kriteria`
--
ALTER TABLE `tb_nilai_kriteria`
MODIFY `id_nilai_kriteria` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=36;
--
-- AUTO_INCREMENT for table `tb_penduduk`
--
ALTER TABLE `tb_penduduk`
MODIFY `id_penduduk` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;
--
-- AUTO_INCREMENT for table `tb_penduduk_nilai`
--
ALTER TABLE `tb_penduduk_nilai`
MODIFY `id_penduduk_nilai` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;
--
-- AUTO_INCREMENT for table `tb_user`
--
ALTER TABLE `tb_user`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;
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 */;
|
-- MySQL dump 10.13 Distrib 8.0.19, for Win64 (x86_64)
--
-- Host: localhost Database: sistemaacademico
-- ------------------------------------------------------
-- Server version 8.0.19
/*!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 */;
/*!50503 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `aula`
--
DROP TABLE IF EXISTS `aula`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `aula` (
`id_aula` int NOT NULL AUTO_INCREMENT,
`nombre` varchar(50) NOT NULL,
`direccion` varchar(255) NOT NULL,
`capacidad` int NOT NULL,
`created` datetime DEFAULT NULL,
PRIMARY KEY (`id_aula`)
) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `aula`
--
LOCK TABLES `aula` WRITE;
/*!40000 ALTER TABLE `aula` DISABLE KEYS */;
INSERT INTO `aula` VALUES (1,'L<NAME>','BLOQUE L',30,'2011-09-09 00:00:00'),(2,'Laboratorio Quimica','BLOQUE L',35,'2011-09-09 00:00:00'),(3,'Laboratorio Computacion','BLOQUE L',40,'2011-09-09 00:00:00'),(4,'L4','BLOQUE L',35,'2011-09-09 00:00:00'),(5,'L5','BLOQUE L',35,'2011-09-09 00:00:00'),(6,'L6','BLOQUE L',35,'2011-09-09 00:00:00'),(7,'L7','BLOQUE L',30,'2011-09-09 00:00:00'),(8,'L8','BLOQUE L',30,'2011-09-09 00:00:00'),(9,'L9','BLOQUE L',20,'2011-09-09 00:00:00'),(10,'A1','BLOQUE A',35,'2011-09-09 00:00:00'),(11,'A2','BLOQUE A',30,'2011-09-09 00:00:00'),(12,'A3','BLOQUE A',35,'2011-09-09 00:00:00'),(13,'A4','BLOQUE A',40,'2011-09-09 00:00:00'),(14,'A5','BLOQUE A',30,'2011-09-09 00:00:00'),(15,'A6','BLOQUE A',20,'2011-09-09 00:00:00'),(16,'A7','BLOQUE A',25,'2011-09-09 00:00:00'),(17,'A8','BLOQUE A',20,'2011-09-09 00:00:00'),(18,'A9','BLOQUE A',30,'2011-09-09 00:00:00'),(19,'I1','BLOQUE I',35,'2013-12-12 00:00:00'),(20,'I2','BLOQUE I',30,'2013-12-12 00:00:00'),(21,'I3','BLOQUE I',33,'2013-12-12 00:00:00'),(22,'I4','BLOQUE I',30,'2013-12-12 00:00:00'),(23,'I5','BLOQUE I',30,'2013-12-12 00:00:00'),(24,'I6','BLOQUE I',35,'2013-12-12 00:00:00'),(25,'I7','BLOQUE I',50,'2013-12-12 00:00:00'),(26,'I8','BLOQUE I',40,'2013-12-12 00:00:00'),(27,'I9','BLOQUE I',30,'2013-12-12 00:00:00'),(28,'A1','BLOQUE A',20,'2013-12-12 00:00:00'),(29,'A2','BLOQUE A',34,'2013-12-12 00:00:00'),(30,'A3','BLOQUE A',35,'2013-12-12 00:00:00'),(31,'A4','BLOQUE A',30,'2013-12-12 00:00:00'),(32,'A5','BLOQUE A',20,'2013-12-12 00:00:00'),(33,'A6','BLOQUE A',25,'2013-12-12 00:00:00'),(34,'A7','BLOQUE A',30,'2013-12-12 00:00:00'),(35,'L1','BLOQUE L',35,'2020-01-01 00:00:00'),(36,'L2','BLOQUE L',40,'2020-01-01 00:00:00'),(37,'L3','BLOQUE L',35,'2020-01-01 00:00:00'),(38,'L4','BLOQUE L',35,'2020-01-01 00:00:00'),(39,'L5','BLOQUE L',35,'2020-01-01 00:00:00'),(40,'L6','BLOQUE L',35,'2020-01-01 00:00:00'),(41,'L7','BLOQUE L',40,'2020-01-01 00:00:00'),(42,'L8','BLOQUE L',40,'2020-01-01 00:00:00'),(43,'A1','BLOQUE A',30,'2020-01-01 00:00:00'),(44,'A2','BLOQUE A',30,'2020-01-01 00:00:00'),(45,'A3','BLOQUE A',20,'2020-01-01 00:00:00'),(46,'A4','BLOQUE A',25,'2020-01-01 00:00:00');
/*!40000 ALTER TABLE `aula` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `biblioteca`
--
DROP TABLE IF EXISTS `biblioteca`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `biblioteca` (
`id_biblioteca` int NOT NULL AUTO_INCREMENT,
`nombre` varchar(45) NOT NULL,
`created` datetime DEFAULT NULL,
PRIMARY KEY (`id_biblioteca`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `biblioteca`
--
LOCK TABLES `biblioteca` WRITE;
/*!40000 ALTER TABLE `biblioteca` DISABLE KEYS */;
INSERT INTO `biblioteca` VALUES (1,'Biblioteca Maira Alcala','2012-04-04 00:00:00'),(2,'Bibiloteca Cardoza','2016-03-06 00:00:00'),(3,'Biblioteca San Juan','2017-05-06 00:00:00');
/*!40000 ALTER TABLE `biblioteca` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `campus`
--
DROP TABLE IF EXISTS `campus`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `campus` (
`id_campus` int NOT NULL AUTO_INCREMENT,
`nombre` varchar(50) NOT NULL,
`ubicacion` varchar(255) NOT NULL,
`mapa_campus` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`id_biblioteca` int NOT NULL,
`created` datetime DEFAULT NULL,
PRIMARY KEY (`id_campus`),
KEY `id_biblioteca` (`id_biblioteca`),
CONSTRAINT `campus_ibfk_1` FOREIGN KEY (`id_biblioteca`) REFERENCES `biblioteca` (`id_biblioteca`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `campus`
--
LOCK TABLES `campus` WRITE;
/*!40000 ALTER TABLE `campus` DISABLE KEYS */;
INSERT INTO `campus` VALUES (1,'<NAME>','La Paz','Disponible',1,'2011-09-09 00:00:00'),(2,'<NAME>','Cochabamba','Disponible',2,'2013-12-12 00:00:00'),(3,'<NAME>','Santa Cruz','No Disponible',3,'2020-01-01 00:00:00');
/*!40000 ALTER TABLE `campus` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `carrera`
--
DROP TABLE IF EXISTS `carrera`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `carrera` (
`id_carrera` int NOT NULL AUTO_INCREMENT,
`nombre` varchar(100) NOT NULL,
`id_persona` int NOT NULL,
`created` datetime DEFAULT NULL,
PRIMARY KEY (`id_carrera`),
KEY `id_persona` (`id_persona`),
CONSTRAINT `carrera_ibfk_1` FOREIGN KEY (`id_persona`) REFERENCES `persona` (`id_persona`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `carrera`
--
LOCK TABLES `carrera` WRITE;
/*!40000 ALTER TABLE `carrera` DISABLE KEYS */;
INSERT INTO `carrera` VALUES (1,'Ingenieria en Sistemas Computacionales',8,'2011-09-09 00:00:00'),(2,'Ingenieria Electrica y de Telecomunicaciones',2,'2011-09-09 00:00:00'),(3,'Ingenieria Electromecanica',6,'2011-09-09 00:00:00'),(4,'Administracion de Empresas',1,'2013-12-12 00:00:00'),(5,'Comunicacion Coorporativa',5,'2020-01-01 00:00:00'),(6,'Ingenieria Financiera',21,'2020-01-01 00:00:00'),(7,'Idiomas',7,'2020-01-01 00:00:00');
/*!40000 ALTER TABLE `carrera` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `docente`
--
DROP TABLE IF EXISTS `docente`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `docente` (
`id_docente` int NOT NULL AUTO_INCREMENT,
`id_persona` int NOT NULL,
`grado_mayor_estudio` varchar(255) NOT NULL,
`saldo_pagado` int NOT NULL,
`saldo_por_pagar` int NOT NULL,
`created` datetime DEFAULT NULL,
PRIMARY KEY (`id_docente`),
KEY `id_persona` (`id_persona`),
CONSTRAINT `docente_ibfk_1` FOREIGN KEY (`id_persona`) REFERENCES `persona` (`id_persona`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `docente`
--
LOCK TABLES `docente` WRITE;
/*!40000 ALTER TABLE `docente` DISABLE KEYS */;
INSERT INTO `docente` VALUES (1,3,'Doctorado',4096,16340,'2011-09-09 00:00:00'),(2,4,'Doctorado',4096,16340,'2011-09-09 00:00:00'),(3,7,'Magister',3400,12500,'2011-09-09 00:00:00'),(4,9,'Doctorado',4096,16340,'2013-12-12 00:00:00'),(5,10,'Licenciado',2800,10730,'2013-12-12 00:00:00');
/*!40000 ALTER TABLE `docente` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `estudiante`
--
DROP TABLE IF EXISTS `estudiante`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `estudiante` (
`id_estudiante` int NOT NULL AUTO_INCREMENT,
`semestre` int NOT NULL,
`id_persona` int NOT NULL,
`importe_pagado` int NOT NULL,
`importe_por_pagar` int NOT NULL,
`descuento_beca` double NOT NULL,
`id_campus` int NOT NULL,
`id_carrera` int NOT NULL,
`created` datetime DEFAULT NULL,
PRIMARY KEY (`id_estudiante`),
KEY `id_persona` (`id_persona`),
KEY `id_universidad` (`id_campus`),
KEY `id_carrera` (`id_carrera`),
CONSTRAINT `estudiante_ibfk_1` FOREIGN KEY (`id_persona`) REFERENCES `persona` (`id_persona`),
CONSTRAINT `estudiante_ibfk_2` FOREIGN KEY (`id_campus`) REFERENCES `campus` (`id_campus`),
CONSTRAINT `estudiante_ibfk_3` FOREIGN KEY (`id_carrera`) REFERENCES `carrera` (`id_carrera`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `estudiante`
--
LOCK TABLES `estudiante` WRITE;
/*!40000 ALTER TABLE `estudiante` DISABLE KEYS */;
INSERT INTO `estudiante` VALUES (1,3,11,1838,1093,10752,1,1,'2019-02-02 00:00:00'),(2,5,12,1298,19460,8030,2,1,'2019-02-02 00:00:00'),(3,3,13,1150,12670,5383,1,2,'2019-02-02 00:00:00'),(4,3,14,1298,15360,8030,1,2,'2019-02-02 00:00:00'),(5,3,15,921,15360,10752,3,5,'2019-02-02 00:00:00'),(6,2,16,1838,1093,10752,3,3,'2020-01-02 00:00:00'),(7,1,17,1298,19640,8030,2,4,'2020-01-02 00:00:00'),(8,1,18,921,15360,10752,3,6,'2020-01-02 00:00:00'),(9,1,19,921,15360,10752,2,7,'2020-01-02 00:00:00'),(10,1,20,1150,12670,5383,1,7,'2020-01-02 00:00:00');
/*!40000 ALTER TABLE `estudiante` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `libro`
--
DROP TABLE IF EXISTS `libro`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `libro` (
`cod_libro` int NOT NULL AUTO_INCREMENT,
`nombre` varchar(255) NOT NULL,
`autor` varchar(100) NOT NULL,
`cant_copias` int NOT NULL,
`created` datetime DEFAULT NULL,
PRIMARY KEY (`cod_libro`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `libro`
--
LOCK TABLES `libro` WRITE;
/*!40000 ALTER TABLE `libro` DISABLE KEYS */;
INSERT INTO `libro` VALUES (1,'Fisica1 Ejercicios Resueltos','<NAME>',42,'2011-09-09 00:00:00'),(2,'Matematica Avanzada','<NAME>',25,'2011-09-09 00:00:00'),(3,'Conceptos basico de Programacion','<NAME>',75,'2011-09-09 00:00:00'),(4,'Teoria De Conjuntos','<NAME>',65,'2011-09-09 00:00:00'),(5,'Administracion','<NAME>',43,'2013-12-12 00:00:00'),(6,'Experiencia Starbucks','<NAME>',54,'2013-12-12 00:00:00'),(7,'La Milla Verde','<NAME>',23,'2013-12-12 00:00:00'),(8,'Englis fundaments','<NAME>',43,'2013-12-12 00:00:00'),(9,'La belleza de los números','<NAME>',21,'2013-12-12 00:00:00'),(10,'Mundo Actual','<NAME>',54,'2020-01-01 00:00:00');
/*!40000 ALTER TABLE `libro` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `libro_biblioteca`
--
DROP TABLE IF EXISTS `libro_biblioteca`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `libro_biblioteca` (
`id_biblioteca` int NOT NULL,
`id_libro` int NOT NULL,
`created` datetime DEFAULT NULL,
PRIMARY KEY (`id_biblioteca`,`id_libro`),
KEY `libro_biblioteca_ibfk_2_idx` (`id_libro`),
CONSTRAINT `libro_biblioteca_ibfk_1` FOREIGN KEY (`id_biblioteca`) REFERENCES `biblioteca` (`id_biblioteca`),
CONSTRAINT `libro_biblioteca_ibfk_2` FOREIGN KEY (`id_libro`) REFERENCES `libro` (`cod_libro`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `libro_biblioteca`
--
LOCK TABLES `libro_biblioteca` WRITE;
/*!40000 ALTER TABLE `libro_biblioteca` DISABLE KEYS */;
INSERT INTO `libro_biblioteca` VALUES (1,1,'2011-09-09 00:00:00'),(1,2,'2011-09-09 00:00:00'),(1,3,'2011-09-09 00:00:00'),(1,4,'2011-09-09 00:00:00'),(1,5,'2011-09-09 00:00:00'),(1,6,'2011-09-09 00:00:00'),(1,7,'2011-09-09 00:00:00'),(1,9,'2011-09-09 00:00:00'),(2,1,'2013-12-12 00:00:00'),(2,2,'2013-12-12 00:00:00'),(2,5,'2013-12-12 00:00:00'),(2,6,'2013-12-12 00:00:00'),(2,7,'2013-12-12 00:00:00'),(2,8,'2013-12-12 00:00:00'),(2,9,'2013-12-12 00:00:00'),(3,1,'2020-01-01 00:00:00'),(3,3,'2020-01-01 00:00:00'),(3,5,'2020-01-01 00:00:00'),(3,6,'2020-01-01 00:00:00'),(3,7,'2020-01-01 00:00:00'),(3,8,'2020-01-01 00:00:00'),(3,9,'2020-01-01 00:00:00'),(3,10,'2020-01-01 00:00:00');
/*!40000 ALTER TABLE `libro_biblioteca` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `malla_curricular`
--
DROP TABLE IF EXISTS `malla_curricular`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `malla_curricular` (
`id_carrera` int NOT NULL,
`id_materia` int NOT NULL,
`created` datetime DEFAULT NULL,
PRIMARY KEY (`id_carrera`,`id_materia`),
KEY `id_materia` (`id_materia`),
CONSTRAINT `malla_curricular_ibfk_1` FOREIGN KEY (`id_carrera`) REFERENCES `carrera` (`id_carrera`),
CONSTRAINT `malla_curricular_ibfk_2` FOREIGN KEY (`id_materia`) REFERENCES `materia` (`id_materia`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `malla_curricular`
--
LOCK TABLES `malla_curricular` WRITE;
/*!40000 ALTER TABLE `malla_curricular` DISABLE KEYS */;
INSERT INTO `malla_curricular` VALUES (1,1,'2011-09-09 00:00:00'),(1,2,'2011-09-09 00:00:00'),(1,3,'2011-09-09 00:00:00'),(1,4,'2011-09-09 00:00:00'),(1,5,'2011-09-09 00:00:00'),(1,7,'2011-09-09 00:00:00'),(1,10,'2020-01-01 00:00:00'),(1,11,'2020-01-01 00:00:00'),(1,12,'2020-01-01 00:00:00'),(1,13,'2020-01-01 00:00:00'),(1,14,'2020-01-01 00:00:00'),(2,1,'2011-09-09 00:00:00'),(2,4,'2011-09-09 00:00:00'),(2,5,'2011-09-09 00:00:00'),(2,7,'2011-09-09 00:00:00'),(2,11,'2020-01-01 00:00:00'),(2,12,'2020-01-01 00:00:00'),(2,13,'2020-01-01 00:00:00'),(2,14,'2020-01-01 00:00:00'),(3,1,'2011-09-09 00:00:00'),(3,4,'2011-09-09 00:00:00'),(3,5,'2011-09-09 00:00:00'),(3,7,'2011-09-09 00:00:00'),(3,11,'2020-01-01 00:00:00'),(3,12,'2020-01-01 00:00:00'),(3,13,'2020-01-01 00:00:00'),(3,14,'2020-01-01 00:00:00'),(4,6,'2011-09-09 00:00:00'),(4,7,'2011-09-09 00:00:00'),(4,8,'2011-09-09 00:00:00'),(4,11,'2020-01-01 00:00:00'),(4,12,'2020-01-01 00:00:00'),(4,13,'2020-01-01 00:00:00'),(4,14,'2020-01-01 00:00:00'),(5,4,'2011-09-09 00:00:00'),(5,6,'2011-09-09 00:00:00'),(5,7,'2011-09-09 00:00:00'),(5,8,'2011-09-09 00:00:00'),(5,9,'2020-01-01 00:00:00'),(5,11,'2020-01-01 00:00:00'),(5,12,'2020-01-01 00:00:00'),(5,13,'2020-01-01 00:00:00'),(5,14,'2020-01-01 00:00:00'),(6,1,'2020-01-01 00:00:00'),(6,2,'2020-01-01 00:00:00'),(6,3,'2020-01-01 00:00:00'),(6,4,'2020-01-01 00:00:00'),(6,5,'2020-01-01 00:00:00'),(6,6,'2020-01-01 00:00:00'),(6,7,'2020-01-01 00:00:00'),(6,8,'2020-01-01 00:00:00'),(6,9,'2020-01-01 00:00:00'),(6,11,'2020-01-01 00:00:00'),(6,12,'2020-01-01 00:00:00'),(6,13,'2020-01-01 00:00:00'),(6,14,'2020-01-01 00:00:00'),(7,11,'2020-01-01 00:00:00'),(7,12,'2020-01-01 00:00:00'),(7,13,'2020-01-01 00:00:00'),(7,14,'2020-01-01 00:00:00'),(7,15,'2020-01-01 00:00:00'),(7,16,'2020-01-01 00:00:00');
/*!40000 ALTER TABLE `malla_curricular` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `materia`
--
DROP TABLE IF EXISTS `materia`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `materia` (
`id_materia` int NOT NULL AUTO_INCREMENT,
`nombre` varchar(255) NOT NULL,
`creditos` int NOT NULL,
`created` datetime DEFAULT NULL,
PRIMARY KEY (`id_materia`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `materia`
--
LOCK TABLES `materia` WRITE;
/*!40000 ALTER TABLE `materia` DISABLE KEYS */;
INSERT INTO `materia` VALUES (1,'Programacion 1',4,'2011-09-09 00:00:00'),(2,'Programacion 2',4,'2011-09-09 00:00:00'),(3,'Sistemas Logicos',3,'2011-09-09 00:00:00'),(4,'Calculo 1',4,'2011-09-09 00:00:00'),(5,'Calculo 2',4,'2011-09-09 00:00:00'),(6,'Innovacion y Creatividad',3,'2011-09-09 00:00:00'),(7,'Tecnicas de Comunicacion',3,'2011-09-10 00:00:00'),(8,'Administracion 1',3,'2011-09-09 00:00:00'),(9,'Administracion 2',3,'2013-12-12 00:00:00'),(10,'Algoritmica',4,'2013-12-12 00:00:00'),(11,'English Begginers',6,'2020-01-01 00:00:00'),(12,'English Intermidiate',6,'2020-01-01 00:00:00'),(13,'English High Intermidiate',6,'2020-01-01 00:00:00'),(14,'English Advance',6,'2020-01-01 00:00:00'),(15,'Francais',6,'2020-01-01 00:00:00'),(16,'Deutsch',6,'2020-01-01 00:00:00');
/*!40000 ALTER TABLE `materia` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `materia_aula`
--
DROP TABLE IF EXISTS `materia_aula`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `materia_aula` (
`id_aula` int NOT NULL,
`id_materia` int NOT NULL,
`created` datetime DEFAULT NULL,
PRIMARY KEY (`id_aula`,`id_materia`),
KEY `id_materia` (`id_materia`),
CONSTRAINT `materia_aula_ibfk_1` FOREIGN KEY (`id_aula`) REFERENCES `aula` (`id_aula`),
CONSTRAINT `materia_aula_ibfk_2` FOREIGN KEY (`id_materia`) REFERENCES `materia` (`id_materia`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `materia_aula`
--
LOCK TABLES `materia_aula` WRITE;
/*!40000 ALTER TABLE `materia_aula` DISABLE KEYS */;
INSERT INTO `materia_aula` VALUES (1,1,'2011-09-09 00:00:00'),(1,9,'2020-01-01 00:00:00'),(3,10,'2020-01-01 00:00:00'),(4,4,'2011-09-09 00:00:00'),(5,2,'2011-09-09 00:00:00'),(6,11,'2020-01-01 00:00:00'),(7,3,'2011-09-09 00:00:00'),(8,12,'2020-01-01 00:00:00'),(9,5,'2011-09-09 00:00:00'),(11,13,'2020-01-01 00:00:00'),(12,6,'2011-09-09 00:00:00'),(14,7,'2011-09-09 00:00:00'),(15,14,'2020-01-01 00:00:00'),(18,8,'2011-09-09 00:00:00'),(19,1,'2013-12-12 00:00:00'),(20,3,'2013-12-12 00:00:00'),(21,2,'2013-12-12 00:00:00'),(22,9,'2020-01-01 00:00:00'),(23,10,'2020-01-01 00:00:00'),(24,11,'2020-01-01 00:00:00'),(25,4,'2013-12-12 00:00:00'),(26,5,'2013-12-12 00:00:00'),(27,12,'2020-01-01 00:00:00'),(28,6,'2013-12-12 00:00:00'),(29,7,'2013-12-12 00:00:00'),(30,13,'2020-01-01 00:00:00'),(31,14,'2020-01-01 00:00:00'),(32,15,'2020-01-01 00:00:00'),(33,16,'2020-01-01 00:00:00'),(34,8,'2013-12-12 00:00:00'),(35,1,'2020-01-01 00:00:00'),(36,2,'2020-01-01 00:00:00'),(36,3,'2020-01-01 00:00:00'),(37,13,'2020-01-01 00:00:00'),(38,14,'2020-01-01 00:00:00'),(39,15,'2020-01-01 00:00:00'),(40,12,'2020-01-01 00:00:00'),(40,16,'2020-01-01 00:00:00'),(41,4,'2020-01-01 00:00:00'),(41,9,'2020-01-01 00:00:00'),(42,5,'2020-01-01 00:00:00'),(43,6,'2020-01-01 00:00:00'),(43,10,'2020-01-01 00:00:00'),(43,11,'2020-01-01 00:00:00'),(44,7,'2020-01-01 00:00:00'),(45,8,'2020-01-01 00:00:00');
/*!40000 ALTER TABLE `materia_aula` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `materia_docente`
--
DROP TABLE IF EXISTS `materia_docente`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `materia_docente` (
`id_docente` int NOT NULL,
`id_materia` int NOT NULL,
`created` datetime DEFAULT NULL,
PRIMARY KEY (`id_docente`,`id_materia`),
KEY `id_materia` (`id_materia`),
CONSTRAINT `materia_docente_ibfk_1` FOREIGN KEY (`id_docente`) REFERENCES `docente` (`id_docente`),
CONSTRAINT `materia_docente_ibfk_2` FOREIGN KEY (`id_materia`) REFERENCES `materia` (`id_materia`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `materia_docente`
--
LOCK TABLES `materia_docente` WRITE;
/*!40000 ALTER TABLE `materia_docente` DISABLE KEYS */;
INSERT INTO `materia_docente` VALUES (1,1,'2011-09-09 00:00:00'),(1,3,'2011-09-09 00:00:00'),(1,9,'2013-12-12 00:00:00'),(2,6,'2011-09-09 00:00:00'),(2,7,'2011-09-09 00:00:00'),(2,8,'2011-09-09 00:00:00'),(2,9,'2013-12-12 00:00:00'),(3,6,'2011-09-09 00:00:00'),(3,8,'2011-09-09 00:00:00'),(3,10,'2013-12-12 00:00:00'),(3,11,'2013-12-12 00:00:00'),(3,12,'2020-01-01 00:00:00'),(3,13,'2020-01-01 00:00:00'),(3,14,'2020-01-01 00:00:00'),(3,15,'2020-01-01 00:00:00'),(3,16,'2020-01-01 00:00:00'),(4,4,'2013-12-12 00:00:00'),(4,5,'2013-12-12 00:00:00'),(4,6,'2013-12-12 00:00:00'),(5,4,'2013-12-12 00:00:00'),(5,5,'2013-12-12 00:00:00'),(5,6,'2013-12-12 00:00:00'),(5,7,'2013-12-12 00:00:00'),(5,8,'2013-12-12 00:00:00');
/*!40000 ALTER TABLE `materia_docente` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `materia_estudiante`
--
DROP TABLE IF EXISTS `materia_estudiante`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `materia_estudiante` (
`id_estudiante` int NOT NULL,
`id_materia` int NOT NULL,
`created` datetime DEFAULT NULL,
PRIMARY KEY (`id_estudiante`,`id_materia`),
KEY `id_materia` (`id_materia`),
CONSTRAINT `materia_estudiante_ibfk_1` FOREIGN KEY (`id_estudiante`) REFERENCES `estudiante` (`id_estudiante`),
CONSTRAINT `materia_estudiante_ibfk_2` FOREIGN KEY (`id_materia`) REFERENCES `materia` (`id_materia`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `materia_estudiante`
--
LOCK TABLES `materia_estudiante` WRITE;
/*!40000 ALTER TABLE `materia_estudiante` DISABLE KEYS */;
INSERT INTO `materia_estudiante` VALUES (1,1,'2019-02-02 00:00:00'),(1,2,'2019-02-02 00:00:00'),(1,3,'2019-02-02 00:00:00'),(1,4,'2019-02-02 00:00:00'),(1,5,'2019-02-02 00:00:00'),(1,6,'2019-02-02 00:00:00'),(1,7,'2019-02-02 00:00:00'),(1,11,'2020-01-01 00:00:00'),(1,12,'2020-01-01 00:00:00'),(1,13,'2020-01-01 00:00:00'),(1,14,'2020-01-01 00:00:00'),(2,1,'2019-02-02 00:00:00'),(2,2,'2019-02-02 00:00:00'),(2,3,'2019-02-02 00:00:00'),(2,4,'2019-02-02 00:00:00'),(2,5,'2019-02-02 00:00:00'),(2,6,'2019-02-02 00:00:00'),(2,7,'2019-02-02 00:00:00'),(2,11,'2020-01-01 00:00:00'),(2,12,'2020-01-01 00:00:00'),(2,13,'2020-01-01 00:00:00'),(2,14,'2020-01-01 00:00:00'),(3,1,'2019-02-02 00:00:00'),(3,2,'2019-02-02 00:00:00'),(3,3,'2019-02-02 00:00:00'),(3,4,'2019-02-02 00:00:00'),(3,5,'2019-02-02 00:00:00'),(3,6,'2019-02-02 00:00:00'),(3,7,'2019-02-02 00:00:00'),(3,11,'2020-01-01 00:00:00'),(3,12,'2020-01-01 00:00:00'),(3,13,'2020-01-01 00:00:00'),(3,14,'2020-01-01 00:00:00'),(4,1,'2019-02-02 00:00:00'),(4,2,'2019-02-02 00:00:00'),(4,3,'2019-02-02 00:00:00'),(4,4,'2019-02-02 00:00:00'),(4,5,'2019-02-02 00:00:00'),(4,6,'2019-02-02 00:00:00'),(4,7,'2019-02-02 00:00:00'),(4,11,'2020-01-01 00:00:00'),(4,12,'2020-01-01 00:00:00'),(4,13,'2020-01-01 00:00:00'),(4,14,'2020-01-01 00:00:00'),(5,6,'2019-02-02 00:00:00'),(5,7,'2019-02-02 00:00:00'),(5,8,'2019-02-02 00:00:00'),(5,11,'2020-01-01 00:00:00'),(5,12,'2020-01-01 00:00:00'),(5,13,'2020-01-01 00:00:00'),(5,14,'2020-01-01 00:00:00'),(6,1,'2020-01-01 00:00:00'),(6,2,'2020-01-01 00:00:00'),(6,3,'2020-01-01 00:00:00'),(6,4,'2020-01-01 00:00:00'),(6,5,'2020-01-01 00:00:00'),(6,6,'2020-01-01 00:00:00'),(6,7,'2020-01-01 00:00:00'),(7,6,'2020-01-01 00:00:00'),(7,7,'2020-01-01 00:00:00'),(7,8,'2020-01-01 00:00:00'),(7,9,'2020-01-01 00:00:00'),(8,4,'2020-01-01 00:00:00'),(8,6,'2020-01-01 00:00:00'),(8,7,'2020-01-01 00:00:00'),(8,8,'2020-01-01 00:00:00'),(8,9,'2020-01-01 00:00:00'),(9,11,'2020-01-01 00:00:00'),(9,12,'2020-01-01 00:00:00'),(9,13,'2020-01-01 00:00:00'),(9,14,'2020-01-01 00:00:00'),(9,15,'2020-01-01 00:00:00'),(9,16,'2020-01-01 00:00:00'),(10,11,'2020-01-01 00:00:00'),(10,12,'2020-01-01 00:00:00'),(10,13,'2020-01-01 00:00:00'),(10,14,'2020-01-01 00:00:00'),(10,15,'2020-01-01 00:00:00'),(10,16,'2020-01-01 00:00:00');
/*!40000 ALTER TABLE `materia_estudiante` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `persona`
--
DROP TABLE IF EXISTS `persona`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `persona` (
`id_persona` int NOT NULL AUTO_INCREMENT,
`nombre` varchar(255) NOT NULL,
`apellido` varchar(255) NOT NULL,
`CI` int NOT NULL,
`created` datetime DEFAULT NULL,
PRIMARY KEY (`id_persona`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `persona`
--
LOCK TABLES `persona` WRITE;
/*!40000 ALTER TABLE `persona` DISABLE KEYS */;
INSERT INTO `persona` VALUES (1,'Monica','Cadena',4683790,'2012-02-02 00:00:00'),(2,'<NAME>','Jordan',4691928,'2012-02-02 00:00:00'),(3,'Rene','Sosa',4329149,'2012-02-02 00:00:00'),(4,'Agatha','<NAME>',4838973,'2012-03-05 00:00:00'),(5,'Natalie','Olmos',5983729,'2012-03-09 00:00:00'),(6,'Erwin','Choqueticlla',4838313,'2012-04-10 00:00:00'),(7,'Gabriela','Vega',5923083,'2012-06-10 00:00:00'),(8,'Alexis','Marechal',5389379,'2014-06-05 00:00:00'),(9,'Jose','Gil',3092732,'2014-10-10 00:00:00'),(10,'Jorge','Zarate',4839131,'2017-10-09 00:00:00'),(11,'Ricardo','Tejerina',7823213,'2019-01-01 00:00:00'),(12,'Natalia','Bilbao',7232954,'2019-01-01 00:00:00'),(13,'Ignacio','Valencia',7083103,'2019-02-01 00:00:00'),(14,'Joel','Jarro',8382392,'2019-10-01 00:00:00'),(15,'Santiago','Vargas',7390114,'2019-02-02 00:00:00'),(16,'Ian','Terceros',7382301,'2019-02-02 00:00:00'),(17,'Daydia','Lopez',8303012,'2019-02-02 00:00:00'),(18,'Javier','Aguilar',7328312,'2019-02-02 00:00:00'),(19,'Rocio','Miranda',8230714,'2019-02-02 00:00:00'),(20,'Nicole','Ignacio',8380423,'2019-02-02 00:00:00'),(21,'Karina','Medeiros',6192839,'2019-02-02 00:00:00');
/*!40000 ALTER TABLE `persona` 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 */;
-- Dump completed on 2020-03-25 1:46:23
|
CREATE VIEW [Hours].[DetailedTimeLog]
AS --
SELECT
[TimeLogs].[TimeLogID]
,[TimeLogs].[InvoiceID]
,[TimeLogs].[ProjectID]
,[TimeLogs].[CarID]
,DATEPART(YEAR, [TimeLogs].[Date]) [Year]
,DATEPART(MONTH, [TimeLogs].[Date]) [Month]
,DATEPART(WEEK, [TimeLogs].[Date]) [Week]
,DATEPART(DW, [TimeLogs].[Date]) [DoW]
,CASE DATEPART(dw, [TimeLogs].[Date])
WHEN 1 THEN 'Sunday'
WHEN 2 THEN 'Monday'
WHEN 3 THEN 'Tuesday'
WHEN 4 THEN 'Wednesday'
WHEN 5 THEN 'Thursday'
WHEN 6 THEN 'Friday'
WHEN 7 THEN 'Saturday'
END AS [DayOfWeek]
,[TimeLogs].[Date]
,[TimeLogs].[StartTime]
,[TimeLogs].[StartBreak]
,[TimeLogs].[EndBreak]
,[TimeLogs].[EndTIme]
,[TimeLogs].[Note]
,[TimeLogs].[Miles]
,[TimeLogs].[Hours]
FROM [Hours].[TimeLogs] |
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Servidor: localhost:3306
-- Tiempo de generación: 17-10-2020 a las 17:06:45
-- Versión del servidor: 5.7.24
-- Versión de PHP: 7.2.19
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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 datos: `villasoft`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `articulos`
--
CREATE TABLE `articulos` (
`id` bigint(20) UNSIGNED NOT NULL,
`categoria_id` bigint(20) UNSIGNED NOT NULL,
`codigo` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`nombre` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`stock` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`precio_costo` decimal(11,9) DEFAULT NULL,
`porEspecial` decimal(11,2) DEFAULT NULL,
`isDolar` int(10) UNSIGNED DEFAULT NULL,
`isPeso` int(10) UNSIGNED DEFAULT NULL,
`isTransPunto` int(10) UNSIGNED DEFAULT NULL,
`isMixto` int(10) UNSIGNED DEFAULT NULL,
`isEfectivo` int(10) UNSIGNED DEFAULT NULL,
`isKilo` int(10) UNSIGNED DEFAULT NULL,
`descripcion` text COLLATE utf8mb4_unicode_ci NOT NULL,
`unidades` int(10) UNSIGNED DEFAULT NULL,
`vender_al` enum('Mayor','Detal') COLLATE utf8mb4_unicode_ci NOT NULL,
`imagen` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`estado` enum('Activo','Inactivo','Eliminado') 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;
--
-- Volcado de datos para la tabla `articulos`
--
INSERT INTO `articulos` (`id`, `categoria_id`, `codigo`, `nombre`, `stock`, `precio_costo`, `porEspecial`, `isDolar`, `isPeso`, `isTransPunto`, `isMixto`, `isEfectivo`, `isKilo`, `descripcion`, `unidades`, `vender_al`, `imagen`, `estado`, `created_at`, `updated_at`) VALUES
(1, 1, '7896279600538', 'ACEITE COAMO 900 ML', '75', '1.000000000', '2.00', NULL, 1, NULL, NULL, NULL, NULL, 'ACEITE COAMO 900 ML', 1, 'Detal', 'thumb_upl_57e81cc8d692a.jpg', 'Activo', '2020-09-21 04:50:13', '2020-10-13 01:37:33'),
(2, 1, '872536003639', 'CAJA DE ACEITE MADRE SOL 900 ML', '2', '15.500000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE ACEITE MADRE SOL 900 ML', 12, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 04:51:39', '2020-09-21 04:51:39'),
(3, 1, '7591002000745', 'ACEITE MAZEITE 1 LT', '37', '1.620000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ACEITE MAZEITE 1 LT', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 04:52:08', '2020-10-13 03:30:52'),
(4, 7, '7706569020567', 'ACETAMINOFEN 500 MG BLISTER', '1436', '0.180000000', '4.00', NULL, NULL, NULL, NULL, 1, NULL, 'ACETAMINOFEN 500 MG BLISTER', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 04:54:52', '2020-10-05 20:31:13'),
(5, 7, '7706569020567', 'CAJA DE ACETAMINOFEN 500MG X 10 BLISTER', '10', '1.430000000', '3.00', NULL, 1, NULL, NULL, NULL, NULL, 'CAJA DE ACETAMINOFEN 500MG X 10 BLISTER', 10, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 04:55:33', '2020-10-12 23:44:31'),
(6, 7, '7702184011935', 'ACIDO FOLICO 1MG', '366', '0.300000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ACIDO FOLICO 1MG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 04:58:03', '2020-09-21 04:58:03'),
(7, 7, '7702184011188', 'ACIDO FOLICO 5MG', '27', '0.840000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ACIDO FOLICO 5MG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 04:58:44', '2020-09-21 04:58:44'),
(8, 1, '7707035511251', 'ALBENDAZOL 200MG', '26', '0.360000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ALBENDAZOL 200MG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:01:03', '2020-09-21 05:01:03'),
(9, 7, '7707035511251', 'CAJA DE ALBENDAZOL 200MG X 25 BLISTER', '2', '8.570000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE ALBENDAZOL 200MG X 25 BLISTER', 25, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:01:48', '2020-09-22 20:49:05'),
(10, 7, '7703763999057', 'AMOXICILINA 500MG', '82', '0.900000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'AMOXICILINA 500MG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:03:00', '2020-10-13 01:37:33'),
(11, 7, '7703763999057', 'CAJA AMOXICILINA 500MG X 20 BLISTER', '5', '14.860000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA AMOXICILINA 500MG X 20 BLISTER', 20, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:03:27', '2020-09-22 20:52:34'),
(12, 7, '7703763999064', 'AMPICILINA 500 MG', '2', '0.980000000', '3.00', NULL, 1, NULL, 1, NULL, NULL, 'AMPICILINA 500 MG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:04:01', '2020-10-04 18:19:11'),
(13, 7, '7703763999064', 'CAJA DE AMPICILINA 500 MG X 20 BLISTER', '0', '0.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE AMPICILINA 500 MG X 20 BLISTER', 20, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:04:27', '2020-09-21 05:04:27'),
(14, 7, '7702870003657', 'ANTICONCEPTIVO SINOVUL 0,15MG / 0,03MG', '32', '1.800000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ANTICONCEPTIVO SINOVUL 0,15MG / 0,03MG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:05:27', '2020-09-21 05:05:27'),
(15, 7, '7700211072195', 'AREQUIPE EL ANDINO 5KG', '12', '12.290000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'AREQUIPE EL ANDINO 5KG', 1, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:06:29', '2020-09-22 20:57:14'),
(16, 7, '01', 'AREQUIPE DE TINA 1/2 KG', '10', '1.290000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'AREQUIPE DE TINA 1/2 KG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:07:56', '2020-09-21 05:07:56'),
(17, 1, '7592123000218', 'ARROZ EL GUAYANES 1KG', '36', '0.710000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ARROZ EL GUAYANES 1KG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:09:13', '2020-09-22 19:14:28'),
(18, 7, '7705959880361', 'ASPIRINA ACIDO ACETILSALICILICO 100MG', '226', '0.720000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ASPIRINA ACIDO ACETILSALICILICO 100MG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:10:02', '2020-09-22 21:00:18'),
(19, 1, '7591184000977', 'AVENA EN HOJUELAS QUAKER 400G', '16', '1.290000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'AVENA EN HOJUELAS QUAKER 400G', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:10:38', '2020-09-24 17:46:25'),
(20, 7, '7707019313147', 'AZITROMICINA JARABE 200MG / 5ML', '6', '0.380000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'AZITROMICINA JARABE 200MG / 5ML', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:11:33', '2020-09-22 20:20:15'),
(21, 1, '02', 'AZUCAR 1KG', '204', '0.640000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'AZUCAR 1KG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:13:11', '2020-09-22 21:03:14'),
(22, 1, '03', 'FARDO DE AZUCAR 1KG X 30 UND', '2', '18.380000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'FARDO DE AZUCAR 1KG X 30 UND', 30, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:14:06', '2020-09-22 21:04:15'),
(23, 1, '04', 'FARDO DE AZUCAR 1KG X 24 UND', '0', '0.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'FARDO DE AZUCAR 1KG X 24 UND', 24, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:14:50', '2020-09-21 05:16:01'),
(24, 7, '05', 'BICARBONATO 100GR', '70', '0.050000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'BICARBONATO 100GR', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:16:37', '2020-09-21 05:16:37'),
(25, 10, '6948956200409', 'BOMBILLOS 36W CROWN', '48', '1.010000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'BOMBILLOS 36W CROWN', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:17:32', '2020-09-21 05:17:32'),
(26, 1, '06', 'CAFE CRIOLLO 200GR', '36', '1.210000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAFE CRIOLLO 200GR', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:18:00', '2020-09-22 21:06:56'),
(27, 1, '7595707000024', 'CAFE OCCIDENTE 200GR', '12', '1.180000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAFE OCCIDENTE 200GR', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:18:53', '2020-09-21 05:18:53'),
(28, 7, '7702032252114', 'CAFE SELLO ROJO 500G', '24', '3.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAFE SELLO ROJO 500G', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:19:31', '2020-09-22 21:08:37'),
(29, 3, '7591668100148', 'CEPILLO DE LAVAR CON ASA', '8', '1.080000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CEPILLO DE LAVAR CON ASA', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:20:21', '2020-09-21 05:20:21'),
(30, 3, '7591668110048', 'CEPILLO PARA POCETA', '10', '1.190000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CEPILLO PARA POCETA', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:20:48', '2020-09-21 05:20:48'),
(31, 1, '07', 'CHIMU EL APUREÑITO AL DETAL', '714', '0.260000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CHIMU EL APUREÑITO AL DETAL', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:21:42', '2020-09-21 05:21:42'),
(32, 1, '08', 'PAQUETE CHIMU EL APUREÑITO X 12 UND', '20', '2.760000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PAQUETE CHIMU EL APUREÑITO X 12 UND', 12, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:22:20', '2020-09-21 05:22:20'),
(33, 7, '09', 'PAQUETE DE CHUPETA BIG BOM X 48UND', '54', '2.820000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PAQUETE DE CHUPETA BIG BOM X 48UND', 48, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:23:27', '2020-09-21 05:24:56'),
(34, 7, '10', 'CHUPETA BIG BOM AL DETAL', '142', '0.070000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CHUPETA BIG BOM AL DETAL', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:25:26', '2020-09-21 05:25:26'),
(35, 7, '7706569020574', 'CIPROFLOXACINO 500MG', '20', '1.050000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CIPROFLOXACINO 500MG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:26:04', '2020-09-21 05:26:04'),
(36, 7, '7706569020574', 'CAJA DE CIPROFLOXACINO 500MG X 10 BLISTER', '0', '0.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE CIPROFLOXACINO 500MG X 10 BLISTER', 10, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:26:32', '2020-09-21 05:26:32'),
(37, 7, '7703812000017', 'CLORO BLANCOX 500ML', '78', '0.410000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CLORO BLANCOX 500ML', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:27:04', '2020-09-21 05:27:04'),
(38, 10, '5886075197037', 'COCINA ELECTRICA 2000W 110V', '2', '19.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'COCINA ELECTRICA 2000W 110V', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:27:49', '2020-09-21 05:27:49'),
(39, 12, '7592958000490', 'COLADORA DE CAFE', '4', '0.290000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'COLADORA DE CAFE', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:29:51', '2020-09-21 05:29:51'),
(40, 7, '7702184010082', 'COMPLEJO B', '88', '0.600000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'COMPLEJO B', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:30:47', '2020-09-21 05:30:47'),
(41, 7, '7702184010082', 'CAJA DE COMPLEJO B X 25 BLISTER', '0', '0.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE COMPLEJO B X 25 BLISTER', 25, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:31:19', '2020-09-21 05:31:19'),
(42, 1, '7591002100117', 'CREMA DE ARRZO BOLSA 450 GR', '4', '0.770000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CREMA DE ARRZO BOLSA 450 GR', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:31:52', '2020-09-24 17:50:41'),
(43, 7, '7702560041761', 'CREMA DENTAL FLUO CARDENT 100G', '293', '0.570000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CREMA DENTAL FLUO CARDENT 100G', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:32:24', '2020-09-22 21:16:40'),
(44, 7, '7702354929855', 'CREMA DENTAL FORTIDENT 60ML / 81G', '440', '0.570000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CREMA DENTAL FORTIDENT 60ML / 81G', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:32:54', '2020-09-21 05:32:54'),
(45, 7, '7702354929855', 'CAJA DE CREMA DENTAL FORTIDENT 60ML / 81G X 6 UND', '38', '3.240000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE CREMA DENTAL FORTIDENT 60ML / 81G X 6 UND', 6, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:33:40', '2020-09-22 21:20:57'),
(46, 7, '7702354031732', 'CUBITO DOÑA GALLINA', '120', '0.120000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CUBITO DOÑA GALLINA', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:34:03', '2020-09-21 05:34:03'),
(47, 7, '11', 'DESODORANTE EN CREMA MIXTOS', '268', '0.750000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'DESODORANTE EN CREMA MIXTOS', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:34:35', '2020-09-21 05:34:35'),
(48, 7, '12', 'DESODORANTE EN SOBRE', '38', '0.200000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'DESODORANTE EN SOBRE', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:35:07', '2020-09-21 05:35:07'),
(49, 7, '7702184011157', 'DICLOFENACO 50MG', '158', '0.330000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'DICLOFENACO 50MG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:35:39', '2020-09-21 05:35:39'),
(50, 7, '7702184011157', 'CAJA DE DICLOFENACO 50MG X 50 BLISTER', '2', '14.290000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE DICLOFENACO 50MG X 50 BLISTER', 50, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:36:07', '2020-09-21 05:36:07'),
(51, 4, '7596808001279', 'ESCENCIA SAYO DE 3.8 LT', '0', '12.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ESCENCIA SAYO DE 3.8 LT', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:36:53', '2020-09-21 05:36:53'),
(52, 3, '7591668100018', 'ESCOBA CON PALO ARAUCA', '18', '1.530000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ESCOBA CON PALO ARAUCA', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:37:27', '2020-09-22 21:32:26'),
(53, 3, '7591668100087', 'ESCOBA CON PALO INSDUSTRIAL', '10', '1.320000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ESCOBA CON PALO INSDUSTRIAL', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:37:57', '2020-09-22 21:32:39'),
(54, 7, '7709468986507', 'ESPONJA DE ACERO CLOVER', '108', '0.300000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ESPONJA DE ACERO CLOVER', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:38:23', '2020-09-21 05:38:23'),
(55, 7, '7709990078343', 'ESPONJA LAVALOZA', '74', '0.230000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ESPONJA LAVALOZA', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:38:42', '2020-09-21 05:38:42'),
(56, 7, '7501298224282', 'EUTIROX 100 MCG', '60', '0.900000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'EUTIROX 100 MCG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:39:29', '2020-09-21 05:39:29'),
(57, 7, '13', 'FABULOSO SOBRE 200 ML MIXTOS', '184', '0.340000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'FABULOSO SOBRE 200 ML MIXTOS', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:40:19', '2020-09-21 05:40:19'),
(58, 7, '14', 'FRUTIÑO SABORES MIXTOS', '16', '0.170000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'FRUTIÑO SABORES MIXTOS', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:41:10', '2020-09-23 22:21:28'),
(59, 7, '15', 'CAJA DE FRUTIÑO SABORES MIXTOS', '29', '2.860000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE FRUTIÑO SABORES MIXTOS', 20, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:41:29', '2020-09-23 22:21:28'),
(60, 2, '7591082007153', 'GALLETA DE SODA EL SOL', '48', '0.820000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'GALLETA DE SODA EL SOL', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:42:02', '2020-09-25 00:54:57'),
(61, 7, '16', 'CAJA DE GALLETA 77 / VIP MAX', '18', '5.430000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE GALLETA 77 / VIP MAX', 24, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:42:49', '2020-09-22 21:45:53'),
(62, 7, '17', 'GALLETA 77 / VIP MAX', '0', '0.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'GALLETA 77 / VIP MAX', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:43:10', '2020-09-21 05:43:10'),
(63, 7, '7702025142026', 'PAQUETE DE GALLETA FESTIVAL X 12 UND', '122', '2.320000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PAQUETE DE GALLETA FESTIVAL X 12 UND', 12, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:44:01', '2020-09-22 21:46:47'),
(64, 7, '7702025142026', 'GALLETA FESTIVAL', '22', '0.200000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'GALLETA FESTIVAL', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:44:35', '2020-09-21 05:44:35'),
(65, 2, '7591164001277', 'GALLETA MARIA PAQUETE', '38', '0.820000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'GALLETA MARIA PAQUETE', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:45:06', '2020-09-25 00:52:59'),
(66, 7, '7622201407605', 'PAQUETE DE GALLETA OREO X 12 UND', '36', '2.570000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PAQUETE DE GALLETA OREO X 12 UND', 12, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:45:39', '2020-09-22 21:47:52'),
(67, 7, '7590011251100', 'GALLETA OREO', '116', '0.200000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'GALLETA OREO', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:46:21', '2020-09-21 05:46:21'),
(68, 7, '20', 'GATARINA DETALLADA 1/2 KG', '0', '0.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'GATARINA DETALLADA 1/2 KG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:47:37', '2020-09-21 05:47:37'),
(69, 6, '7590005168209', 'GEL FIJADOR EVERY MIGHT 100G', '0', '0.660000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'GEL FIJADOR EVERY MIGHT 100G', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:48:30', '2020-09-21 05:48:30'),
(70, 6, '7590005168216', 'GEL FIJADOR EVERY NIGHT 250 G', '10', '1.540000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'GEL FIJADOR EVERY NIGHT 250 G', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:49:04', '2020-09-21 05:49:04'),
(71, 7, '7707197613404', 'HARINA DE TRIGO ROBINSON LEUDANTE 1 KG', '2', '0.870000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'HARINA DE TRIGO ROBINSON LEUDANTE 1 KG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:49:39', '2020-09-24 22:32:51'),
(72, 7, '7707197613404', 'FARDO DE HARINA DE TRIGO ROBINSON LEUDANTE 1 KG X 10 UND', '25', '8.320000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'FARDO DE HARINA DE <NAME> LEUDANTE 1 KG X 10 UND', 10, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:51:50', '2020-09-24 22:32:51'),
(73, 1, '7591104101104', 'HARINA JUANA', '-120', '0.710000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'HARINA JUANA', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:52:10', '2020-09-24 22:32:00'),
(74, 1, '7591104101104', 'FARDO DE HARINA JUANA X 20 UND', '12', '13.520000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'FARDO DE HARINA JUANA X 20 UND', 20, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:52:36', '2020-09-24 22:32:00'),
(75, 1, '7591002000011', 'HARINA PAN', '40', '0.910000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'H<NAME>', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:52:55', '2020-09-25 01:04:22'),
(76, 7, '8801038200026', '<NAME>', '40', '0.330000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'HOJIL<NAME>', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:53:24', '2020-09-21 05:53:24'),
(77, 1, '21', 'HUEVOS 1/2 CARTON', '148', '1.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'HUEVOS 1/2 CARTON', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:55:30', '2020-09-25 00:59:22'),
(78, 7, '7706569000385', 'IBUPROFENO 800 MG', '97', '0.720000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'IBUPROFENO 800 MG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:56:01', '2020-09-21 05:56:01'),
(79, 7, '7706569000385', 'CAJA DE IBUPROFENO 800 MG X 5 BLISTER', '15', '3.430000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE IBUPROFENO 800 MG X 5 BLISTER', 5, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:56:37', '2020-09-22 22:18:33'),
(80, 7, '22', 'AFEITADORA DORCO X 3 UND', '54', '0.680000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'AFEITADORA DORCO X 3 UND', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:57:49', '2020-09-21 05:57:49'),
(81, 7, '23', 'JABON DE BAÑO LEFRAGANCE', '164', '0.300000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'JABON DE BAÑO LEFRAGANCE', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:58:22', '2020-09-22 22:21:16'),
(82, 7, '24', 'CAJA DE JABON DE BAÑO LEFRAGANCE', '8', '20.290000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE JABON DE BAÑO LEFRAGANCE', 72, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:58:43', '2020-09-22 22:21:52'),
(83, 7, '25', 'J<NAME>', '16', '0.440000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'JABON DE BAÑO LEMON', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:59:09', '2020-09-22 22:23:12'),
(84, 7, '26', 'CA<NAME> DE <NAME>', '8', '15.140000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE JABON DE BAÑO LEMON', 36, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 05:59:30', '2020-09-22 22:23:45'),
(85, 7, '27', 'JABON DE BAÑO NATURAL FEELING', '104', '0.380000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'JABON DE BAÑO NATURAL FEELING', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:00:10', '2020-09-21 06:00:10'),
(86, 7, '7707181392612', 'JABON DE PASTA BIG', '8', '0.310000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'JABON DE PASTA BIG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:01:01', '2020-09-21 06:01:01'),
(87, 7, '7707181392612', 'CAJA DE JABON DE PASTA BIG X 24 UND', '8', '7.140000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE JABON DE PASTA BIG X 24 UND', 24, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:01:25', '2020-09-22 22:28:06'),
(88, 7, '7702826100508', 'JABON DE PASTA SUPER ROMBO', '24', '0.260000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'JABON DE PASTA SUPER ROMBO', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:01:47', '2020-09-22 22:28:45'),
(89, 7, '7702826100508', 'CAJA DE JABON DE PASTA SUPER ROMBO X 25 UND', '10', '6.290000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE JABON DE PASTA SUPER ROMBO X 25 UND', 25, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:02:16', '2020-09-22 22:30:54'),
(90, 7, '7707183664328', 'JABON DE POLVO ULTREX 1 KG', '24', '1.100000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'JABON DE POLVO ULTREX 1 KG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:02:50', '2020-09-24 22:34:02'),
(91, 7, '7707183664328', 'FARDO DE JABON DE POLVO ULTREX 1 KG X 20 UND', '6', '20.860000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'FARDO DE JABON DE POLVO ULTREX 1 KG X 20 UND', 20, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:03:16', '2020-09-24 22:34:02'),
(92, 7, '7707183664311', 'JABON DE POLVO ULTREX 1/2 KG', '188', '0.590000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'JABON DE POLVO ULTREX 1/2 KG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:03:37', '2020-09-21 06:03:37'),
(93, 7, '7509546652559', 'LAVAPLATOS DISCO AXION', '76', '0.310000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'LAVAPLATOS DISCO AXION', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:04:00', '2020-09-21 06:04:00'),
(94, 7, '7509546652559', 'CAJA DE LAVAPLATOS DISCO AXION X 24 UND', '4', '7.140000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE LAVAPLATOS DISCO AXION X 24 UND', 24, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:04:25', '2020-09-22 22:36:28'),
(95, 7, '7703616133010', 'LAVAPLATOS MAXI LOZA TAZA 450GR', '44', '0.880000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'LAVAPLATOS MAXI LOZA TAZA 450GR', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:04:58', '2020-09-21 06:04:58'),
(96, 7, '7703616133027', 'LAVAPLATOS MAXI LOZA TAZA 1350GR X 3 UND', '8', '2.290000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'LAVAPLATOS MAXI LOZA TAZA 1350GR X 3 UND', 1, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:05:55', '2020-09-22 22:38:42'),
(97, 7, '7706921028002', 'LECHE EN POLVO INDULECHE 800 GR', '22', '4.500000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'LECHE EN POLVO INDULECHE 800 GR', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:06:37', '2020-09-21 06:06:37'),
(98, 7, '7706921028002', 'FARDO DE LECHE EN POLVO INDULECHE 800 GR X 8 UND', '0', '0.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'FARDO DE LECHE EN POLVO INDULECHE 800 GR X 8 UND', 1, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:07:06', '2020-09-21 06:07:06'),
(99, 7, '6917790979642', 'LEVADURA GLORIPAN 500 GR', '14', '2.660000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'LEVADURA GLORIPAN 500 GR', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:07:38', '2020-09-21 06:07:38'),
(100, 7, '7703038050339', 'LORATADINA 10MG', '142', '0.380000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'LORATADINA 10MG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:08:19', '2020-09-21 06:08:19'),
(101, 7, '7703038050339', 'CAJA DE LORATADINA 10MG X 40 BLISTER', '0', '14.290000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE LORATADINA 10MG X 40 BLISTER', 40, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:08:48', '2020-09-22 22:42:34'),
(102, 7, '7705959882129', 'LOSARTAN POTASICO DE 50 MG', '50', '0.900000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'LOSARTAN POTASICO DE 50 MG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:09:17', '2020-09-21 06:09:17'),
(103, 8, '7591446000660', 'MALTIN POLAR RETORNABLE', '26', '0.010000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MALTIN POLAR RETORNABLE', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:10:18', '2020-09-24 17:49:00'),
(105, 8, '7591446002947', 'MALTIN LITRON 1.5 LT', '6', '1.290000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MALTIN LITRON 1.5 LT', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:11:38', '2020-09-24 17:50:13'),
(106, 7, '28', 'MANTECA DE TINA 1/2 KG', '14', '0.880000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MANTECA DE TINA 1/2 KG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:12:49', '2020-09-21 06:13:00'),
(107, 7, '29', 'MANTECA DE TINA 250 GR', '16', '0.400000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MANTECA DE TINA 250 GR', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:13:25', '2020-09-21 06:13:25'),
(108, 7, '30', 'CAJA DE MANTECA DE 15 KG', '0', '26.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE MANTECA DE 15 KG', 60, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:14:47', '2020-09-21 06:14:47'),
(109, 1, '7590006200137', 'MANTEQUILLA MAVESA 500 GR', '118', '1.670000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MANTEQUILLA MAVESA 500 GR', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:15:29', '2020-09-25 01:07:24'),
(110, 1, '7591058000843', 'MANTEQUILLA MIRASOL 250 GR', '68', '0.740000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MANTEQUILLA MIRASOL 250 GR', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:16:02', '2020-09-25 00:50:50'),
(111, 1, '7591058000751', 'MANTEQUILLA MIRASOL 500 MG', '68', '1.530000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MANTEQUILLA MIRASOL 500 MG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:16:24', '2020-09-25 00:52:02'),
(112, 1, '75971403', 'MAYONESA MAVESA 175 GR', '102', '0.800000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MAYONESA MAVESA 175 GR', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:16:47', '2020-09-25 01:08:33'),
(113, 1, '719503030123', 'MAYONESA MAVESA 445 GR', '102', '1.670000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MAYONESA MAVESA 445 GR', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:17:03', '2020-09-25 01:06:06'),
(114, 7, '31', 'METFORMINA CLORHIDRATO 850 MG', '14', '1.200000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'METFORMINA CLORHIDRATO 850 MG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:18:03', '2020-09-21 06:18:03'),
(115, 7, '32', 'METRONIDAZOL 50MG', '172', '0.580000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'METRONIDAZOL 50MG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:19:01', '2020-09-21 06:19:01'),
(116, 7, '33', 'MOPA COLOMBIANA MIXTAS', '26', '1.050000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MOPA COLOMBIANA MIXTAS', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:19:46', '2020-09-21 06:19:46'),
(117, 3, '7592958000216', 'MOPA PABILO NRO 36 CON PALO', '10', '2.580000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MOPA PABILO NRO 36 CON PALO', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:20:43', '2020-09-21 06:20:43'),
(118, 3, '7592958000032', 'MOPA PABILO NRO 42', '10', '1.790000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MOPA PABILO NRO 42', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:21:14', '2020-09-21 06:21:14'),
(119, 7, '34', 'NUTRIBELA10 SOBRE', '-12', '0.310000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'NUTRIBELA10 SOBRE', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:21:48', '2020-09-23 22:27:28'),
(120, 7, '35', 'CAJA DE NUTRIBELA10 X 12 SOBRES', '47', '3.490000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE NUTRIBELA10 X 12 SOBRES', 12, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:22:14', '2020-09-23 22:27:28'),
(121, 7, '36', 'OMEPRAZOL 20 MG BLISTER', '80', '0.750000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'OMEPRAZOL 20 MG BLISTER', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:22:44', '2020-09-21 06:22:44'),
(122, 12, '37', 'PABILO', '202', '0.340000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PABILO', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:23:10', '2020-09-21 06:23:10'),
(123, 7, '38', '<NAME>', '82', '0.210000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PAÑAL M BABY SEC', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:23:37', '2020-09-22 23:14:23'),
(124, 3, '7592958000278', 'PAÑO DE LIMPIEZA AMARILLO', '22', '0.340000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PAÑO DE LIMPIEZA AMARILLO', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:24:19', '2020-09-22 23:19:22'),
(125, 3, '7592958000285', 'PAÑO DE COLETO', '24', '0.850000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PAÑO DE COLETO', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:24:47', '2020-09-22 23:19:56'),
(126, 7, '39', 'PAPEL SANITARIO ELITE DETAL', '42', '0.200000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PAPEL SANITARIO ELITE DETAL', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:25:15', '2020-09-21 06:25:15'),
(127, 7, '40', 'PAPEL SANITARIO ELITE X 24 UND', '6', '4.890000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PAPEL SANITARIO ELITE X 24 UND', 24, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:25:46', '2020-09-22 23:26:47'),
(128, 7, '1002012033525', 'PAPEL SANITARIO RENDY', '108', '0.980000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PAPEL SANITARIO RENDY', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:26:10', '2020-09-21 06:26:10'),
(129, 1, '41', 'PASTA CORTA 1 KG', '24', '0.970000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PASTA CORTA 1 KG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:27:24', '2020-09-21 06:27:24'),
(130, 1, '7591674002665', 'PASTA LARGA ITALPASTA 1 KG', '10', '0.960000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PASTA LARGA ITALPASTA 1 KG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:28:07', '2020-09-26 16:13:04'),
(131, 1, '7591674002665', 'FARDO DE PASTA LARGA ITALPASTA 1 KG X 12 UND', '8', '11.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'FARDO DE PASTA LARGA ITALPASTA 1 KG X 12 UND', 12, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:28:48', '2020-09-26 16:13:04'),
(133, 7, '42', 'BULTO DE PERRARINA FILPO 30 KG', '2', '37.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'BULTO DE PERRARINA FILPO 30 KG', 60, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:31:33', '2020-09-21 06:31:33'),
(134, 7, '43', '<NAME> 1/2 KILO', '0', '0.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PERRARINA FILPO 1/2 KILO', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:32:05', '2020-09-21 06:32:05'),
(135, 3, '7592958000247', 'PORTA MOPA INDUSTRIAL', '22', '8.170000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PORTA MOPA INDUSTRIAL', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:33:05', '2020-09-21 23:44:31'),
(136, 7, '44', 'PREGABALINA 75 MG BLISTER', '52', '0.400000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PREGABALINA 75 MG BLISTER', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:34:11', '2020-09-21 06:34:11'),
(137, 9, '45', 'QUESO DURO X 100 GR', '0', '0.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'QUESO DURO X 100 GR', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Inactivo', '2020-09-21 06:36:24', '2020-09-21 06:52:22'),
(138, 3, '7591668110093', '<NAME>', '8', '1.490000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '<NAME>', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:36:56', '2020-09-22 23:33:04'),
(139, 3, '7591668110031', '<NAME>', '14', '0.810000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'RA<NAME>O', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:37:20', '2020-09-22 23:32:50'),
(140, 7, '7702090034134', 'REFRESO PEPSI 1.5 LT', '32', '0.980000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'REFRESO PEPSI 1.5 LT', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:38:04', '2020-09-21 06:38:04'),
(141, 7, '7702090034134', 'CAJA DE REFRESO PEPSI 1.5 LT X 8 UND', '4', '7.810000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE REFRESO PEPSI 1.5 LT X 8 UND', 8, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:38:33', '2020-09-22 23:36:27'),
(142, 1, '46', 'SAL 1 KG', '46', '0.210000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SAL 1 KG', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:38:52', '2020-09-24 22:33:29'),
(143, 1, '47', 'FARDO DE SAL 1 KG X 25 UND', '8', '5.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'FARDO DE SAL 1 KG X 25 UND', 25, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:39:15', '2020-09-24 22:33:29'),
(144, 1, '75919184', 'SALSA DE TOMATE PAMPERO 198GR', '80', '0.580000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SALSA DE TOMATE PAMPERO 198GR', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:39:47', '2020-09-24 17:44:59'),
(145, 1, '75919191', 'SALSA DE TOMATE PAMPERO 397GR', '16', '0.940000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SALSA DE TOMATE PAMPERO 397GR', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:40:05', '2020-09-25 01:09:33'),
(146, 1, '48', 'SAL<NAME>AS (AJO - INGLESA - SOJA)', '62', '0.740000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SALSAS VARIAS (AJO - INGLESA - SOJA)', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:40:35', '2020-09-21 06:40:35'),
(147, 1, '7595122001927', 'SARDINA EN SALSA DE TOMATE MARBONITA 170G', '50', '0.490000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SARDINA EN SALSA DE TOMATE MARBONITA 170G', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:41:46', '2020-09-22 23:43:24'),
(148, 1, '7595122001927', 'CAJA DE SARDINA EN SALSA DE TOMATE MARBONITA 170G X 24 UND', '8', '12.730000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE SARDINA EN SALSA DE TOMATE MARBONITA 170G X 24 UND', 24, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:42:07', '2020-09-21 06:42:07'),
(149, 6, '7590005007034', 'CHAMPU DRENE 200 ML', '10', '1.650000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CHAMPU DRENE 200 ML', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:43:19', '2020-09-21 06:43:19'),
(150, 6, '7590005007317', 'CREMA PARA PEINAR DRENE 240 ML', '6', '1.740000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CREMA PARA PEINAR DRENE 240 ML', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:43:48', '2020-09-21 06:43:48'),
(151, 7, '49', 'SHAMPOO SAVITAL 550 ML', '10', '4.500000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SHAMPOO SAVITAL 550 ML', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:44:34', '2020-09-21 06:44:34'),
(152, 7, '50', 'SHAMPOO EN SOBRE', '38', '0.250000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SHAMPOO EN SOBRE', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:45:08', '2020-09-22 23:45:30'),
(153, 7, '51', 'SHAMPOO SAVITAL SOBRE', '110', '0.270000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SHAMPOO SAVITAL SOBRE', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:45:31', '2020-09-21 06:45:31'),
(154, 7, '52', 'SUAVITEL SOB<NAME>', '292', '0.370000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SU<NAME>', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:46:20', '2020-09-21 06:46:20'),
(155, 7, '53', 'AR<NAME>', '0', '0.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'AROMATEL SOBRE', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:46:38', '2020-09-21 06:46:38'),
(156, 7, '54', 'TABACO NORTEÑO', '240', '1.740000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'TABACO NORTEÑO', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:47:01', '2020-09-22 23:49:42'),
(157, 7, '7702108207369', 'TOALLAS SANITARIAS ELLAS DUO', '50', '1.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'TOALLAS SANITARIAS ELLAS DUO', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:47:28', '2020-09-21 06:47:28'),
(158, 7, '7702108207369', 'BULTO DE TOALLAS SANITARIAS ELLAS DUO X 24 UND', '0', '0.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'BULTO DE TOALLAS SANITARIAS ELLAS DUO X 24 UND', 24, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:47:57', '2020-09-21 06:47:57'),
(159, 1, '7590006700019', 'TODDY POTE 200 GR', '26', '1.600000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'TODDY POTE 200 GR', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:48:41', '2020-09-23 00:03:08'),
(160, 7, '55', 'VELAS PEQUEÑAS PAQUETES X 8 UND', '26', '0.660000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'VELAS PEQUEÑAS PAQUETES X 8 UND', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:49:18', '2020-09-21 06:49:18'),
(161, 7, '56', 'VELAS GRANDES PAQUETES X 8 UND', '10', '1.260000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'VELAS GRANDES PAQUETES X 8 UND', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:49:42', '2020-09-21 06:49:42'),
(163, 7, '57', 'VELAS EXTRA GRANDE PAQUETES X 10 UND', '114', '1.670000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'VELAS EXTRA GRANDE PAQUETES X 10 UND', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:50:11', '2020-09-21 06:50:11'),
(164, 7, '58', 'VENTILADOR RECARGBLE', '2', '70.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'VENTILADOR RECARGBLE', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:50:58', '2020-09-21 06:50:58'),
(165, 7, '59', 'YESQUEROS', '2', '0.190000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'YESQUEROS', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:51:15', '2020-09-21 06:51:15'),
(166, 7, '60', 'AZITROMICINA 500 MG BLISTER', '8', '2.100000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'AZITROMICINA 500 MG BLISTER', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-21 06:51:54', '2020-09-21 06:51:54'),
(168, 3, '7592396004562', 'LECHE CONDENSADA NATULAC 340GR', '24', '1.370000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'LECHE CONDENSADA NATULAC 340GR', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-23 00:46:44', '2020-09-23 00:47:43'),
(169, 3, '7592707000917', 'CLORO NEVEX ULTRA DE 1000CC', '36', '0.790000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CLORO NEVEX ULTRA DE 1000CC', 1, 'Detal', 'thumb_upl_57e81c9513ec3.jpg', 'Activo', '2020-09-23 00:48:23', '2020-09-23 01:24:41'),
(170, 1, '7591112049023', 'VINAGRE TIQUIRE 1000CM', '10', '1.040000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'VINAGRE TIQUIRE 1000CM', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-23 00:49:01', '2020-09-23 00:49:01'),
(171, 1, '7591112049016', 'VINAGRE TIQUIRE DE 500CC', '12', '0.620000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'VINAGRE TIQUIRE DE 500CC', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-23 00:49:38', '2020-09-23 00:49:38'),
(173, 1, '7591098800687', 'SERVILLETAS Z PEQUEÑAS', '22', '0.550000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SERVILLETAS Z PEQUEÑAS', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-23 00:50:45', '2020-09-23 00:50:45'),
(174, 1, '7591098430525', '<NAME>', '24', '0.550000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '<NAME>', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-23 00:51:15', '2020-09-23 00:51:15'),
(175, 1, '7592749001262', 'FORORO CAMPESINO 500GR', '8', '0.670000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'FORORO CAMPESINO 500GR', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-23 00:51:50', '2020-09-23 00:51:50'),
(176, 1, '61', 'PANELA', '182', '0.710000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PANELA', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-23 00:53:39', '2020-09-23 00:53:39'),
(177, 7, '7702090064186', 'POSTOBOM MANZANA 2.5 LT', '6', '0.980000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'POSTOBOM MANZANA 2.5 LT', 8, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-23 20:40:23', '2020-09-23 20:40:23'),
(178, 7, '7702090064186', 'CAJA DE POSTOBOM MANZANA 2.5 LT X 8 UND', '2', '7.430000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CAJA DE POSTOBOM MANZANA 2.5 LT X 8 UND', 8, 'Mayor', 'upl_57e81d357d468.jpg', 'Activo', '2020-09-23 20:41:20', '2020-09-23 20:41:20'),
(179, 1, '12365478998747', 'PRUEBA ARTICULO', '0', '0.000000000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PRUEBA ARTICULO', 1, 'Detal', 'avatar.png', 'Activo', '2020-10-03 15:36:08', '2020-10-03 15:36:08'),
(180, 1, '111222333666', 'OTRO ARTICULO PRUEBA', '0', '0.000000000', '2.00', 1, 1, NULL, NULL, NULL, NULL, 'OTRO ARTICULO PRUEBA', 1, 'Detal', 'avatar5.png', 'Activo', '2020-10-03 15:38:54', '2020-10-03 16:29:48'),
(181, 1, '222333111', 'ARTICULO CERO POR', '0', '0.000000000', '0.00', NULL, NULL, NULL, 1, 1, NULL, 'ARTICULO CERO POR', 1, 'Detal', 'avatar04.png', 'Activo', '2020-10-03 15:41:55', '2020-10-03 15:41:55'),
(182, 1, '333222111', 'ARTICULO NULO', '0', '0.000000000', NULL, 1, NULL, NULL, NULL, NULL, NULL, 'ARTICULO NULO', 1, 'Detal', 'avatar04.png', 'Activo', '2020-10-03 15:44:15', '2020-10-03 15:44:15'),
(183, 1, '1212454547878978', 'QUESO BLANCO DURO', '121959', '0.001777778', NULL, NULL, NULL, NULL, NULL, NULL, 1, 'QUESO BLANCO DURO', 1, 'Detal', 'upl_57e81d357d468.jpg', 'Activo', '2020-10-14 05:33:00', '2020-10-14 15:31:14');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `articulo_transactions`
--
CREATE TABLE `articulo_transactions` (
`id` bigint(20) UNSIGNED NOT NULL,
`cantidad` int(10) UNSIGNED DEFAULT NULL,
`precio_costo_unidad` decimal(11,2) DEFAULT NULL,
`articulo_id` bigint(20) UNSIGNED NOT NULL,
`transaction_id` bigint(20) UNSIGNED NOT NULL,
`observacion` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `articulo_transactions`
--
INSERT INTO `articulo_transactions` (`id`, `cantidad`, `precio_costo_unidad`, `articulo_id`, `transaction_id`, `observacion`, `created_at`, `updated_at`) VALUES
(1, 10, '1.00', 1, 1, NULL, '2020-10-12 23:37:43', '2020-10-12 23:37:43'),
(2, 10, '1.43', 5, 2, 'hola', '2020-10-12 23:41:19', '2020-10-12 23:41:19'),
(3, 1, '0.90', 10, 3, 'Regalada', '2020-10-13 01:13:02', '2020-10-13 01:13:02'),
(4, 10, '1.00', 1, 3, 'Prestados', '2020-10-13 01:13:02', '2020-10-13 01:13:02'),
(5, 1, '14.86', 11, 4, 'prestados', '2020-10-13 01:22:13', '2020-10-13 01:22:13'),
(6, 10, '0.84', 7, 5, NULL, '2020-10-13 01:27:33', '2020-10-13 01:27:33'),
(7, 20, '1.61', 3, 5, 'Prestados por Bladimir', '2020-10-13 01:27:33', '2020-10-13 01:27:33'),
(10, 10, '1.61', 3, 8, NULL, '2020-10-13 02:48:29', '2020-10-13 02:48:29'),
(11, 10, '1.61', 3, 9, NULL, '2020-10-13 02:50:51', '2020-10-13 02:50:51'),
(12, 10, '1.62', 3, 10, NULL, '2020-10-13 02:52:16', '2020-10-13 02:52:16'),
(13, 10, '1.62', 3, 11, 'dañado', '2020-10-13 03:02:40', '2020-10-13 03:02:40'),
(14, 1, '1.62', 3, 12, 'vencido', '2020-10-13 03:09:14', '2020-10-13 03:09:14'),
(15, 1, '1.62', 3, 13, 'Para Bladimir', '2020-10-13 03:10:59', '2020-10-13 03:10:59'),
(16, 10, '1.62', 3, 14, NULL, '2020-10-13 03:17:50', '2020-10-13 03:17:50'),
(17, 1, '1.62', 3, 15, NULL, '2020-10-13 03:19:14', '2020-10-13 03:19:14'),
(18, 1, '1.62', 3, 16, NULL, '2020-10-13 03:23:04', '2020-10-13 03:23:04'),
(19, 1, '1.62', 3, 17, NULL, '2020-10-13 03:24:21', '2020-10-13 03:24:21'),
(20, 1, '1.62', 3, 18, NULL, '2020-10-13 03:30:14', '2020-10-13 03:30:14');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `articulo_ventas`
--
CREATE TABLE `articulo_ventas` (
`id` bigint(20) UNSIGNED NOT NULL,
`cantidad` int(10) UNSIGNED DEFAULT NULL,
`precio_costo_unidad` decimal(11,9) DEFAULT NULL,
`precio_venta_unidad` decimal(11,9) DEFAULT NULL,
`porEspecial` decimal(11,2) DEFAULT NULL,
`isDolar` int(10) UNSIGNED DEFAULT NULL,
`isPeso` int(10) UNSIGNED DEFAULT NULL,
`isTransPunto` int(10) UNSIGNED DEFAULT NULL,
`isMixto` int(10) UNSIGNED DEFAULT NULL,
`isEfectivo` int(10) UNSIGNED DEFAULT NULL,
`descuento` decimal(11,2) DEFAULT NULL,
`articulo_id` bigint(20) UNSIGNED NOT NULL,
`venta_id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `articulo_ventas`
--
INSERT INTO `articulo_ventas` (`id`, `cantidad`, `precio_costo_unidad`, `precio_venta_unidad`, `porEspecial`, `isDolar`, `isPeso`, `isTransPunto`, `isMixto`, `isEfectivo`, `descuento`, `articulo_id`, `venta_id`, `created_at`, `updated_at`) VALUES
(1, 1, '1.000000000', '1.100000000', '2.00', NULL, 1, NULL, NULL, NULL, '0.00', 1, 1, '2020-10-06 10:41:11', '2020-10-06 10:41:11'),
(2, 1, '0.840000000', '0.920000000', NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 7, 1, '2020-10-06 10:41:11', '2020-10-06 10:41:11'),
(3, 1, '1.610000000', '1.770000000', NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 3, 2, '2020-10-06 10:42:02', '2020-10-06 10:42:02'),
(4, 1, '0.180000000', '0.200000000', '4.00', NULL, NULL, NULL, NULL, 1, '0.00', 4, 2, '2020-10-06 10:42:02', '2020-10-06 10:42:02'),
(5, 1, '1.000000000', '1.020000000', '2.00', NULL, 1, NULL, NULL, NULL, '0.00', 1, 2, '2020-10-06 10:42:02', '2020-10-06 10:42:02'),
(6, 1, '0.300000000', '0.330000000', NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 6, 2, '2020-10-06 10:42:02', '2020-10-06 10:42:02'),
(7, 1, '1.000000000', '1.000000000', '2.00', NULL, 1, NULL, NULL, NULL, '0.00', 1, 3, '2020-10-06 12:21:55', '2020-10-06 12:21:55'),
(8, 1, '1.610000000', '1.610000000', NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 3, 3, '2020-10-06 12:21:55', '2020-10-06 12:21:55'),
(9, 1, '0.180000000', '0.190000000', '4.00', NULL, NULL, NULL, NULL, 1, '0.00', 4, 3, '2020-10-06 12:21:55', '2020-10-06 12:21:55'),
(10, 1, '0.710000000', '0.710000000', NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 17, 3, '2020-10-06 12:21:55', '2020-10-06 12:21:55'),
(11, 1, '1.000000000', '1.000000000', '2.00', NULL, 1, NULL, NULL, NULL, '0.00', 1, 4, '2020-10-09 00:04:51', '2020-10-09 00:04:51'),
(12, 1, '0.180000000', '0.190000000', '4.00', NULL, NULL, NULL, NULL, 1, '0.00', 4, 4, '2020-10-09 00:04:51', '2020-10-09 00:04:51'),
(13, 1, '1.610000000', '1.610000000', NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 3, 4, '2020-10-09 00:04:51', '2020-10-09 00:04:51'),
(14, 1, '1.000000000', '1.020000000', '2.00', NULL, 1, NULL, NULL, NULL, '0.00', 1, 5, '2020-10-10 19:39:39', '2020-10-10 19:39:39'),
(15, 1, '0.180000000', '0.200000000', '4.00', NULL, NULL, NULL, NULL, 1, '0.00', 4, 5, '2020-10-10 19:39:39', '2020-10-10 19:39:39'),
(16, 1, '1.610000000', '1.770000000', NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 3, 5, '2020-10-10 19:39:39', '2020-10-10 19:39:39'),
(17, 1, '1.000000000', '1.000000000', '2.00', NULL, 1, NULL, NULL, NULL, '0.00', 1, 6, '2020-10-10 19:40:17', '2020-10-10 19:40:17'),
(18, 1, '0.180000000', '0.190000000', '4.00', NULL, NULL, NULL, NULL, 1, '0.00', 4, 6, '2020-10-10 19:40:18', '2020-10-10 19:40:18'),
(19, 1, '1.610000000', '1.610000000', NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 3, 6, '2020-10-10 19:40:18', '2020-10-10 19:40:18'),
(20, 1, '1.000000000', '1.020000000', '2.00', NULL, 1, NULL, NULL, NULL, '0.00', 1, 7, '2020-10-17 14:41:26', '2020-10-17 14:41:26'),
(21, 1, '0.180000000', '0.198000000', '4.00', NULL, NULL, NULL, NULL, 1, '0.00', 4, 7, '2020-10-17 14:41:26', '2020-10-17 14:41:26'),
(22, 1500, '0.001777778', '0.001955556', NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 183, 7, '2020-10-17 14:41:26', '2020-10-17 14:41:26'),
(23, 2, '0.710000000', '0.781000000', NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 17, 7, '2020-10-17 14:41:26', '2020-10-17 14:41:26');
--
-- Disparadores `articulo_ventas`
--
DELIMITER $$
CREATE TRIGGER `tr_updStockVenta` AFTER INSERT ON `articulo_ventas` FOR EACH ROW BEGIN
UPDATE articulos SET stock = stock - NEW.cantidad
WHERE articulos.id = NEW.articulo_id;
END
$$
DELIMITER ;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `articulo__ingresos`
--
CREATE TABLE `articulo__ingresos` (
`id` bigint(20) UNSIGNED NOT NULL,
`cantidad` int(10) UNSIGNED DEFAULT NULL,
`precio_costo_unidad` decimal(11,2) DEFAULT NULL,
`ingreso_id` bigint(20) UNSIGNED NOT NULL,
`articulo_id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `articulo__ingresos`
--
INSERT INTO `articulo__ingresos` (`id`, `cantidad`, `precio_costo_unidad`, `ingreso_id`, `articulo_id`, `created_at`, `updated_at`) VALUES
(1, 33, '1.19', 1, 1, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(2, 1, '15.50', 1, 2, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(3, 24, '1.71', 1, 3, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(4, 774, '0.18', 1, 4, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(5, 5, '1.43', 1, 5, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(6, 197, '0.30', 1, 6, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(7, 17, '0.84', 1, 7, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(8, 21, '0.36', 1, 8, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(9, 1, '8.57', 1, 9, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(10, 51, '0.90', 1, 10, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(11, 2, '14.86', 1, 11, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(12, 6, '0.98', 1, 12, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(13, 24, '1.80', 1, 14, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(14, 6, '12.29', 1, 15, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(15, 8, '1.29', 1, 16, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(16, 12, '0.63', 1, 17, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(17, 117, '0.72', 1, 18, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(18, 9, '1.29', 1, 19, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(19, 4, '0.38', 1, 20, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(20, 137, '0.64', 1, 21, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(21, 1, '18.38', 1, 22, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(22, 36, '0.05', 1, 24, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(23, 24, '1.01', 1, 25, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(24, 24, '1.21', 1, 26, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(25, 10, '1.18', 1, 27, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(26, 14, '3.00', 1, 28, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(27, 5, '1.08', 1, 29, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(28, 6, '1.19', 1, 30, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(29, 229, '0.24', 1, 31, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(30, 10, '2.76', 1, 32, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(31, 69, '2.82', 1, 33, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(32, 82, '0.07', 1, 34, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(33, 12, '1.05', 1, 35, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(34, 47, '0.41', 1, 37, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(35, 1, '19.00', 1, 38, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(36, 4, '0.29', 1, 39, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(37, 54, '0.60', 1, 40, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(38, 2, '0.77', 1, 42, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(39, 22, '0.75', 1, 43, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(40, 251, '0.57', 1, 43, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(41, 19, '3.24', 1, 45, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(42, 67, '0.12', 2, 46, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(43, 148, '0.75', 2, 47, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(44, 20, '0.20', 2, 48, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(45, 95, '0.30', 2, 49, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(46, 1, '14.29', 2, 50, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(47, 8, '12.00', 2, 51, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(48, 11, '1.53', 2, 52, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(49, 6, '1.32', 2, 53, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(50, 40, '0.27', 2, 54, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(51, 38, '0.23', 2, 55, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(52, 30, '0.90', 2, 56, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(53, 95, '0.34', 2, 57, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(54, 14, '0.17', 2, 58, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(55, 21, '2.86', 2, 59, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(56, 27, '0.82', 2, 60, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(57, 17, '5.43', 2, 61, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(58, 11, '0.20', 2, 64, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(59, 65, '2.32', 2, 63, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(60, 5, '0.82', 2, 65, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(61, 58, '0.20', 2, 67, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(62, 19, '2.31', 2, 66, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(63, 1, '0.66', 2, 69, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(64, 7, '1.54', 2, 70, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(65, 10, '0.87', 2, 71, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(66, 7, '8.29', 2, 72, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(67, 6, '0.71', 2, 73, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(68, 8, '13.60', 2, 74, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(69, 58, '0.91', 2, 75, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(70, 22, '0.33', 2, 76, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(71, 45, '1.03', 2, 77, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(72, 77, '0.72', 2, 78, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(73, 15, '3.43', 2, 79, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(74, 36, '0.68', 2, 80, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(75, 124, '0.30', 2, 81, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(76, 4, '20.29', 2, 82, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(77, 10, '0.44', 2, 83, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(78, 4, '15.14', 2, 84, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(79, 56, '0.38', 2, 85, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(80, 15, '0.31', 2, 86, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(81, 4, '7.14', 2, 87, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(82, 19, '0.26', 2, 88, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(83, 7, '6.29', 2, 89, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(84, 6, '1.10', 2, 90, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(85, 4, '20.86', 2, 91, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(86, 104, '0.59', 2, 92, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(87, 40, '0.31', 2, 93, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(88, 2, '7.14', 2, 94, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(89, 27, '0.80', 2, 95, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(90, 5, '2.29', 2, 96, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(91, 12, '4.50', 2, 97, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(92, 8, '2.66', 2, 99, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(93, 83, '0.38', 2, 100, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(94, 1, '14.29', 2, 101, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(95, 40, '0.90', 2, 102, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(96, 96, '0.01', 2, 103, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(97, 3, '1.29', 2, 105, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(98, 6, '0.80', 2, 106, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(99, 8, '0.40', 2, 107, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(100, 4, '26.00', 2, 108, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(101, 63, '1.67', 2, 109, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(102, 38, '0.74', 2, 110, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(103, 24, '1.41', 2, 111, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(104, 55, '0.80', 2, 112, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(105, 65, '1.67', 2, 113, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(106, 8, '1.20', 2, 114, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(107, 88, '0.58', 2, 115, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(108, 14, '1.05', 2, 116, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(109, 5, '2.58', 2, 117, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(110, 5, '1.79', 2, 118, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(111, 1, '0.31', 2, 119, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(112, 24, '3.49', 2, 120, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(113, 47, '0.75', 2, 121, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(114, 2, '0.22', 2, 122, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(115, 46, '0.21', 2, 123, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(116, 11, '0.34', 2, 124, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(117, 12, '0.85', 2, 125, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(118, 2, '0.20', 2, 126, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(119, 1, '4.64', 2, 127, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(120, 59, '0.98', 2, 128, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(121, 17, '0.97', 2, 129, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(122, 26, '0.96', 2, 130, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(123, 5, '11.00', 2, 131, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(124, 2, '37.00', 2, 133, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(125, 11, '8.17', 3, 135, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(126, 30, '0.40', 3, 136, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(127, 5, '1.49', 3, 138, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(128, 8, '0.81', 3, 139, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(129, 1, '8.29', 3, 141, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(130, 23, '0.21', 3, 142, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(131, 5, '5.00', 3, 143, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(132, 17, '0.94', 3, 145, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(133, 19, '0.58', 3, 144, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(134, 31, '0.74', 3, 146, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(135, 44, '0.32', 3, 147, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(136, 5, '1.65', 3, 149, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(137, 4, '1.74', 3, 150, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(138, 5, '4.50', 3, 151, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(139, 21, '0.25', 3, 152, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(140, 58, '0.27', 3, 153, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(141, 160, '1.74', 3, 156, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(142, 26, '1.00', 3, 157, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(143, 13, '1.60', 3, 159, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(144, 22, '1.26', 3, 161, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(145, 14, '0.66', 3, 160, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(146, 2, '70.00', 3, 164, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(147, 63, '1.67', 3, 163, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(148, 4, '2.10', 3, 166, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(149, 2, '0.19', 4, 165, '2020-09-22 00:32:44', '2020-09-22 00:32:44'),
(150, 155, '0.37', 5, 154, '2020-09-22 00:42:27', '2020-09-22 00:42:27'),
(151, 257, '0.57', 6, 44, '2020-09-22 21:38:56', '2020-09-22 21:38:56'),
(152, 12, '0.68', 7, 169, '2020-09-23 00:57:04', '2020-09-23 00:57:04'),
(153, 12, '0.55', 8, 174, '2020-09-23 01:02:33', '2020-09-23 01:02:33'),
(154, 5, '0.67', 8, 175, '2020-09-23 01:02:33', '2020-09-23 01:02:33'),
(155, 12, '0.79', 8, 169, '2020-09-23 01:02:33', '2020-09-23 01:02:33'),
(156, 12, '1.37', 9, 168, '2020-09-23 01:06:24', '2020-09-23 01:06:24'),
(157, 12, '0.55', 9, 173, '2020-09-23 01:06:24', '2020-09-23 01:06:24'),
(158, 6, '1.04', 10, 170, '2020-09-23 01:09:24', '2020-09-23 01:09:24'),
(159, 6, '0.62', 10, 171, '2020-09-23 01:09:24', '2020-09-23 01:09:24'),
(160, 96, '0.71', 11, 176, '2020-09-23 01:12:27', '2020-09-23 01:12:27'),
(161, 24, '0.20', 12, 126, '2020-09-23 21:01:38', '2020-09-23 21:01:38'),
(162, 3, '4.89', 12, 127, '2020-09-23 21:01:38', '2020-09-23 21:01:38'),
(163, 8, '0.98', 12, 177, '2020-09-23 21:01:38', '2020-09-23 21:01:38'),
(164, 1, '7.43', 12, 178, '2020-09-23 21:01:38', '2020-09-23 21:01:38'),
(165, 16, '0.98', 12, 140, '2020-09-23 21:01:38', '2020-09-23 21:01:38'),
(166, 1, '7.81', 12, 141, '2020-09-23 21:01:38', '2020-09-23 21:01:38'),
(167, 10, '8.32', 12, 72, '2020-09-23 21:01:38', '2020-09-23 21:01:38'),
(168, 96, '0.49', 13, 147, '2020-09-23 21:04:57', '2020-09-23 21:04:57'),
(169, 1, '11.25', 13, 148, '2020-09-23 21:04:57', '2020-09-23 21:04:57'),
(170, 24, '0.69', 13, 17, '2020-09-23 21:04:57', '2020-09-23 21:04:57'),
(171, 24, '0.58', 13, 144, '2020-09-23 21:04:57', '2020-09-23 21:04:57'),
(172, 7, '13.52', 14, 74, '2020-09-23 21:07:43', '2020-09-23 21:07:43'),
(173, 17, '0.82', 15, 65, '2020-09-23 21:09:46', '2020-09-23 21:09:46'),
(174, 169, '0.26', 16, 31, '2020-09-23 23:01:15', '2020-09-23 23:01:15'),
(175, 2, '0.33', 16, 49, '2020-09-23 23:01:15', '2020-09-23 23:01:15'),
(176, 14, '0.30', 16, 54, '2020-09-23 23:01:15', '2020-09-23 23:01:15'),
(177, 1, '2.57', 16, 66, '2020-09-23 23:01:15', '2020-09-23 23:01:15'),
(178, 64, '1.02', 16, 77, '2020-09-23 23:01:15', '2020-09-23 23:01:15'),
(179, 3, '0.88', 16, 95, '2020-09-23 23:01:15', '2020-09-23 23:01:15'),
(180, 1, '0.88', 16, 106, '2020-09-23 23:01:15', '2020-09-23 23:01:15'),
(181, 12, '1.53', 16, 111, '2020-09-23 23:01:15', '2020-09-23 23:01:15'),
(182, 100, '0.34', 17, 122, '2020-09-25 00:39:39', '2020-09-25 00:39:39'),
(183, 24, '0.71', 18, 17, '2020-09-25 00:41:22', '2020-09-25 00:41:22'),
(184, 3, '12.73', 19, 148, '2020-09-25 00:44:45', '2020-09-25 00:44:45'),
(185, 24, '1.00', 20, 77, '2020-09-25 01:26:43', '2020-09-25 01:26:43'),
(186, 1, '1.61', 21, 3, '2020-09-29 03:39:13', '2020-09-29 03:39:13'),
(187, 1, '1.00', 22, 1, '2020-09-30 17:31:53', '2020-09-30 17:31:53'),
(188, 25, '1.00', 23, 1, '2020-10-08 13:07:01', '2020-10-08 13:07:01'),
(189, 10, '1.78', 24, 183, '2020-10-14 05:38:12', '2020-10-14 05:38:12');
--
-- Disparadores `articulo__ingresos`
--
DELIMITER $$
CREATE TRIGGER `tr_udpPrecioVentaIngreso` AFTER INSERT ON `articulo__ingresos` FOR EACH ROW BEGIN
UPDATE articulos SET precio_costo = New.precio_costo_unidad
WHERE articulos.id = NEW.articulo_id;
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `tr_udpStockIngreso` AFTER INSERT ON `articulo__ingresos` FOR EACH ROW BEGIN
UPDATE articulos SET stock = stock + NEW.cantidad
WHERE articulos.id = NEW.articulo_id;
END
$$
DELIMITER ;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `cajas`
--
CREATE TABLE `cajas` (
`id` bigint(20) UNSIGNED NOT NULL,
`codigo` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`fecha` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`hora_cierre` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`hora` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`mes` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`year` year(4) NOT NULL,
`monto_dolar` decimal(11,2) DEFAULT NULL,
`monto_peso` decimal(11,2) DEFAULT NULL,
`monto_bolivar` decimal(11,2) DEFAULT NULL,
`monto_dolar_cierre` decimal(11,2) DEFAULT NULL,
`monto_peso_cierre` decimal(11,2) DEFAULT NULL,
`monto_bolivar_cierre` decimal(11,2) DEFAULT NULL,
`estado` enum('Abierta','Cerrada','Auditoria') COLLATE utf8mb4_unicode_ci NOT NULL,
`caja` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`tasaActualVenta` decimal(11,2) DEFAULT NULL,
`margenActualVenta` decimal(11,2) DEFAULT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`sucursal_id` bigint(20) UNSIGNED NOT NULL,
`sessioncaja_id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `cajas`
--
INSERT INTO `cajas` (`id`, `codigo`, `fecha`, `hora_cierre`, `hora`, `mes`, `year`, `monto_dolar`, `monto_peso`, `monto_bolivar`, `monto_dolar_cierre`, `monto_peso_cierre`, `monto_bolivar_cierre`, `estado`, `caja`, `tasaActualVenta`, `margenActualVenta`, `user_id`, `sucursal_id`, `sessioncaja_id`, `created_at`, `updated_at`) VALUES
(1, 'CA400000001', '2020-10-06 00:00:00', 'Sin cerrrar', '06:40:30 AM', '10', 2020, '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', 'Abierta', 'Caja 1', '450000.00', '25.00', 4, 1, 1, '2020-10-06 10:40:30', '2020-10-06 10:40:30');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `categorias`
--
CREATE TABLE `categorias` (
`id` bigint(20) UNSIGNED NOT NULL,
`nombre` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`descripcion` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`condicion` enum('Activa','Inactiva','Eliminada') 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;
--
-- Volcado de datos para la tabla `categorias`
--
INSERT INTO `categorias` (`id`, `nombre`, `descripcion`, `condicion`, `created_at`, `updated_at`) VALUES
(1, 'VIVERES', 'VIVERES', 'Activa', '2020-09-21 04:39:26', '2020-09-21 04:39:26'),
(2, 'CONFITERIA', 'CONFITERIA', 'Activa', '2020-09-21 04:39:41', '2020-09-21 04:39:41'),
(3, 'PRODUCTOS DE LIMPIEZA', 'PRODUCTOS DE LIMPIEZA', 'Activa', '2020-09-21 04:39:57', '2020-09-21 04:39:57'),
(4, 'REPOSTERIA', 'REPOSTERIA', 'Activa', '2020-09-21 04:40:11', '2020-09-21 04:40:11'),
(5, 'FARMACIA', 'FARMACIA', 'Activa', '2020-09-21 04:44:00', '2020-09-21 04:44:00'),
(6, 'PERFUMERIA', 'PERFUMERIA', 'Activa', '2020-09-21 04:44:27', '2020-09-21 04:44:27'),
(7, 'PRODUCTOS COLOMBIANOS', 'PRODUCTOS COLOMBIANOS', 'Activa', '2020-09-21 04:45:22', '2020-09-21 04:45:22'),
(8, 'BEBIDAS', 'BEBIDAS', 'Activa', '2020-09-21 04:45:34', '2020-09-21 04:45:34'),
(9, 'CHARCUTERIA Y LACTEOS', 'CHARCUTERIA Y LACTEOS', 'Activa', '2020-09-21 04:45:49', '2020-09-21 04:45:49'),
(10, 'ELECTRODOMESTICOS', 'ELECTRODOMESTICOS', 'Activa', '2020-09-21 04:46:22', '2020-09-21 04:46:22'),
(11, 'MASCOTAS', 'MASCOTAS', 'Activa', '2020-09-21 04:46:50', '2020-09-21 04:46:50'),
(12, 'ARTICULOS DEL HOGAR', 'ARTICULOS DEL HOGAR', 'Activa', '2020-09-21 05:29:01', '2020-09-21 05:29:01');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `contabilidads`
--
CREATE TABLE `contabilidads` (
`id` bigint(20) UNSIGNED NOT NULL,
`denominacion` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`valor` decimal(11,2) NOT NULL,
`cantidad` int(10) UNSIGNED DEFAULT NULL,
`subtotal` decimal(11,2) DEFAULT NULL,
`tipo` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`modo` enum('Apertura','Cierre') COLLATE utf8mb4_unicode_ci NOT NULL,
`caja_id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `denominacions`
--
CREATE TABLE `denominacions` (
`id` bigint(20) UNSIGNED NOT NULL,
`moneda` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`tipo` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`valor` decimal(11,2) NOT NULL,
`denominacion` varchar(100) 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;
--
-- Volcado de datos para la tabla `denominacions`
--
INSERT INTO `denominacions` (`id`, `moneda`, `tipo`, `valor`, `denominacion`, `created_at`, `updated_at`) VALUES
(1, 'Dolar', 'Billete', '1.00', 'Billete de 1 Dolar', '2020-10-05 17:37:29', '2020-10-05 17:37:29'),
(2, 'Dolar', 'Billete', '2.00', 'Billete de 2 Dolares', '2020-10-05 17:37:29', '2020-10-05 17:37:29'),
(3, 'Dolar', 'Billete', '5.00', 'Billete de 5 Dolares', '2020-10-05 17:37:29', '2020-10-05 17:37:29'),
(4, 'Dolar', 'Billete', '10.00', 'Billete de 10 Dolares', '2020-10-05 17:37:29', '2020-10-05 17:37:29'),
(5, 'Dolar', 'Billete', '20.00', 'Billete de 20 Dolares', '2020-10-05 17:37:30', '2020-10-05 17:37:30'),
(6, 'Dolar', 'Billete', '50.00', 'Billete de 50 Dolares', '2020-10-05 17:37:30', '2020-10-05 17:37:30'),
(7, 'Dolar', 'Billete', '100.00', 'Billete de 100 Dolares', '2020-10-05 17:37:30', '2020-10-05 17:37:30'),
(8, 'Bolivares', 'Billete', '500.00', 'Billete de 500 Bolivares', '2020-10-05 17:37:30', '2020-10-05 17:37:30'),
(9, 'Bolivares', 'Billete', '10000.00', 'Billete de 10.000 Bolivares', '2020-10-05 17:37:30', '2020-10-05 17:37:30'),
(10, 'Bolivares', 'Billete', '20000.00', 'Billete de 20.000 Bolivares', '2020-10-05 17:37:30', '2020-10-05 17:37:30'),
(11, 'Bolivares', 'Billete', '50000.00', 'Billete de 50.000 Bolivares', '2020-10-05 17:37:30', '2020-10-05 17:37:30'),
(12, 'Bolivares', 'Billete', '100000.00', 'Billete de 100.000 Bolivares', '2020-10-05 17:37:30', '2020-10-05 17:37:30'),
(13, 'Pesos', 'Moneda', '50.00', 'Moneda de 50 Pesos', '2020-10-05 17:37:30', '2020-10-05 17:37:30'),
(14, 'Pesos', 'Moneda', '100.00', 'Moneda de 100 Pesos', '2020-10-05 17:37:30', '2020-10-05 17:37:30'),
(15, 'Pesos', 'Moneda', '200.00', 'Moneda de 200 Pesos', '2020-10-05 17:37:30', '2020-10-05 17:37:30'),
(16, 'Pesos', 'Moneda', '500.00', 'Moneda de 500 Pesos', '2020-10-05 17:37:30', '2020-10-05 17:37:30'),
(17, 'Pesos', 'Moneda', '1000.00', 'Moneda de 1.000 Pesos', '2020-10-05 17:37:30', '2020-10-05 17:37:30'),
(18, 'Pesos', 'Billete', '1000.00', 'Billete de 1.000 Pesos', '2020-10-05 17:37:30', '2020-10-05 17:37:30'),
(19, 'Pesos', 'Billete', '2000.00', 'Billete de 2.000 Pesos', '2020-10-05 17:37:30', '2020-10-05 17:37:30'),
(20, 'Pesos', 'Billete', '5000.00', 'Billete de 5.000 Pesos', '2020-10-05 17:37:30', '2020-10-05 17:37:30'),
(21, 'Pesos', 'Billete', '10000.00', 'Billete de 10.000 Pesos', '2020-10-05 17:37:31', '2020-10-05 17:37:31'),
(22, 'Pesos', 'Billete', '20000.00', 'Billete de 20.000 Pesos', '2020-10-05 17:37:31', '2020-10-05 17:37:31'),
(23, 'Pesos', 'Billete', '50000.00', 'Billete de 50.000 Pesos', '2020-10-05 17:37:31', '2020-10-05 17:37:31'),
(24, 'Pesos', 'Billete', '100000.00', 'Billete de 100.000 Pesos', '2020-10-05 17:37:31', '2020-10-05 17:37:31');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `empresas`
--
CREATE TABLE `empresas` (
`id` bigint(20) UNSIGNED NOT NULL,
`nombre` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`slogan` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`telefono_fijo` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`telefono_mobil` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`direccion` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL,
`imagen_logo` varchar(50) 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;
--
-- Volcado de datos para la tabla `empresas`
--
INSERT INTO `empresas` (`id`, `nombre`, `slogan`, `telefono_fijo`, `telefono_mobil`, `email`, `direccion`, `imagen_logo`, `created_at`, `updated_at`) VALUES
(1, 'Villa Soft Punto', 'La mejor en precios bajos...!', '0424-7665227', '0424-7665227', '<EMAIL>', 'EL Vigía.', 'photo2.png', '2020-10-05 17:37:28', '2020-10-05 17:37:28');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint(20) UNSIGNED NOT NULL,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `ingresos`
--
CREATE TABLE `ingresos` (
`id` bigint(20) UNSIGNED NOT NULL,
`tipo_comprobante` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`serie_comprobante` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`num_comprobante` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`precio_compra` decimal(11,2) DEFAULT NULL,
`fecha_hora` datetime NOT NULL,
`estado` enum('Aceptado','Cancelado','Procesando') COLLATE utf8mb4_unicode_ci NOT NULL,
`persona_id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `ingresos`
--
INSERT INTO `ingresos` (`id`, `tipo_comprobante`, `serie_comprobante`, `num_comprobante`, `precio_compra`, `fecha_hora`, `estado`, `persona_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 'Factura', '12345', '12345', '1462.94', '2020-09-21 14:52:17', 'Aceptado', 1, 3, '2020-09-21 22:52:17', '2020-09-21 22:52:17'),
(2, 'Oreden', '123456', '123456', '2749.32', '2020-09-21 15:43:48', 'Aceptado', 1, 3, '2020-09-21 23:43:48', '2020-09-21 23:43:48'),
(3, 'Oreden', '123456', '123456', '892.33', '2020-09-21 16:09:43', 'Aceptado', 1, 3, '2020-09-22 00:09:43', '2020-09-22 00:09:43'),
(4, 'Oreden', '123457', '123457', '0.38', '2020-09-21 16:32:44', 'Aceptado', 1, 3, '2020-09-22 00:32:44', '2020-09-22 00:32:44'),
(5, 'Oreden', '123458', '123458', '57.35', '2020-09-21 16:42:27', 'Aceptado', 1, 3, '2020-09-22 00:42:27', '2020-09-22 00:42:27'),
(6, 'Oreden', '123459', '123459', '146.49', '2020-09-22 13:38:56', 'Aceptado', 1, 3, '2020-09-22 21:38:56', '2020-09-22 21:38:56'),
(7, 'Factura', '01601874', '10426883', '8.16', '2020-09-22 16:57:04', 'Cancelado', 14, 5, '2020-09-23 00:57:04', '2020-09-23 01:02:54'),
(8, 'Factura', '01601874', '10426883', '19.43', '2020-09-22 17:02:33', 'Aceptado', 14, 5, '2020-09-23 01:02:33', '2020-09-23 01:02:33'),
(9, 'Factura', '01601875', '10426884', '23.04', '2020-09-22 17:06:24', 'Aceptado', 14, 5, '2020-09-23 01:06:24', '2020-09-23 01:06:24'),
(10, 'Factura', '01601876', '10426885', '9.96', '2020-09-22 17:09:24', 'Aceptado', 14, 5, '2020-09-23 01:09:24', '2020-09-23 01:09:24'),
(11, 'Factura', '1111245', '11112458', '68.16', '2020-09-22 17:12:27', 'Aceptado', 1, 5, '2020-09-23 01:12:27', '2020-09-23 01:12:27'),
(12, 'Orden', '123456', '123456', '141.43', '2020-09-23 13:01:38', 'Aceptado', 11, 1, '2020-09-23 21:01:38', '2020-09-23 21:01:38'),
(13, 'Orden', '8826', '8826', '88.77', '2020-09-23 13:04:57', 'Aceptado', 7, 1, '2020-09-23 21:04:57', '2020-09-23 21:04:57'),
(14, 'Factura', '22772', '22772', '94.64', '2020-09-23 13:07:43', 'Aceptado', 13, 1, '2020-09-23 21:07:43', '2020-09-23 21:07:43'),
(15, 'Factura', '67635', '67635', '13.94', '2020-09-23 13:09:46', 'Aceptado', 7, 1, '2020-09-23 21:09:46', '2020-09-23 21:09:46'),
(16, 'Orden', '1234567', '1234567', '138.53', '2020-09-23 15:01:15', 'Aceptado', 1, 1, '2020-09-23 23:01:15', '2020-09-23 23:01:15'),
(17, 'Orden', 'E00004839', 'E00004839', '34.00', '2020-09-24 16:39:39', 'Aceptado', 6, 3, '2020-09-25 00:39:39', '2020-09-25 00:39:39'),
(18, 'Orden', '8975', '8975', '17.04', '2020-09-24 16:41:22', 'Aceptado', 7, 3, '2020-09-25 00:41:22', '2020-09-25 00:41:22'),
(19, 'Orden', '8975', '8975', '38.19', '2020-09-24 16:44:45', 'Aceptado', 7, 3, '2020-09-25 00:44:45', '2020-09-25 00:44:45'),
(20, 'Orden', '240912', '240912', '24.00', '2020-09-24 17:26:43', 'Aceptado', 7, 3, '2020-09-25 01:26:43', '2020-09-25 01:26:43'),
(21, 'Orden', '454545', '4454547', '1.61', '2020-09-28 19:39:13', 'Cancelado', 1, 1, '2020-09-29 03:39:13', '2020-09-29 03:41:04'),
(22, 'Orden', '12', '12', '1.00', '2020-09-30 09:31:53', 'Cancelado', 1, 1, '2020-09-30 17:31:53', '2020-09-30 17:32:41'),
(23, 'Orden', '1122', '1122', '25.00', '2020-10-08 09:07:01', 'Aceptado', 1, 1, '2020-10-08 13:07:01', '2020-10-08 13:07:01'),
(24, 'Orden', '45454', '454545', NULL, '2020-10-14 01:38:12', 'Aceptado', 1, 1, '2020-10-14 05:38:12', '2020-10-14 05:38:12');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `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, '2019_08_19_000000_create_failed_jobs_table', 1),
(4, '2020_08_16_153023_create_roles_table', 1),
(5, '2020_08_16_154812_create_role_user_table', 1),
(6, '2020_08_16_171515_create_permissions_table', 1),
(7, '2020_08_16_171828_create_permission_role_table', 1),
(8, '2020_08_25_145341_create_empresas_table', 1),
(9, '2020_08_25_145731_create_sucursals_table', 1),
(10, '2020_08_25_150123_create_sessioncajas_table', 1),
(11, '2020_08_26_054257_create_tasas_table', 1),
(12, '2020_08_31_171133_create_cajas_table', 1),
(13, '2020_09_02_080224_create_denominacions_table', 1),
(14, '2020_09_02_090526_create_contabilidads_table', 1),
(15, '2020_09_03_222156_create_categorias_table', 1),
(16, '2020_09_03_223458_create_articulos_table', 1),
(17, '2020_09_04_015232_create_personas_table', 1),
(18, '2020_09_06_011857_create_ventas_table', 1),
(19, '2020_09_06_131628_create_articulo_ventas_table', 1),
(20, '2020_09_07_213202_create_pago__ventas_table', 1),
(21, '2020_09_08_081947_create_ingresos_table', 1),
(22, '2020_09_08_082134_create_articulo__ingresos_table', 1),
(23, '2020_09_08_182249_add_trigger_for_stock_entry', 1),
(24, '2020_09_08_184348_add_trigger_for_update_price_article_after_entry', 1),
(25, '2020_09_08_193942_add_trigger_for_stock_ingreso', 1),
(26, '2020_09_16_043501_create_transferencias_table', 1),
(27, '2020_09_29_095713_add_tasadolar_and_tasapeso_at_ventas', 2),
(28, '2020_10_02_060231_add_por_especial__to__articulos_table', 3),
(29, '2020_10_04_090220_add_por_especial__to_articulo_ventas_table', 4),
(30, '2020_10_05_095610_add_tasa_to_cajas_table', 5),
(31, '2020_10_05_171302_add_comprobar_divisa_to_articulo_ventas_table', 6),
(32, '2020_10_07_124222_add_totalcosto__to_ingresos_table', 7),
(36, '2020_10_10_080759_create_transactions_table', 8),
(37, '2020_10_10_080926_create_articulo_transactions_table', 8),
(39, '2020_10_14_075553_add_colummkilo_to_articulos_table', 9),
(40, '2020_10_17_094503_modificar_precio_costo__to_articulo_table', 10),
(41, '2020_10_17_101859_modificar_precio_costo__to_ventas_table', 11),
(42, '2020_10_17_102323_modificar_precio_costo__to_articulo_ventas_table', 12),
(46, '2020_10_17_102731_modificar_monto_divisa__to_pago__ventas_table', 13);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `pago__ventas`
--
CREATE TABLE `pago__ventas` (
`id` bigint(20) UNSIGNED NOT NULL,
`Divisa` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`MontoDivisa` decimal(11,4) DEFAULT NULL,
`TasaTiket` decimal(11,2) DEFAULT NULL,
`MontoDolar` decimal(11,2) DEFAULT NULL,
`Vueltos` decimal(11,2) DEFAULT NULL,
`venta_id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `pago__ventas`
--
INSERT INTO `pago__ventas` (`id`, `Divisa`, `MontoDivisa`, `TasaTiket`, `MontoDolar`, `Vueltos`, `venta_id`, `created_at`, `updated_at`) VALUES
(1, 'Dolar', '2.0200', '1.00', '2.02', '0.00', 1, '2020-10-06 10:41:11', '2020-10-06 10:41:11'),
(2, 'Peso', '11620.0000', '3500.00', '3.32', '0.00', 2, '2020-10-06 10:42:02', '2020-10-06 10:42:02'),
(3, 'Bolivar', '1579500.0000', '450000.00', '3.51', '0.00', 3, '2020-10-06 12:21:55', '2020-10-06 12:21:55'),
(4, 'Bolivar', '1260000.0000', '450000.00', '2.80', '0.00', 4, '2020-10-09 00:04:51', '2020-10-09 00:04:51'),
(5, 'Peso', '10465.0000', '3500.00', '2.99', '0.00', 5, '2020-10-10 19:39:39', '2020-10-10 19:39:39'),
(6, 'Bolivar', '1260000.0000', '450000.00', '2.80', '0.00', 6, '2020-10-10 19:40:18', '2020-10-10 19:40:18'),
(7, 'Peso', '19985.0000', '3500.00', '5.71', '0.00', 7, '2020-10-17 14:41:26', '2020-10-17 14:41:26');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `permissions`
--
CREATE TABLE `permissions` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `permissions`
--
INSERT INTO `permissions` (`id`, `name`, `slug`, `description`, `created_at`, `updated_at`) VALUES
(1, 'List role', 'role.index', 'A user can list role', '2020-10-05 17:37:18', '2020-10-05 17:37:18'),
(2, 'Show role', 'role.show', 'A user can see role', '2020-10-05 17:37:19', '2020-10-05 17:37:19'),
(3, 'Create role', 'role.create', 'A user can create role', '2020-10-05 17:37:19', '2020-10-05 17:37:19'),
(4, 'Edit role', 'role.edit', 'A user can edit role', '2020-10-05 17:37:19', '2020-10-05 17:37:19'),
(5, 'Destroy role', 'role.destroy', 'A user can destroy role', '2020-10-05 17:37:19', '2020-10-05 17:37:19'),
(6, 'List user', 'user.index', 'A user can list user', '2020-10-05 17:37:19', '2020-10-05 17:37:19'),
(7, 'Show user', 'user.show', 'A user can see user', '2020-10-05 17:37:19', '2020-10-05 17:37:19'),
(8, 'Edit user', 'user.edit', 'A user can edit user', '2020-10-05 17:37:19', '2020-10-05 17:37:19'),
(9, 'Destroy user', 'user.destroy', 'A user can destroy user', '2020-10-05 17:37:19', '2020-10-05 17:37:19'),
(10, 'List ventas', 'venta.index', 'A user can list ventas', '2020-10-05 17:37:19', '2020-10-05 17:37:19'),
(11, 'Show ventas', 'venta.show', 'A user can see ventas', '2020-10-05 17:37:19', '2020-10-05 17:37:19'),
(12, 'Create ventas', 'venta.create', 'A user can create ventas', '2020-10-05 17:37:19', '2020-10-05 17:37:19'),
(13, 'Edit ventas', 'venta.edit', 'A user can edit ventas', '2020-10-05 17:37:19', '2020-10-05 17:37:19'),
(14, 'Destroy ventas', 'venta.destroy', 'A user can destroy ventas', '2020-10-05 17:37:19', '2020-10-05 17:37:19'),
(15, 'List transferencias', 'transferencia.index', 'A user can list transferencias', '2020-10-05 17:37:19', '2020-10-05 17:37:19'),
(16, 'Show transferencias', 'transferencia.show', 'A user can see transferencias', '2020-10-05 17:37:19', '2020-10-05 17:37:19'),
(17, 'Create transferencias', 'transferencia.create', 'A user can create transferencias', '2020-10-05 17:37:19', '2020-10-05 17:37:19'),
(18, 'Edit transferencias', 'transferencia.edit', 'A user can edit transferencias', '2020-10-05 17:37:19', '2020-10-05 17:37:19'),
(19, 'Destroy transferencias', 'transferencia.destroy', 'A user can destroy transferencias', '2020-10-05 17:37:19', '2020-10-05 17:37:19'),
(20, 'List tasas', 'tasa.index', 'A user can list tasas', '2020-10-05 17:37:20', '2020-10-05 17:37:20'),
(21, 'Show tasas', 'tasa.show', 'A user can see tasas', '2020-10-05 17:37:20', '2020-10-05 17:37:20'),
(22, 'Create tasas', 'tasa.create', 'A user can create tasas', '2020-10-05 17:37:20', '2020-10-05 17:37:20'),
(23, 'Edit tasas', 'tasa.edit', 'A user can edit tasas', '2020-10-05 17:37:20', '2020-10-05 17:37:20'),
(24, 'Destroy tasas', 'tasa.destroy', 'A user can destroy tasas', '2020-10-05 17:37:20', '2020-10-05 17:37:20'),
(25, 'List reportes', 'reporte.index', 'A user can list reportes', '2020-10-05 17:37:20', '2020-10-05 17:37:20'),
(26, 'Show reportes', 'reporte.show', 'A user can see reportes', '2020-10-05 17:37:20', '2020-10-05 17:37:20'),
(27, 'Create reportes', 'reporte.create', 'A user can create reportes', '2020-10-05 17:37:20', '2020-10-05 17:37:20'),
(28, 'Edit reportes', 'reporte.edit', 'A user can edit reportes', '2020-10-05 17:37:20', '2020-10-05 17:37:20'),
(29, 'Destroy reportes', 'reporte.destroy', 'A user can destroy reportes', '2020-10-05 17:37:20', '2020-10-05 17:37:20'),
(30, 'List proveedores', 'proveedore.index', 'A user can list proveedores', '2020-10-05 17:37:20', '2020-10-05 17:37:20'),
(31, 'Show proveedores', 'proveedore.show', 'A user can see proveedores', '2020-10-05 17:37:21', '2020-10-05 17:37:21'),
(32, 'Create proveedores', 'proveedore.create', 'A user can create proveedores', '2020-10-05 17:37:21', '2020-10-05 17:37:21'),
(33, 'Edit proveedores', 'proveedore.edit', 'A user can edit proveedores', '2020-10-05 17:37:21', '2020-10-05 17:37:21'),
(34, 'Destroy proveedores', 'proveedore.destroy', 'A user can destroy proveedores', '2020-10-05 17:37:21', '2020-10-05 17:37:21'),
(35, 'List ingresos', 'ingreso.index', 'A user can list ingresos', '2020-10-05 17:37:21', '2020-10-05 17:37:21'),
(36, 'Show ingresos', 'ingreso.show', 'A user can see ingresos', '2020-10-05 17:37:21', '2020-10-05 17:37:21'),
(37, 'Create ingresos', 'ingreso.create', 'A user can create ingresos', '2020-10-05 17:37:22', '2020-10-05 17:37:22'),
(38, 'Edit ingresos', 'ingreso.edit', 'A user can edit ingresos', '2020-10-05 17:37:22', '2020-10-05 17:37:22'),
(39, 'Destroy ingresos', 'ingreso.destroy', 'A user can destroy ingresos', '2020-10-05 17:37:22', '2020-10-05 17:37:22'),
(40, 'List clientes', 'cliente.index', 'A user can list clientes', '2020-10-05 17:37:22', '2020-10-05 17:37:22'),
(41, 'Show clientes', 'cliente.show', 'A user can see clientes', '2020-10-05 17:37:22', '2020-10-05 17:37:22'),
(42, 'Create clientes', 'cliente.create', 'A user can create clientes', '2020-10-05 17:37:22', '2020-10-05 17:37:22'),
(43, 'Edit clientes', 'cliente.edit', 'A user can edit clientes', '2020-10-05 17:37:22', '2020-10-05 17:37:22'),
(44, 'Destroy clientes', 'cliente.destroy', 'A user can destroy clientes', '2020-10-05 17:37:22', '2020-10-05 17:37:22'),
(45, 'List categorias', 'categoria.index', 'A user can list categorias', '2020-10-05 17:37:22', '2020-10-05 17:37:22'),
(46, 'Show categorias', 'categoria.show', 'A user can see categorias', '2020-10-05 17:37:22', '2020-10-05 17:37:22'),
(47, 'Create categorias', 'categoria.create', 'A user can create categorias', '2020-10-05 17:37:22', '2020-10-05 17:37:22'),
(48, 'Edit categorias', 'categoria.edit', 'A user can edit categorias', '2020-10-05 17:37:22', '2020-10-05 17:37:22'),
(49, 'Destroy categorias', 'categoria.destroy', 'A user can destroy categorias', '2020-10-05 17:37:23', '2020-10-05 17:37:23'),
(50, 'List cajas', 'caja.index', 'A user can list cajas', '2020-10-05 17:37:23', '2020-10-05 17:37:23'),
(51, 'Show cajas', 'caja.show', 'A user can see cajas', '2020-10-05 17:37:23', '2020-10-05 17:37:23'),
(52, 'Create cajas', 'caja.create', 'A user can create cajas', '2020-10-05 17:37:23', '2020-10-05 17:37:23'),
(53, 'Edit cajas', 'caja.edit', 'A user can edit cajas', '2020-10-05 17:37:23', '2020-10-05 17:37:23'),
(54, 'Destroy cajas', 'caja.destroy', 'A user can destroy cajas', '2020-10-05 17:37:23', '2020-10-05 17:37:23'),
(55, 'List articulos', 'articulo.index', 'A user can list articulos', '2020-10-05 17:37:23', '2020-10-05 17:37:23'),
(56, 'Show articulos', 'articulo.show', 'A user can see articulos', '2020-10-05 17:37:23', '2020-10-05 17:37:23'),
(57, 'Create articulos', 'articulo.create', 'A user can create articulos', '2020-10-05 17:37:24', '2020-10-05 17:37:24'),
(58, 'Edit articulos', 'articulo.edit', 'A user can edit articulos', '2020-10-05 17:37:24', '2020-10-05 17:37:24'),
(59, 'Destroy articulos', 'articulo.destroy', 'A user can destroy articulos', '2020-10-05 17:37:24', '2020-10-05 17:37:24'),
(60, 'Show own user', 'userown.show', 'A user can see own user', '2020-10-05 17:37:24', '2020-10-05 17:37:24'),
(61, 'Edit own user', 'userown.edit', 'A user can edit own user', '2020-10-05 17:37:24', '2020-10-05 17:37:24'),
(62, 'Show own ventas', 'ventaown.show', 'A user can see own ventas', '2020-10-05 17:37:24', '2020-10-05 17:37:24'),
(63, 'Edit own ventas', 'ventaown.edit', 'A user can edit own ventas', '2020-10-05 17:37:24', '2020-10-05 17:37:24'),
(64, 'delete own ventas', 'ventaown.destroy', 'A user can delete own ventas', '2020-10-05 17:37:25', '2020-10-05 17:37:25'),
(65, 'Show own transferencias', 'transferenciaown.show', 'A user can see own transferencias', '2020-10-05 17:37:25', '2020-10-05 17:37:25'),
(66, 'Edit own transferencias', 'transferenciaown.edit', 'A user can edit own transferencias', '2020-10-05 17:37:25', '2020-10-05 17:37:25'),
(67, 'delete own transferencias', 'transferenciaown.destroy', 'A user can delete own transferencias', '2020-10-05 17:37:25', '2020-10-05 17:37:25'),
(68, 'Show own tasas', 'tasaown.show', 'A user can see own tasas', '2020-10-05 17:37:25', '2020-10-05 17:37:25'),
(69, 'Edit own tasas', 'tasaown.edit', 'A user can edit own tasas', '2020-10-05 17:37:25', '2020-10-05 17:37:25'),
(70, 'delete own tasas', 'tasaown.destroy', 'A user can delete own tasas', '2020-10-05 17:37:25', '2020-10-05 17:37:25'),
(71, 'Show own reportes', 'reporteown.show', 'A user can see own reportes', '2020-10-05 17:37:25', '2020-10-05 17:37:25'),
(72, 'Edit own reportes', 'reporteown.edit', 'A user can edit own reportes', '2020-10-05 17:37:25', '2020-10-05 17:37:25'),
(73, 'delete own reportes', 'reporteown.destroy', 'A user can delete own reportes', '2020-10-05 17:37:25', '2020-10-05 17:37:25'),
(74, 'Show own proveedores', 'proveedorown.show', 'A user can see own proveedores', '2020-10-05 17:37:26', '2020-10-05 17:37:26'),
(75, 'Edit own proveedores', 'proveedorown.edit', 'A user can edit own proveedores', '2020-10-05 17:37:26', '2020-10-05 17:37:26'),
(76, 'delete own proveedores', 'proveedorown.destroy', 'A user can delete own proveedores', '2020-10-05 17:37:26', '2020-10-05 17:37:26'),
(77, 'Show own ingresos', 'ingresoown.show', 'A user can see own ingresos', '2020-10-05 17:37:26', '2020-10-05 17:37:26'),
(78, 'Edit own ingresos', 'ingresoown.edit', 'A user can edit own ingresos', '2020-10-05 17:37:26', '2020-10-05 17:37:26'),
(79, 'delete own ingresos', 'ingresoown.destroy', 'A user can delete own ingresos', '2020-10-05 17:37:26', '2020-10-05 17:37:26'),
(80, 'Show own clientes', 'clienteown.show', 'A user can see own clientes', '2020-10-05 17:37:26', '2020-10-05 17:37:26'),
(81, 'Edit own clientes', 'clienteown.edit', 'A user can edit own clientes', '2020-10-05 17:37:26', '2020-10-05 17:37:26'),
(82, 'delete own clientes', 'clienteown.destroy', 'A user can delete own clientes', '2020-10-05 17:37:26', '2020-10-05 17:37:26'),
(83, 'Show own categorias', 'categoriaown.show', 'A user can see own categorias', '2020-10-05 17:37:26', '2020-10-05 17:37:26'),
(84, 'Edit own categorias', 'categoriaown.edit', 'A user can edit own categorias', '2020-10-05 17:37:26', '2020-10-05 17:37:26'),
(85, 'delete own categorias', 'categoriaown.destroy', 'A user can delete own categorias', '2020-10-05 17:37:27', '2020-10-05 17:37:27'),
(86, 'Show own cajas', 'cajaown.show', 'A user can see own cajas', '2020-10-05 17:37:27', '2020-10-05 17:37:27'),
(87, 'Edit own cajas', 'cajaown.edit', 'A user can edit own cajas', '2020-10-05 17:37:27', '2020-10-05 17:37:27'),
(88, 'delete own cajas', 'cajaown.destroy', 'A user can delete own cajas', '2020-10-05 17:37:27', '2020-10-05 17:37:27'),
(89, 'Show own articulos', 'articuloown.show', 'A user can see own articulos', '2020-10-05 17:37:27', '2020-10-05 17:37:27'),
(90, 'Edit own articulos', 'articuloown.edit', 'A user can edit own articulos', '2020-10-05 17:37:27', '2020-10-05 17:37:27'),
(91, 'delete own articulos', 'articuloown.destroy', 'A user can delete own articulos', '2020-10-05 17:37:27', '2020-10-05 17:37:27'),
(92, 'Boton Venta', 'boton.venta', 'A see menu venta', '2020-09-23 15:49:03', '2020-09-23 15:49:03'),
(93, 'Boton compras', 'boton.compras', 'A see menu compras', '2020-09-23 15:49:42', '2020-09-23 15:49:42'),
(94, 'Boton almacen', 'boton.almacen', 'A see menu almacen', '2020-09-23 15:54:39', '2020-09-23 15:54:39'),
(95, 'Boton reportes', 'boton.reportes', 'A see menu reportes', '2020-09-23 15:56:08', '2020-09-23 15:56:08'),
(96, 'Boton sistema', 'boton.sistema', 'A see menu sistema', '2020-09-23 15:56:32', '2020-09-23 15:56:32'),
(97, 'Caja costo', 'cajacosto.show', 'A see caja costo', '2020-09-24 17:05:45', '2020-09-24 17:05:45'),
(98, 'Ver Datos Ventas', 'cajadatosventas.show', 'A user see report caja Datos Ventas', '2020-09-30 17:57:21', '2020-09-30 17:57:21'),
(99, 'Ver Datos Articulos', 'cajadatosarticulos.show', 'A user see report caja Datos Articulos', '2020-09-30 17:59:49', '2020-09-30 17:59:49'),
(100, 'Ver Total de las ventas', 'cajatotalventa.show', 'A user see report caja Total Venta', '2020-09-30 18:42:04', '2020-09-30 18:42:04'),
(101, 'Ver Precio costo', 'cajapreciocosto.show', 'A user see report caja Precio Costo', '2020-09-30 18:52:38', '2020-09-30 18:52:38'),
(102, 'Ver Utilidad', 'cajautilidad.show', 'A user see report caja Utilidad', '2020-09-30 18:52:38', '2020-09-30 18:52:38'),
(103, 'Ver Totales', 'cajatotales.show', 'A user see report caja Totales', '2020-09-30 18:52:38', '2020-09-30 18:52:38'),
(104, 'Ver Datos Cargos', 'cargos.index', 'A user see transaction cargos', '2020-10-17 15:31:32', '2020-10-17 15:31:32'),
(105, 'Ver Datos Cargos detallados', 'cargos.show', 'A user see transaction cargos show', '2020-10-17 15:33:37', '2020-10-17 15:33:37'),
(106, 'Eliminar Datos Cargos detallados', 'cargos.destroy', 'A user see transaction cargos destroy', '2020-10-17 15:33:37', '2020-10-17 15:33:37'),
(107, 'Crear Cargos', 'cargos.create', 'A user create cargos', '2020-10-17 15:49:28', '2020-10-17 15:49:28'),
(108, 'Ver Datos Descargos', 'descargos.index', 'A user see transaction descargos', '2020-10-17 15:49:28', '2020-10-17 15:49:28'),
(109, 'Ver Datos Descargos detallados', 'descargos.show', 'A user see transaction descargos show', '2020-10-17 15:49:28', '2020-10-17 15:49:28'),
(110, 'Eliminar Datos Descargos detallados', 'descargos.destroy', 'A user see transaction descargos destroy', '2020-10-17 15:49:28', '2020-10-17 15:49:28'),
(111, 'Crear Descargos', 'descargos.create', 'A user create descargos', '2020-10-17 15:49:28', '2020-10-17 15:49:28'),
(112, 'Menu Transacciones', 'menu.transactions', 'A user see menu transactions', '2020-10-17 15:54:20', '2020-10-17 15:54:20'),
(113, 'Ver registro de Efectivo Venta en tasa', 'tasacampoefectivoventa.ver', 'A user see campo EfectivoVenta de tasa', '2020-10-17 16:13:46', '2020-10-17 16:13:46');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `permission_role`
--
CREATE TABLE `permission_role` (
`id` bigint(20) UNSIGNED NOT NULL,
`role_id` bigint(20) UNSIGNED NOT NULL,
`permission_id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `permission_role`
--
INSERT INTO `permission_role` (`id`, `role_id`, `permission_id`, `created_at`, `updated_at`) VALUES
(1, 3, 45, '2020-09-21 19:34:36', '2020-09-21 19:34:36'),
(2, 3, 10, '2020-09-21 19:48:52', '2020-09-21 19:48:52'),
(3, 3, 11, '2020-09-21 19:48:52', '2020-09-21 19:48:52'),
(5, 3, 13, '2020-09-21 19:48:52', '2020-09-21 19:48:52'),
(6, 3, 14, '2020-09-21 19:48:52', '2020-09-21 19:48:52'),
(8, 3, 16, '2020-09-21 19:48:52', '2020-09-21 19:48:52'),
(9, 3, 17, '2020-09-21 19:48:52', '2020-09-21 19:48:52'),
(10, 3, 18, '2020-09-21 19:48:52', '2020-09-21 19:48:52'),
(11, 3, 19, '2020-09-21 19:48:52', '2020-09-21 19:48:52'),
(12, 3, 20, '2020-09-21 19:48:52', '2020-09-21 19:48:52'),
(13, 3, 21, '2020-09-21 19:48:52', '2020-09-21 19:48:52'),
(14, 3, 22, '2020-09-21 19:48:52', '2020-09-21 19:48:52'),
(15, 3, 23, '2020-09-21 19:48:52', '2020-09-21 19:48:52'),
(16, 3, 24, '2020-09-21 19:48:52', '2020-09-21 19:48:52'),
(17, 3, 25, '2020-09-21 19:48:52', '2020-09-21 19:48:52'),
(18, 3, 26, '2020-09-21 19:48:52', '2020-09-21 19:48:52'),
(19, 3, 27, '2020-09-21 19:48:52', '2020-09-21 19:48:52'),
(20, 3, 28, '2020-09-21 19:48:52', '2020-09-21 19:48:52'),
(21, 3, 29, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(22, 3, 30, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(23, 3, 31, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(24, 3, 32, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(25, 3, 33, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(26, 3, 34, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(27, 3, 35, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(28, 3, 36, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(29, 3, 37, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(30, 3, 38, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(31, 3, 39, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(32, 3, 40, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(33, 3, 41, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(34, 3, 42, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(35, 3, 43, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(36, 3, 44, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(37, 3, 46, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(38, 3, 47, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(39, 3, 48, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(40, 3, 49, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(41, 3, 50, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(42, 3, 51, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(43, 3, 52, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(44, 3, 53, '2020-09-21 19:48:53', '2020-09-21 19:48:53'),
(45, 3, 54, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(47, 3, 56, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(48, 3, 57, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(49, 3, 58, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(50, 3, 59, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(51, 3, 60, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(52, 3, 61, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(53, 3, 62, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(54, 3, 63, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(55, 3, 64, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(56, 3, 65, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(57, 3, 66, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(58, 3, 67, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(59, 3, 68, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(60, 3, 69, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(61, 3, 70, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(62, 3, 71, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(63, 3, 72, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(64, 3, 73, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(65, 3, 74, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(66, 3, 75, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(67, 3, 76, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(68, 3, 77, '2020-09-21 19:48:54', '2020-09-21 19:48:54'),
(69, 3, 78, '2020-09-21 19:48:55', '2020-09-21 19:48:55'),
(70, 3, 79, '2020-09-21 19:48:55', '2020-09-21 19:48:55'),
(71, 3, 80, '2020-09-21 19:48:55', '2020-09-21 19:48:55'),
(72, 3, 81, '2020-09-21 19:48:55', '2020-09-21 19:48:55'),
(73, 3, 82, '2020-09-21 19:48:55', '2020-09-21 19:48:55'),
(74, 3, 83, '2020-09-21 19:48:55', '2020-09-21 19:48:55'),
(75, 3, 84, '2020-09-21 19:48:55', '2020-09-21 19:48:55'),
(76, 3, 85, '2020-09-21 19:48:55', '2020-09-21 19:48:55'),
(77, 3, 86, '2020-09-21 19:48:55', '2020-09-21 19:48:55'),
(78, 3, 87, '2020-09-21 19:48:55', '2020-09-21 19:48:55'),
(79, 3, 88, '2020-09-21 19:48:55', '2020-09-21 19:48:55'),
(80, 3, 89, '2020-09-21 19:48:55', '2020-09-21 19:48:55'),
(81, 3, 90, '2020-09-21 19:48:55', '2020-09-21 19:48:55'),
(82, 3, 91, '2020-09-21 19:48:55', '2020-09-21 19:48:55'),
(83, 3, 15, '2020-09-21 20:38:35', '2020-09-21 20:38:35'),
(84, 4, 10, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(85, 4, 11, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(86, 4, 12, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(87, 4, 13, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(88, 4, 20, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(89, 4, 21, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(90, 4, 22, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(91, 4, 23, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(92, 4, 24, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(93, 4, 40, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(94, 4, 41, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(95, 4, 42, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(96, 4, 43, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(97, 4, 44, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(98, 4, 50, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(99, 4, 51, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(100, 4, 52, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(101, 4, 53, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(102, 4, 54, '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(103, 5, 15, '2020-09-23 00:30:56', '2020-09-23 00:30:56'),
(104, 5, 16, '2020-09-23 00:30:56', '2020-09-23 00:30:56'),
(105, 5, 17, '2020-09-23 00:30:56', '2020-09-23 00:30:56'),
(106, 5, 18, '2020-09-23 00:30:56', '2020-09-23 00:30:56'),
(107, 5, 19, '2020-09-23 00:30:56', '2020-09-23 00:30:56'),
(108, 5, 20, '2020-09-23 00:30:56', '2020-09-23 00:30:56'),
(109, 5, 21, '2020-09-23 00:30:56', '2020-09-23 00:30:56'),
(110, 5, 22, '2020-09-23 00:30:56', '2020-09-23 00:30:56'),
(111, 5, 23, '2020-09-23 00:30:56', '2020-09-23 00:30:56'),
(112, 5, 24, '2020-09-23 00:30:56', '2020-09-23 00:30:56'),
(113, 5, 30, '2020-09-23 00:30:56', '2020-09-23 00:30:56'),
(114, 5, 31, '2020-09-23 00:30:56', '2020-09-23 00:30:56'),
(115, 5, 32, '2020-09-23 00:30:56', '2020-09-23 00:30:56'),
(116, 5, 33, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(117, 5, 34, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(118, 5, 35, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(119, 5, 36, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(120, 5, 37, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(121, 5, 38, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(122, 5, 39, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(123, 5, 40, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(124, 5, 41, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(125, 5, 42, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(126, 5, 43, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(127, 5, 44, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(128, 5, 45, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(129, 5, 46, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(130, 5, 47, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(131, 5, 48, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(132, 5, 49, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(133, 5, 50, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(134, 5, 51, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(135, 5, 52, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(136, 5, 53, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(137, 5, 54, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(138, 5, 55, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(139, 5, 56, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(140, 5, 57, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(141, 5, 58, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(142, 5, 59, '2020-09-23 00:30:57', '2020-09-23 00:30:57'),
(143, 4, 92, '2020-09-23 16:07:15', '2020-09-23 16:07:15'),
(144, 4, 95, '2020-09-23 16:07:54', '2020-09-23 16:07:54'),
(145, 5, 93, '2020-09-23 16:10:23', '2020-09-23 16:10:23'),
(146, 5, 94, '2020-09-23 16:10:23', '2020-09-23 16:10:23'),
(147, 5, 95, '2020-09-23 16:10:23', '2020-09-23 16:10:23'),
(148, 3, 93, '2020-09-23 16:12:04', '2020-09-23 16:12:04'),
(149, 3, 94, '2020-09-23 16:12:04', '2020-09-23 16:12:04'),
(150, 3, 95, '2020-09-23 16:12:04', '2020-09-23 16:12:04'),
(151, 3, 97, '2020-09-24 17:06:11', '2020-09-24 17:06:11'),
(152, 3, 1, '2020-09-24 17:19:51', '2020-09-24 17:19:51'),
(153, 3, 55, '2020-09-24 17:21:28', '2020-09-24 17:21:28'),
(154, 4, 98, '2020-09-30 18:00:56', '2020-09-30 18:00:56'),
(155, 5, 98, '2020-09-30 18:01:23', '2020-09-30 18:01:23'),
(156, 3, 99, '2020-09-30 18:02:03', '2020-09-30 18:02:03'),
(157, 4, 100, '2020-09-30 18:43:29', '2020-09-30 18:43:29'),
(158, 4, 103, '2020-09-30 19:03:26', '2020-09-30 19:03:26'),
(159, 3, 100, '2020-09-30 19:04:59', '2020-09-30 19:04:59'),
(160, 3, 101, '2020-09-30 19:04:59', '2020-09-30 19:04:59'),
(161, 3, 102, '2020-09-30 19:04:59', '2020-09-30 19:04:59'),
(162, 3, 103, '2020-09-30 19:04:59', '2020-09-30 19:04:59'),
(163, 3, 104, '2020-10-17 15:59:26', '2020-10-17 15:59:26'),
(164, 3, 105, '2020-10-17 15:59:26', '2020-10-17 15:59:26'),
(165, 3, 106, '2020-10-17 15:59:26', '2020-10-17 15:59:26'),
(166, 3, 107, '2020-10-17 15:59:26', '2020-10-17 15:59:26'),
(167, 3, 108, '2020-10-17 15:59:26', '2020-10-17 15:59:26'),
(168, 3, 109, '2020-10-17 15:59:26', '2020-10-17 15:59:26'),
(169, 3, 110, '2020-10-17 15:59:26', '2020-10-17 15:59:26'),
(170, 3, 111, '2020-10-17 15:59:26', '2020-10-17 15:59:26'),
(171, 3, 112, '2020-10-17 15:59:26', '2020-10-17 15:59:26'),
(172, 3, 113, '2020-10-17 16:16:26', '2020-10-17 16:16:26'),
(173, 3, 92, '2020-10-17 16:21:16', '2020-10-17 16:21:16'),
(174, 5, 69, '2020-10-17 17:00:30', '2020-10-17 17:00:30'),
(175, 5, 107, '2020-10-17 17:00:30', '2020-10-17 17:00:30'),
(176, 5, 108, '2020-10-17 17:00:30', '2020-10-17 17:00:30'),
(177, 5, 109, '2020-10-17 17:00:30', '2020-10-17 17:00:30'),
(178, 5, 111, '2020-10-17 17:00:30', '2020-10-17 17:00:30'),
(179, 5, 112, '2020-10-17 17:00:30', '2020-10-17 17:00:30'),
(180, 5, 10, '2020-10-17 17:03:37', '2020-10-17 17:03:37'),
(181, 5, 92, '2020-10-17 17:03:37', '2020-10-17 17:03:37'),
(182, 5, 104, '2020-10-17 17:03:37', '2020-10-17 17:03:37');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `personas`
--
CREATE TABLE `personas` (
`id` bigint(20) UNSIGNED NOT NULL,
`tipo_persona` enum('Proveedor','Cliente','Administrador_mesa','Inactivo') COLLATE utf8mb4_unicode_ci NOT NULL,
`nombre` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`tipo_documento` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`num_documento` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL,
`direccion` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL,
`telefono` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`imagen` varchar(200) 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;
--
-- Volcado de datos para la tabla `personas`
--
INSERT INTO `personas` (`id`, `tipo_persona`, `nombre`, `tipo_documento`, `num_documento`, `direccion`, `telefono`, `email`, `imagen`, `created_at`, `updated_at`) VALUES
(1, 'Proveedor', 'Proveedor Comun', 'RIF-', 'S/N', 'S/D', 'S/T', 'S/E', 'avatar5.png', '2020-10-05 17:37:31', '2020-10-05 17:37:31'),
(2, 'Cliente', 'Cliente Comun', 'RIF-', 'S/N', 'S/D', 'S/T', 'S/E', 'avatar3.png', '2020-10-05 17:37:31', '2020-10-05 17:37:31'),
(3, 'Proveedor', '<NAME>', 'RIF', '01010111111', 'EL VIGIA', '(0414) 112-0738', '<EMAIL>', 'thumb_upl_57e81d357d468.jpg', '2020-09-21 04:30:06', '2020-09-21 04:30:06'),
(4, 'Proveedor', '<NAME>', 'CI', '123456789', 'EL VIGIA', '(0414) 719-4071', '<EMAIL>', 'thumb_upl_57e81d357d468.jpg', '2020-09-21 04:31:08', '2020-09-21 04:31:08'),
(5, 'Proveedor', '<NAME>', 'CI', '123456678', 'EL VIGIA', '(0414) 734-0262', '<EMAIL>', 'thumb_upl_57e81d357d468.jpg', '2020-09-21 04:31:57', '2020-09-21 04:31:57'),
(6, 'Proveedor', 'H ESPOSITO', 'RIF', '01010101', 'EL VIGIA', '(0414) 734-0262', '<EMAIL>', 'thumb_upl_57e81d357d468.jpg', '2020-09-21 04:32:56', '2020-09-21 04:32:56'),
(7, 'Proveedor', 'DISTRIBUIDORA LA QUINCE, C.A.', 'RIF', '011010101111', 'EL VIGIA', '(0414) 734-0262', '<EMAIL>', 'thumb_upl_57e81d357d468.jpg', '2020-09-21 04:33:22', '2020-09-21 04:33:22'),
(8, 'Proveedor', 'INVERSIONES COCO', 'CI', '0101010101', 'EL VIGIA', '(0414) 734-0262', '<EMAIL>', 'thumb_upl_57e81d357d468.jpg', '2020-09-21 04:33:45', '2020-09-21 04:33:45'),
(9, 'Proveedor', 'QUESERA TORO', 'CI', '01010101011', 'EL VIGIA', '(0414) 734-0262', '<EMAIL>', 'thumb_upl_57e81d357d468.jpg', '2020-09-21 04:34:10', '2020-09-21 04:34:10'),
(10, 'Proveedor', '<NAME>', 'RIF', '010101010101', 'EL VIGIA', '(0414) 734-0262', '<EMAIL>', 'thumb_upl_57e81d357d468.jpg', '2020-09-21 04:34:58', '2020-09-21 04:34:58'),
(11, 'Proveedor', '<NAME>', 'CI', '010101010101', 'EL VIGIA', '(0414) 734-0262', '<EMAIL>', 'thumb_upl_57e81d357d468.jpg', '2020-09-21 04:35:38', '2020-09-21 04:35:38'),
(12, 'Proveedor', 'TODO<NAME>, C.A.', 'RIF', '0101010101', 'EL VIGIA', '(0414) 734-0262', '<EMAIL>', 'thumb_upl_57e81d357d468.jpg', '2020-09-21 04:36:02', '2020-09-21 04:36:02'),
(13, 'Proveedor', 'MAKRO COMERCIALIZADORA, C.A.', 'RIF', '010101010101', 'EL VIGIA', '(0414) 734-0262', '<EMAIL>', 'thumb_upl_57e81d357d468.jpg', '2020-09-21 04:36:25', '2020-09-21 04:36:25'),
(14, 'Proveedor', 'EL CAMPESINO, C.A.', 'RIF', '0101010101', 'EL VIGIA', '(0414) 734-0262', '<EMAIL>', 'thumb_upl_57e81d357d468.jpg', '2020-09-21 04:36:53', '2020-09-21 04:36:53'),
(15, 'Cliente', '<NAME> - RETIRO DE PRODCUTOS', 'CI', '10001001', 'EL VIGIA', '(0275) 881-0101', '<EMAIL>', 'thumb_upl_57e81d357d468.jpg', '2020-09-23 22:36:10', '2020-09-23 22:36:10'),
(16, 'Cliente', 'CONSUMO INTERNO', 'CI', '11111111', 'EL VIGIA', '(0275) 881-8818', '<EMAIL>', 'thumb_upl_57e81d357d468.jpg', '2020-09-23 22:37:35', '2020-09-23 22:37:35'),
(17, 'Cliente', '<NAME>', 'CI', '11111111', 'EL VIGIA', '(0275) 888-8888', '<EMAIL>', 'thumb_upl_57e81d357d468.jpg', '2020-09-24 00:40:22', '2020-09-24 00:40:22'),
(18, 'Cliente', '<NAME>', 'CI', '11111111', 'EL VIGIA', '(0275) 888-8888', '<EMAIL>', 'thumb_upl_57e81d357d468.jpg', '2020-09-24 00:40:49', '2020-09-24 00:40:49'),
(19, 'Cliente', '<NAME>', 'CI', '13021187', 'EL VIGIA', '(0424) 760-5360', '<EMAIL>', 'thumb_upl_57e81d357d468.jpg', '2020-09-24 00:42:03', '2020-09-24 00:42:03'),
(20, 'Cliente', '<NAME>', 'CI', '27905051', 'EL VIGIA', '(0414) 978-3881', '<EMAIL>', 'thumb_upl_57e81d357d468.jpg', '2020-09-24 00:42:55', '2020-09-24 00:42:55');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `roles`
--
CREATE TABLE `roles` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci,
`full-access` enum('yes','no') 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;
--
-- Volcado de datos para la tabla `roles`
--
INSERT INTO `roles` (`id`, `name`, `slug`, `description`, `full-access`, `created_at`, `updated_at`) VALUES
(1, 'Admin', 'admin', 'Administrator', 'yes', '2020-10-05 17:37:18', '2020-10-05 17:37:18'),
(2, 'Registered User', 'registereduser', 'Registered User', 'no', '2020-10-05 17:37:18', '2020-10-05 17:37:18'),
(3, 'Supervisor', 'supervisor', 'supervisor', 'no', '2020-09-21 19:33:37', '2020-09-21 19:33:37'),
(4, 'Operador', 'operadorventas', 'Operador de venas', 'no', '2020-09-22 17:53:22', '2020-09-22 17:53:22'),
(5, 'Administrador', 'administrador', 'Administrador', 'no', '2020-09-23 00:30:56', '2020-09-23 00:30:56');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `role_user`
--
CREATE TABLE `role_user` (
`id` bigint(20) UNSIGNED NOT NULL,
`role_id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `role_user`
--
INSERT INTO `role_user` (`id`, `role_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 1, 1, '2020-10-05 17:37:18', '2020-10-05 17:37:18'),
(2, 1, 2, '2020-10-05 17:37:18', '2020-10-05 17:37:18'),
(4, 3, 3, '2020-09-21 19:35:32', '2020-09-21 19:35:32'),
(6, 4, 4, '2020-09-22 17:54:40', '2020-09-22 17:54:40'),
(8, 5, 5, '2020-09-23 00:31:56', '2020-09-23 00:31:56');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `sessioncajas`
--
CREATE TABLE `sessioncajas` (
`id` bigint(20) UNSIGNED NOT NULL,
`estado` enum('Abierta','Cerrada','Auditoria') 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;
--
-- Volcado de datos para la tabla `sessioncajas`
--
INSERT INTO `sessioncajas` (`id`, `estado`, `created_at`, `updated_at`) VALUES
(1, 'Abierta', '2020-10-06 10:40:13', '2020-10-06 10:40:13');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `sucursals`
--
CREATE TABLE `sucursals` (
`id` bigint(20) UNSIGNED NOT NULL,
`nombre` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`telefono_fijo` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`telefono_mobil` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`direccion` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL,
`estado` enum('Activa','Cancelada','Suspendida') COLLATE utf8mb4_unicode_ci NOT NULL,
`empresa_id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `sucursals`
--
INSERT INTO `sucursals` (`id`, `nombre`, `telefono_fijo`, `telefono_mobil`, `direccion`, `estado`, `empresa_id`, `created_at`, `updated_at`) VALUES
(1, 'Centro', '0424-7665227', '0424-7665227', 'Calle #3 El Vigía.', 'Activa', 1, '2020-10-05 17:37:28', '2020-10-05 17:37:28');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `tasas`
--
CREATE TABLE `tasas` (
`id` bigint(20) UNSIGNED NOT NULL,
`nombre` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`tasa` decimal(11,2) NOT NULL DEFAULT '0.00',
`porcentaje_ganancia` decimal(11,2) NOT NULL DEFAULT '0.00',
`estado` enum('Activo','Cancelado','Suspendido') COLLATE utf8mb4_unicode_ci NOT NULL,
`caja` enum('Abierta','Cerrada') 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;
--
-- Volcado de datos para la tabla `tasas`
--
INSERT INTO `tasas` (`id`, `nombre`, `tasa`, `porcentaje_ganancia`, `estado`, `caja`, `created_at`, `updated_at`) VALUES
(1, 'Dolar', '1.00', '10.00', 'Activo', 'Cerrada', '2020-10-05 17:37:28', '2020-10-17 14:38:44'),
(2, 'Peso', '3500.00', '10.00', 'Activo', 'Cerrada', '2020-10-05 17:37:28', '2020-10-05 18:03:12'),
(3, 'Transferencia_Punto', '450000.00', '15.00', 'Activo', 'Cerrada', '2020-10-05 17:37:29', '2020-10-05 18:03:12'),
(4, 'Mixto', '450000.00', '12.50', 'Activo', 'Cerrada', '2020-10-05 17:37:29', '2020-10-05 18:03:12'),
(5, 'Efectivo', '450000.00', '0.00', 'Activo', 'Cerrada', '2020-10-05 17:37:29', '2020-10-05 18:03:12'),
(6, 'EfectivoVenta', '450000.00', '25.00', 'Activo', 'Cerrada', '2020-10-05 17:37:29', '2020-10-05 18:03:12');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `transactions`
--
CREATE TABLE `transactions` (
`id` bigint(20) UNSIGNED NOT NULL,
`tipo_operacion` enum('Cargo','Descargo','Transferencia') COLLATE utf8mb4_unicode_ci NOT NULL,
`tipo_descargo` enum('Normal','Autoconsumo','Retiro') COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`deposito` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`num_documento` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`autorizado_por` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`proposito` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`detalle` text COLLATE utf8mb4_unicode_ci,
`total_operacion` decimal(11,2) NOT NULL,
`estado` enum('Aceptado','Cancelado') 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;
--
-- Volcado de datos para la tabla `transactions`
--
INSERT INTO `transactions` (`id`, `tipo_operacion`, `tipo_descargo`, `deposito`, `num_documento`, `user_id`, `autorizado_por`, `proposito`, `detalle`, `total_operacion`, `estado`, `created_at`, `updated_at`) VALUES
(1, 'Cargo', NULL, '1', 'CG100000001', 1, 'Yimme Montenegro', 'Cargar productos', 'del deposito de villasol', '10.00', 'Cancelado', '2020-10-12 23:37:43', '2020-10-12 23:51:33'),
(2, 'Cargo', NULL, '1', 'CG100000002', 1, 'Yimme Montenegro', 'Cargar productos', 'del deposito de villasol', '14.30', 'Cancelado', '2020-10-12 23:41:19', '2020-10-12 23:44:31'),
(3, 'Cargo', NULL, '1', 'CG100000003', 1, 'Yimme Montenegro', 'Cargar productos', 'del deposito de villasol', '10.90', 'Cancelado', '2020-10-13 01:13:02', '2020-10-13 01:37:33'),
(4, 'Cargo', NULL, '1', 'CG100000004', 1, 'Yimme Montenegro', 'Cargar productos', 'del deposito de villasol', '14.86', 'Aceptado', '2020-10-13 01:22:13', '2020-10-13 01:22:13'),
(5, 'Cargo', NULL, '1', 'CG100000005', 1, 'Yimme Montenegro', 'Cargar productos', 'del deposito de villasol', '40.60', 'Aceptado', '2020-10-13 01:27:33', '2020-10-13 01:27:33'),
(8, 'Cargo', NULL, '1', 'CG100000006', 1, 'Yimme Montenegro', 'Cargar productos', 'del deposito de villasol', '16.10', 'Aceptado', '2020-10-13 02:48:29', '2020-10-13 02:48:29'),
(9, 'Cargo', NULL, '1', 'CG100000007', 1, 'Yimme Montenegro', 'Cargar productos', 'del deposito de villasol', '16.10', 'Aceptado', '2020-10-13 02:50:51', '2020-10-13 02:50:51'),
(10, 'Cargo', NULL, '1', 'CG100000008', 1, 'Yimme Montenegro', 'Cargar productos', 'del deposito de villasol', '16.20', 'Cancelado', '2020-10-13 02:52:16', '2020-10-13 02:53:39'),
(11, 'Descargo', NULL, '1', 'DG100000001', 1, 'Yimme Montenegro', 'Cargar productos', 'del deposito de villasol', '16.20', 'Aceptado', '2020-10-13 03:02:40', '2020-10-13 03:02:40'),
(12, 'Descargo', 'Retiro', '1', 'DG100000002', 1, 'Yimme Montenegro', 'Cargar productos', 'del deposito de villasol', '1.62', 'Cancelado', '2020-10-13 03:09:14', '2020-10-13 03:14:35'),
(13, 'Descargo', 'Autoconsumo', '1', 'DG100000003', 1, 'Yimme Montenegro', 'Cargar productos', 'del deposito de villasol', '1.62', 'Cancelado', '2020-10-13 03:10:59', '2020-10-13 03:12:07'),
(14, 'Cargo', NULL, '1', 'CG100000009', 1, 'Yimme Montenegro', 'Cargar productos', 'del deposito de villasol', '16.20', 'Aceptado', '2020-10-13 03:17:50', '2020-10-13 03:17:50'),
(15, 'Descargo', 'Retiro', '1', 'DG100000004', 1, 'Yimme Montenegro', 'Cargar productos', 'del deposito de villasol', '1.62', 'Cancelado', '2020-10-13 03:19:14', '2020-10-13 03:20:02'),
(16, 'Cargo', NULL, '1', 'CG100000010', 1, NULL, NULL, NULL, '1.62', 'Cancelado', '2020-10-13 03:23:04', '2020-10-13 03:23:39'),
(17, 'Descargo', 'Normal', '1', 'DG100000005', 1, NULL, NULL, NULL, '1.62', 'Cancelado', '2020-10-13 03:24:21', '2020-10-13 03:27:57'),
(18, 'Descargo', 'Normal', '1', 'DG100000006', 1, 'Yimme Montenegro', 'Cargar productos', 'del deposito de villasol', '1.62', 'Cancelado', '2020-10-13 03:30:14', '2020-10-13 03:30:52');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `transferencias`
--
CREATE TABLE `transferencias` (
`id` bigint(20) UNSIGNED NOT NULL,
`accion` enum('Mayor a Detal','Detal a Mayor') COLLATE utf8mb4_unicode_ci NOT NULL,
`origen_id` int(10) UNSIGNED NOT NULL,
`origenNombreProducto` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`origenStockInicial` int(10) UNSIGNED NOT NULL,
`origenStockFinal` int(10) UNSIGNED NOT NULL,
`origenUnidades` int(10) UNSIGNED NOT NULL,
`origenVender_al` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`cantidadRestarOrigen` int(10) UNSIGNED NOT NULL,
`destino_id` int(10) UNSIGNED NOT NULL,
`destinoNombreProducto` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`destinoStockInicial` int(10) UNSIGNED NOT NULL,
`destinoStockFinal` int(10) UNSIGNED NOT NULL,
`destinoUnidades` int(10) UNSIGNED NOT NULL,
`destinoVender_al` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`cantidadSumarDestino` int(10) UNSIGNED NOT NULL,
`operador` varchar(100) 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;
--
-- Volcado de datos para la tabla `transferencias`
--
INSERT INTO `transferencias` (`id`, `accion`, `origen_id`, `origenNombreProducto`, `origenStockInicial`, `origenStockFinal`, `origenUnidades`, `origenVender_al`, `cantidadRestarOrigen`, `destino_id`, `destinoNombreProducto`, `destinoStockInicial`, `destinoStockFinal`, `destinoUnidades`, `destinoVender_al`, `cantidadSumarDestino`, `operador`, `created_at`, `updated_at`) VALUES
(1, '<NAME>', 4, 'ACETAMINOFEN 500 MG BLISTER', 774, 764, 1, 'Detal', 10, 5, 'CAJA DE ACETAMINOFEN 500MG X 10 BLISTER', 5, 6, 10, 'Mayor', 1, 'Bladimir Montenegro', '2020-09-23 01:29:10', '2020-09-23 01:29:10'),
(2, '<NAME>', 59, 'CAJA DE FRUTIÑO SABORES MIXTOS', 17, 16, 20, 'Mayor', 1, 58, 'FRUTIÑO SABORES MIXTOS', 4, 24, 1, 'Detal', 24, '<NAME>', '2020-09-23 22:21:28', '2020-09-23 22:21:28'),
(3, '<NAME>', 72, '<NAME> 1 KG X 10 UND', 17, 14, 10, 'Mayor', 3, 71, 'HARINA DE <NAME>SON LEUDANTE 1 KG', 10, 40, 1, 'Detal', 40, '<NAME>', '2020-09-23 22:23:59', '2020-09-23 22:23:59'),
(4, '<NAME>', 74, '<NAME> X 20 UND', 12, 8, 20, 'Mayor', 4, 73, '<NAME>', 6, 86, 1, 'Detal', 86, '<NAME>', '2020-09-23 22:24:54', '2020-09-23 22:24:54'),
(5, '<NAME>', 91, '<NAME>VO ULTREX 1 KG X 20 UND', 4, 3, 20, 'Mayor', 1, 90, 'JABON DE POLVO ULTREX 1 KG', 6, 26, 1, 'Detal', 26, '<NAME>', '2020-09-23 22:25:49', '2020-09-23 22:25:49'),
(6, '<NAME>', 120, 'CAJA DE NUTRIBELA10 X 12 SOBRES', 24, 23, 12, 'Mayor', 1, 119, 'NUTRIBELA10 SOBRE', 1, 13, 1, 'Detal', 13, '<NAME>', '2020-09-23 22:27:28', '2020-09-23 22:27:28'),
(7, '<NAME>', 143, 'FARDO DE SAL 1 KG X 25 UND', 5, 4, 25, 'Mayor', 1, 142, 'SAL 1 KG', 8, 33, 1, 'Detal', 33, '<NAME>', '2020-09-23 22:28:17', '2020-09-23 22:28:17'),
(8, '<NAME>', 74, '<NAME> X 20 UND', 6, 4, 20, 'Mayor', 2, 73, 'HARINA JUANA', 10, 50, 1, 'Detal', 50, 'Rosaura Arrias', '2020-09-24 22:32:00', '2020-09-24 22:32:00'),
(9, '<NAME>', 72, '<NAME>UDANTE 1 KG X 10 UND', 14, 12, 10, 'Mayor', 2, 71, 'HARINA DE TRIGO ROBINSON LEUDANTE 1 KG', 15, 35, 1, 'Detal', 35, 'Rosaura Arrias', '2020-09-24 22:32:51', '2020-09-24 22:32:51'),
(10, '<NAME>', 143, 'FARDO DE SAL 1 KG X 25 UND', 4, 3, 25, 'Mayor', 1, 142, 'SAL 1 KG', 28, 53, 1, 'Detal', 53, 'R<NAME>', '2020-09-24 22:33:29', '2020-09-24 22:33:29'),
(11, '<NAME>', 91, 'FARDO DE JABON DE POLVO ULTREX 1 KG X 20 UND', 3, 2, 20, 'Mayor', 1, 90, 'JABON DE POLVO ULTREX 1 KG', 17, 37, 1, 'Detal', 37, 'R<NAME>', '2020-09-24 22:34:02', '2020-09-24 22:34:02'),
(12, '<NAME>', 131, 'FARDO DE PASTA LARGA ITALPASTA 1 KG X 12 UND', 5, 3, 12, 'Mayor', 2, 130, 'PASTA LARGA ITALPASTA 1 KG', 0, 24, 1, 'Detal', 24, '<NAME>', '2020-09-26 16:13:04', '2020-09-26 16:13:04'),
(13, '<NAME>', 5, 'CAJA DE ACETAMINOFEN 500MG X 10 BLISTER', 6, 5, 10, 'Mayor', 1, 4, 'ACETAMINOFEN 500 MG BLISTER', 715, 725, 1, 'Detal', 725, '<NAME>', '2020-10-02 03:54:21', '2020-10-02 03:54:21');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(255) 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;
--
-- Volcado de datos para la tabla `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, '<NAME>', '<EMAIL>', NULL, '$2y$10$pYscS/dBCGgcSC5oatnjN.S6ZkPnWV1HsL3iyhNAbmqOpHvMBAfEK', NULL, '2020-10-05 17:37:18', '2020-10-05 17:37:18'),
(2, 'admin', '<EMAIL>', NULL, '$2y$10$I0G1/GkKassXRh014SY9leyRnRzJcTUt5KWx5RTLZ0RqhrudsVBsW', NULL, '2020-10-05 17:37:18', '2020-10-05 17:37:18'),
(3, '<NAME>', '<EMAIL>', NULL, '$2y$10$Kls8tiWWKWOmchpwIAHINuvu0.eMPZNG9jmEm6FxPyas5IcbDvpam', NULL, '2020-09-21 19:29:41', '2020-09-21 19:29:41'),
(4, '<NAME>', '<EMAIL>', NULL, '$2y$10$IHlznLEbNQ.cTiGTLfJ.GOGhhQt8VuJrDkebBV2fnNksyzTZlu/D2', NULL, '2020-09-22 17:49:00', '2020-09-22 17:49:00'),
(5, '<NAME>', '<EMAIL>', NULL, '$2y$10$O5hSh69m0wNxAaM8/IStK.gVJeVtniuzso1Lfwd8BYwncy/cARjtO', NULL, '2020-09-23 00:27:35', '2020-09-23 00:27:35');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `ventas`
--
CREATE TABLE `ventas` (
`id` bigint(20) UNSIGNED NOT NULL,
`tipo_comprobante` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`serie_comprobante` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`num_comprobante` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`fecha_hora` datetime NOT NULL,
`tipo_pago` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`tasaDolar` decimal(11,2) DEFAULT NULL,
`porDolar` decimal(11,2) DEFAULT NULL,
`tasaPeso` decimal(11,2) DEFAULT NULL,
`porPeso` decimal(11,2) DEFAULT NULL,
`tasaTransPunto` decimal(11,2) DEFAULT NULL,
`porTransPunto` decimal(11,2) DEFAULT NULL,
`tasaMixto` decimal(11,2) DEFAULT NULL,
`porMixto` decimal(11,2) DEFAULT NULL,
`tasaEfectivo` decimal(11,2) DEFAULT NULL,
`porEfectivo` decimal(11,2) DEFAULT NULL,
`num_Punto` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`num_Trans` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`precio_costo` decimal(11,9) DEFAULT NULL,
`margen_ganancia` decimal(11,2) DEFAULT NULL,
`total_venta` decimal(11,2) DEFAULT NULL,
`ganancia_neta` decimal(11,2) DEFAULT NULL,
`estado` enum('Aceptada','Cancelada','Procesando') COLLATE utf8mb4_unicode_ci NOT NULL,
`persona_id` bigint(20) UNSIGNED NOT NULL,
`caja_id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `ventas`
--
INSERT INTO `ventas` (`id`, `tipo_comprobante`, `serie_comprobante`, `num_comprobante`, `fecha_hora`, `tipo_pago`, `tasaDolar`, `porDolar`, `tasaPeso`, `porPeso`, `tasaTransPunto`, `porTransPunto`, `tasaMixto`, `porMixto`, `tasaEfectivo`, `porEfectivo`, `num_Punto`, `num_Trans`, `precio_costo`, `margen_ganancia`, `total_venta`, `ganancia_neta`, `estado`, `persona_id`, `caja_id`, `created_at`, `updated_at`) VALUES
(1, 'Orden', 'C400000001', 'N400000001', '2020-10-06 06:41:11', 'Dolar', '1.00', '10.00', '3500.00', '10.00', '450000.00', '15.00', '450000.00', '12.50', '450000.00', '0.00', NULL, NULL, '1.840000000', '0.09', '2.02', '0.18', 'Aceptada', 2, 1, '2020-10-06 10:41:11', '2020-10-06 10:41:11'),
(2, 'Orden', 'C400000002', 'N400000002', '2020-10-06 06:42:02', 'Peso', '1.00', '10.00', '3500.00', '10.00', '450000.00', '15.00', '450000.00', '12.50', '450000.00', '0.00', NULL, NULL, '3.090000000', '0.07', '3.32', '0.23', 'Aceptada', 2, 1, '2020-10-06 10:42:02', '2020-10-06 10:42:02'),
(3, 'Orden', 'C400000003', 'N400000003', '2020-10-06 08:21:55', 'Efectivo', '1.00', '10.00', '3500.00', '10.00', '450000.00', '15.00', '450000.00', '12.50', '450000.00', '0.00', NULL, NULL, '3.500000000', '0.00', '3.51', '0.01', 'Aceptada', 2, 1, '2020-10-06 12:21:55', '2020-10-06 12:21:55'),
(4, 'Orden', 'C400000004', 'N400000004', '2020-10-08 20:04:50', 'Efectivo', '1.00', '10.00', '3500.00', '10.00', '450000.00', '15.00', '450000.00', '12.50', '450000.00', '0.00', NULL, NULL, '2.790000000', '0.00', '2.80', '0.01', 'Aceptada', 2, 1, '2020-10-09 00:04:50', '2020-10-09 00:04:50'),
(5, 'Orden', 'C400000005', 'N400000005', '2020-10-10 15:39:39', 'Peso', '1.00', '10.00', '3500.00', '10.00', '450000.00', '15.00', '450000.00', '12.50', '450000.00', '0.00', NULL, NULL, '2.790000000', '0.07', '2.99', '0.20', 'Aceptada', 2, 1, '2020-10-10 19:39:39', '2020-10-10 19:39:39'),
(6, 'Orden', 'C400000006', 'N400000006', '2020-10-10 15:40:17', 'Efectivo', '1.00', '10.00', '3500.00', '10.00', '450000.00', '15.00', '450000.00', '12.50', '450000.00', '0.00', NULL, NULL, '2.790000000', '0.00', '2.80', '0.01', 'Aceptada', 2, 1, '2020-10-10 19:40:17', '2020-10-10 19:40:17'),
(7, 'Orden', 'C400000007', 'N400000007', '2020-10-17 10:41:26', 'Peso', '1.00', '10.00', '3500.00', '10.00', '450000.00', '15.00', '450000.00', '12.50', '450000.00', '0.00', NULL, NULL, '5.266667000', '0.08', '5.71', '0.44', 'Aceptada', 2, 1, '2020-10-17 14:41:26', '2020-10-17 14:41:26');
--
-- Índices para tablas volcadas
--
--
-- Indices de la tabla `articulos`
--
ALTER TABLE `articulos`
ADD PRIMARY KEY (`id`),
ADD KEY `articulos_categoria_id_foreign` (`categoria_id`);
--
-- Indices de la tabla `articulo_transactions`
--
ALTER TABLE `articulo_transactions`
ADD PRIMARY KEY (`id`),
ADD KEY `articulo_transactions_articulo_id_foreign` (`articulo_id`),
ADD KEY `articulo_transactions_transaction_id_foreign` (`transaction_id`);
--
-- Indices de la tabla `articulo_ventas`
--
ALTER TABLE `articulo_ventas`
ADD PRIMARY KEY (`id`),
ADD KEY `articulo_ventas_articulo_id_foreign` (`articulo_id`),
ADD KEY `articulo_ventas_venta_id_foreign` (`venta_id`);
--
-- Indices de la tabla `articulo__ingresos`
--
ALTER TABLE `articulo__ingresos`
ADD PRIMARY KEY (`id`),
ADD KEY `articulo__ingresos_ingreso_id_foreign` (`ingreso_id`),
ADD KEY `articulo__ingresos_articulo_id_foreign` (`articulo_id`);
--
-- Indices de la tabla `cajas`
--
ALTER TABLE `cajas`
ADD PRIMARY KEY (`id`),
ADD KEY `cajas_user_id_foreign` (`user_id`),
ADD KEY `cajas_sucursal_id_foreign` (`sucursal_id`),
ADD KEY `cajas_sessioncaja_id_foreign` (`sessioncaja_id`);
--
-- Indices de la tabla `categorias`
--
ALTER TABLE `categorias`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `contabilidads`
--
ALTER TABLE `contabilidads`
ADD PRIMARY KEY (`id`),
ADD KEY `contabilidads_caja_id_foreign` (`caja_id`);
--
-- Indices de la tabla `denominacions`
--
ALTER TABLE `denominacions`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `empresas`
--
ALTER TABLE `empresas`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `ingresos`
--
ALTER TABLE `ingresos`
ADD PRIMARY KEY (`id`),
ADD KEY `ingresos_persona_id_foreign` (`persona_id`),
ADD KEY `ingresos_user_id_foreign` (`user_id`);
--
-- Indices de la tabla `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `pago__ventas`
--
ALTER TABLE `pago__ventas`
ADD PRIMARY KEY (`id`),
ADD KEY `pago__ventas_venta_id_foreign` (`venta_id`);
--
-- Indices de la tabla `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indices de la tabla `permissions`
--
ALTER TABLE `permissions`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `permissions_name_unique` (`name`),
ADD UNIQUE KEY `permissions_slug_unique` (`slug`);
--
-- Indices de la tabla `permission_role`
--
ALTER TABLE `permission_role`
ADD PRIMARY KEY (`id`),
ADD KEY `permission_role_role_id_foreign` (`role_id`),
ADD KEY `permission_role_permission_id_foreign` (`permission_id`);
--
-- Indices de la tabla `personas`
--
ALTER TABLE `personas`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `roles`
--
ALTER TABLE `roles`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `roles_name_unique` (`name`),
ADD UNIQUE KEY `roles_slug_unique` (`slug`);
--
-- Indices de la tabla `role_user`
--
ALTER TABLE `role_user`
ADD PRIMARY KEY (`id`),
ADD KEY `role_user_role_id_foreign` (`role_id`),
ADD KEY `role_user_user_id_foreign` (`user_id`);
--
-- Indices de la tabla `sessioncajas`
--
ALTER TABLE `sessioncajas`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `sucursals`
--
ALTER TABLE `sucursals`
ADD PRIMARY KEY (`id`),
ADD KEY `sucursals_empresa_id_foreign` (`empresa_id`);
--
-- Indices de la tabla `tasas`
--
ALTER TABLE `tasas`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `transactions`
--
ALTER TABLE `transactions`
ADD PRIMARY KEY (`id`),
ADD KEY `transactions_user_id_foreign` (`user_id`);
--
-- Indices de la tabla `transferencias`
--
ALTER TABLE `transferencias`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- Indices de la tabla `ventas`
--
ALTER TABLE `ventas`
ADD PRIMARY KEY (`id`),
ADD KEY `ventas_persona_id_foreign` (`persona_id`),
ADD KEY `ventas_caja_id_foreign` (`caja_id`);
--
-- AUTO_INCREMENT de las tablas volcadas
--
--
-- AUTO_INCREMENT de la tabla `articulos`
--
ALTER TABLE `articulos`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=184;
--
-- AUTO_INCREMENT de la tabla `articulo_transactions`
--
ALTER TABLE `articulo_transactions`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;
--
-- AUTO_INCREMENT de la tabla `articulo_ventas`
--
ALTER TABLE `articulo_ventas`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24;
--
-- AUTO_INCREMENT de la tabla `articulo__ingresos`
--
ALTER TABLE `articulo__ingresos`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=190;
--
-- AUTO_INCREMENT de la tabla `cajas`
--
ALTER TABLE `cajas`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT de la tabla `categorias`
--
ALTER TABLE `categorias`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT de la tabla `contabilidads`
--
ALTER TABLE `contabilidads`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT de la tabla `denominacions`
--
ALTER TABLE `denominacions`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;
--
-- AUTO_INCREMENT de la tabla `empresas`
--
ALTER TABLE `empresas`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT de la tabla `failed_jobs`
--
ALTER TABLE `failed_jobs`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT de la tabla `ingresos`
--
ALTER TABLE `ingresos`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;
--
-- AUTO_INCREMENT de la tabla `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=47;
--
-- AUTO_INCREMENT de la tabla `pago__ventas`
--
ALTER TABLE `pago__ventas`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT de la tabla `permissions`
--
ALTER TABLE `permissions`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=114;
--
-- AUTO_INCREMENT de la tabla `permission_role`
--
ALTER TABLE `permission_role`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=183;
--
-- AUTO_INCREMENT de la tabla `personas`
--
ALTER TABLE `personas`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;
--
-- AUTO_INCREMENT de la tabla `roles`
--
ALTER TABLE `roles`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT de la tabla `role_user`
--
ALTER TABLE `role_user`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT de la tabla `sessioncajas`
--
ALTER TABLE `sessioncajas`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT de la tabla `sucursals`
--
ALTER TABLE `sucursals`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT de la tabla `tasas`
--
ALTER TABLE `tasas`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT de la tabla `transactions`
--
ALTER TABLE `transactions`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;
--
-- AUTO_INCREMENT de la tabla `transferencias`
--
ALTER TABLE `transferencias`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;
--
-- AUTO_INCREMENT de la tabla `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT de la tabla `ventas`
--
ALTER TABLE `ventas`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- Restricciones para tablas volcadas
--
--
-- Filtros para la tabla `articulos`
--
ALTER TABLE `articulos`
ADD CONSTRAINT `articulos_categoria_id_foreign` FOREIGN KEY (`categoria_id`) REFERENCES `categorias` (`id`);
--
-- Filtros para la tabla `articulo_transactions`
--
ALTER TABLE `articulo_transactions`
ADD CONSTRAINT `articulo_transactions_articulo_id_foreign` FOREIGN KEY (`articulo_id`) REFERENCES `articulos` (`id`),
ADD CONSTRAINT `articulo_transactions_transaction_id_foreign` FOREIGN KEY (`transaction_id`) REFERENCES `transactions` (`id`);
--
-- Filtros para la tabla `articulo_ventas`
--
ALTER TABLE `articulo_ventas`
ADD CONSTRAINT `articulo_ventas_articulo_id_foreign` FOREIGN KEY (`articulo_id`) REFERENCES `articulos` (`id`),
ADD CONSTRAINT `articulo_ventas_venta_id_foreign` FOREIGN KEY (`venta_id`) REFERENCES `ventas` (`id`);
--
-- Filtros para la tabla `articulo__ingresos`
--
ALTER TABLE `articulo__ingresos`
ADD CONSTRAINT `articulo__ingresos_articulo_id_foreign` FOREIGN KEY (`articulo_id`) REFERENCES `articulos` (`id`),
ADD CONSTRAINT `articulo__ingresos_ingreso_id_foreign` FOREIGN KEY (`ingreso_id`) REFERENCES `ingresos` (`id`);
--
-- Filtros para la tabla `cajas`
--
ALTER TABLE `cajas`
ADD CONSTRAINT `cajas_sessioncaja_id_foreign` FOREIGN KEY (`sessioncaja_id`) REFERENCES `sessioncajas` (`id`),
ADD CONSTRAINT `cajas_sucursal_id_foreign` FOREIGN KEY (`sucursal_id`) REFERENCES `sucursals` (`id`),
ADD CONSTRAINT `cajas_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`);
--
-- Filtros para la tabla `contabilidads`
--
ALTER TABLE `contabilidads`
ADD CONSTRAINT `contabilidads_caja_id_foreign` FOREIGN KEY (`caja_id`) REFERENCES `cajas` (`id`);
--
-- Filtros para la tabla `ingresos`
--
ALTER TABLE `ingresos`
ADD CONSTRAINT `ingresos_persona_id_foreign` FOREIGN KEY (`persona_id`) REFERENCES `personas` (`id`),
ADD CONSTRAINT `ingresos_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`);
--
-- Filtros para la tabla `pago__ventas`
--
ALTER TABLE `pago__ventas`
ADD CONSTRAINT `pago__ventas_venta_id_foreign` FOREIGN KEY (`venta_id`) REFERENCES `ventas` (`id`);
--
-- Filtros para la tabla `permission_role`
--
ALTER TABLE `permission_role`
ADD CONSTRAINT `permission_role_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `permission_role_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE;
--
-- Filtros para la tabla `role_user`
--
ALTER TABLE `role_user`
ADD CONSTRAINT `role_user_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `role_user_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;
--
-- Filtros para la tabla `sucursals`
--
ALTER TABLE `sucursals`
ADD CONSTRAINT `sucursals_empresa_id_foreign` FOREIGN KEY (`empresa_id`) REFERENCES `empresas` (`id`) ON DELETE CASCADE;
--
-- Filtros para la tabla `transactions`
--
ALTER TABLE `transactions`
ADD CONSTRAINT `transactions_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`);
--
-- Filtros para la tabla `ventas`
--
ALTER TABLE `ventas`
ADD CONSTRAINT `ventas_caja_id_foreign` FOREIGN KEY (`caja_id`) REFERENCES `cajas` (`id`),
ADD CONSTRAINT `ventas_persona_id_foreign` FOREIGN KEY (`persona_id`) REFERENCES `personas` (`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 */;
|
--- Soil Moisture Stations
CREATE TABLE sm_minute (
station char(5),
valid timestamp with time zone,
-- Air Temperature
TAir_C_Avg real,
TAir_C_Avg_qc real,
TAir_C_Avg_f char(1),
-- Relative Humidity
rh_avg real,
rh_avg_qc real,
rh_avg_f char(1),
-- Solar Rad total kJ over 1 minute
SlrkJ_Tot real,
SlrkJ_Tot_qc real,
SlrkJ_Tot_f char(1),
-- Precip total
Rain_in_Tot real,
Rain_in_Tot_qc real,
Rain_in_Tot_f char(1),
-- 4 inch soil
TSoil_C_Avg real,
TSoil_C_Avg_qc real,
TSoil_C_Avg_f char(1),
-- wind speed mph
WS_mph_S_WVT real,
WS_mph_S_WVT_qc real,
WS_mph_S_WVT_f char(1),
-- wind speed max
WS_mph_max real,
WS_mph_max_qc real,
WS_mph_max_f char(1),
-- wind direction
WindDir_D1_WVT real,
WindDir_D1_WVT_qc real,
WindDir_D1_WVT_f char(1),
-- 12 inch VWC
calcVWC12_Avg real,
calcVWC12_Avg_qc real,
calcVWC12_Avg_f char(1),
-- 24 inch VWC
calcVWC24_Avg real,
calcVWC24_Avg_qc real,
calcVWC24_Avg_f char(1),
-- 50 inch VWC
calcVWC50_Avg real,
calcVWC50_Avg_qc real,
calcVWC50_Avg_f char(1),
-- 12 inch temp
T12_C_Avg real,
T12_C_Avg_qc real,
T12_C_Avg_f char(1),
-- 24 inch temp
T24_C_Avg real,
T24_C_Avg_qc real,
T24_C_Avg_f char(1),
-- 50 inch temp
T50_C_Avg real,
T50_C_Avg_qc real,
T50_C_Avg_f char(1),
bp_mb real,
bp_mb_qc real,
bp_mb_f char(1)
);
GRANT SELECT on sm_minute to nobody;
GRANT ALL on sm_minute to ldm,mesonet;
create table sm_minute_2019(
CONSTRAINT __t2019_check
CHECK(valid >= '2019-01-01 00:00+00'::timestamptz
and valid < '2020-01-01 00:00+00'))
INHERITS (sm_minute);
CREATE UNIQUE INDEX sm_minute_2019_idx on sm_minute_2019(station, valid);
GRANT SELECT on sm_minute_2019 to nobody;
GRANT ALL on sm_minute_2019 to ldm,mesonet;
alter table sm_hourly add tair_c_max real;
alter table sm_hourly add tair_c_max_qc real;
alter table sm_hourly add tair_c_max_f char(1);
alter table sm_hourly add tair_c_min real;
alter table sm_hourly add tair_c_min_qc real;
alter table sm_hourly add tair_c_min_f char(1); |
CREATE SEQUENCE scale_measurements_id_seq;
CREATE TABLE scale_measurements (
id integer NOT NULL PRIMARY KEY DEFAULT nextval('scale_measurements_id_seq'::regclass),
datetime TIMESTAMP WITH TIME ZONE NOT NULL,
mass double precision NOT NULL,
fat_pct double precision NOT NULL,
water_pct double precision NOT NULL,
muscle_pct double precision NOT NULL,
bone_pct double precision NOT NULL
);
|
create or replace package body xlsx_parser is
/*
XLSX Parser by <NAME>
https://blogs.oracle.com/apex/easy-xlsx-parser%3a-just-with-sql-and-plsql
Aug 2018 Adapted to use ZIP_UTIL_PKG by <NAME>
*/
g_worksheets_path_prefix constant varchar2(14) := 'xl/worksheets/';
--==================================================================================================================
function get_date( p_xlsx_date_number in number ) return date is
begin
return
case when p_xlsx_date_number > 61
then DATE'1900-01-01' - 2 + p_xlsx_date_number
else DATE'1900-01-01' - 1 + p_xlsx_date_number
end;
end get_date;
--==================================================================================================================
procedure get_blob_content(
p_xlsx_name in varchar2,
p_xlsx_content in out nocopy blob )
is
begin
if p_xlsx_name is not null then
select blob_content into p_xlsx_content
from apex_application_files /*APEX 5.0: apex_application_temp_files*/
where name = p_xlsx_name;
end if;
exception
when no_data_found then
null;
end get_blob_content;
--==================================================================================================================
function extract_worksheet(
p_xlsx in blob,
p_worksheet_name in varchar2 ) return blob
is
l_worksheet blob;
begin
if p_xlsx is null or p_worksheet_name is null then
return null;
end if;
l_worksheet := zip_util_pkg.get_file /*APEX 5.0: apex_zip.get_file_content*/
(p_zipped_blob => p_xlsx
,p_file_name => g_worksheets_path_prefix || p_worksheet_name || '.xml' );
if l_worksheet is null then
raise_application_error(-20000, 'WORKSHEET "' || p_worksheet_name || '" DOES NOT EXIST');
end if;
return l_worksheet;
end extract_worksheet;
--==================================================================================================================
procedure extract_shared_strings(
p_xlsx in blob,
p_strings in out nocopy wwv_flow_global.vc_arr2 )
is
l_shared_strings blob;
begin
l_shared_strings := zip_util_pkg.get_file /*APEX 5.0: apex_zip.get_file_content*/
(p_zipped_blob => p_xlsx
,p_file_name => 'xl/sharedStrings.xml' );
if l_shared_strings is null then
return;
end if;
select shared_string
bulk collect into p_strings
from xmltable(
xmlnamespaces( default 'http://schemas.openxmlformats.org/spreadsheetml/2006/main' ),
'//si'
passing xmltype.createxml( l_shared_strings, nls_charset_id('AL32UTF8'), null )
columns
shared_string varchar2(4000) path 'string-join(//t/text()," ")' );
end extract_shared_strings;
--==================================================================================================================
procedure extract_date_styles(
p_xlsx in blob,
p_format_codes in out nocopy wwv_flow_global.vc_arr2 )
is
l_stylesheet blob;
begin
l_stylesheet := zip_util_pkg.get_file /*APEX 5.0: apex_zip.get_file_content*/
(p_zipped_blob => p_xlsx
,p_file_name => 'xl/styles.xml' );
if l_stylesheet is null then
return;
end if;
select lower( n.formatCode )
bulk collect into p_format_codes
from
xmltable(
xmlnamespaces( default 'http://schemas.openxmlformats.org/spreadsheetml/2006/main' ),
'//cellXfs/xf'
passing xmltype.createxml( l_stylesheet, nls_charset_id('AL32UTF8'), null )
columns
numFmtId number path '@numFmtId' ) s,
xmltable(
xmlnamespaces( default 'http://schemas.openxmlformats.org/spreadsheetml/2006/main' ),
'//numFmts/numFmt'
passing xmltype.createxml( l_stylesheet, nls_charset_id('AL32UTF8'), null )
columns
formatCode varchar2(255) path '@formatCode',
numFmtId number path '@numFmtId' ) n
where s.numFmtId = n.numFmtId ( + );
end extract_date_styles;
--==================================================================================================================
function convert_ref_to_col#( p_col_ref in varchar2 ) return pls_integer is
l_colpart varchar2(10);
l_linepart varchar2(10);
begin
l_colpart := replace(translate(p_col_ref,'1234567890','__________'), '_');
if length( l_colpart ) = 1 then
return ascii( l_colpart ) - 64;
else
return ( ascii( substr( l_colpart, 1, 1 ) ) - 64 ) * 26 + ( ascii( substr( l_colpart, 2, 1 ) ) - 64 );
end if;
end convert_ref_to_col#;
--==================================================================================================================
procedure reset_row( p_parsed_row in out nocopy xlsx_row_t ) is
begin
-- reset row
p_parsed_row.col01 := null; p_parsed_row.col02 := null; p_parsed_row.col03 := null; p_parsed_row.col04 := null; p_parsed_row.col05 := null;
p_parsed_row.col06 := null; p_parsed_row.col07 := null; p_parsed_row.col08 := null; p_parsed_row.col09 := null; p_parsed_row.col10 := null;
p_parsed_row.col11 := null; p_parsed_row.col12 := null; p_parsed_row.col13 := null; p_parsed_row.col14 := null; p_parsed_row.col15 := null;
p_parsed_row.col16 := null; p_parsed_row.col17 := null; p_parsed_row.col18 := null; p_parsed_row.col19 := null; p_parsed_row.col20 := null;
p_parsed_row.col21 := null; p_parsed_row.col22 := null; p_parsed_row.col23 := null; p_parsed_row.col24 := null; p_parsed_row.col25 := null;
p_parsed_row.col26 := null; p_parsed_row.col27 := null; p_parsed_row.col28 := null; p_parsed_row.col29 := null; p_parsed_row.col30 := null;
p_parsed_row.col31 := null; p_parsed_row.col32 := null; p_parsed_row.col33 := null; p_parsed_row.col34 := null; p_parsed_row.col35 := null;
p_parsed_row.col36 := null; p_parsed_row.col37 := null; p_parsed_row.col38 := null; p_parsed_row.col39 := null; p_parsed_row.col40 := null;
p_parsed_row.col41 := null; p_parsed_row.col42 := null; p_parsed_row.col43 := null; p_parsed_row.col44 := null; p_parsed_row.col45 := null;
p_parsed_row.col46 := null; p_parsed_row.col47 := null; p_parsed_row.col48 := null; p_parsed_row.col49 := null; p_parsed_row.col50 := null;
end reset_row;
--==================================================================================================================
function parse(
p_xlsx_name in varchar2 default null,
p_xlsx_content in blob default null,
p_worksheet_name in varchar2 default 'sheet1',
p_max_rows in number default 1000000 ) return xlsx_tab_t pipelined
is
l_worksheet blob;
l_xlsx_content blob;
l_shared_strings wwv_flow_global.vc_arr2;
l_format_codes wwv_flow_global.vc_arr2;
l_parsed_row xlsx_row_t;
l_first_row boolean := true;
l_value varchar2(32767);
l_line# pls_integer := 1;
l_real_col# pls_integer;
l_row_has_content boolean := false;
begin
if p_xlsx_content is null then
get_blob_content( p_xlsx_name, l_xlsx_content );
else
l_xlsx_content := p_xlsx_content;
end if;
if l_xlsx_content is null then
return;
end if;
l_worksheet := extract_worksheet(
p_xlsx => l_xlsx_content,
p_worksheet_name => p_worksheet_name );
extract_shared_strings(
p_xlsx => l_xlsx_content,
p_strings => l_shared_strings );
extract_date_styles(
p_xlsx => l_xlsx_content,
p_format_codes => l_format_codes );
-- the actual XML parsing starts here
for i in (
select
r.xlsx_row,
c.xlsx_col#,
c.xlsx_col,
c.xlsx_col_type,
c.xlsx_col_style,
c.xlsx_val
from xmltable(
xmlnamespaces( default 'http://schemas.openxmlformats.org/spreadsheetml/2006/main' ),
'//row'
passing xmltype.createxml( l_worksheet, nls_charset_id('AL32UTF8'), null )
columns
xlsx_row number path '@r',
xlsx_cols xmltype path '.'
) r, xmltable (
xmlnamespaces( default 'http://schemas.openxmlformats.org/spreadsheetml/2006/main' ),
'//c'
passing r.xlsx_cols
columns
xlsx_col# for ordinality,
xlsx_col varchar2(15) path '@r',
xlsx_col_type varchar2(15) path '@t',
xlsx_col_style varchar2(15) path '@s',
xlsx_val varchar2(4000) path 'v/text()'
) c
where p_max_rows is null or r.xlsx_row <= p_max_rows
) loop
if i.xlsx_col# = 1 then
l_parsed_row.line# := l_line#;
if not l_first_row then
pipe row( l_parsed_row );
l_line# := l_line# + 1;
reset_row( l_parsed_row );
l_row_has_content := false;
else
l_first_row := false;
end if;
end if;
if i.xlsx_col_type = 's' then
if l_shared_strings.exists( i.xlsx_val + 1) then
l_value := l_shared_strings( i.xlsx_val + 1);
else
l_value := '[Data Error: N/A]' ;
end if;
else
if l_format_codes.exists( i.xlsx_col_style + 1 ) and (
instr( l_format_codes( i.xlsx_col_style + 1 ), 'd' ) > 0 and
instr( l_format_codes( i.xlsx_col_style + 1 ), 'm' ) > 0 )
then
l_value := to_char( get_date( i.xlsx_val ), c_date_format );
else
l_value := i.xlsx_val;
end if;
end if;
pragma inline( convert_ref_to_col#, 'YES' );
l_real_col# := convert_ref_to_col#( i.xlsx_col );
if l_real_col# between 1 and 50 then
l_row_has_content := true;
end if;
-- we currently support 50 columns - but this can easily be increased. Just add additional lines
-- as follows:
-- when l_real_col# = {nn} then l_parsed_row.col{nn} := l_value;
case
when l_real_col# = 1 then l_parsed_row.col01 := l_value;
when l_real_col# = 2 then l_parsed_row.col02 := l_value;
when l_real_col# = 3 then l_parsed_row.col03 := l_value;
when l_real_col# = 4 then l_parsed_row.col04 := l_value;
when l_real_col# = 5 then l_parsed_row.col05 := l_value;
when l_real_col# = 6 then l_parsed_row.col06 := l_value;
when l_real_col# = 7 then l_parsed_row.col07 := l_value;
when l_real_col# = 8 then l_parsed_row.col08 := l_value;
when l_real_col# = 9 then l_parsed_row.col09 := l_value;
when l_real_col# = 10 then l_parsed_row.col10 := l_value;
when l_real_col# = 11 then l_parsed_row.col11 := l_value;
when l_real_col# = 12 then l_parsed_row.col12 := l_value;
when l_real_col# = 13 then l_parsed_row.col13 := l_value;
when l_real_col# = 14 then l_parsed_row.col14 := l_value;
when l_real_col# = 15 then l_parsed_row.col15 := l_value;
when l_real_col# = 16 then l_parsed_row.col16 := l_value;
when l_real_col# = 17 then l_parsed_row.col17 := l_value;
when l_real_col# = 18 then l_parsed_row.col18 := l_value;
when l_real_col# = 19 then l_parsed_row.col19 := l_value;
when l_real_col# = 20 then l_parsed_row.col20 := l_value;
when l_real_col# = 21 then l_parsed_row.col21 := l_value;
when l_real_col# = 22 then l_parsed_row.col22 := l_value;
when l_real_col# = 23 then l_parsed_row.col23 := l_value;
when l_real_col# = 24 then l_parsed_row.col24 := l_value;
when l_real_col# = 25 then l_parsed_row.col25 := l_value;
when l_real_col# = 26 then l_parsed_row.col26 := l_value;
when l_real_col# = 27 then l_parsed_row.col27 := l_value;
when l_real_col# = 28 then l_parsed_row.col28 := l_value;
when l_real_col# = 29 then l_parsed_row.col29 := l_value;
when l_real_col# = 30 then l_parsed_row.col30 := l_value;
when l_real_col# = 31 then l_parsed_row.col31 := l_value;
when l_real_col# = 32 then l_parsed_row.col32 := l_value;
when l_real_col# = 33 then l_parsed_row.col33 := l_value;
when l_real_col# = 34 then l_parsed_row.col34 := l_value;
when l_real_col# = 35 then l_parsed_row.col35 := l_value;
when l_real_col# = 36 then l_parsed_row.col36 := l_value;
when l_real_col# = 37 then l_parsed_row.col37 := l_value;
when l_real_col# = 38 then l_parsed_row.col38 := l_value;
when l_real_col# = 39 then l_parsed_row.col39 := l_value;
when l_real_col# = 40 then l_parsed_row.col40 := l_value;
when l_real_col# = 41 then l_parsed_row.col41 := l_value;
when l_real_col# = 42 then l_parsed_row.col42 := l_value;
when l_real_col# = 43 then l_parsed_row.col43 := l_value;
when l_real_col# = 44 then l_parsed_row.col44 := l_value;
when l_real_col# = 45 then l_parsed_row.col45 := l_value;
when l_real_col# = 46 then l_parsed_row.col46 := l_value;
when l_real_col# = 47 then l_parsed_row.col47 := l_value;
when l_real_col# = 48 then l_parsed_row.col48 := l_value;
when l_real_col# = 49 then l_parsed_row.col49 := l_value;
when l_real_col# = 50 then l_parsed_row.col50 := l_value;
else null;
end case;
end loop;
if l_row_has_content then
l_parsed_row.line# := l_line#;
pipe row( l_parsed_row );
end if;
return;
end parse;
--==================================================================================================================
function get_worksheets(
p_xlsx_content in blob default null,
p_xlsx_name in varchar2 default null ) return t_array_varchar2 /*apex_t_varchar2*/ pipelined
is
l_zip_files zip_util_pkg.t_file_list /*apex_zip.t_files*/;
l_xlsx_content blob;
begin
if p_xlsx_content is null then
get_blob_content( p_xlsx_name, l_xlsx_content );
else
l_xlsx_content := p_xlsx_content;
end if;
l_zip_files := zip_util_pkg.get_file_list /*apex_zip.get_files*/(
p_zipped_blob => l_xlsx_content );
for i in 1 .. l_zip_files.count loop
if substr( l_zip_files( i ), 1, length( g_worksheets_path_prefix ) ) = g_worksheets_path_prefix
and substr(l_zip_files(i), -4, 4) = '.xml' -- [jk] omit the ".rels" files
then
pipe row( rtrim( substr( l_zip_files ( i ), length( g_worksheets_path_prefix ) + 1 ), '.xml' ) );
end if;
end loop;
return;
end get_worksheets;
function get_worksheet_names(
p_xlsx_name in varchar2 default null,
p_xlsx_content in blob default null
) return xlsx_sheet_tab_t pipelined
is
l_xlsx_content blob;
l_workbook blob;
l_sheet xlsx_sheet_t;
begin
if p_xlsx_content is null then
get_blob_content( p_xlsx_name, l_xlsx_content );
else
l_xlsx_content := p_xlsx_content;
end if;
if l_xlsx_content is null then
return;
end if;
l_workbook := zip_util_pkg.get_file /*APEX 5.0: apex_zip.get_file_content*/
(p_zipped_blob => l_xlsx_content
,p_file_name => 'xl/workbook.xml' );
if l_workbook is null then
return;
end if;
for r in (
select r_id, sheet_name
from xmltable(
xmlnamespaces( default 'http://schemas.openxmlformats.org/spreadsheetml/2006/main',
'http://schemas.openxmlformats.org/officeDocument/2006/relationships' as "r"),
'/workbook/sheets/sheet'
passing xmltype.createxml( l_workbook, nls_charset_id('AL32UTF8'), null )
columns
r_id varchar2(100) path '@r:id'
,sheet_name varchar2(4000) path '@name' )
) loop
-- r.r_id will be something like 'rId5' which corresponds to "sheet5.xml"
l_sheet.worksheet := case when r.r_id like 'rId%' then 'sheet' || substr(r.r_id,4) else r.r_id end;
l_sheet.sheet_name := r.sheet_name;
pipe row (l_sheet);
end loop;
return;
end get_worksheet_names;
end xlsx_parser;
/
sho err |
<reponame>hbeatty/incubator-trafficcontrol
/*
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
-- +goose Up
-- SQL in section 'Up' is executed when this migration is applied
-- +goose StatementBegin
DO $$
DECLARE r record;
BEGIN
FOR r IN (SELECT indexname FROM pg_indexes WHERE tablename = 'server' AND indexname LIKE '%primary%')
LOOP
EXECUTE 'ALTER TABLE server DROP CONSTRAINT IF EXISTS '|| quote_ident(r.indexname) || ';';
END LOOP;
EXECUTE 'ALTER TABLE ONLY server ADD CONSTRAINT '|| quote_ident(r.indexname) || ' PRIMARY KEY (id);';
END
$$ LANGUAGE plpgsql;
-- +goose StatementEnd
-- +goose Down
-- SQL section 'Down' is executed when this migration is rolled back
-- +goose StatementBegin
DO $$
DECLARE r record;
BEGIN
FOR r IN (SELECT indexname FROM pg_indexes WHERE tablename = 'server' AND indexname LIKE '%primary%')
LOOP
EXECUTE 'ALTER TABLE server DROP CONSTRAINT IF EXISTS '|| quote_ident(r.indexname) || ';';
END LOOP;
EXECUTE 'ALTER TABLE ONLY server ADD CONSTRAINT '|| quote_ident(r.indexname) || ' PRIMARY KEY (id, cachegroup, type, status, profile);';
END
$$ LANGUAGE plpgsql;
-- +goose StatementEnd
|
<gh_stars>1-10
USE employee_trackerDB;
-- Query to display all employee information
SELECT employee.id AS 'ID',
employee.first_name AS 'First Name',
employee.last_name AS '<NAME>',
role.title AS 'Title',
LPAD(CONCAT('$', FORMAT(role.salary, 2)), 12, ' ') AS 'Salary',
department.name AS 'Department',
IFNULL(CONCAT(manager.last_name, ', ', manager.first_name), '') AS 'Manager'
FROM employee
LEFT JOIN role ON employee.role_id=role.id
LEFT JOIN department ON role.department_id=department.id
LEFT JOIN employee AS manager ON employee.manager_id=manager.id;
-- ORDER BY employee.last_name, employee.first_name
-- ORDER BY department.name, employee.id
-- ORDER BY manager.last_name, manager.first_name, employee.id
-- Query to display all roles
SELECT role.id AS 'ID', department.name AS 'Department', role.title AS 'Title',
LPAD(CONCAT('$', FORMAT(role.salary, 2)), 12, ' ') AS 'Salary',
IFNULL(CONCAT(employee.last_name, ', ', employee.first_name), '') AS 'Manager'
FROM role
LEFT JOIN department ON role.department_id=department.id
LEFT JOIN employee ON department.manager_id=employee.id
ORDER BY department.name, role.title;
-- Query to display all departments
SELECT department.id AS 'ID', department.name AS 'Name',
IFNULL(CONCAT(employee.last_name, ', ', employee.first_name), '') AS 'Manager'
FROM department
LEFT JOIN employee ON department.manager_id=employee.id
ORDER BY department.name;
-- Query to get list of employees, just names
SELECT employee.id AS 'ID', employee.last_name AS 'Last Name', employee.first_name AS 'First Name'
FROM employee
ORDER BY last_name, first_name;
-- Query to find personnel budget for each department
SELECT department.name AS 'Department', COUNT(employee.id) AS '# Employees',
LPAD(CONCAT('$', FORMAT(SUM(role.salary), 2)), 12, ' ') AS 'Personnel Budget'
FROM department
LEFT JOIN role ON department.id=role.department_id
LEFT JOIN employee ON role.id=employee.role_id
WHERE employee.id IS NOT NULL
GROUP BY department.id
ORDER BY department.name; |
-- 2021-10-01T14:02:03.941Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_Process (AccessLevel,AD_Client_ID,AD_Org_ID,AD_Process_ID,AllowProcessReRun,Classname,CopyFromProcess,Created,CreatedBy,EntityType,IsActive,IsApplySecuritySettings,IsBetaFunctionality,IsDirectPrint,IsFormatExcelFile,IsNotifyUserAfterExecution,IsOneInstanceOnly,IsReport,IsTranslateExcelHeaders,IsUseBPartnerLanguage,LockWaitTimeout,Name,PostgrestResponseFormat,RefreshAllAfterExecution,ShowHelp,SpreadsheetFormat,Type,Updated,UpdatedBy,Value) VALUES ('3',0,0,584915,'Y','de.metas.externalsystem.process.InvokeGRSSignumAction','N',TO_TIMESTAMP('2021-10-01 17:02:03','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.externalsystem','Y','N','N','N','Y','N','N','N','Y','Y',0,'Invoke GRS','json','N','N','xls','Java',TO_TIMESTAMP('2021-10-01 17:02:03','YYYY-MM-DD HH24:MI:SS'),100,'Call_external_system_GRSSignum')
;
-- 2021-10-01T14:02:03.941Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_Process_Trl (AD_Language,AD_Process_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,IsActive) SELECT l.AD_Language, t.AD_Process_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,'Y' FROM AD_Language l, AD_Process t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y') AND t.AD_Process_ID=584915 AND NOT EXISTS (SELECT 1 FROM AD_Process_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_ID=t.AD_Process_ID)
;
-- 2021-10-01T14:04:08.695Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_Reference (AD_Client_ID,AD_Org_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,IsOrderByValue,Name,Updated,UpdatedBy,ValidationType) VALUES (0,0,541419,TO_TIMESTAMP('2021-10-01 17:04:08','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.externalsystem','Y','N','External_Request GRSSignum',TO_TIMESTAMP('2021-10-01 17:04:08','YYYY-MM-DD HH24:MI:SS'),100,'L')
;
-- 2021-10-01T14:04:08.695Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_Reference_Trl (AD_Language,AD_Reference_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,IsActive) SELECT l.AD_Language, t.AD_Reference_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,'Y' FROM AD_Language l, AD_Reference t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y') AND t.AD_Reference_ID=541419 AND NOT EXISTS (SELECT 1 FROM AD_Reference_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Reference_ID=t.AD_Reference_ID)
;
-- 2021-10-01T14:05:29.716Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Reference_Trl SET Name='GRSSignum accepted operations',Updated=TO_TIMESTAMP('2021-10-01 17:05:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='en_US' AND AD_Reference_ID=541419
;
-- 2021-10-01T14:07:31.396Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value,ValueName) VALUES (0,0,542897,541419,TO_TIMESTAMP('2021-10-01 17:07:31','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.externalsystem','Y','Stop API',TO_TIMESTAMP('2021-10-01 17:07:31','YYYY-MM-DD HH24:MI:SS'),100,'disableRestAPI','Stop API')
;
-- 2021-10-01T14:07:31.396Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,IsActive) SELECT l.AD_Language, t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,'Y' FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y') AND t.AD_Ref_List_ID=542897 AND NOT EXISTS (SELECT 1 FROM AD_Ref_List_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Ref_List_ID=t.AD_Ref_List_ID)
;
-- 2021-10-01T14:07:48.262Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Ref_List_Trl SET Name='API Stoppen',Updated=TO_TIMESTAMP('2021-10-01 17:07:48','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='de_CH' AND AD_Ref_List_ID=542897
;
-- 2021-10-01T14:07:54.067Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Ref_List_Trl SET Name='API Stoppen',Updated=TO_TIMESTAMP('2021-10-01 17:07:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='de_DE' AND AD_Ref_List_ID=542897
;
-- 2021-10-01T14:08:03.393Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Ref_List_Trl SET Name='API Stoppen',Updated=TO_TIMESTAMP('2021-10-01 17:08:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='nl_NL' AND AD_Ref_List_ID=542897
;
-- 2021-10-01T14:10:13.823Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value,ValueName) VALUES (0,0,542898,541419,TO_TIMESTAMP('2021-10-01 17:10:13','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.externalsystem','Y','Start API',TO_TIMESTAMP('2021-10-01 17:10:13','YYYY-MM-DD HH24:MI:SS'),100,'enableRestAPI','Start API')
;
-- 2021-10-01T14:10:13.823Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,IsActive) SELECT l.AD_Language, t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,'Y' FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y') AND t.AD_Ref_List_ID=542898 AND NOT EXISTS (SELECT 1 FROM AD_Ref_List_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Ref_List_ID=t.AD_Ref_List_ID)
;
-- 2021-10-01T14:10:22.285Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Ref_List_Trl SET Name='API Starten',Updated=TO_TIMESTAMP('2021-10-01 17:10:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='de_CH' AND AD_Ref_List_ID=542898
;
-- 2021-10-01T14:10:26.903Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Ref_List_Trl SET Name='API Starten',Updated=TO_TIMESTAMP('2021-10-01 17:10:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='de_DE' AND AD_Ref_List_ID=542898
;
-- 2021-10-01T14:10:34.594Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Ref_List_Trl SET Name='API Starten',Updated=TO_TIMESTAMP('2021-10-01 17:10:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='nl_NL' AND AD_Ref_List_ID=542898
;
-- 2021-10-01T14:11:12.505Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Ref_List_Trl SET IsTranslated='Y',Updated=TO_TIMESTAMP('2021-10-01 17:11:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='de_CH' AND AD_Ref_List_ID=542898
;
-- 2021-10-01T14:11:15.631Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Ref_List_Trl SET IsTranslated='Y',Updated=TO_TIMESTAMP('2021-10-01 17:11:15','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='de_DE' AND AD_Ref_List_ID=542898
;
-- 2021-10-01T14:22:25.308Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Reference SET Name='External Request GRSSignum',Updated=TO_TIMESTAMP('2021-10-01 17:22:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID=541419
;
-- 2021-10-01T14:23:22.458Z
-- 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,AD_Reference_Value_ID,ColumnName,Created,CreatedBy,EntityType,FieldLength,IsActive,IsAutocomplete,IsCentrallyMaintained,IsEncrypted,IsMandatory,IsRange,Name,SeqNo,Updated,UpdatedBy) VALUES (0,578757,0,584915,542110,17,541326,'External_Request',TO_TIMESTAMP('2021-10-01 17:23:22','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.externalreference',0,'Y','N','Y','N','Y','N','Befehl',10,TO_TIMESTAMP('2021-10-01 17:23:22','YYYY-MM-DD HH24:MI:SS'),100)
;
-- 2021-10-01T14:23:22.458Z
-- 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,IsActive) 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,'Y' FROM AD_Language l, AD_Process_Para t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y') AND t.AD_Process_Para_ID=542110 AND NOT EXISTS (SELECT 1 FROM AD_Process_Para_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_Para_ID=t.AD_Process_Para_ID)
;
-- 2021-10-01T14:26:28.967Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Para SET AD_Reference_Value_ID=541419,Updated=TO_TIMESTAMP('2021-10-01 17:26:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=542110
;
-- 2021-10-01T14:27:13.972Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Para_Trl SET IsTranslated='Y',Updated=TO_TIMESTAMP('2021-10-01 17:27:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='de_DE' AND AD_Process_Para_ID=542110
;
-- 2021-10-01T14:28:09.453Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Para SET FieldLength=30,Updated=TO_TIMESTAMP('2021-10-01 17:28:09','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=542110
;
-- 2021-10-01T14:28:57.687Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_Table_Process (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Table_ID,AD_Table_Process_ID,Created,CreatedBy,EntityType,IsActive,Updated,UpdatedBy,WEBUI_DocumentAction,WEBUI_IncludedTabTopAction,WEBUI_ViewAction,WEBUI_ViewQuickAction,WEBUI_ViewQuickAction_Default) VALUES (0,0,584915,541576,541004,TO_TIMESTAMP('2021-10-01 17:28:57','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.externalsystem','Y',TO_TIMESTAMP('2021-10-01 17:28:57','YYYY-MM-DD HH24:MI:SS'),100,'Y','N','Y','N','N')
;
-- 2021-10-01T14:29:29.319Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_Table_Process (AD_Client_ID,AD_Org_ID,AD_Process_ID,AD_Table_ID,AD_Table_Process_ID,Created,CreatedBy,EntityType,IsActive,Updated,UpdatedBy,WEBUI_DocumentAction,WEBUI_IncludedTabTopAction,WEBUI_ViewAction,WEBUI_ViewQuickAction,WEBUI_ViewQuickAction_Default) VALUES (0,0,584915,541882,541005,TO_TIMESTAMP('2021-10-01 17:29:29','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.externalsystem','Y',TO_TIMESTAMP('2021-10-01 17:29:29','YYYY-MM-DD HH24:MI:SS'),100,'Y','N','Y','N','N')
;
-- 2021-10-01T14:35:35.718Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Ref_List_Trl SET IsTranslated='Y',Updated=TO_TIMESTAMP('2021-10-01 17:35:35','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='de_CH' AND AD_Ref_List_ID=542897
;
-- 2021-10-01T14:35:41.023Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Ref_List_Trl SET IsTranslated='Y',Updated=TO_TIMESTAMP('2021-10-01 17:35:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='de_DE' AND AD_Ref_List_ID=542897
;
-- 2021-10-01T14:38:05.563Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Ref_List_Trl SET IsTranslated='Y',Updated=TO_TIMESTAMP('2021-10-01 17:38:05','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='en_US' AND AD_Ref_List_ID=542897
;
-- 2021-10-01T14:44:06.563Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Ref_List SET Name='API Starten',Updated=TO_TIMESTAMP('2021-10-01 17:44:06','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=542898
;
-- 2021-10-01T14:45:38.637Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Ref_List SET Name='API Stoppen',Updated=TO_TIMESTAMP('2021-10-01 17:45:38','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=542897
;
/*
* #%L
* de.metas.externalsystem
* %%
* Copyright (C) 2021 metas GmbH
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program. If not, see
* <http://www.gnu.org/licenses/gpl-2.0.html>.
* #L%
*/
-- 2021-10-04T07:31:06.979Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process SET Description=NULL, Help=NULL, Name='GRS aufrufen',Updated=TO_TIMESTAMP('2021-10-04 10:31:06','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=584915
;
-- 2021-10-04T07:31:06.864Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Trl SET Name='GRS aufrufen',Updated=TO_TIMESTAMP('2021-10-04 10:31:06','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='de_DE' AND AD_Process_ID=584915
;
-- 2021-10-04T07:31:13.932Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Trl SET Name='GRS aufrufen',Updated=TO_TIMESTAMP('2021-10-04 10:31:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='de_CH' AND AD_Process_ID=584915
;
-- 2021-10-04T07:31:27.411Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Process_Trl SET Name='GRS aufrufen',Updated=TO_TIMESTAMP('2021-10-04 10:31:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='nl_NL' AND AD_Process_ID=584915
; |
<gh_stars>0
CREATE TABLE counter
(
id INT PRIMARY KEY NOT NULL,
sec1 INT,
min1 INT,
h1 INT
);
INSERT INTO `counter`(`id`, `sec1`, `min1`, `h1`) VALUES (1,0,0,0);
INSERT INTO `counter`(`id`, `sec1`, `min1`, `h1`) VALUES (2,0,0,0);
INSERT INTO `counter`(`id`, `sec1`, `min1`, `h1`) VALUES (3,0,0,0);
INSERT INTO `counter`(`id`, `sec1`, `min1`, `h1`) VALUES (4,0,0,0); |
<gh_stars>0
-- ---------------------------
-- Table structure for castle_doorupgrade
-- ---------------------------
CREATE TABLE IF NOT EXISTS castle_doorupgrade (
doorId INT NOT NULL default 0,
hp INT NOT NULL default 0,
pDef INT NOT NULL default 0,
mDef INT NOT NULL default 0,
PRIMARY KEY (doorId )
); |
<filename>resources/migrations/20151124160028-create-chord-progression-table.up.sql
CREATE TABLE IF NOT EXISTS chord_progressions (
chord_id SERIAL PRIMARY KEY,
chord_progression TEXT
);
--;;
|
#创建数据库
create database cishop20141117 charset utf8;
#选择数据库
use cishop20141117;
/*------------------------------------商品模块---------------------------------------*/
#创建商品类别表
create table cishop_category(
cat_id smallint unsigned not null auto_increment primary key comment '商品类别ID',
cat_name varchar(30) not null default '' comment '商品类别名称',
parent_id smallint unsigned not null default 0 comment '商品类别父ID',
cat_desc varchar(255) not null default '' comment '商品类别描述',
sort_order tinyint not null default 50 comment '排序依据',
unit varchar(15) not null default '' comment '单位',
is_show tinyint not null default 1 comment '是否显示,默认显示',
index pid(parent_id)
)engine=MyISAM charset=utf8;
#创建商品品牌表
create table cishop_brand(
brand_id smallint unsigned not null auto_increment primary key comment '商品品牌ID',
brand_name varchar(30) not null default '' comment '商品品牌名称',
brand_desc varchar(255) not null default '' comment '商品品牌描述',
url varchar(100) not null default '' comment '商品品牌网址',
logo varchar(50) not null default '' comment '品牌logo',
sort_order tinyint unsigned not null default 50 comment '商品品牌排序依据',
is_show tinyint not null default 1 comment '是否显示,默认显示'
)engine=MyISAM charset=utf8;
#创建商品类型表
create table cishop_goods_type(
type_id smallint unsigned not null auto_increment primary key comment '商品类型ID',
type_name varchar(50) not null default '' comment '商品类型名称'
)engine=MyISAM charset=utf8;
#创建商品属性表
create table cishop_attribute(
attr_id smallint unsigned not null auto_increment primary key comment '商品属性ID',
attr_name varchar(50) not null default '' comment '商品属性名称',
type_id smallint not null default 0 comment '商品属性所属类型ID',
attr_type tinyint not null default 1 comment '属性是否可选 0 为唯一,1为单选,2为多选',
attr_input_type tinyint not null default 1 comment '属性录入方式 0为手工录入,1为从列表中选择,2为文本域',
attr_value text comment '属性的值',
sort_order tinyint not null default 50 comment '属性排序依据',
index type_id(type_id)
)engine=MyISAM charset=utf8;
#创建商品表
create table cishop_goods(
goods_id int unsigned not null auto_increment primary key comment '商品ID',
goods_sn varchar(30) not null default '' comment '商品货号',
goods_name varchar(100) not null default '' comment '商品名称',
goods_brief varchar(255) not null default '' comment '商品简单描述',
goods_desc text comment '商品详情',
cat_id smallint unsigned not null default 0 comment '商品所属类别ID',
brand_id smallint unsigned not null default 0 comment '商品所属品牌ID',
market_price decimal(10,2) not null default 0 comment '市场价',
shop_price decimal(10,2) not null default 0 comment '本店价格',
promote_price decimal(10,2) not null default 0 comment '促销价格',
promote_start_time int unsigned not null default 0 comment '促销起始时间',
promote_end_time int unsigned not null default 0 comment '促销截止时间',
goods_img varchar(50) not null default '' comment '商品图片',
goods_thumb varchar(50) not null default '' comment '商品缩略图',
goods_number smallint unsigned not null default 0 comment '商品库存',
click_count int unsigned not null default 0 comment '点击次数',
type_id smallint unsigned not null default 0 comment '商品类型ID',
is_promote tinyint unsigned not null default 0 comment '是否促销,默认为0不促销',
is_best tinyint unsigned not null default 0 comment '是否精品,默认为0',
is_new tinyint unsigned not null default 0 comment '是否新品,默认为0',
is_hot tinyint unsigned not null default 0 comment '是否热卖,默认为0',
is_onsale tinyint unsigned not null default 1 comment '是否上架,默认为1',
add_time int unsigned not null default 0 comment '添加时间',
index cat_id(cat_id),
index brand_id(brand_id),
index type_id(type_id)
)engine=MyISAM charset=utf8;
#创建商品属性对应表
create table cishop_goods_attr(
goods_attr_id int unsigned not null auto_increment primary key comment '编号ID',
goods_id int unsigned not null default 0 comment '商品ID',
attr_id smallint unsigned not null default 0 comment '属性ID',
attr_value varchar(255) not null default '' comment '属性值',
attr_price decimal(10,2) not null default 0 comment '属性价格',
index goods_id(goods_id),
index attr_id(attr_id)
)engine=MyISAM charset=utf8;
#创建商品相册表
create table cishop_galary(
img_id int unsigned not null auto_increment primary key comment '图片编号',
goods_id int unsigned not null default 0 comment '商品ID',
img_url varchar(50) not null default '' comment '图片URL',
thumb_url varchar(50) not null default '' comment '缩略图URL',
img_desc varchar(50) not null default '' comment '图片描述',
index goods_id(goods_id)
)engine=MyISAM charset=utf8;
/*------------------------------------商品模块 end-----------------------------------*/
/*------------------------------------用户模块---------------------------------------*/
#创建用户表
create table cishop_user(
user_id int unsigned not null auto_increment primary key comment '用户编号',
user_name varchar(50) not null default '' comment '用户名',
email varchar(50) not null default '' comment '电子邮箱',
password char(32) not null default '' comment '用户密码,<PASSWORD>',
reg_time int unsigned not null default 0 comment '用户注册时间'
)engine=MyISAM charset=utf8;
#创建用户收货地址表
create table cishop_address(
address_id int unsigned not null auto_increment primary key comment '地址编号',
user_id int unsigned not null default 0 comment '地址所属用户ID',
consignee varchar(60) not null default '' comment '收货人姓名',
province smallint unsigned not null default 0 comment '省份,保存是ID',
city smallint unsigned not null default 0 comment '市',
district smallint unsigned not null default 0 comment '区',
street varchar(100) not null default '' comment '街道地址',
zipcode varchar(10) not null default '' comment '邮政编码',
telephone varchar(20) not null default '' comment '电话',
mobile varchar(20) not null default '' comment '移动电话',
index user_id(user_id)
)engine=MyISAM charset=utf8;
#创建地区表,包括省市区三级
create table cishop_region(
region_id smallint unsigned not null auto_increment primary key comment '地区ID',
parent_id smallint unsigned not null default 0 comment '父ID',
region_name varchar(30) not null default '' comment '地区名称',
region_type tinyint unsigned not null default 1 comment '地区类型 1 省份 2 市 3 区(县)'
)engine=MyISAM charset=utf8;
#创建购物车表
create table cishop_cart(
cart_id int unsigned not null auto_increment primary key comment '购物车ID',
user_id int unsigned not null default 0 comment '用户ID',
goods_id int unsigned not null default 0 comment '商品ID',
goods_name varchar(100) not null default '' comment '商品名称',
goods_img varchar(50) not null default '' comment '商品图片',
goods_attr varchar(255) not null default '' comment '商品属性',
goods_number smallint unsigned not null default 1 comment '商品数量',
market_price decimal(10,2) not null default 0 comment '市场价格',
goods_price decimal(10,2) not null default 0 comment '成交价格',
subtotal decimal(10,2) not null default 0 comment '小计'
)engine=MyISAM charset=utf8;
/*------------------------------------用户模块 end-----------------------------------*/
/*------------------------------------订单模块---------------------------------------*/
#创建送货方式表
create table cishop_shipping(
shipping_id tinyint unsigned not null auto_increment primary key comment '编号',
shipping_name varchar(30) not null default '' comment '送货方式名称',
shipping_desc varchar(255) not null default '' comment '送货方式描述',
shipping_fee decimal(10,2) not null default 0 comment '送货费用',
enabled tinyint unsigned not null default 1 comment '是否启用,默认启用'
)engine=MyISAM charset=utf8;
#创建支付方式表
create table cishop_payment(
pay_id tinyint unsigned not null auto_increment primary key comment '支付方式ID',
pay_name varchar(30) not null default '' comment '支付方式名称',
pay_desc varchar(255) not null default '' comment '支付方式描述',
enabled tinyint unsigned not null default 1 comment '是否启用,默认启用'
)engine=MyISAM charset=utf8;
#创建订单表
create table cishop_order(
order_id int unsigned not null auto_increment primary key comment '订单ID',
order_sn varchar(30) not null default '' comment '订单号',
user_id int unsigned not null default 0 comment '用户ID',
address_id int unsigned not null default 0 comment '收货地址id',
order_status tinyint unsigned not null default 0 comment '订单状态 1 待付款 2 待发货 3 已发货 4 已完成',
postscripts varchar(255) not null default '' comment '订单附言',
shipping_id tinyint not null default 0 comment '送货方式ID',
pay_id tinyint not null default 0 comment '支付方式ID',
goods_amount decimal(10,2) not null default 0 comment '商品总金额',
order_amount decimal(10,2) not null default 0 comment '订单总金额',
order_time int unsigned not null default 0 comment '下单时间',
index user_id(user_id),
index address_id(address_id),
index pay_id(pay_id),
index shipping_id(shipping_id)
)engine=MyISAM charset=utf8;
#创建订单明细表,即商品订单关系表(多对多)
create table cishop_order_goods(
rec_id int unsigned not null auto_increment primary key comment '编号',
order_id int unsigned not null default 0 comment '订单ID',
goods_id int unsigned not null default 0 comment '商品ID',
goods_name varchar(100) not null default '' comment '商品名称',
goods_img varchar(50) not null default '' comment '商品图片',
shop_price decimal(10,2) not null default 0 comment '商品价格',
goods_price decimal(10,2) not null default 0 comment '成交价格',
goods_number smallint unsigned not null default 1 comment '购买数量',
goods_attr varchar(255) not null default '' comment '商品属性',
subtotal decimal(10,2) not null default 0 comment '商品小计'
)engine=MyISAM charset=utf8;
/*------------------------------------订单模块 end-----------------------------------*/
#创建后台管理员表
create table cishop_admin(
admin_id smallint unsigned not null auto_increment primary key comment '管理员编号',
admin_name varchar(30) not null default '' comment '管理员名称',
password char(32) not null default '' comment '<PASSWORD>',
email varchar(50) not null default '' comment '管理员邮箱',
add_time int unsigned not null default 0 comment '添加时间'
)engine=MyISAM charset=utf8;
#插入一条记录作为管理员
insert into cishop_admin(admin_name,password,email) values('admin','<PASSWORD>','<EMAIL>');
insert into cishop_admin(admin_name,password,email) values('admin','admin','<EMAIL>');
#类别部分,先插入部分数据,做测试
insert into cishop_category(cat_name,parent_id) values('手机类型',0);
insert into cishop_category(cat_name,parent_id) values('充值卡',0);
insert into cishop_category(cat_name,parent_id) values('手机配件',0);
insert into cishop_category(cat_name,parent_id) values('CDMA手机',1);
insert into cishop_category(cat_name,parent_id) values('3G手机',1);
insert into cishop_category(cat_name,parent_id) values('iphone 4s',5);
insert into cishop_category(cat_name,parent_id) values('联通手机充值卡',2);
insert into cishop_category(cat_name,parent_id) values('移动手机充值卡',2);
insert into cishop_category(cat_name,parent_id) values('耳机',3);
insert into cishop_category(cat_name,parent_id) values('电池',3);
|
DROP TABLE fy_activity;
CREATE TABLE `fy_activity` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '活动表',
`main_pic` varchar(255) DEFAULT NULL COMMENT '活动主图',
`desc` varchar(255) DEFAULT NULL COMMENT '描述',
`name` varchar(32) DEFAULT NULL COMMENT '活动名称',
`start_date` int(11) DEFAULT NULL COMMENT '活动开始时间 ',
`end_date` int(11) DEFAULT NULL COMMENT '活动结束时间',
`url` varchar(255) DEFAULT NULL COMMENT '活动链接',
`detail` text COMMENT '活动详情描述',
`lottery_name` varchar(255) DEFAULT NULL COMMENT '奖券名称',
`lottery_id` int(11) DEFAULT NULL COMMENT '关联奖券id',
`update_time` int(11) DEFAULT NULL,
`create_time` int(11) DEFAULT NULL,
`status` tinyint(4) DEFAULT '1' COMMENT '0否1是',
`isdelete` tinyint(1) DEFAULT '0' COMMENT '0否1是',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE fy_admin_access;
CREATE TABLE `fy_admin_access` (
`role_id` smallint(6) unsigned NOT NULL DEFAULT '0',
`node_id` smallint(6) unsigned NOT NULL DEFAULT '0',
`level` tinyint(1) unsigned NOT NULL DEFAULT '0',
`pid` smallint(6) unsigned NOT NULL DEFAULT '0',
KEY `groupId` (`role_id`),
KEY `nodeId` (`node_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
INSERT INTO fy_admin_access VALUES("3","157","3","153");
INSERT INTO fy_admin_access VALUES("3","156","3","153");
INSERT INTO fy_admin_access VALUES("3","155","3","153");
INSERT INTO fy_admin_access VALUES("3","153","2","1");
INSERT INTO fy_admin_access VALUES("3","149","3","145");
INSERT INTO fy_admin_access VALUES("3","148","3","145");
INSERT INTO fy_admin_access VALUES("3","147","3","145");
INSERT INTO fy_admin_access VALUES("3","146","3","145");
INSERT INTO fy_admin_access VALUES("3","145","2","1");
INSERT INTO fy_admin_access VALUES("3","134","3","130");
INSERT INTO fy_admin_access VALUES("3","133","3","130");
INSERT INTO fy_admin_access VALUES("3","132","3","130");
INSERT INTO fy_admin_access VALUES("3","131","3","130");
INSERT INTO fy_admin_access VALUES("3","130","2","1");
INSERT INTO fy_admin_access VALUES("3","127","3","123");
INSERT INTO fy_admin_access VALUES("3","126","3","123");
INSERT INTO fy_admin_access VALUES("3","125","3","123");
INSERT INTO fy_admin_access VALUES("3","124","3","123");
INSERT INTO fy_admin_access VALUES("3","123","2","1");
INSERT INTO fy_admin_access VALUES("3","121","3","117");
INSERT INTO fy_admin_access VALUES("3","120","3","117");
INSERT INTO fy_admin_access VALUES("3","119","3","117");
INSERT INTO fy_admin_access VALUES("3","118","3","117");
INSERT INTO fy_admin_access VALUES("3","117","2","1");
INSERT INTO fy_admin_access VALUES("3","116","3","112");
INSERT INTO fy_admin_access VALUES("3","115","3","112");
INSERT INTO fy_admin_access VALUES("3","114","3","112");
INSERT INTO fy_admin_access VALUES("3","113","3","112");
INSERT INTO fy_admin_access VALUES("3","112","2","1");
INSERT INTO fy_admin_access VALUES("3","111","3","86");
INSERT INTO fy_admin_access VALUES("3","110","3","86");
INSERT INTO fy_admin_access VALUES("3","109","3","86");
INSERT INTO fy_admin_access VALUES("3","108","3","86");
INSERT INTO fy_admin_access VALUES("3","86","2","1");
INSERT INTO fy_admin_access VALUES("3","89","3","85");
INSERT INTO fy_admin_access VALUES("3","88","3","85");
INSERT INTO fy_admin_access VALUES("3","87","3","85");
INSERT INTO fy_admin_access VALUES("3","85","2","1");
INSERT INTO fy_admin_access VALUES("3","78","3","75");
INSERT INTO fy_admin_access VALUES("3","77","3","75");
INSERT INTO fy_admin_access VALUES("2","1","1","0");
INSERT INTO fy_admin_access VALUES("2","2","2","1");
INSERT INTO fy_admin_access VALUES("2","51","3","2");
INSERT INTO fy_admin_access VALUES("2","52","3","2");
INSERT INTO fy_admin_access VALUES("2","53","3","2");
INSERT INTO fy_admin_access VALUES("2","54","3","2");
INSERT INTO fy_admin_access VALUES("2","55","3","2");
INSERT INTO fy_admin_access VALUES("2","64","3","2");
INSERT INTO fy_admin_access VALUES("2","65","3","2");
INSERT INTO fy_admin_access VALUES("2","66","3","2");
INSERT INTO fy_admin_access VALUES("2","67","3","2");
INSERT INTO fy_admin_access VALUES("2","68","3","2");
INSERT INTO fy_admin_access VALUES("2","69","3","2");
INSERT INTO fy_admin_access VALUES("2","70","3","2");
INSERT INTO fy_admin_access VALUES("2","3","2","1");
INSERT INTO fy_admin_access VALUES("2","45","3","3");
INSERT INTO fy_admin_access VALUES("2","46","3","3");
INSERT INTO fy_admin_access VALUES("2","47","3","3");
INSERT INTO fy_admin_access VALUES("2","48","3","3");
INSERT INTO fy_admin_access VALUES("2","49","3","3");
INSERT INTO fy_admin_access VALUES("2","50","2","3");
INSERT INTO fy_admin_access VALUES("2","4","2","1");
INSERT INTO fy_admin_access VALUES("2","38","3","4");
INSERT INTO fy_admin_access VALUES("2","39","3","4");
INSERT INTO fy_admin_access VALUES("2","40","3","4");
INSERT INTO fy_admin_access VALUES("2","41","3","4");
INSERT INTO fy_admin_access VALUES("2","42","3","4");
INSERT INTO fy_admin_access VALUES("2","43","3","4");
INSERT INTO fy_admin_access VALUES("2","44","3","4");
INSERT INTO fy_admin_access VALUES("2","5","2","1");
INSERT INTO fy_admin_access VALUES("2","29","3","5");
INSERT INTO fy_admin_access VALUES("2","34","3","5");
INSERT INTO fy_admin_access VALUES("2","35","3","5");
INSERT INTO fy_admin_access VALUES("2","36","3","5");
INSERT INTO fy_admin_access VALUES("2","37","3","5");
INSERT INTO fy_admin_access VALUES("2","6","2","1");
INSERT INTO fy_admin_access VALUES("2","7","3","6");
INSERT INTO fy_admin_access VALUES("2","8","3","6");
INSERT INTO fy_admin_access VALUES("2","9","2","1");
INSERT INTO fy_admin_access VALUES("2","32","3","9");
INSERT INTO fy_admin_access VALUES("2","33","3","9");
INSERT INTO fy_admin_access VALUES("2","10","2","1");
INSERT INTO fy_admin_access VALUES("2","11","2","1");
INSERT INTO fy_admin_access VALUES("2","12","2","1");
INSERT INTO fy_admin_access VALUES("2","13","2","1");
INSERT INTO fy_admin_access VALUES("2","14","2","1");
INSERT INTO fy_admin_access VALUES("2","15","2","1");
INSERT INTO fy_admin_access VALUES("2","16","2","1");
INSERT INTO fy_admin_access VALUES("2","17","2","1");
INSERT INTO fy_admin_access VALUES("2","18","2","1");
INSERT INTO fy_admin_access VALUES("2","19","2","1");
INSERT INTO fy_admin_access VALUES("2","20","2","1");
INSERT INTO fy_admin_access VALUES("2","21","2","1");
INSERT INTO fy_admin_access VALUES("2","27","3","21");
INSERT INTO fy_admin_access VALUES("2","28","3","21");
INSERT INTO fy_admin_access VALUES("2","30","3","21");
INSERT INTO fy_admin_access VALUES("2","31","3","21");
INSERT INTO fy_admin_access VALUES("2","22","2","1");
INSERT INTO fy_admin_access VALUES("2","25","3","22");
INSERT INTO fy_admin_access VALUES("2","26","3","22");
INSERT INTO fy_admin_access VALUES("2","23","2","1");
INSERT INTO fy_admin_access VALUES("2","24","3","23");
INSERT INTO fy_admin_access VALUES("2","59","2","1");
INSERT INTO fy_admin_access VALUES("2","56","2","1");
INSERT INTO fy_admin_access VALUES("2","60","3","56");
INSERT INTO fy_admin_access VALUES("2","61","4","60");
INSERT INTO fy_admin_access VALUES("2","62","5","61");
INSERT INTO fy_admin_access VALUES("2","80","2","1");
INSERT INTO fy_admin_access VALUES("2","81","3","80");
INSERT INTO fy_admin_access VALUES("2","82","3","80");
INSERT INTO fy_admin_access VALUES("2","83","3","80");
INSERT INTO fy_admin_access VALUES("2","101","3","80");
INSERT INTO fy_admin_access VALUES("2","90","3","80");
INSERT INTO fy_admin_access VALUES("2","100","3","80");
INSERT INTO fy_admin_access VALUES("2","99","3","80");
INSERT INTO fy_admin_access VALUES("2","98","3","80");
INSERT INTO fy_admin_access VALUES("2","97","3","80");
INSERT INTO fy_admin_access VALUES("2","96","3","80");
INSERT INTO fy_admin_access VALUES("2","75","2","1");
INSERT INTO fy_admin_access VALUES("2","103","3","75");
INSERT INTO fy_admin_access VALUES("2","102","3","75");
INSERT INTO fy_admin_access VALUES("2","76","3","75");
INSERT INTO fy_admin_access VALUES("2","77","3","75");
INSERT INTO fy_admin_access VALUES("2","78","3","75");
INSERT INTO fy_admin_access VALUES("2","107","3","75");
INSERT INTO fy_admin_access VALUES("2","85","2","1");
INSERT INTO fy_admin_access VALUES("2","104","3","85");
INSERT INTO fy_admin_access VALUES("2","87","3","85");
INSERT INTO fy_admin_access VALUES("2","88","3","85");
INSERT INTO fy_admin_access VALUES("2","89","3","85");
INSERT INTO fy_admin_access VALUES("2","105","3","85");
INSERT INTO fy_admin_access VALUES("2","106","3","85");
INSERT INTO fy_admin_access VALUES("2","86","2","1");
INSERT INTO fy_admin_access VALUES("2","108","3","86");
INSERT INTO fy_admin_access VALUES("2","109","3","86");
INSERT INTO fy_admin_access VALUES("2","110","3","86");
INSERT INTO fy_admin_access VALUES("2","111","3","86");
INSERT INTO fy_admin_access VALUES("2","112","2","1");
INSERT INTO fy_admin_access VALUES("2","113","3","112");
INSERT INTO fy_admin_access VALUES("2","114","3","112");
INSERT INTO fy_admin_access VALUES("2","115","3","112");
INSERT INTO fy_admin_access VALUES("2","116","3","112");
INSERT INTO fy_admin_access VALUES("2","117","2","1");
INSERT INTO fy_admin_access VALUES("2","118","3","117");
INSERT INTO fy_admin_access VALUES("2","119","3","117");
INSERT INTO fy_admin_access VALUES("2","120","3","117");
INSERT INTO fy_admin_access VALUES("2","121","3","117");
INSERT INTO fy_admin_access VALUES("2","123","2","1");
INSERT INTO fy_admin_access VALUES("2","124","3","123");
INSERT INTO fy_admin_access VALUES("2","125","3","123");
INSERT INTO fy_admin_access VALUES("2","126","3","123");
INSERT INTO fy_admin_access VALUES("2","127","3","123");
INSERT INTO fy_admin_access VALUES("2","128","2","1");
INSERT INTO fy_admin_access VALUES("2","129","3","128");
INSERT INTO fy_admin_access VALUES("2","130","2","1");
INSERT INTO fy_admin_access VALUES("2","131","3","130");
INSERT INTO fy_admin_access VALUES("2","132","3","130");
INSERT INTO fy_admin_access VALUES("2","133","3","130");
INSERT INTO fy_admin_access VALUES("2","134","3","130");
INSERT INTO fy_admin_access VALUES("2","135","2","1");
INSERT INTO fy_admin_access VALUES("2","136","3","135");
INSERT INTO fy_admin_access VALUES("2","137","3","135");
INSERT INTO fy_admin_access VALUES("2","138","3","135");
INSERT INTO fy_admin_access VALUES("2","139","3","135");
INSERT INTO fy_admin_access VALUES("2","140","2","1");
INSERT INTO fy_admin_access VALUES("2","141","3","140");
INSERT INTO fy_admin_access VALUES("2","142","3","140");
INSERT INTO fy_admin_access VALUES("2","143","3","140");
INSERT INTO fy_admin_access VALUES("2","145","2","1");
INSERT INTO fy_admin_access VALUES("2","146","3","145");
INSERT INTO fy_admin_access VALUES("2","147","3","145");
INSERT INTO fy_admin_access VALUES("2","148","3","145");
INSERT INTO fy_admin_access VALUES("2","149","3","145");
INSERT INTO fy_admin_access VALUES("2","150","2","1");
INSERT INTO fy_admin_access VALUES("2","151","2","1");
INSERT INTO fy_admin_access VALUES("2","152","2","1");
INSERT INTO fy_admin_access VALUES("2","153","2","1");
INSERT INTO fy_admin_access VALUES("3","76","3","75");
INSERT INTO fy_admin_access VALUES("3","75","2","1");
INSERT INTO fy_admin_access VALUES("3","96","3","80");
INSERT INTO fy_admin_access VALUES("3","90","3","80");
INSERT INTO fy_admin_access VALUES("3","83","3","80");
INSERT INTO fy_admin_access VALUES("3","82","3","80");
INSERT INTO fy_admin_access VALUES("3","81","3","80");
INSERT INTO fy_admin_access VALUES("3","80","2","1");
INSERT INTO fy_admin_access VALUES("3","1","1","0");
INSERT INTO fy_admin_access VALUES("3","160","3","153");
INSERT INTO fy_admin_access VALUES("3","161","3","153");
INSERT INTO fy_admin_access VALUES("4","293","3","292");
INSERT INTO fy_admin_access VALUES("4","292","2","1");
INSERT INTO fy_admin_access VALUES("1","245","3","3");
INSERT INTO fy_admin_access VALUES("1","244","3","3");
INSERT INTO fy_admin_access VALUES("1","243","3","3");
INSERT INTO fy_admin_access VALUES("1","241","3","3");
INSERT INTO fy_admin_access VALUES("1","240","3","3");
INSERT INTO fy_admin_access VALUES("1","50","2","3");
INSERT INTO fy_admin_access VALUES("1","49","3","3");
INSERT INTO fy_admin_access VALUES("1","48","3","3");
INSERT INTO fy_admin_access VALUES("1","47","3","3");
INSERT INTO fy_admin_access VALUES("1","46","3","3");
INSERT INTO fy_admin_access VALUES("1","3","2","1");
INSERT INTO fy_admin_access VALUES("1","1","1","0");
INSERT INTO fy_admin_access VALUES("4","275","3","159");
INSERT INTO fy_admin_access VALUES("4","183","3","159");
INSERT INTO fy_admin_access VALUES("4","182","3","159");
INSERT INTO fy_admin_access VALUES("4","181","3","159");
INSERT INTO fy_admin_access VALUES("4","180","3","159");
INSERT INTO fy_admin_access VALUES("4","179","3","159");
INSERT INTO fy_admin_access VALUES("4","178","3","159");
INSERT INTO fy_admin_access VALUES("4","177","3","159");
INSERT INTO fy_admin_access VALUES("4","159","2","1");
INSERT INTO fy_admin_access VALUES("4","285","3","158");
INSERT INTO fy_admin_access VALUES("4","175","3","158");
INSERT INTO fy_admin_access VALUES("4","174","3","158");
INSERT INTO fy_admin_access VALUES("4","173","3","158");
INSERT INTO fy_admin_access VALUES("4","172","3","158");
INSERT INTO fy_admin_access VALUES("4","171","3","158");
INSERT INTO fy_admin_access VALUES("4","170","3","158");
INSERT INTO fy_admin_access VALUES("4","169","3","158");
INSERT INTO fy_admin_access VALUES("4","168","3","158");
INSERT INTO fy_admin_access VALUES("4","158","2","1");
INSERT INTO fy_admin_access VALUES("4","287","3","154");
INSERT INTO fy_admin_access VALUES("4","276","3","154");
INSERT INTO fy_admin_access VALUES("4","192","3","154");
INSERT INTO fy_admin_access VALUES("4","191","3","154");
INSERT INTO fy_admin_access VALUES("4","190","3","154");
INSERT INTO fy_admin_access VALUES("4","189","3","154");
INSERT INTO fy_admin_access VALUES("4","188","3","154");
INSERT INTO fy_admin_access VALUES("4","187","3","154");
INSERT INTO fy_admin_access VALUES("4","186","3","154");
INSERT INTO fy_admin_access VALUES("4","185","3","154");
INSERT INTO fy_admin_access VALUES("4","184","3","154");
INSERT INTO fy_admin_access VALUES("4","154","2","1");
INSERT INTO fy_admin_access VALUES("4","298","3","153");
INSERT INTO fy_admin_access VALUES("4","297","3","153");
INSERT INTO fy_admin_access VALUES("4","289","3","153");
INSERT INTO fy_admin_access VALUES("4","167","3","153");
INSERT INTO fy_admin_access VALUES("4","166","3","153");
INSERT INTO fy_admin_access VALUES("4","165","3","153");
INSERT INTO fy_admin_access VALUES("4","164","3","153");
INSERT INTO fy_admin_access VALUES("4","163","3","153");
INSERT INTO fy_admin_access VALUES("4","162","3","153");
INSERT INTO fy_admin_access VALUES("4","161","3","153");
INSERT INTO fy_admin_access VALUES("4","160","3","153");
INSERT INTO fy_admin_access VALUES("4","157","3","153");
INSERT INTO fy_admin_access VALUES("4","156","3","153");
INSERT INTO fy_admin_access VALUES("4","155","3","153");
INSERT INTO fy_admin_access VALUES("4","153","2","1");
INSERT INTO fy_admin_access VALUES("4","277","3","152");
INSERT INTO fy_admin_access VALUES("4","217","3","152");
INSERT INTO fy_admin_access VALUES("4","212","3","152");
INSERT INTO fy_admin_access VALUES("4","209","3","152");
INSERT INTO fy_admin_access VALUES("4","206","3","152");
INSERT INTO fy_admin_access VALUES("4","203","3","152");
INSERT INTO fy_admin_access VALUES("4","196","3","152");
INSERT INTO fy_admin_access VALUES("4","195","3","152");
INSERT INTO fy_admin_access VALUES("4","194","3","152");
INSERT INTO fy_admin_access VALUES("4","193","3","152");
INSERT INTO fy_admin_access VALUES("4","152","2","1");
INSERT INTO fy_admin_access VALUES("4","278","3","151");
INSERT INTO fy_admin_access VALUES("4","274","3","151");
INSERT INTO fy_admin_access VALUES("4","273","3","151");
INSERT INTO fy_admin_access VALUES("4","272","3","151");
INSERT INTO fy_admin_access VALUES("4","271","3","151");
INSERT INTO fy_admin_access VALUES("4","270","3","151");
INSERT INTO fy_admin_access VALUES("4","269","3","151");
INSERT INTO fy_admin_access VALUES("4","268","3","151");
INSERT INTO fy_admin_access VALUES("4","267","3","151");
INSERT INTO fy_admin_access VALUES("4","266","3","151");
INSERT INTO fy_admin_access VALUES("4","151","2","1");
INSERT INTO fy_admin_access VALUES("4","288","3","150");
INSERT INTO fy_admin_access VALUES("4","282","3","150");
INSERT INTO fy_admin_access VALUES("4","281","3","150");
INSERT INTO fy_admin_access VALUES("4","280","3","150");
INSERT INTO fy_admin_access VALUES("4","279","3","150");
INSERT INTO fy_admin_access VALUES("4","150","2","1");
INSERT INTO fy_admin_access VALUES("4","283","3","135");
INSERT INTO fy_admin_access VALUES("4","254","3","135");
INSERT INTO fy_admin_access VALUES("4","251","3","135");
INSERT INTO fy_admin_access VALUES("4","250","3","135");
INSERT INTO fy_admin_access VALUES("4","249","3","135");
INSERT INTO fy_admin_access VALUES("4","248","3","135");
INSERT INTO fy_admin_access VALUES("4","246","3","135");
INSERT INTO fy_admin_access VALUES("4","176","3","135");
INSERT INTO fy_admin_access VALUES("4","139","3","135");
INSERT INTO fy_admin_access VALUES("4","138","3","135");
INSERT INTO fy_admin_access VALUES("4","137","3","135");
INSERT INTO fy_admin_access VALUES("4","136","3","135");
INSERT INTO fy_admin_access VALUES("4","135","2","1");
INSERT INTO fy_admin_access VALUES("4","286","3","130");
INSERT INTO fy_admin_access VALUES("4","242","3","130");
INSERT INTO fy_admin_access VALUES("4","228","3","130");
INSERT INTO fy_admin_access VALUES("4","225","3","130");
INSERT INTO fy_admin_access VALUES("4","222","3","130");
INSERT INTO fy_admin_access VALUES("4","134","3","130");
INSERT INTO fy_admin_access VALUES("4","133","3","130");
INSERT INTO fy_admin_access VALUES("4","132","3","130");
INSERT INTO fy_admin_access VALUES("4","131","3","130");
INSERT INTO fy_admin_access VALUES("4","130","2","1");
INSERT INTO fy_admin_access VALUES("4","252","3","128");
INSERT INTO fy_admin_access VALUES("4","202","3","128");
INSERT INTO fy_admin_access VALUES("4","201","3","128");
INSERT INTO fy_admin_access VALUES("4","200","3","128");
INSERT INTO fy_admin_access VALUES("4","199","3","128");
INSERT INTO fy_admin_access VALUES("4","198","3","128");
INSERT INTO fy_admin_access VALUES("4","197","3","128");
INSERT INTO fy_admin_access VALUES("4","129","3","128");
INSERT INTO fy_admin_access VALUES("4","128","2","1");
INSERT INTO fy_admin_access VALUES("4","127","3","123");
INSERT INTO fy_admin_access VALUES("4","126","3","123");
INSERT INTO fy_admin_access VALUES("4","125","3","123");
INSERT INTO fy_admin_access VALUES("4","124","3","123");
INSERT INTO fy_admin_access VALUES("4","123","2","1");
INSERT INTO fy_admin_access VALUES("4","208","3","117");
INSERT INTO fy_admin_access VALUES("4","207","3","117");
INSERT INTO fy_admin_access VALUES("4","205","3","117");
INSERT INTO fy_admin_access VALUES("4","204","3","117");
INSERT INTO fy_admin_access VALUES("4","121","3","117");
INSERT INTO fy_admin_access VALUES("4","120","3","117");
INSERT INTO fy_admin_access VALUES("4","119","3","117");
INSERT INTO fy_admin_access VALUES("4","118","3","117");
INSERT INTO fy_admin_access VALUES("4","117","2","1");
INSERT INTO fy_admin_access VALUES("4","291","3","112");
INSERT INTO fy_admin_access VALUES("4","216","3","112");
INSERT INTO fy_admin_access VALUES("4","215","3","112");
INSERT INTO fy_admin_access VALUES("4","214","3","112");
INSERT INTO fy_admin_access VALUES("4","213","3","112");
INSERT INTO fy_admin_access VALUES("4","211","3","112");
INSERT INTO fy_admin_access VALUES("4","210","3","112");
INSERT INTO fy_admin_access VALUES("4","116","3","112");
INSERT INTO fy_admin_access VALUES("4","115","3","112");
INSERT INTO fy_admin_access VALUES("4","114","3","112");
INSERT INTO fy_admin_access VALUES("4","113","3","112");
INSERT INTO fy_admin_access VALUES("4","290","3","112");
INSERT INTO fy_admin_access VALUES("4","112","2","1");
INSERT INTO fy_admin_access VALUES("4","111","3","86");
INSERT INTO fy_admin_access VALUES("4","110","3","86");
INSERT INTO fy_admin_access VALUES("4","109","3","86");
INSERT INTO fy_admin_access VALUES("4","108","3","86");
INSERT INTO fy_admin_access VALUES("4","86","2","1");
INSERT INTO fy_admin_access VALUES("4","232","3","75");
INSERT INTO fy_admin_access VALUES("4","231","3","75");
INSERT INTO fy_admin_access VALUES("4","230","3","75");
INSERT INTO fy_admin_access VALUES("4","229","3","75");
INSERT INTO fy_admin_access VALUES("4","107","3","75");
INSERT INTO fy_admin_access VALUES("4","78","3","75");
INSERT INTO fy_admin_access VALUES("4","77","3","75");
INSERT INTO fy_admin_access VALUES("4","76","3","75");
INSERT INTO fy_admin_access VALUES("4","102","3","75");
INSERT INTO fy_admin_access VALUES("4","103","3","75");
INSERT INTO fy_admin_access VALUES("4","75","2","1");
INSERT INTO fy_admin_access VALUES("4","96","3","80");
INSERT INTO fy_admin_access VALUES("4","97","3","80");
INSERT INTO fy_admin_access VALUES("4","98","3","80");
INSERT INTO fy_admin_access VALUES("4","99","3","80");
INSERT INTO fy_admin_access VALUES("4","100","3","80");
INSERT INTO fy_admin_access VALUES("4","90","3","80");
INSERT INTO fy_admin_access VALUES("4","101","3","80");
INSERT INTO fy_admin_access VALUES("4","83","3","80");
INSERT INTO fy_admin_access VALUES("4","82","3","80");
INSERT INTO fy_admin_access VALUES("4","81","3","80");
INSERT INTO fy_admin_access VALUES("4","80","2","1");
INSERT INTO fy_admin_access VALUES("4","24","3","23");
INSERT INTO fy_admin_access VALUES("4","23","2","1");
INSERT INTO fy_admin_access VALUES("4","26","3","22");
INSERT INTO fy_admin_access VALUES("4","25","3","22");
INSERT INTO fy_admin_access VALUES("4","22","2","1");
INSERT INTO fy_admin_access VALUES("4","8","3","6");
INSERT INTO fy_admin_access VALUES("4","7","3","6");
INSERT INTO fy_admin_access VALUES("4","6","2","1");
INSERT INTO fy_admin_access VALUES("4","1","1","0");
DROP TABLE fy_admin_group;
CREATE TABLE `fy_admin_group` (
`id` smallint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL DEFAULT '',
`icon` varchar(255) NOT NULL DEFAULT '' COMMENT 'icon小图标',
`sort` int(11) unsigned NOT NULL DEFAULT '50',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1',
`remark` varchar(255) NOT NULL DEFAULT '',
`isdelete` tinyint(1) unsigned NOT NULL DEFAULT '0',
`create_time` int(11) unsigned NOT NULL DEFAULT '0',
`update_time` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `sort` (`sort`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
INSERT INTO fy_admin_group VALUES("1","系统管理","","2","1","","0","1450752856","1481180175");
INSERT INTO fy_admin_group VALUES("2","工具","&#xe616;","3","0","","0","1476016712","1532419172");
DROP TABLE fy_admin_node;
CREATE TABLE `fy_admin_node` (
`id` smallint(6) unsigned NOT NULL AUTO_INCREMENT,
`pid` smallint(6) unsigned NOT NULL DEFAULT '0',
`group_id` tinyint(3) unsigned NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '',
`title` varchar(50) NOT NULL DEFAULT '',
`remark` varchar(255) NOT NULL DEFAULT '',
`level` tinyint(1) unsigned NOT NULL DEFAULT '0',
`type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '节点类型,1-控制器 | 0-方法',
`sort` smallint(6) unsigned NOT NULL DEFAULT '50',
`status` tinyint(1) NOT NULL DEFAULT '0',
`isdelete` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `level` (`level`),
KEY `pid` (`pid`),
KEY `status` (`status`),
KEY `name` (`name`),
KEY `isdelete` (`isdelete`),
KEY `sort` (`sort`),
KEY `group_id` (`group_id`)
) ENGINE=MyISAM AUTO_INCREMENT=310 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
INSERT INTO fy_admin_node VALUES("1","0","1","Admin","后台管理","后台管理,不可更改","1","1","1","1","0");
INSERT INTO fy_admin_node VALUES("2","1","1","AdminGroup","分组管理"," ","2","1","1","1","0");
INSERT INTO fy_admin_node VALUES("3","1","1","AdminNode","节点管理"," ","2","1","2","1","0");
INSERT INTO fy_admin_node VALUES("4","1","1","AdminRole","角色管理"," ","2","1","3","1","0");
INSERT INTO fy_admin_node VALUES("5","1","1","AdminUser","用户管理","","2","1","4","1","0");
INSERT INTO fy_admin_node VALUES("6","1","0","Index","首页","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("7","6","0","welcome","欢迎页","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("8","6","0","index","未定义","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("9","1","2","Generate","代码自动生成","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("10","1","2","Demo/excel","Excel一键导出","","2","0","2","1","0");
INSERT INTO fy_admin_node VALUES("11","1","2","Demo/download","下载","","2","0","3","1","0");
INSERT INTO fy_admin_node VALUES("12","1","2","Demo/downloadImage","远程图片下载","","2","0","4","1","0");
INSERT INTO fy_admin_node VALUES("13","1","2","Demo/mail","邮件发送","","2","0","5","1","0");
INSERT INTO fy_admin_node VALUES("14","1","2","Demo/qiniu","七牛上传","","2","0","6","1","0");
INSERT INTO fy_admin_node VALUES("15","1","2","Demo/hashids","ID加密","","2","0","7","1","0");
INSERT INTO fy_admin_node VALUES("16","1","2","Demo/layer","丰富弹层","","2","0","8","1","0");
INSERT INTO fy_admin_node VALUES("17","1","2","Demo/tableFixed","表格溢出","","2","0","9","1","0");
INSERT INTO fy_admin_node VALUES("18","1","2","Demo/ueditor","百度编辑器","","2","0","10","1","0");
INSERT INTO fy_admin_node VALUES("19","1","2","Demo/imageUpload","图片上传","","2","0","11","1","0");
INSERT INTO fy_admin_node VALUES("20","1","2","Demo/qrcode","二维码生成","","2","0","12","1","0");
INSERT INTO fy_admin_node VALUES("21","1","1","NodeMap","节点图","","2","1","5","1","0");
INSERT INTO fy_admin_node VALUES("22","1","1","WebLog","操作日志","","2","1","6","1","0");
INSERT INTO fy_admin_node VALUES("23","1","1","LoginLog","登录日志","","2","1","7","1","0");
INSERT INTO fy_admin_node VALUES("59","1","2","one.two.three.Four/index","多级节点","","2","0","50","1","0");
INSERT INTO fy_admin_node VALUES("24","23","0","index","首页","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("25","22","0","index","列表","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("26","22","0","detail","详情","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("27","21","0","load","自动导入","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("28","21","0","index","首页","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("30","21","0","edit","编辑","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("31","21","0","deleteForever","永久删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("32","9","0","index","首页","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("33","9","0","generate","生成方法","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("34","5","0","password","修改密码","","3","0","49","1","0");
INSERT INTO fy_admin_node VALUES("35","5","0","index","首页","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("36","5","0","add","添加","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("37","5","0","edit","编辑","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("38","4","0","user","用户列表","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("39","4","0","access","授权","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("40","4","0","index","首页","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("41","4","0","add","添加","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("42","4","0","edit","编辑","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("43","4","0","forbid","默认禁用操作","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("44","4","0","resume","默认恢复操作","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("290","112","0","getskudata","获取sku数据","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("46","3","0","index","首页","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("47","3","0","add","添加","","3","0","49","1","0");
INSERT INTO fy_admin_node VALUES("48","3","0","edit","编辑","","3","0","48","1","0");
INSERT INTO fy_admin_node VALUES("49","3","0","forbid","默认禁用操作","","3","0","47","1","0");
INSERT INTO fy_admin_node VALUES("50","3","0","resume","默认恢复操作","","2","0","0","1","0");
INSERT INTO fy_admin_node VALUES("51","2","0","index","首页","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("52","2","0","add","添加","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("53","2","0","edit","编辑","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("54","2","0","forbid","默认禁用操作","","3","0","51","1","0");
INSERT INTO fy_admin_node VALUES("55","2","0","resume","默认恢复操作","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("56","1","2","one","一级菜单","","2","1","13","1","0");
INSERT INTO fy_admin_node VALUES("60","56","2","two","二级","","3","1","50","1","0");
INSERT INTO fy_admin_node VALUES("61","60","2","three","三级菜单","","4","1","50","1","0");
INSERT INTO fy_admin_node VALUES("62","61","2","Four","四级菜单","","5","1","50","1","0");
INSERT INTO fy_admin_node VALUES("104","85","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("64","2","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("65","2","0","recycleBin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("66","2","0","delete","默认删除操作","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("67","2","0","recycle","从回收站恢复","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("68","2","0","deleteForever","永久删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("69","2","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("70","2","0","saveOrder","保存排序","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("103","75","0","resume","默认恢复操作","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("80","1","1","Notice","公告管理","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("102","75","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("75","1","1","SildeShow","轮播图","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("76","75","0","add","添加","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("77","75","0","edit","编辑","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("78","75","0","index","首页","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("81","80","0","add","添加","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("82","80","0","index","首页","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("83","80","0","edit","编辑","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("101","80","0","resume","默认恢复操作","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("85","1","1","Modular","前端功能模块","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("86","1","1","GoodsClass","商品分类","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("87","85","0","index","列表","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("88","85","0","add","添加","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("89","85","0","edit","编辑","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("90","80","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("100","80","0","recycle","从回收站恢复","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("99","80","0","deleteForever","永久删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("98","80","0","recycleBin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("97","80","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("96","80","0","forbid","默认禁用操作","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("105","85","0","resume","默认恢复操作","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("106","85","0","forbid","默认禁用操作","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("107","75","0","forbid","默认禁用操作","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("108","86","0","index","首页","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("109","86","0","add","添加","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("110","86","0","edit","编辑","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("111","86","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("112","1","1","Goods","商品管理","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("113","112","0","index","首页","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("114","112","0","add","添加","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("115","112","0","edit","编辑","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("116","112","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("117","1","1","Brand","商品品牌管理","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("118","117","0","index","首页","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("119","117","0","add","添加","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("120","117","0","edit","编辑","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("121","117","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("123","1","0","Upload","图片上传","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("124","123","0","index","首页","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("125","123","0","upload","文件上传","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("126","123","0","remote","远程图片抓取","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("127","123","0","listImage","图片列表","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("128","1","1","Customer","会员管理","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("129","128","0","index","列表","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("130","1","1","Lottery","奖券中心","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("131","130","0","add","添加","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("132","130","0","index","首页","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("133","130","0","edit","修改","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("134","130","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("135","1","1","CustomerTask","会员任务管理","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("136","135","0","index","列表","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("137","135","0","add","添加","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("138","135","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("139","135","0","edit","编辑","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("140","1","1","CustomerGrade","会员等级管理","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("141","140","0","index","列表","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("142","140","0","add","新增","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("143","140","0","edit","编辑","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("294","292","0","recycleBin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("145","1","1","CustomerGradeDesc","会员等级规则","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("146","145","0","index","列表","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("147","145","0","add","添加","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("148","145","0","edit","编辑","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("149","145","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("150","1","1","LotteryLog","奖券领取详情","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("151","1","1","Activity","活动管理","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("152","1","1","Transaction","交易设置","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("153","1","1","Order","订单管理","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("154","1","1","Message","消息中心","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("155","153","0","index","列表","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("156","153","0","edit","编辑","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("157","153","0","orderDetail","订单详情","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("158","1","1","GoodsComment","商品评论管理","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("159","1","1","WxPayRefundLog","交易记录","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("160","153","0","addPost","订单发货","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("161","153","0","refund","订单退款","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("162","153","0","editTotalPrice","修改订单总价","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("163","153","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("164","153","0","recycleBin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("165","153","0","deleteForever","永久删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("166","153","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("167","153","0","recycle","还原","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("168","158","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("169","158","0","forbid","禁用","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("170","158","0","recyclebin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("171","158","0","resume","恢复","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("172","158","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("173","158","0","deleteForever","彻底删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("174","158","0","recycle","还原","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("175","158","0","returncomment","回复","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("176","135","0","detail","详情","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("177","159","0","forbid","禁用","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("178","159","0","recyclebin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("179","159","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("180","159","0","resume","恢复","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("181","159","0","deleteForever","彻底删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("182","159","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("183","159","0","recycle","还原","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("184","154","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("185","154","0","add","添加","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("186","154","0","forbid","禁用","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("187","154","0","resume","恢复","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("188","154","0","recyclebin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("189","154","0","edit","编辑","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("190","154","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("191","154","0","deleteForever","彻底删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("192","154","0","recycle","还原","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("193","152","0","add","添加","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("194","152","0","eidt","编辑","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("195","152","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("196","152","0","forbid","禁用","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("197","128","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("198","128","0","recycleBin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("199","128","0","excel","导出excel","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("200","128","0","recycle","从回收站还原","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("201","128","0","deleteForever","永久删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("202","128","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("203","152","0","recyclebin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("204","117","0","recycleBin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("205","117","0","deleteForever","永久删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("206","152","0","resume","恢复","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("207","117","0","recycle","从回收站还原","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("208","117","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("209","152","0","deleteForever","彻底删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("210","112","0","forbid","禁用","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("211","112","0","resume","恢复","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("212","152","0","recycle","还原","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("213","112","0","recycleBin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("214","112","0","recycle","从回收站还原","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("215","112","0","deleteForever","永久删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("216","112","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("217","152","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("222","130","0","recyclebin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("223","85","0","recycleBin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("224","85","0","recycle","从回收站还原","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("225","130","0","resume","还原","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("226","85","0","deleteForever","永久删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("227","85","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("228","130","0","deleteForever","彻底删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("229","75","0","recycleBin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("230","75","0","recycle","从回收站还原","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("231","75","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("232","75","0","deleteForever","永久删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("233","5","0","forbid","禁用","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("234","5","0","resume","恢复","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("235","4","0","recycleBin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("236","4","0","recycle","从回收站还原","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("237","4","0","deleteForever","永久删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("238","4","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("293","292","0","index","列表","","3","0","51","1","0");
INSERT INTO fy_admin_node VALUES("239","4","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("240","3","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("241","3","0","recycleBin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("242","130","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("243","3","0","recycle","从回收站还原","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("244","3","0","deleteForever","永久删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("245","3","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("246","135","0","resume","恢复","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("247","21","0","add","添加","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("248","135","0","recycleBin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("249","135","0","recycle","还原","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("250","135","0","deleteForever","彻底删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("292","1","1","useLottery","代金券核销记录","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("291","112","0","upDownTip","上架下架提醒","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("251","135","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("252","128","0","detail","详情","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("253","45","1","edit","编辑","","4","0","50","1","0");
INSERT INTO fy_admin_node VALUES("254","135","0","excel","导出","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("255","140","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("256","140","0","recycleBin","回收站","","3","1","50","1","0");
INSERT INTO fy_admin_node VALUES("257","140","0","recycle","还原","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("258","140","0","deleteForever","彻底删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("259","140","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("260","145","0","forbid","禁用","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("261","145","0","resume","恢复","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("262","145","0","recycleBin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("263","145","0","recycle","还原","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("264","145","0","deleteForever","彻底删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("265","145","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("266","151","0","add","添加","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("267","151","0","forbid","禁用","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("268","151","0","resume","恢复","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("269","151","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("270","151","0","recycleBin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("271","151","0","edit","编辑","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("272","151","0","recycle","还原","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("273","151","0","deleteForever","彻底删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("274","151","0","clear","清空回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("275","159","0","index","列表","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("276","154","0","index","列表","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("277","152","0","index","列表","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("278","151","0","index","列表","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("279","150","0","index","列表","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("280","150","0","add","添加","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("281","150","0","forbid","禁用","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("282","150","0","resume","恢复","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("283","135","0","forbid","禁用","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("289","153","0","afterSaleHandle","售后处理","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("285","158","0","index","列表","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("286","130","0","editStatus","发行","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("287","154","0","sendUser","发送","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("288","150","0","detail","领取详情","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("295","292","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("296","1","1","GiftBag","礼包管理","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("297","153","0","shopSure","商家退货确认收货","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("298","153","0","shopsSendGoods","商家售后确认发货","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("299","1","1","CustomerRight","会员权益管理","","2","1","50","1","0");
INSERT INTO fy_admin_node VALUES("300","299","0","index","列表","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("301","299","0","add","添加","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("302","299","0","edit","编辑","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("303","299","0","forbid","禁用","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("304","299","0","resume","恢复","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("305","299","0","delete","删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("306","299","0","recycleBin","回收站","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("307","299","0","recycle","从回收站恢复","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("308","299","0","deleteForever","永久删除","","3","0","50","1","0");
INSERT INTO fy_admin_node VALUES("309","299","0","clear","清空回收站","","3","0","50","1","0");
DROP TABLE fy_admin_node_load;
CREATE TABLE `fy_admin_node_load` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`title` varchar(255) NOT NULL DEFAULT '' COMMENT '标题',
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '名称',
`status` tinyint(4) unsigned NOT NULL DEFAULT '1' COMMENT '状态',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='节点快速导入';
INSERT INTO fy_admin_node_load VALUES("4","编辑","edit","1");
INSERT INTO fy_admin_node_load VALUES("5","添加","add","1");
INSERT INTO fy_admin_node_load VALUES("6","首页","index","1");
INSERT INTO fy_admin_node_load VALUES("7","删除","delete","1");
DROP TABLE fy_admin_role;
CREATE TABLE `fy_admin_role` (
`id` smallint(6) unsigned NOT NULL AUTO_INCREMENT,
`pid` smallint(6) unsigned NOT NULL DEFAULT '0' COMMENT '父级id',
`name` varchar(20) NOT NULL DEFAULT '' COMMENT '名称',
`remark` varchar(255) NOT NULL DEFAULT '' COMMENT '备注',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态',
`isdelete` tinyint(1) unsigned NOT NULL DEFAULT '0',
`create_time` int(11) unsigned NOT NULL DEFAULT '0',
`update_time` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `parentId` (`pid`),
KEY `status` (`status`),
KEY `isdelete` (`isdelete`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
INSERT INTO fy_admin_role VALUES("1","0","领导组"," ","1","0","1208784792","1254325558");
INSERT INTO fy_admin_role VALUES("2","0","网编组"," ","1","0","1215496283","1454049929");
INSERT INTO fy_admin_role VALUES("3","0","test","testsartsrt","1","0","1527663705","1527663705");
INSERT INTO fy_admin_role VALUES("4","0","welcome","市场部","1","0","1533115093","1533115093");
INSERT INTO fy_admin_role VALUES("5","0","啊啊啊","","1","1","1534732490","1534732490");
DROP TABLE fy_admin_role_user;
CREATE TABLE `fy_admin_role_user` (
`role_id` mediumint(9) unsigned DEFAULT NULL,
`user_id` char(32) DEFAULT NULL,
KEY `group_id` (`role_id`),
KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
INSERT INTO fy_admin_role_user VALUES("5","23");
INSERT INTO fy_admin_role_user VALUES("2","4");
INSERT INTO fy_admin_role_user VALUES("2","2");
INSERT INTO fy_admin_role_user VALUES("4","21");
INSERT INTO fy_admin_role_user VALUES("4","20");
INSERT INTO fy_admin_role_user VALUES("4","23");
DROP TABLE fy_admin_user;
CREATE TABLE `fy_admin_user` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`account` char(32) NOT NULL DEFAULT '',
`realname` varchar(255) NOT NULL DEFAULT '' COMMENT '真实姓名',
`password` char(32) NOT NULL DEFAULT '',
`last_login_time` int(11) unsigned NOT NULL DEFAULT '0',
`last_login_ip` char(15) NOT NULL DEFAULT '',
`login_count` mediumint(8) unsigned NOT NULL DEFAULT '0',
`email` varchar(50) NOT NULL DEFAULT '',
`mobile` char(11) NOT NULL DEFAULT '',
`remark` varchar(255) NOT NULL DEFAULT '',
`status` tinyint(1) unsigned NOT NULL DEFAULT '50',
`isdelete` tinyint(1) unsigned NOT NULL DEFAULT '0',
`create_time` int(11) unsigned NOT NULL DEFAULT '0',
`update_time` int(11) unsigned NOT NULL DEFAULT '0',
`sex` tinyint(1) DEFAULT '1' COMMENT '1男0女',
`wechat_num` varchar(50) DEFAULT NULL COMMENT '微信号可用于转款',
`balance` decimal(10,2) DEFAULT '0.00' COMMENT '余额',
PRIMARY KEY (`id`),
KEY `accountpassword` (`account`,`password`)
) ENGINE=MyISAM AUTO_INCREMENT=24 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
INSERT INTO fy_admin_user VALUES("1","admin","超级管理员","e10adc3949ba59abbe56e057f20f883e","1535772170","172.16.58.3","720","<EMAIL>","13121126169","我是超级管理员","1","0","1222907803","1451033528","0","","0.00");
INSERT INTO fy_admin_user VALUES("2","demo","测试","e10adc3949ba59abbe56e057f20f883e","1532331682","10.110.111.23","15","","13111111111","","0","0","1476777133","1477399793","1","weixinnichen","0.00");
INSERT INTO fy_admin_user VALUES("3","test1","罗正波","e10adc3949ba59abbe56e057f20f883e","1530351402","10.110.111.46","11","<EMAIL>","18285111561","test","0","0","1527663753","1527663753","1","luozhengbo9850","0.00");
INSERT INTO fy_admin_user VALUES("4","123456","123333","fcea920f7412b5da7be0cf42b8c93759","1529564512","10.110.111.36","1","<EMAIL>","","","0","0","1529549152","1529549152","1","","0.00");
INSERT INTO fy_admin_user VALUES("21","jyf","江永飞","e10adc3949ba59abbe56e057f20f883e","1535706284","172.16.31.10","2","","","","1","0","1533866369","1533866369","1","","0.01");
INSERT INTO fy_admin_user VALUES("20","welcome","泛亚","e10adc3949ba59abbe56e057f20f883e","1535590162","172.16.31.10","23","","","","1","0","1533806651","1533806651","1","","0.00");
INSERT INTO fy_admin_user VALUES("23","fy","测试商户","e10adc3949ba59abbe56e057f20f883e","1534732619","172.16.31.10","6","","","","1","0","1534469233","1534469233","1","","0.00");
DROP TABLE fy_admin_user_customer;
CREATE TABLE `fy_admin_user_customer` (
`user_id` mediumint(9) unsigned DEFAULT NULL,
`customer_id` char(32) DEFAULT NULL,
KEY `group_id` (`user_id`),
KEY `user_id` (`customer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
INSERT INTO fy_admin_user_customer VALUES("23","123");
INSERT INTO fy_admin_user_customer VALUES("21","136");
INSERT INTO fy_admin_user_customer VALUES("23","119");
INSERT INTO fy_admin_user_customer VALUES("20","120");
DROP TABLE fy_after_sale_following;
CREATE TABLE `fy_after_sale_following` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '售后跟踪表',
`goods_id` int(11) NOT NULL COMMENT '售后商品id ',
`ogid` int(11) NOT NULL COMMENT 'order_goods关联id',
`mobile` varchar(12) NOT NULL COMMENT '用户联系电话',
`order_id` varchar(64) NOT NULL COMMENT '订单id',
`openid` varchar(255) NOT NULL COMMENT '售后用户',
`after_status` tinyint(4) DEFAULT NULL COMMENT '状态0未申请1,申请中2不同意,,4维修中5换货中,6商家发货中,7用户确认收货,8同意',
`after_sale_reson` varchar(255) DEFAULT NULL COMMENT '售后原因',
`after_sale_type` tinyint(1) DEFAULT NULL COMMENT '售后类型1换货2,维修3,退款/退货',
`after_sale_ask` varchar(255) DEFAULT NULL COMMENT '售后要求',
`after_sale_remark` varchar(255) DEFAULT NULL COMMENT '备注',
`after_sale_pic` text COMMENT '售后图片',
`handle_yes_no_time` int(11) DEFAULT NULL COMMENT '同意货拒绝时间',
`handle_yes_no_user` varchar(255) DEFAULT NULL COMMENT '处理人',
`shop_wuliu_address` text COMMENT '商户地址',
`shop_sure_get_goods` tinyint(1) DEFAULT NULL COMMENT '1商家确认收货',
`shop_sure_get_time` int(11) DEFAULT NULL COMMENT '商家确认收货时间',
`apply_time` int(11) DEFAULT NULL COMMENT '申请时间',
`refused_reason` varchar(255) DEFAULT NULL COMMENT '拒绝售后理由',
`handle_time` int(11) DEFAULT NULL COMMENT '处理时间',
`user_wuliu_type_order` varchar(255) DEFAULT NULL COMMENT '用户物流单号',
`moren_address` text COMMENT '默认寄回地址',
`huan_wei_handle_time` int(11) DEFAULT NULL COMMENT '确认收货时间换货维修',
`send_time` int(11) DEFAULT NULL COMMENT '商家发货时间',
`send_wuliu_type` varchar(255) DEFAULT NULL COMMENT '发送物流类型',
`send_wuliu_order` varchar(255) DEFAULT NULL COMMENT '发送物流单号',
`yes_or_no` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
INSERT INTO fy_after_sale_following VALUES("1","1","37","18285111561","1441217402201808291344524540","omQYXwNAT5uC15TQqMGxajJzqo4s","8","ffff","3","ddd","","","1535523797","","贵州省贵阳市云岩区大西门海文小学旁","1","1535523866","1535523589","","1535523866","dfsefd1234567098765","{\"id\":2,\"uid\":3,\"name\":\"\\u770b\\u89c1\\u4e86\",\"mobile\":\"18285111561\",\"address\":\"\\u5317\\u4eac\\u5e02\\u4e30\\u53f0\\u533a\\u5357\\u82d1\\u8857\\u9053\",\"street\":\"\\u54e6\\u54e6\\u54e6\\u91cc\\u54af\\u6234\\u83ab\\u54ed\\u5462\",\"status\":1,\"addtime\":1535421884,\"updatetime\":1535421884}","","","","","1");
INSERT INTO fy_after_sale_following VALUES("2","1","38","18285111561","1441217402201808291433183541","omQYXwNAT5uC15TQqMGxajJzqo4s","1","wertyw","1","ert","","","","","","","","1535525152","","1535525152","","{\"id\":2,\"uid\":3,\"name\":\"\\u770b\\u89c1\\u4e86\",\"mobile\":\"18285111561\",\"address\":\"\\u5317\\u4eac\\u5e02\\u4e30\\u53f0\\u533a\\u5357\\u82d1\\u8857\\u9053\",\"street\":\"\\u54e6\\u54e6\\u54e6\\u91cc\\u54af\\u6234\\u83ab\\u54ed\\u5462\",\"status\":1,\"addtime\":1535421884,\"updatetime\":1535421884}","","","","","0");
INSERT INTO fy_after_sale_following VALUES("3","1","1","13765805489","1441217402201808311656478916","omQYXwM8TEkiBZR7Ldm891OOWbNQ","1","不要了","3","","","","","","","","","1535706860","","1535706860","","{\"id\":2,\"uid\":2,\"name\":\"\\u6bb5\\u6b22\",\"mobile\":\"13765805489\",\"address\":\"\\u5317\\u4eac\\u5e02\\u4e1c\\u57ce\\u533a\\u4e1c\\u534e\\u95e8\\u8857\\u9053\",\"street\":\"\\u4e5f\\u662f\",\"status\":1,\"addtime\":1535705798,\"updatetime\":1535705798}","","","","","0");
DROP TABLE fy_brand;
CREATE TABLE `fy_brand` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL COMMENT '品牌名称',
`pic` varchar(255) DEFAULT NULL COMMENT '图片',
`desc` varchar(255) DEFAULT NULL,
`user_id` int(11) NOT NULL COMMENT '所属用户',
`update_time` int(11) DEFAULT NULL,
`create_time` int(11) DEFAULT NULL,
`isdelete` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;
INSERT INTO fy_brand VALUES("15","ONLY","/pic/uploads/20180817/4708e60a8d639063a68d3621e431afce.png","","20","1534471133","1534471133","0");
INSERT INTO fy_brand VALUES("16","ochirly","/pic/uploads/20180817/0d9222085bdc8a62b30753a9d685191b.png","","21","1534472464","1534472464","0");
INSERT INTO fy_brand VALUES("17","Lee","/pic/uploads/20180817/24566dbf09a88d562f9709b94ea479eb.png","","23","1534473367","1534473367","0");
INSERT INTO fy_brand VALUES("18","李宁","/pic/uploads/20180817/2412232686f7bbcc2e8861c8848a066a.png","","21","1534474516","1534474516","0");
INSERT INTO fy_brand VALUES("19","叮当猫","/pic/uploads/20180820/04b70532101f2e32bc80bf2beca7e1b5.jpg","","20","1534732108","1534730915","0");
INSERT INTO fy_brand VALUES("20","甜可果园","/pic/uploads/20180828/68c227a06d53ab34c46c55efdf2b163d.png","","21","1535418871","1535418871","0");
INSERT INTO fy_brand VALUES("21","易果生鲜","/pic/uploads/20180828/a8a3dde9ae76534705e8b932f3dc2e1c.png","","20","1535419391","1535419391","0");
DROP TABLE fy_car;
CREATE TABLE `fy_car` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '购物车表',
`goods_id` int(11) NOT NULL COMMENT '商品id',
`uid` int(11) DEFAULT NULL COMMENT '用户id',
`openid` varchar(255) DEFAULT NULL COMMENT 'openid',
`goods_num` smallint(10) NOT NULL COMMENT '商品数量',
`update_time` int(11) DEFAULT NULL COMMENT '修改时间',
`create_time` int(11) DEFAULT NULL COMMENT '添加时间',
`status` tinyint(1) DEFAULT '1' COMMENT '该条商品的状态1表示未结算的商品0表示结算的商品',
`detail` text COMMENT '商品详情json存储',
`sku_id` int(10) DEFAULT NULL COMMENT 'skuid',
`show_status` tinyint(1) DEFAULT '1' COMMENT '默认显示,0否',
`val` varchar(255) DEFAULT NULL COMMENT '值组合',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
INSERT INTO fy_car VALUES("3","1","","omQYXwAasNeXdGSMymd91487Ds1g","1","1535769876","1535769876","1","","3","1","5000g");
DROP TABLE fy_customer;
CREATE TABLE `fy_customer` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户表',
`username` varchar(255) DEFAULT NULL,
`openid` varchar(50) DEFAULT NULL COMMENT 'openid',
`sex` tinyint(1) DEFAULT NULL COMMENT '1男2女3未知',
`nickname` varchar(50) DEFAULT NULL COMMENT '微信昵称',
`birthday` datetime DEFAULT NULL COMMENT '生日',
`mobile` varchar(12) DEFAULT NULL COMMENT '手机号',
`email` varchar(50) DEFAULT NULL COMMENT '邮箱',
`headimgurl` varchar(512) DEFAULT NULL COMMENT '微信头像',
`score` int(10) DEFAULT NULL COMMENT '会员积分',
`experience` int(10) DEFAULT '0' COMMENT '会员经验值',
`login_ip` varchar(255) DEFAULT NULL COMMENT 'ip地址',
`continuity_day` int(4) unsigned DEFAULT '0' COMMENT '连续签到天数',
`status` tinyint(1) DEFAULT '1' COMMENT '1启用|0禁用',
`isdelete` tinyint(1) DEFAULT '0' COMMENT '1删除|0未删除',
`create_time` int(11) DEFAULT NULL COMMENT '创建时间',
`update_time` int(11) DEFAULT NULL COMMENT '更新时间',
`reg_time` int(11) DEFAULT NULL,
`language` varchar(50) DEFAULT NULL,
`city` varchar(50) DEFAULT NULL,
`province` varchar(50) DEFAULT NULL,
`country` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
INSERT INTO fy_customer VALUES("1","","omQYXwNAT5uC15TQqMGxajJzqo4s","1","葡萄不长牙","","","","http://thirdwx.qlogo.cn/mmopen/vi_32/micicBxD02xCNicL5pYMEttjRkydmsp7bLwqxvacutLxbzE63iaFPXpbicIW0LOaiboW3xnoJMg5HR8sJ0sHH4YicFzgw/132","10","0","172.16.58.3","0","1","0","1535705545","1535705859","","zh_CN","贵阳","贵州","中国");
INSERT INTO fy_customer VALUES("2","","omQYXwM8TEkiBZR7Ldm891OOWbNQ","1","Baymax","","","","http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83eq2d8mGwPshVjOWKEqTJJVwShvxIOGrUJW86jogK8FW7SKGg5YuCIibomSo8PrdIPGnywlFHgP8WsQ/132","20","10","192.168.127.12","0","1","0","1535705741","","","zh_CN","贵阳","贵州","中国");
INSERT INTO fy_customer VALUES("3","","omQYXwAasNeXdGSMymd91487Ds1g","1","DANIEL","","","","http://thirdwx.qlogo.cn/mmopen/vi_32/BpprxVMjsB3m98GlYXgpntu9MMVIov2On3qu7IxJmGlZCmtYO6JoCHPyWZjvDuEaQguMfJg3fsEoaRiaEwibRAFA/132","1","0","192.168.127.12","1","1","0","1535765279","1535767787","","zh_CN","深圳","广东","中国");
DROP TABLE fy_customer_activity_log;
CREATE TABLE `fy_customer_activity_log` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'activitylog表',
`uid` int(11) NOT NULL COMMENT '用户id',
`activity_id` int(11) NOT NULL COMMENT '活动id',
`activity_detail` text,
`status` tinyint(1) DEFAULT NULL COMMENT '1已参与|2参与中',
`create_time` int(11) DEFAULT NULL COMMENT '开始参与活动时间',
`update_time` int(11) DEFAULT NULL COMMENT '活动参与完成时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE fy_customer_address;
CREATE TABLE `fy_customer_address` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户地址表',
`uid` int(11) NOT NULL COMMENT '用户id',
`name` varchar(32) NOT NULL COMMENT '收货人',
`mobile` varchar(12) NOT NULL COMMENT '用户电话',
`address` varchar(512) NOT NULL COMMENT '地址',
`street` varchar(512) DEFAULT NULL COMMENT '街道',
`status` tinyint(1) DEFAULT '0' COMMENT '1默认地址|0非默认地址',
`addtime` int(11) NOT NULL COMMENT '添加时间',
`updatetime` int(11) NOT NULL COMMENT '更新时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
INSERT INTO fy_customer_address VALUES("1","1","dddd","18285111561","北京市东城区东华门街道","eeeeeeeee","1","1535705561","1535705561");
INSERT INTO fy_customer_address VALUES("2","2","段欢","13765805489","北京市东城区东华门街道","也是","1","1535705798","1535705798");
INSERT INTO fy_customer_address VALUES("3","3","测试人","18988756181","天津市河北区新开河街道","测试","1","1535765409","1535765409");
DROP TABLE fy_customer_collect;
CREATE TABLE `fy_customer_collect` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '收藏表',
`uid` int(11) NOT NULL COMMENT '用户id',
`goods_id` int(11) NOT NULL COMMENT '商品id',
`addtime` int(11) NOT NULL COMMENT '收藏时间',
`status` tinyint(1) DEFAULT NULL COMMENT '1状态备用',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
INSERT INTO fy_customer_collect VALUES("1","3","6","1535766209","0");
DROP TABLE fy_customer_grade;
CREATE TABLE `fy_customer_grade` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '会员等级表',
`name` varchar(20) NOT NULL COMMENT '等级名称',
`experience_start` int(10) DEFAULT NULL COMMENT '积分开始值',
`experience_end` int(10) DEFAULT NULL COMMENT '积分结束值',
`addtime` int(11) DEFAULT NULL COMMENT '添加时间',
`updatetime` int(11) DEFAULT NULL COMMENT '修改时间',
`all` varchar(255) DEFAULT NULL COMMENT '权益id列表',
`isdelete` tinyint(1) DEFAULT '0' COMMENT '1删除|0未删除',
`goods_score_rate` decimal(10,2) DEFAULT '1.00' COMMENT '购物返积分倍率',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8;
INSERT INTO fy_customer_grade VALUES("34","青铜会员","0","1999","1530841065","1532600931","1","0","1.00");
INSERT INTO fy_customer_grade VALUES("35","白银会员","2000","9999","1530841120","1532600928","1<br/>2","0","1.50");
INSERT INTO fy_customer_grade VALUES("36","黄金会员","10000","29999","1530841155","1532600925","1<br/>2<br/>4","0","2.00");
INSERT INTO fy_customer_grade VALUES("37","钻石会员","30000","10000000","1530841210","1534129185","1<br/>2<br/>3<br/>4","0","3.00");
DROP TABLE fy_customer_grade_desc;
CREATE TABLE `fy_customer_grade_desc` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '会员等级规则说明',
`detail` text NOT NULL,
`addtime` int(10) DEFAULT NULL COMMENT '添加时间',
`status` tinyint(1) DEFAULT NULL COMMENT '状态',
`updatetime` int(10) DEFAULT NULL,
`isdelete` tinyint(1) DEFAULT '0' COMMENT '1删除|0未删除',
`type` tinyint(1) DEFAULT NULL COMMENT '1等级规则|2升级攻略|3权益说明',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
INSERT INTO fy_customer_grade_desc VALUES("5","<p style="text-align: center;"><br/></p><p><span style="font-size: 14px;">1.会员共分为4个等级,分别为:青铜会员、白银会员、黄金会员、钻石会员。</span></p><p><span style="font-size: 14px;">2.会员级别由经验值决定,经验值越高会员等级越高,享受到的会员权益越多。</span></p><p><span style="font-size: 14px;">3.成长值与消费金额成正比,完成购物后获得与结算金额相对应的成长值。</span></p><p><span style="font-size: 14px;">4.会员级别的升降均由系统自动处理,无需申请。</span></p><p><span style="font-size: 14px;"></span></p>","1530842063","1","1534478144","0","1");
INSERT INTO fy_customer_grade_desc VALUES("6","<p style="text-align: center;"><strong>会员专属特权</strong></p><p><br/></p><table width="613" align="center"><tbody><tr class="firstRow"><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="126" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">会员专属特权</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">青铜会员</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="79" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">白银会员</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">黄金会员</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="261" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">钻石会员</span></td></tr><tr><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="126" class="selectTdClass" align="center"><p><span style="font-size: 14px; font-family: 宋体, SimSun;">新人礼包</span></p></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">可享</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="79" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">/</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">/</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="261" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">/</span></td></tr><tr><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="126" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">购物积分</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">标准积分</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="79" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">1.5倍积分</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">2倍积分</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="261" class="selectTdClass" align="center"><p><span style="font-size: 14px; font-family: 宋体, SimSun;">3倍积分</span></p></td></tr><tr><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="126" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">会员优惠活动</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">可享</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="79" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">可享</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">可享</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="261" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">可享</span></td></tr><tr><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="126" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">游戏抽奖</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">可享</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="79" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">可享</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">可享</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="261" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">可享</span></td></tr><tr><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="126" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">会员升级送积分</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">/</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="79" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">100积分</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">500积分</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="261" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">1000积分</span></td></tr><tr><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="126" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">免邮券</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">/</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="79" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">三月1张</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">单月1张</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="261" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">每月1张</span></td></tr><tr><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="126" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">生日礼包</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">/</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="79" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">可享</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">可享</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="261" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">可享</span></td></tr><tr><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="126" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">超值优惠券</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">/</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="79" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">/</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">每月2张</span></td><td valign="middle" colspan="1" rowspan="1" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="261" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">每月5张</span></td></tr><tr><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="126" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">钻石会员尊享体验</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">/</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="79" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">/</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="73" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">/</span></td><td valign="middle" style="word-break: break-all; border-color: rgb(221, 221, 221);" width="261" class="selectTdClass" align="center"><span style="font-size: 14px; font-family: 宋体, SimSun;">包括但不限于新品体验、尊享定制体验等</span></td></tr></tbody></table><p><br/></p>","1530842847","1","1532600984","0","3");
INSERT INTO fy_customer_grade_desc VALUES("7","<p>1.通过经验值计算会员等级;</p><p>2.购物送相应的经验值。<br/></p>","1532601039","1","1534130353","0","2");
DROP TABLE fy_customer_login_log;
CREATE TABLE `fy_customer_login_log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '表ID',
`uid` mediumint(8) NOT NULL COMMENT '用户ID',
`openid` varchar(50) NOT NULL COMMENT '用户openid',
`login_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP COMMENT '登录时间',
`login_ip` char(15) NOT NULL COMMENT '登录IP',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
INSERT INTO fy_customer_login_log VALUES("1","0","omQYXwNAT5uC15TQqMGxajJzqo4s","2018-08-31 16:50:56","172.16.58.3");
INSERT INTO fy_customer_login_log VALUES("2","0","omQYXwM8TEkiBZR7Ldm891OOWbNQ","2018-08-31 16:53:09","192.168.127.12");
INSERT INTO fy_customer_login_log VALUES("3","2","omQYXwM8TEkiBZR7Ldm891OOWbNQ","2018-08-31 17:13:26","192.168.127.12");
INSERT INTO fy_customer_login_log VALUES("4","3","omQYXwAasNeXdGSMymd91487Ds1g","2018-09-01 09:27:59","192.168.127.12");
INSERT INTO fy_customer_login_log VALUES("5","3","omQYXwAasNeXdGSMymd91487Ds1g","2018-09-01 09:40:36","192.168.127.12");
INSERT INTO fy_customer_login_log VALUES("6","3","omQYXwAasNeXdGSMymd91487Ds1g","2018-09-01 09:57:17","192.168.127.12");
INSERT INTO fy_customer_login_log VALUES("7","3","omQYXwAasNeXdGSMymd91487Ds1g","2018-09-01 10:09:51","192.168.127.12");
INSERT INTO fy_customer_login_log VALUES("8","3","omQYXwAasNeXdGSMymd91487Ds1g","2018-09-01 10:20:33","192.168.127.12");
INSERT INTO fy_customer_login_log VALUES("9","3","omQYXwAasNeXdGSMymd91487Ds1g","2018-09-01 10:43:27","192.168.127.12");
DROP TABLE fy_customer_right;
CREATE TABLE `fy_customer_right` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '会员特权表',
`name` varchar(50) DEFAULT NULL COMMENT '权益名称',
`pic` varchar(255) DEFAULT NULL COMMENT '权益图',
`desc` varchar(255) DEFAULT NULL COMMENT '权益描述',
`instruction` varchar(255) DEFAULT NULL COMMENT '权益说明',
`status` tinyint(1) DEFAULT '1' COMMENT '1启用|0禁用',
`isdelete` tinyint(1) DEFAULT '0' COMMENT '1删除|0未删除 ',
`create_time` int(11) DEFAULT NULL COMMENT '增加时间',
`update_time` int(11) DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
INSERT INTO fy_customer_right VALUES("1","新人礼包","/pic/uploads/20180723/949ad4c57591a0793b777e74c0afbd33.jpg","新人专享","<p>礼包包含一张优惠券、一张抵用券、一张积分券</p>","1","0","1532339953","1535772770");
INSERT INTO fy_customer_right VALUES("2","生日礼包","/pic/uploads/20180723/00b284f74955a532c941f0d4d061c7fd.jpg","生日会员专享","<p>生日会员专享</p>","1","0","1532340075","1535772767");
INSERT INTO fy_customer_right VALUES("3","钻石会员专享","/pic/uploads/20180723/6486343a125aabff9602a9e54715d5dc.png","钻石会员专享","<p>钻石会员专享</p>","1","0","1532340098","1535772763");
INSERT INTO fy_customer_right VALUES("4","升级送积分","/pic/uploads/20180901/ad61a9b50e7d2b918618a29c9d7db9c8.png","升级送积分","<p>升级送积分</p>","1","0","1532340122","1535773687");
INSERT INTO fy_customer_right VALUES("5","fff","/pic/uploads/20180901/216be9b0a3218cc416d95c39e00e52ed.png","ffff","<p>ffffff</p>","1","0","1535772748","1535772748");
DROP TABLE fy_customer_sign;
CREATE TABLE `fy_customer_sign` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '会员签到表',
`uid` int(11) NOT NULL COMMENT '签到用户',
`score` decimal(10,2) DEFAULT NULL COMMENT '签到积分',
`reward_score` decimal(10,2) DEFAULT NULL COMMENT '奖励积分',
`addtime` int(11) NOT NULL COMMENT '签到时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
INSERT INTO fy_customer_sign VALUES("1","3","2.00","0.00","1535766078");
DROP TABLE fy_customer_sign_rule;
CREATE TABLE `fy_customer_sign_rule` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '会员签到规则表',
`continuous_days_one` int(255) DEFAULT NULL,
`continuous_days_two` int(11) NOT NULL COMMENT '连续签到天数',
`continuous_days_three` int(11) NOT NULL,
`get_score_one` decimal(10,2) NOT NULL COMMENT '获得积分',
`get_score_two` decimal(10,2) NOT NULL,
`get_score_three` decimal(10,2) NOT NULL,
`addtime` int(11) NOT NULL COMMENT '时间',
`status` tinyint(1) NOT NULL COMMENT '状态',
`desc` varchar(255) DEFAULT NULL COMMENT '详情',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE fy_customer_task;
CREATE TABLE `fy_customer_task` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`main_pic` varchar(255) DEFAULT NULL COMMENT '主图',
`display` int(1) DEFAULT NULL COMMENT '1图片|2图片+文字',
`reward_score` decimal(10,2) DEFAULT NULL COMMENT '奖励积分',
`name` varchar(255) DEFAULT NULL COMMENT '任务名称',
`url` varchar(255) DEFAULT NULL COMMENT '链接',
`start_date` int(10) DEFAULT NULL COMMENT '任务开始时间',
`end_date` int(10) DEFAULT NULL COMMENT '结束时间',
`detail` text COMMENT '内容详情',
`desc` text COMMENT '活动说明',
`status` tinyint(1) DEFAULT NULL COMMENT '1启用|0禁用',
`isdelete` tinyint(1) DEFAULT '0' COMMENT '1删除|0未删除',
`create_time` int(11) DEFAULT NULL COMMENT '创建时间',
`update_time` int(11) DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE fy_customer_task_log;
CREATE TABLE `fy_customer_task_log` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '会员任务完成明细表',
`uid` int(10) NOT NULL COMMENT '用户ID',
`task_id` int(11) NOT NULL COMMENT '任务ID',
`time` int(11) DEFAULT NULL COMMENT '参与时间',
`status` tinyint(1) NOT NULL COMMENT '1完成|0未完成',
`reward_score` decimal(10,2) NOT NULL COMMENT '奖励积分',
`create_time` int(11) NOT NULL COMMENT '创建时间',
`update_time` int(11) NOT NULL COMMENT '更新时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
DROP TABLE fy_file;
CREATE TABLE `fy_file` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`cate` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '文件类型,1-image | 2-file',
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '文件名',
`original` varchar(255) NOT NULL DEFAULT '' COMMENT '原文件名',
`domain` varchar(255) NOT NULL DEFAULT '',
`type` varchar(255) NOT NULL DEFAULT '',
`size` int(10) unsigned NOT NULL DEFAULT '0',
`mtime` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=734 DEFAULT CHARSET=utf8;
INSERT INTO fy_file VALUES("674","3","/tmp/uploads/20180822/7a2570970d3d8229dcf3deca8903d946.png","微信图片_20180807145703.png","","image/png","172212","1534924480");
INSERT INTO fy_file VALUES("675","3","/tmp/uploads/20180823/e7f06b85a02fbc3c57b06d42ff297224.png","23BFF577-AA70-4613-BF68-4FDA2C6D7203.png","","image/png","117804","1534989751");
INSERT INTO fy_file VALUES("676","3","/tmp/uploads/20180823/bbf287373028bc77056ad3328d11d4d7.jpeg","660436E6-ABD0-4ACC-A562-1D4A99CB5B99.jpeg","","image/jpeg","230375","1534989770");
INSERT INTO fy_file VALUES("677","3","/tmp/uploads/20180823/a31f0d6a1d54066e45309e35d936241d.png","86BFDD88-55C5-434B-96A2-B406A8C4C9C9.png","","image/png","197234","1534989793");
INSERT INTO fy_file VALUES("678","3","/tmp/uploads/20180823/d16f4b25c83f76982a894098c0ffbded.jpeg","A8392A56-7F2B-4E28-92E7-B9E34D22FFF4.jpeg","","image/jpeg","661051","1534989793");
INSERT INTO fy_file VALUES("679","3","/tmp/uploads/20180823/5a8007d0f2cd281cbd1474c068dd157a.png","DED2B0F3-A9A9-4DDF-9132-8E78893ECE19.png","","image/png","117804","1534989862");
INSERT INTO fy_file VALUES("680","3","/tmp/uploads/20180823/7f4d2e22ccb9dfbfe190eed1559b9749.jpeg","0733EED8-0034-4409-99D8-50BC06BC2DED.jpeg","","image/jpeg","83728","1534989862");
INSERT INTO fy_file VALUES("681","3","/tmp/uploads/20180823/6d23b382bce06b971bcec6565cf82cec.jpeg","2C3D9447-A9BB-4EBF-B6B5-26A63DA70C3A.jpeg","","image/jpeg","264262","1534989862");
INSERT INTO fy_file VALUES("682","3","/tmp/uploads/20180823/1c753914e5fd1b45dfe99cfa41d47485.jpeg","94CB142A-AFAC-4F1B-9446-3901032F1486.jpeg","","image/jpeg","661051","1534989862");
INSERT INTO fy_file VALUES("683","3","/tmp/uploads/20180823/fbac4558997b2d555673bdf29427b89d.png","5BCC1473-BF15-4CCD-8983-4D064AEC8CB9.png","","image/png","197234","1534989862");
INSERT INTO fy_file VALUES("684","3","/tmp/uploads/20180823/1ff0415401dd35672a17d0bd8c1edf48.png","59669F98-126A-4356-8360-DE3DEEEEC0D2.png","","image/png","117804","1534989872");
INSERT INTO fy_file VALUES("685","3","/tmp/uploads/20180828/e55b86ee3d35c7f152e9a64783a56d44.png","QQ截图20180828091055.png","","image/png","208617","1535418730");
INSERT INTO fy_file VALUES("686","3","/tmp/uploads/20180828/68c227a06d53ab34c46c55efdf2b163d.png","QQ截图20180828091250.png","","image/png","22563","1535418866");
INSERT INTO fy_file VALUES("687","3","/tmp/uploads/20180828/a11731d4b01a6dd41cdc21d3fdabf0cf.png","QQ截图20180828091328.png","","image/png","243390","1535418881");
INSERT INTO fy_file VALUES("688","3","/tmp/uploads/20180828/5fc1332916aee8884f8095dcb76365ba.png","QQ截图201808280911251.png","","image/png","282306","1535418895");
INSERT INTO fy_file VALUES("689","3","/tmp/uploads/20180828/db0bcda4a25dc457e29484b6b142504e.png","QQ截图20180828091328.png","","image/png","243390","1535418897");
INSERT INTO fy_file VALUES("690","3","/tmp/uploads/20180828/f20a29f350023a47de051e85f22a019c.png","QQ截图20180828091339.png","","image/png","218819","1535418898");
INSERT INTO fy_file VALUES("691","3","/tmp/uploads/20180828/1bde95e73b98544bc2de8d64ba1af22a.png","QQ截图20180828091354.png","","image/png","203993","1535418900");
INSERT INTO fy_file VALUES("692","3","/tmp/uploads/20180828/a8a3dde9ae76534705e8b932f3dc2e1c.png","QQ截图20180828092202.png","","image/png","15068","1535419386");
INSERT INTO fy_file VALUES("693","3","/tmp/uploads/20180828/71b30d3af10a39e896908eacfb343a70.png","QQ截图20180828092325.png","","image/png","169555","1535419460");
INSERT INTO fy_file VALUES("694","3","/tmp/uploads/20180828/c045d562f15a442f6a1f43cc5ed8ef1d.png","QQ截图20180828092336.png","","image/png","342611","1535419462");
INSERT INTO fy_file VALUES("695","3","/tmp/uploads/20180828/506f6fbc6072a1aac31e855b119870c2.png","QQ截图20180828092345.png","","image/png","313856","1535419464");
INSERT INTO fy_file VALUES("696","3","/tmp/uploads/20180828/72ec56580efd36a9c26379cfb4596237.png","QQ截图20180828092353.png","","image/png","344568","1535419466");
INSERT INTO fy_file VALUES("697","3","/tmp/uploads/20180828/e9e0eb39e98c6a3f34f255d1560ea838.png","QQ截图20180828092325.png","","image/png","169555","1535419672");
INSERT INTO fy_file VALUES("698","3","/tmp/uploads/20180828/1703f293be77eeb90b78533b9778d25e.png","QQ截图20180828092325.png","","image/png","169555","1535419912");
INSERT INTO fy_file VALUES("699","3","/tmp/uploads/20180828/482e772aa624a6168b9f60cfea70c603.png","QQ截图20180828091328.png","","image/png","243390","1535421366");
INSERT INTO fy_file VALUES("700","3","/tmp/uploads/20180828/5c1f977d8b6c7720f0e41a3085fe6725.jpg","mmexport1535421394617.jpg","","image/jpeg","218819","1535421440");
INSERT INTO fy_file VALUES("701","3","/tmp/uploads/20180828/7d52afafc59ce80ff6823ea9f0ae818c.jpg","mmexport1535421391168.jpg","","image/jpeg","243390","1535421446");
INSERT INTO fy_file VALUES("702","3","/tmp/uploads/20180828/67d3e57d568a4623e2af7ff04bd168f2.jpg","微信图片_20180814113948.jpg","","image/jpeg","45519","1535428426");
INSERT INTO fy_file VALUES("703","3","/tmp/uploads/20180828/a5b545db813421d75aaecfcd42d8a777.jpg","微信图片_20180814115907.jpg","","image/jpeg","36604","1535428426");
INSERT INTO fy_file VALUES("704","3","/tmp/uploads/20180828/eddbd53897f5e2bb6ad54472d7a8c698.jpg","u=214273920,3494333795&fm=200&gp=0.jpg","","image/jpeg","22394","1535444368");
INSERT INTO fy_file VALUES("705","3","/tmp/uploads/20180828/89c9a66a8fc734649e15a75ab7408024.jpg","u=214273920,3494333795&fm=200&gp=0.jpg","","image/jpeg","22394","1535444375");
INSERT INTO fy_file VALUES("706","3","/tmp/uploads/20180828/30a0caede7a7f351efdfc6a40437e7de.jpg","u=3323704405,62374999&fm=202&src=762&mola=new&crop=v1.jpg","","image/jpeg","9142","1535444375");
INSERT INTO fy_file VALUES("707","3","/tmp/uploads/20180828/9a2e1e360b51b0eb8ae7a7a7ac02fd63.jpg","u=1950348361,3686672964&fm=77&src=1002.jpg","","image/jpeg","7341","1535444376");
INSERT INTO fy_file VALUES("708","3","/tmp/uploads/20180828/dacbf091fa632f201a0a514d77cd61a7.jpg","u=4065688865,1655321373&fm=202.jpg","","image/jpeg","69530","1535444376");
INSERT INTO fy_file VALUES("709","3","/tmp/uploads/20180829/620e8b0e42fc5f40b6a25f14d2bc1aaf.jpg","O1CN011l4Phoe3KtdIeIz_!!917264765.jpg_60x60q90.jpg","","image/jpeg","2122","1535528982");
INSERT INTO fy_file VALUES("710","3","/tmp/uploads/20180829/4acc86019b036b0f8343ea773f01ff9f.jpg","O1CN011l4Phoe3KtdIeIz_!!917264765.jpg_60x60q90.jpg","","image/jpeg","2122","1535529107");
INSERT INTO fy_file VALUES("711","3","/tmp/uploads/20180829/82e7853f93e108fa216bb00defb1c47a.jpg","O1CN011l4PhpX7LJx0ruH_!!917264765.jpg_60x60q90.jpg","","image/jpeg","2476","1535529107");
INSERT INTO fy_file VALUES("712","3","/tmp/uploads/20180829/f9b8f57aa202464606723cbeb3636513.jpg","TB2U8_prCYTBKNjSZKbXXXJ8pXa_!!917264765.jpg_430x430q90.jpg","","image/jpeg","54429","1535529107");
INSERT INTO fy_file VALUES("713","3","/tmp/uploads/20180829/8e3196c747bc38c0f48246700aac1534.jpg","O1CN011l4PhpX7LJx0ruH_!!917264765.jpg_430x430q90.jpg","","image/jpeg","62967","1535529394");
INSERT INTO fy_file VALUES("714","3","/tmp/uploads/20180829/95e825fba136594ebfa7993a1b0c6c23.jpg","O1CN011l4PhpX7LJx0ruH_!!917264765.jpg_430x430q90.jpg","","image/jpeg","62967","1535529404");
INSERT INTO fy_file VALUES("715","3","/tmp/uploads/20180829/83df97b84fee562c38be9c1ac040d009.jpg","TB2U8_prCYTBKNjSZKbXXXJ8pXa_!!917264765.jpg_430x430q90.jpg","","image/jpeg","54429","1535529471");
INSERT INTO fy_file VALUES("716","3","/tmp/uploads/20180829/aef56645484fe050e6be48a7d29e187f.jpg","O1CN011l4PhpX7LJx0ruH_!!917264765.jpg_430x430q90.jpg","","image/jpeg","62967","1535529471");
INSERT INTO fy_file VALUES("717","3","/tmp/uploads/20180829/ff52a9827eae2d3b49ef19bae36a8756.jpg","TB2U8_prCYTBKNjSZKbXXXJ8pXa_!!917264765.jpg_430x430q90.jpg","","image/jpeg","54429","1535529539");
INSERT INTO fy_file VALUES("718","3","/tmp/uploads/20180830/ea1de0a49c95ce254cd599ec2fdae29e.png","QQ截图20180830092404.png","","image/png","257741","1535592307");
INSERT INTO fy_file VALUES("719","3","/tmp/uploads/20180830/ea45e2935e48ced0a4d5d41e0747b67f.png","QQ截图20180830092404.png","","image/png","257741","1535592325");
INSERT INTO fy_file VALUES("720","3","/tmp/uploads/20180830/4391e2482ec76691700cd515c9345bdb.png","QQ截图20180830092445.png","","image/png","188156","1535592325");
INSERT INTO fy_file VALUES("721","3","/tmp/uploads/20180830/c6aeb8f410cffb7177176664f22faeca.png","QQ截图20180830092427.png","","image/png","300680","1535592325");
INSERT INTO fy_file VALUES("722","3","/tmp/uploads/20180830/e36a0b9370ce4cc1f5253ecbe60965d3.png","QQ截图20180830092419.png","","image/png","272543","1535592325");
INSERT INTO fy_file VALUES("723","3","/tmp/uploads/20180830/2acd8620b35b3002254d1efe262bd616.png","QQ截图20180830092427.png","","image/png","300680","1535592336");
INSERT INTO fy_file VALUES("724","3","/tmp/uploads/20180830/e1cb7a1a90efbff95611e80dd15bb476.png","QQ截图20180830092445.png","","image/png","188156","1535592338");
INSERT INTO fy_file VALUES("725","3","/tmp/uploads/20180831/64d622707bdba1b080aafa78023e9939.jpg","timg (2).jpg","","image/jpeg","28989","1535685769");
INSERT INTO fy_file VALUES("726","3","/tmp/uploads/20180831/35cb42fbfe509141499aab67a3a0a680.jpg","timg (2).jpg","","image/jpeg","28989","1535685832");
INSERT INTO fy_file VALUES("727","3","/tmp/uploads/20180831/b7e860b80b4714b627f9d72e6f71d72b.jpg","timg (2).jpg","","image/jpeg","28989","1535685882");
INSERT INTO fy_file VALUES("728","3","/tmp/uploads/20180831/f6f882914e96e541e77f0d3af9e7eb8b.jpg","timg.jpg","","image/jpeg","19117","1535685890");
INSERT INTO fy_file VALUES("729","3","/tmp/uploads/20180831/c9eeb4703eccfd5b46d57249451c0db7.jpg","timg.jpg","","image/jpeg","19117","1535696547");
INSERT INTO fy_file VALUES("730","3","/tmp/uploads/20180831/1d24ff63ce97e98b5bfb4ff2fab9feb9.jpg","timg.jpg","","image/jpeg","19117","1535696577");
INSERT INTO fy_file VALUES("731","3","/tmp/uploads/20180831/443091067af6b9ff229b087de97c04ec.jpg","timg (2).jpg","","image/jpeg","28989","1535696587");
INSERT INTO fy_file VALUES("732","3","/tmp/uploads/20180901/216be9b0a3218cc416d95c39e00e52ed.png","logo.png","","image/png","527314","1535772712");
INSERT INTO fy_file VALUES("733","3","/tmp/uploads/20180901/ad61a9b50e7d2b918618a29c9d7db9c8.png","logo.png","","image/png","527314","1535773681");
DROP TABLE fy_gift_bag;
CREATE TABLE `fy_gift_bag` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '礼包管理表',
`create_time` int(11) DEFAULT NULL,
`update_time` int(11) DEFAULT NULL,
`status` tinyint(1) DEFAULT NULL,
`lottery_id` varchar(255) NOT NULL COMMENT '奖券id用逗号拼接',
`isdelete` tinyint(1) DEFAULT '0',
`name` varchar(50) DEFAULT NULL COMMENT '名字',
`desc` varchar(255) DEFAULT NULL COMMENT '描述',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
INSERT INTO fy_gift_bag VALUES("3","1534310671","1535419998","1","1,2","0","新人礼包","");
INSERT INTO fy_gift_bag VALUES("4","1534310701","1535419990","1","1,2","0","生日礼包","");
DROP TABLE fy_gift_bag_log;
CREATE TABLE `fy_gift_bag_log` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '礼包记录',
`openid` varchar(255) DEFAULT NULL,
`gift_bag_id` int(11) DEFAULT NULL,
`status` tinyint(1) DEFAULT '0' COMMENT '0未发送1已经发送',
`create_time` int(11) DEFAULT NULL,
`update_time` int(11) DEFAULT NULL,
`type` tinyint(1) DEFAULT NULL COMMENT '1新人礼包2生日礼包3待定',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
INSERT INTO fy_gift_bag_log VALUES("1","omQYXwNAT5uC15TQqMGxajJzqo4s","3","1","1535705545","","1");
INSERT INTO fy_gift_bag_log VALUES("2","omQYXwM8TEkiBZR7Ldm891OOWbNQ","3","1","1535705741","","1");
INSERT INTO fy_gift_bag_log VALUES("3","omQYXwAasNeXdGSMymd91487Ds1g","3","1","1535765279","","1");
DROP TABLE fy_goods;
CREATE TABLE `fy_goods` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL COMMENT '商品所属用户',
`name` varchar(255) NOT NULL COMMENT '商品名称',
`pic` text COMMENT '商品图片以json格式存储轮播图',
`original_price` decimal(10,2) unsigned NOT NULL COMMENT '原价',
`settlement_type` tinyint(4) DEFAULT '1' COMMENT '结算类型1-货币2-积分3-积分+货币',
`goods_class_id` int(10) NOT NULL COMMENT '商品分类id',
`goods_brand_id` int(10) DEFAULT NULL COMMENT '品牌id',
`show_area` tinyint(4) DEFAULT '3' COMMENT '展示区域1-限时抢购2-积分商城3-日常售卖4-热销产品5-积分+现价',
`detail` text NOT NULL COMMENT '商品详情',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1上架0仓库中',
`main_image` varchar(255) NOT NULL COMMENT '商品主图',
`subtitle` varchar(50) DEFAULT NULL COMMENT '商品副标题',
`create_time` int(10) DEFAULT NULL COMMENT '添加时间',
`update_time` int(10) DEFAULT NULL COMMENT '修改时间',
`orderby` int(10) DEFAULT NULL COMMENT '商品排序值',
`click_count` int(10) DEFAULT NULL COMMENT '商品点击数',
`goods_weight` decimal(10,3) NOT NULL COMMENT '商品重量',
`start_date` int(11) DEFAULT NULL COMMENT '开售时间',
`end_date` int(11) DEFAULT NULL COMMENT '结束时间',
`is_real` tinyint(1) NOT NULL COMMENT '是否是实物1 是 0 否',
`return_score` int(10) DEFAULT NULL COMMENT '返现积分',
`score_price` int(10) DEFAULT NULL COMMENT '积分,价格',
`price_real` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '价格',
`score` int(10) DEFAULT NULL COMMENT '积分换价',
`basic_price` varchar(255) DEFAULT NULL COMMENT '现价',
`isdelete` tinyint(1) DEFAULT '0' COMMENT '是否添加到回收站',
`store_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1下单减库存 2拍下减库存',
`free_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '包邮1不包邮0',
`postage` decimal(10,2) DEFAULT NULL COMMENT '邮费',
`after_sale` varchar(255) DEFAULT NULL COMMENT '售后保障',
`routine` text COMMENT '常规参数以json存',
`shop_code` varchar(255) DEFAULT NULL COMMENT '商家编码',
`buy_num` int(11) DEFAULT '0' COMMENT '销量',
`bar_code` varchar(255) DEFAULT NULL COMMENT '商品条形码',
`is_return_goods` tinyint(1) DEFAULT '1' COMMENT '1支持,0否',
`yieldly` varchar(50) DEFAULT NULL COMMENT '生产地',
`is_comment` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否允许评论',
`up_tip` tinyint(1) DEFAULT '0' COMMENT '0未提醒1已提醒',
`up_error_reason` text,
`service` text COMMENT '字符串存储',
`service_mobile` varchar(12) DEFAULT NULL COMMENT '商家联系电话',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
INSERT INTO fy_goods VALUES("1","21","陕西嘎啦苹果水果新鲜10斤当季整箱现摘批发包邮小红富士","[\"\\/pic\\/uploads\\/20180828\\/5fc1332916aee8884f8095dcb76365ba.png\",\"\\/pic\\/uploads\\/20180828\\/db0bcda4a25dc457e29484b6b142504e.png\",\"\\/pic\\/uploads\\/20180828\\/f20a29f350023a47de051e85f22a019c.png\",\"\\/pic\\/uploads\\/20180828\\/1bde95e73b98544bc2de8d64ba1af22a.png\"]","30.00","1","1","20","4","<p><img src="/ueditor/php/upload/image/20180828/1535419269999019.jpg" title="1535419269999019.jpg"/></p><p><img src="/ueditor/php/upload/image/20180828/1535419269956748.jpg" title="1535419269956748.jpg"/></p><p><img src="/ueditor/php/upload/image/20180828/1535419269839241.jpg" title="1535419269839241.jpg"/></p><p><img src="/ueditor/php/upload/image/20180828/1535419269460704.jpg" title="1535419269460704.jpg"/></p><p><img src="/ueditor/php/upload/image/20180828/1535419269835149.jpg" title="1535419269835149.jpg"/></p><p><img src="/ueditor/php/upload/image/20180828/1535419269314509.jpg" title="1535419269314509.jpg"/></p><p><img src="/ueditor/php/upload/image/20180828/1535419269170969.jpg" title="1535419269170969.jpg"/></p><p><img src="/ueditor/php/upload/image/20180828/1535419270321688.jpg" title="1535419270321688.jpg"/></p><p><img src="/ueditor/php/upload/image/20180828/1535419270582547.jpg" title="1535419270582547.jpg"/></p><p><img src="/ueditor/php/upload/image/20180828/1535419270622995.jpg" title="1535419270622995.jpg"/></p><p><br/></p>","1","/pic/uploads/20180828/a11731d4b01a6dd41cdc21d3fdabf0cf.png","","1535703801","1535703801","10","","5000.000","","","1","10","","0.00","0","0.01","0","1","1","0.00","<p>坏单包退:签收后24小时内,食品出现腐败变质,商家承诺24小时之内处理。</p>","{\"\\u54c1\\u724c\":\"\\u751c\\u53ef\\u679c\\u56ed\",\"\\u4fdd\\u8d28\\u671f\":\"7\\u5929\",\"\\u51c0\\u542b\\u91cf\":\"5000g\",\"\\u5305\\u88c5\\u65b9\\u5f0f\":\"\\u5305\\u88c5\",\"\\u662f\\u5426\\u4e3a\\u6709\\u673a\\u98df\\u54c1\":\"\\u5426\",\"\\u4ea7\\u5730\":\"\\u4e2d\\u56fd\\u5927\\u9646\",\"\\u7701\\u4efd\":\"\\u9655\\u897f\\u7701\",\"\\u5957\\u9910\\u4efd\\u91cf\":\"3\\u4eba\\u4efd\",\"\\u914d\\u9001\\u9891\\u6b21\":\"1\\u54682\\u6b21\"}","","18571","","1","","1","0","","[\"\\u574f\\u5355\\u5305\\u9000\"]","86701701");
INSERT INTO fy_goods VALUES("2","20","澳大利亚脐橙10个约140g/个 进口甜橙子新鲜水果","[\"\\/pic\\/uploads\\/20180828\\/71b30d3af10a39e896908eacfb343a70.png\",\"\\/pic\\/uploads\\/20180828\\/c045d562f15a442f6a1f43cc5ed8ef1d.png\",\"\\/pic\\/uploads\\/20180828\\/506f6fbc6072a1aac31e855b119870c2.png\",\"\\/pic\\/uploads\\/20180828\\/72ec56580efd36a9c26379cfb4596237.png\"]","50.00","2","3","21","4","<p><img src="http://www.fyxt701.com/ueditor/php/upload/image/20180828/1535419655175110.jpg" title="1535419655175110.jpg"/><img src="/ueditor/php/upload/image/20180828/1535419655490129.jpg" title="1535419655490129.jpg"/></p><p><img src="/ueditor/php/upload/image/20180828/1535419656312797.jpg" title="1535419656312797.jpg"/></p><p><img src="/ueditor/php/upload/image/20180828/1535419656128199.jpg" title="1535419656128199.jpg"/></p><p><img src="/ueditor/php/upload/image/20180828/1535419656973206.jpg" title="1535419656973206.jpg"/></p><p><br/></p>","1","/pic/uploads/20180828/e9e0eb39e98c6a3f34f255d1560ea838.png","","1535436428","1535436428","10","","1400.000","","","1","10","","0.00","1","0.01","0","1","1","0.00","<p>坏单包退:确认收货24小时内,食物发生腐败变质,商家在24小时内处理。</p>","{\"\\u54c1\\u724c\":\"\\u6613\\u679c\\u751f\\u9c9c\",\"\\u51c0\\u542b\\u91cf\":\"1400g\",\"\\u5305\\u88c5\\u65b9\\u5f0f\":\"\\u5305\\u88c5\",\"\\u4fdd\\u8d28\\u671f\":\"7\\u5929\",\"\\u5957\\u9910\\u4efd\\u91cf\":\"1\\u4eba\\u4efd\",\"\\u914d\\u9001\\u9891\\u6b21\":\"1\\u54682\\u6b21\"}","","10661","","0","","1","0","","[\"\\u574f\\u5355\\u5305\\u9000\"]","86701701");
INSERT INTO fy_goods VALUES("3","21","【新品预售】SK-II skii sk2能量大红瓶面霜套装轻盈型 保湿A","[\"\\/pic\\/uploads\\/20180829\\/83df97b84fee562c38be9c1ac040d009.jpg\",\"\\/pic\\/uploads\\/20180829\\/aef56645484fe050e6be48a7d29e187f.jpg\"]","10.00","1","4","15","1","<p><img src="/ueditor/php/upload/image/20180829/1535529382432667.jpg" title="1535529382432667.jpg" alt="O1CN011l4PhpX7LJx0ruH_!!917264765.jpg_430x430q90.jpg"/></p><p><img src="/ueditor/php/upload/image/20180829/1535529323978093.jpg" title="1535529323978093.jpg"/></p><p><br/></p>","1","/pic/uploads/20180829/ff52a9827eae2d3b49ef19bae36a8756.jpg","【新品预售】SK-II skii sk2能量大红瓶面霜套装轻盈型 保湿A","1535592151","1535592151","10","","10.000","1535530402","1535618143","1","10","","0.00","0","0.2","0","1","1","0.00","<p>质量不好可退换:非人为损坏</p>","","","12","","1","江苏苏州","1","0","","[\"\\u8d28\\u91cf\\u4e0d\\u597d\\u53ef\\u9000\\u6362\",\"7\\u65e5\\u53ef\\u6362\"]","18302563273");
INSERT INTO fy_goods VALUES("4","21","新疆喀什西梅4斤大果顺丰包邮当季水果 新鲜西梅","[\"\\/pic\\/uploads\\/20180830\\/ea45e2935e48ced0a4d5d41e0747b67f.png\",\"\\/pic\\/uploads\\/20180830\\/4391e2482ec76691700cd515c9345bdb.png\",\"\\/pic\\/uploads\\/20180830\\/c6aeb8f410cffb7177176664f22faeca.png\",\"\\/pic\\/uploads\\/20180830\\/e36a0b9370ce4cc1f5253ecbe60965d3.png\",\"\\/pic\\/uploads\\/20180830\\/2acd8620b35b3002254d1efe262bd616.png\",\"\\/pic\\/uploads\\/20180830\\/e1cb7a1a90efbff95611e80dd15bb476.png\"]","50.00","3","5","20","4","<p><img src="/ueditor/php/upload/image/20180830/1535592715470866.jpg" title="1535592715470866.jpg"/></p><p><img src="/ueditor/php/upload/image/20180830/1535592715223950.jpg" title="1535592715223950.jpg"/></p><p><img src="/ueditor/php/upload/image/20180830/1535592715131169.jpg" title="1535592715131169.jpg"/></p><p><img src="/ueditor/php/upload/image/20180830/1535592715428269.jpg" title="1535592715428269.jpg"/></p><p><img src="/ueditor/php/upload/image/20180830/1535592715454974.jpg" title="1535592715454974.jpg"/></p><p><img src="/ueditor/php/upload/image/20180830/1535592715724215.jpg" title="1535592715724215.jpg"/></p><p><img src="/ueditor/php/upload/image/20180830/1535592715908613.jpg" title="1535592715908613.jpg"/></p><p><img src="/ueditor/php/upload/image/20180830/1535592715538300.jpg" title="1535592715538300.jpg"/></p><p><img src="/ueditor/php/upload/image/20180830/1535592715682912.jpg" title="1535592715682912.jpg"/></p><p><br/></p>","1","/pic/uploads/20180830/ea1de0a49c95ce254cd599ec2fdae29e.png","","1535593177","1535593177","10","","1000.000","","","1","10","","0.00","1","0.01","0","1","1","0.00","<p>坏单包退:确认收货24小时内食物出现腐败变质,商家承诺24小时内处理。</p>","{\"\\u54c1\\u724c\":\"\\u751c\\u53ef\\u679c\\u56ed\",\"\\u4fdd\\u8d28\\u671f\":\"5\\u5929\",\"\\u51c0\\u542b\\u91cf\":\"1kg\\uff08\\u542b\\uff09-2.5kg\\uff08\\u542b\\uff09\",\"\\u5305\\u88c5\\u65b9\\u5f0f\":\"\\u5305\\u88c5\",\"\\u552e\\u5356\\u65b9\\u5f0f\":\"\\u5355\\u54c1\",\"\\u662f\\u5426\\u4e3a\\u6709\\u673a\\u98df\\u54c1\":\"\\u5426\",\"\\u751f\\u9c9c\\u50a8\\u5b58\\u6e29\\u5ea6\":\"0-8\\u2103\",\"\\u4ea7\\u5730\":\"\\u4e2d\\u56fd\\u5927\\u9646\",\"\\u7701\\u4efd\":\"\\u65b0\\u7586\\u7ef4\\u543e\\u5c14\\u65cf\\u81ea\\u6cbb\\u533a\",\"\\u57ce\\u5e02\":\"\\u5580\\u4ec0\\u5730\\u533a\",\"\\u5957\\u9910\\u4efd\\u91cf\":\"5\\u4eba\\u4efd\",\"\\u5957\\u9910\\u5468\\u671f\":\"1\\u5468\",\"\\u914d\\u9001\\u9891\\u6b21\":\"1\\u54682\\u6b21\"}","","999","","1","","1","0","","[\"\\u574f\\u5355\\u5305\\u9000\"]","86701701");
INSERT INTO fy_goods VALUES("5","21","苹果手机","[\"\\/pic\\/uploads\\/20180831\\/b7e860b80b4714b627f9d72e6f71d72b.jpg\",\"\\/pic\\/uploads\\/20180831\\/f6f882914e96e541e77f0d3af9e7eb8b.jpg\"]","5200.00","1","6","20","1","<p>苹果手机</p>","1","/pic/uploads/20180831/35cb42fbfe509141499aab67a3a0a680.jpg","苹果手机","1535768413","1535768413","10","","300.000","1535685661","1536031265","1","0","","0.00","0","0.01","0","1","1","0.00","<p>ok</p>","","","500","","1","上海","1","0","","[\"\\u6ca1\\u6709\\u670d\\u52a1\"]","");
INSERT INTO fy_goods VALUES("6","21","积分商城苹果手机","[\"\\/pic\\/uploads\\/20180831\\/1d24ff63ce97e98b5bfb4ff2fab9feb9.jpg\",\"\\/pic\\/uploads\\/20180831\\/443091067af6b9ff229b087de97c04ec.jpg\"]","10.00","2","6","20","2","<p>0000</p>","1","/pic/uploads/20180831/c9eeb4703eccfd5b46d57249451c0db7.jpg","","1535696647","1535696647","10","","300.000","","","1","10","","0.00","10","","0","1","1","","<p>正品</p>","","","11","","1","","1","0","","[\"\\u6b63\\u54c1\\u4fdd\\u969c\"]","");
DROP TABLE fy_goods_attribute;
CREATE TABLE `fy_goods_attribute` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '商品属性存储值表',
`goods_id` int(11) NOT NULL,
`attribute_name` varchar(255) DEFAULT NULL COMMENT '商品存贮所有属性的值',
`goods_code` varchar(255) DEFAULT NULL COMMENT '商品编码关联id',
`store` int(11) DEFAULT '0' COMMENT '库存',
`price` decimal(10,2) DEFAULT '0.00' COMMENT '价格',
`bar_code` varchar(255) NOT NULL COMMENT '条形码',
`point_score` int(10) DEFAULT '0' COMMENT '积分价',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8;
INSERT INTO fy_goods_attribute VALUES("3","1","1535420770059_净含量:1535420787291_5000g","12425425","59","0.01","452754754","1");
INSERT INTO fy_goods_attribute VALUES("4","2","1535420855229_净含量:1535420870046_1400g","452577","809","0.01","4527575204","1");
INSERT INTO fy_goods_attribute VALUES("6","3","1535529211591_重量:1535529229659_80g","","20","0.50","","0");
INSERT INTO fy_goods_attribute VALUES("8","3","1535529211591_重量:1535534351500_45","","44","234.00","","0");
INSERT INTO fy_goods_attribute VALUES("9","4","1535592549001_净含量:1535592562262_1kg","404524524","998","0.01","4250425401","1");
INSERT INTO fy_goods_attribute VALUES("10","4","1535592549001_净含量:1535592566192_1.5kg","404524524","999","0.02","4250425402","2");
INSERT INTO fy_goods_attribute VALUES("11","4","1535592549001_净含量:1535592569678_2kg","404524524","999","0.03","4250425403","3");
INSERT INTO fy_goods_attribute VALUES("12","4","1535592549001_净含量:1535592573415_2.5kg","404524524","1000","0.04","4250425404","4");
INSERT INTO fy_goods_attribute VALUES("16","5","1535685741914_规格:1535685749337_通用","","10","0.01","","10");
INSERT INTO fy_goods_attribute VALUES("17","6","1535696425476_属性:1535696432758_通用","","98","0.01","","10");
DROP TABLE fy_goods_browse;
CREATE TABLE `fy_goods_browse` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '商品浏览记录表',
`uid` int(11) DEFAULT NULL,
`openid` varchar(255) DEFAULT NULL,
`goods_id` int(11) DEFAULT NULL,
`create_time` int(11) DEFAULT NULL COMMENT '添加时间',
`num` int(1) DEFAULT NULL COMMENT '浏览次数',
`update_time` int(11) DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
INSERT INTO fy_goods_browse VALUES("1","","omQYXwM8TEkiBZR7Ldm891OOWbNQ","1","1535705776","3","1535705776");
INSERT INTO fy_goods_browse VALUES("2","","omQYXwNAT5uC15TQqMGxajJzqo4s","1","1535705870","2","1535705870");
INSERT INTO fy_goods_browse VALUES("3","","omQYXwAasNeXdGSMymd91487Ds1g","1","1535765321","10","1535765321");
INSERT INTO fy_goods_browse VALUES("4","","omQYXwAasNeXdGSMymd91487Ds1g","2","1535765540","5","1535765540");
INSERT INTO fy_goods_browse VALUES("5","","omQYXwAasNeXdGSMymd91487Ds1g","5","1535765565","5","1535765565");
INSERT INTO fy_goods_browse VALUES("6","","omQYXwAasNeXdGSMymd91487Ds1g","4","1535765723","8","1535765723");
INSERT INTO fy_goods_browse VALUES("7","","omQYXwAasNeXdGSMymd91487Ds1g","6","1535766098","12","1535766098");
DROP TABLE fy_goods_class;
CREATE TABLE `fy_goods_class` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) NOT NULL DEFAULT '0',
`name` varchar(20) NOT NULL COMMENT '分类名称',
`path` varchar(255) NOT NULL DEFAULT '0,' COMMENT '路径',
`pic` varchar(255) DEFAULT NULL COMMENT '分类图片',
`user_id` int(10) DEFAULT NULL COMMENT '用户id',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
INSERT INTO fy_goods_class VALUES("1","0","水果","0,","","");
INSERT INTO fy_goods_class VALUES("2","1","苹果","0,1,","","");
INSERT INTO fy_goods_class VALUES("3","1","橙子","0,1,","","");
INSERT INTO fy_goods_class VALUES("4","0","化妆品","0,","","");
INSERT INTO fy_goods_class VALUES("5","1","西梅","0,1,","","");
INSERT INTO fy_goods_class VALUES("6","0","手机","0,","","");
DROP TABLE fy_goods_comment;
CREATE TABLE `fy_goods_comment` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '商品评价表',
`openid` varchar(255) DEFAULT NULL,
`username` varchar(255) DEFAULT NULL COMMENT '用户名',
`uid` int(11) DEFAULT NULL,
`goods_id` int(11) DEFAULT NULL COMMENT '商品id',
`goods_name` varchar(255) NOT NULL COMMENT '商品名称',
`pic` text COMMENT '评价晒图json存储最多5张',
`content` text COMMENT '评论内容',
`create_time` int(11) DEFAULT NULL COMMENT '评论时间',
`status` tinyint(1) DEFAULT '0' COMMENT '状态,是否显示',
`similarity_score` decimal(10,2) NOT NULL COMMENT '相似积分',
`logistics_score` decimal(10,2) NOT NULL COMMENT '物流得分',
`service_score` decimal(10,2) NOT NULL COMMENT '服务积分',
`avg_score` decimal(10,2) NOT NULL COMMENT '平均分',
`isdelete` tinyint(4) NOT NULL DEFAULT '0',
`return_content` text COMMENT '回复',
`return_is` tinyint(1) DEFAULT '0' COMMENT '0未回复1已回复',
`user_id` int(11) DEFAULT NULL COMMENT '所属商户id',
`ogid` int(11) DEFAULT NULL COMMENT '关联order_goods_id',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE fy_goods_comment_reply;
CREATE TABLE `fy_goods_comment_reply` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '评论回复表',
`user_id` int(10) NOT NULL COMMENT '回复人id',
`goods_comment_id` int(10) NOT NULL COMMENT '回复的那条留言',
`addtime` int(10) DEFAULT NULL COMMENT '回复时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE fy_goods_proprety_name;
CREATE TABLE `fy_goods_proprety_name` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '商品属性名表',
`goods_id` int(11) NOT NULL COMMENT '商品id',
`name` varchar(255) NOT NULL COMMENT '属性名',
`goods_class_id` int(11) DEFAULT NULL COMMENT '分类id',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8;
INSERT INTO fy_goods_proprety_name VALUES("7","2","1535420855229_净含量","");
INSERT INTO fy_goods_proprety_name VALUES("26","3","1535529211591_重量","");
INSERT INTO fy_goods_proprety_name VALUES("28","4","1535592549001_净含量","");
INSERT INTO fy_goods_proprety_name VALUES("31","6","1535696425476_属性","");
INSERT INTO fy_goods_proprety_name VALUES("33","1","1535420770059_净含量","");
INSERT INTO fy_goods_proprety_name VALUES("35","5","1535685741914_规格","");
DROP TABLE fy_goods_proprety_val;
CREATE TABLE `fy_goods_proprety_val` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '商品属性值表',
`propre_name_id` int(11) NOT NULL COMMENT '属性名id',
`value` varchar(255) NOT NULL COMMENT '属性值',
`goods_id` int(11) DEFAULT NULL COMMENT '商品id备用',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=utf8;
INSERT INTO fy_goods_proprety_val VALUES("7","7","1535420870046_1400g","2");
INSERT INTO fy_goods_proprety_val VALUES("58","26","1535529229659_80g","3");
INSERT INTO fy_goods_proprety_val VALUES("59","26","1535534351500_45","3");
INSERT INTO fy_goods_proprety_val VALUES("68","28","1535592562262_1kg","4");
INSERT INTO fy_goods_proprety_val VALUES("69","28","1535592566192_1.5kg","4");
INSERT INTO fy_goods_proprety_val VALUES("70","28","1535592569678_2kg","4");
INSERT INTO fy_goods_proprety_val VALUES("71","28","1535592573415_2.5kg","4");
INSERT INTO fy_goods_proprety_val VALUES("77","31","1535696432758_通用","6");
INSERT INTO fy_goods_proprety_val VALUES("79","33","1535420787291_5000g","1");
INSERT INTO fy_goods_proprety_val VALUES("81","35","1535685749337_通用","5");
DROP TABLE fy_login_log;
CREATE TABLE `fy_login_log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`login_ip` char(15) NOT NULL DEFAULT '',
`login_location` varchar(255) NOT NULL DEFAULT '',
`login_browser` varchar(255) NOT NULL DEFAULT '',
`login_os` varchar(255) NOT NULL DEFAULT '',
`login_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `uid` (`uid`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
INSERT INTO fy_login_log VALUES("1","21","172.16.31.10","中国 贵州 贵阳 ","Chrome(68.0.3440.106)","Windows 7","2018-08-31 17:04:44");
INSERT INTO fy_login_log VALUES("2","1","172.16.31.10","中国 贵州 贵阳 ","Chrome(68.0.3440.106)","Windows 7","2018-08-31 17:10:20");
INSERT INTO fy_login_log VALUES("3","1","172.16.31.10","中国 贵州 贵阳 ","Chrome(68.0.3440.106)","Windows 10","2018-09-01 09:54:47");
INSERT INTO fy_login_log VALUES("4","1","172.16.58.3","中国 中国 ","Chrome(64.0.3282.186)","Windows 7","2018-09-01 11:22:50");
DROP TABLE fy_lottery;
CREATE TABLE `fy_lottery` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '奖券表',
`name` varchar(50) NOT NULL COMMENT '奖券名称',
`pic` text NOT NULL COMMENT '权展示',
`main_pic` varchar(255) NOT NULL COMMENT '活动主题图',
`grant_start_date` int(11) DEFAULT NULL COMMENT '开始时间',
`grant_end_date` int(11) DEFAULT NULL COMMENT '结束时间',
`expire_start_date` int(11) DEFAULT NULL COMMENT '有效期开始时间',
`expire_end_date` int(11) DEFAULT NULL COMMENT '有效期截止时间',
`type` tinyint(1) NOT NULL COMMENT '1抵扣券2优惠券3代金券4积分抵现金',
`coupon_money` decimal(10,2) NOT NULL COMMENT '优惠金额 减多少 ',
`coupon_real_money` decimal(10,2) DEFAULT NULL COMMENT '优惠券面额 满多少',
`receive_number` int(11) DEFAULT '0' COMMENT '领取量',
`surplus_number` int(11) DEFAULT '0' COMMENT '剩余量',
`number` int(11) NOT NULL DEFAULT '0' COMMENT '奖券数量',
`goods_id` varchar(32) DEFAULT NULL COMMENT '0表示所有商品关联商品',
`goods_name` varchar(255) DEFAULT NULL COMMENT '商品名称',
`url` varchar(255) DEFAULT NULL COMMENT '链接',
`desc` text COMMENT '奖券说明',
`status` tinyint(1) DEFAULT '0' COMMENT '0未发行,1发行中,2领取完状态',
`update_time` int(11) DEFAULT NULL COMMENT '商户ID',
`isdelete` tinyint(1) DEFAULT '0' COMMENT '默认值为0表示没有删除',
`user_id` int(11) DEFAULT NULL COMMENT '商户ID',
`expire_type` tinyint(1) DEFAULT '0' COMMENT '默认设置有效期,1有效期领取之后',
`expire_time` int(11) DEFAULT NULL COMMENT '时间戳存储',
`use_type` tinyint(1) DEFAULT '0' COMMENT '0商品1礼包',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
INSERT INTO fy_lottery VALUES("1","优惠券(新人礼包)","","/pic/uploads/20180828/1703f293be77eeb90b78533b9778d25e.png","0","0","0","0","2","1.00","1.00","0","100","100","2","澳大利亚脐橙10个约140g/个 进口甜橙子新鲜水果","","","1","","0","20","1","30","1");
INSERT INTO fy_lottery VALUES("2","新人礼包","","/pic/uploads/20180828/5fc1332916aee8884f8095dcb76365ba.png","0","0","0","0","2","2.00","10.00","0","444","444","all","","","<p>新人礼包</p>","1","","0","0","1","12","1");
INSERT INTO fy_lottery VALUES("3","测试券","","/pic/uploads/20180822/7a2570970d3d8229dcf3deca8903d946.png","1535426316","1535426771","1535426367","1535426729","2","1.00","1.00","1","9","10","all","","","","0","","1","0","0","0","0");
INSERT INTO fy_lottery VALUES("4","测试用券","[\"\\/pic\\/uploads\\/20180828\\/67d3e57d568a4623e2af7ff04bd168f2.jpg\",\"\\/pic\\/uploads\\/20180828\\/a5b545db813421d75aaecfcd42d8a777.jpg\"]","/pic/uploads/20180822/7a2570970d3d8229dcf3deca8903d946.png","1535426869","1535686432","1535426884","1535779094","2","1.00","1.00","4","20","20","all","","","<p>wertghj</p>","1","","0","0","0","0","1");
INSERT INTO fy_lottery VALUES("5","北京烤鸭门店","[\"\\/pic\\/uploads\\/20180828\\/89c9a66a8fc734649e15a75ab7408024.jpg\",\"\\/pic\\/uploads\\/20180828\\/30a0caede7a7f351efdfc6a40437e7de.jpg\",\"\\/pic\\/uploads\\/20180828\\/9a2e1e360b51b0eb8ae7a7a7ac02fd63.jpg\",\"\\/pic\\/uploads\\/20180828\\/dacbf091fa632f201a0a514d77cd61a7.jpg\"]","/pic/uploads/20180828/eddbd53897f5e2bb6ad54472d7a8c698.jpg","1970","1970","1970","1970","3","100.00","0.10","0","45","45","","","","","0","","0","21","1","1","0");
INSERT INTO fy_lottery VALUES("6","有代金券","","/pic/uploads/20180823/d16f4b25c83f76982a894098c0ffbded.jpeg","1535530525","1535544931","1535530542","1535616945","3","100.00","1.00","0","10","10","","","","","1","","0","0","0","0","0");
INSERT INTO fy_lottery VALUES("7","测试券","","/pic/uploads/20180828/71b30d3af10a39e896908eacfb343a70.png","0","0","0","0","2","1.00","1.00","3","330","333","all","","","<p>少时诵诗书所所所所所所所所所所所所所所所所所所所所所所所所</p>","1","","0","0","1","23","0");
INSERT INTO fy_lottery VALUES("8","测试重复券","","/pic/uploads/20180823/e7f06b85a02fbc3c57b06d42ff297224.png","0","0","0","0","2","0.50","0.50","2","98","100","all","","","","0","","1","0","1","10","0");
INSERT INTO fy_lottery VALUES("9","测试测试","","/pic/uploads/20180822/7a2570970d3d8229dcf3deca8903d946.png","0","0","0","0","2","0.10","0.10","2","8","10","all","","","","0","","1","0","1","10","0");
INSERT INTO fy_lottery VALUES("10","测试不花钱券","","/pic/uploads/20180822/7a2570970d3d8229dcf3deca8903d946.png","0","0","0","0","2","0.10","0.10","2","8","10","all","","","","1","","0","0","1","10","0");
DROP TABLE fy_lottery_log;
CREATE TABLE `fy_lottery_log` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '奖券参与明细表',
`uid` int(11) DEFAULT NULL COMMENT '用户id',
`username` varchar(255) DEFAULT NULL COMMENT '领取用户名',
`addtime` int(11) DEFAULT NULL COMMENT '领取时间',
`lottery_id` int(11) DEFAULT NULL COMMENT '奖券id',
`status` tinyint(1) DEFAULT '1' COMMENT '0禁用,1启用',
`updatetime` int(11) DEFAULT NULL COMMENT '使用时间',
`lottery_name` varchar(255) DEFAULT NULL COMMENT '奖券名称',
`use_num` int(1) DEFAULT '0' COMMENT '使用张数 默认0',
`openid` varchar(255) NOT NULL COMMENT '用户id',
`lottery_num` int(11) DEFAULT '1' COMMENT '数量',
`total_price` decimal(10,2) DEFAULT NULL COMMENT '订单总价',
`pay_time` int(11) DEFAULT NULL COMMENT '支付时间',
`pay_status` tinyint(1) DEFAULT '0' COMMENT '0未支付1已经支付',
`lottery_info` text COMMENT 'lottery信息',
`js_api_parameters` varchar(255) DEFAULT NULL,
`prepay_id` varchar(50) DEFAULT NULL,
`is_tui` tinyint(1) DEFAULT '0' COMMENT '0 否 1是推',
`order_status` tinyint(1) DEFAULT NULL COMMENT '订单状态',
`order_id` varchar(64) DEFAULT NULL COMMENT '订单id',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
INSERT INTO fy_lottery_log VALUES("1","","","1535705741","1","1","","优惠券(新人礼包)","0","omQYXwM8TEkiBZR7Ldm891OOWbNQ","1","","","0","{\"id\":1,\"name\":\"\\u4f18\\u60e0\\u5238\\uff08\\u65b0\\u4eba\\u793c\\u5305\\uff09\",\"pic\":\"\",\"main_pic\":\"\\/pic\\/uploads\\/20180828\\/1703f293be77eeb90b78533b9778d25e.png\",\"grant_start_date\":0,\"grant_end_date\":0,\"expire_start_date\":0,\"expire_end_date\":0,\"type\":2,\"coupon_money\":\"1.00\",\"coupon_real_money\":\"1.00\",\"receive_number\":0,\"surplus_number\":100,\"number\":100,\"goods_id\":\"2\",\"goods_name\":\"\\u6fb3\\u5927\\u5229\\u4e9a\\u8110\\u6a5910\\u4e2a\\u7ea6140g\\/\\u4e2a \\u8fdb\\u53e3\\u751c\\u6a59\\u5b50\\u65b0\\u9c9c\\u6c34\\u679c\",\"url\":\"\",\"desc\":\"\",\"status\":1,\"update_time\":null,\"isdelete\":0,\"user_id\":20,\"expire_type\":1,\"expire_time\":30,\"use_type\":1}","","","0","","");
INSERT INTO fy_lottery_log VALUES("2","","","1535705741","2","1","","新人礼包","0","omQYXwM8TEkiBZR7Ldm891OOWbNQ","1","","","0","{\"id\":2,\"name\":\"\\u65b0\\u4eba\\u793c\\u5305\",\"pic\":\"\",\"main_pic\":\"\\/pic\\/uploads\\/20180828\\/5fc1332916aee8884f8095dcb76365ba.png\",\"grant_start_date\":0,\"grant_end_date\":0,\"expire_start_date\":0,\"expire_end_date\":0,\"type\":2,\"coupon_money\":\"2.00\",\"coupon_real_money\":\"10.00\",\"receive_number\":0,\"surplus_number\":444,\"number\":444,\"goods_id\":\"all\",\"goods_name\":null,\"url\":\"\",\"desc\":\"<p>\\u65b0\\u4eba\\u793c\\u5305<\\/p>\",\"status\":1,\"update_time\":null,\"isdelete\":0,\"user_id\":0,\"expire_type\":1,\"expire_time\":12,\"use_type\":1}","","","0","","");
INSERT INTO fy_lottery_log VALUES("3","","","1535705865","1","1","","优惠券(新人礼包)","0","omQYXwNAT5uC15TQqMGxajJzqo4s","1","","","0","{\"id\":1,\"name\":\"\\u4f18\\u60e0\\u5238\\uff08\\u65b0\\u4eba\\u793c\\u5305\\uff09\",\"pic\":\"\",\"main_pic\":\"\\/pic\\/uploads\\/20180828\\/1703f293be77eeb90b78533b9778d25e.png\",\"grant_start_date\":0,\"grant_end_date\":0,\"expire_start_date\":0,\"expire_end_date\":0,\"type\":2,\"coupon_money\":\"1.00\",\"coupon_real_money\":\"1.00\",\"receive_number\":0,\"surplus_number\":100,\"number\":100,\"goods_id\":\"2\",\"goods_name\":\"\\u6fb3\\u5927\\u5229\\u4e9a\\u8110\\u6a5910\\u4e2a\\u7ea6140g\\/\\u4e2a \\u8fdb\\u53e3\\u751c\\u6a59\\u5b50\\u65b0\\u9c9c\\u6c34\\u679c\",\"url\":\"\",\"desc\":\"\",\"status\":1,\"update_time\":null,\"isdelete\":0,\"user_id\":20,\"expire_type\":1,\"expire_time\":30,\"use_type\":1}","","","0","","");
INSERT INTO fy_lottery_log VALUES("4","","","1535705865","2","1","","新人礼包","0","omQYXwNAT5uC15TQqMGxajJzqo4s","1","","","0","{\"id\":2,\"name\":\"\\u65b0\\u4eba\\u793c\\u5305\",\"pic\":\"\",\"main_pic\":\"\\/pic\\/uploads\\/20180828\\/5fc1332916aee8884f8095dcb76365ba.png\",\"grant_start_date\":0,\"grant_end_date\":0,\"expire_start_date\":0,\"expire_end_date\":0,\"type\":2,\"coupon_money\":\"2.00\",\"coupon_real_money\":\"10.00\",\"receive_number\":0,\"surplus_number\":444,\"number\":444,\"goods_id\":\"all\",\"goods_name\":null,\"url\":\"\",\"desc\":\"<p>\\u65b0\\u4eba\\u793c\\u5305<\\/p>\",\"status\":1,\"update_time\":null,\"isdelete\":0,\"user_id\":0,\"expire_type\":1,\"expire_time\":12,\"use_type\":1}","","","0","","");
INSERT INTO fy_lottery_log VALUES("5","","","1535765280","1","1","","优惠券(新人礼包)","0","omQYXwAasNeXdGSMymd91487Ds1g","1","","","0","{\"id\":1,\"name\":\"\\u4f18\\u60e0\\u5238\\uff08\\u65b0\\u4eba\\u793c\\u5305\\uff09\",\"pic\":\"\",\"main_pic\":\"\\/pic\\/uploads\\/20180828\\/1703f293be77eeb90b78533b9778d25e.png\",\"grant_start_date\":0,\"grant_end_date\":0,\"expire_start_date\":0,\"expire_end_date\":0,\"type\":2,\"coupon_money\":\"1.00\",\"coupon_real_money\":\"1.00\",\"receive_number\":0,\"surplus_number\":100,\"number\":100,\"goods_id\":\"2\",\"goods_name\":\"\\u6fb3\\u5927\\u5229\\u4e9a\\u8110\\u6a5910\\u4e2a\\u7ea6140g\\/\\u4e2a \\u8fdb\\u53e3\\u751c\\u6a59\\u5b50\\u65b0\\u9c9c\\u6c34\\u679c\",\"url\":\"\",\"desc\":\"\",\"status\":1,\"update_time\":null,\"isdelete\":0,\"user_id\":20,\"expire_type\":1,\"expire_time\":30,\"use_type\":1}","","","0","","");
INSERT INTO fy_lottery_log VALUES("6","","","1535765280","2","1","","新人礼包","0","omQYXwAasNeXdGSMymd91487Ds1g","1","","","0","{\"id\":2,\"name\":\"\\u65b0\\u4eba\\u793c\\u5305\",\"pic\":\"\",\"main_pic\":\"\\/pic\\/uploads\\/20180828\\/5fc1332916aee8884f8095dcb76365ba.png\",\"grant_start_date\":0,\"grant_end_date\":0,\"expire_start_date\":0,\"expire_end_date\":0,\"type\":2,\"coupon_money\":\"2.00\",\"coupon_real_money\":\"10.00\",\"receive_number\":0,\"surplus_number\":444,\"number\":444,\"goods_id\":\"all\",\"goods_name\":null,\"url\":\"\",\"desc\":\"<p>\\u65b0\\u4eba\\u793c\\u5305<\\/p>\",\"status\":1,\"update_time\":null,\"isdelete\":0,\"user_id\":0,\"expire_type\":1,\"expire_time\":12,\"use_type\":1}","","","0","","");
INSERT INTO fy_lottery_log VALUES("7","3","DANIEL","1535766229","7","1","","测试券","0","omQYXwAasNeXdGSMymd91487Ds1g","1","","","0","{\"id\":7,\"name\":\"\\u6d4b\\u8bd5\\u5238\",\"pic\":\"\",\"main_pic\":\"\\/pic\\/uploads\\/20180828\\/71b30d3af10a39e896908eacfb343a70.png\",\"grant_start_date\":0,\"grant_end_date\":0,\"expire_start_date\":0,\"expire_end_date\":0,\"type\":2,\"coupon_money\":\"1.00\",\"coupon_real_money\":\"1.00\",\"receive_number\":2,\"surplus_number\":331,\"number\":333,\"goods_id\":\"all\",\"goods_name\":null,\"url\":\"\",\"desc\":\"<p>\\u5c11\\u65f6\\u8bf5\\u8bd7\\u4e66\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240\\u6240<\\/p>\",\"status\":1,\"update_time\":null,\"isdelete\":0,\"user_id\":0,\"expire_type\":1,\"expire_time\":23,\"use_type\":0}","","","0","","");
INSERT INTO fy_lottery_log VALUES("8","3","DANIEL","1535766231","10","1","","测试不花钱券","0","omQYXwAasNeXdGSMymd91487Ds1g","1","","","0","{\"id\":10,\"name\":\"\\u6d4b\\u8bd5\\u4e0d\\u82b1\\u94b1\\u5238\",\"pic\":\"\",\"main_pic\":\"\\/pic\\/uploads\\/20180822\\/7a2570970d3d8229dcf3deca8903d946.png\",\"grant_start_date\":0,\"grant_end_date\":0,\"expire_start_date\":0,\"expire_end_date\":0,\"type\":2,\"coupon_money\":\"0.10\",\"coupon_real_money\":\"0.10\",\"receive_number\":1,\"surplus_number\":9,\"number\":10,\"goods_id\":\"all\",\"goods_name\":null,\"url\":\"\",\"desc\":\"\",\"status\":1,\"update_time\":null,\"isdelete\":0,\"user_id\":0,\"expire_type\":1,\"expire_time\":10,\"use_type\":0}","","","0","","");
DROP TABLE fy_lottery_order;
CREATE TABLE `fy_lottery_order` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '代金券表',
`order_id` varchar(50) DEFAULT NULL,
`order_status` tinyint(1) DEFAULT NULL COMMENT '订单状态',
`lottery_id` int(11) NOT NULL,
`openid` varchar(255) DEFAULT NULL,
`uid` int(11) DEFAULT NULL,
`lottery_num` int(11) DEFAULT NULL COMMENT '数量',
`lottery_info` text COMMENT 'lottery信息',
`total_price` decimal(10,2) DEFAULT NULL COMMENT '订单总价',
`pay_status` tinyint(1) DEFAULT '0' COMMENT '0未支付1已经支付',
`create_time` int(11) DEFAULT NULL COMMENT '创建时间',
`js_api_parameters` varchar(255) DEFAULT NULL,
`prepay_id` varchar(50) DEFAULT NULL,
`is_tui` tinyint(1) DEFAULT '0' COMMENT '0 否 1是推',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE fy_message;
CREATE TABLE `fy_message` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '消息模板表',
`title` varchar(255) DEFAULT NULL COMMENT 'title',
`pic` varchar(255) DEFAULT NULL,
`detail` text,
`type` tinyint(1) DEFAULT NULL COMMENT '1积分清零提醒|2积分清零|3生日礼包|4其他',
`lottery_id` int(11) DEFAULT NULL COMMENT '奖券id',
`status` tinyint(1) DEFAULT '1',
`isdelete` tinyint(4) DEFAULT '0',
`create_time` int(11) DEFAULT NULL COMMENT '添加时间',
`update_time` int(11) DEFAULT NULL COMMENT '更新时间',
`is_send` tinyint(1) DEFAULT '0' COMMENT '0否1是',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE fy_message_user;
CREATE TABLE `fy_message_user` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(10) DEFAULT NULL,
`openid` varchar(255) DEFAULT NULL,
`message_id` int(11) DEFAULT NULL,
`text` text COMMENT '支付成功、发货、退款消息内容',
`is_read` tinyint(1) DEFAULT '0' COMMENT '0否1是',
`create_time` int(11) DEFAULT NULL COMMENT '添加时间',
`is_send` tinyint(1) DEFAULT '0' COMMENT '0否1是',
`update_time` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
INSERT INTO fy_message_user VALUES("1","2","omQYXwM8TEkiBZR7Ldm891OOWbNQ","","{\"title\":\"\\u8ba2\\u5355\\u652f\\u4ed8\\u6210\\u529f\",\"detail\":\"\\u6211\\u4eec\\u5df2\\u6536\\u5230\\u60a8\\u7684\\u8d27\\u6b3e\\uff0c\\u5f00\\u59cb\\u4e3a\\u60a8\\u6253\\u5305\\u5546\\u54c1\\uff0c\\u8bf7\\u8010\\u5fc3\\u7b49\\u5f85\\u3002<br\\/>\\u652f\\u4ed8\\u91d1\\u989d\\uff1a\\uffe50.01<br\\/>\\u5546\\u54c1\\u4fe1\\u606f\\uff1a\\u9655\\u897f\\u560e\\u5566\\u82f9\\u679c\\u6c34\\u679c\\u65b0\\u9c9c10\\u65a4\\u5f53\\u5b63\\u6574\\u7bb1\\u73b0\\u6458\\u6279\\u53d1\\u5305\\u90ae\\u5c0f\\u7ea2\\u5bcc\\u58eb 5000g\\u00d71<br\\/><br\\/>\"}","0","1535706068","0","");
INSERT INTO fy_message_user VALUES("2","2","omQYXwM8TEkiBZR7Ldm891OOWbNQ","","{\"title\":\"\\u8ba2\\u5355\\u53d1\\u8d27\\u901a\\u77e5\",\"detail\":\"\\u60a8\\u8d2d\\u4e70\\u7684 \\u9655\\u897f\\u560e\\u5566\\u82f9\\u679c\\u6c34\\u679c\\u65b0\\u9c9c10\\u65a4\\u5f53\\u5b63\\u6574\\u7bb1\\u73b0\\u6458\\u6279\\u53d1\\u5305\\u90ae\\u5c0f\\u7ea2\\u5bcc\\u58eb 5000g\\u00d71 \\u5df2\\u7ecf\\u53d1\\u8d27\\u5566\\uff0c\\u6b63\\u5feb\\u9a6c\\u52a0\\u97ad\\u5411\\u60a8\\u98de\\u5954\\u800c\\u53bb\\u3002<br\\/>\\u8ba2\\u5355\\u7f16\\u53f7\\uff1a1441217402201808311656478916<br\\/>\\u53d1\\u8d27\\u65f6\\u95f4\\uff1a2018-08-31 17:01:35<br\\/>\\u7269\\u6d41\\u516c\\u53f8\\uff1a\\u987a\\u4e30\\u5feb\\u9012<br\\/>\\u5feb\\u9012\\u5355\\u53f7\\uff1a<br\\/>\\u6536\\u8d27\\u5730\\u5740\\uff1a\\u6bb5\\u6b22 13765805489 \\u5317\\u4eac\\u5e02\\u4e1c\\u57ce\\u533a\\u4e1c\\u534e\\u95e8\\u8857\\u9053\\u4e5f\\u662f<br\\/>\\u8bf7\\u4fdd\\u6301\\u624b\\u673a\\u7545\\u901a\\uff01\"}","0","1535706096","0","");
INSERT INTO fy_message_user VALUES("3","2","omQYXwM8TEkiBZR7Ldm891OOWbNQ","","{\"title\":\"\\u8ba2\\u5355\\u53d1\\u8d27\\u901a\\u77e5\",\"detail\":\"\\u60a8\\u8d2d\\u4e70\\u7684 \\u9655\\u897f\\u560e\\u5566\\u82f9\\u679c\\u6c34\\u679c\\u65b0\\u9c9c10\\u65a4\\u5f53\\u5b63\\u6574\\u7bb1\\u73b0\\u6458\\u6279\\u53d1\\u5305\\u90ae\\u5c0f\\u7ea2\\u5bcc\\u58eb 5000g\\u00d71 \\u5df2\\u7ecf\\u53d1\\u8d27\\u5566\\uff0c\\u6b63\\u5feb\\u9a6c\\u52a0\\u97ad\\u5411\\u60a8\\u98de\\u5954\\u800c\\u53bb\\u3002<br\\/>\\u8ba2\\u5355\\u7f16\\u53f7\\uff1a1441217402201808311656478916<br\\/>\\u53d1\\u8d27\\u65f6\\u95f4\\uff1a2018-08-31 17:01:40<br\\/>\\u7269\\u6d41\\u516c\\u53f8\\uff1a\\u987a\\u4e30\\u5feb\\u9012<br\\/>\\u5feb\\u9012\\u5355\\u53f7\\uff1a123<br\\/>\\u6536\\u8d27\\u5730\\u5740\\uff1a\\u6bb5\\u6b22 13765805489 \\u5317\\u4eac\\u5e02\\u4e1c\\u57ce\\u533a\\u4e1c\\u534e\\u95e8\\u8857\\u9053\\u4e5f\\u662f<br\\/>\\u8bf7\\u4fdd\\u6301\\u624b\\u673a\\u7545\\u901a\\uff01\"}","0","1535706100","0","");
INSERT INTO fy_message_user VALUES("4","2","omQYXwM8TEkiBZR7Ldm891OOWbNQ","","{\"title\":\"\\u9000\\u6b3e\\u901a\\u77e5\",\"detail\":\"\\u60a8\\u7684\\u8ba2\\u5355\\u5df2\\u7ecf\\u5b8c\\u6210\\u9000\\u6b3e\\uff0c\\u539f\\u8def\\u9000\\u56de\\u5230\\u60a8\\u7684\\u652f\\u4ed8\\u8d26\\u6237\\uff08\\u96f6\\u94b120\\u5929\\u5185\\u5230\\u8d26\\uff1b\\u50a8\\u84c4\\u53611-3\\u4e2a\\u5de5\\u4f5c\\u65e5\\uff1b\\u4fe1\\u7528\\u53612-5\\u4e2a\\u5de5\\u4f5c\\u65e5\\uff09\\u8bf7\\u7559\\u610f\\u67e5\\u6536\\u3002<br\\/>\\u9000\\u6b3e\\u91d1\\u989d\\uff1a0.01<br\\/>\\u5546\\u54c1\\u540d\\u79f0\\uff1a\\u9655\\u897f\\u560e\\u5566\\u82f9\\u679c\\u6c34\\u679c\\u65b0\\u9c9c10\\u65a4\\u5f53\\u5b63\\u6574\\u7bb1\\u73b0\\u6458\\u6279\\u53d1\\u5305\\u90ae\\u5c0f\\u7ea2\\u5bcc\\u58eb 5000g\\u00d71<br\\/><br\\/>\\u9000\\u6b3e\\u5355\\u53f7\\uff1a1441217402201808311656478916<br\\/>\\u6709\\u4ec0\\u4e48\\u7591\\u95ee\\u8bf7\\u8054\\u7cfb\\u30100851-86701701\\u3011\\u54a8\\u8be2\"}","0","1535706882","0","");
INSERT INTO fy_message_user VALUES("5","3","omQYXwAasNeXdGSMymd91487Ds1g","","{\"title\":\"\\u8ba2\\u5355\\u652f\\u4ed8\\u6210\\u529f\",\"detail\":\"\\u6211\\u4eec\\u5df2\\u6536\\u5230\\u60a8\\u7684\\u8d27\\u6b3e\\uff0c\\u5f00\\u59cb\\u4e3a\\u60a8\\u6253\\u5305\\u5546\\u54c1\\uff0c\\u8bf7\\u8010\\u5fc3\\u7b49\\u5f85\\u3002<br\\/>\\u652f\\u4ed8\\u91d1\\u989d\\uff1a\\uffe50.01<br\\/>\\u5546\\u54c1\\u4fe1\\u606f\\uff1a\\u9655\\u897f\\u560e\\u5566\\u82f9\\u679c\\u6c34\\u679c\\u65b0\\u9c9c10\\u65a4\\u5f53\\u5b63\\u6574\\u7bb1\\u73b0\\u6458\\u6279\\u53d1\\u5305\\u90ae\\u5c0f\\u7ea2\\u5bcc\\u58eb 5000g\\u00d71<br\\/><br\\/>\"}","0","1535765494","0","");
INSERT INTO fy_message_user VALUES("6","3","omQYXwAasNeXdGSMymd91487Ds1g","","{\"title\":\"\\u8ba2\\u5355\\u652f\\u4ed8\\u6210\\u529f\",\"detail\":\"\\u6211\\u4eec\\u5df2\\u6536\\u5230\\u60a8\\u7684\\u8d27\\u6b3e\\uff0c\\u5f00\\u59cb\\u4e3a\\u60a8\\u6253\\u5305\\u5546\\u54c1\\uff0c\\u8bf7\\u8010\\u5fc3\\u7b49\\u5f85\\u3002<br\\/>\\u652f\\u4ed8\\u91d1\\u989d\\uff1a\\uffe510<br\\/>\\u5546\\u54c1\\u4fe1\\u606f\\uff1a\\u79ef\\u5206\\u5546\\u57ce\\u82f9\\u679c\\u624b\\u673a <br\\/>\"}","1","1535766142","0","1535766482");
INSERT INTO fy_message_user VALUES("7","3","omQYXwAasNeXdGSMymd91487Ds1g","","{\"title\":\"\\u8ba2\\u5355\\u652f\\u4ed8\\u6210\\u529f\",\"detail\":\"\\u6211\\u4eec\\u5df2\\u6536\\u5230\\u60a8\\u7684\\u8d27\\u6b3e\\uff0c\\u5f00\\u59cb\\u4e3a\\u60a8\\u6253\\u5305\\u5546\\u54c1\\uff0c\\u8bf7\\u8010\\u5fc3\\u7b49\\u5f85\\u3002<br\\/>\\u652f\\u4ed8\\u91d1\\u989d\\uff1a\\uffe50.01<br\\/>\\u5546\\u54c1\\u4fe1\\u606f\\uff1a\\u65b0\\u7586\\u5580\\u4ec0\\u897f\\u68854\\u65a4\\u5927\\u679c\\u987a\\u4e30\\u5305\\u90ae\\u5f53\\u5b63\\u6c34\\u679c \\u65b0\\u9c9c\\u897f\\u6885 1kg\\u00d71<br\\/><br\\/>\"}","0","1535766341","0","");
DROP TABLE fy_modular;
CREATE TABLE `fy_modular` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '首页模块功能表',
`pic` varchar(255) NOT NULL COMMENT '图片',
`title` varchar(20) NOT NULL COMMENT '名称',
`create_time` int(11) NOT NULL COMMENT '添加时间',
`status` tinyint(1) DEFAULT '1' COMMENT '1启用0禁用',
`orderby` int(11) DEFAULT '1' COMMENT '排序值',
`update_time` int(11) DEFAULT NULL COMMENT '修改时间',
`url` varchar(255) NOT NULL COMMENT '链接',
`isdelete` tinyint(1) DEFAULT '0' COMMENT '删除',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
INSERT INTO fy_modular VALUES("5","/pic/uploads/20180815/37997791f696b84d28044c300ffab2c4.png","券集市","1530519950","1","2","1534831696","http://www.fyxt701.com/index.php/index/lottery/market.html","0");
INSERT INTO fy_modular VALUES("6","/pic/uploads/20180815/19bd2c8f934a1d30e29ea800ce8b0f6a.png","积分商城","1530519975","1","3","1534831691","http://www.fyxt701.com/index.php/index/goods/goodsScore.html","0");
INSERT INTO fy_modular VALUES("7","/pic/uploads/20180712/7e9ad7220a395482357dc96e6e065241.png","充值中心","1530519996","0","4","1534831685","http://www.fyxt701.com/index.php/index","0");
INSERT INTO fy_modular VALUES("8","/pic/uploads/20180727/19c301bf9f40b6c29c3d9fda684541bc.png","会员签到","1530520015","1","5","1534831678","http://www.fyxt701.com/index.php/index/customer/my_sign.html","0");
INSERT INTO fy_modular VALUES("9","/pic/uploads/20180815/e554024d8505052d6bb4deaaa2c23a03.png","限时抢购","1531961915","1","6","1534831671","http://www.fyxt701.com/index.php/index/goods/rushPurchase.html","0");
DROP TABLE fy_node_map;
CREATE TABLE `fy_node_map` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`module` varchar(255) NOT NULL DEFAULT '' COMMENT '模块',
`controller` varchar(255) NOT NULL DEFAULT '' COMMENT '控制器',
`action` varchar(255) NOT NULL DEFAULT '' COMMENT '方法',
`method` char(6) NOT NULL DEFAULT '' COMMENT '请求方式',
`comment` varchar(255) NOT NULL DEFAULT '' COMMENT '节点图描述',
PRIMARY KEY (`id`),
KEY `map` (`method`,`module`,`controller`,`action`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=474 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='节点图';
INSERT INTO fy_node_map VALUES("1","admin","SildeShow","index","ALL","轮播图");
INSERT INTO fy_node_map VALUES("2","admin","AdminGroup","index","ALL","分组管理");
INSERT INTO fy_node_map VALUES("3","admin","AdminGroup","add","ALL","分组添加");
INSERT INTO fy_node_map VALUES("4","admin","Group","forbid","ALL","分组禁止");
INSERT INTO fy_node_map VALUES("5","admin","Group","resume","ALL","分组恢复");
INSERT INTO fy_node_map VALUES("6","admin","Group","delete","ALL","分组删除");
INSERT INTO fy_node_map VALUES("7","admin","Group","saveorder","ALL","分组排序保存");
INSERT INTO fy_node_map VALUES("8","admin","AdminGroup","recycleBin","ALL","AdminGroup 回收站");
INSERT INTO fy_node_map VALUES("9","admin","AdminGroup","edit","ALL","AdminGroup 编辑");
INSERT INTO fy_node_map VALUES("10","admin","AdminGroup","delete","ALL","AdminGroup 默认删除操作");
INSERT INTO fy_node_map VALUES("11","admin","AdminGroup","recycle","ALL","AdminGroup 从回收站恢复");
INSERT INTO fy_node_map VALUES("12","admin","AdminGroup","forbid","ALL","AdminGroup 默认禁用操作");
INSERT INTO fy_node_map VALUES("13","admin","AdminGroup","resume","ALL","AdminGroup 默认恢复操作");
INSERT INTO fy_node_map VALUES("14","admin","AdminGroup","deleteForever","ALL","AdminGroup 永久删除");
INSERT INTO fy_node_map VALUES("15","admin","AdminGroup","clear","ALL","AdminGroup 清空回收站");
INSERT INTO fy_node_map VALUES("16","admin","AdminGroup","saveOrder","ALL","AdminGroup 保存排序");
INSERT INTO fy_node_map VALUES("23","admin","AdminNode","index","ALL","AdminNode 首页");
INSERT INTO fy_node_map VALUES("24","admin","AdminNode","recycleBin","ALL","AdminNode 回收站");
INSERT INTO fy_node_map VALUES("25","admin","AdminNode","sort","ALL","AdminNode 保存排序");
INSERT INTO fy_node_map VALUES("26","admin","AdminNode","load","ALL","AdminNode 节点快速导入");
INSERT INTO fy_node_map VALUES("27","admin","AdminNode","indexOld","ALL","AdminNode 首页");
INSERT INTO fy_node_map VALUES("28","admin","AdminNode","add","ALL","AdminNode 添加");
INSERT INTO fy_node_map VALUES("29","admin","AdminNode","edit","ALL","AdminNode 编辑");
INSERT INTO fy_node_map VALUES("30","admin","AdminNode","delete","ALL","AdminNode 默认删除操作");
INSERT INTO fy_node_map VALUES("31","admin","AdminNode","recycle","ALL","AdminNode 从回收站恢复");
INSERT INTO fy_node_map VALUES("32","admin","AdminNode","forbid","ALL","AdminNode 默认禁用操作");
INSERT INTO fy_node_map VALUES("33","admin","AdminNode","resume","ALL","AdminNode 默认恢复操作");
INSERT INTO fy_node_map VALUES("34","admin","AdminNode","deleteForever","ALL","AdminNode 永久删除");
INSERT INTO fy_node_map VALUES("35","admin","AdminNode","clear","ALL","AdminNode 清空回收站");
INSERT INTO fy_node_map VALUES("36","admin","AdminNode","saveOrder","ALL","AdminNode 保存排序");
INSERT INTO fy_node_map VALUES("38","admin","AdminNodeLoad","index","ALL","AdminNodeLoad 首页");
INSERT INTO fy_node_map VALUES("39","admin","AdminNodeLoad","recycleBin","ALL","AdminNodeLoad 回收站");
INSERT INTO fy_node_map VALUES("40","admin","AdminNodeLoad","add","ALL","AdminNodeLoad 添加");
INSERT INTO fy_node_map VALUES("41","admin","AdminNodeLoad","edit","ALL","AdminNodeLoad 编辑");
INSERT INTO fy_node_map VALUES("42","admin","AdminNodeLoad","forbid","ALL","AdminNodeLoad 默认禁用操作");
INSERT INTO fy_node_map VALUES("43","admin","AdminNodeLoad","resume","ALL","AdminNodeLoad 默认恢复操作");
INSERT INTO fy_node_map VALUES("44","admin","AdminNodeLoad","deleteForever","ALL","AdminNodeLoad 永久删除");
INSERT INTO fy_node_map VALUES("45","admin","AdminNodeLoad","clear","ALL","AdminNodeLoad 清空回收站");
INSERT INTO fy_node_map VALUES("46","admin","AdminNodeLoad","saveOrder","ALL","AdminNodeLoad 保存排序");
INSERT INTO fy_node_map VALUES("53","admin","AdminRole","user","ALL","AdminRole 用户列表");
INSERT INTO fy_node_map VALUES("54","admin","AdminRole","access","ALL","AdminRole 授权");
INSERT INTO fy_node_map VALUES("55","admin","AdminRole","index","ALL","AdminRole 首页");
INSERT INTO fy_node_map VALUES("56","admin","AdminRole","recycleBin","ALL","AdminRole 回收站");
INSERT INTO fy_node_map VALUES("57","admin","AdminRole","add","ALL","AdminRole 添加");
INSERT INTO fy_node_map VALUES("58","admin","AdminRole","edit","ALL","AdminRole 编辑");
INSERT INTO fy_node_map VALUES("59","admin","AdminRole","delete","ALL","AdminRole 默认删除操作");
INSERT INTO fy_node_map VALUES("60","admin","AdminRole","recycle","ALL","AdminRole 从回收站恢复");
INSERT INTO fy_node_map VALUES("61","admin","AdminRole","forbid","ALL","AdminRole 默认禁用操作");
INSERT INTO fy_node_map VALUES("62","admin","AdminRole","resume","ALL","AdminRole 默认恢复操作");
INSERT INTO fy_node_map VALUES("63","admin","AdminRole","deleteForever","ALL","AdminRole 永久删除");
INSERT INTO fy_node_map VALUES("64","admin","AdminRole","clear","ALL","AdminRole 清空回收站");
INSERT INTO fy_node_map VALUES("65","admin","AdminRole","saveOrder","ALL","AdminRole 保存排序");
INSERT INTO fy_node_map VALUES("68","admin","AdminUser","password","ALL","AdminUser 修改密码");
INSERT INTO fy_node_map VALUES("69","admin","AdminUser","index","ALL","AdminUser 首页");
INSERT INTO fy_node_map VALUES("70","admin","AdminUser","recycleBin","ALL","AdminUser 回收站");
INSERT INTO fy_node_map VALUES("71","admin","AdminUser","add","ALL","AdminUser 添加");
INSERT INTO fy_node_map VALUES("72","admin","AdminUser","edit","ALL","AdminUser 编辑");
INSERT INTO fy_node_map VALUES("73","admin","AdminUser","delete","ALL","AdminUser 默认删除操作");
INSERT INTO fy_node_map VALUES("74","admin","AdminUser","recycle","ALL","AdminUser 从回收站恢复");
INSERT INTO fy_node_map VALUES("75","admin","AdminUser","forbid","ALL","AdminUser 默认禁用操作");
INSERT INTO fy_node_map VALUES("76","admin","AdminUser","resume","ALL","AdminUser 默认恢复操作");
INSERT INTO fy_node_map VALUES("77","admin","AdminUser","deleteForever","ALL","AdminUser 永久删除");
INSERT INTO fy_node_map VALUES("78","admin","AdminUser","clear","ALL","AdminUser 清空回收站");
INSERT INTO fy_node_map VALUES("79","admin","AdminUser","saveOrder","ALL","AdminUser 保存排序");
INSERT INTO fy_node_map VALUES("83","admin","Demo","excel","ALL","Demo Excel一键导出");
INSERT INTO fy_node_map VALUES("84","admin","Demo","download","ALL","Demo 下载文件");
INSERT INTO fy_node_map VALUES("85","admin","Demo","downloadImage","ALL","Demo 下载远程图片");
INSERT INTO fy_node_map VALUES("86","admin","Demo","mail","ALL","Demo 发送邮件");
INSERT INTO fy_node_map VALUES("87","admin","Demo","ueditor","ALL","Demo 百度编辑器");
INSERT INTO fy_node_map VALUES("88","admin","Demo","qiniu","ALL","Demo 七牛上传");
INSERT INTO fy_node_map VALUES("89","admin","Demo","hashids","ALL","Demo ID加密");
INSERT INTO fy_node_map VALUES("90","admin","Demo","layer","ALL","Demo 丰富弹层");
INSERT INTO fy_node_map VALUES("91","admin","Demo","tableFixed","ALL","Demo 表格溢出");
INSERT INTO fy_node_map VALUES("92","admin","Demo","imageUpload","ALL","Demo 图片上传回调");
INSERT INTO fy_node_map VALUES("93","admin","Demo","qrcode","ALL","Demo 二维码生成");
INSERT INTO fy_node_map VALUES("98","admin","Index","index","ALL","Index ");
INSERT INTO fy_node_map VALUES("99","admin","Index","welcome","ALL","Index 欢迎页");
INSERT INTO fy_node_map VALUES("101","admin","LoginLog","index","ALL","LoginLog 首页");
INSERT INTO fy_node_map VALUES("102","admin","LoginLog","saveOrder","ALL","LoginLog 保存排序");
INSERT INTO fy_node_map VALUES("104","admin","Modular","index","ALL","Modular ");
INSERT INTO fy_node_map VALUES("105","admin","Modular","recycleBin","ALL","Modular 回收站");
INSERT INTO fy_node_map VALUES("106","admin","Modular","add","ALL","Modular 添加");
INSERT INTO fy_node_map VALUES("107","admin","Modular","edit","ALL","Modular 编辑");
INSERT INTO fy_node_map VALUES("108","admin","Modular","delete","ALL","Modular 默认删除操作");
INSERT INTO fy_node_map VALUES("109","admin","Modular","recycle","ALL","Modular 从回收站恢复");
INSERT INTO fy_node_map VALUES("110","admin","Modular","forbid","ALL","Modular 默认禁用操作");
INSERT INTO fy_node_map VALUES("111","admin","Modular","resume","ALL","Modular 默认恢复操作");
INSERT INTO fy_node_map VALUES("112","admin","Modular","deleteForever","ALL","Modular 永久删除");
INSERT INTO fy_node_map VALUES("113","admin","Modular","clear","ALL","Modular 清空回收站");
INSERT INTO fy_node_map VALUES("114","admin","Modular","saveOrder","ALL","Modular 保存排序");
INSERT INTO fy_node_map VALUES("119","admin","NodeMap","load","ALL","NodeMap 自动导入");
INSERT INTO fy_node_map VALUES("120","admin","NodeMap","index","ALL","NodeMap 首页");
INSERT INTO fy_node_map VALUES("121","admin","NodeMap","recycleBin","ALL","NodeMap 回收站");
INSERT INTO fy_node_map VALUES("122","admin","NodeMap","add","ALL","NodeMap 添加");
INSERT INTO fy_node_map VALUES("123","admin","NodeMap","edit","ALL","NodeMap 编辑");
INSERT INTO fy_node_map VALUES("124","admin","NodeMap","deleteForever","ALL","NodeMap 永久删除");
INSERT INTO fy_node_map VALUES("125","admin","NodeMap","saveOrder","ALL","NodeMap 保存排序");
INSERT INTO fy_node_map VALUES("126","admin","Notice","index","ALL","Notice 首页");
INSERT INTO fy_node_map VALUES("127","admin","Notice","recycleBin","ALL","Notice 回收站");
INSERT INTO fy_node_map VALUES("128","admin","Notice","add","ALL","Notice 添加");
INSERT INTO fy_node_map VALUES("129","admin","Notice","edit","ALL","Notice 编辑");
INSERT INTO fy_node_map VALUES("130","admin","Notice","delete","ALL","Notice 默认删除操作");
INSERT INTO fy_node_map VALUES("131","admin","Notice","recycle","ALL","Notice 从回收站恢复");
INSERT INTO fy_node_map VALUES("132","admin","Notice","forbid","ALL","Notice 默认禁用操作");
INSERT INTO fy_node_map VALUES("133","admin","Notice","resume","ALL","Notice 默认恢复操作");
INSERT INTO fy_node_map VALUES("134","admin","Notice","deleteForever","ALL","Notice 永久删除");
INSERT INTO fy_node_map VALUES("135","admin","Notice","clear","ALL","Notice 清空回收站");
INSERT INTO fy_node_map VALUES("136","admin","Notice","saveOrder","ALL","Notice 保存排序");
INSERT INTO fy_node_map VALUES("141","admin","Pub","login","ALL","Pub 用户登录页面");
INSERT INTO fy_node_map VALUES("142","admin","Pub","loginFrame","ALL","Pub 小窗口登录页面");
INSERT INTO fy_node_map VALUES("143","admin","Pub","index","ALL","Pub 首页");
INSERT INTO fy_node_map VALUES("144","admin","Pub","logout","ALL","Pub 用户登出");
INSERT INTO fy_node_map VALUES("145","admin","Pub","checkLogin","ALL","Pub 登录检测");
INSERT INTO fy_node_map VALUES("146","admin","Pub","password","ALL","Pub 修改密码");
INSERT INTO fy_node_map VALUES("147","admin","Pub","profile","ALL","Pub 查看用户信息|修改资料");
INSERT INTO fy_node_map VALUES("148","admin","SildeShow","recycleBin","ALL","SildeShow 回收站");
INSERT INTO fy_node_map VALUES("149","admin","SildeShow","add","ALL","SildeShow 添加");
INSERT INTO fy_node_map VALUES("150","admin","SildeShow","edit","ALL","SildeShow 编辑");
INSERT INTO fy_node_map VALUES("151","admin","SildeShow","delete","ALL","SildeShow 默认删除操作");
INSERT INTO fy_node_map VALUES("152","admin","SildeShow","recycle","ALL","SildeShow 从回收站恢复");
INSERT INTO fy_node_map VALUES("153","admin","SildeShow","forbid","ALL","SildeShow 默认禁用操作");
INSERT INTO fy_node_map VALUES("154","admin","SildeShow","resume","ALL","SildeShow 默认恢复操作");
INSERT INTO fy_node_map VALUES("155","admin","SildeShow","deleteForever","ALL","SildeShow 永久删除");
INSERT INTO fy_node_map VALUES("156","admin","SildeShow","clear","ALL","SildeShow 清空回收站");
INSERT INTO fy_node_map VALUES("157","admin","SildeShow","saveOrder","ALL","SildeShow 保存排序");
INSERT INTO fy_node_map VALUES("163","admin","Upload","index","ALL","Upload 首页");
INSERT INTO fy_node_map VALUES("164","admin","Upload","upload","ALL","Upload 文件上传");
INSERT INTO fy_node_map VALUES("165","admin","Upload","remote","ALL","Upload 远程图片抓取");
INSERT INTO fy_node_map VALUES("166","admin","Upload","listImage","ALL","Upload 图片列表");
INSERT INTO fy_node_map VALUES("170","admin","WebLog","index","ALL","WebLog 列表");
INSERT INTO fy_node_map VALUES("171","admin","WebLog","detail","ALL","WebLog 详情");
INSERT INTO fy_node_map VALUES("173","admin","one.two.three.Four","index","ALL","Four 首页");
INSERT INTO fy_node_map VALUES("174","admin","one.two.three.Four","recycleBin","ALL","Four 回收站");
INSERT INTO fy_node_map VALUES("175","admin","one.two.three.Four","add","ALL","Four 添加");
INSERT INTO fy_node_map VALUES("176","admin","one.two.three.Four","edit","ALL","Four 编辑");
INSERT INTO fy_node_map VALUES("177","admin","one.two.three.Four","delete","ALL","Four 默认删除操作");
INSERT INTO fy_node_map VALUES("178","admin","one.two.three.Four","recycle","ALL","Four 从回收站恢复");
INSERT INTO fy_node_map VALUES("179","admin","one.two.three.Four","forbid","ALL","Four 默认禁用操作");
INSERT INTO fy_node_map VALUES("180","admin","one.two.three.Four","resume","ALL","Four 默认恢复操作");
INSERT INTO fy_node_map VALUES("181","admin","one.two.three.Four","deleteForever","ALL","Four 永久删除");
INSERT INTO fy_node_map VALUES("182","admin","one.two.three.Four","clear","ALL","Four 清空回收站");
INSERT INTO fy_node_map VALUES("183","admin","one.two.three.Four","saveOrder","ALL","Four 保存排序");
INSERT INTO fy_node_map VALUES("184","admin","GoodsClass","add","ALL","GoodsClass 添加");
INSERT INTO fy_node_map VALUES("185","admin","GoodsClass","edit","ALL","GoodsClass 编辑");
INSERT INTO fy_node_map VALUES("186","admin","GoodsClass","delete","ALL","GoodsClass ");
INSERT INTO fy_node_map VALUES("187","admin","GoodsClass","index","ALL","GoodsClass ");
INSERT INTO fy_node_map VALUES("188","admin","GoodsClass","recycleBin","ALL","GoodsClass 回收站");
INSERT INTO fy_node_map VALUES("189","admin","GoodsClass","recycle","ALL","GoodsClass 从回收站恢复");
INSERT INTO fy_node_map VALUES("190","admin","GoodsClass","forbid","ALL","GoodsClass 默认禁用操作");
INSERT INTO fy_node_map VALUES("191","admin","GoodsClass","resume","ALL","GoodsClass 默认恢复操作");
INSERT INTO fy_node_map VALUES("192","admin","GoodsClass","deleteForever","ALL","GoodsClass 永久删除");
INSERT INTO fy_node_map VALUES("193","admin","GoodsClass","clear","ALL","GoodsClass 清空回收站");
INSERT INTO fy_node_map VALUES("194","admin","GoodsClass","saveOrder","ALL","GoodsClass 保存排序");
INSERT INTO fy_node_map VALUES("199","admin","Brand","index","ALL","Brand 首页");
INSERT INTO fy_node_map VALUES("200","admin","Brand","recycleBin","ALL","Brand 回收站");
INSERT INTO fy_node_map VALUES("201","admin","Brand","add","ALL","Brand 添加");
INSERT INTO fy_node_map VALUES("202","admin","Brand","edit","ALL","Brand 编辑");
INSERT INTO fy_node_map VALUES("203","admin","Brand","delete","ALL","Brand 默认删除操作");
INSERT INTO fy_node_map VALUES("204","admin","Brand","recycle","ALL","Brand 从回收站恢复");
INSERT INTO fy_node_map VALUES("205","admin","Brand","forbid","ALL","Brand 默认禁用操作");
INSERT INTO fy_node_map VALUES("206","admin","Brand","resume","ALL","Brand 默认恢复操作");
INSERT INTO fy_node_map VALUES("207","admin","Brand","deleteForever","ALL","Brand 永久删除");
INSERT INTO fy_node_map VALUES("208","admin","Brand","clear","ALL","Brand 清空回收站");
INSERT INTO fy_node_map VALUES("209","admin","Brand","saveOrder","ALL","Brand 保存排序");
INSERT INTO fy_node_map VALUES("210","admin","Customer","excel","ALL","Customer 会员信息一键导出");
INSERT INTO fy_node_map VALUES("211","admin","Customer","index","ALL","Customer 首页");
INSERT INTO fy_node_map VALUES("212","admin","Customer","recycleBin","ALL","Customer 回收站");
INSERT INTO fy_node_map VALUES("213","admin","Customer","add","ALL","Customer 添加");
INSERT INTO fy_node_map VALUES("214","admin","Customer","edit","ALL","Customer 编辑");
INSERT INTO fy_node_map VALUES("215","admin","Customer","delete","ALL","Customer 默认删除操作");
INSERT INTO fy_node_map VALUES("216","admin","Customer","recycle","ALL","Customer 从回收站恢复");
INSERT INTO fy_node_map VALUES("217","admin","Customer","forbid","ALL","Customer 默认禁用操作");
INSERT INTO fy_node_map VALUES("218","admin","Customer","resume","ALL","Customer 默认恢复操作");
INSERT INTO fy_node_map VALUES("219","admin","Customer","deleteForever","ALL","Customer 永久删除");
INSERT INTO fy_node_map VALUES("220","admin","Customer","clear","ALL","Customer 清空回收站");
INSERT INTO fy_node_map VALUES("221","admin","Customer","saveOrder","ALL","Customer 保存排序");
INSERT INTO fy_node_map VALUES("225","admin","Goods","add","ALL","Goods ");
INSERT INTO fy_node_map VALUES("226","admin","Goods","index","ALL","Goods 首页");
INSERT INTO fy_node_map VALUES("227","admin","Goods","recycleBin","ALL","Goods 回收站");
INSERT INTO fy_node_map VALUES("228","admin","Goods","edit","ALL","Goods 编辑");
INSERT INTO fy_node_map VALUES("229","admin","Goods","delete","ALL","Goods 默认删除操作");
INSERT INTO fy_node_map VALUES("230","admin","Goods","recycle","ALL","Goods 从回收站恢复");
INSERT INTO fy_node_map VALUES("231","admin","Goods","forbid","ALL","Goods 默认禁用操作");
INSERT INTO fy_node_map VALUES("232","admin","Goods","resume","ALL","Goods 默认恢复操作");
INSERT INTO fy_node_map VALUES("233","admin","Goods","deleteForever","ALL","Goods 永久删除");
INSERT INTO fy_node_map VALUES("234","admin","Goods","clear","ALL","Goods 清空回收站");
INSERT INTO fy_node_map VALUES("235","admin","Goods","saveOrder","ALL","Goods 保存排序");
INSERT INTO fy_node_map VALUES("240","admin","CustomerTask","index","ALL","CustomerTask 首页");
INSERT INTO fy_node_map VALUES("241","admin","CustomerTask","recycleBin","ALL","CustomerTask 回收站");
INSERT INTO fy_node_map VALUES("242","admin","CustomerTask","add","ALL","CustomerTask 添加");
INSERT INTO fy_node_map VALUES("243","admin","CustomerTask","edit","ALL","CustomerTask 编辑");
INSERT INTO fy_node_map VALUES("244","admin","CustomerTask","delete","ALL","CustomerTask 默认删除操作");
INSERT INTO fy_node_map VALUES("245","admin","CustomerTask","recycle","ALL","CustomerTask 从回收站恢复");
INSERT INTO fy_node_map VALUES("246","admin","CustomerTask","forbid","ALL","CustomerTask 默认禁用操作");
INSERT INTO fy_node_map VALUES("247","admin","CustomerTask","resume","ALL","CustomerTask 默认恢复操作");
INSERT INTO fy_node_map VALUES("248","admin","CustomerTask","deleteForever","ALL","CustomerTask 永久删除");
INSERT INTO fy_node_map VALUES("249","admin","CustomerTask","clear","ALL","CustomerTask 清空回收站");
INSERT INTO fy_node_map VALUES("250","admin","CustomerTask","saveOrder","ALL","CustomerTask 保存排序");
INSERT INTO fy_node_map VALUES("255","admin","Lottery","index","ALL","Lottery 首页");
INSERT INTO fy_node_map VALUES("256","admin","Lottery","recycleBin","ALL","Lottery 回收站");
INSERT INTO fy_node_map VALUES("257","admin","Lottery","add","ALL","Lottery 添加");
INSERT INTO fy_node_map VALUES("258","admin","Lottery","edit","ALL","Lottery 编辑");
INSERT INTO fy_node_map VALUES("259","admin","Lottery","delete","ALL","Lottery 默认删除操作");
INSERT INTO fy_node_map VALUES("260","admin","Lottery","recycle","ALL","Lottery 从回收站恢复");
INSERT INTO fy_node_map VALUES("261","admin","Lottery","forbid","ALL","Lottery 默认禁用操作");
INSERT INTO fy_node_map VALUES("262","admin","Lottery","resume","ALL","Lottery 默认恢复操作");
INSERT INTO fy_node_map VALUES("263","admin","Lottery","deleteForever","ALL","Lottery 永久删除");
INSERT INTO fy_node_map VALUES("264","admin","Lottery","clear","ALL","Lottery 清空回收站");
INSERT INTO fy_node_map VALUES("265","admin","Lottery","saveOrder","ALL","Lottery 保存排序");
INSERT INTO fy_node_map VALUES("270","admin","Sildeshow","index","ALL","Sildeshow ");
INSERT INTO fy_node_map VALUES("271","admin","Sildeshow","recycleBin","ALL","Sildeshow 回收站");
INSERT INTO fy_node_map VALUES("272","admin","Sildeshow","add","ALL","Sildeshow 添加");
INSERT INTO fy_node_map VALUES("273","admin","Sildeshow","edit","ALL","Sildeshow 编辑");
INSERT INTO fy_node_map VALUES("274","admin","Sildeshow","delete","ALL","Sildeshow 默认删除操作");
INSERT INTO fy_node_map VALUES("275","admin","Sildeshow","recycle","ALL","Sildeshow 从回收站恢复");
INSERT INTO fy_node_map VALUES("276","admin","Sildeshow","forbid","ALL","Sildeshow 默认禁用操作");
INSERT INTO fy_node_map VALUES("277","admin","Sildeshow","resume","ALL","Sildeshow 默认恢复操作");
INSERT INTO fy_node_map VALUES("278","admin","Sildeshow","deleteForever","ALL","Sildeshow 永久删除");
INSERT INTO fy_node_map VALUES("279","admin","Sildeshow","clear","ALL","Sildeshow 清空回收站");
INSERT INTO fy_node_map VALUES("280","admin","Sildeshow","saveOrder","ALL","Sildeshow 保存排序");
INSERT INTO fy_node_map VALUES("285","admin","CustomerGrade","add","ALL","CustomerGrade 添加");
INSERT INTO fy_node_map VALUES("286","admin","CustomerGrade","edit","ALL","CustomerGrade 编辑");
INSERT INTO fy_node_map VALUES("287","admin","CustomerGrade","index","ALL","CustomerGrade 首页");
INSERT INTO fy_node_map VALUES("288","admin","CustomerGrade","recycleBin","ALL","CustomerGrade 回收站");
INSERT INTO fy_node_map VALUES("289","admin","CustomerGrade","delete","ALL","CustomerGrade 默认删除操作");
INSERT INTO fy_node_map VALUES("290","admin","CustomerGrade","recycle","ALL","CustomerGrade 从回收站恢复");
INSERT INTO fy_node_map VALUES("291","admin","CustomerGrade","forbid","ALL","CustomerGrade 默认禁用操作");
INSERT INTO fy_node_map VALUES("292","admin","CustomerGrade","resume","ALL","CustomerGrade 默认恢复操作");
INSERT INTO fy_node_map VALUES("293","admin","CustomerGrade","deleteForever","ALL","CustomerGrade 永久删除");
INSERT INTO fy_node_map VALUES("294","admin","CustomerGrade","clear","ALL","CustomerGrade 清空回收站");
INSERT INTO fy_node_map VALUES("295","admin","CustomerGrade","saveOrder","ALL","CustomerGrade 保存排序");
INSERT INTO fy_node_map VALUES("300","admin","Goods","return_json","ALL","Goods ");
INSERT INTO fy_node_map VALUES("301","admin","CustomerGradeDesc","index","ALL","CustomerGradeDesc 首页");
INSERT INTO fy_node_map VALUES("302","admin","CustomerGradeDesc","recycleBin","ALL","CustomerGradeDesc 回收站");
INSERT INTO fy_node_map VALUES("303","admin","CustomerGradeDesc","add","ALL","CustomerGradeDesc 添加");
INSERT INTO fy_node_map VALUES("304","admin","CustomerGradeDesc","edit","ALL","CustomerGradeDesc 编辑");
INSERT INTO fy_node_map VALUES("305","admin","CustomerGradeDesc","delete","ALL","CustomerGradeDesc 默认删除操作");
INSERT INTO fy_node_map VALUES("306","admin","CustomerGradeDesc","recycle","ALL","CustomerGradeDesc 从回收站恢复");
INSERT INTO fy_node_map VALUES("307","admin","CustomerGradeDesc","forbid","ALL","CustomerGradeDesc 默认禁用操作");
INSERT INTO fy_node_map VALUES("308","admin","CustomerGradeDesc","resume","ALL","CustomerGradeDesc 默认恢复操作");
INSERT INTO fy_node_map VALUES("309","admin","CustomerGradeDesc","deleteForever","ALL","CustomerGradeDesc 永久删除");
INSERT INTO fy_node_map VALUES("310","admin","CustomerGradeDesc","clear","ALL","CustomerGradeDesc 清空回收站");
INSERT INTO fy_node_map VALUES("311","admin","CustomerGradeDesc","saveOrder","ALL","CustomerGradeDesc 保存排序");
INSERT INTO fy_node_map VALUES("316","admin","LotteryLog","index","ALL","LotteryLog ");
INSERT INTO fy_node_map VALUES("317","admin","LotteryLog","detail","ALL","LotteryLog ");
INSERT INTO fy_node_map VALUES("318","admin","LotteryLog","recycleBin","ALL","LotteryLog 回收站");
INSERT INTO fy_node_map VALUES("319","admin","LotteryLog","add","ALL","LotteryLog 添加");
INSERT INTO fy_node_map VALUES("320","admin","LotteryLog","edit","ALL","LotteryLog 编辑");
INSERT INTO fy_node_map VALUES("321","admin","LotteryLog","delete","ALL","LotteryLog 默认删除操作");
INSERT INTO fy_node_map VALUES("322","admin","LotteryLog","recycle","ALL","LotteryLog 从回收站恢复");
INSERT INTO fy_node_map VALUES("323","admin","LotteryLog","forbid","ALL","LotteryLog 默认禁用操作");
INSERT INTO fy_node_map VALUES("324","admin","LotteryLog","resume","ALL","LotteryLog 默认恢复操作");
INSERT INTO fy_node_map VALUES("325","admin","LotteryLog","deleteForever","ALL","LotteryLog 永久删除");
INSERT INTO fy_node_map VALUES("326","admin","LotteryLog","clear","ALL","LotteryLog 清空回收站");
INSERT INTO fy_node_map VALUES("327","admin","LotteryLog","saveOrder","ALL","LotteryLog 保存排序");
INSERT INTO fy_node_map VALUES("331","admin","Activity","add","ALL","Activity ");
INSERT INTO fy_node_map VALUES("332","admin","Activity","index","ALL","Activity 首页");
INSERT INTO fy_node_map VALUES("333","admin","Activity","recycleBin","ALL","Activity 回收站");
INSERT INTO fy_node_map VALUES("334","admin","Activity","edit","ALL","Activity 编辑");
INSERT INTO fy_node_map VALUES("335","admin","Activity","delete","ALL","Activity 默认删除操作");
INSERT INTO fy_node_map VALUES("336","admin","Activity","recycle","ALL","Activity 从回收站恢复");
INSERT INTO fy_node_map VALUES("337","admin","Activity","forbid","ALL","Activity 默认禁用操作");
INSERT INTO fy_node_map VALUES("338","admin","Activity","resume","ALL","Activity 默认恢复操作");
INSERT INTO fy_node_map VALUES("339","admin","Activity","deleteForever","ALL","Activity 永久删除");
INSERT INTO fy_node_map VALUES("340","admin","Activity","clear","ALL","Activity 清空回收站");
INSERT INTO fy_node_map VALUES("341","admin","Activity","saveOrder","ALL","Activity 保存排序");
INSERT INTO fy_node_map VALUES("346","admin","Customer","detail","ALL","Customer 会员信息详情");
INSERT INTO fy_node_map VALUES("347","admin","Customer","getGradeVal","ALL","Customer ");
INSERT INTO fy_node_map VALUES("349","admin","Goods","CreateProductSpecByCustomCidHasPid","ALL","Goods ");
INSERT INTO fy_node_map VALUES("350","admin","Goods","CreateProductSpecValueByCustomCid","ALL","Goods ");
INSERT INTO fy_node_map VALUES("351","admin","Goods","delProductSpecValueByCustomCid","ALL","Goods ");
INSERT INTO fy_node_map VALUES("352","admin","Goods","delProductSpecByCustomCidHasPid","ALL","Goods ");
INSERT INTO fy_node_map VALUES("356","admin","Lottery","editStatus","ALL","Lottery ");
INSERT INTO fy_node_map VALUES("357","admin","CustomerTask","detail","ALL","CustomerTask 会员信息详情");
INSERT INTO fy_node_map VALUES("358","admin","CustomerTask","excel","ALL","CustomerTask 会员参与任务信息一键导出");
INSERT INTO fy_node_map VALUES("360","admin","Goods","getskudata","ALL","Goods ");
INSERT INTO fy_node_map VALUES("361","admin","Order","index","ALL","Order 首页");
INSERT INTO fy_node_map VALUES("362","admin","Order","recycleBin","ALL","Order 回收站");
INSERT INTO fy_node_map VALUES("363","admin","Order","add","ALL","Order 添加");
INSERT INTO fy_node_map VALUES("364","admin","Order","edit","ALL","Order 编辑");
INSERT INTO fy_node_map VALUES("365","admin","Order","delete","ALL","Order 默认删除操作");
INSERT INTO fy_node_map VALUES("366","admin","Order","recycle","ALL","Order 从回收站恢复");
INSERT INTO fy_node_map VALUES("367","admin","Order","forbid","ALL","Order 默认禁用操作");
INSERT INTO fy_node_map VALUES("368","admin","Order","resume","ALL","Order 默认恢复操作");
INSERT INTO fy_node_map VALUES("369","admin","Order","deleteForever","ALL","Order 永久删除");
INSERT INTO fy_node_map VALUES("370","admin","Order","clear","ALL","Order 清空回收站");
INSERT INTO fy_node_map VALUES("371","admin","Order","saveOrder","ALL","Order 保存排序");
INSERT INTO fy_node_map VALUES("376","admin","Transaction","add","ALL","Transaction ");
INSERT INTO fy_node_map VALUES("377","admin","Transaction","edit","ALL","Transaction ");
INSERT INTO fy_node_map VALUES("378","admin","Transaction","index","ALL","Transaction 首页");
INSERT INTO fy_node_map VALUES("379","admin","Transaction","recycleBin","ALL","Transaction 回收站");
INSERT INTO fy_node_map VALUES("380","admin","Transaction","delete","ALL","Transaction 默认删除操作");
INSERT INTO fy_node_map VALUES("381","admin","Transaction","recycle","ALL","Transaction 从回收站恢复");
INSERT INTO fy_node_map VALUES("382","admin","Transaction","forbid","ALL","Transaction 默认禁用操作");
INSERT INTO fy_node_map VALUES("383","admin","Transaction","resume","ALL","Transaction 默认恢复操作");
INSERT INTO fy_node_map VALUES("384","admin","Transaction","deleteForever","ALL","Transaction 永久删除");
INSERT INTO fy_node_map VALUES("385","admin","Transaction","clear","ALL","Transaction 清空回收站");
INSERT INTO fy_node_map VALUES("386","admin","Transaction","saveOrder","ALL","Transaction 保存排序");
INSERT INTO fy_node_map VALUES("391","admin","Goods","editStatus","ALL","Goods ");
INSERT INTO fy_node_map VALUES("392","admin","CustomerRight","index","ALL","CustomerRight 首页");
INSERT INTO fy_node_map VALUES("393","admin","CustomerRight","recycleBin","ALL","CustomerRight 回收站");
INSERT INTO fy_node_map VALUES("394","admin","CustomerRight","add","ALL","CustomerRight 添加");
INSERT INTO fy_node_map VALUES("395","admin","CustomerRight","edit","ALL","CustomerRight 编辑");
INSERT INTO fy_node_map VALUES("396","admin","CustomerRight","delete","ALL","CustomerRight 默认删除操作");
INSERT INTO fy_node_map VALUES("397","admin","CustomerRight","recycle","ALL","CustomerRight 从回收站恢复");
INSERT INTO fy_node_map VALUES("398","admin","CustomerRight","forbid","ALL","CustomerRight ");
INSERT INTO fy_node_map VALUES("399","admin","CustomerRight","resume","ALL","CustomerRight 默认恢复操作");
INSERT INTO fy_node_map VALUES("400","admin","CustomerRight","deleteForever","ALL","CustomerRight 永久删除");
INSERT INTO fy_node_map VALUES("401","admin","CustomerRight","clear","ALL","CustomerRight 清空回收站");
INSERT INTO fy_node_map VALUES("402","admin","CustomerRight","saveOrder","ALL","CustomerRight 保存排序");
INSERT INTO fy_node_map VALUES("407","admin","GoodsComment","returnComment","ALL","GoodsComment ");
INSERT INTO fy_node_map VALUES("408","admin","GoodsComment","index","ALL","GoodsComment 首页");
INSERT INTO fy_node_map VALUES("409","admin","GoodsComment","recycleBin","ALL","GoodsComment 回收站");
INSERT INTO fy_node_map VALUES("410","admin","GoodsComment","add","ALL","GoodsComment 添加");
INSERT INTO fy_node_map VALUES("411","admin","GoodsComment","edit","ALL","GoodsComment 编辑");
INSERT INTO fy_node_map VALUES("412","admin","GoodsComment","delete","ALL","GoodsComment 默认删除操作");
INSERT INTO fy_node_map VALUES("413","admin","GoodsComment","recycle","ALL","GoodsComment 从回收站恢复");
INSERT INTO fy_node_map VALUES("414","admin","GoodsComment","forbid","ALL","GoodsComment ");
INSERT INTO fy_node_map VALUES("415","admin","GoodsComment","resume","ALL","GoodsComment 默认恢复操作");
INSERT INTO fy_node_map VALUES("416","admin","GoodsComment","deleteForever","ALL","GoodsComment 永久删除");
INSERT INTO fy_node_map VALUES("417","admin","GoodsComment","clear","ALL","GoodsComment 清空回收站");
INSERT INTO fy_node_map VALUES("418","admin","GoodsComment","saveOrder","ALL","GoodsComment 保存排序");
INSERT INTO fy_node_map VALUES("422","admin","Message","beforeEdit","ALL","Message ");
INSERT INTO fy_node_map VALUES("423","admin","Message","beforeAdd","ALL","Message ");
INSERT INTO fy_node_map VALUES("424","admin","Message","getLottery","ALL","Message ");
INSERT INTO fy_node_map VALUES("425","admin","Message","add","ALL","Message 添加");
INSERT INTO fy_node_map VALUES("426","admin","Message","edit","ALL","Message 编辑");
INSERT INTO fy_node_map VALUES("427","admin","Message","sendUser","ALL","Message ");
INSERT INTO fy_node_map VALUES("428","admin","Message","index","ALL","Message 首页");
INSERT INTO fy_node_map VALUES("429","admin","Message","recycleBin","ALL","Message 回收站");
INSERT INTO fy_node_map VALUES("430","admin","Message","delete","ALL","Message 默认删除操作");
INSERT INTO fy_node_map VALUES("431","admin","Message","recycle","ALL","Message 从回收站恢复");
INSERT INTO fy_node_map VALUES("432","admin","Message","forbid","ALL","Message ");
INSERT INTO fy_node_map VALUES("433","admin","Message","resume","ALL","Message 默认恢复操作");
INSERT INTO fy_node_map VALUES("434","admin","Message","deleteForever","ALL","Message 永久删除");
INSERT INTO fy_node_map VALUES("435","admin","Message","clear","ALL","Message 清空回收站");
INSERT INTO fy_node_map VALUES("436","admin","Message","saveOrder","ALL","Message 保存排序");
INSERT INTO fy_node_map VALUES("437","admin","Order","orderDetail","ALL","Order ");
INSERT INTO fy_node_map VALUES("438","admin","Order","addPost","ALL","Order ");
INSERT INTO fy_node_map VALUES("439","admin","Order","editTotalPrice","ALL","Order ");
INSERT INTO fy_node_map VALUES("440","admin","Order","afterSaleHandle","ALL","Order ");
INSERT INTO fy_node_map VALUES("441","admin","Order","refund","ALL","Order ");
INSERT INTO fy_node_map VALUES("444","admin","ScoreLog","index","ALL","ScoreLog 首页");
INSERT INTO fy_node_map VALUES("445","admin","ScoreLog","recycleBin","ALL","ScoreLog 回收站");
INSERT INTO fy_node_map VALUES("446","admin","ScoreLog","add","ALL","ScoreLog 添加");
INSERT INTO fy_node_map VALUES("447","admin","ScoreLog","edit","ALL","ScoreLog 编辑");
INSERT INTO fy_node_map VALUES("448","admin","ScoreLog","delete","ALL","ScoreLog 默认删除操作");
INSERT INTO fy_node_map VALUES("449","admin","ScoreLog","recycle","ALL","ScoreLog 从回收站恢复");
INSERT INTO fy_node_map VALUES("450","admin","ScoreLog","forbid","ALL","ScoreLog ");
INSERT INTO fy_node_map VALUES("451","admin","ScoreLog","resume","ALL","ScoreLog 默认恢复操作");
INSERT INTO fy_node_map VALUES("452","admin","ScoreLog","deleteForever","ALL","ScoreLog 永久删除");
INSERT INTO fy_node_map VALUES("453","admin","ScoreLog","clear","ALL","ScoreLog 清空回收站");
INSERT INTO fy_node_map VALUES("454","admin","ScoreLog","saveOrder","ALL","ScoreLog 保存排序");
INSERT INTO fy_node_map VALUES("459","admin","WxPayRefundLog","index","ALL","WxPayRefundLog 首页");
INSERT INTO fy_node_map VALUES("460","admin","WxPayRefundLog","recycleBin","ALL","WxPayRefundLog 回收站");
INSERT INTO fy_node_map VALUES("461","admin","WxPayRefundLog","add","ALL","WxPayRefundLog 添加");
INSERT INTO fy_node_map VALUES("462","admin","WxPayRefundLog","edit","ALL","WxPayRefundLog 编辑");
INSERT INTO fy_node_map VALUES("463","admin","WxPayRefundLog","delete","ALL","WxPayRefundLog 默认删除操作");
INSERT INTO fy_node_map VALUES("464","admin","WxPayRefundLog","recycle","ALL","WxPayRefundLog 从回收站恢复");
INSERT INTO fy_node_map VALUES("465","admin","WxPayRefundLog","forbid","ALL","WxPayRefundLog ");
INSERT INTO fy_node_map VALUES("466","admin","WxPayRefundLog","resume","ALL","WxPayRefundLog 默认恢复操作");
INSERT INTO fy_node_map VALUES("467","admin","WxPayRefundLog","deleteForever","ALL","WxPayRefundLog 永久删除");
INSERT INTO fy_node_map VALUES("468","admin","WxPayRefundLog","clear","ALL","WxPayRefundLog 清空回收站");
INSERT INTO fy_node_map VALUES("469","admin","WxPayRefundLog","saveOrder","ALL","WxPayRefundLog 保存排序");
DROP TABLE fy_notice;
CREATE TABLE `fy_notice` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '公告表',
`title` varchar(255) NOT NULL COMMENT '标题',
`detail` varchar(255) DEFAULT NULL COMMENT '概要',
`create_time` int(10) DEFAULT NULL COMMENT '添加时间',
`status` tinyint(1) DEFAULT '1' COMMENT '1启用0禁用',
`orderby` int(11) DEFAULT '1' COMMENT '排序值',
`update_time` int(11) DEFAULT NULL COMMENT '修改时间',
`desc` text COMMENT '详情',
`isdelete` tinyint(1) DEFAULT '0' COMMENT '删除',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
INSERT INTO fy_notice VALUES("7","泛亚商城1.0即将试运营","泛亚商城1.0即将试运营","1532573107","1","7","1535767026","经过不懈的努力,泛亚商城1.0终于完成,将于一周后正式开始试运营,敬请期待!","0");
INSERT INTO fy_notice VALUES("8","欢迎各位同事内部体验,反馈建议","泛亚商城商品即将上线完毕,敬请期待!","1532573355","1","7","1535767197","各位会员,泛亚商城各类商品即将上线完毕,商品类型多种多样,欢迎各位会员体验购买!","0");
INSERT INTO fy_notice VALUES("9","泛亚商城1.0内部体验","","1533258057","1","7","1535767069","泛亚科技是国家大数据战略践行者和新型大数据产业生态圈商业模式引领者。","1");
INSERT INTO fy_notice VALUES("10","内部体验"," 泛亚科技是国家大数据战略践行者和新型大数据产业生态圈商业模式引领者。","1533258227","1","7","1535766979"," 贵州泛亚信通网络科技有限公司(简称“泛亚科技”)是一家集泛在无线网络环境建设、数据可视化研究、大数据智能跨界应用为一体的大数据高科技企业,由郑州市讯捷贸易有限公司、阿里巴巴集团、贵阳广电传媒有限公司、贵阳市工业投资(集团)有限公司合资成立,注册资本1.2亿元。
\n
\n","1");
DROP TABLE fy_one_two_three_four;
CREATE TABLE `fy_one_two_three_four` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '四级控制器主键',
`field1` varchar(255) DEFAULT NULL COMMENT '字段一',
`option` varchar(255) DEFAULT NULL COMMENT '选填',
`select` varchar(255) DEFAULT NULL COMMENT '下拉框',
`radio` varchar(255) DEFAULT NULL COMMENT '单选',
`checkbox` varchar(255) DEFAULT NULL COMMENT '复选框',
`password` varchar(255) DEFAULT NULL COMMENT '密码',
`textarea` varchar(255) DEFAULT NULL COMMENT '文本域',
`date` varchar(255) DEFAULT NULL COMMENT '日期',
`mobile` varchar(255) DEFAULT NULL COMMENT '手机号',
`email` varchar(255) DEFAULT NULL COMMENT '邮箱',
`sort` smallint(5) DEFAULT '50' COMMENT '排序',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态,1-正常 | 0-禁用',
`isdelete` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '删除状态,1-删除 | 0-正常',
`create_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间',
`update_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间',
PRIMARY KEY (`id`),
KEY `sort` (`sort`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='四级控制器';
INSERT INTO fy_one_two_three_four VALUES("1","yuan1994","tpadmin","2","1","","2222","https://github.com/yuan1994/tpadmin","2016-12-07","13012345678","<EMAIL>","50","1","0","1481947278","1481947353");
DROP TABLE fy_order;
CREATE TABLE `fy_order` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '订单表',
`order_id` varchar(255) NOT NULL COMMENT '订单编号',
`order_status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0未支付1已支付2待评价,3待回复,4,待退款 5部分退款,6全部退款,7取消订单,8订单完成',
`buy_list` text COMMENT '商品列表',
`total_price` decimal(10,2) NOT NULL COMMENT '订单总价',
`create_time` int(10) NOT NULL COMMENT '时间',
`remarks` varchar(255) DEFAULT NULL COMMENT '备注',
`uid` int(11) DEFAULT NULL COMMENT '用户id',
`openid` varchar(255) NOT NULL COMMENT '用户id',
`customer_name` varchar(255) DEFAULT NULL,
`address_id` int(10) DEFAULT NULL COMMENT '地址id',
`pay_time` int(10) DEFAULT NULL COMMENT '付款时间',
`js_api_parameters` text COMMENT '微信支付所需参数',
`prepay_id` varchar(50) DEFAULT NULL COMMENT '统一下单接口返回的预付id',
`pay_status` tinyint(1) DEFAULT '0' COMMENT '支付状态;0未付款;1已付款 ',
`inv_payee` varchar(255) DEFAULT NULL COMMENT '发票抬头,用户页面填写 ',
`inv_content` varchar(255) DEFAULT NULL COMMENT '发票内容,用户页面选择,取值shop_config的code字段的值 为invoice_content的value ',
`goods_all` varchar(255) DEFAULT NULL,
`user_id` int(11) NOT NULL COMMENT '商户id',
`isdelete` tinyint(1) NOT NULL DEFAULT '0',
`lottery_id` int(11) DEFAULT NULL COMMENT '优惠券id',
`lottery_price` decimal(10,2) DEFAULT NULL COMMENT '优惠券金额',
`is_lottery` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0没有1有',
`return_price_all` decimal(10,2) DEFAULT NULL COMMENT '退款金额',
`total_point` decimal(10,2) DEFAULT NULL COMMENT '积分总价',
`type` tinyint(1) DEFAULT '0' COMMENT '0表示纯金钱的订单1纯积分,2两种混合',
`is_settlement` tinyint(1) DEFAULT '0' COMMENT '0未结算 1结算',
`is_tui` tinyint(1) DEFAULT '0' COMMENT '0为推送支付成功,1已经推送',
`address_detail` varchar(3000) DEFAULT NULL COMMENT '地址',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
INSERT INTO fy_order VALUES("1","1441217402201808311656478916","8","[{\"goods_name\":\"\\u9655\\u897f\\u560e\\u5566\\u82f9\\u679c\\u6c34\\u679c\\u65b0\\u9c9c10\\u65a4\\u5f53\\u5b63\\u6574\\u7bb1\\u73b0\\u6458\\u6279\\u53d1\\u5305\\u90ae\\u5c0f\\u7ea2\\u5bcc\\u58eb\",\"sku_val\":\"5000g\",\"num\":1,\"goods_id\":1,\"user_id\":21}]","0.00","1535705807","","","omQYXwM8TEkiBZR7Ldm891OOWbNQ","Baymax","2","1535706068","{\"appId\":\"wxd9da51e6bae6c3c0\",\"nonceStr\":\"qc02xzohg2npyrcwk5tn9w78qe38ddvd\",\"package\":\"prepay_id=wx31170043895566cab672aa4e2083859678\",\"signType\":\"HMAC-SHA256\",\"timeStamp\":\"1535706056\",\"paySign\":\"426B9506D4BEC6C36949922057AFD357CBC98B358698A3241762ADDD4A240B19\"}","wx31170043895566cab672aa4e2083859678","1","","","1","21","0","","","0","","0.00","0","0","1","{\"id\":2,\"uid\":2,\"name\":\"\\u6bb5\\u6b22\",\"mobile\":\"13765805489\",\"address\":\"\\u5317\\u4eac\\u5e02\\u4e1c\\u57ce\\u533a\\u4e1c\\u534e\\u95e8\\u8857\\u9053\",\"street\":\"\\u4e5f\\u662f\",\"status\":1,\"addtime\":1535705798,\"updatetime\":1535705798}");
INSERT INTO fy_order VALUES("2","1441217402201808311657597087","7","[{\"goods_name\":\"\\u9655\\u897f\\u560e\\u5566\\u82f9\\u679c\\u6c34\\u679c\\u65b0\\u9c9c10\\u65a4\\u5f53\\u5b63\\u6574\\u7bb1\\u73b0\\u6458\\u6279\\u53d1\\u5305\\u90ae\\u5c0f\\u7ea2\\u5bcc\\u58eb\",\"sku_val\":\"5000g\",\"num\":1,\"goods_id\":1,\"user_id\":21}]","0.01","1535705879","","","omQYXwNAT5uC15TQqMGxajJzqo4s","葡萄不长牙","1","","","","0","","","1","21","0","","","0","","0.00","0","0","0","{\"id\":1,\"uid\":1,\"name\":\"dddd\",\"mobile\":\"18285111561\",\"address\":\"\\u5317\\u4eac\\u5e02\\u4e1c\\u57ce\\u533a\\u4e1c\\u534e\\u95e8\\u8857\\u9053\",\"street\":\"eeeeeeeee\",\"status\":1,\"addtime\":1535705561,\"updatetime\":1535705561}");
INSERT INTO fy_order VALUES("3","1441217402201808311658048857","7","[{\"goods_name\":\"\\u9655\\u897f\\u560e\\u5566\\u82f9\\u679c\\u6c34\\u679c\\u65b0\\u9c9c10\\u65a4\\u5f53\\u5b63\\u6574\\u7bb1\\u73b0\\u6458\\u6279\\u53d1\\u5305\\u90ae\\u5c0f\\u7ea2\\u5bcc\\u58eb\",\"sku_val\":\"5000g\",\"num\":1,\"goods_id\":1,\"user_id\":21}]","0.01","1535705884","","","omQYXwNAT5uC15TQqMGxajJzqo4s","葡萄不长牙","1","","{\"appId\":\"wxd9da51e6bae6c3c0\",\"nonceStr\":\"f4r8agzikuw796ak7rk1fkcage12y3uo\",\"package\":\"prepay_id=wx3116594991176456746ebe250560521679\",\"signType\":\"HMAC-SHA256\",\"timeStamp\":\"1535706002\",\"paySign\":\"DBD1FB796C8292572E2EDF47091CB9B8C78FFEC18BBE54B709DD1AF48E018CF6\"}","wx3116594991176456746ebe250560521679","0","","","1","21","0","","","0","","0.00","0","0","0","{\"id\":1,\"uid\":1,\"name\":\"dddd\",\"mobile\":\"18285111561\",\"address\":\"\\u5317\\u4eac\\u5e02\\u4e1c\\u57ce\\u533a\\u4e1c\\u534e\\u95e8\\u8857\\u9053\",\"street\":\"eeeeeeeee\",\"status\":1,\"addtime\":1535705561,\"updatetime\":1535705561}");
INSERT INTO fy_order VALUES("4","1441217402201809010931086075","1","[{\"goods_name\":\"\\u9655\\u897f\\u560e\\u5566\\u82f9\\u679c\\u6c34\\u679c\\u65b0\\u9c9c10\\u65a4\\u5f53\\u5b63\\u6574\\u7bb1\\u73b0\\u6458\\u6279\\u53d1\\u5305\\u90ae\\u5c0f\\u7ea2\\u5bcc\\u58eb\",\"sku_val\":\"5000g\",\"num\":1,\"goods_id\":1,\"user_id\":21}]","0.01","1535765468","","","omQYXwAasNeXdGSMymd91487Ds1g","DANIEL","3","1535765494","","","1","","","1","21","0","","","0","","0.00","0","0","0","{\"id\":3,\"uid\":3,\"name\":\"\\u6d4b\\u8bd5\\u4eba\",\"mobile\":\"18988756181\",\"address\":\"\\u5929\\u6d25\\u5e02\\u6cb3\\u5317\\u533a\\u65b0\\u5f00\\u6cb3\\u8857\\u9053\",\"street\":\"\\u6d4b\\u8bd5\",\"status\":1,\"addtime\":1535765409,\"updatetime\":1535765409}");
INSERT INTO fy_order VALUES("5","1441217402201809010933292534","7","[{\"goods_name\":\"\\u82f9\\u679c\\u624b\\u673a\",\"sku_val\":\"\\u901a\\u7528\",\"num\":1,\"goods_id\":5,\"user_id\":21}]","0.01","1535765609","","","omQYXwAasNeXdGSMymd91487Ds1g","DANIEL","3","","{\"appId\":\"wxd9da51e6bae6c3c0\",\"nonceStr\":\"4r3nlm7oytu1qhc1fc0nd4rwpkr0s880\",\"package\":\"prepay_id=wx010934220212221b1d1e30073756940256\",\"signType\":\"HMAC-SHA256\",\"timeStamp\":\"1535765675\",\"paySign\":\"E2E2723C2F53E62CC79098F11B39CB3AC8DF54B7A3BA48B10472223920F6B61A\"}","wx010934220212221b1d1e30073756940256","0","","","5","21","0","","","0","","0.00","0","0","0","{\"id\":3,\"uid\":3,\"name\":\"\\u6d4b\\u8bd5\\u4eba\",\"mobile\":\"18988756181\",\"address\":\"\\u5929\\u6d25\\u5e02\\u6cb3\\u5317\\u533a\\u65b0\\u5f00\\u6cb3\\u8857\\u9053\",\"street\":\"\\u6d4b\\u8bd5\",\"status\":1,\"addtime\":1535765409,\"updatetime\":1535765409}");
INSERT INTO fy_order VALUES("6","1441217402201809010942213958","1","[{\"goods_name\":\"\\u79ef\\u5206\\u5546\\u57ce\\u82f9\\u679c\\u624b\\u673a\",\"sku_val\":\"\\u901a\\u7528\",\"num\":1,\"goods_id\":6,\"user_id\":21}]","0.01","1535766141","","","omQYXwAasNeXdGSMymd91487Ds1g","DANIEL","3","1535766141","","","1","","","6","21","0","","","0","","10.00","1","0","0","{\"id\":3,\"uid\":3,\"name\":\"\\u6d4b\\u8bd5\\u4eba\",\"mobile\":\"18988756181\",\"address\":\"\\u5929\\u6d25\\u5e02\\u6cb3\\u5317\\u533a\\u65b0\\u5f00\\u6cb3\\u8857\\u9053\",\"street\":\"\\u6d4b\\u8bd5\",\"status\":1,\"addtime\":1535765409,\"updatetime\":1535765409}");
INSERT INTO fy_order VALUES("7","1441217402201809010945314726","1","[{\"goods_name\":\"\\u65b0\\u7586\\u5580\\u4ec0\\u897f\\u68854\\u65a4\\u5927\\u679c\\u987a\\u4e30\\u5305\\u90ae\\u5f53\\u5b63\\u6c34\\u679c \\u65b0\\u9c9c\\u897f\\u6885\",\"sku_val\":\"1kg\",\"num\":1,\"goods_id\":4,\"user_id\":21}]","0.01","1535766331","","","omQYXwAasNeXdGSMymd91487Ds1g","DANIEL","3","1535766341","","","1","","","4","21","0","","","0","","1.00","0","0","0","{\"id\":3,\"uid\":3,\"name\":\"\\u6d4b\\u8bd5\\u4eba\",\"mobile\":\"18988756181\",\"address\":\"\\u5929\\u6d25\\u5e02\\u6cb3\\u5317\\u533a\\u65b0\\u5f00\\u6cb3\\u8857\\u9053\",\"street\":\"\\u6d4b\\u8bd5\",\"status\":1,\"addtime\":1535765409,\"updatetime\":1535765409}");
DROP TABLE fy_order_all;
CREATE TABLE `fy_order_all` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` varchar(255) DEFAULT NULL COMMENT '总的订单id',
`son_id` varchar(255) DEFAULT NULL COMMENT '子id',
`status` tinyint(1) DEFAULT NULL COMMENT '1支付0,未支付',
`total_price` decimal(10,2) DEFAULT NULL COMMENT '订单总价',
`create_time` int(11) DEFAULT NULL,
`is_tui` tinyint(1) DEFAULT '0' COMMENT '1已经推送0为推送',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
INSERT INTO fy_order_all VALUES("1","144121740220180831165647","8916","","0.01","1535705807","0");
INSERT INTO fy_order_all VALUES("2","144121740220180831165759","7087","","0.01","1535705879","0");
INSERT INTO fy_order_all VALUES("3","144121740220180831165804","8857","","0.01","1535705884","0");
INSERT INTO fy_order_all VALUES("4","144121740220180901093108","6075","1","0.01","1535765468","1");
INSERT INTO fy_order_all VALUES("5","144121740220180901093329","2534","","0.01","1535765609","0");
INSERT INTO fy_order_all VALUES("6","144121740220180901094221","3958","","0.01","1535766141","0");
INSERT INTO fy_order_all VALUES("7","144121740220180901094531","4726","1","0.01","1535766331","1");
DROP TABLE fy_order_goods;
CREATE TABLE `fy_order_goods` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '订单商品表',
`goods_id` int(11) NOT NULL,
`sku_id` int(11) DEFAULT NULL COMMENT 'skuid',
`order_id` varchar(255) NOT NULL COMMENT '父id 订单id',
`user_id` int(11) DEFAULT NULL COMMENT '所属商户',
`goods_detail` text COMMENT '商品详情json存储',
`is_free` tinyint(1) DEFAULT '0' COMMENT '1包邮0不包邮,3上门自取',
`shipping_fee` decimal(10,2) DEFAULT NULL COMMENT '配送费用',
`logistics_name` varchar(255) DEFAULT NULL COMMENT '物流名称',
`logistics_number` varchar(255) DEFAULT NULL COMMENT '物流单号',
`send_time` int(11) DEFAULT NULL COMMENT '发货时间',
`refuse_reson` varchar(255) DEFAULT NULL COMMENT '退款理由',
`is_send` tinyint(1) DEFAULT '0' COMMENT '0未发货1已发货,2待评价。3退款中,4退款完成,,5待回复,6完成,7退货退款',
`remind_get` tinyint(1) DEFAULT '0' COMMENT '0否1是 提醒过用户收货',
`words` varchar(255) DEFAULT NULL COMMENT '订单备注',
`goods_num` int(10) NOT NULL DEFAULT '1' COMMENT '购买商品数量',
`sku_val` varchar(255) NOT NULL COMMENT 'sku值',
`address_id` int(11) NOT NULL COMMENT '地址id',
`openid` varchar(255) NOT NULL,
`is_return` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0否1待退款2已退款3退款失败',
`return_price` decimal(10,2) DEFAULT NULL COMMENT '退款',
`get_goods_time` int(11) DEFAULT NULL COMMENT '确认收货时间',
`address_detail` text COMMENT '收货地址',
`after_sale_is` tinyint(1) DEFAULT '0' COMMENT '0未提交1提交2售后完成',
`after_handle_is` tinyint(1) DEFAULT '0' COMMENT '0未处理,1已经处理',
`is_lottery` tinyint(1) DEFAULT '0' COMMENT '0fou 1是',
`lottery_id` int(10) DEFAULT NULL COMMENT '奖券id',
`lottery_log_id` int(10) DEFAULT NULL COMMENT '奖券领取id',
`lottery_detail` text COMMENT '奖券详情',
`real_pay_price` decimal(10,2) DEFAULT NULL COMMENT '实际支付价格',
`is_settlement` tinyint(1) DEFAULT '0',
`real_pay_score` decimal(10,2) DEFAULT '0.00',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
INSERT INTO fy_order_goods VALUES("1","1","3","1441217402201808311656478916","21","{\"id\":1,\"user_id\":21,\"name\":\"\\u9655\\u897f\\u560e\\u5566\\u82f9\\u679c\\u6c34\\u679c\\u65b0\\u9c9c10\\u65a4\\u5f53\\u5b63\\u6574\\u7bb1\\u73b0\\u6458\\u6279\\u53d1\\u5305\\u90ae\\u5c0f\\u7ea2\\u5bcc\\u58eb\",\"pic\":\"[\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180828\\\\\\/5fc1332916aee8884f8095dcb76365ba.png\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180828\\\\\\/db0bcda4a25dc457e29484b6b142504e.png\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180828\\\\\\/f20a29f350023a47de051e85f22a019c.png\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180828\\\\\\/1bde95e73b98544bc2de8d64ba1af22a.png\\\"]\",\"original_price\":\"30.00\",\"settlement_type\":1,\"goods_class_id\":1,\"goods_brand_id\":20,\"show_area\":4,\"detail\":\"<p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269999019.jpg" title="1535419269999019.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269956748.jpg" title="1535419269956748.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269839241.jpg" title="1535419269839241.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269460704.jpg" title="1535419269460704.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269835149.jpg" title="1535419269835149.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269314509.jpg" title="1535419269314509.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269170969.jpg" title="1535419269170969.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419270321688.jpg" title="1535419270321688.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419270582547.jpg" title="1535419270582547.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419270622995.jpg" title="1535419270622995.jpg"\\/><\\/p><p><br\\/><\\/p>\",\"status\":1,\"main_image\":\"\\/pic\\/uploads\\/20180828\\/a11731d4b01a6dd41cdc21d3fdabf0cf.png\",\"subtitle\":\"\",\"create_time\":1535703801,\"update_time\":1535703801,\"orderby\":10,\"click_count\":null,\"goods_weight\":\"5000.000\",\"start_date\":null,\"end_date\":null,\"is_real\":1,\"return_score\":10,\"score_price\":null,\"price_real\":\"0.00\",\"score\":0,\"basic_price\":\"0.01\",\"isdelete\":0,\"store_type\":1,\"free_type\":1,\"postage\":\"0.00\",\"after_sale\":\"<p>\\u574f\\u5355\\u5305\\u9000\\uff1a\\u7b7e\\u6536\\u540e24\\u5c0f\\u65f6\\u5185\\uff0c\\u98df\\u54c1\\u51fa\\u73b0\\u8150\\u8d25\\u53d8\\u8d28\\uff0c\\u5546\\u5bb6\\u627f\\u8bfa24\\u5c0f\\u65f6\\u4e4b\\u5185\\u5904\\u7406\\u3002<\\/p>\",\"routine\":\"{\\\"\\\\u54c1\\\\u724c\\\":\\\"\\\\u751c\\\\u53ef\\\\u679c\\\\u56ed\\\",\\\"\\\\u4fdd\\\\u8d28\\\\u671f\\\":\\\"7\\\\u5929\\\",\\\"\\\\u51c0\\\\u542b\\\\u91cf\\\":\\\"5000g\\\",\\\"\\\\u5305\\\\u88c5\\\\u65b9\\\\u5f0f\\\":\\\"\\\\u5305\\\\u88c5\\\",\\\"\\\\u662f\\\\u5426\\\\u4e3a\\\\u6709\\\\u673a\\\\u98df\\\\u54c1\\\":\\\"\\\\u5426\\\",\\\"\\\\u4ea7\\\\u5730\\\":\\\"\\\\u4e2d\\\\u56fd\\\\u5927\\\\u9646\\\",\\\"\\\\u7701\\\\u4efd\\\":\\\"\\\\u9655\\\\u897f\\\\u7701\\\",\\\"\\\\u5957\\\\u9910\\\\u4efd\\\\u91cf\\\":\\\"3\\\\u4eba\\\\u4efd\\\",\\\"\\\\u914d\\\\u9001\\\\u9891\\\\u6b21\\\":\\\"1\\\\u54682\\\\u6b21\\\"}\",\"shop_code\":\"\",\"buy_num\":18454,\"bar_code\":\"\",\"is_return_goods\":1,\"yieldly\":\"\",\"is_comment\":1,\"up_tip\":0,\"up_error_reason\":\"\",\"service\":\"[\\\"\\\\u574f\\\\u5355\\\\u5305\\\\u9000\\\"]\",\"service_mobile\":\"86701701\"}","0","","顺丰快递","123","1535706100","","4","0","","1","5000g","2","omQYXwM8TEkiBZR7Ldm891OOWbNQ","2","0.01","1535706110","{\"id\":2,\"uid\":2,\"name\":\"\\u6bb5\\u6b22\",\"mobile\":\"13765805489\",\"address\":\"\\u5317\\u4eac\\u5e02\\u4e1c\\u57ce\\u533a\\u4e1c\\u534e\\u95e8\\u8857\\u9053\",\"street\":\"\\u4e5f\\u662f\",\"status\":1,\"addtime\":1535705798,\"updatetime\":1535705798}","1","0","0","0","0","","0.01","1","1.00");
INSERT INTO fy_order_goods VALUES("2","1","3","1441217402201808311657597087","21","{\"id\":1,\"user_id\":21,\"name\":\"\\u9655\\u897f\\u560e\\u5566\\u82f9\\u679c\\u6c34\\u679c\\u65b0\\u9c9c10\\u65a4\\u5f53\\u5b63\\u6574\\u7bb1\\u73b0\\u6458\\u6279\\u53d1\\u5305\\u90ae\\u5c0f\\u7ea2\\u5bcc\\u58eb\",\"pic\":\"[\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180828\\\\\\/5fc1332916aee8884f8095dcb76365ba.png\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180828\\\\\\/db0bcda4a25dc457e29484b6b142504e.png\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180828\\\\\\/f20a29f350023a47de051e85f22a019c.png\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180828\\\\\\/1bde95e73b98544bc2de8d64ba1af22a.png\\\"]\",\"original_price\":\"30.00\",\"settlement_type\":1,\"goods_class_id\":1,\"goods_brand_id\":20,\"show_area\":4,\"detail\":\"<p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269999019.jpg" title="1535419269999019.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269956748.jpg" title="1535419269956748.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269839241.jpg" title="1535419269839241.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269460704.jpg" title="1535419269460704.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269835149.jpg" title="1535419269835149.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269314509.jpg" title="1535419269314509.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269170969.jpg" title="1535419269170969.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419270321688.jpg" title="1535419270321688.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419270582547.jpg" title="1535419270582547.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419270622995.jpg" title="1535419270622995.jpg"\\/><\\/p><p><br\\/><\\/p>\",\"status\":1,\"main_image\":\"\\/pic\\/uploads\\/20180828\\/a11731d4b01a6dd41cdc21d3fdabf0cf.png\",\"subtitle\":\"\",\"create_time\":1535703801,\"update_time\":1535703801,\"orderby\":10,\"click_count\":null,\"goods_weight\":\"5000.000\",\"start_date\":null,\"end_date\":null,\"is_real\":1,\"return_score\":10,\"score_price\":null,\"price_real\":\"0.00\",\"score\":0,\"basic_price\":\"0.01\",\"isdelete\":0,\"store_type\":1,\"free_type\":1,\"postage\":\"0.00\",\"after_sale\":\"<p>\\u574f\\u5355\\u5305\\u9000\\uff1a\\u7b7e\\u6536\\u540e24\\u5c0f\\u65f6\\u5185\\uff0c\\u98df\\u54c1\\u51fa\\u73b0\\u8150\\u8d25\\u53d8\\u8d28\\uff0c\\u5546\\u5bb6\\u627f\\u8bfa24\\u5c0f\\u65f6\\u4e4b\\u5185\\u5904\\u7406\\u3002<\\/p>\",\"routine\":\"{\\\"\\\\u54c1\\\\u724c\\\":\\\"\\\\u751c\\\\u53ef\\\\u679c\\\\u56ed\\\",\\\"\\\\u4fdd\\\\u8d28\\\\u671f\\\":\\\"7\\\\u5929\\\",\\\"\\\\u51c0\\\\u542b\\\\u91cf\\\":\\\"5000g\\\",\\\"\\\\u5305\\\\u88c5\\\\u65b9\\\\u5f0f\\\":\\\"\\\\u5305\\\\u88c5\\\",\\\"\\\\u662f\\\\u5426\\\\u4e3a\\\\u6709\\\\u673a\\\\u98df\\\\u54c1\\\":\\\"\\\\u5426\\\",\\\"\\\\u4ea7\\\\u5730\\\":\\\"\\\\u4e2d\\\\u56fd\\\\u5927\\\\u9646\\\",\\\"\\\\u7701\\\\u4efd\\\":\\\"\\\\u9655\\\\u897f\\\\u7701\\\",\\\"\\\\u5957\\\\u9910\\\\u4efd\\\\u91cf\\\":\\\"3\\\\u4eba\\\\u4efd\\\",\\\"\\\\u914d\\\\u9001\\\\u9891\\\\u6b21\\\":\\\"1\\\\u54682\\\\u6b21\\\"}\",\"shop_code\":\"\",\"buy_num\":18454,\"bar_code\":\"\",\"is_return_goods\":1,\"yieldly\":\"\",\"is_comment\":1,\"up_tip\":0,\"up_error_reason\":\"\",\"service\":\"[\\\"\\\\u574f\\\\u5355\\\\u5305\\\\u9000\\\"]\",\"service_mobile\":\"86701701\"}","0","","","","","","0","0","","1","5000g","1","omQYXwNAT5uC15TQqMGxajJzqo4s","0","","","{\"id\":1,\"uid\":1,\"name\":\"dddd\",\"mobile\":\"18285111561\",\"address\":\"\\u5317\\u4eac\\u5e02\\u4e1c\\u57ce\\u533a\\u4e1c\\u534e\\u95e8\\u8857\\u9053\",\"street\":\"eeeeeeeee\",\"status\":1,\"addtime\":1535705561,\"updatetime\":1535705561}","0","0","0","0","0","","0.01","0","1.00");
INSERT INTO fy_order_goods VALUES("3","1","3","1441217402201808311658048857","21","{\"id\":1,\"user_id\":21,\"name\":\"\\u9655\\u897f\\u560e\\u5566\\u82f9\\u679c\\u6c34\\u679c\\u65b0\\u9c9c10\\u65a4\\u5f53\\u5b63\\u6574\\u7bb1\\u73b0\\u6458\\u6279\\u53d1\\u5305\\u90ae\\u5c0f\\u7ea2\\u5bcc\\u58eb\",\"pic\":\"[\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180828\\\\\\/5fc1332916aee8884f8095dcb76365ba.png\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180828\\\\\\/db0bcda4a25dc457e29484b6b142504e.png\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180828\\\\\\/f20a29f350023a47de051e85f22a019c.png\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180828\\\\\\/1bde95e73b98544bc2de8d64ba1af22a.png\\\"]\",\"original_price\":\"30.00\",\"settlement_type\":1,\"goods_class_id\":1,\"goods_brand_id\":20,\"show_area\":4,\"detail\":\"<p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269999019.jpg" title="1535419269999019.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269956748.jpg" title="1535419269956748.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269839241.jpg" title="1535419269839241.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269460704.jpg" title="1535419269460704.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269835149.jpg" title="1535419269835149.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269314509.jpg" title="1535419269314509.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269170969.jpg" title="1535419269170969.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419270321688.jpg" title="1535419270321688.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419270582547.jpg" title="1535419270582547.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419270622995.jpg" title="1535419270622995.jpg"\\/><\\/p><p><br\\/><\\/p>\",\"status\":1,\"main_image\":\"\\/pic\\/uploads\\/20180828\\/a11731d4b01a6dd41cdc21d3fdabf0cf.png\",\"subtitle\":\"\",\"create_time\":1535703801,\"update_time\":1535703801,\"orderby\":10,\"click_count\":null,\"goods_weight\":\"5000.000\",\"start_date\":null,\"end_date\":null,\"is_real\":1,\"return_score\":10,\"score_price\":null,\"price_real\":\"0.00\",\"score\":0,\"basic_price\":\"0.01\",\"isdelete\":0,\"store_type\":1,\"free_type\":1,\"postage\":\"0.00\",\"after_sale\":\"<p>\\u574f\\u5355\\u5305\\u9000\\uff1a\\u7b7e\\u6536\\u540e24\\u5c0f\\u65f6\\u5185\\uff0c\\u98df\\u54c1\\u51fa\\u73b0\\u8150\\u8d25\\u53d8\\u8d28\\uff0c\\u5546\\u5bb6\\u627f\\u8bfa24\\u5c0f\\u65f6\\u4e4b\\u5185\\u5904\\u7406\\u3002<\\/p>\",\"routine\":\"{\\\"\\\\u54c1\\\\u724c\\\":\\\"\\\\u751c\\\\u53ef\\\\u679c\\\\u56ed\\\",\\\"\\\\u4fdd\\\\u8d28\\\\u671f\\\":\\\"7\\\\u5929\\\",\\\"\\\\u51c0\\\\u542b\\\\u91cf\\\":\\\"5000g\\\",\\\"\\\\u5305\\\\u88c5\\\\u65b9\\\\u5f0f\\\":\\\"\\\\u5305\\\\u88c5\\\",\\\"\\\\u662f\\\\u5426\\\\u4e3a\\\\u6709\\\\u673a\\\\u98df\\\\u54c1\\\":\\\"\\\\u5426\\\",\\\"\\\\u4ea7\\\\u5730\\\":\\\"\\\\u4e2d\\\\u56fd\\\\u5927\\\\u9646\\\",\\\"\\\\u7701\\\\u4efd\\\":\\\"\\\\u9655\\\\u897f\\\\u7701\\\",\\\"\\\\u5957\\\\u9910\\\\u4efd\\\\u91cf\\\":\\\"3\\\\u4eba\\\\u4efd\\\",\\\"\\\\u914d\\\\u9001\\\\u9891\\\\u6b21\\\":\\\"1\\\\u54682\\\\u6b21\\\"}\",\"shop_code\":\"\",\"buy_num\":18454,\"bar_code\":\"\",\"is_return_goods\":1,\"yieldly\":\"\",\"is_comment\":1,\"up_tip\":0,\"up_error_reason\":\"\",\"service\":\"[\\\"\\\\u574f\\\\u5355\\\\u5305\\\\u9000\\\"]\",\"service_mobile\":\"86701701\"}","0","","","","","","0","0","","1","5000g","1","omQYXwNAT5uC15TQqMGxajJzqo4s","0","","","{\"id\":1,\"uid\":1,\"name\":\"dddd\",\"mobile\":\"18285111561\",\"address\":\"\\u5317\\u4eac\\u5e02\\u4e1c\\u57ce\\u533a\\u4e1c\\u534e\\u95e8\\u8857\\u9053\",\"street\":\"eeeeeeeee\",\"status\":1,\"addtime\":1535705561,\"updatetime\":1535705561}","0","0","0","0","0","","0.01","0","1.00");
INSERT INTO fy_order_goods VALUES("4","1","3","1441217402201809010931086075","21","{\"id\":1,\"user_id\":21,\"name\":\"\\u9655\\u897f\\u560e\\u5566\\u82f9\\u679c\\u6c34\\u679c\\u65b0\\u9c9c10\\u65a4\\u5f53\\u5b63\\u6574\\u7bb1\\u73b0\\u6458\\u6279\\u53d1\\u5305\\u90ae\\u5c0f\\u7ea2\\u5bcc\\u58eb\",\"pic\":\"[\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180828\\\\\\/5fc1332916aee8884f8095dcb76365ba.png\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180828\\\\\\/db0bcda4a25dc457e29484b6b142504e.png\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180828\\\\\\/f20a29f350023a47de051e85f22a019c.png\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180828\\\\\\/1bde95e73b98544bc2de8d64ba1af22a.png\\\"]\",\"original_price\":\"30.00\",\"settlement_type\":1,\"goods_class_id\":1,\"goods_brand_id\":20,\"show_area\":4,\"detail\":\"<p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269999019.jpg" title="1535419269999019.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269956748.jpg" title="1535419269956748.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269839241.jpg" title="1535419269839241.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269460704.jpg" title="1535419269460704.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269835149.jpg" title="1535419269835149.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269314509.jpg" title="1535419269314509.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419269170969.jpg" title="1535419269170969.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419270321688.jpg" title="1535419270321688.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419270582547.jpg" title="1535419270582547.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180828\\/1535419270622995.jpg" title="1535419270622995.jpg"\\/><\\/p><p><br\\/><\\/p>\",\"status\":1,\"main_image\":\"\\/pic\\/uploads\\/20180828\\/a11731d4b01a6dd41cdc21d3fdabf0cf.png\",\"subtitle\":\"\",\"create_time\":1535703801,\"update_time\":1535703801,\"orderby\":10,\"click_count\":null,\"goods_weight\":\"5000.000\",\"start_date\":null,\"end_date\":null,\"is_real\":1,\"return_score\":10,\"score_price\":null,\"price_real\":\"0.00\",\"score\":0,\"basic_price\":\"0.01\",\"isdelete\":0,\"store_type\":1,\"free_type\":1,\"postage\":\"0.00\",\"after_sale\":\"<p>\\u574f\\u5355\\u5305\\u9000\\uff1a\\u7b7e\\u6536\\u540e24\\u5c0f\\u65f6\\u5185\\uff0c\\u98df\\u54c1\\u51fa\\u73b0\\u8150\\u8d25\\u53d8\\u8d28\\uff0c\\u5546\\u5bb6\\u627f\\u8bfa24\\u5c0f\\u65f6\\u4e4b\\u5185\\u5904\\u7406\\u3002<\\/p>\",\"routine\":\"{\\\"\\\\u54c1\\\\u724c\\\":\\\"\\\\u751c\\\\u53ef\\\\u679c\\\\u56ed\\\",\\\"\\\\u4fdd\\\\u8d28\\\\u671f\\\":\\\"7\\\\u5929\\\",\\\"\\\\u51c0\\\\u542b\\\\u91cf\\\":\\\"5000g\\\",\\\"\\\\u5305\\\\u88c5\\\\u65b9\\\\u5f0f\\\":\\\"\\\\u5305\\\\u88c5\\\",\\\"\\\\u662f\\\\u5426\\\\u4e3a\\\\u6709\\\\u673a\\\\u98df\\\\u54c1\\\":\\\"\\\\u5426\\\",\\\"\\\\u4ea7\\\\u5730\\\":\\\"\\\\u4e2d\\\\u56fd\\\\u5927\\\\u9646\\\",\\\"\\\\u7701\\\\u4efd\\\":\\\"\\\\u9655\\\\u897f\\\\u7701\\\",\\\"\\\\u5957\\\\u9910\\\\u4efd\\\\u91cf\\\":\\\"3\\\\u4eba\\\\u4efd\\\",\\\"\\\\u914d\\\\u9001\\\\u9891\\\\u6b21\\\":\\\"1\\\\u54682\\\\u6b21\\\"}\",\"shop_code\":\"\",\"buy_num\":18511,\"bar_code\":\"\",\"is_return_goods\":1,\"yieldly\":\"\",\"is_comment\":1,\"up_tip\":0,\"up_error_reason\":\"\",\"service\":\"[\\\"\\\\u574f\\\\u5355\\\\u5305\\\\u9000\\\"]\",\"service_mobile\":\"86701701\"}","0","","","","","","0","0","","1","5000g","3","omQYXwAasNeXdGSMymd91487Ds1g","0","","","{\"id\":3,\"uid\":3,\"name\":\"\\u6d4b\\u8bd5\\u4eba\",\"mobile\":\"18988756181\",\"address\":\"\\u5929\\u6d25\\u5e02\\u6cb3\\u5317\\u533a\\u65b0\\u5f00\\u6cb3\\u8857\\u9053\",\"street\":\"\\u6d4b\\u8bd5\",\"status\":1,\"addtime\":1535765409,\"updatetime\":1535765409}","0","0","0","0","0","","0.01","0","1.00");
INSERT INTO fy_order_goods VALUES("5","5","16","1441217402201809010933292534","21","{\"id\":5,\"user_id\":21,\"name\":\"\\u82f9\\u679c\\u624b\\u673a\",\"pic\":\"[\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180831\\\\\\/b7e860b80b4714b627f9d72e6f71d72b.jpg\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180831\\\\\\/f6f882914e96e541e77f0d3af9e7eb8b.jpg\\\"]\",\"original_price\":\"5200.00\",\"settlement_type\":1,\"goods_class_id\":6,\"goods_brand_id\":20,\"show_area\":1,\"detail\":\"<p>\\u6492\\u65e6<\\/p>\",\"status\":1,\"main_image\":\"\\/pic\\/uploads\\/20180831\\/35cb42fbfe509141499aab67a3a0a680.jpg\",\"subtitle\":\"\",\"create_time\":1535686042,\"update_time\":1535686042,\"orderby\":10,\"click_count\":null,\"goods_weight\":\"300.000\",\"start_date\":1535685661,\"end_date\":1536031265,\"is_real\":1,\"return_score\":10,\"score_price\":null,\"price_real\":\"0.00\",\"score\":null,\"basic_price\":\"0.01\",\"isdelete\":0,\"store_type\":1,\"free_type\":1,\"postage\":null,\"after_sale\":\"<p>ok<\\/p>\",\"routine\":null,\"shop_code\":\"\",\"buy_num\":500,\"bar_code\":\"\",\"is_return_goods\":1,\"yieldly\":\"\",\"is_comment\":1,\"up_tip\":0,\"up_error_reason\":\"\",\"service\":\"[\\\"\\\\u6ca1\\\\u6709\\\\u670d\\\\u52a1\\\"]\",\"service_mobile\":\"\"}","0","","","","","","0","0","","1","通用","3","omQYXwAasNeXdGSMymd91487Ds1g","0","","","{\"id\":3,\"uid\":3,\"name\":\"\\u6d4b\\u8bd5\\u4eba\",\"mobile\":\"18988756181\",\"address\":\"\\u5929\\u6d25\\u5e02\\u6cb3\\u5317\\u533a\\u65b0\\u5f00\\u6cb3\\u8857\\u9053\",\"street\":\"\\u6d4b\\u8bd5\",\"status\":1,\"addtime\":1535765409,\"updatetime\":1535765409}","0","0","0","0","0","","0.01","0","10.00");
INSERT INTO fy_order_goods VALUES("6","6","17","1441217402201809010942213958","21","{\"id\":6,\"user_id\":21,\"name\":\"\\u79ef\\u5206\\u5546\\u57ce\\u82f9\\u679c\\u624b\\u673a\",\"pic\":\"[\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180831\\\\\\/1d24ff63ce97e98b5bfb4ff2fab9feb9.jpg\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180831\\\\\\/443091067af6b9ff229b087de97c04ec.jpg\\\"]\",\"original_price\":\"10.00\",\"settlement_type\":2,\"goods_class_id\":6,\"goods_brand_id\":20,\"show_area\":2,\"detail\":\"<p>0000<\\/p>\",\"status\":1,\"main_image\":\"\\/pic\\/uploads\\/20180831\\/c9eeb4703eccfd5b46d57249451c0db7.jpg\",\"subtitle\":\"\",\"create_time\":1535696647,\"update_time\":1535696647,\"orderby\":10,\"click_count\":null,\"goods_weight\":\"300.000\",\"start_date\":null,\"end_date\":null,\"is_real\":1,\"return_score\":10,\"score_price\":null,\"price_real\":\"0.00\",\"score\":10,\"basic_price\":\"\",\"isdelete\":0,\"store_type\":1,\"free_type\":1,\"postage\":null,\"after_sale\":\"<p>\\u6b63\\u54c1<\\/p>\",\"routine\":null,\"shop_code\":\"\",\"buy_num\":10,\"bar_code\":\"\",\"is_return_goods\":1,\"yieldly\":\"\",\"is_comment\":1,\"up_tip\":0,\"up_error_reason\":\"\",\"service\":\"[\\\"\\\\u6b63\\\\u54c1\\\\u4fdd\\\\u969c\\\"]\",\"service_mobile\":\"\"}","0","","","","","","0","0","","1","通用","3","omQYXwAasNeXdGSMymd91487Ds1g","0","","","{\"id\":3,\"uid\":3,\"name\":\"\\u6d4b\\u8bd5\\u4eba\",\"mobile\":\"18988756181\",\"address\":\"\\u5929\\u6d25\\u5e02\\u6cb3\\u5317\\u533a\\u65b0\\u5f00\\u6cb3\\u8857\\u9053\",\"street\":\"\\u6d4b\\u8bd5\",\"status\":1,\"addtime\":1535765409,\"updatetime\":1535765409}","0","0","0","0","0","","0.01","0","10.00");
INSERT INTO fy_order_goods VALUES("7","4","9","1441217402201809010945314726","21","{\"id\":4,\"user_id\":21,\"name\":\"\\u65b0\\u7586\\u5580\\u4ec0\\u897f\\u68854\\u65a4\\u5927\\u679c\\u987a\\u4e30\\u5305\\u90ae\\u5f53\\u5b63\\u6c34\\u679c \\u65b0\\u9c9c\\u897f\\u6885\",\"pic\":\"[\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180830\\\\\\/ea45e2935e48ced0a4d5d41e0747b67f.png\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180830\\\\\\/4391e2482ec76691700cd515c9345bdb.png\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180830\\\\\\/c6aeb8f410cffb7177176664f22faeca.png\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180830\\\\\\/e36a0b9370ce4cc1f5253ecbe60965d3.png\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180830\\\\\\/2acd8620b35b3002254d1efe262bd616.png\\\",\\\"\\\\\\/pic\\\\\\/uploads\\\\\\/20180830\\\\\\/e1cb7a1a90efbff95611e80dd15bb476.png\\\"]\",\"original_price\":\"50.00\",\"settlement_type\":3,\"goods_class_id\":5,\"goods_brand_id\":20,\"show_area\":4,\"detail\":\"<p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180830\\/1535592715470866.jpg" title="1535592715470866.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180830\\/1535592715223950.jpg" title="1535592715223950.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180830\\/1535592715131169.jpg" title="1535592715131169.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180830\\/1535592715428269.jpg" title="1535592715428269.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180830\\/1535592715454974.jpg" title="1535592715454974.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180830\\/1535592715724215.jpg" title="1535592715724215.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180830\\/1535592715908613.jpg" title="1535592715908613.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180830\\/1535592715538300.jpg" title="1535592715538300.jpg"\\/><\\/p><p><img src="\\/ueditor\\/php\\/upload\\/image\\/20180830\\/1535592715682912.jpg" title="1535592715682912.jpg"\\/><\\/p><p><br\\/><\\/p>\",\"status\":1,\"main_image\":\"\\/pic\\/uploads\\/20180830\\/ea1de0a49c95ce254cd599ec2fdae29e.png\",\"subtitle\":\"\",\"create_time\":1535593177,\"update_time\":1535593177,\"orderby\":10,\"click_count\":null,\"goods_weight\":\"1000.000\",\"start_date\":null,\"end_date\":null,\"is_real\":1,\"return_score\":10,\"score_price\":null,\"price_real\":\"0.00\",\"score\":1,\"basic_price\":\"0.01\",\"isdelete\":0,\"store_type\":1,\"free_type\":1,\"postage\":\"0.00\",\"after_sale\":\"<p>\\u574f\\u5355\\u5305\\u9000\\uff1a\\u786e\\u8ba4\\u6536\\u8d2724\\u5c0f\\u65f6\\u5185\\u98df\\u7269\\u51fa\\u73b0\\u8150\\u8d25\\u53d8\\u8d28\\uff0c\\u5546\\u5bb6\\u627f\\u8bfa24\\u5c0f\\u65f6\\u5185\\u5904\\u7406\\u3002<\\/p>\",\"routine\":\"{\\\"\\\\u54c1\\\\u724c\\\":\\\"\\\\u751c\\\\u53ef\\\\u679c\\\\u56ed\\\",\\\"\\\\u4fdd\\\\u8d28\\\\u671f\\\":\\\"5\\\\u5929\\\",\\\"\\\\u51c0\\\\u542b\\\\u91cf\\\":\\\"1kg\\\\uff08\\\\u542b\\\\uff09-2.5kg\\\\uff08\\\\u542b\\\\uff09\\\",\\\"\\\\u5305\\\\u88c5\\\\u65b9\\\\u5f0f\\\":\\\"\\\\u5305\\\\u88c5\\\",\\\"\\\\u552e\\\\u5356\\\\u65b9\\\\u5f0f\\\":\\\"\\\\u5355\\\\u54c1\\\",\\\"\\\\u662f\\\\u5426\\\\u4e3a\\\\u6709\\\\u673a\\\\u98df\\\\u54c1\\\":\\\"\\\\u5426\\\",\\\"\\\\u751f\\\\u9c9c\\\\u50a8\\\\u5b58\\\\u6e29\\\\u5ea6\\\":\\\"0-8\\\\u2103\\\",\\\"\\\\u4ea7\\\\u5730\\\":\\\"\\\\u4e2d\\\\u56fd\\\\u5927\\\\u9646\\\",\\\"\\\\u7701\\\\u4efd\\\":\\\"\\\\u65b0\\\\u7586\\\\u7ef4\\\\u543e\\\\u5c14\\\\u65cf\\\\u81ea\\\\u6cbb\\\\u533a\\\",\\\"\\\\u57ce\\\\u5e02\\\":\\\"\\\\u5580\\\\u4ec0\\\\u5730\\\\u533a\\\",\\\"\\\\u5957\\\\u9910\\\\u4efd\\\\u91cf\\\":\\\"5\\\\u4eba\\\\u4efd\\\",\\\"\\\\u5957\\\\u9910\\\\u5468\\\\u671f\\\":\\\"1\\\\u5468\\\",\\\"\\\\u914d\\\\u9001\\\\u9891\\\\u6b21\\\":\\\"1\\\\u54682\\\\u6b21\\\"}\",\"shop_code\":\"\",\"buy_num\":0,\"bar_code\":\"\",\"is_return_goods\":1,\"yieldly\":\"\",\"is_comment\":1,\"up_tip\":0,\"up_error_reason\":\"\",\"service\":\"[\\\"\\\\u574f\\\\u5355\\\\u5305\\\\u9000\\\"]\",\"service_mobile\":\"86701701\"}","0","","","","","","0","0","","1","1kg","3","omQYXwAasNeXdGSMymd91487Ds1g","0","","","{\"id\":3,\"uid\":3,\"name\":\"\\u6d4b\\u8bd5\\u4eba\",\"mobile\":\"18988756181\",\"address\":\"\\u5929\\u6d25\\u5e02\\u6cb3\\u5317\\u533a\\u65b0\\u5f00\\u6cb3\\u8857\\u9053\",\"street\":\"\\u6d4b\\u8bd5\",\"status\":1,\"addtime\":1535765409,\"updatetime\":1535765409}","0","0","0","0","0","","0.01","0","1.00");
DROP TABLE fy_score_log;
CREATE TABLE `fy_score_log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '积分日志表',
`uid` int(10) DEFAULT NULL COMMENT '用户ID',
`openid` varchar(255) DEFAULT NULL COMMENT '用户openid',
`source_id` int(11) DEFAULT '0' COMMENT '积分来源ID',
`source` tinyint(1) NOT NULL COMMENT '1注册|2签到|3完成任务|4升级|5购买商品|6参与活动|7兑换商品|8兑换积分抵扣券|9抵扣付款金额|10积分清零11评论',
`score` decimal(10,2) NOT NULL COMMENT '增减的积分',
`time` int(11) NOT NULL COMMENT '积分增减时间',
`status` tinyint(1) DEFAULT '1' COMMENT '1启用|0禁用',
`isdelete` tinyint(1) DEFAULT '0' COMMENT '1删除|0未删除',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
INSERT INTO fy_score_log VALUES("1","1","omQYXwNAT5uC15TQqMGxajJzqo4s","0","1","10.00","1535705545","1","0");
INSERT INTO fy_score_log VALUES("2","2","omQYXwM8TEkiBZR7Ldm891OOWbNQ","0","1","10.00","1535705741","1","0");
INSERT INTO fy_score_log VALUES("3","2","omQYXwM8TEkiBZR7Ldm891OOWbNQ","0","7","0.00","1535706068","1","0");
INSERT INTO fy_score_log VALUES("4","","omQYXwM8TEkiBZR7Ldm891OOWbNQ","1","5","10.00","1535706110","1","0");
INSERT INTO fy_score_log VALUES("5","3","omQYXwAasNeXdGSMymd91487Ds1g","0","1","10.00","1535765279","1","0");
INSERT INTO fy_score_log VALUES("6","3","omQYXwAasNeXdGSMymd91487Ds1g","0","7","0.00","1535765494","1","0");
INSERT INTO fy_score_log VALUES("7","3","omQYXwAasNeXdGSMymd91487Ds1g","1","2","2.00","1535766078","1","0");
INSERT INTO fy_score_log VALUES("8","3","omQYXwAasNeXdGSMymd91487Ds1g","0","7","-10.00","1535766141","1","0");
INSERT INTO fy_score_log VALUES("9","3","omQYXwAasNeXdGSMymd91487Ds1g","0","7","-1.00","1535766341","1","0");
DROP TABLE fy_search;
CREATE TABLE `fy_search` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '搜索关键词表',
`uid` int(11) DEFAULT NULL,
`openid` varchar(255) DEFAULT NULL,
`search` varchar(255) DEFAULT NULL COMMENT '搜索词',
`create_time` int(11) DEFAULT NULL COMMENT '时间',
`goods_id` text COMMENT '搜索到的商品id',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
INSERT INTO fy_search VALUES("1","","omQYXwAasNeXdGSMymd91487Ds1g","我","1535767469","");
INSERT INTO fy_search VALUES("2","","omQYXwAasNeXdGSMymd91487Ds1g","橙子","1535767480","2");
INSERT INTO fy_search VALUES("3","","omQYXwAasNeXdGSMymd91487Ds1g","橙子","1535767480","");
DROP TABLE fy_silde_show;
CREATE TABLE `fy_silde_show` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pic` varchar(255) NOT NULL COMMENT '图片',
`name` varchar(50) NOT NULL COMMENT '描述',
`orderby` int(11) NOT NULL DEFAULT '1' COMMENT '排序值',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1启用0禁用',
`create_time` int(11) DEFAULT NULL COMMENT '添加时间',
`update_time` int(11) DEFAULT NULL COMMENT '修改时间',
`url` varchar(255) NOT NULL COMMENT '跳转链接',
`isdelete` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
INSERT INTO fy_silde_show VALUES("6","/pic/uploads/20180816/a4c15401cd86eaa5a241a8b93a420b86.png","裤子","1","1","1530519761","1535426121","http://www.fyxt701.com/index.php/index/goods/detail/id/2.html","0");
INSERT INTO fy_silde_show VALUES("7","/pic/uploads/20180816/c294033a256277ec75e05f92d702c498.png","手提包","1","1","1530520601","1535426250","http://www.fyxt701.com/index.php/index/goods/detail/id/1.html","0");
INSERT INTO fy_silde_show VALUES("8","/pic/uploads/20180816/b95d11e6b321bb3abfb7267a216c9c3f.png","棉布","1","0","1532572889","1534831633","http://www.fyxt701.com/index.php/index/goods/rushPurchase.html","0");
INSERT INTO fy_silde_show VALUES("10","/pic/uploads/20180816/69e7517edddc65cf02a342cdf76f32b7.png","坚果","1","0","1532575849","1534831647","http://www.fyxt701.com/index.php/index/goods/rushPurchase.html","0");
INSERT INTO fy_silde_show VALUES("12","/pic/uploads/20180822/7a2570970d3d8229dcf3deca8903d946.png","商城","1","0","1534924541","1534924541","https://www.baidu.com/","0");
DROP TABLE fy_sys_event_log;
CREATE TABLE `fy_sys_event_log` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '系统操作表',
`addtime` int(11) NOT NULL COMMENT '操作时间',
`uid` int(11) NOT NULL COMMENT '操作用户',
`method` varchar(50) DEFAULT NULL COMMENT '操作控制/方法',
`method_zh` varchar(50) DEFAULT NULL COMMENT '中文描述',
`group_id` int(11) DEFAULT NULL COMMENT '组id',
`group_name` varchar(32) DEFAULT NULL COMMENT '组名',
`object` text COMMENT '操作对象',
`ip` varchar(32) DEFAULT NULL COMMENT 'ip地址',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE fy_task_achievement;
CREATE TABLE `fy_task_achievement` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '会员任务完成明细表',
`uid` int(10) NOT NULL COMMENT '用户ID',
`task_id` int(11) NOT NULL COMMENT '任务ID',
`time` int(11) DEFAULT NULL COMMENT '参与时间',
`status` tinyint(1) NOT NULL COMMENT '1完成|0未完成',
`reward_score` decimal(10,2) NOT NULL COMMENT '奖励积分',
`create_time` int(11) NOT NULL COMMENT '创建时间',
`update_time` int(11) NOT NULL COMMENT '更新时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
INSERT INTO fy_task_achievement VALUES("1","11","7","1530151205","1","30.00","1530151205","1530151205");
INSERT INTO fy_task_achievement VALUES("2","31","7","","0","0.00","1531151205","1531151205");
INSERT INTO fy_task_achievement VALUES("3","21","6","1529747645","1","12.00","1529747645","1529823875");
INSERT INTO fy_task_achievement VALUES("4","41","6","1529823875","1","12.00","1529823875","1529823875");
DROP TABLE fy_transaction;
CREATE TABLE `fy_transaction` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'transaction 交易设置表',
`group_id` int(11) DEFAULT NULL COMMENT '所属组id',
`group_name` varchar(50) DEFAULT NULL COMMENT '组名',
`create_time` int(11) DEFAULT NULL COMMENT '创建时间',
`status` tinyint(1) DEFAULT '1' COMMENT '1启用0禁用',
`uid` int(11) DEFAULT NULL COMMENT '用户id',
`username` varchar(50) DEFAULT NULL COMMENT '用户名',
`rate` decimal(10,2) NOT NULL COMMENT '费率',
`update_time` int(11) DEFAULT NULL,
`isdelete` tinyint(1) DEFAULT '0' COMMENT '1删除区回收站0正常',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
INSERT INTO fy_transaction VALUES("4","1","领导组","","1","0","","1.00","","0");
INSERT INTO fy_transaction VALUES("5","3","test","","1","0","","12.00","","0");
INSERT INTO fy_transaction VALUES("7","0","","","1","4","123456","3.00","","0");
INSERT INTO fy_transaction VALUES("8","0","","","1","3","","10.00","","1");
INSERT INTO fy_transaction VALUES("9","0","","","1","21","jyf","3.00","","0");
DROP TABLE fy_use_lottery;
CREATE TABLE `fy_use_lottery` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`use_openid` varchar(64) NOT NULL,
`username` varchar(50) DEFAULT NULL,
`create_time` int(10) DEFAULT NULL,
`num` int(10) DEFAULT '0',
`lottery_id` int(10) DEFAULT NULL,
`lottery_log_id` int(10) DEFAULT NULL,
`shop_openid` varchar(50) DEFAULT NULL,
`status` tinyint(1) DEFAULT '1',
`coupon_real_money` decimal(10,2) DEFAULT NULL,
`coupon_money` decimal(10,2) DEFAULT NULL,
`isdelete` tinyint(1) DEFAULT '0',
`unique_flag` varchar(255) DEFAULT NULL COMMENT '每次核销对应生成的唯一标识',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE fy_web_log_001;
CREATE TABLE `fy_web_log_001` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '日志主键',
`uid` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '用户id',
`ip` char(15) NOT NULL DEFAULT '' COMMENT '访客ip',
`location` varchar(255) NOT NULL DEFAULT '' COMMENT '访客地址',
`os` varchar(255) NOT NULL DEFAULT '' COMMENT '操作系统',
`browser` varchar(255) NOT NULL DEFAULT '' COMMENT '浏览器',
`url` varchar(255) NOT NULL DEFAULT '' COMMENT 'url',
`module` varchar(255) NOT NULL DEFAULT '' COMMENT '模块',
`controller` varchar(255) NOT NULL DEFAULT '' COMMENT '控制器',
`action` varchar(255) NOT NULL DEFAULT '' COMMENT '方法',
`method` char(6) NOT NULL DEFAULT '' COMMENT '请求方式',
`data` text COMMENT '请求的param数据,serialize后的',
`create_at` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '操作时间',
PRIMARY KEY (`id`),
KEY `uid` (`uid`),
KEY `ip` (`ip`),
KEY `create_at` (`create_at`) USING BTREE
) ENGINE=MyISAM AUTO_INCREMENT=566 DEFAULT CHARSET=utf8 COMMENT='网站日志';
INSERT INTO fy_web_log_001 VALUES("1","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535705332");
INSERT INTO fy_web_log_001 VALUES("2","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535705332");
INSERT INTO fy_web_log_001 VALUES("3","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535705334");
INSERT INTO fy_web_log_001 VALUES("4","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535705334");
INSERT INTO fy_web_log_001 VALUES("5","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535705347");
INSERT INTO fy_web_log_001 VALUES("6","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535705360");
INSERT INTO fy_web_log_001 VALUES("7","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535705366");
INSERT INTO fy_web_log_001 VALUES("8","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/edit/type/show/id/5.html","admin","Goods","edit","GET","a:2:{s:4:\"type\";s:4:\"show\";s:2:\"id\";s:1:\"5\";}","1535705368");
INSERT INTO fy_web_log_001 VALUES("9","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/getskudata.html","admin","Goods","getskudata","POST","a:1:{s:2:\"id\";s:1:\"5\";}","1535705368");
INSERT INTO fy_web_log_001 VALUES("10","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535705389");
INSERT INTO fy_web_log_001 VALUES("11","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535705389");
INSERT INTO fy_web_log_001 VALUES("12","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706077");
INSERT INTO fy_web_log_001 VALUES("13","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706078");
INSERT INTO fy_web_log_001 VALUES("14","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535706083");
INSERT INTO fy_web_log_001 VALUES("15","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535706088");
INSERT INTO fy_web_log_001 VALUES("16","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/orderdetail/order_id/1441217402201808311656478916/id/1.html","admin","Order","orderdetail","GET","a:2:{s:8:\"order_id\";s:28:\"1441217402201808311656478916\";s:2:\"id\";s:1:\"1\";}","1535706093");
INSERT INTO fy_web_log_001 VALUES("17","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/addpost.html","admin","Order","addpost","POST","a:3:{s:2:\"id\";s:1:\"1\";s:14:\"logistics_name\";s:12:\"顺丰快递\";s:16:\"logistics_number\";s:0:\"\";}","1535706095");
INSERT INTO fy_web_log_001 VALUES("18","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/orderdetail/order_id/1441217402201808311656478916/id/1.html","admin","Order","orderdetail","GET","a:2:{s:8:\"order_id\";s:28:\"1441217402201808311656478916\";s:2:\"id\";s:1:\"1\";}","1535706097");
INSERT INTO fy_web_log_001 VALUES("19","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/addpost.html","admin","Order","addpost","POST","a:3:{s:2:\"id\";s:1:\"1\";s:14:\"logistics_name\";s:12:\"顺丰快递\";s:16:\"logistics_number\";s:3:\"123\";}","1535706099");
INSERT INTO fy_web_log_001 VALUES("20","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/orderdetail/order_id/1441217402201808311656478916/id/1.html","admin","Order","orderdetail","GET","a:2:{s:8:\"order_id\";s:28:\"1441217402201808311656478916\";s:2:\"id\";s:1:\"1\";}","1535706101");
INSERT INTO fy_web_log_001 VALUES("21","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535706112");
INSERT INTO fy_web_log_001 VALUES("22","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706114");
INSERT INTO fy_web_log_001 VALUES("23","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706114");
INSERT INTO fy_web_log_001 VALUES("24","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/transaction/index.html","admin","Transaction","index","GET","a:0:{}","1535706118");
INSERT INTO fy_web_log_001 VALUES("25","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706123");
INSERT INTO fy_web_log_001 VALUES("26","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706123");
INSERT INTO fy_web_log_001 VALUES("27","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706127");
INSERT INTO fy_web_log_001 VALUES("28","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706128");
INSERT INTO fy_web_log_001 VALUES("29","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535706158");
INSERT INTO fy_web_log_001 VALUES("30","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535706214");
INSERT INTO fy_web_log_001 VALUES("31","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535706214");
INSERT INTO fy_web_log_001 VALUES("32","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535706217");
INSERT INTO fy_web_log_001 VALUES("33","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706221");
INSERT INTO fy_web_log_001 VALUES("34","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706222");
INSERT INTO fy_web_log_001 VALUES("35","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706232");
INSERT INTO fy_web_log_001 VALUES("36","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706232");
INSERT INTO fy_web_log_001 VALUES("37","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/transaction/index.html","admin","Transaction","index","GET","a:0:{}","1535706239");
INSERT INTO fy_web_log_001 VALUES("38","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535706242");
INSERT INTO fy_web_log_001 VALUES("39","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706253");
INSERT INTO fy_web_log_001 VALUES("40","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706253");
INSERT INTO fy_web_log_001 VALUES("41","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/pub/logout.html","admin","Pub","logout","GET","a:0:{}","1535706255");
INSERT INTO fy_web_log_001 VALUES("42","0","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/pub/login.html","admin","Pub","login","GET","a:0:{}","1535706258");
INSERT INTO fy_web_log_001 VALUES("43","0","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/pub/checklogin.html","admin","Pub","checklogin","POST","a:3:{s:7:\"account\";s:3:\"jyf\";s:8:\"password\";s:6:\"<PASSWORD>\";s:7:\"captcha\";s:4:\"8iw4\";}","1535706278");
INSERT INTO fy_web_log_001 VALUES("44","0","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/pub/checklogin.html","admin","Pub","checklogin","POST","a:3:{s:7:\"account\";s:3:\"jyf\";s:8:\"password\";s:6:\"<PASSWORD>\";s:7:\"captcha\";s:4:\"t38t\";}","1535706284");
INSERT INTO fy_web_log_001 VALUES("45","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535706285");
INSERT INTO fy_web_log_001 VALUES("46","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706285");
INSERT INTO fy_web_log_001 VALUES("47","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706295");
INSERT INTO fy_web_log_001 VALUES("48","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706295");
INSERT INTO fy_web_log_001 VALUES("49","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706296");
INSERT INTO fy_web_log_001 VALUES("50","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706296");
INSERT INTO fy_web_log_001 VALUES("51","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706297");
INSERT INTO fy_web_log_001 VALUES("52","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706297");
INSERT INTO fy_web_log_001 VALUES("53","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706302");
INSERT INTO fy_web_log_001 VALUES("54","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706302");
INSERT INTO fy_web_log_001 VALUES("55","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706304");
INSERT INTO fy_web_log_001 VALUES("56","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706305");
INSERT INTO fy_web_log_001 VALUES("57","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706309");
INSERT INTO fy_web_log_001 VALUES("58","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706309");
INSERT INTO fy_web_log_001 VALUES("59","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706312");
INSERT INTO fy_web_log_001 VALUES("60","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706312");
INSERT INTO fy_web_log_001 VALUES("61","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706313");
INSERT INTO fy_web_log_001 VALUES("62","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706313");
INSERT INTO fy_web_log_001 VALUES("63","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706314");
INSERT INTO fy_web_log_001 VALUES("64","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706315");
INSERT INTO fy_web_log_001 VALUES("65","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706315");
INSERT INTO fy_web_log_001 VALUES("66","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706316");
INSERT INTO fy_web_log_001 VALUES("67","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706323");
INSERT INTO fy_web_log_001 VALUES("68","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706323");
INSERT INTO fy_web_log_001 VALUES("69","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706324");
INSERT INTO fy_web_log_001 VALUES("70","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706324");
INSERT INTO fy_web_log_001 VALUES("71","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706325");
INSERT INTO fy_web_log_001 VALUES("72","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706326");
INSERT INTO fy_web_log_001 VALUES("73","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706332");
INSERT INTO fy_web_log_001 VALUES("74","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706332");
INSERT INTO fy_web_log_001 VALUES("75","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706333");
INSERT INTO fy_web_log_001 VALUES("76","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706333");
INSERT INTO fy_web_log_001 VALUES("77","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706334");
INSERT INTO fy_web_log_001 VALUES("78","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706334");
INSERT INTO fy_web_log_001 VALUES("79","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706335");
INSERT INTO fy_web_log_001 VALUES("80","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706336");
INSERT INTO fy_web_log_001 VALUES("81","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706336");
INSERT INTO fy_web_log_001 VALUES("82","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706336");
INSERT INTO fy_web_log_001 VALUES("83","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706338");
INSERT INTO fy_web_log_001 VALUES("84","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706338");
INSERT INTO fy_web_log_001 VALUES("85","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706339");
INSERT INTO fy_web_log_001 VALUES("86","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706339");
INSERT INTO fy_web_log_001 VALUES("87","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706340");
INSERT INTO fy_web_log_001 VALUES("88","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706340");
INSERT INTO fy_web_log_001 VALUES("89","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706341");
INSERT INTO fy_web_log_001 VALUES("90","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706341");
INSERT INTO fy_web_log_001 VALUES("91","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706343");
INSERT INTO fy_web_log_001 VALUES("92","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706343");
INSERT INTO fy_web_log_001 VALUES("93","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706344");
INSERT INTO fy_web_log_001 VALUES("94","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706344");
INSERT INTO fy_web_log_001 VALUES("95","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706347");
INSERT INTO fy_web_log_001 VALUES("96","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706347");
INSERT INTO fy_web_log_001 VALUES("97","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706348");
INSERT INTO fy_web_log_001 VALUES("98","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706348");
INSERT INTO fy_web_log_001 VALUES("99","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706355");
INSERT INTO fy_web_log_001 VALUES("100","21","172.16.31.107","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706355");
INSERT INTO fy_web_log_001 VALUES("101","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706356");
INSERT INTO fy_web_log_001 VALUES("102","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706356");
INSERT INTO fy_web_log_001 VALUES("103","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706367");
INSERT INTO fy_web_log_001 VALUES("104","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706367");
INSERT INTO fy_web_log_001 VALUES("105","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706368");
INSERT INTO fy_web_log_001 VALUES("106","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706368");
INSERT INTO fy_web_log_001 VALUES("107","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706369");
INSERT INTO fy_web_log_001 VALUES("108","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706369");
INSERT INTO fy_web_log_001 VALUES("109","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706370");
INSERT INTO fy_web_log_001 VALUES("110","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706370");
INSERT INTO fy_web_log_001 VALUES("111","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706373");
INSERT INTO fy_web_log_001 VALUES("112","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706374");
INSERT INTO fy_web_log_001 VALUES("113","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706375");
INSERT INTO fy_web_log_001 VALUES("114","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706375");
INSERT INTO fy_web_log_001 VALUES("115","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706376");
INSERT INTO fy_web_log_001 VALUES("116","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706376");
INSERT INTO fy_web_log_001 VALUES("117","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706378");
INSERT INTO fy_web_log_001 VALUES("118","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706378");
INSERT INTO fy_web_log_001 VALUES("119","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706379");
INSERT INTO fy_web_log_001 VALUES("120","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706380");
INSERT INTO fy_web_log_001 VALUES("121","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706394");
INSERT INTO fy_web_log_001 VALUES("122","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706394");
INSERT INTO fy_web_log_001 VALUES("123","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706395");
INSERT INTO fy_web_log_001 VALUES("124","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706395");
INSERT INTO fy_web_log_001 VALUES("125","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706395");
INSERT INTO fy_web_log_001 VALUES("126","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706396");
INSERT INTO fy_web_log_001 VALUES("127","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706396");
INSERT INTO fy_web_log_001 VALUES("128","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706396");
INSERT INTO fy_web_log_001 VALUES("129","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706397");
INSERT INTO fy_web_log_001 VALUES("130","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706397");
INSERT INTO fy_web_log_001 VALUES("131","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706397");
INSERT INTO fy_web_log_001 VALUES("132","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706397");
INSERT INTO fy_web_log_001 VALUES("133","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706398");
INSERT INTO fy_web_log_001 VALUES("134","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706398");
INSERT INTO fy_web_log_001 VALUES("135","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706399");
INSERT INTO fy_web_log_001 VALUES("136","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706399");
INSERT INTO fy_web_log_001 VALUES("137","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706400");
INSERT INTO fy_web_log_001 VALUES("138","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706400");
INSERT INTO fy_web_log_001 VALUES("139","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706401");
INSERT INTO fy_web_log_001 VALUES("140","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706401");
INSERT INTO fy_web_log_001 VALUES("141","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706402");
INSERT INTO fy_web_log_001 VALUES("142","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706402");
INSERT INTO fy_web_log_001 VALUES("143","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706403");
INSERT INTO fy_web_log_001 VALUES("144","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706403");
INSERT INTO fy_web_log_001 VALUES("145","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706404");
INSERT INTO fy_web_log_001 VALUES("146","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706404");
INSERT INTO fy_web_log_001 VALUES("147","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706405");
INSERT INTO fy_web_log_001 VALUES("148","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706405");
INSERT INTO fy_web_log_001 VALUES("149","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706407");
INSERT INTO fy_web_log_001 VALUES("150","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706407");
INSERT INTO fy_web_log_001 VALUES("151","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706408");
INSERT INTO fy_web_log_001 VALUES("152","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706408");
INSERT INTO fy_web_log_001 VALUES("153","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706409");
INSERT INTO fy_web_log_001 VALUES("154","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706409");
INSERT INTO fy_web_log_001 VALUES("155","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706410");
INSERT INTO fy_web_log_001 VALUES("156","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706410");
INSERT INTO fy_web_log_001 VALUES("157","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706410");
INSERT INTO fy_web_log_001 VALUES("158","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706410");
INSERT INTO fy_web_log_001 VALUES("159","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706411");
INSERT INTO fy_web_log_001 VALUES("160","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706411");
INSERT INTO fy_web_log_001 VALUES("161","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706412");
INSERT INTO fy_web_log_001 VALUES("162","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706412");
INSERT INTO fy_web_log_001 VALUES("163","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706413");
INSERT INTO fy_web_log_001 VALUES("164","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706413");
INSERT INTO fy_web_log_001 VALUES("165","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706414");
INSERT INTO fy_web_log_001 VALUES("166","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706414");
INSERT INTO fy_web_log_001 VALUES("167","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706414");
INSERT INTO fy_web_log_001 VALUES("168","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706414");
INSERT INTO fy_web_log_001 VALUES("169","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706415");
INSERT INTO fy_web_log_001 VALUES("170","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706415");
INSERT INTO fy_web_log_001 VALUES("171","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706416");
INSERT INTO fy_web_log_001 VALUES("172","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706416");
INSERT INTO fy_web_log_001 VALUES("173","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706416");
INSERT INTO fy_web_log_001 VALUES("174","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706416");
INSERT INTO fy_web_log_001 VALUES("175","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706417");
INSERT INTO fy_web_log_001 VALUES("176","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706417");
INSERT INTO fy_web_log_001 VALUES("177","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706417");
INSERT INTO fy_web_log_001 VALUES("178","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706417");
INSERT INTO fy_web_log_001 VALUES("179","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706418");
INSERT INTO fy_web_log_001 VALUES("180","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706418");
INSERT INTO fy_web_log_001 VALUES("181","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706418");
INSERT INTO fy_web_log_001 VALUES("182","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706419");
INSERT INTO fy_web_log_001 VALUES("183","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706419");
INSERT INTO fy_web_log_001 VALUES("184","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706419");
INSERT INTO fy_web_log_001 VALUES("185","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706419");
INSERT INTO fy_web_log_001 VALUES("186","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706420");
INSERT INTO fy_web_log_001 VALUES("187","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706420");
INSERT INTO fy_web_log_001 VALUES("188","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706420");
INSERT INTO fy_web_log_001 VALUES("189","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706420");
INSERT INTO fy_web_log_001 VALUES("190","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706420");
INSERT INTO fy_web_log_001 VALUES("191","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706421");
INSERT INTO fy_web_log_001 VALUES("192","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706421");
INSERT INTO fy_web_log_001 VALUES("193","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706422");
INSERT INTO fy_web_log_001 VALUES("194","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706422");
INSERT INTO fy_web_log_001 VALUES("195","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706422");
INSERT INTO fy_web_log_001 VALUES("196","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706422");
INSERT INTO fy_web_log_001 VALUES("197","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706423");
INSERT INTO fy_web_log_001 VALUES("198","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706423");
INSERT INTO fy_web_log_001 VALUES("199","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706423");
INSERT INTO fy_web_log_001 VALUES("200","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706423");
INSERT INTO fy_web_log_001 VALUES("201","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706424");
INSERT INTO fy_web_log_001 VALUES("202","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706424");
INSERT INTO fy_web_log_001 VALUES("203","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706424");
INSERT INTO fy_web_log_001 VALUES("204","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706424");
INSERT INTO fy_web_log_001 VALUES("205","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706425");
INSERT INTO fy_web_log_001 VALUES("206","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706425");
INSERT INTO fy_web_log_001 VALUES("207","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706425");
INSERT INTO fy_web_log_001 VALUES("208","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706425");
INSERT INTO fy_web_log_001 VALUES("209","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706426");
INSERT INTO fy_web_log_001 VALUES("210","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706426");
INSERT INTO fy_web_log_001 VALUES("211","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706426");
INSERT INTO fy_web_log_001 VALUES("212","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706426");
INSERT INTO fy_web_log_001 VALUES("213","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706427");
INSERT INTO fy_web_log_001 VALUES("214","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706427");
INSERT INTO fy_web_log_001 VALUES("215","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706427");
INSERT INTO fy_web_log_001 VALUES("216","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706427");
INSERT INTO fy_web_log_001 VALUES("217","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706428");
INSERT INTO fy_web_log_001 VALUES("218","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706428");
INSERT INTO fy_web_log_001 VALUES("219","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706429");
INSERT INTO fy_web_log_001 VALUES("220","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706429");
INSERT INTO fy_web_log_001 VALUES("221","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706429");
INSERT INTO fy_web_log_001 VALUES("222","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706429");
INSERT INTO fy_web_log_001 VALUES("223","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706430");
INSERT INTO fy_web_log_001 VALUES("224","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706430");
INSERT INTO fy_web_log_001 VALUES("225","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706432");
INSERT INTO fy_web_log_001 VALUES("226","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706432");
INSERT INTO fy_web_log_001 VALUES("227","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/message/index.html","admin","Message","index","GET","a:0:{}","1535706435");
INSERT INTO fy_web_log_001 VALUES("228","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/use_lottery/index.html","admin","UseLottery","index","GET","a:0:{}","1535706437");
INSERT INTO fy_web_log_001 VALUES("229","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535706437");
INSERT INTO fy_web_log_001 VALUES("230","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/use_lottery/index.html","admin","UseLottery","index","GET","a:0:{}","1535706438");
INSERT INTO fy_web_log_001 VALUES("231","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/use_lottery/index.html","admin","UseLottery","index","GET","a:0:{}","1535706439");
INSERT INTO fy_web_log_001 VALUES("232","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/transaction/index.html","admin","Transaction","index","GET","a:0:{}","1535706441");
INSERT INTO fy_web_log_001 VALUES("233","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_class/index.html","admin","GoodsClass","index","GET","a:0:{}","1535706442");
INSERT INTO fy_web_log_001 VALUES("234","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_comment/index.html","admin","GoodsComment","index","GET","a:0:{}","1535706443");
INSERT INTO fy_web_log_001 VALUES("235","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer/index.html","admin","Customer","index","GET","a:0:{}","1535706444");
INSERT INTO fy_web_log_001 VALUES("236","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery_log/index.html","admin","LotteryLog","index","GET","a:0:{}","1535706445");
INSERT INTO fy_web_log_001 VALUES("237","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer/index.html","admin","Customer","index","GET","a:0:{}","1535706446");
INSERT INTO fy_web_log_001 VALUES("238","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706462");
INSERT INTO fy_web_log_001 VALUES("239","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706463");
INSERT INTO fy_web_log_001 VALUES("240","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/transaction/index.html","admin","Transaction","index","GET","a:0:{}","1535706466");
INSERT INTO fy_web_log_001 VALUES("241","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535706470");
INSERT INTO fy_web_log_001 VALUES("242","1","172.16.58.3","中国 贵州 贵阳 ","Windows NT","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535706530");
INSERT INTO fy_web_log_001 VALUES("243","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535706597");
INSERT INTO fy_web_log_001 VALUES("244","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/activity/index.html","admin","Activity","index","GET","a:0:{}","1535706600");
INSERT INTO fy_web_log_001 VALUES("245","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535706601");
INSERT INTO fy_web_log_001 VALUES("246","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/activity/index.html","admin","Activity","index","GET","a:0:{}","1535706604");
INSERT INTO fy_web_log_001 VALUES("247","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/silde_show/index.html","admin","SildeShow","index","GET","a:0:{}","1535706605");
INSERT INTO fy_web_log_001 VALUES("248","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535706606");
INSERT INTO fy_web_log_001 VALUES("249","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/pub/logout.html","admin","Pub","logout","GET","a:0:{}","1535706611");
INSERT INTO fy_web_log_001 VALUES("250","0","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/pub/login.html","admin","Pub","login","GET","a:0:{}","1535706614");
INSERT INTO fy_web_log_001 VALUES("251","0","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/pub/checklogin.html","admin","Pub","checklogin","POST","a:3:{s:7:\"account\";s:5:\"admin\";s:8:\"password\";s:6:\"123456\";s:7:\"captcha\";s:4:\"rhum\";}","1535706620");
INSERT INTO fy_web_log_001 VALUES("252","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535706620");
INSERT INTO fy_web_log_001 VALUES("253","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706620");
INSERT INTO fy_web_log_001 VALUES("254","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535706628");
INSERT INTO fy_web_log_001 VALUES("255","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html?username=&type=1","admin","WxPayRefundLog","index","GET","a:2:{s:8:\"username\";s:0:\"\";s:4:\"type\";s:1:\"1\";}","1535706631");
INSERT INTO fy_web_log_001 VALUES("256","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer/index.html","admin","Customer","index","GET","a:0:{}","1535706692");
INSERT INTO fy_web_log_001 VALUES("257","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535706705");
INSERT INTO fy_web_log_001 VALUES("258","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_task/index.html","admin","CustomerTask","index","GET","a:0:{}","1535706714");
INSERT INTO fy_web_log_001 VALUES("259","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_task/index.html","admin","CustomerTask","index","GET","a:0:{}","1535706716");
INSERT INTO fy_web_log_001 VALUES("260","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_grade/index.html","admin","CustomerGrade","index","GET","a:0:{}","1535706716");
INSERT INTO fy_web_log_001 VALUES("261","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_grade_desc/index.html","admin","CustomerGradeDesc","index","GET","a:0:{}","1535706719");
INSERT INTO fy_web_log_001 VALUES("262","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery_log/index.html","admin","LotteryLog","index","GET","a:0:{}","1535706721");
INSERT INTO fy_web_log_001 VALUES("263","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/activity/index.html","admin","Activity","index","GET","a:0:{}","1535706729");
INSERT INTO fy_web_log_001 VALUES("264","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/transaction/index.html","admin","Transaction","index","GET","a:0:{}","1535706730");
INSERT INTO fy_web_log_001 VALUES("265","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535706732");
INSERT INTO fy_web_log_001 VALUES("266","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/message/index.html","admin","Message","index","GET","a:0:{}","1535706736");
INSERT INTO fy_web_log_001 VALUES("267","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/message/index.html","admin","Message","index","GET","a:0:{}","1535706750");
INSERT INTO fy_web_log_001 VALUES("268","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_comment/index.html","admin","GoodsComment","index","GET","a:0:{}","1535706751");
INSERT INTO fy_web_log_001 VALUES("269","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535706752");
INSERT INTO fy_web_log_001 VALUES("270","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535706867");
INSERT INTO fy_web_log_001 VALUES("271","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/orderdetail/order_id/1441217402201808311656478916/id/1.html","admin","Order","orderdetail","GET","a:2:{s:8:\"order_id\";s:28:\"1441217402201808311656478916\";s:2:\"id\";s:1:\"1\";}","1535706873");
INSERT INTO fy_web_log_001 VALUES("272","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/refund.html","admin","Order","refund","POST","a:3:{s:8:\"order_id\";s:28:\"1441217402201808311656478916\";s:2:\"id\";s:1:\"1\";s:4:\"flag\";s:3:\"yes\";}","1535706880");
INSERT INTO fy_web_log_001 VALUES("273","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/orderdetail/order_id/1441217402201808311656478916/id/1.html","admin","Order","orderdetail","GET","a:2:{s:8:\"order_id\";s:28:\"1441217402201808311656478916\";s:2:\"id\";s:1:\"1\";}","1535706883");
INSERT INTO fy_web_log_001 VALUES("274","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535706886");
INSERT INTO fy_web_log_001 VALUES("275","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/orderdetail/order_id/1441217402201808311656478916/id/1.html","admin","Order","orderdetail","GET","a:2:{s:8:\"order_id\";s:28:\"1441217402201808311656478916\";s:2:\"id\";s:1:\"1\";}","1535706889");
INSERT INTO fy_web_log_001 VALUES("276","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535706933");
INSERT INTO fy_web_log_001 VALUES("277","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/transaction/index.html","admin","Transaction","index","GET","a:0:{}","1535706933");
INSERT INTO fy_web_log_001 VALUES("278","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/activity/index.html","admin","Activity","index","GET","a:0:{}","1535706935");
INSERT INTO fy_web_log_001 VALUES("279","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery_log/index.html","admin","LotteryLog","index","GET","a:0:{}","1535706936");
INSERT INTO fy_web_log_001 VALUES("280","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/activity/index.html","admin","Activity","index","GET","a:0:{}","1535706938");
INSERT INTO fy_web_log_001 VALUES("281","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/silde_show/index.html","admin","SildeShow","index","GET","a:0:{}","1535706940");
INSERT INTO fy_web_log_001 VALUES("282","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/modular/index.html","admin","Modular","index","GET","a:0:{}","1535706941");
INSERT INTO fy_web_log_001 VALUES("283","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_class/index.html","admin","GoodsClass","index","GET","a:0:{}","1535706942");
INSERT INTO fy_web_log_001 VALUES("284","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535707482");
INSERT INTO fy_web_log_001 VALUES("285","0","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/pub/login.html","admin","Pub","login","GET","a:0:{}","1535766872");
INSERT INTO fy_web_log_001 VALUES("286","0","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/pub/checklogin.html","admin","Pub","checklogin","POST","a:3:{s:7:\"account\";s:5:\"admin\";s:8:\"password\";s:6:\"<PASSWORD>\";s:7:\"captcha\";s:4:\"gs3b\";}","1535766887");
INSERT INTO fy_web_log_001 VALUES("287","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535766887");
INSERT INTO fy_web_log_001 VALUES("288","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535766887");
INSERT INTO fy_web_log_001 VALUES("289","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/message/index.html","admin","Message","index","GET","a:0:{}","1535766918");
INSERT INTO fy_web_log_001 VALUES("290","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/node_map/index.html","admin","NodeMap","index","GET","a:0:{}","1535766920");
INSERT INTO fy_web_log_001 VALUES("291","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_user/index.html","admin","AdminUser","index","GET","a:0:{}","1535766920");
INSERT INTO fy_web_log_001 VALUES("292","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_role/index.html","admin","AdminRole","index","GET","a:0:{}","1535766921");
INSERT INTO fy_web_log_001 VALUES("293","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index.html","admin","AdminNode","index","GET","a:0:{}","1535766921");
INSERT INTO fy_web_log_001 VALUES("294","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:2:{s:4:\"type\";s:5:\"group\";s:9:\"module_id\";s:1:\"1\";}","1535766921");
INSERT INTO fy_web_log_001 VALUES("295","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:3:{s:4:\"type\";s:4:\"node\";s:9:\"module_id\";s:1:\"1\";s:8:\"group_id\";s:1:\"1\";}","1535766921");
INSERT INTO fy_web_log_001 VALUES("296","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_group/index.html","admin","AdminGroup","index","GET","a:0:{}","1535766922");
INSERT INTO fy_web_log_001 VALUES("297","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/node_map/index.html","admin","NodeMap","index","GET","a:0:{}","1535766923");
INSERT INTO fy_web_log_001 VALUES("298","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/login_log/index.html","admin","LoginLog","index","GET","a:0:{}","1535766923");
INSERT INTO fy_web_log_001 VALUES("299","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html","admin","WebLog","index","GET","a:0:{}","1535766924");
INSERT INTO fy_web_log_001 VALUES("300","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/login_log/index.html","admin","LoginLog","index","GET","a:0:{}","1535766924");
INSERT INTO fy_web_log_001 VALUES("301","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535766925");
INSERT INTO fy_web_log_001 VALUES("302","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/8.html","admin","Notice","edit","GET","a:1:{s:2:\"id\";s:1:\"8\";}","1535766936");
INSERT INTO fy_web_log_001 VALUES("303","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/10.html","admin","Notice","edit","GET","a:1:{s:2:\"id\";s:2:\"10\";}","1535766953");
INSERT INTO fy_web_log_001 VALUES("304","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/10.html","admin","Notice","edit","POST","a:6:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:12:\"内部体验\";s:6:\"detail\";s:105:\" 泛亚科技是国家大数据战略践行者和新型大数据产业生态圈商业模式引领者。\";s:6:\"status\";s:1:\"1\";s:7:\"orderby\";s:1:\"7\";s:4:\"desc\";s:401:\" 贵州泛亚信通网络科技有限公司(简称“泛亚科技”)是一家集泛在无线网络环境建设、数据可视化研究、大数据智能跨界应用为一体的大数据高科技企业,由郑州市讯捷贸易有限公司、阿里巴巴集团、贵阳广电传媒有限公司、贵阳市工业投资(集团)有限公司合资成立,注册资本1.2亿元。
\n
\n\";}","1535766979");
INSERT INTO fy_web_log_001 VALUES("305","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535766979");
INSERT INTO fy_web_log_001 VALUES("306","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/9.html","admin","Notice","edit","GET","a:1:{s:2:\"id\";s:1:\"9\";}","1535766985");
INSERT INTO fy_web_log_001 VALUES("307","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/8.html","admin","Notice","edit","GET","a:1:{s:2:\"id\";s:1:\"8\";}","1535766993");
INSERT INTO fy_web_log_001 VALUES("308","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/8.html","admin","Notice","edit","POST","a:6:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"欢迎内部体验\";s:6:\"detail\";s:54:\"泛亚商城商品即将上线完毕,敬请期待!\";s:6:\"status\";s:1:\"1\";s:7:\"orderby\";s:1:\"7\";s:4:\"desc\";s:120:\"各位会员,泛亚商城各类商品即将上线完毕,商品类型多种多样,欢迎各位会员体验购买!\";}","1535767009");
INSERT INTO fy_web_log_001 VALUES("309","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767010");
INSERT INTO fy_web_log_001 VALUES("310","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/7.html","admin","Notice","edit","GET","a:1:{s:2:\"id\";s:1:\"7\";}","1535767014");
INSERT INTO fy_web_log_001 VALUES("311","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/7.html","admin","Notice","edit","POST","a:6:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:30:\"泛亚商城1.0即将试运营\";s:6:\"detail\";s:30:\"泛亚商城1.0即将试运营\";s:6:\"status\";s:1:\"1\";s:7:\"orderby\";s:1:\"7\";s:4:\"desc\";s:108:\"经过不懈的努力,泛亚商城1.0终于完成,将于一周后正式开始试运营,敬请期待!\";}","1535767026");
INSERT INTO fy_web_log_001 VALUES("312","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767026");
INSERT INTO fy_web_log_001 VALUES("313","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/9.html","admin","Notice","edit","GET","a:1:{s:2:\"id\";s:1:\"9\";}","1535767051");
INSERT INTO fy_web_log_001 VALUES("314","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/9.html","admin","Notice","edit","POST","a:6:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:27:\"泛亚商城1.0内部体验\";s:6:\"detail\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:7:\"orderby\";s:1:\"7\";s:4:\"desc\";s:102:\"泛亚科技是国家大数据战略践行者和新型大数据产业生态圈商业模式引领者。\";}","1535767069");
INSERT INTO fy_web_log_001 VALUES("315","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767070");
INSERT INTO fy_web_log_001 VALUES("316","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/delete.html","admin","Notice","delete","POST","a:1:{s:2:\"id\";s:1:\"9\";}","1535767105");
INSERT INTO fy_web_log_001 VALUES("317","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/delete.html","admin","Notice","delete","POST","a:1:{s:2:\"id\";s:2:\"10\";}","1535767110");
INSERT INTO fy_web_log_001 VALUES("318","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767113");
INSERT INTO fy_web_log_001 VALUES("319","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/8.html","admin","Notice","edit","GET","a:1:{s:2:\"id\";s:1:\"8\";}","1535767131");
INSERT INTO fy_web_log_001 VALUES("320","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/8.html","admin","Notice","edit","POST","a:6:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:30:\"欢迎各位同事内部体验\";s:6:\"detail\";s:54:\"泛亚商城商品即将上线完毕,敬请期待!\";s:6:\"status\";s:1:\"1\";s:7:\"orderby\";s:1:\"7\";s:4:\"desc\";s:120:\"各位会员,泛亚商城各类商品即将上线完毕,商品类型多种多样,欢迎各位会员体验购买!\";}","1535767140");
INSERT INTO fy_web_log_001 VALUES("321","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767140");
INSERT INTO fy_web_log_001 VALUES("322","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/8.html","admin","Notice","edit","GET","a:1:{s:2:\"id\";s:1:\"8\";}","1535767165");
INSERT INTO fy_web_log_001 VALUES("323","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/8.html","admin","Notice","edit","POST","a:6:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:46:\"欢迎各位同事内部体验,反馈建议。\";s:6:\"detail\";s:54:\"泛亚商城商品即将上线完毕,敬请期待!\";s:6:\"status\";s:1:\"1\";s:7:\"orderby\";s:1:\"7\";s:4:\"desc\";s:120:\"各位会员,泛亚商城各类商品即将上线完毕,商品类型多种多样,欢迎各位会员体验购买!\";}","1535767186");
INSERT INTO fy_web_log_001 VALUES("324","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767186");
INSERT INTO fy_web_log_001 VALUES("325","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/8.html","admin","Notice","edit","GET","a:1:{s:2:\"id\";s:1:\"8\";}","1535767191");
INSERT INTO fy_web_log_001 VALUES("326","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/8.html","admin","Notice","edit","POST","a:6:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:43:\"欢迎各位同事内部体验,反馈建议\";s:6:\"detail\";s:54:\"泛亚商城商品即将上线完毕,敬请期待!\";s:6:\"status\";s:1:\"1\";s:7:\"orderby\";s:1:\"7\";s:4:\"desc\";s:120:\"各位会员,泛亚商城各类商品即将上线完毕,商品类型多种多样,欢迎各位会员体验购买!\";}","1535767197");
INSERT INTO fy_web_log_001 VALUES("327","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767197");
INSERT INTO fy_web_log_001 VALUES("328","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767218");
INSERT INTO fy_web_log_001 VALUES("329","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767219");
INSERT INTO fy_web_log_001 VALUES("330","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767220");
INSERT INTO fy_web_log_001 VALUES("331","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767220");
INSERT INTO fy_web_log_001 VALUES("332","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767220");
INSERT INTO fy_web_log_001 VALUES("333","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767220");
INSERT INTO fy_web_log_001 VALUES("334","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html","admin","WebLog","index","GET","a:0:{}","1535767221");
INSERT INTO fy_web_log_001 VALUES("335","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767222");
INSERT INTO fy_web_log_001 VALUES("336","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767231");
INSERT INTO fy_web_log_001 VALUES("337","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767231");
INSERT INTO fy_web_log_001 VALUES("338","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_role/index.html","admin","AdminRole","index","GET","a:0:{}","1535767232");
INSERT INTO fy_web_log_001 VALUES("339","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index.html","admin","AdminNode","index","GET","a:0:{}","1535767233");
INSERT INTO fy_web_log_001 VALUES("340","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:2:{s:4:\"type\";s:5:\"group\";s:9:\"module_id\";s:1:\"1\";}","1535767233");
INSERT INTO fy_web_log_001 VALUES("341","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:3:{s:4:\"type\";s:4:\"node\";s:9:\"module_id\";s:1:\"1\";s:8:\"group_id\";s:1:\"1\";}","1535767233");
INSERT INTO fy_web_log_001 VALUES("342","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_group/index.html","admin","AdminGroup","index","GET","a:0:{}","1535767233");
INSERT INTO fy_web_log_001 VALUES("343","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_user/index.html","admin","AdminUser","index","GET","a:0:{}","1535767234");
INSERT INTO fy_web_log_001 VALUES("344","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html","admin","WebLog","index","GET","a:0:{}","1535767234");
INSERT INTO fy_web_log_001 VALUES("345","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/login_log/index.html","admin","LoginLog","index","GET","a:0:{}","1535767235");
INSERT INTO fy_web_log_001 VALUES("346","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/silde_show/index.html","admin","SildeShow","index","GET","a:0:{}","1535767235");
INSERT INTO fy_web_log_001 VALUES("347","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/modular/index.html","admin","Modular","index","GET","a:0:{}","1535767235");
INSERT INTO fy_web_log_001 VALUES("348","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_class/index.html","admin","GoodsClass","index","GET","a:0:{}","1535767236");
INSERT INTO fy_web_log_001 VALUES("349","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/modular/index.html","admin","Modular","index","GET","a:0:{}","1535767237");
INSERT INTO fy_web_log_001 VALUES("350","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535767240");
INSERT INTO fy_web_log_001 VALUES("351","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer/index.html","admin","Customer","index","GET","a:0:{}","1535767241");
INSERT INTO fy_web_log_001 VALUES("352","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535767242");
INSERT INTO fy_web_log_001 VALUES("353","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_grade/index.html","admin","CustomerGrade","index","GET","a:0:{}","1535767244");
INSERT INTO fy_web_log_001 VALUES("354","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/activity/index.html","admin","Activity","index","GET","a:0:{}","1535767246");
INSERT INTO fy_web_log_001 VALUES("355","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535767247");
INSERT INTO fy_web_log_001 VALUES("356","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535767250");
INSERT INTO fy_web_log_001 VALUES("357","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/gift_bag/index.html","admin","GiftBag","index","GET","a:0:{}","1535767250");
INSERT INTO fy_web_log_001 VALUES("358","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/gift_bag/edit/id/3.html","admin","GiftBag","edit","GET","a:1:{s:2:\"id\";s:1:\"3\";}","1535767254");
INSERT INTO fy_web_log_001 VALUES("359","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_comment/index.html","admin","GoodsComment","index","GET","a:0:{}","1535767276");
INSERT INTO fy_web_log_001 VALUES("360","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535767277");
INSERT INTO fy_web_log_001 VALUES("361","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/use_lottery/index.html","admin","UseLottery","index","GET","a:0:{}","1535767278");
INSERT INTO fy_web_log_001 VALUES("362","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/gift_bag/index.html","admin","GiftBag","index","GET","a:0:{}","1535767279");
INSERT INTO fy_web_log_001 VALUES("363","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535767281");
INSERT INTO fy_web_log_001 VALUES("364","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/1.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"1\";}","1535767285");
INSERT INTO fy_web_log_001 VALUES("365","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/2.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"2\";}","1535767296");
INSERT INTO fy_web_log_001 VALUES("366","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/3.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"3\";}","1535767306");
INSERT INTO fy_web_log_001 VALUES("367","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"4\";}","1535767314");
INSERT INTO fy_web_log_001 VALUES("368","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"4\";}","1535767339");
INSERT INTO fy_web_log_001 VALUES("369","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"4\";}","1535767397");
INSERT INTO fy_web_log_001 VALUES("370","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535768151");
INSERT INTO fy_web_log_001 VALUES("371","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/edit/id/5.html","admin","Goods","edit","GET","a:1:{s:2:\"id\";s:1:\"5\";}","1535768156");
INSERT INTO fy_web_log_001 VALUES("372","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/getskudata.html","admin","Goods","getskudata","POST","a:1:{s:2:\"id\";s:1:\"5\";}","1535768156");
INSERT INTO fy_web_log_001 VALUES("373","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/edit/id/5.html","admin","Goods","edit","POST","a:34:{s:2:\"id\";s:1:\"5\";s:7:\"user_id\";s:2:\"21\";s:4:\"name\";s:12:\"苹果手机\";s:8:\"subtitle\";s:0:\"\";s:7:\"yieldly\";s:0:\"\";s:10:\"main_image\";s:58:\"/pic/uploads/20180831/35cb42fbfe509141499aab67a3a0a680.jpg\";s:14:\"goods_class_id\";s:1:\"6\";s:14:\"goods_brand_id\";s:2:\"20\";s:9:\"show_area\";s:1:\"1\";s:10:\"start_date\";s:19:\"2018-08-31 11:21:01\";s:8:\"end_date\";s:19:\"2018-09-04 11:21:05\";s:10:\"store_type\";s:1:\"1\";s:9:\"free_type\";s:1:\"1\";s:7:\"postage\";s:0:\"\";s:12:\"return_score\";s:1:\"0\";s:3:\"pic\";a:2:{i:0;s:58:\"/pic/uploads/20180831/b7e860b80b4714b627f9d72e6f71d72b.jpg\";i:1;s:58:\"/pic/uploads/20180831/f6f882914e96e541e77f0d3af9e7eb8b.jpg\";}s:7:\"orderby\";s:2:\"10\";s:12:\"goods_weight\";s:7:\"300.000\";s:7:\"is_real\";s:1:\"1\";s:15:\"is_return_goods\";s:1:\"1\";s:10:\"is_comment\";s:1:\"1\";s:14:\"service_mobile\";s:0:\"\";s:7:\"service\";a:1:{i:0;s:12:\"没有服务\";}s:10:\"after_sale\";s:21:\"<p>ok</p>\";s:15:\"settlement_type\";s:1:\"1\";s:11:\"basic_price\";s:4:\"0.01\";s:5:\"score\";s:0:\"\";s:14:\"original_price\";s:7:\"5200.00\";s:7:\"buy_num\";s:3:\"500\";s:9:\"shop_code\";s:0:\"\";s:8:\"bar_code\";s:0:\"\";s:6:\"detail\";s:25:\"<p>撒旦</p>\";s:11:\"skuZuheData\";s:208:\"[{"id":"16","SkuId":"1535685741914_规格:1535685749337_通用","pointPrice":"10","price":0.01,"num":"10","code&q\";s:15:\"propty_name_val\";s:57:\"[["1535685741914_规格:1535685749337_通用"]]\";}","1535768196");
INSERT INTO fy_web_log_001 VALUES("374","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/edit/id/5.html","admin","Goods","edit","GET","a:1:{s:2:\"id\";s:1:\"5\";}","1535768343");
INSERT INTO fy_web_log_001 VALUES("375","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/getskudata.html","admin","Goods","getskudata","POST","a:1:{s:2:\"id\";s:1:\"5\";}","1535768343");
INSERT INTO fy_web_log_001 VALUES("376","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/edit/id/5.html","admin","Goods","edit","POST","a:34:{s:2:\"id\";s:1:\"5\";s:7:\"user_id\";s:2:\"21\";s:4:\"name\";s:12:\"苹果手机\";s:8:\"subtitle\";s:12:\"苹果手机\";s:7:\"yieldly\";s:6:\"上海\";s:10:\"main_image\";s:58:\"/pic/uploads/20180831/35cb42fbfe509141499aab67a3a0a680.jpg\";s:14:\"goods_class_id\";s:1:\"6\";s:14:\"goods_brand_id\";s:2:\"20\";s:9:\"show_area\";s:1:\"1\";s:10:\"start_date\";s:19:\"2018-08-31 11:21:01\";s:8:\"end_date\";s:19:\"2018-09-04 11:21:05\";s:10:\"store_type\";s:1:\"1\";s:9:\"free_type\";s:1:\"1\";s:7:\"postage\";s:4:\"0.00\";s:12:\"return_score\";s:1:\"0\";s:3:\"pic\";a:2:{i:0;s:58:\"/pic/uploads/20180831/b7e860b80b4714b627f9d72e6f71d72b.jpg\";i:1;s:58:\"/pic/uploads/20180831/f6f882914e96e541e77f0d3af9e7eb8b.jpg\";}s:7:\"orderby\";s:2:\"10\";s:12:\"goods_weight\";s:7:\"300.000\";s:7:\"is_real\";s:1:\"1\";s:15:\"is_return_goods\";s:1:\"1\";s:10:\"is_comment\";s:1:\"1\";s:14:\"service_mobile\";s:0:\"\";s:7:\"service\";a:1:{i:0;s:12:\"没有服务\";}s:10:\"after_sale\";s:21:\"<p>ok</p>\";s:15:\"settlement_type\";s:1:\"1\";s:11:\"basic_price\";s:4:\"0.01\";s:5:\"score\";s:1:\"0\";s:14:\"original_price\";s:7:\"5200.00\";s:7:\"buy_num\";s:3:\"500\";s:9:\"shop_code\";s:0:\"\";s:8:\"bar_code\";s:0:\"\";s:6:\"detail\";s:31:\"<p>苹果手机</p>\";s:11:\"skuZuheData\";s:208:\"[{"id":"16","SkuId":"1535685741914_规格:1535685749337_通用","pointPrice":"10","price":0.01,"num":"10","code&q\";s:15:\"propty_name_val\";s:57:\"[["1535685741914_规格:1535685749337_通用"]]\";}","1535768413");
INSERT INTO fy_web_log_001 VALUES("377","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/edit/id/5.html","admin","Goods","edit","GET","a:1:{s:2:\"id\";s:1:\"5\";}","1535768418");
INSERT INTO fy_web_log_001 VALUES("378","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/getskudata.html","admin","Goods","getskudata","POST","a:1:{s:2:\"id\";s:1:\"5\";}","1535768418");
INSERT INTO fy_web_log_001 VALUES("379","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535768458");
INSERT INTO fy_web_log_001 VALUES("380","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_task/index.html","admin","CustomerTask","index","GET","a:0:{}","1535768458");
INSERT INTO fy_web_log_001 VALUES("381","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_grade_desc/index.html","admin","CustomerGradeDesc","index","GET","a:0:{}","1535768459");
INSERT INTO fy_web_log_001 VALUES("382","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery_log/index.html","admin","LotteryLog","index","GET","a:0:{}","1535768460");
INSERT INTO fy_web_log_001 VALUES("383","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/activity/index.html","admin","Activity","index","GET","a:0:{}","1535768461");
INSERT INTO fy_web_log_001 VALUES("384","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/transaction/index.html","admin","Transaction","index","GET","a:0:{}","1535768461");
INSERT INTO fy_web_log_001 VALUES("385","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535768462");
INSERT INTO fy_web_log_001 VALUES("386","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/message/index.html","admin","Message","index","GET","a:0:{}","1535768467");
INSERT INTO fy_web_log_001 VALUES("387","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_comment/index.html","admin","GoodsComment","index","GET","a:0:{}","1535768467");
INSERT INTO fy_web_log_001 VALUES("388","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535768468");
INSERT INTO fy_web_log_001 VALUES("389","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/use_lottery/index.html","admin","UseLottery","index","GET","a:0:{}","1535768470");
INSERT INTO fy_web_log_001 VALUES("390","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/gift_bag/index.html","admin","GiftBag","index","GET","a:0:{}","1535768471");
INSERT INTO fy_web_log_001 VALUES("391","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535768474");
INSERT INTO fy_web_log_001 VALUES("392","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery_log/index.html","admin","LotteryLog","index","GET","a:0:{}","1535768475");
INSERT INTO fy_web_log_001 VALUES("393","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_task/index.html","admin","CustomerTask","index","GET","a:0:{}","1535768475");
INSERT INTO fy_web_log_001 VALUES("394","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer/index.html","admin","Customer","index","GET","a:0:{}","1535768476");
INSERT INTO fy_web_log_001 VALUES("395","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535768477");
INSERT INTO fy_web_log_001 VALUES("396","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535768486");
INSERT INTO fy_web_log_001 VALUES("397","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_class/index.html","admin","GoodsClass","index","GET","a:0:{}","1535768489");
INSERT INTO fy_web_log_001 VALUES("398","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/modular/index.html","admin","Modular","index","GET","a:0:{}","1535768490");
INSERT INTO fy_web_log_001 VALUES("399","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/silde_show/index.html","admin","SildeShow","index","GET","a:0:{}","1535768490");
INSERT INTO fy_web_log_001 VALUES("400","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535768491");
INSERT INTO fy_web_log_001 VALUES("401","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/login_log/index.html","admin","LoginLog","index","GET","a:0:{}","1535768493");
INSERT INTO fy_web_log_001 VALUES("402","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html","admin","WebLog","index","GET","a:0:{}","1535768494");
INSERT INTO fy_web_log_001 VALUES("403","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/node_map/index.html","admin","NodeMap","index","GET","a:0:{}","1535768496");
INSERT INTO fy_web_log_001 VALUES("404","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html","admin","WebLog","index","GET","a:0:{}","1535768497");
INSERT INTO fy_web_log_001 VALUES("405","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/detail/id/390.html","admin","WebLog","detail","GET","a:1:{s:2:\"id\";s:3:\"390\";}","1535768518");
INSERT INTO fy_web_log_001 VALUES("406","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html?p=2","admin","WebLog","index","GET","a:1:{s:1:\"p\";s:1:\"2\";}","1535768532");
INSERT INTO fy_web_log_001 VALUES("407","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html?p=3","admin","WebLog","index","GET","a:1:{s:1:\"p\";s:1:\"3\";}","1535768535");
INSERT INTO fy_web_log_001 VALUES("408","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html?p=2","admin","WebLog","index","GET","a:1:{s:1:\"p\";s:1:\"2\";}","1535768539");
INSERT INTO fy_web_log_001 VALUES("409","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/login_log/index.html","admin","LoginLog","index","GET","a:0:{}","1535768542");
INSERT INTO fy_web_log_001 VALUES("410","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html","admin","WebLog","index","GET","a:0:{}","1535768543");
INSERT INTO fy_web_log_001 VALUES("411","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/node_map/index.html","admin","NodeMap","index","GET","a:0:{}","1535768544");
INSERT INTO fy_web_log_001 VALUES("412","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_user/index.html","admin","AdminUser","index","GET","a:0:{}","1535768552");
INSERT INTO fy_web_log_001 VALUES("413","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_user/index.html","admin","AdminUser","index","GET","a:0:{}","1535768553");
INSERT INTO fy_web_log_001 VALUES("414","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_role/index.html","admin","AdminRole","index","GET","a:0:{}","1535768564");
INSERT INTO fy_web_log_001 VALUES("415","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index.html","admin","AdminNode","index","GET","a:0:{}","1535768565");
INSERT INTO fy_web_log_001 VALUES("416","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:2:{s:4:\"type\";s:5:\"group\";s:9:\"module_id\";s:1:\"1\";}","1535768566");
INSERT INTO fy_web_log_001 VALUES("417","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:3:{s:4:\"type\";s:4:\"node\";s:9:\"module_id\";s:1:\"1\";s:8:\"group_id\";s:1:\"1\";}","1535768566");
INSERT INTO fy_web_log_001 VALUES("418","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_group/index.html","admin","AdminGroup","index","GET","a:0:{}","1535768568");
INSERT INTO fy_web_log_001 VALUES("419","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index.html","admin","AdminNode","index","GET","a:0:{}","1535768569");
INSERT INTO fy_web_log_001 VALUES("420","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:2:{s:4:\"type\";s:5:\"group\";s:9:\"module_id\";s:1:\"1\";}","1535768569");
INSERT INTO fy_web_log_001 VALUES("421","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:3:{s:4:\"type\";s:4:\"node\";s:9:\"module_id\";s:1:\"1\";s:8:\"group_id\";s:1:\"1\";}","1535768569");
INSERT INTO fy_web_log_001 VALUES("422","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_user/index.html","admin","AdminUser","index","GET","a:0:{}","1535768569");
INSERT INTO fy_web_log_001 VALUES("423","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/node_map/index.html","admin","NodeMap","index","GET","a:0:{}","1535768570");
INSERT INTO fy_web_log_001 VALUES("424","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html","admin","WebLog","index","GET","a:0:{}","1535768570");
INSERT INTO fy_web_log_001 VALUES("425","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/login_log/index.html","admin","LoginLog","index","GET","a:0:{}","1535768571");
INSERT INTO fy_web_log_001 VALUES("426","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/silde_show/index.html","admin","SildeShow","index","GET","a:0:{}","1535768571");
INSERT INTO fy_web_log_001 VALUES("427","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_class/index.html","admin","GoodsClass","index","GET","a:0:{}","1535768571");
INSERT INTO fy_web_log_001 VALUES("428","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535768572");
INSERT INTO fy_web_log_001 VALUES("429","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer/index.html","admin","Customer","index","GET","a:0:{}","1535768573");
INSERT INTO fy_web_log_001 VALUES("430","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535768574");
INSERT INTO fy_web_log_001 VALUES("431","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535768574");
INSERT INTO fy_web_log_001 VALUES("432","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_task/index.html","admin","CustomerTask","index","GET","a:0:{}","1535768575");
INSERT INTO fy_web_log_001 VALUES("433","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_grade/index.html","admin","CustomerGrade","index","GET","a:0:{}","1535768576");
INSERT INTO fy_web_log_001 VALUES("434","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_grade_desc/index.html","admin","CustomerGradeDesc","index","GET","a:0:{}","1535768576");
INSERT INTO fy_web_log_001 VALUES("435","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery_log/index.html","admin","LotteryLog","index","GET","a:0:{}","1535768579");
INSERT INTO fy_web_log_001 VALUES("436","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/activity/index.html","admin","Activity","index","GET","a:0:{}","1535768580");
INSERT INTO fy_web_log_001 VALUES("437","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/transaction/index.html","admin","Transaction","index","GET","a:0:{}","1535768581");
INSERT INTO fy_web_log_001 VALUES("438","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535768581");
INSERT INTO fy_web_log_001 VALUES("439","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/message/index.html","admin","Message","index","GET","a:0:{}","1535768583");
INSERT INTO fy_web_log_001 VALUES("440","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_comment/index.html","admin","GoodsComment","index","GET","a:0:{}","1535768584");
INSERT INTO fy_web_log_001 VALUES("441","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535768585");
INSERT INTO fy_web_log_001 VALUES("442","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/use_lottery/index.html","admin","UseLottery","index","GET","a:0:{}","1535768585");
INSERT INTO fy_web_log_001 VALUES("443","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/gift_bag/index.html","admin","GiftBag","index","GET","a:0:{}","1535768586");
INSERT INTO fy_web_log_001 VALUES("444","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535768589");
INSERT INTO fy_web_log_001 VALUES("445","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_group/index.html","admin","AdminGroup","index","GET","a:0:{}","1535768592");
INSERT INTO fy_web_log_001 VALUES("446","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index.html","admin","AdminNode","index","GET","a:0:{}","1535768593");
INSERT INTO fy_web_log_001 VALUES("447","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:2:{s:4:\"type\";s:5:\"group\";s:9:\"module_id\";s:1:\"1\";}","1535768593");
INSERT INTO fy_web_log_001 VALUES("448","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:3:{s:4:\"type\";s:4:\"node\";s:9:\"module_id\";s:1:\"1\";s:8:\"group_id\";s:1:\"1\";}","1535768593");
INSERT INTO fy_web_log_001 VALUES("449","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_user/index.html","admin","AdminUser","index","GET","a:0:{}","1535768593");
INSERT INTO fy_web_log_001 VALUES("450","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/node_map/index.html","admin","NodeMap","index","GET","a:0:{}","1535768593");
INSERT INTO fy_web_log_001 VALUES("451","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/login_log/index.html","admin","LoginLog","index","GET","a:0:{}","1535768594");
INSERT INTO fy_web_log_001 VALUES("452","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/silde_show/index.html","admin","SildeShow","index","GET","a:0:{}","1535768594");
INSERT INTO fy_web_log_001 VALUES("453","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/modular/index.html","admin","Modular","index","GET","a:0:{}","1535768595");
INSERT INTO fy_web_log_001 VALUES("454","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535768595");
INSERT INTO fy_web_log_001 VALUES("455","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535768595");
INSERT INTO fy_web_log_001 VALUES("456","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_role/index.html","admin","AdminRole","index","GET","a:0:{}","1535768596");
INSERT INTO fy_web_log_001 VALUES("457","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_group/index.html","admin","AdminGroup","index","GET","a:0:{}","1535768596");
INSERT INTO fy_web_log_001 VALUES("458","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535768604");
INSERT INTO fy_web_log_001 VALUES("459","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535768604");
INSERT INTO fy_web_log_001 VALUES("460","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535768605");
INSERT INTO fy_web_log_001 VALUES("461","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535768605");
INSERT INTO fy_web_log_001 VALUES("462","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535768606");
INSERT INTO fy_web_log_001 VALUES("463","1","172.16.31.109","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535768606");
INSERT INTO fy_web_log_001 VALUES("464","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535768607");
INSERT INTO fy_web_log_001 VALUES("465","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535768607");
INSERT INTO fy_web_log_001 VALUES("466","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_user/index.html","admin","AdminUser","index","GET","a:0:{}","1535768631");
INSERT INTO fy_web_log_001 VALUES("467","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/login_log/index.html","admin","LoginLog","index","GET","a:0:{}","1535768631");
INSERT INTO fy_web_log_001 VALUES("468","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/modular/index.html","admin","Modular","index","GET","a:0:{}","1535768631");
INSERT INTO fy_web_log_001 VALUES("469","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535768632");
INSERT INTO fy_web_log_001 VALUES("470","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535768632");
INSERT INTO fy_web_log_001 VALUES("471","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_grade_desc/index.html","admin","CustomerGradeDesc","index","GET","a:0:{}","1535768632");
INSERT INTO fy_web_log_001 VALUES("472","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/transaction/index.html","admin","Transaction","index","GET","a:0:{}","1535768633");
INSERT INTO fy_web_log_001 VALUES("473","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/message/index.html","admin","Message","index","GET","a:0:{}","1535768634");
INSERT INTO fy_web_log_001 VALUES("474","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_comment/index.html","admin","GoodsComment","index","GET","a:0:{}","1535768634");
INSERT INTO fy_web_log_001 VALUES("475","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/use_lottery/index.html","admin","UseLottery","index","GET","a:0:{}","1535768635");
INSERT INTO fy_web_log_001 VALUES("476","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/gift_bag/index.html","admin","GiftBag","index","GET","a:0:{}","1535768635");
INSERT INTO fy_web_log_001 VALUES("477","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_class/index.html","admin","GoodsClass","index","GET","a:0:{}","1535768636");
INSERT INTO fy_web_log_001 VALUES("478","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/login_log/index.html","admin","LoginLog","index","GET","a:0:{}","1535768637");
INSERT INTO fy_web_log_001 VALUES("479","0","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin","admin","Index","index","GET","a:0:{}","1535772160");
INSERT INTO fy_web_log_001 VALUES("480","0","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/pub/login.html","admin","Pub","login","GET","a:0:{}","1535772160");
INSERT INTO fy_web_log_001 VALUES("481","0","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/pub/checklogin.html","admin","Pub","checklogin","POST","a:3:{s:7:\"account\";s:5:\"admin\";s:8:\"password\";s:6:\"123456\";s:7:\"captcha\";s:4:\"qeyc\";}","1535772170");
INSERT INTO fy_web_log_001 VALUES("482","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535772170");
INSERT INTO fy_web_log_001 VALUES("483","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535772171");
INSERT INTO fy_web_log_001 VALUES("484","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/use_lottery/index.html","admin","UseLottery","index","GET","a:0:{}","1535772185");
INSERT INTO fy_web_log_001 VALUES("485","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535772187");
INSERT INTO fy_web_log_001 VALUES("486","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/add.html","admin","CustomerRight","add","GET","a:0:{}","1535772194");
INSERT INTO fy_web_log_001 VALUES("487","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/upload/index/id/upload.html","admin","Upload","index","GET","a:1:{s:2:\"id\";s:6:\"upload\";}","1535772623");
INSERT INTO fy_web_log_001 VALUES("488","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/upload/listimage.html","admin","Upload","listimage","POST","a:2:{s:1:\"p\";s:1:\"1\";s:5:\"count\";s:1:\"1\";}","1535772625");
INSERT INTO fy_web_log_001 VALUES("489","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/upload/upload.html","admin","Upload","upload","POST","a:0:{}","1535772712");
INSERT INTO fy_web_log_001 VALUES("490","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/add.html","admin","CustomerRight","add","GET","a:0:{}","1535772737");
INSERT INTO fy_web_log_001 VALUES("491","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/add.html","admin","CustomerRight","add","POST","a:5:{s:2:\"id\";s:0:\"\";s:4:\"name\";s:3:\"fff\";s:3:\"pic\";s:58:\"/tmp/uploads/20180901/216be9b0a3218cc416d95c39e00e52ed.png\";s:4:\"desc\";s:4:\"ffff\";s:11:\"instruction\";s:25:\"<p>ffffff</p>\";}","1535772748");
INSERT INTO fy_web_log_001 VALUES("492","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535772748");
INSERT INTO fy_web_log_001 VALUES("493","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"4\";}","1535772753");
INSERT INTO fy_web_log_001 VALUES("494","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","POST","a:5:{s:2:\"id\";s:1:\"4\";s:4:\"name\";s:15:\"升级送积分\";s:3:\"pic\";s:58:\"/tmp/uploads/20180723/1681a77828fe3083f2699165d26908bb.jpg\";s:4:\"desc\";s:15:\"升级送积分\";s:11:\"instruction\";s:34:\"<p>升级送积分</p>\";}","1535772756");
INSERT INTO fy_web_log_001 VALUES("495","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535772756");
INSERT INTO fy_web_log_001 VALUES("496","1","172.16.31.106","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/3.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"3\";}","1535772757");
INSERT INTO fy_web_log_001 VALUES("497","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/3.html","admin","CustomerRight","edit","POST","a:5:{s:2:\"id\";s:1:\"3\";s:4:\"name\";s:18:\"钻石会员专享\";s:3:\"pic\";s:58:\"/tmp/uploads/20180723/6486343a125aabff9602a9e54715d5dc.png\";s:4:\"desc\";s:18:\"钻石会员专享\";s:11:\"instruction\";s:37:\"<p>钻石会员专享</p>\";}","1535772759");
INSERT INTO fy_web_log_001 VALUES("498","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535772760");
INSERT INTO fy_web_log_001 VALUES("499","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/3.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"3\";}","1535772762");
INSERT INTO fy_web_log_001 VALUES("500","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/3.html","admin","CustomerRight","edit","POST","a:5:{s:2:\"id\";s:1:\"3\";s:4:\"name\";s:18:\"钻石会员专享\";s:3:\"pic\";s:58:\"/pic/uploads/20180723/6486343a125aabff9602a9e54715d5dc.png\";s:4:\"desc\";s:18:\"钻石会员专享\";s:11:\"instruction\";s:37:\"<p>钻石会员专享</p>\";}","1535772763");
INSERT INTO fy_web_log_001 VALUES("501","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535772763");
INSERT INTO fy_web_log_001 VALUES("502","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/2.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"2\";}","1535772765");
INSERT INTO fy_web_log_001 VALUES("503","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/2.html","admin","CustomerRight","edit","POST","a:5:{s:2:\"id\";s:1:\"2\";s:4:\"name\";s:12:\"生日礼包\";s:3:\"pic\";s:58:\"/tmp/uploads/20180723/00b284f74955a532c941f0d4d061c7fd.jpg\";s:4:\"desc\";s:18:\"生日会员专享\";s:11:\"instruction\";s:37:\"<p>生日会员专享</p>\";}","1535772767");
INSERT INTO fy_web_log_001 VALUES("504","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535772767");
INSERT INTO fy_web_log_001 VALUES("505","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/1.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"1\";}","1535772768");
INSERT INTO fy_web_log_001 VALUES("506","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/1.html","admin","CustomerRight","edit","POST","a:5:{s:2:\"id\";s:1:\"1\";s:4:\"name\";s:12:\"新人礼包\";s:3:\"pic\";s:58:\"/tmp/uploads/20180723/949ad4c57591a0793b777e74c0afbd33.jpg\";s:4:\"desc\";s:12:\"新人专享\";s:11:\"instruction\";s:82:\"<p>礼包包含一张优惠券、一张抵用券、一张积分券</p>\";}","1535772770");
INSERT INTO fy_web_log_001 VALUES("507","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535772770");
INSERT INTO fy_web_log_001 VALUES("508","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"4\";}","1535772783");
INSERT INTO fy_web_log_001 VALUES("509","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"4\";}","1535772810");
INSERT INTO fy_web_log_001 VALUES("510","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/upload/index/id/upload.html","admin","Upload","index","GET","a:1:{s:2:\"id\";s:6:\"upload\";}","1535772811");
INSERT INTO fy_web_log_001 VALUES("511","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/upload/listimage.html","admin","Upload","listimage","POST","a:2:{s:1:\"p\";s:1:\"1\";s:5:\"count\";s:1:\"1\";}","1535772813");
INSERT INTO fy_web_log_001 VALUES("512","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","POST","a:5:{s:2:\"id\";s:1:\"4\";s:4:\"name\";s:15:\"升级送积分\";s:3:\"pic\";s:58:\"/tmp/uploads/20180822/7a2570970d3d8229dcf3deca8903d946.png\";s:4:\"desc\";s:15:\"升级送积分\";s:11:\"instruction\";s:34:\"<p>升级送积分</p>\";}","1535772818");
INSERT INTO fy_web_log_001 VALUES("513","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535772818");
INSERT INTO fy_web_log_001 VALUES("514","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"4\";}","1535772821");
INSERT INTO fy_web_log_001 VALUES("515","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535772904");
INSERT INTO fy_web_log_001 VALUES("516","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/message/index.html","admin","Message","index","GET","a:0:{}","1535772905");
INSERT INTO fy_web_log_001 VALUES("517","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/goods_comment/index.html","admin","GoodsComment","index","GET","a:0:{}","1535772907");
INSERT INTO fy_web_log_001 VALUES("518","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535772908");
INSERT INTO fy_web_log_001 VALUES("519","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/use_lottery/index.html","admin","UseLottery","index","GET","a:0:{}","1535772909");
INSERT INTO fy_web_log_001 VALUES("520","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/gift_bag/index.html","admin","GiftBag","index","GET","a:0:{}","1535772910");
INSERT INTO fy_web_log_001 VALUES("521","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_grade_desc/index.html","admin","CustomerGradeDesc","index","GET","a:0:{}","1535772912");
INSERT INTO fy_web_log_001 VALUES("522","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/lottery_log/index.html","admin","LotteryLog","index","GET","a:0:{}","1535772915");
INSERT INTO fy_web_log_001 VALUES("523","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535772941");
INSERT INTO fy_web_log_001 VALUES("524","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_task/index.html","admin","CustomerTask","index","GET","a:0:{}","1535772943");
INSERT INTO fy_web_log_001 VALUES("525","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer/index.html","admin","Customer","index","GET","a:0:{}","1535772943");
INSERT INTO fy_web_log_001 VALUES("526","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535772951");
INSERT INTO fy_web_log_001 VALUES("527","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/edit/id/17.html","admin","Brand","edit","GET","a:1:{s:2:\"id\";s:2:\"17\";}","1535772954");
INSERT INTO fy_web_log_001 VALUES("528","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535772962");
INSERT INTO fy_web_log_001 VALUES("529","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/goods/edit/id/1.html","admin","Goods","edit","GET","a:1:{s:2:\"id\";s:1:\"1\";}","1535772965");
INSERT INTO fy_web_log_001 VALUES("530","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/goods/getskudata.html","admin","Goods","getskudata","POST","a:1:{s:2:\"id\";s:1:\"1\";}","1535772965");
INSERT INTO fy_web_log_001 VALUES("531","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/goods/edit/id/1.html","admin","Goods","edit","GET","a:1:{s:2:\"id\";s:1:\"1\";}","1535773119");
INSERT INTO fy_web_log_001 VALUES("532","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/goods/getskudata.html","admin","Goods","getskudata","POST","a:1:{s:2:\"id\";s:1:\"1\";}","1535773120");
INSERT INTO fy_web_log_001 VALUES("533","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535773123");
INSERT INTO fy_web_log_001 VALUES("534","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/edit/id/17.html","admin","Brand","edit","GET","a:1:{s:2:\"id\";s:2:\"17\";}","1535773125");
INSERT INTO fy_web_log_001 VALUES("535","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535773130");
INSERT INTO fy_web_log_001 VALUES("536","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535773130");
INSERT INTO fy_web_log_001 VALUES("537","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535773138");
INSERT INTO fy_web_log_001 VALUES("538","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535773141");
INSERT INTO fy_web_log_001 VALUES("539","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/edit/id/17.html","admin","Brand","edit","GET","a:1:{s:2:\"id\";s:2:\"17\";}","1535773143");
INSERT INTO fy_web_log_001 VALUES("540","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535773180");
INSERT INTO fy_web_log_001 VALUES("541","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535773180");
INSERT INTO fy_web_log_001 VALUES("542","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535773182");
INSERT INTO fy_web_log_001 VALUES("543","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535773182");
INSERT INTO fy_web_log_001 VALUES("544","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535773185");
INSERT INTO fy_web_log_001 VALUES("545","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/edit/id/17.html","admin","Brand","edit","GET","a:1:{s:2:\"id\";s:2:\"17\";}","1535773187");
INSERT INTO fy_web_log_001 VALUES("546","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535773368");
INSERT INTO fy_web_log_001 VALUES("547","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/edit/id/17.html","admin","Brand","edit","GET","a:1:{s:2:\"id\";s:2:\"17\";}","1535773370");
INSERT INTO fy_web_log_001 VALUES("548","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535773380");
INSERT INTO fy_web_log_001 VALUES("549","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535773380");
INSERT INTO fy_web_log_001 VALUES("550","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535773383");
INSERT INTO fy_web_log_001 VALUES("551","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/edit/id/17.html","admin","Brand","edit","GET","a:1:{s:2:\"id\";s:2:\"17\";}","1535773385");
INSERT INTO fy_web_log_001 VALUES("552","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535773471");
INSERT INTO fy_web_log_001 VALUES("553","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535773472");
INSERT INTO fy_web_log_001 VALUES("554","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535773474");
INSERT INTO fy_web_log_001 VALUES("555","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535773477");
INSERT INTO fy_web_log_001 VALUES("556","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/edit/id/17.html","admin","Brand","edit","GET","a:1:{s:2:\"id\";s:2:\"17\";}","1535773478");
INSERT INTO fy_web_log_001 VALUES("557","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/edit/id/17.html","admin","Brand","edit","GET","a:1:{s:2:\"id\";s:2:\"17\";}","1535773565");
INSERT INTO fy_web_log_001 VALUES("558","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535773574");
INSERT INTO fy_web_log_001 VALUES("559","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/5.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"5\";}","1535773659");
INSERT INTO fy_web_log_001 VALUES("560","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/3.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"3\";}","1535773667");
INSERT INTO fy_web_log_001 VALUES("561","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"4\";}","1535773675");
INSERT INTO fy_web_log_001 VALUES("562","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/upload/index/id/upload.html","admin","Upload","index","GET","a:1:{s:2:\"id\";s:6:\"upload\";}","1535773676");
INSERT INTO fy_web_log_001 VALUES("563","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/upload/upload.html","admin","Upload","upload","POST","a:0:{}","1535773681");
INSERT INTO fy_web_log_001 VALUES("564","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","POST","a:5:{s:2:\"id\";s:1:\"4\";s:4:\"name\";s:15:\"升级送积分\";s:3:\"pic\";s:58:\"/tmp/uploads/20180901/ad61a9b50e7d2b918618a29c9d7db9c8.png\";s:4:\"desc\";s:15:\"升级送积分\";s:11:\"instruction\";s:34:\"<p>升级送积分</p>\";}","1535773687");
INSERT INTO fy_web_log_001 VALUES("565","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535773687");
DROP TABLE fy_web_log_all;
CREATE TABLE `fy_web_log_all` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '日志主键',
`uid` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '用户id',
`ip` char(15) NOT NULL DEFAULT '' COMMENT '访客ip',
`location` varchar(255) NOT NULL DEFAULT '' COMMENT '访客地址',
`os` varchar(255) NOT NULL DEFAULT '' COMMENT '操作系统',
`browser` varchar(255) NOT NULL DEFAULT '' COMMENT '浏览器',
`url` varchar(255) NOT NULL DEFAULT '' COMMENT 'url',
`module` varchar(255) NOT NULL DEFAULT '' COMMENT '模块',
`controller` varchar(255) NOT NULL DEFAULT '' COMMENT '控制器',
`action` varchar(255) NOT NULL DEFAULT '' COMMENT '方法',
`method` char(6) NOT NULL DEFAULT '' COMMENT '请求方式',
`data` text COMMENT '请求的param数据,serialize后的',
`create_at` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '操作时间',
PRIMARY KEY (`id`),
KEY `uid` (`uid`) USING BTREE,
KEY `ip` (`ip`) USING BTREE,
KEY `create_at` (`create_at`) USING BTREE
) ENGINE=MRG_MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC INSERT_METHOD=LAST UNION=(`fy_web_log_001`) COMMENT='网站日志';
INSERT INTO fy_web_log_all VALUES("1","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535705332");
INSERT INTO fy_web_log_all VALUES("2","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535705332");
INSERT INTO fy_web_log_all VALUES("3","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535705334");
INSERT INTO fy_web_log_all VALUES("4","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535705334");
INSERT INTO fy_web_log_all VALUES("5","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535705347");
INSERT INTO fy_web_log_all VALUES("6","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535705360");
INSERT INTO fy_web_log_all VALUES("7","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535705366");
INSERT INTO fy_web_log_all VALUES("8","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/edit/type/show/id/5.html","admin","Goods","edit","GET","a:2:{s:4:\"type\";s:4:\"show\";s:2:\"id\";s:1:\"5\";}","1535705368");
INSERT INTO fy_web_log_all VALUES("9","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/getskudata.html","admin","Goods","getskudata","POST","a:1:{s:2:\"id\";s:1:\"5\";}","1535705368");
INSERT INTO fy_web_log_all VALUES("10","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535705389");
INSERT INTO fy_web_log_all VALUES("11","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535705389");
INSERT INTO fy_web_log_all VALUES("12","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706077");
INSERT INTO fy_web_log_all VALUES("13","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706078");
INSERT INTO fy_web_log_all VALUES("14","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535706083");
INSERT INTO fy_web_log_all VALUES("15","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535706088");
INSERT INTO fy_web_log_all VALUES("16","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/orderdetail/order_id/1441217402201808311656478916/id/1.html","admin","Order","orderdetail","GET","a:2:{s:8:\"order_id\";s:28:\"1441217402201808311656478916\";s:2:\"id\";s:1:\"1\";}","1535706093");
INSERT INTO fy_web_log_all VALUES("17","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/addpost.html","admin","Order","addpost","POST","a:3:{s:2:\"id\";s:1:\"1\";s:14:\"logistics_name\";s:12:\"顺丰快递\";s:16:\"logistics_number\";s:0:\"\";}","1535706095");
INSERT INTO fy_web_log_all VALUES("18","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/orderdetail/order_id/1441217402201808311656478916/id/1.html","admin","Order","orderdetail","GET","a:2:{s:8:\"order_id\";s:28:\"1441217402201808311656478916\";s:2:\"id\";s:1:\"1\";}","1535706097");
INSERT INTO fy_web_log_all VALUES("19","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/addpost.html","admin","Order","addpost","POST","a:3:{s:2:\"id\";s:1:\"1\";s:14:\"logistics_name\";s:12:\"顺丰快递\";s:16:\"logistics_number\";s:3:\"123\";}","1535706099");
INSERT INTO fy_web_log_all VALUES("20","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/orderdetail/order_id/1441217402201808311656478916/id/1.html","admin","Order","orderdetail","GET","a:2:{s:8:\"order_id\";s:28:\"1441217402201808311656478916\";s:2:\"id\";s:1:\"1\";}","1535706101");
INSERT INTO fy_web_log_all VALUES("21","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535706112");
INSERT INTO fy_web_log_all VALUES("22","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706114");
INSERT INTO fy_web_log_all VALUES("23","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706114");
INSERT INTO fy_web_log_all VALUES("24","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/transaction/index.html","admin","Transaction","index","GET","a:0:{}","1535706118");
INSERT INTO fy_web_log_all VALUES("25","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706123");
INSERT INTO fy_web_log_all VALUES("26","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706123");
INSERT INTO fy_web_log_all VALUES("27","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706127");
INSERT INTO fy_web_log_all VALUES("28","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706128");
INSERT INTO fy_web_log_all VALUES("29","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535706158");
INSERT INTO fy_web_log_all VALUES("30","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535706214");
INSERT INTO fy_web_log_all VALUES("31","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535706214");
INSERT INTO fy_web_log_all VALUES("32","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535706217");
INSERT INTO fy_web_log_all VALUES("33","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706221");
INSERT INTO fy_web_log_all VALUES("34","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706222");
INSERT INTO fy_web_log_all VALUES("35","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706232");
INSERT INTO fy_web_log_all VALUES("36","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706232");
INSERT INTO fy_web_log_all VALUES("37","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/transaction/index.html","admin","Transaction","index","GET","a:0:{}","1535706239");
INSERT INTO fy_web_log_all VALUES("38","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535706242");
INSERT INTO fy_web_log_all VALUES("39","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706253");
INSERT INTO fy_web_log_all VALUES("40","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706253");
INSERT INTO fy_web_log_all VALUES("41","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/pub/logout.html","admin","Pub","logout","GET","a:0:{}","1535706255");
INSERT INTO fy_web_log_all VALUES("42","0","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/pub/login.html","admin","Pub","login","GET","a:0:{}","1535706258");
INSERT INTO fy_web_log_all VALUES("43","0","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/pub/checklogin.html","admin","Pub","checklogin","POST","a:3:{s:7:\"account\";s:3:\"jyf\";s:8:\"password\";s:6:\"<PASSWORD>\";s:7:\"captcha\";s:4:\"8iw4\";}","1535706278");
INSERT INTO fy_web_log_all VALUES("44","0","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/pub/checklogin.html","admin","Pub","checklogin","POST","a:3:{s:7:\"account\";s:3:\"jyf\";s:8:\"password\";s:6:\"<PASSWORD>\";s:7:\"captcha\";s:4:\"t38t\";}","1535706284");
INSERT INTO fy_web_log_all VALUES("45","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535706285");
INSERT INTO fy_web_log_all VALUES("46","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706285");
INSERT INTO fy_web_log_all VALUES("47","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706295");
INSERT INTO fy_web_log_all VALUES("48","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706295");
INSERT INTO fy_web_log_all VALUES("49","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706296");
INSERT INTO fy_web_log_all VALUES("50","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706296");
INSERT INTO fy_web_log_all VALUES("51","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706297");
INSERT INTO fy_web_log_all VALUES("52","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706297");
INSERT INTO fy_web_log_all VALUES("53","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706302");
INSERT INTO fy_web_log_all VALUES("54","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706302");
INSERT INTO fy_web_log_all VALUES("55","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706304");
INSERT INTO fy_web_log_all VALUES("56","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706305");
INSERT INTO fy_web_log_all VALUES("57","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706309");
INSERT INTO fy_web_log_all VALUES("58","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706309");
INSERT INTO fy_web_log_all VALUES("59","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706312");
INSERT INTO fy_web_log_all VALUES("60","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706312");
INSERT INTO fy_web_log_all VALUES("61","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706313");
INSERT INTO fy_web_log_all VALUES("62","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706313");
INSERT INTO fy_web_log_all VALUES("63","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706314");
INSERT INTO fy_web_log_all VALUES("64","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706315");
INSERT INTO fy_web_log_all VALUES("65","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706315");
INSERT INTO fy_web_log_all VALUES("66","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706316");
INSERT INTO fy_web_log_all VALUES("67","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706323");
INSERT INTO fy_web_log_all VALUES("68","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706323");
INSERT INTO fy_web_log_all VALUES("69","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706324");
INSERT INTO fy_web_log_all VALUES("70","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706324");
INSERT INTO fy_web_log_all VALUES("71","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706325");
INSERT INTO fy_web_log_all VALUES("72","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706326");
INSERT INTO fy_web_log_all VALUES("73","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706332");
INSERT INTO fy_web_log_all VALUES("74","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706332");
INSERT INTO fy_web_log_all VALUES("75","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706333");
INSERT INTO fy_web_log_all VALUES("76","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706333");
INSERT INTO fy_web_log_all VALUES("77","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706334");
INSERT INTO fy_web_log_all VALUES("78","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706334");
INSERT INTO fy_web_log_all VALUES("79","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706335");
INSERT INTO fy_web_log_all VALUES("80","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706336");
INSERT INTO fy_web_log_all VALUES("81","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706336");
INSERT INTO fy_web_log_all VALUES("82","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706336");
INSERT INTO fy_web_log_all VALUES("83","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706338");
INSERT INTO fy_web_log_all VALUES("84","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706338");
INSERT INTO fy_web_log_all VALUES("85","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706339");
INSERT INTO fy_web_log_all VALUES("86","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706339");
INSERT INTO fy_web_log_all VALUES("87","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706340");
INSERT INTO fy_web_log_all VALUES("88","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706340");
INSERT INTO fy_web_log_all VALUES("89","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706341");
INSERT INTO fy_web_log_all VALUES("90","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706341");
INSERT INTO fy_web_log_all VALUES("91","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706343");
INSERT INTO fy_web_log_all VALUES("92","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706343");
INSERT INTO fy_web_log_all VALUES("93","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706344");
INSERT INTO fy_web_log_all VALUES("94","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706344");
INSERT INTO fy_web_log_all VALUES("95","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706347");
INSERT INTO fy_web_log_all VALUES("96","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706347");
INSERT INTO fy_web_log_all VALUES("97","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706348");
INSERT INTO fy_web_log_all VALUES("98","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706348");
INSERT INTO fy_web_log_all VALUES("99","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706355");
INSERT INTO fy_web_log_all VALUES("100","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706355");
INSERT INTO fy_web_log_all VALUES("101","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706356");
INSERT INTO fy_web_log_all VALUES("102","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706356");
INSERT INTO fy_web_log_all VALUES("103","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706367");
INSERT INTO fy_web_log_all VALUES("104","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706367");
INSERT INTO fy_web_log_all VALUES("105","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706368");
INSERT INTO fy_web_log_all VALUES("106","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706368");
INSERT INTO fy_web_log_all VALUES("107","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706369");
INSERT INTO fy_web_log_all VALUES("108","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706369");
INSERT INTO fy_web_log_all VALUES("109","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706370");
INSERT INTO fy_web_log_all VALUES("110","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706370");
INSERT INTO fy_web_log_all VALUES("111","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706373");
INSERT INTO fy_web_log_all VALUES("112","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706374");
INSERT INTO fy_web_log_all VALUES("113","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706375");
INSERT INTO fy_web_log_all VALUES("114","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706375");
INSERT INTO fy_web_log_all VALUES("115","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706376");
INSERT INTO fy_web_log_all VALUES("116","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706376");
INSERT INTO fy_web_log_all VALUES("117","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706378");
INSERT INTO fy_web_log_all VALUES("118","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706378");
INSERT INTO fy_web_log_all VALUES("119","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706379");
INSERT INTO fy_web_log_all VALUES("120","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706380");
INSERT INTO fy_web_log_all VALUES("121","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706394");
INSERT INTO fy_web_log_all VALUES("122","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706394");
INSERT INTO fy_web_log_all VALUES("123","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706395");
INSERT INTO fy_web_log_all VALUES("124","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706395");
INSERT INTO fy_web_log_all VALUES("125","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706395");
INSERT INTO fy_web_log_all VALUES("126","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706396");
INSERT INTO fy_web_log_all VALUES("127","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706396");
INSERT INTO fy_web_log_all VALUES("128","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706396");
INSERT INTO fy_web_log_all VALUES("129","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706397");
INSERT INTO fy_web_log_all VALUES("130","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706397");
INSERT INTO fy_web_log_all VALUES("131","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706397");
INSERT INTO fy_web_log_all VALUES("132","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706397");
INSERT INTO fy_web_log_all VALUES("133","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706398");
INSERT INTO fy_web_log_all VALUES("134","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706398");
INSERT INTO fy_web_log_all VALUES("135","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706399");
INSERT INTO fy_web_log_all VALUES("136","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706399");
INSERT INTO fy_web_log_all VALUES("137","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706400");
INSERT INTO fy_web_log_all VALUES("138","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706400");
INSERT INTO fy_web_log_all VALUES("139","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706401");
INSERT INTO fy_web_log_all VALUES("140","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706401");
INSERT INTO fy_web_log_all VALUES("141","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706402");
INSERT INTO fy_web_log_all VALUES("142","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706402");
INSERT INTO fy_web_log_all VALUES("143","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706403");
INSERT INTO fy_web_log_all VALUES("144","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706403");
INSERT INTO fy_web_log_all VALUES("145","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706404");
INSERT INTO fy_web_log_all VALUES("146","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706404");
INSERT INTO fy_web_log_all VALUES("147","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706405");
INSERT INTO fy_web_log_all VALUES("148","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706405");
INSERT INTO fy_web_log_all VALUES("149","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706407");
INSERT INTO fy_web_log_all VALUES("150","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706407");
INSERT INTO fy_web_log_all VALUES("151","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706408");
INSERT INTO fy_web_log_all VALUES("152","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706408");
INSERT INTO fy_web_log_all VALUES("153","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706409");
INSERT INTO fy_web_log_all VALUES("154","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706409");
INSERT INTO fy_web_log_all VALUES("155","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706410");
INSERT INTO fy_web_log_all VALUES("156","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706410");
INSERT INTO fy_web_log_all VALUES("157","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706410");
INSERT INTO fy_web_log_all VALUES("158","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706410");
INSERT INTO fy_web_log_all VALUES("159","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706411");
INSERT INTO fy_web_log_all VALUES("160","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706411");
INSERT INTO fy_web_log_all VALUES("161","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706412");
INSERT INTO fy_web_log_all VALUES("162","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706412");
INSERT INTO fy_web_log_all VALUES("163","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706413");
INSERT INTO fy_web_log_all VALUES("164","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706413");
INSERT INTO fy_web_log_all VALUES("165","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706414");
INSERT INTO fy_web_log_all VALUES("166","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706414");
INSERT INTO fy_web_log_all VALUES("167","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706414");
INSERT INTO fy_web_log_all VALUES("168","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706414");
INSERT INTO fy_web_log_all VALUES("169","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706415");
INSERT INTO fy_web_log_all VALUES("170","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706415");
INSERT INTO fy_web_log_all VALUES("171","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706416");
INSERT INTO fy_web_log_all VALUES("172","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706416");
INSERT INTO fy_web_log_all VALUES("173","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706416");
INSERT INTO fy_web_log_all VALUES("174","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706416");
INSERT INTO fy_web_log_all VALUES("175","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706417");
INSERT INTO fy_web_log_all VALUES("176","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706417");
INSERT INTO fy_web_log_all VALUES("177","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706417");
INSERT INTO fy_web_log_all VALUES("178","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706417");
INSERT INTO fy_web_log_all VALUES("179","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706418");
INSERT INTO fy_web_log_all VALUES("180","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706418");
INSERT INTO fy_web_log_all VALUES("181","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706418");
INSERT INTO fy_web_log_all VALUES("182","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706419");
INSERT INTO fy_web_log_all VALUES("183","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706419");
INSERT INTO fy_web_log_all VALUES("184","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706419");
INSERT INTO fy_web_log_all VALUES("185","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706419");
INSERT INTO fy_web_log_all VALUES("186","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706420");
INSERT INTO fy_web_log_all VALUES("187","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706420");
INSERT INTO fy_web_log_all VALUES("188","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706420");
INSERT INTO fy_web_log_all VALUES("189","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706420");
INSERT INTO fy_web_log_all VALUES("190","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706420");
INSERT INTO fy_web_log_all VALUES("191","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706421");
INSERT INTO fy_web_log_all VALUES("192","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706421");
INSERT INTO fy_web_log_all VALUES("193","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706422");
INSERT INTO fy_web_log_all VALUES("194","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706422");
INSERT INTO fy_web_log_all VALUES("195","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706422");
INSERT INTO fy_web_log_all VALUES("196","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706422");
INSERT INTO fy_web_log_all VALUES("197","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706423");
INSERT INTO fy_web_log_all VALUES("198","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706423");
INSERT INTO fy_web_log_all VALUES("199","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706423");
INSERT INTO fy_web_log_all VALUES("200","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706423");
INSERT INTO fy_web_log_all VALUES("201","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706424");
INSERT INTO fy_web_log_all VALUES("202","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706424");
INSERT INTO fy_web_log_all VALUES("203","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706424");
INSERT INTO fy_web_log_all VALUES("204","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706424");
INSERT INTO fy_web_log_all VALUES("205","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706425");
INSERT INTO fy_web_log_all VALUES("206","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706425");
INSERT INTO fy_web_log_all VALUES("207","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706425");
INSERT INTO fy_web_log_all VALUES("208","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706425");
INSERT INTO fy_web_log_all VALUES("209","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706426");
INSERT INTO fy_web_log_all VALUES("210","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706426");
INSERT INTO fy_web_log_all VALUES("211","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706426");
INSERT INTO fy_web_log_all VALUES("212","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706426");
INSERT INTO fy_web_log_all VALUES("213","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706427");
INSERT INTO fy_web_log_all VALUES("214","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706427");
INSERT INTO fy_web_log_all VALUES("215","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706427");
INSERT INTO fy_web_log_all VALUES("216","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706427");
INSERT INTO fy_web_log_all VALUES("217","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706428");
INSERT INTO fy_web_log_all VALUES("218","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706428");
INSERT INTO fy_web_log_all VALUES("219","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706429");
INSERT INTO fy_web_log_all VALUES("220","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706429");
INSERT INTO fy_web_log_all VALUES("221","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706429");
INSERT INTO fy_web_log_all VALUES("222","21","2172.16.17.32","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706429");
INSERT INTO fy_web_log_all VALUES("223","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706430");
INSERT INTO fy_web_log_all VALUES("224","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706430");
INSERT INTO fy_web_log_all VALUES("225","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706432");
INSERT INTO fy_web_log_all VALUES("226","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706432");
INSERT INTO fy_web_log_all VALUES("227","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/message/index.html","admin","Message","index","GET","a:0:{}","1535706435");
INSERT INTO fy_web_log_all VALUES("228","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/use_lottery/index.html","admin","UseLottery","index","GET","a:0:{}","1535706437");
INSERT INTO fy_web_log_all VALUES("229","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535706437");
INSERT INTO fy_web_log_all VALUES("230","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/use_lottery/index.html","admin","UseLottery","index","GET","a:0:{}","1535706438");
INSERT INTO fy_web_log_all VALUES("231","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/use_lottery/index.html","admin","UseLottery","index","GET","a:0:{}","1535706439");
INSERT INTO fy_web_log_all VALUES("232","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/transaction/index.html","admin","Transaction","index","GET","a:0:{}","1535706441");
INSERT INTO fy_web_log_all VALUES("233","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_class/index.html","admin","GoodsClass","index","GET","a:0:{}","1535706442");
INSERT INTO fy_web_log_all VALUES("234","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_comment/index.html","admin","GoodsComment","index","GET","a:0:{}","1535706443");
INSERT INTO fy_web_log_all VALUES("235","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer/index.html","admin","Customer","index","GET","a:0:{}","1535706444");
INSERT INTO fy_web_log_all VALUES("236","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery_log/index.html","admin","LotteryLog","index","GET","a:0:{}","1535706445");
INSERT INTO fy_web_log_all VALUES("237","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer/index.html","admin","Customer","index","GET","a:0:{}","1535706446");
INSERT INTO fy_web_log_all VALUES("238","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin.html","admin","Index","index","GET","a:0:{}","1535706462");
INSERT INTO fy_web_log_all VALUES("239","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706463");
INSERT INTO fy_web_log_all VALUES("240","21","2172.16.17.32","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/transaction/index.html","admin","Transaction","index","GET","a:0:{}","1535706466");
INSERT INTO fy_web_log_all VALUES("241","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535706470");
INSERT INTO fy_web_log_all VALUES("242","1","172.16.58.3","中国 贵州 贵阳 ","Windows NT","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535706530");
INSERT INTO fy_web_log_all VALUES("243","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535706597");
INSERT INTO fy_web_log_all VALUES("244","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/activity/index.html","admin","Activity","index","GET","a:0:{}","1535706600");
INSERT INTO fy_web_log_all VALUES("245","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535706601");
INSERT INTO fy_web_log_all VALUES("246","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/activity/index.html","admin","Activity","index","GET","a:0:{}","1535706604");
INSERT INTO fy_web_log_all VALUES("247","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/silde_show/index.html","admin","SildeShow","index","GET","a:0:{}","1535706605");
INSERT INTO fy_web_log_all VALUES("248","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535706606");
INSERT INTO fy_web_log_all VALUES("249","21","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/pub/logout.html","admin","Pub","logout","GET","a:0:{}","1535706611");
INSERT INTO fy_web_log_all VALUES("250","0","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/pub/login.html","admin","Pub","login","GET","a:0:{}","1535706614");
INSERT INTO fy_web_log_all VALUES("251","0","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/pub/checklogin.html","admin","Pub","checklogin","POST","a:3:{s:7:\"account\";s:5:\"admin\";s:8:\"password\";s:6:\"<PASSWORD>\";s:7:\"captcha\";s:4:\"rhum\";}","1535706620");
INSERT INTO fy_web_log_all VALUES("252","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535706620");
INSERT INTO fy_web_log_all VALUES("253","1","220.197.182.87","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535706620");
INSERT INTO fy_web_log_all VALUES("254","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535706628");
INSERT INTO fy_web_log_all VALUES("255","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html?username=&type=1","admin","WxPayRefundLog","index","GET","a:2:{s:8:\"username\";s:0:\"\";s:4:\"type\";s:1:\"1\";}","1535706631");
INSERT INTO fy_web_log_all VALUES("256","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer/index.html","admin","Customer","index","GET","a:0:{}","1535706692");
INSERT INTO fy_web_log_all VALUES("257","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535706705");
INSERT INTO fy_web_log_all VALUES("258","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_task/index.html","admin","CustomerTask","index","GET","a:0:{}","1535706714");
INSERT INTO fy_web_log_all VALUES("259","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_task/index.html","admin","CustomerTask","index","GET","a:0:{}","1535706716");
INSERT INTO fy_web_log_all VALUES("260","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_grade/index.html","admin","CustomerGrade","index","GET","a:0:{}","1535706716");
INSERT INTO fy_web_log_all VALUES("261","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_grade_desc/index.html","admin","CustomerGradeDesc","index","GET","a:0:{}","1535706719");
INSERT INTO fy_web_log_all VALUES("262","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery_log/index.html","admin","LotteryLog","index","GET","a:0:{}","1535706721");
INSERT INTO fy_web_log_all VALUES("263","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/activity/index.html","admin","Activity","index","GET","a:0:{}","1535706729");
INSERT INTO fy_web_log_all VALUES("264","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/transaction/index.html","admin","Transaction","index","GET","a:0:{}","1535706730");
INSERT INTO fy_web_log_all VALUES("265","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535706732");
INSERT INTO fy_web_log_all VALUES("266","1","172.16.31.107","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/message/index.html","admin","Message","index","GET","a:0:{}","1535706736");
INSERT INTO fy_web_log_all VALUES("267","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/message/index.html","admin","Message","index","GET","a:0:{}","1535706750");
INSERT INTO fy_web_log_all VALUES("268","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_comment/index.html","admin","GoodsComment","index","GET","a:0:{}","1535706751");
INSERT INTO fy_web_log_all VALUES("269","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535706752");
INSERT INTO fy_web_log_all VALUES("270","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535706867");
INSERT INTO fy_web_log_all VALUES("271","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/orderdetail/order_id/1441217402201808311656478916/id/1.html","admin","Order","orderdetail","GET","a:2:{s:8:\"order_id\";s:28:\"1441217402201808311656478916\";s:2:\"id\";s:1:\"1\";}","1535706873");
INSERT INTO fy_web_log_all VALUES("272","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/refund.html","admin","Order","refund","POST","a:3:{s:8:\"order_id\";s:28:\"1441217402201808311656478916\";s:2:\"id\";s:1:\"1\";s:4:\"flag\";s:3:\"yes\";}","1535706880");
INSERT INTO fy_web_log_all VALUES("273","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/orderdetail/order_id/1441217402201808311656478916/id/1.html","admin","Order","orderdetail","GET","a:2:{s:8:\"order_id\";s:28:\"1441217402201808311656478916\";s:2:\"id\";s:1:\"1\";}","1535706883");
INSERT INTO fy_web_log_all VALUES("274","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535706886");
INSERT INTO fy_web_log_all VALUES("275","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/orderdetail/order_id/1441217402201808311656478916/id/1.html","admin","Order","orderdetail","GET","a:2:{s:8:\"order_id\";s:28:\"1441217402201808311656478916\";s:2:\"id\";s:1:\"1\";}","1535706889");
INSERT INTO fy_web_log_all VALUES("276","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535706933");
INSERT INTO fy_web_log_all VALUES("277","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/transaction/index.html","admin","Transaction","index","GET","a:0:{}","1535706933");
INSERT INTO fy_web_log_all VALUES("278","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/activity/index.html","admin","Activity","index","GET","a:0:{}","1535706935");
INSERT INTO fy_web_log_all VALUES("279","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery_log/index.html","admin","LotteryLog","index","GET","a:0:{}","1535706936");
INSERT INTO fy_web_log_all VALUES("280","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/activity/index.html","admin","Activity","index","GET","a:0:{}","1535706938");
INSERT INTO fy_web_log_all VALUES("281","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/silde_show/index.html","admin","SildeShow","index","GET","a:0:{}","1535706940");
INSERT INTO fy_web_log_all VALUES("282","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/modular/index.html","admin","Modular","index","GET","a:0:{}","1535706941");
INSERT INTO fy_web_log_all VALUES("283","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_class/index.html","admin","GoodsClass","index","GET","a:0:{}","1535706942");
INSERT INTO fy_web_log_all VALUES("284","1","172.16.31.10","中国 贵州 贵阳 ","Windows 7","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535707482");
INSERT INTO fy_web_log_all VALUES("285","0","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/pub/login.html","admin","Pub","login","GET","a:0:{}","1535766872");
INSERT INTO fy_web_log_all VALUES("286","0","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/pub/checklogin.html","admin","Pub","checklogin","POST","a:3:{s:7:\"account\";s:5:\"admin\";s:8:\"password\";s:6:\"123456\";s:7:\"captcha\";s:4:\"gs3b\";}","1535766887");
INSERT INTO fy_web_log_all VALUES("287","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535766887");
INSERT INTO fy_web_log_all VALUES("288","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535766887");
INSERT INTO fy_web_log_all VALUES("289","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/message/index.html","admin","Message","index","GET","a:0:{}","1535766918");
INSERT INTO fy_web_log_all VALUES("290","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/node_map/index.html","admin","NodeMap","index","GET","a:0:{}","1535766920");
INSERT INTO fy_web_log_all VALUES("291","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_user/index.html","admin","AdminUser","index","GET","a:0:{}","1535766920");
INSERT INTO fy_web_log_all VALUES("292","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_role/index.html","admin","AdminRole","index","GET","a:0:{}","1535766921");
INSERT INTO fy_web_log_all VALUES("293","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index.html","admin","AdminNode","index","GET","a:0:{}","1535766921");
INSERT INTO fy_web_log_all VALUES("294","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:2:{s:4:\"type\";s:5:\"group\";s:9:\"module_id\";s:1:\"1\";}","1535766921");
INSERT INTO fy_web_log_all VALUES("295","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:3:{s:4:\"type\";s:4:\"node\";s:9:\"module_id\";s:1:\"1\";s:8:\"group_id\";s:1:\"1\";}","1535766921");
INSERT INTO fy_web_log_all VALUES("296","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_group/index.html","admin","AdminGroup","index","GET","a:0:{}","1535766922");
INSERT INTO fy_web_log_all VALUES("297","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/node_map/index.html","admin","NodeMap","index","GET","a:0:{}","1535766923");
INSERT INTO fy_web_log_all VALUES("298","1","220.197.182.89","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/login_log/index.html","admin","LoginLog","index","GET","a:0:{}","1535766923");
INSERT INTO fy_web_log_all VALUES("299","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html","admin","WebLog","index","GET","a:0:{}","1535766924");
INSERT INTO fy_web_log_all VALUES("300","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/login_log/index.html","admin","LoginLog","index","GET","a:0:{}","1535766924");
INSERT INTO fy_web_log_all VALUES("301","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535766925");
INSERT INTO fy_web_log_all VALUES("302","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/8.html","admin","Notice","edit","GET","a:1:{s:2:\"id\";s:1:\"8\";}","1535766936");
INSERT INTO fy_web_log_all VALUES("303","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/10.html","admin","Notice","edit","GET","a:1:{s:2:\"id\";s:2:\"10\";}","1535766953");
INSERT INTO fy_web_log_all VALUES("304","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/10.html","admin","Notice","edit","POST","a:6:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:12:\"内部体验\";s:6:\"detail\";s:105:\" 泛亚科技是国家大数据战略践行者和新型大数据产业生态圈商业模式引领者。\";s:6:\"status\";s:1:\"1\";s:7:\"orderby\";s:1:\"7\";s:4:\"desc\";s:401:\" 贵州泛亚信通网络科技有限公司(简称“泛亚科技”)是一家集泛在无线网络环境建设、数据可视化研究、大数据智能跨界应用为一体的大数据高科技企业,由郑州市讯捷贸易有限公司、阿里巴巴集团、贵阳广电传媒有限公司、贵阳市工业投资(集团)有限公司合资成立,注册资本1.2亿元。
\n
\n\";}","1535766979");
INSERT INTO fy_web_log_all VALUES("305","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535766979");
INSERT INTO fy_web_log_all VALUES("306","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/9.html","admin","Notice","edit","GET","a:1:{s:2:\"id\";s:1:\"9\";}","1535766985");
INSERT INTO fy_web_log_all VALUES("307","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/8.html","admin","Notice","edit","GET","a:1:{s:2:\"id\";s:1:\"8\";}","1535766993");
INSERT INTO fy_web_log_all VALUES("308","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/8.html","admin","Notice","edit","POST","a:6:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"欢迎内部体验\";s:6:\"detail\";s:54:\"泛亚商城商品即将上线完毕,敬请期待!\";s:6:\"status\";s:1:\"1\";s:7:\"orderby\";s:1:\"7\";s:4:\"desc\";s:120:\"各位会员,泛亚商城各类商品即将上线完毕,商品类型多种多样,欢迎各位会员体验购买!\";}","1535767009");
INSERT INTO fy_web_log_all VALUES("309","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767010");
INSERT INTO fy_web_log_all VALUES("310","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/7.html","admin","Notice","edit","GET","a:1:{s:2:\"id\";s:1:\"7\";}","1535767014");
INSERT INTO fy_web_log_all VALUES("311","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/7.html","admin","Notice","edit","POST","a:6:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:30:\"泛亚商城1.0即将试运营\";s:6:\"detail\";s:30:\"泛亚商城1.0即将试运营\";s:6:\"status\";s:1:\"1\";s:7:\"orderby\";s:1:\"7\";s:4:\"desc\";s:108:\"经过不懈的努力,泛亚商城1.0终于完成,将于一周后正式开始试运营,敬请期待!\";}","1535767026");
INSERT INTO fy_web_log_all VALUES("312","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767026");
INSERT INTO fy_web_log_all VALUES("313","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/9.html","admin","Notice","edit","GET","a:1:{s:2:\"id\";s:1:\"9\";}","1535767051");
INSERT INTO fy_web_log_all VALUES("314","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/9.html","admin","Notice","edit","POST","a:6:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:27:\"泛亚商城1.0内部体验\";s:6:\"detail\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:7:\"orderby\";s:1:\"7\";s:4:\"desc\";s:102:\"泛亚科技是国家大数据战略践行者和新型大数据产业生态圈商业模式引领者。\";}","1535767069");
INSERT INTO fy_web_log_all VALUES("315","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767070");
INSERT INTO fy_web_log_all VALUES("316","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/delete.html","admin","Notice","delete","POST","a:1:{s:2:\"id\";s:1:\"9\";}","1535767105");
INSERT INTO fy_web_log_all VALUES("317","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/delete.html","admin","Notice","delete","POST","a:1:{s:2:\"id\";s:2:\"10\";}","1535767110");
INSERT INTO fy_web_log_all VALUES("318","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767113");
INSERT INTO fy_web_log_all VALUES("319","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/8.html","admin","Notice","edit","GET","a:1:{s:2:\"id\";s:1:\"8\";}","1535767131");
INSERT INTO fy_web_log_all VALUES("320","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/8.html","admin","Notice","edit","POST","a:6:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:30:\"欢迎各位同事内部体验\";s:6:\"detail\";s:54:\"泛亚商城商品即将上线完毕,敬请期待!\";s:6:\"status\";s:1:\"1\";s:7:\"orderby\";s:1:\"7\";s:4:\"desc\";s:120:\"各位会员,泛亚商城各类商品即将上线完毕,商品类型多种多样,欢迎各位会员体验购买!\";}","1535767140");
INSERT INTO fy_web_log_all VALUES("321","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767140");
INSERT INTO fy_web_log_all VALUES("322","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/8.html","admin","Notice","edit","GET","a:1:{s:2:\"id\";s:1:\"8\";}","1535767165");
INSERT INTO fy_web_log_all VALUES("323","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/8.html","admin","Notice","edit","POST","a:6:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:46:\"欢迎各位同事内部体验,反馈建议。\";s:6:\"detail\";s:54:\"泛亚商城商品即将上线完毕,敬请期待!\";s:6:\"status\";s:1:\"1\";s:7:\"orderby\";s:1:\"7\";s:4:\"desc\";s:120:\"各位会员,泛亚商城各类商品即将上线完毕,商品类型多种多样,欢迎各位会员体验购买!\";}","1535767186");
INSERT INTO fy_web_log_all VALUES("324","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767186");
INSERT INTO fy_web_log_all VALUES("325","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/8.html","admin","Notice","edit","GET","a:1:{s:2:\"id\";s:1:\"8\";}","1535767191");
INSERT INTO fy_web_log_all VALUES("326","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/edit/id/8.html","admin","Notice","edit","POST","a:6:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:43:\"欢迎各位同事内部体验,反馈建议\";s:6:\"detail\";s:54:\"泛亚商城商品即将上线完毕,敬请期待!\";s:6:\"status\";s:1:\"1\";s:7:\"orderby\";s:1:\"7\";s:4:\"desc\";s:120:\"各位会员,泛亚商城各类商品即将上线完毕,商品类型多种多样,欢迎各位会员体验购买!\";}","1535767197");
INSERT INTO fy_web_log_all VALUES("327","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767197");
INSERT INTO fy_web_log_all VALUES("328","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767218");
INSERT INTO fy_web_log_all VALUES("329","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767219");
INSERT INTO fy_web_log_all VALUES("330","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767220");
INSERT INTO fy_web_log_all VALUES("331","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767220");
INSERT INTO fy_web_log_all VALUES("332","1","2192.168.127.12","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767220");
INSERT INTO fy_web_log_all VALUES("333","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767220");
INSERT INTO fy_web_log_all VALUES("334","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html","admin","WebLog","index","GET","a:0:{}","1535767221");
INSERT INTO fy_web_log_all VALUES("335","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767222");
INSERT INTO fy_web_log_all VALUES("336","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767231");
INSERT INTO fy_web_log_all VALUES("337","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535767231");
INSERT INTO fy_web_log_all VALUES("338","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_role/index.html","admin","AdminRole","index","GET","a:0:{}","1535767232");
INSERT INTO fy_web_log_all VALUES("339","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index.html","admin","AdminNode","index","GET","a:0:{}","1535767233");
INSERT INTO fy_web_log_all VALUES("340","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:2:{s:4:\"type\";s:5:\"group\";s:9:\"module_id\";s:1:\"1\";}","1535767233");
INSERT INTO fy_web_log_all VALUES("341","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:3:{s:4:\"type\";s:4:\"node\";s:9:\"module_id\";s:1:\"1\";s:8:\"group_id\";s:1:\"1\";}","1535767233");
INSERT INTO fy_web_log_all VALUES("342","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_group/index.html","admin","AdminGroup","index","GET","a:0:{}","1535767233");
INSERT INTO fy_web_log_all VALUES("343","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_user/index.html","admin","AdminUser","index","GET","a:0:{}","1535767234");
INSERT INTO fy_web_log_all VALUES("344","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html","admin","WebLog","index","GET","a:0:{}","1535767234");
INSERT INTO fy_web_log_all VALUES("345","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/login_log/index.html","admin","LoginLog","index","GET","a:0:{}","1535767235");
INSERT INTO fy_web_log_all VALUES("346","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/silde_show/index.html","admin","SildeShow","index","GET","a:0:{}","1535767235");
INSERT INTO fy_web_log_all VALUES("347","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/modular/index.html","admin","Modular","index","GET","a:0:{}","1535767235");
INSERT INTO fy_web_log_all VALUES("348","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_class/index.html","admin","GoodsClass","index","GET","a:0:{}","1535767236");
INSERT INTO fy_web_log_all VALUES("349","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/modular/index.html","admin","Modular","index","GET","a:0:{}","1535767237");
INSERT INTO fy_web_log_all VALUES("350","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535767240");
INSERT INTO fy_web_log_all VALUES("351","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer/index.html","admin","Customer","index","GET","a:0:{}","1535767241");
INSERT INTO fy_web_log_all VALUES("352","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535767242");
INSERT INTO fy_web_log_all VALUES("353","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_grade/index.html","admin","CustomerGrade","index","GET","a:0:{}","1535767244");
INSERT INTO fy_web_log_all VALUES("354","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/activity/index.html","admin","Activity","index","GET","a:0:{}","1535767246");
INSERT INTO fy_web_log_all VALUES("355","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535767247");
INSERT INTO fy_web_log_all VALUES("356","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535767250");
INSERT INTO fy_web_log_all VALUES("357","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/gift_bag/index.html","admin","GiftBag","index","GET","a:0:{}","1535767250");
INSERT INTO fy_web_log_all VALUES("358","1","172.16.31.109","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/gift_bag/edit/id/3.html","admin","GiftBag","edit","GET","a:1:{s:2:\"id\";s:1:\"3\";}","1535767254");
INSERT INTO fy_web_log_all VALUES("359","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_comment/index.html","admin","GoodsComment","index","GET","a:0:{}","1535767276");
INSERT INTO fy_web_log_all VALUES("360","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535767277");
INSERT INTO fy_web_log_all VALUES("361","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/use_lottery/index.html","admin","UseLottery","index","GET","a:0:{}","1535767278");
INSERT INTO fy_web_log_all VALUES("362","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/gift_bag/index.html","admin","GiftBag","index","GET","a:0:{}","1535767279");
INSERT INTO fy_web_log_all VALUES("363","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535767281");
INSERT INTO fy_web_log_all VALUES("364","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/1.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"1\";}","1535767285");
INSERT INTO fy_web_log_all VALUES("365","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/2.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"2\";}","1535767296");
INSERT INTO fy_web_log_all VALUES("366","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/3.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"3\";}","1535767306");
INSERT INTO fy_web_log_all VALUES("367","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"4\";}","1535767314");
INSERT INTO fy_web_log_all VALUES("368","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"4\";}","1535767339");
INSERT INTO fy_web_log_all VALUES("369","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"4\";}","1535767397");
INSERT INTO fy_web_log_all VALUES("370","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535768151");
INSERT INTO fy_web_log_all VALUES("371","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/edit/id/5.html","admin","Goods","edit","GET","a:1:{s:2:\"id\";s:1:\"5\";}","1535768156");
INSERT INTO fy_web_log_all VALUES("372","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/getskudata.html","admin","Goods","getskudata","POST","a:1:{s:2:\"id\";s:1:\"5\";}","1535768156");
INSERT INTO fy_web_log_all VALUES("373","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/edit/id/5.html","admin","Goods","edit","POST","a:34:{s:2:\"id\";s:1:\"5\";s:7:\"user_id\";s:2:\"21\";s:4:\"name\";s:12:\"苹果手机\";s:8:\"subtitle\";s:0:\"\";s:7:\"yieldly\";s:0:\"\";s:10:\"main_image\";s:58:\"/pic/uploads/20180831/35cb42fbfe509141499aab67a3a0a680.jpg\";s:14:\"goods_class_id\";s:1:\"6\";s:14:\"goods_brand_id\";s:2:\"20\";s:9:\"show_area\";s:1:\"1\";s:10:\"start_date\";s:19:\"2018-08-31 11:21:01\";s:8:\"end_date\";s:19:\"2018-09-04 11:21:05\";s:10:\"store_type\";s:1:\"1\";s:9:\"free_type\";s:1:\"1\";s:7:\"postage\";s:0:\"\";s:12:\"return_score\";s:1:\"0\";s:3:\"pic\";a:2:{i:0;s:58:\"/pic/uploads/20180831/b7e860b80b4714b627f9d72e6f71d72b.jpg\";i:1;s:58:\"/pic/uploads/20180831/f6f882914e96e541e77f0d3af9e7eb8b.jpg\";}s:7:\"orderby\";s:2:\"10\";s:12:\"goods_weight\";s:7:\"300.000\";s:7:\"is_real\";s:1:\"1\";s:15:\"is_return_goods\";s:1:\"1\";s:10:\"is_comment\";s:1:\"1\";s:14:\"service_mobile\";s:0:\"\";s:7:\"service\";a:1:{i:0;s:12:\"没有服务\";}s:10:\"after_sale\";s:21:\"<p>ok</p>\";s:15:\"settlement_type\";s:1:\"1\";s:11:\"basic_price\";s:4:\"0.01\";s:5:\"score\";s:0:\"\";s:14:\"original_price\";s:7:\"5200.00\";s:7:\"buy_num\";s:3:\"500\";s:9:\"shop_code\";s:0:\"\";s:8:\"bar_code\";s:0:\"\";s:6:\"detail\";s:25:\"<p>撒旦</p>\";s:11:\"skuZuheData\";s:208:\"[{"id":"16","SkuId":"1535685741914_规格:1535685749337_通用","pointPrice":"10","price":0.01,"num":"10","code&q\";s:15:\"propty_name_val\";s:57:\"[["1535685741914_规格:1535685749337_通用"]]\";}","1535768196");
INSERT INTO fy_web_log_all VALUES("374","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/edit/id/5.html","admin","Goods","edit","GET","a:1:{s:2:\"id\";s:1:\"5\";}","1535768343");
INSERT INTO fy_web_log_all VALUES("375","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/getskudata.html","admin","Goods","getskudata","POST","a:1:{s:2:\"id\";s:1:\"5\";}","1535768343");
INSERT INTO fy_web_log_all VALUES("376","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/edit/id/5.html","admin","Goods","edit","POST","a:34:{s:2:\"id\";s:1:\"5\";s:7:\"user_id\";s:2:\"21\";s:4:\"name\";s:12:\"苹果手机\";s:8:\"subtitle\";s:12:\"苹果手机\";s:7:\"yieldly\";s:6:\"上海\";s:10:\"main_image\";s:58:\"/pic/uploads/20180831/35cb42fbfe509141499aab67a3a0a680.jpg\";s:14:\"goods_class_id\";s:1:\"6\";s:14:\"goods_brand_id\";s:2:\"20\";s:9:\"show_area\";s:1:\"1\";s:10:\"start_date\";s:19:\"2018-08-31 11:21:01\";s:8:\"end_date\";s:19:\"2018-09-04 11:21:05\";s:10:\"store_type\";s:1:\"1\";s:9:\"free_type\";s:1:\"1\";s:7:\"postage\";s:4:\"0.00\";s:12:\"return_score\";s:1:\"0\";s:3:\"pic\";a:2:{i:0;s:58:\"/pic/uploads/20180831/b7e860b80b4714b627f9d72e6f71d72b.jpg\";i:1;s:58:\"/pic/uploads/20180831/f6f882914e96e541e77f0d3af9e7eb8b.jpg\";}s:7:\"orderby\";s:2:\"10\";s:12:\"goods_weight\";s:7:\"300.000\";s:7:\"is_real\";s:1:\"1\";s:15:\"is_return_goods\";s:1:\"1\";s:10:\"is_comment\";s:1:\"1\";s:14:\"service_mobile\";s:0:\"\";s:7:\"service\";a:1:{i:0;s:12:\"没有服务\";}s:10:\"after_sale\";s:21:\"<p>ok</p>\";s:15:\"settlement_type\";s:1:\"1\";s:11:\"basic_price\";s:4:\"0.01\";s:5:\"score\";s:1:\"0\";s:14:\"original_price\";s:7:\"5200.00\";s:7:\"buy_num\";s:3:\"500\";s:9:\"shop_code\";s:0:\"\";s:8:\"bar_code\";s:0:\"\";s:6:\"detail\";s:31:\"<p>苹果手机</p>\";s:11:\"skuZuheData\";s:208:\"[{"id":"16","SkuId":"1535685741914_规格:1535685749337_通用","pointPrice":"10","price":0.01,"num":"10","code&q\";s:15:\"propty_name_val\";s:57:\"[["1535685741914_规格:1535685749337_通用"]]\";}","1535768413");
INSERT INTO fy_web_log_all VALUES("377","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/edit/id/5.html","admin","Goods","edit","GET","a:1:{s:2:\"id\";s:1:\"5\";}","1535768418");
INSERT INTO fy_web_log_all VALUES("378","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/getskudata.html","admin","Goods","getskudata","POST","a:1:{s:2:\"id\";s:1:\"5\";}","1535768418");
INSERT INTO fy_web_log_all VALUES("379","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535768458");
INSERT INTO fy_web_log_all VALUES("380","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_task/index.html","admin","CustomerTask","index","GET","a:0:{}","1535768458");
INSERT INTO fy_web_log_all VALUES("381","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_grade_desc/index.html","admin","CustomerGradeDesc","index","GET","a:0:{}","1535768459");
INSERT INTO fy_web_log_all VALUES("382","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery_log/index.html","admin","LotteryLog","index","GET","a:0:{}","1535768460");
INSERT INTO fy_web_log_all VALUES("383","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/activity/index.html","admin","Activity","index","GET","a:0:{}","1535768461");
INSERT INTO fy_web_log_all VALUES("384","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/transaction/index.html","admin","Transaction","index","GET","a:0:{}","1535768461");
INSERT INTO fy_web_log_all VALUES("385","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535768462");
INSERT INTO fy_web_log_all VALUES("386","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/message/index.html","admin","Message","index","GET","a:0:{}","1535768467");
INSERT INTO fy_web_log_all VALUES("387","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_comment/index.html","admin","GoodsComment","index","GET","a:0:{}","1535768467");
INSERT INTO fy_web_log_all VALUES("388","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535768468");
INSERT INTO fy_web_log_all VALUES("389","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/use_lottery/index.html","admin","UseLottery","index","GET","a:0:{}","1535768470");
INSERT INTO fy_web_log_all VALUES("390","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/gift_bag/index.html","admin","GiftBag","index","GET","a:0:{}","1535768471");
INSERT INTO fy_web_log_all VALUES("391","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535768474");
INSERT INTO fy_web_log_all VALUES("392","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery_log/index.html","admin","LotteryLog","index","GET","a:0:{}","1535768475");
INSERT INTO fy_web_log_all VALUES("393","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_task/index.html","admin","CustomerTask","index","GET","a:0:{}","1535768475");
INSERT INTO fy_web_log_all VALUES("394","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer/index.html","admin","Customer","index","GET","a:0:{}","1535768476");
INSERT INTO fy_web_log_all VALUES("395","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535768477");
INSERT INTO fy_web_log_all VALUES("396","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535768486");
INSERT INTO fy_web_log_all VALUES("397","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_class/index.html","admin","GoodsClass","index","GET","a:0:{}","1535768489");
INSERT INTO fy_web_log_all VALUES("398","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/modular/index.html","admin","Modular","index","GET","a:0:{}","1535768490");
INSERT INTO fy_web_log_all VALUES("399","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/silde_show/index.html","admin","SildeShow","index","GET","a:0:{}","1535768490");
INSERT INTO fy_web_log_all VALUES("400","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/notice/index.html","admin","Notice","index","GET","a:0:{}","1535768491");
INSERT INTO fy_web_log_all VALUES("401","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/login_log/index.html","admin","LoginLog","index","GET","a:0:{}","1535768493");
INSERT INTO fy_web_log_all VALUES("402","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html","admin","WebLog","index","GET","a:0:{}","1535768494");
INSERT INTO fy_web_log_all VALUES("403","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/node_map/index.html","admin","NodeMap","index","GET","a:0:{}","1535768496");
INSERT INTO fy_web_log_all VALUES("404","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html","admin","WebLog","index","GET","a:0:{}","1535768497");
INSERT INTO fy_web_log_all VALUES("405","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/detail/id/390.html","admin","WebLog","detail","GET","a:1:{s:2:\"id\";s:3:\"390\";}","1535768518");
INSERT INTO fy_web_log_all VALUES("406","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html?p=2","admin","WebLog","index","GET","a:1:{s:1:\"p\";s:1:\"2\";}","1535768532");
INSERT INTO fy_web_log_all VALUES("407","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html?p=3","admin","WebLog","index","GET","a:1:{s:1:\"p\";s:1:\"3\";}","1535768535");
INSERT INTO fy_web_log_all VALUES("408","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html?p=2","admin","WebLog","index","GET","a:1:{s:1:\"p\";s:1:\"2\";}","1535768539");
INSERT INTO fy_web_log_all VALUES("409","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/login_log/index.html","admin","LoginLog","index","GET","a:0:{}","1535768542");
INSERT INTO fy_web_log_all VALUES("410","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html","admin","WebLog","index","GET","a:0:{}","1535768543");
INSERT INTO fy_web_log_all VALUES("411","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/node_map/index.html","admin","NodeMap","index","GET","a:0:{}","1535768544");
INSERT INTO fy_web_log_all VALUES("412","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_user/index.html","admin","AdminUser","index","GET","a:0:{}","1535768552");
INSERT INTO fy_web_log_all VALUES("413","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_user/index.html","admin","AdminUser","index","GET","a:0:{}","1535768553");
INSERT INTO fy_web_log_all VALUES("414","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_role/index.html","admin","AdminRole","index","GET","a:0:{}","1535768564");
INSERT INTO fy_web_log_all VALUES("415","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index.html","admin","AdminNode","index","GET","a:0:{}","1535768565");
INSERT INTO fy_web_log_all VALUES("416","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:2:{s:4:\"type\";s:5:\"group\";s:9:\"module_id\";s:1:\"1\";}","1535768566");
INSERT INTO fy_web_log_all VALUES("417","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:3:{s:4:\"type\";s:4:\"node\";s:9:\"module_id\";s:1:\"1\";s:8:\"group_id\";s:1:\"1\";}","1535768566");
INSERT INTO fy_web_log_all VALUES("418","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_group/index.html","admin","AdminGroup","index","GET","a:0:{}","1535768568");
INSERT INTO fy_web_log_all VALUES("419","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index.html","admin","AdminNode","index","GET","a:0:{}","1535768569");
INSERT INTO fy_web_log_all VALUES("420","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:2:{s:4:\"type\";s:5:\"group\";s:9:\"module_id\";s:1:\"1\";}","1535768569");
INSERT INTO fy_web_log_all VALUES("421","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:3:{s:4:\"type\";s:4:\"node\";s:9:\"module_id\";s:1:\"1\";s:8:\"group_id\";s:1:\"1\";}","1535768569");
INSERT INTO fy_web_log_all VALUES("422","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_user/index.html","admin","AdminUser","index","GET","a:0:{}","1535768569");
INSERT INTO fy_web_log_all VALUES("423","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/node_map/index.html","admin","NodeMap","index","GET","a:0:{}","1535768570");
INSERT INTO fy_web_log_all VALUES("424","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/web_log/index.html","admin","WebLog","index","GET","a:0:{}","1535768570");
INSERT INTO fy_web_log_all VALUES("425","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/login_log/index.html","admin","LoginLog","index","GET","a:0:{}","1535768571");
INSERT INTO fy_web_log_all VALUES("426","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/silde_show/index.html","admin","SildeShow","index","GET","a:0:{}","1535768571");
INSERT INTO fy_web_log_all VALUES("427","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_class/index.html","admin","GoodsClass","index","GET","a:0:{}","1535768571");
INSERT INTO fy_web_log_all VALUES("428","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535768572");
INSERT INTO fy_web_log_all VALUES("429","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer/index.html","admin","Customer","index","GET","a:0:{}","1535768573");
INSERT INTO fy_web_log_all VALUES("430","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535768574");
INSERT INTO fy_web_log_all VALUES("431","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535768574");
INSERT INTO fy_web_log_all VALUES("432","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_task/index.html","admin","CustomerTask","index","GET","a:0:{}","1535768575");
INSERT INTO fy_web_log_all VALUES("433","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_grade/index.html","admin","CustomerGrade","index","GET","a:0:{}","1535768576");
INSERT INTO fy_web_log_all VALUES("434","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_grade_desc/index.html","admin","CustomerGradeDesc","index","GET","a:0:{}","1535768576");
INSERT INTO fy_web_log_all VALUES("435","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery_log/index.html","admin","LotteryLog","index","GET","a:0:{}","1535768579");
INSERT INTO fy_web_log_all VALUES("436","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/activity/index.html","admin","Activity","index","GET","a:0:{}","1535768580");
INSERT INTO fy_web_log_all VALUES("437","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/transaction/index.html","admin","Transaction","index","GET","a:0:{}","1535768581");
INSERT INTO fy_web_log_all VALUES("438","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535768581");
INSERT INTO fy_web_log_all VALUES("439","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/message/index.html","admin","Message","index","GET","a:0:{}","1535768583");
INSERT INTO fy_web_log_all VALUES("440","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_comment/index.html","admin","GoodsComment","index","GET","a:0:{}","1535768584");
INSERT INTO fy_web_log_all VALUES("441","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535768585");
INSERT INTO fy_web_log_all VALUES("442","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/use_lottery/index.html","admin","UseLottery","index","GET","a:0:{}","1535768585");
INSERT INTO fy_web_log_all VALUES("443","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/gift_bag/index.html","admin","GiftBag","index","GET","a:0:{}","1535768586");
INSERT INTO fy_web_log_all VALUES("444","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535768589");
INSERT INTO fy_web_log_all VALUES("445","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_group/index.html","admin","AdminGroup","index","GET","a:0:{}","1535768592");
INSERT INTO fy_web_log_all VALUES("446","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index.html","admin","AdminNode","index","GET","a:0:{}","1535768593");
INSERT INTO fy_web_log_all VALUES("447","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:2:{s:4:\"type\";s:5:\"group\";s:9:\"module_id\";s:1:\"1\";}","1535768593");
INSERT INTO fy_web_log_all VALUES("448","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_node/index","admin","AdminNode","index","POST","a:3:{s:4:\"type\";s:4:\"node\";s:9:\"module_id\";s:1:\"1\";s:8:\"group_id\";s:1:\"1\";}","1535768593");
INSERT INTO fy_web_log_all VALUES("449","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_user/index.html","admin","AdminUser","index","GET","a:0:{}","1535768593");
INSERT INTO fy_web_log_all VALUES("450","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/node_map/index.html","admin","NodeMap","index","GET","a:0:{}","1535768593");
INSERT INTO fy_web_log_all VALUES("451","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/login_log/index.html","admin","LoginLog","index","GET","a:0:{}","1535768594");
INSERT INTO fy_web_log_all VALUES("452","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/silde_show/index.html","admin","SildeShow","index","GET","a:0:{}","1535768594");
INSERT INTO fy_web_log_all VALUES("453","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/modular/index.html","admin","Modular","index","GET","a:0:{}","1535768595");
INSERT INTO fy_web_log_all VALUES("454","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535768595");
INSERT INTO fy_web_log_all VALUES("455","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535768595");
INSERT INTO fy_web_log_all VALUES("456","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_role/index.html","admin","AdminRole","index","GET","a:0:{}","1535768596");
INSERT INTO fy_web_log_all VALUES("457","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_group/index.html","admin","AdminGroup","index","GET","a:0:{}","1535768596");
INSERT INTO fy_web_log_all VALUES("458","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535768604");
INSERT INTO fy_web_log_all VALUES("459","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535768604");
INSERT INTO fy_web_log_all VALUES("460","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535768605");
INSERT INTO fy_web_log_all VALUES("461","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535768605");
INSERT INTO fy_web_log_all VALUES("462","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535768606");
INSERT INTO fy_web_log_all VALUES("463","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535768606");
INSERT INTO fy_web_log_all VALUES("464","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535768607");
INSERT INTO fy_web_log_all VALUES("465","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535768607");
INSERT INTO fy_web_log_all VALUES("466","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/admin_user/index.html","admin","AdminUser","index","GET","a:0:{}","1535768631");
INSERT INTO fy_web_log_all VALUES("467","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/login_log/index.html","admin","LoginLog","index","GET","a:0:{}","1535768631");
INSERT INTO fy_web_log_all VALUES("468","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/modular/index.html","admin","Modular","index","GET","a:0:{}","1535768631");
INSERT INTO fy_web_log_all VALUES("469","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535768632");
INSERT INTO fy_web_log_all VALUES("470","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535768632");
INSERT INTO fy_web_log_all VALUES("471","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/customer_grade_desc/index.html","admin","CustomerGradeDesc","index","GET","a:0:{}","1535768632");
INSERT INTO fy_web_log_all VALUES("472","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/transaction/index.html","admin","Transaction","index","GET","a:0:{}","1535768633");
INSERT INTO fy_web_log_all VALUES("473","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/message/index.html","admin","Message","index","GET","a:0:{}","1535768634");
INSERT INTO fy_web_log_all VALUES("474","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_comment/index.html","admin","GoodsComment","index","GET","a:0:{}","1535768634");
INSERT INTO fy_web_log_all VALUES("475","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/use_lottery/index.html","admin","UseLottery","index","GET","a:0:{}","1535768635");
INSERT INTO fy_web_log_all VALUES("476","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/gift_bag/index.html","admin","GiftBag","index","GET","a:0:{}","1535768635");
INSERT INTO fy_web_log_all VALUES("477","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/goods_class/index.html","admin","GoodsClass","index","GET","a:0:{}","1535768636");
INSERT INTO fy_web_log_all VALUES("478","1","172.16.31.10","中国 贵州 贵阳 ","Windows 10","Chrome(68.0.3440.106)","http://www.fyxt701.com/index.php/admin/login_log/index.html","admin","LoginLog","index","GET","a:0:{}","1535768637");
INSERT INTO fy_web_log_all VALUES("479","0","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin","admin","Index","index","GET","a:0:{}","1535772160");
INSERT INTO fy_web_log_all VALUES("480","0","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/pub/login.html","admin","Pub","login","GET","a:0:{}","1535772160");
INSERT INTO fy_web_log_all VALUES("481","0","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/pub/checklogin.html","admin","Pub","checklogin","POST","a:3:{s:7:\"account\";s:5:\"admin\";s:8:\"password\";s:6:\"<PASSWORD>\";s:7:\"captcha\";s:4:\"qeyc\";}","1535772170");
INSERT INTO fy_web_log_all VALUES("482","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535772170");
INSERT INTO fy_web_log_all VALUES("483","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535772171");
INSERT INTO fy_web_log_all VALUES("484","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/use_lottery/index.html","admin","UseLottery","index","GET","a:0:{}","1535772185");
INSERT INTO fy_web_log_all VALUES("485","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535772187");
INSERT INTO fy_web_log_all VALUES("486","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/add.html","admin","CustomerRight","add","GET","a:0:{}","1535772194");
INSERT INTO fy_web_log_all VALUES("487","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/upload/index/id/upload.html","admin","Upload","index","GET","a:1:{s:2:\"id\";s:6:\"upload\";}","1535772623");
INSERT INTO fy_web_log_all VALUES("488","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/upload/listimage.html","admin","Upload","listimage","POST","a:2:{s:1:\"p\";s:1:\"1\";s:5:\"count\";s:1:\"1\";}","1535772625");
INSERT INTO fy_web_log_all VALUES("489","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/upload/upload.html","admin","Upload","upload","POST","a:0:{}","1535772712");
INSERT INTO fy_web_log_all VALUES("490","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/add.html","admin","CustomerRight","add","GET","a:0:{}","1535772737");
INSERT INTO fy_web_log_all VALUES("491","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/add.html","admin","CustomerRight","add","POST","a:5:{s:2:\"id\";s:0:\"\";s:4:\"name\";s:3:\"fff\";s:3:\"pic\";s:58:\"/tmp/uploads/20180901/216be9b0a3218cc416d95c39e00e52ed.png\";s:4:\"desc\";s:4:\"ffff\";s:11:\"instruction\";s:25:\"<p>ffffff</p>\";}","1535772748");
INSERT INTO fy_web_log_all VALUES("492","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535772748");
INSERT INTO fy_web_log_all VALUES("493","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"4\";}","1535772753");
INSERT INTO fy_web_log_all VALUES("494","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","POST","a:5:{s:2:\"id\";s:1:\"4\";s:4:\"name\";s:15:\"升级送积分\";s:3:\"pic\";s:58:\"/tmp/uploads/20180723/1681a77828fe3083f2699165d26908bb.jpg\";s:4:\"desc\";s:15:\"升级送积分\";s:11:\"instruction\";s:34:\"<p>升级送积分</p>\";}","1535772756");
INSERT INTO fy_web_log_all VALUES("495","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535772756");
INSERT INTO fy_web_log_all VALUES("496","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/3.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"3\";}","1535772757");
INSERT INTO fy_web_log_all VALUES("497","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/3.html","admin","CustomerRight","edit","POST","a:5:{s:2:\"id\";s:1:\"3\";s:4:\"name\";s:18:\"钻石会员专享\";s:3:\"pic\";s:58:\"/tmp/uploads/20180723/6486343a125aabff9602a9e54715d5dc.png\";s:4:\"desc\";s:18:\"钻石会员专享\";s:11:\"instruction\";s:37:\"<p>钻石会员专享</p>\";}","1535772759");
INSERT INTO fy_web_log_all VALUES("498","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535772760");
INSERT INTO fy_web_log_all VALUES("499","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/3.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"3\";}","1535772762");
INSERT INTO fy_web_log_all VALUES("500","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/3.html","admin","CustomerRight","edit","POST","a:5:{s:2:\"id\";s:1:\"3\";s:4:\"name\";s:18:\"钻石会员专享\";s:3:\"pic\";s:58:\"/pic/uploads/20180723/6486343a125aabff9602a9e54715d5dc.png\";s:4:\"desc\";s:18:\"钻石会员专享\";s:11:\"instruction\";s:37:\"<p>钻石会员专享</p>\";}","1535772763");
INSERT INTO fy_web_log_all VALUES("501","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535772763");
INSERT INTO fy_web_log_all VALUES("502","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/2.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"2\";}","1535772765");
INSERT INTO fy_web_log_all VALUES("503","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/2.html","admin","CustomerRight","edit","POST","a:5:{s:2:\"id\";s:1:\"2\";s:4:\"name\";s:12:\"生日礼包\";s:3:\"pic\";s:58:\"/tmp/uploads/20180723/00b284f74955a532c941f0d4d061c7fd.jpg\";s:4:\"desc\";s:18:\"生日会员专享\";s:11:\"instruction\";s:37:\"<p>生日会员专享</p>\";}","1535772767");
INSERT INTO fy_web_log_all VALUES("504","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535772767");
INSERT INTO fy_web_log_all VALUES("505","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/1.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"1\";}","1535772768");
INSERT INTO fy_web_log_all VALUES("506","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/1.html","admin","CustomerRight","edit","POST","a:5:{s:2:\"id\";s:1:\"1\";s:4:\"name\";s:12:\"新人礼包\";s:3:\"pic\";s:58:\"/tmp/uploads/20180723/949ad4c57591a0793b777e74c0afbd33.jpg\";s:4:\"desc\";s:12:\"新人专享\";s:11:\"instruction\";s:82:\"<p>礼包包含一张优惠券、一张抵用券、一张积分券</p>\";}","1535772770");
INSERT INTO fy_web_log_all VALUES("507","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535772770");
INSERT INTO fy_web_log_all VALUES("508","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"4\";}","1535772783");
INSERT INTO fy_web_log_all VALUES("509","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"4\";}","1535772810");
INSERT INTO fy_web_log_all VALUES("510","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/upload/index/id/upload.html","admin","Upload","index","GET","a:1:{s:2:\"id\";s:6:\"upload\";}","1535772811");
INSERT INTO fy_web_log_all VALUES("511","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/upload/listimage.html","admin","Upload","listimage","POST","a:2:{s:1:\"p\";s:1:\"1\";s:5:\"count\";s:1:\"1\";}","1535772813");
INSERT INTO fy_web_log_all VALUES("512","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","POST","a:5:{s:2:\"id\";s:1:\"4\";s:4:\"name\";s:15:\"升级送积分\";s:3:\"pic\";s:58:\"/tmp/uploads/20180822/7a2570970d3d8229dcf3deca8903d946.png\";s:4:\"desc\";s:15:\"升级送积分\";s:11:\"instruction\";s:34:\"<p>升级送积分</p>\";}","1535772818");
INSERT INTO fy_web_log_all VALUES("513","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535772818");
INSERT INTO fy_web_log_all VALUES("514","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"4\";}","1535772821");
INSERT INTO fy_web_log_all VALUES("515","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/order/index.html","admin","Order","index","GET","a:0:{}","1535772904");
INSERT INTO fy_web_log_all VALUES("516","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/message/index.html","admin","Message","index","GET","a:0:{}","1535772905");
INSERT INTO fy_web_log_all VALUES("517","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/goods_comment/index.html","admin","GoodsComment","index","GET","a:0:{}","1535772907");
INSERT INTO fy_web_log_all VALUES("518","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/wx_pay_refund_log/index.html","admin","WxPayRefundLog","index","GET","a:0:{}","1535772908");
INSERT INTO fy_web_log_all VALUES("519","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/use_lottery/index.html","admin","UseLottery","index","GET","a:0:{}","1535772909");
INSERT INTO fy_web_log_all VALUES("520","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/gift_bag/index.html","admin","GiftBag","index","GET","a:0:{}","1535772910");
INSERT INTO fy_web_log_all VALUES("521","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_grade_desc/index.html","admin","CustomerGradeDesc","index","GET","a:0:{}","1535772912");
INSERT INTO fy_web_log_all VALUES("522","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/lottery_log/index.html","admin","LotteryLog","index","GET","a:0:{}","1535772915");
INSERT INTO fy_web_log_all VALUES("523","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/lottery/index.html","admin","Lottery","index","GET","a:0:{}","1535772941");
INSERT INTO fy_web_log_all VALUES("524","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_task/index.html","admin","CustomerTask","index","GET","a:0:{}","1535772943");
INSERT INTO fy_web_log_all VALUES("525","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer/index.html","admin","Customer","index","GET","a:0:{}","1535772943");
INSERT INTO fy_web_log_all VALUES("526","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535772951");
INSERT INTO fy_web_log_all VALUES("527","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/edit/id/17.html","admin","Brand","edit","GET","a:1:{s:2:\"id\";s:2:\"17\";}","1535772954");
INSERT INTO fy_web_log_all VALUES("528","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535772962");
INSERT INTO fy_web_log_all VALUES("529","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/goods/edit/id/1.html","admin","Goods","edit","GET","a:1:{s:2:\"id\";s:1:\"1\";}","1535772965");
INSERT INTO fy_web_log_all VALUES("530","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/goods/getskudata.html","admin","Goods","getskudata","POST","a:1:{s:2:\"id\";s:1:\"1\";}","1535772965");
INSERT INTO fy_web_log_all VALUES("531","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/goods/edit/id/1.html","admin","Goods","edit","GET","a:1:{s:2:\"id\";s:1:\"1\";}","1535773119");
INSERT INTO fy_web_log_all VALUES("532","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/goods/getskudata.html","admin","Goods","getskudata","POST","a:1:{s:2:\"id\";s:1:\"1\";}","1535773120");
INSERT INTO fy_web_log_all VALUES("533","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535773123");
INSERT INTO fy_web_log_all VALUES("534","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/edit/id/17.html","admin","Brand","edit","GET","a:1:{s:2:\"id\";s:2:\"17\";}","1535773125");
INSERT INTO fy_web_log_all VALUES("535","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535773130");
INSERT INTO fy_web_log_all VALUES("536","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535773130");
INSERT INTO fy_web_log_all VALUES("537","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535773138");
INSERT INTO fy_web_log_all VALUES("538","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535773141");
INSERT INTO fy_web_log_all VALUES("539","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/edit/id/17.html","admin","Brand","edit","GET","a:1:{s:2:\"id\";s:2:\"17\";}","1535773143");
INSERT INTO fy_web_log_all VALUES("540","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535773180");
INSERT INTO fy_web_log_all VALUES("541","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535773180");
INSERT INTO fy_web_log_all VALUES("542","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535773182");
INSERT INTO fy_web_log_all VALUES("543","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535773182");
INSERT INTO fy_web_log_all VALUES("544","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535773185");
INSERT INTO fy_web_log_all VALUES("545","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/edit/id/17.html","admin","Brand","edit","GET","a:1:{s:2:\"id\";s:2:\"17\";}","1535773187");
INSERT INTO fy_web_log_all VALUES("546","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535773368");
INSERT INTO fy_web_log_all VALUES("547","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/edit/id/17.html","admin","Brand","edit","GET","a:1:{s:2:\"id\";s:2:\"17\";}","1535773370");
INSERT INTO fy_web_log_all VALUES("548","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535773380");
INSERT INTO fy_web_log_all VALUES("549","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535773380");
INSERT INTO fy_web_log_all VALUES("550","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535773383");
INSERT INTO fy_web_log_all VALUES("551","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/edit/id/17.html","admin","Brand","edit","GET","a:1:{s:2:\"id\";s:2:\"17\";}","1535773385");
INSERT INTO fy_web_log_all VALUES("552","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/index.html","admin","Index","index","GET","a:0:{}","1535773471");
INSERT INTO fy_web_log_all VALUES("553","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/index/welcome.html","admin","Index","welcome","GET","a:0:{}","1535773472");
INSERT INTO fy_web_log_all VALUES("554","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/goods/index.html","admin","Goods","index","GET","a:0:{}","1535773474");
INSERT INTO fy_web_log_all VALUES("555","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/index.html","admin","Brand","index","GET","a:0:{}","1535773477");
INSERT INTO fy_web_log_all VALUES("556","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/edit/id/17.html","admin","Brand","edit","GET","a:1:{s:2:\"id\";s:2:\"17\";}","1535773478");
INSERT INTO fy_web_log_all VALUES("557","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/brand/edit/id/17.html","admin","Brand","edit","GET","a:1:{s:2:\"id\";s:2:\"17\";}","1535773565");
INSERT INTO fy_web_log_all VALUES("558","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535773574");
INSERT INTO fy_web_log_all VALUES("559","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/5.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"5\";}","1535773659");
INSERT INTO fy_web_log_all VALUES("560","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/3.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"3\";}","1535773667");
INSERT INTO fy_web_log_all VALUES("561","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","GET","a:1:{s:2:\"id\";s:1:\"4\";}","1535773675");
INSERT INTO fy_web_log_all VALUES("562","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/upload/index/id/upload.html","admin","Upload","index","GET","a:1:{s:2:\"id\";s:6:\"upload\";}","1535773676");
INSERT INTO fy_web_log_all VALUES("563","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/upload/upload.html","admin","Upload","upload","POST","a:0:{}","1535773681");
INSERT INTO fy_web_log_all VALUES("564","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/edit/id/4.html","admin","CustomerRight","edit","POST","a:5:{s:2:\"id\";s:1:\"4\";s:4:\"name\";s:15:\"升级送积分\";s:3:\"pic\";s:58:\"/tmp/uploads/20180901/ad61a9b50e7d2b918618a29c9d7db9c8.png\";s:4:\"desc\";s:15:\"升级送积分\";s:11:\"instruction\";s:34:\"<p>升级送积分</p>\";}","1535773687");
INSERT INTO fy_web_log_all VALUES("565","1","172.16.58.3","中国 中国 ","Windows 7","Chrome(64.0.3282.186)","http://www.fyxt701.com/index.php/admin/customer_right/index.html","admin","CustomerRight","index","GET","a:0:{}","1535773687");
DROP TABLE fy_withdrawals_log;
CREATE TABLE `fy_withdrawals_log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '提现记录表',
`user_id` int(10) NOT NULL COMMENT '提现用户',
`money` decimal(10,2) NOT NULL COMMENT '提下money',
`rate` decimal(10,2) DEFAULT NULL COMMENT '费率',
`addtime` int(10) NOT NULL COMMENT '提现时间',
`status` tinyint(1) DEFAULT NULL COMMENT '1到账成功,0到账失败,2待审核。3审核通过。4.审核失败',
`updatetime` int(10) DEFAULT NULL COMMENT '修改时间',
`remark` varchar(10) DEFAULT NULL COMMENT '备注',
`withrawals_id` int(10) DEFAULT NULL COMMENT '提现费率哪一种',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE fy_wx_pay_refund_log;
CREATE TABLE `fy_wx_pay_refund_log` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '微信交易记录表',
`openid` varchar(255) NOT NULL COMMENT '用户openid',
`username` varchar(30) DEFAULT NULL COMMENT '用户名',
`create_time` int(11) NOT NULL COMMENT '交易时间',
`money` decimal(10,2) NOT NULL COMMENT '交易金额',
`type` tinyint(1) DEFAULT NULL COMMENT '交易类型1购买商品2退款3.其他',
`status` tinyint(1) DEFAULT '1',
`isdelete` tinyint(1) DEFAULT '0',
`order_id` varchar(255) DEFAULT NULL COMMENT '订单号',
`desc` varchar(255) DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
INSERT INTO fy_wx_pay_refund_log VALUES("1","omQYXwM8TEkiBZR7Ldm891OOWbNQ","Baymax","1535706068","0.01","1","1","0","1441217402201808311656478916","","");
INSERT INTO fy_wx_pay_refund_log VALUES("2","omQYXwM8TEkiBZR7Ldm891OOWbNQ","Baymax","1535706882","-0.01","2","1","0","1441217402201808311656478916","","");
INSERT INTO fy_wx_pay_refund_log VALUES("3","omQYXwAasNeXdGSMymd91487Ds1g","DANIEL","1535765494","0.01","1","1","0","144121740220180901093108","","");
INSERT INTO fy_wx_pay_refund_log VALUES("4","omQYXwAasNeXdGSMymd91487Ds1g","DANIEL","1535766341","0.01","1","1","0","144121740220180901094531","","");
|
alter table "public"."lb_update_log" add column "siret" text
null;
|
-- Rename content_cid columns to metadata_cid
ALTER TABLE nft_metadata RENAME COLUMN cid TO content_cid;
ALTER TABLE nft_asset RENAME COLUMN metadata_cid to content_cid;
ALTER TABLE other_nft_resources RENAME COLUMN metadata_cid to content_cid;
-- Rename column content to json
ALTER table nft_metadata RENAME COLUMN json to content;
CREATE FUNCTION link_nft_asset (-- pk to identify the nft_asset
token_uri_hash nft_asset.token_uri % TYPE, status_text nft_asset.status_text % TYPE, ipfs_url nft_asset.ipfs_url % TYPE, content_cid nft_asset.content_cid % TYPE, metadata nft_metadata.content % TYPE) RETURNS
SETOF nft_asset AS $$
DECLARE
hash nft_asset.token_uri_hash % TYPE;
asset_status_text nft_asset.status_text % TYPE;
asset_ipfs_url nft_asset.ipfs_url % TYPE;
cid nft_metadata.content_cid % TYPE;
image_uri resource .uri % TYPE;
image_uri_hash nft_metadata.image_uri_hash % TYPE;
BEGIN
hash := token_uri_hash;
asset_status_text := status_text;
asset_ipfs_url := ipfs_url;
cid := content_cid;
-- Ensure that there is a matching record to begin with.
IF NOT EXISTS (
SELECT
FROM
nft_asset
WHERE
nft_asset.token_uri_hash = hash
) THEN RAISE
EXCEPTION
'nft asset with token_uri_hash % not found ',
hash;
END IF;
-- Now create a resource associated with an image and capture
-- it's uri_hash.
image_uri := metadata ->> 'image';
IF image_uri IS NOT NULL THEN
INSERT INTO
resource (
uri,
status,
status_text,
ipfs_url,
content_cid
)
VALUES
(
image_uri,
'Queued',
'',
NULL,
NULL
) ON CONFLICT ON CONSTRAINT resource_pkey DO
UPDATE
SET
updated_at = EXCLUDED.updated_at RETURNING resource .uri_hash INTO image_uri_hash;
END IF;
-- Now store nft_metadata or just update the updated_at, everything else
-- supposed to be immutable.
INSERT INTO
nft_metadata (
content_cid,
name,
description,
image_uri_hash,
content
)
VALUES
(
content_cid,
metadata ->> 'name',
metadata ->> 'description',
image_uri_hash,
metadata
) ON CONFLICT ON CONSTRAINT nft_metadata_pkey DO
UPDATE
SET
updated_at = EXCLUDED.updated_at;
-- Next update an nft_asset itself.
UPDATE
nft_asset
SET
status = 'Linked',
status_text = asset_status_text,
ipfs_url = asset_ipfs_url,
content_cid = cid,
updated_at = timezone('utc' :: text, now())
WHERE
nft_asset.token_uri_hash = hash;
RETURN QUERY
SELECT
*
FROM
nft_asset
WHERE
nft_asset.token_uri_hash = hash;
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION ingest_erc721_token (-- Unique token identifier
id nft.id % TYPE, -- ERC721 tokenID (unique within a contract space)
token_id nft.token_id % TYPE, -- ERC721 tokenURI
token_uri nft_asset.token_uri % TYPE, -- ERC721 mintTime
mint_time nft.mint_time % TYPE, -- NFT Contract
contract_id nft.contract_id % TYPE, contract_name blockchain_contract.name % TYPE, contract_symbol blockchain_contract.symbol % TYPE, contract_supports_eip721_metadata blockchain_contract.supports_eip721_metadata % TYPE, -- Block
block_hash blockchain_block.hash % TYPE, block_number blockchain_block.number % TYPE, -- Owner
owner_id nft_ownership.owner_id % TYPE, -- Timestamps
updated_at nft.updated_at % TYPE DEFAULT timezone('utc'::text, now()), inserted_at nft.inserted_at % TYPE DEFAULT timezone('utc'::text, now())) RETURNS
SETOF nft AS $$
DECLARE
token_uri_hash nft.token_uri_hash % TYPE;
nft_id nft.id % TYPE;
BEGIN
nft_id := id;
-- Create a corresponding token_asset record. If one already
-- exists just update it's `update_at` timestamp.
INSERT INTO nft_asset (token_uri, ipfs_url, content_cid, status, status_text)
VALUES (token_uri, NULL, NULL, 'Queued', '')
ON CONFLICT ON CONSTRAINT nft_asset_pkey
DO UPDATE SET
updated_at = EXCLUDED.updated_at
RETURNING
nft_asset.token_uri_hash INTO token_uri_hash;
-- Record the block information if already exists just update the timestamp.
INSERT INTO blockchain_block (hash, number)
VALUES (block_hash, block_number)
ON CONFLICT ON CONSTRAINT blockchain_block_pkey
DO UPDATE SET
updated_at = EXCLUDED.updated_at;
-- Record contract information if already exists just update
-- the date.
INSERT INTO blockchain_contract (id, name, symbol, supports_eip721_metadata)
VALUES (contract_id, contract_name, contract_symbol, contract_supports_eip721_metadata)
ON CONFLICT ON CONSTRAINT blockchain_contract_pkey
DO UPDATE SET
updated_at = EXCLUDED.updated_at;
-- Record owner information
INSERT INTO nft_ownership (nft_id, owner_id, block_number)
VALUES (nft_id, owner_id, block_number)
ON CONFLICT ON CONSTRAINT nft_ownership_pkey
DO UPDATE SET
updated_at = EXCLUDED.updated_at;
-- Record nft
INSERT INTO nft (id, token_id, token_uri_hash, mint_time, contract_id, nft_owner_id)
VALUES (nft_id, token_id, token_uri_hash, mint_time, contract_id, owner_id)
ON CONFLICT ON CONSTRAINT nft_pkey
DO UPDATE SET
updated_at = EXCLUDED.updated_at, nft_owner_id = EXCLUDED.nft_owner_id;
-- Record nft to block association
INSERT INTO nfts_by_blockchain_blocks (blockchain_block_hash, nft_id)
VALUES (block_hash, nft_id)
ON CONFLICT ON CONSTRAINT nfts_by_blockchain_blocks_pkey
DO UPDATE SET
updated_at = EXCLUDED.updated_at;
RETURN QUERY
SELECT
*
FROM
nft
WHERE
nft.id = nft_id;
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION link_nft_resource (-- CID of the metadata
cid nft_metadata.content_cid % TYPE, -- Resource uri found in metadata.
uri resource .uri % TYPE) RETURNS
SETOF resource AS $$
DECLARE
hash resource .uri_hash % TYPE;
BEGIN
-- Create a corresponding resource record
INSERT INTO
Resource (
uri,
status,
status_text,
ipfs_url,
content_cid
)
VALUES
(uri, 'Queued', '', NULL, NULL) --
-- If record for this uri_hash exists
ON CONFLICT ON CONSTRAINT resource_pkey DO
UPDATE
-- update the `update_at` date
SET
updated_at = EXCLUDED.updated_at --
-- and save the `uri_hash`
RETURNING resource .uri_hash INTO hash;
-- Then link nft metadata to a corresponding resource
INSERT INTO
other_nft_resources (content_cid, resource_uri_hash)
VALUES
(cid, hash) --
-- If association already exists
ON CONFLICT ON CONSTRAINT other_nft_resources_pkey DO
UPDATE
-- just update the `updated_at` timestamp
SET
updated_at = EXCLUDED.updated_at;
RETURN QUERY
SELECT
*
FROM
resource
WHERE
resource .uri_hash = hash;
END;
$$ LANGUAGE plpgsql;
CREATE FUNCTION link_resource_content (--
uri_hash resource .uri_hash % TYPE,--
ipfs_url resource .ipfs_url % TYPE,--
dag_size content.dag_size % TYPE, -- Unlike resource table here we require following
-- two columns
cid TEXT, --
status_text TEXT, -- BY default use niftysave cluster
pin_service pin.service % TYPE DEFAULT 'IpfsCluster2') RETURNS
SETOF resource AS $$
DECLARE
hash resource .uri_hash % TYPE;
resource_ipfs_url resource .ipfs_url % TYPE;
pin_id pin.id % TYPE;
status_message resource.status_text % TYPE;
BEGIN
hash := uri_hash;
resource_ipfs_url := ipfs_url;
status_message := status_text;
-- Ensure that non `ContentLinked` resource with this hash exists.
IF NOT EXISTS (
SELECT
FROM
resource
WHERE
resource .uri_hash = hash
) THEN RAISE
EXCEPTION
'resource with uri_hash % does not exists',
hash;
END IF;
-- Create a pin record for the content unless already exists.
INSERT INTO
pin (content_cid, service, status)
VALUES
(cid, pin_service, 'PinQueued')
ON CONFLICT
ON CONSTRAINT pin_content_cid_service_key DO
UPDATE
SET
updated_at = EXCLUDED.updated_at --
-- Capture pin.id
RETURNING pin.id INTO pin_id;
-- Create content record for the resource unless already exists.
INSERT INTO
content (cid, dag_size)
VALUES
(cid, dag_size)
ON CONFLICT
ON CONSTRAINT content_pkey DO
UPDATE
SET
updated_at = EXCLUDED.updated_at;
UPDATE
resource
SET
status = 'ContentLinked',
status_text = status_message,
ipfs_url = resource_ipfs_url,
content_cid = cid,
updated_at = timezone('utc' :: text, now())
WHERE
resource.uri_hash = hash;
RETURN QUERY
SELECT
*
FROM
resource
WHERE
resource .uri_hash = hash;
END;
$$ LANGUAGE plpgsql;
DROP FUNCTION queue_resource;
DROP FUNCTION parse_nft_asset;
|
CREATE TABLE if not exists gems__episodes_of_care (
gec_episode_of_care_id bigint unsigned not null auto_increment,
gec_id_user bigint unsigned not null references gems__respondents (grs_id_user),
gec_id_organization bigint unsigned not null references gems__organizations (gor_id_organization),
gec_source varchar(20) CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' not null default 'manual',
gec_id_in_source varchar(40) CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' null default null,
gec_manual_edit boolean not null default 0,
gec_status varchar(1) CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' not null default 'A',
-- one off A => active, C => Cancelled, E => Error, F => Finished, O => Onhold, P => Planned, W => Waitlist
-- see https://www.hl7.org/fhir/episodeofcare.html
gec_startdate date not null,
gec_enddate date null,
gec_id_attended_by bigint unsigned null references gems__agenda_staff (gas_id_staff),
gec_subject varchar(250) CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' null default null,
gec_comment text CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' null default null,
gec_diagnosis varchar(250) CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' null default null,
gec_diagnosis_data text CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' null default null,
gec_extra_data text CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' null default null,
gec_changed timestamp not null default current_timestamp on update current_timestamp,
gec_changed_by bigint unsigned not null,
gec_created timestamp not null,
gec_created_by bigint unsigned not null,
PRIMARY KEY (gec_episode_of_care_id)
)
ENGINE=InnoDB
auto_increment = 400000
CHARACTER SET 'utf8' COLLATE 'utf8_general_ci';
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.