sql
stringlengths
6
1.05M
<filename>sql/2020/security/sri_coverage_per_page.sql #standardSQL # Subresource integrity: percentage of scripts on a page that have the integrity attribute CREATE TEMP FUNCTION getNumScriptElements(sris ARRAY<STRING>) AS ( (SELECT COUNT(0) FROM UNNEST(sris) AS sri WHERE JSON_EXTRACT_SCALAR(sri, '$.tagname') = 'script') ); SELECT client, percentile, APPROX_QUANTILES(getNumScriptElements(sris) / num_scripts, 1000 IGNORE NULLS)[OFFSET(percentile * 10)] AS integrity_pct FROM ( SELECT _TABLE_SUFFIX AS client, JSON_EXTRACT_ARRAY(JSON_EXTRACT_SCALAR(payload, '$._security'), '$.sri-integrity') AS sris, SAFE_CAST(JSON_EXTRACT_SCALAR(JSON_EXTRACT_SCALAR(payload, '$._element_count'), '$.script') AS INT64) AS num_scripts FROM `httparchive.pages.2020_08_01_*`), UNNEST([10, 25, 50, 75, 90]) AS percentile WHERE getNumScriptElements(sris) > 0 GROUP BY client, percentile ORDER BY client, percentile
<filename>SampleProject/SampleProject.DB/Tables/User.sql CREATE TABLE [dbo].[User] ( [Id] INT NOT NULL PRIMARY KEY IDENTITY, [UserName] NVARCHAR(50) NOT NULL, [FirstName] NVARCHAR(50) NOT NULL, [LastName] NVARCHAR(50) NOT NULL, [Email] VARCHAR(50) NOT NULL, [LastLogin] DATETIME NULL )
use EMISXMaster go if (object_id('PrintMsg') is not null) drop procedure PrintMsg go create procedure PrintMsg ( @Text varchar(8000) ) as raiserror(@Text, 0, 1) with nowait go
alter table ACT_RU_EXECUTION add column CALLBACK_ID_ varchar(191); alter table ACT_RU_EXECUTION add column CALLBACK_TYPE_ varchar(191); update ACT_GE_PROPERTY set VALUE_ = '6.2.0.0' where NAME_ = 'schema.version';
/* Navicat MySQL Data Transfer Source Server : localhost_3306 Source Server Version : 50722 Source Host : localhost:3306 Source Database : function Target Server Type : MYSQL Target Server Version : 50722 File Encoding : 65001 Date: 2018-12-21 00:55:48 */ 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(8) DEFAULT NULL, `code` varchar(8) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of test -- ---------------------------- INSERT INTO `test` VALUES ('1', '测试', '测试');
<filename>jvm/src/test/resources/queries/q15.sql SELECT s_suppkey, s_name, s_address, s_phone, total_revenue FROM supplier, ( SELECT l_suppkey AS supplier_no, sum(l_extendedprice * (1 - l_discount)) AS total_revenue FROM lineitem WHERE l_shipdate >= date'1996-01-01' AND l_shipdate < date'1996-01-01' + interval 3 month GROUP BY supplier_no) revenue0 WHERE s_suppkey = supplier_no AND total_revenue = ( SELECT max(total_revenue) FROM ( SELECT l_suppkey AS supplier_no, sum(l_extendedprice * (1 - l_discount)) AS total_revenue FROM lineitem WHERE l_shipdate >= date'1996-01-01' AND l_shipdate < date'1996-01-01' + interval 3 month GROUP BY supplier_no) revenue1) ORDER BY s_suppkey;
ALTER TABLE thing_transaction ALTER COLUMN date TYPE timestamp without time zone;
use bhrm; DROP TABLE IF EXISTS `applicant_data`; CREATE TABLE `applicant_data` ( `id` int(11) NOT NULL AUTO_INCREMENT, `apd_no` varchar(11) DEFAULT NULL, `apd_masterid` int(11) DEFAULT NULL, `apd_regdate` datetime DEFAULT NULL, `apd_reg_complete_date` datetime DEFAULT NULL, `apd_advno` int(11) DEFAULT NULL, `apd_postcode` varchar(200) DEFAULT NULL, `apd_dateres` varchar(255) DEFAULT NULL, `apd_lastdatecompapp` datetime DEFAULT NULL, `apd_postapplifor` varchar(255) DEFAULT NULL, `apd_depart` varchar(255) DEFAULT NULL, `apd_fieldofspecial` varchar(255) DEFAULT NULL, `apd_categappli` varchar(255) DEFAULT NULL, `apd_fname` varchar(255) DEFAULT NULL, `apd_midname` varchar(255) DEFAULT NULL, `apd_lastname` varchar(255) DEFAULT NULL, `apd_father_husbandname` varchar(255) DEFAULT NULL, `apd_mothername` varchar(255) DEFAULT NULL, `apd_aadharno` int(50) DEFAULT NULL, `apd_correspondenceadd` varchar(500) DEFAULT NULL, `apd_permanantadd` varchar(500) DEFAULT NULL, `apd_dob` date DEFAULT NULL, `apd_dop` date DEFAULT NULL, `apd_agedate` date DEFAULT NULL, `apd_gender` varchar(200) DEFAULT NULL, `apd_category` varchar(200) DEFAULT NULL, `apd_disability` varchar(200) DEFAULT NULL, `apd_maritialstatus` varchar(200) DEFAULT NULL, `apd_nationality` varchar(200) DEFAULT NULL, `apd_religion` varchar(200) DEFAULT NULL, `apd_remark` varchar(255) DEFAULT NULL, `apd_ext1` varchar(200) DEFAULT NULL, `apd_ext2` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; CREATE TABLE `applicant_api` ( `id` int(11) NOT NULL AUTO_INCREMENT, `applicant_id` int(11) DEFAULT NULL, `app_category` varchar(255) DEFAULT NULL, `app_catname` varchar(255) DEFAULT NULL, `app_subcategory` varchar(255) DEFAULT NULL, `app_activities` varchar(255) DEFAULT NULL, `app_maximumscore` varchar(255) DEFAULT NULL, `app_noofarticle` varchar(255) DEFAULT NULL, `app_scoreclaimed` varchar(255) DEFAULT NULL, `app_scoreverified` varchar(255) DEFAULT NULL, `app_varifiername` varchar(255) DEFAULT NULL, `app_varifydate` varchar(255) DEFAULT NULL, `app_remark` varchar(255) DEFAULT NULL, `app_ext1` varchar(200) DEFAULT NULL, `app_ext2` varchar(200) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; CREATE TABLE `applicant_performance` ( `aperfor_id` int(11) NOT NULL AUTO_INCREMENT, `aperfor_amid` int(11) DEFAULT NULL, `aperfor_teachexp` varchar(255) DEFAULT NULL, `aperfor_from` varchar(255) DEFAULT NULL, `aperfor_to` varchar(255) DEFAULT NULL, `aperfor_totalyearmonth` varchar(255) DEFAULT NULL, `aperfor_remark` varchar(255) DEFAULT NULL, `aperfor_ext1` varchar(255) DEFAULT NULL, `aperfor_ext2` varchar(255) DEFAULT NULL, PRIMARY KEY (`aperfor_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; CREATE TABLE `applicant_research` ( `ares_id` int(11) NOT NULL AUTO_INCREMENT, `ares_amid` int(11) DEFAULT NULL, `ares_researchproj` int(11) DEFAULT NULL, `ares_phd_thesisaward` varchar(255) DEFAULT NULL, `ares_phd_submitted` varchar(255) DEFAULT NULL, `ares_phd_inprogress` varchar(255) DEFAULT NULL, `ares_mphill_thesisaward` varchar(255) DEFAULT NULL, `ares_mphill_submitted` varchar(255) DEFAULT NULL, `ares_mphill_inprogress` varchar(255) DEFAULT NULL, `ares_pmah` varchar(255) DEFAULT NULL, `ares_remark` varchar(255) DEFAULT NULL, `ares_ext1` varchar(255) DEFAULT NULL, `ares_ext2` varchar(255) DEFAULT NULL, PRIMARY KEY (`ares_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; CREATE TABLE `applicant_research_degree` ( `aresdeg_id` int(11) NOT NULL AUTO_INCREMENT, `aresdeg_amid` int(11) DEFAULT NULL, `aresdeg_degreename` varchar(255) DEFAULT NULL, `aresdeg_universityname` varchar(500) DEFAULT NULL, `aresdeg_dateofsubmission` datetime DEFAULT NULL, `aresdeg_dateofaward` datetime DEFAULT NULL, `aresdeg_titleofthesis` varchar(255) DEFAULT NULL, `aresdeg_asper_ugc_reg_2009` varchar(255) DEFAULT NULL, `aresdeg_remark` varchar(255) DEFAULT NULL, `aresdeg_ext1` varchar(255) DEFAULT NULL, `aresdeg_ext2` varchar(255) DEFAULT NULL, PRIMARY KEY (`aresdeg_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; CREATE TABLE `applicant_supportdata` ( `asuppd_id` int(11) NOT NULL AUTO_INCREMENT, `asuppd_amid` int(11) DEFAULT NULL, `aperfor_8a` varchar(255) DEFAULT NULL, `aperfor_8b` varchar(255) DEFAULT NULL, `aperfor_8c` varchar(255) DEFAULT NULL, `aperfor_8d` varchar(255) DEFAULT NULL, `aperfor_8e` varchar(255) DEFAULT NULL, `aperfor_9a` varchar(255) DEFAULT NULL, `aperfor_9b` varchar(255) DEFAULT NULL, `aperfor_9c` varchar(255) DEFAULT NULL, `aperfor_9d` varchar(255) DEFAULT NULL, `aperfor_9e` varchar(255) DEFAULT NULL, `aperfor_10i` varchar(255) DEFAULT NULL, `aperfor_10ii` varchar(255) DEFAULT NULL, `aperfor_10iii` varchar(255) DEFAULT NULL, `aperfor_11` varchar(255) DEFAULT NULL, PRIMARY KEY (`asuppd_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; CREATE TABLE `applicant_total_api` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ata_applicantid` int(11) DEFAULT NULL, `ata_apicategory` varchar(255) DEFAULT NULL, `ata_scoreclaimed` varchar(200) DEFAULT NULL, `ata_scoreverified` varchar(255) DEFAULT NULL, `ata_verifiername` varchar(255) DEFAULT NULL, `ata_verifierdate` varchar(255) DEFAULT NULL, `ata_remark` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; CREATE TABLE `applicant_uploaddata` ( `aupd_id` int(11) NOT NULL AUTO_INCREMENT, `aupd_amid` int(11) DEFAULT NULL, `aupd_enclosure1` varchar(255) DEFAULT NULL, `aupd_enclosure2` varchar(255) DEFAULT NULL, `aupd_enclosure3` varchar(255) DEFAULT NULL, `aupd_enclosure4` varchar(255) DEFAULT NULL, `aupd_enclosure5` varchar(255) DEFAULT NULL, `aupd_enclosure6` varchar(255) DEFAULT NULL, `aupd_enclosure7` varchar(255) DEFAULT NULL, `aupd_enclosure8` varchar(255) DEFAULT NULL, `aupd_enclosure9` varchar(255) DEFAULT NULL, `aupd_enclosure10` varchar(255) DEFAULT NULL, `aupd_enclosure11` varchar(255) DEFAULT NULL, `aupd_enclosure12` varchar(255) DEFAULT NULL, `aupd_enclosure13` varchar(255) DEFAULT NULL, `aupd_enclosure14` varchar(255) DEFAULT NULL, `aupd_enclosure15` varchar(255) DEFAULT NULL, `aupd_uploaddeclaration` varchar(255) DEFAULT NULL, `aupd_uploadnoc` varchar(255) DEFAULT NULL, `aupd_photo` varchar(500) DEFAULT NULL, `aupd_signature` varchar(500) DEFAULT NULL, PRIMARY KEY (`aupd_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; CREATE TABLE `form_shortname` ( `form_id` int(11) NOT NULL AUTO_INCREMENT, `form_advno` varchar(255) DEFAULT NULL, `form_code` varchar(255) DEFAULT NULL, `form_shortname` varchar(255) DEFAULT NULL, `form_name` varchar(255) DEFAULT NULL, `form_posttype` varchar(255) DEFAULT NULL, PRIMARY KEY (`form_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; CREATE TABLE `job_open` ( `job_id` int(11) NOT NULL AUTO_INCREMENT, `job_vacnacycode` varchar(255) DEFAULT NULL, `job_adverno` varchar(255) NOT NULL, `job_postcode` varchar(50) DEFAULT NULL, `job_nameofpost` varchar(255) NOT NULL, `job_department` varchar(255) NOT NULL, `job_vacancytotal` int(5) NOT NULL, `job_vacancysc` int(3) NOT NULL, `job_vacancyst` int(3) NOT NULL, `job_vacancyobc` int(3) NOT NULL, `job_vacancyur` int(3) NOT NULL, `job_vacancypwd` int(3) NOT NULL, `job_gradepay` varchar(255) NOT NULL, `job_emoluments` varchar(255) NOT NULL, `job_agelimit` varchar(255) NOT NULL, `job_group` varchar(100) NOT NULL, `job_essential` blob NOT NULL, `job_experience` blob NOT NULL, `job_desirable` blob NOT NULL, `job_responsibles` blob NOT NULL, `job_startdateonlineform` datetime NOT NULL, `job_lastdateonlineform` datetime NOT NULL, `job_lastdateformreach` datetime NOT NULL, PRIMARY KEY (`job_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
<reponame>estibent10/BD-Universidades --FUNCION PARA MOSTRAR REGISTRO POR ID Y MOSTRAR SOLO LOS ACTIVOS CREATE FUNCTION FN_Carreras_SeleccionarPorId ( @CodigoCarrera INT ) RETURNS TABLE AS RETURN SELECT * FROM Carreras WHERE CodigoCarrera = @CodigoCarrera AND Activo = 1
<filename>Education/SQL/2_Default.sql /****** Script for SelectTopNRows command from SSMS ******/ SELECT * FROM [master].[dbo].[Persons] SELECT * FROM [master].[dbo].[Persons] where Ratio <3 SELECT * FROM [master].[dbo].[Persons] where Loyalty <3
INSERT INTO Customer (CustomerID, CustomerName, CustomerAddress, CustomerMobile) OUTPUT inserted.* VALUES (1, 'John', 'Paris', '1111111111') , (2, 'Kiya', 'London', '2222222222') , (3, 'Reema', 'India', '3333333333') INSERT INTO Customer (CustomerID, CustomerName, CustomerAddress, CustomerMobile) OUTPUT inserted.CustomerID, inserted.CustomerName VALUES (1, 'John', 'Paris', '1111111111') , (2, 'Kiya', 'London', '2222222222') , (3, 'Reema', 'India', '3333333333')
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!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 `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `id` INT NOT NULL AUTO_INCREMENT, `username` VARCHAR(100) NOT NULL, PRIMARY KEY (`id`) ); /*!40101 SET character_set_client = @saved_cs_client */; DROP TABLE IF EXISTS `public_keys`; CREATE TABLE `public_keys` ( `user_id` INT NOT NULL, `device_name` VARCHAR(128) NOT NULL, `key` VARCHAR(2048) NOT NULL ); CREATE INDEX user_keys ON public_keys(user_id);
<gh_stars>0 alter table yoto rename column A29_001 to divison_code; alter table yoto rename column A29_002 to pref; alter table yoto rename column A29_003 to city; alter table yoto rename column A29_004 to yoto_id; alter table yoto rename column A29_005 to yoto; alter table yoto rename column A29_006 to coverage; alter table yoto rename column A29_007 to floor_area_ratio; alter table yoto rename column A29_008 to reference; alter table yoto rename column A29_009 to created_at; alter table yoto rename column A29_010 to memo;
INSERT INTO department (name) VALUES ('sales'), ('engineering'), ('finance'), ('hr'); INSERT INTO role (title, salary, department_id) VALUES ('salesperson', 10000.00, 1), ('Engineer', 20000.00, 2), ('C-suite', 50000.00, 3); INSERT INTO employee (first_name, last_name, role_id, manager_id) VALUES ('Joe', 'Smo', 3, NULL), ('anthony', 'g', 2, 1);
<filename>seeders/schema.sql -- Drops the vre if it exists currently -- DROP DATABASE IF EXISTS vre; -- Creates the "vre" database -- CREATE DATABASE vre;
select a.Id from Weather as a join Weather as b on a.Date=date_add(b.Date, interval 1 day) where a.Temperature>b.Temperature;
-- Create a new table called '[DataJson]' in schema '[dbo]' -- Drop the table if it already exists IF OBJECT_ID('[dbo].[DataJson]', 'U') IS NOT NULL DROP TABLE [dbo].[DataJson] GO -- Create the table in the specified schema CREATE TABLE [dbo].[DataJson] ( [Id] INT NOT NULL IDENTITY(1,1) PRIMARY KEY, -- Primary Key column [DataSetId] INT NOT NULL FOREIGN KEY REFERENCES dbo.DataSet(Id), [Stamp] DATETIME NOT NULL, [Draft] BIT NOT NULL, [Json] NVARCHAR(MAX) NOT NULL ); GO -- Create a new stored procedure called 'GetData' in schema 'dbo' -- Drop the stored procedure if it already exists IF EXISTS ( SELECT * FROM INFORMATION_SCHEMA.ROUTINES WHERE SPECIFIC_SCHEMA = N'dbo' AND SPECIFIC_NAME = N'GetData' AND ROUTINE_TYPE = N'PROCEDURE' ) DROP PROCEDURE dbo.GetData GO -- Create the stored procedure in the specified schema CREATE PROCEDURE dbo.GetData AS BEGIN SELECT * FROM dbo.DataCategory SELECT * FROM dbo.DataSet SELECT * FROM dbo.DataJson END GO -- example to execute the stored procedure we just created EXECUTE dbo.GetData GO -- Create a new stored procedure called 'InsertDataJson' in schema 'dbo' -- Drop the stored procedure if it already exists IF EXISTS ( SELECT * FROM INFORMATION_SCHEMA.ROUTINES WHERE SPECIFIC_SCHEMA = N'dbo' AND SPECIFIC_NAME = N'InsertDataJson' AND ROUTINE_TYPE = N'PROCEDURE' ) DROP PROCEDURE dbo.InsertDataJson GO -- Create the stored procedure in the specified schema CREATE PROCEDURE dbo.InsertDataJson @DataSetId INT, @Stamp DATETIME, @Json NVARCHAR(MAX) AS BEGIN INSERT INTO dbo.DataJson (DataSetId, Stamp, Draft, [Json]) VALUES(@DataSetId, @Stamp, 0, @Json) END GO -- Create a new stored procedure called 'GetDataJson' in schema 'dbo' -- Drop the stored procedure if it already exists IF EXISTS ( SELECT * FROM INFORMATION_SCHEMA.ROUTINES WHERE SPECIFIC_SCHEMA = N'dbo' AND SPECIFIC_NAME = N'GetDataJson' AND ROUTINE_TYPE = N'PROCEDURE' ) DROP PROCEDURE dbo.GetDataJson GO -- Create the stored procedure in the specified schema CREATE PROCEDURE dbo.GetDataJson @Filename VARCHAR(50) AS BEGIN SELECT TOP 1 DJ.* FROM DataJson DJ JOIN DataSet DS ON DS.Id = DJ.DataSetId WHERE DS.[Filename] = @Filename AND DJ.Draft = 0 ORDER BY DJ.Stamp DESC END GO -- example to execute the stored procedure we just created EXECUTE dbo.GetDataJson 1 GO
<filename>sms sql databse/sms.sql -- phpMyAdmin SQL Dump -- version 4.8.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Sep 28, 2018 at 07:02 AM -- Server version: 10.1.34-MariaDB -- PHP Version: 7.2.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: `sms` -- -- -------------------------------------------------------- -- -- Table structure for table `number_link` -- CREATE TABLE `number_link` ( `offer_id` int(100) UNSIGNED NOT NULL, `phone` varchar(100) NOT NULL, `link` varchar(500) NOT NULL, `short_link` varchar(200) NOT NULL, `message` text NOT NULL, `status` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `number_link` -- INSERT INTO `number_link` (`offer_id`, `phone`, `link`, `short_link`, `message`, `status`) VALUES (66, '4455663344', 'https://www.google.com/', 'http://[::1]/project/home/sms/66', 'please click this link.http://[::1]/project/home/sms/66', 1), (72, '9616003385', 'http://[::1]/project/index.php/welcome', 'http://[::1]/project/home/sms/72', 'your link is http://[::1]/project/home/sms/72 . Please click above link.', 1), (82, '3355884411', 'https://www.formget.com/php-rest-api/', 'http://[::1]/project/home/sms/82', 'please click this link http://[::1]/project/home/sms/82 to get to the orignal url.', 0), (84, '4465879632', 'https://www.formget.com/php-rest-api/', 'http://[::1]/project/home/sms/84', 'please click this link http://[::1]/project/home/sms/84 to get to the orignal url.', 0), (85, '7896541236', 'https://www.formget.com/php-rest-api/', 'http://[::1]/project/home/sms/85', 'please click this link http://[::1]/project/home/sms/85 to get to the orignal url.', 0), (86, '3355884411', 'https://www.formget.com/php-rest-api/', 'http://[::1]/project/home/sms/86', 'please click this link http://[::1]/project/home/sms/86 to get to the orignal url.', 0), (87, '7788994465', 'https://www.formget.com/php-rest-api/', 'http://[::1]/project/home/sms/87', 'please click this link http://[::1]/project/home/sms/87 to get to the orignal url.', 0), (88, '4465879632', 'https://www.formget.com/php-rest-api/', 'http://[::1]/project/home/sms/88', 'please click this link http://[::1]/project/home/sms/88 to get to the orignal url.', 0), (89, '7896541236', 'https://www.formget.com/php-rest-api/', 'http://[::1]/project/home/sms/89', 'please click this link http://[::1]/project/home/sms/89 to get to the orignal url.', 0), (91, '7788994465', 'https://www.formget.com/php-rest-api/', 'http://[::1]/project/home/sms/91', 'please click this link http://[::1]/project/home/sms/91 to get to the orignal url.', 0), (92, '4465879632', 'https://www.formget.com/php-rest-api/', 'http://[::1]/project/home/sms/92', 'please click this link http://[::1]/project/home/sms/92 to get to the orignal url.', 0), (93, '7896541236', 'https://www.formget.com/php-rest-api/', 'http://[::1]/project/home/sms/93', 'please click this link http://[::1]/project/home/sms/93 to get to the orignal url.', 0), (94, '3355884411', 'https://www.formget.com/php-rest-api/', 'http://[::1]/project/home/sms/94', 'please click this link http://[::1]/project/home/sms/94 to get to the orignal url.', 0), (95, '7788994465', 'https://www.formget.com/php-rest-api/', 'http://[::1]/project/home/sms/95', 'please click this link http://[::1]/project/home/sms/95 to get to the orignal url.', 0), (96, '4465879632', 'https://www.formget.com/php-rest-api/', 'http://[::1]/project/home/sms/96', 'please click this link http://[::1]/project/home/sms/96 to get to the orignal url.', 0), (97, '7896541236', 'https://www.formget.com/php-rest-api/', 'http://[::1]/project/home/sms/97', 'please click this link http://[::1]/project/home/sms/97 to get to the orignal url.', 0), (106, '9889050601', 'https://code.tutsplus.com/tutorials/working-with-restful-services-in-codeigniter--net-8814', 'http://[::1]/project/home/sms/106', 'please, click this link http://[::1]/project/home/sms/106', 1), (107, '8784452110', 'https://code.tutsplus.com/tutorials/working-with-restful-services-in-codeigniter--net-8814', 'http://[::1]/project/home/sms/107', 'please, click this link http://[::1]/project/home/sms/107', 0), (108, '8700988904', 'https://www.w3schools.com/python/python_lists.asp', 'http://localhost/project/home/sms/108', 'please cick this link http://localhost/project/home/sms/108 ', 1), (109, '4455667788', 'https://www.w3schools.com/python/python_lists.asp', 'http://localhost/project/home/sms/109', 'please cick this link http://localhost/project/home/sms/109 ', 0); -- -- Indexes for dumped tables -- -- -- Indexes for table `number_link` -- ALTER TABLE `number_link` ADD PRIMARY KEY (`offer_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `number_link` -- ALTER TABLE `number_link` MODIFY `offer_id` int(100) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=110; 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>dc-cudami-server/dc-cudami-server-backend-jdbi/src/main/resources/de/digitalcollections/cudami/server/backend/impl/database/migration/V1.0.15__DDL_sortIndex_for_Contenttrees_Contentnodes.sql ALTER TABLE contenttree_contentnode ADD COLUMN sortIndex SMALLINT; UPDATE contenttree_contentnode SET sortIndex = (ctid::text::point)[1]::smallint;
<filename>egov/egov-collection/src/main/resources/db/migration/main/V20190725143311__collection_approver_remittermap_DDL.sql CREATE TABLE egcl_approver_remitter ( id BIGINT NOT NULL, approver BIGINT NOT NULL REFERENCES eg_user(id), remitter BIGINT NOT NULL REFERENCES eg_user(id), isactive BOOLEAN NOT NULL DEFAULT TRUE, createdby BIGINT, createddate TIMESTAMP WITHOUT TIME ZONE, lastmodifiedby BIGINT, lastmodifieddate TIMESTAMP WITHOUT TIME ZONE, version BIGINT, CONSTRAINT pk_egcl_approver_remitter PRIMARY KEY(id), CONSTRAINT key_egcl_approver_remitter UNIQUE(approver, remitter)); CREATE SEQUENCE seq_egcl_approver_remitter START WITH 1 INCREMENT BY 1;
-- 2018-01-31T14:57:19.980 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ SELECT public.db_alter_table('M_Product','ALTER TABLE public.M_Product ADD COLUMN M_ProductPlanningSchema_Selector CHAR(1)') ;
-- 2021-08-09T11:46:56.311Z -- URL zum Konzept UPDATE M_Material_Balance_Config SET Name='Standard',Updated=TO_TIMESTAMP('2021-08-09 13:46:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE M_Material_Balance_Config_ID=540000 ;
CREATE OR REPLACE PROCEDURE p_get_results_for_season ( v_year seasons.year%TYPE ) IS TYPE info IS RECORD ( driver VARCHAR2(512), team constructors.name%TYPE, started results.grid_position%TYPE, finished results.position_text%TYPE, points results.points%TYPE, status VARCHAR2(255) ); TYPE type_vec_info IS VARRAY(50) OF info; TYPE type_map_gp IS TABLE OF type_vec_info INDEX BY VARCHAR2(255); v_gp type_map_gp; v_index VARCHAR2(255); CURSOR c_results IS SELECT r.race_name AS race, d.first_name || ' ' || d.last_name AS driver, c.name AS team, res.grid_position AS started, decode(res.position, NULL, res.position_text, res.position) AS finished, res.points AS points, s.status AS status FROM results res JOIN races r ON ( res.race_id = r.race_id ) JOIN drivers d ON ( d.driver_id = res.driver_id ) JOIN constructors c ON ( c.constructor_id = res.constructor_id ) JOIN status s ON ( s.status_id = res.status_id ) WHERE r.race_year = v_year ORDER BY 1, 6 DESC; BEGIN FOR i IN c_results LOOP IF NOT v_gp.EXISTS(i.race) THEN v_gp(i.race) := type_vec_info(); END IF; v_gp(i.race).extend(1); v_gp(i.race)(v_gp(i.race).last).driver := i.driver; v_gp(i.race)(v_gp(i.race).last).team := i.team; v_gp(i.race)(v_gp(i.race).last).started := i.started; v_gp(i.race)(v_gp(i.race).last).finished := i.finished; v_gp(i.race)(v_gp(i.race).last).points := i.points; v_gp(i.race)(v_gp(i.race).last).status := i.status; END LOOP; v_index := v_gp.first; WHILE v_index IS NOT NULL LOOP dbms_output.put_line(v_index || ':'); FOR i IN v_gp(v_index).first..v_gp(v_index).last LOOP dbms_output.put_line(' ' || i || '. ' || v_gp(v_index)(i).driver || '(' || v_gp(v_index)(i).team || ')' || ' started: ' || v_gp(v_index)(i).started || ', finished: ' || v_gp(v_index)(i).finished || ', points: ' || v_gp(v_index)(i).points || ', status: ' || v_gp(v_index)(i).status); END LOOP; v_index := v_gp.next(v_index); END LOOP; END; / BEGIN p_get_results_for_season(2020); p_get_results_for_season(2022); --> No results, no exceptions raised END; /
library Current_Severity_-_D_-_Labs_and_Dx version '0.0.1' include COVID19_ED_CPG_Situational_Data version '0.0.1' called Situational Data Definitions /* Mapped from Decision 'Current Troponin - Value of' | expression type = TLiteralExpression */ define "Current Troponin - Value of": Situational Data Definitions.Covid19 Diagnostic Features.currentTroponinLevelValue /* Mapped from Decision 'Current D-Dimer - Value of' | expression type = TLiteralExpression */ define "Current D-Dimer - Value of": Situational Data Definitions.Covid19 Diagnostic Features.currentDDimerValue /* Mapped from Decision 'Current Lactate - Value of' | expression type = TLiteralExpression */ define "Current Lactate - Value of": Situational Data Definitions.Covid19 Diagnostic Features.currentLactateValue /* Mapped from Decision 'Current LDH - Value of' | expression type = TLiteralExpression */ define "Current LDH - Value of": Situational Data Definitions.Covid19 Diagnostic Features.currentLDHValue /* Mapped from Decision 'Current CRP - Value of' | expression type = TLiteralExpression */ define "Current CRP - Value of": Situational Data Definitions.Covid19 Diagnostic Features.currentCRPValue /* Mapped from Decision 'Current Lymphocyte Count - Value of' | expression type = TLiteralExpression */ define "Current Lymphocyte Count - Value of": Situational Data Definitions.Covid19 Diagnostic Features.currentLymphocyteCountValue /* Mapped from Decision 'Current CXR Score - Value of' | expression type = TLiteralExpression */ define "Current CXR Score - Value of": Situational Data Definitions.Covid19 Diagnostic Features.currentCXRScoreValue /* Mapped from Decision 'Current Severity of Covid19 - Kind of -- Diagnostics' | expression type = TDecisionTable */ define "Current Severity of Covid19 - Kind of -- Diagnostics_0": if "Current Severity of Covid19 - Kind of -- Diagnostics_0_Precondition" then "Critical" else null define "Current Severity of Covid19 - Kind of -- Diagnostics_0_Precondition": "Current Lactate - Value of" = >= 4 define "Current Severity of Covid19 - Kind of -- Diagnostics_1": if "Current Severity of Covid19 - Kind of -- Diagnostics_1_Precondition" then "Severe" else null define "Current Severity of Covid19 - Kind of -- Diagnostics_1_Precondition": "Current CXR Score - Value of" = >= 3 define "Current Severity of Covid19 - Kind of -- Diagnostics_2": if "Current Severity of Covid19 - Kind of -- Diagnostics_2_Precondition" then "Severe" else null define "Current Severity of Covid19 - Kind of -- Diagnostics_2_Precondition": IsTrue( "Has Bilateral Pneumonia - Is" ) define "Current Severity of Covid19 - Kind of -- Diagnostics_3": if "Current Severity of Covid19 - Kind of -- Diagnostics_3_Precondition" then "Severe" else null define "Current Severity of Covid19 - Kind of -- Diagnostics_3_Precondition": IsTrue( "Has RV Enlargement - Is" ) define "Current Severity of Covid19 - Kind of -- Diagnostics_4": if "Current Severity of Covid19 - Kind of -- Diagnostics_4_Precondition" then "Severe" else null define "Current Severity of Covid19 - Kind of -- Diagnostics_4_Precondition": "Abnormal Labs - Count of" = >= 1 define "Current Severity of Covid19 - Kind of -- Diagnostics_5": if "Current Severity of Covid19 - Kind of -- Diagnostics_5_Precondition" then "Moderate" else null define "Current Severity of Covid19 - Kind of -- Diagnostics_5_Precondition": "Current CXR Score - Value of" = 2 define "Current Severity of Covid19 - Kind of -- Diagnostics_6": "Mild Low Risk" define "Current Severity of Covid19 - Kind of -- Diagnostics" : Coalesce( "Current Severity of Covid19 - Kind of -- Diagnostics_0","Current Severity of Covid19 - Kind of -- Diagnostics_1","Current Severity of Covid19 - Kind of -- Diagnostics_2","Current Severity of Covid19 - Kind of -- Diagnostics_3","Current Severity of Covid19 - Kind of -- Diagnostics_4","Current Severity of Covid19 - Kind of -- Diagnostics_5","Current Severity of Covid19 - Kind of -- Diagnostics_6" ) /* Mapped from Decision 'Abnormal Labs - Count of' | expression type = TContext */ define "Abnormal Labs_0": if "Abnormal Labs_0_Precondition" then "Elevated Troponin" else null define "Abnormal Labs_0_Precondition": "Current Troponin - Value of" = > 99 define "Abnormal Labs_1": if "Abnormal Labs_1_Precondition" then "Elevated D-Dimer" else null define "Abnormal Labs_1_Precondition": "Current D-Dimer - Value of" = >= 1 define "Abnormal Labs_2": if "Abnormal Labs_2_Precondition" then "Lymphopenia" else null define "Abnormal Labs_2_Precondition": "Current Lymphocyte Count - Value of" = < 0.8 define "Abnormal Labs_3": if "Abnormal Labs_3_Precondition" then "Low LDH" else null define "Abnormal Labs_3_Precondition": "Current LDH - Value of" = > 250 define "Abnormal Labs_4": if "Abnormal Labs_4_Precondition" then "Elevated CRP" else null define "Abnormal Labs_4_Precondition": "Current CRP - Value of" = >= 125 define "Abnormal Labs_5": if "Abnormal Labs_5_Precondition" then "Elevated Creatinine" else null define "Abnormal Labs_5_Precondition": "Current Creatinine - Value of" = > 133 define "Abnormal Labs_6": if "Abnormal Labs_6_Precondition" then "Elevated ALT" else null define "Abnormal Labs_6_Precondition": "Current ALT - Value of" = > 40 define "Abnormal Labs_7": if "Abnormal Labs_7_Precondition" then "Elevated AST" else null define "Abnormal Labs_7_Precondition": "Current AST - Value of" = > 40 define "Abnormal Labs_8": if "Abnormal Labs_8_Precondition" then "Neutrophils" else null define "Abnormal Labs_8_Precondition": "Current Neutrophils Count - Value of" = > 8000 define "Abnormal Labs_9": if "Abnormal Labs_9_Precondition" then "Thrombocytopenia" else null define "Abnormal Labs_9_Precondition": "Current Platelet Count - Value of" = < 150000 define "Abnormal Labs_10": if "Abnormal Labs_10_Precondition" then "Elevated WBC" else null define "Abnormal Labs_10_Precondition": "Current WBC Count - Value of" = > 10000 define "Abnormal Labs_11": if "Abnormal Labs_11_Precondition" then "Elevated Ferritin" else null define "Abnormal Labs_11_Precondition": "Current Ferritin - Value of" = > 300 define "Abnormal Labs" : "Abnormal Labs_0","Abnormal Labs_1","Abnormal Labs_2","Abnormal Labs_3","Abnormal Labs_4","Abnormal Labs_5","Abnormal Labs_6","Abnormal Labs_7","Abnormal Labs_8","Abnormal Labs_9","Abnormal Labs_10","Abnormal Labs_11" define "Abnormal Labs - Count of": count(Abnormal Labs) /* Mapped from Decision 'Current Creatinine - Value of' | expression type = TLiteralExpression */ define "Current Creatinine - Value of": Situational Data Definitions.Covid19 Diagnostic Features.currentCreatinineValue /* Mapped from Decision 'Current ALT - Value of' | expression type = TLiteralExpression */ define "Current ALT - Value of": Situational Data Definitions.Covid19 Diagnostic Features.currentALTValue /* Mapped from Decision 'Current AST - Value of' | expression type = TLiteralExpression */ define "Current AST - Value of": Situational Data Definitions.Covid19 Diagnostic Features.currentASTValue /* Mapped from Decision 'Current WBC Count - Value of' | expression type = TLiteralExpression */ define "Current WBC Count - Value of": Situational Data Definitions.Covid19 Diagnostic Features.currentWBCCountValue /* Mapped from Decision 'Current Neutrophils Count - Value of' | expression type = TLiteralExpression */ define "Current Neutrophils Count - Value of": Situational Data Definitions.Covid19 Diagnostic Features.currentNeutrophilsCountValue /* Mapped from Decision 'Current Platelet Count - Value of' | expression type = TLiteralExpression */ define "Current Platelet Count - Value of": Situational Data Definitions.Covid19 Diagnostic Features.currentPlateletCountValue /* Mapped from Decision 'Current Ferritin - Value of' | expression type = TLiteralExpression */ define "Current Ferritin - Value of": Situational Data Definitions.Covid19 Diagnostic Features.currentFerritinValue
<filename>data/sqlserver.sql CREATE DATABASE deb; GO USE deb; GO EXEC sys.sp_cdc_enable_db; GO DROP TABLE IF EXISTS sqlserver_types; GO CREATE TABLE sqlserver_types ( t_null VARCHAR(2), t_bigint BIGINT, t_int INT, t_smallint SMALLINT, t_tinyint TINYINT, t_float FLOAT, t_real REAL, t_decimal DECIMAL(5, 2), t_numeric NUMERIC(10, 5), t_bit BIT, t_smallmoney SMALLMONEY, t_money MONEY, t_char CHAR(10), t_varchar VARCHAR(10), t_nchar NCHAR(10), t_nvarchar NVARCHAR(10), t_text TEXT, t_ntext NTEXT, t_time TIME, t_date DATE, t_smalldatetime SMALLDATETIME, t_datetime DATETIME, t_datetime2 DATETIME2, t_datetimeoffset DATETIMEOFFSET, ); GO INSERT INTO sqlserver_types ( t_null, t_bigint, t_int, t_smallint, t_tinyint, t_float, t_real, t_decimal, t_numeric, t_bit, t_smallmoney, t_money, t_char, t_varchar, t_nchar, t_nvarchar, t_text, t_ntext, t_time, t_date, t_smalldatetime, t_datetime, t_datetime2, t_datetimeoffset ) VALUES ( NULL, 1, 2147483647, 32767, 255, 12345.12345, 12345.12345, 123.456, 12345.12345, 1, 3148.2929, 3148.1234, 'test', 'test', 'test', 'test', 'test', 'test', '12:35:29.1234567', '2007-05-08', '2007-05-08 12:35:00', '2007-05-08 12:35:29.123', '2007-05-08 12:35:29.1234567', '2007-05-08 12:35:29.1234567 +12:15' ); GO INSERT INTO sqlserver_types ( t_null, t_bigint, t_int, t_smallint, t_tinyint, t_float, t_real, t_decimal, t_numeric, t_bit, t_smallmoney, t_money, t_char, t_varchar, t_nchar, t_nvarchar, t_text, t_ntext, t_time, t_date, t_smalldatetime, t_datetime, t_datetime2, t_datetimeoffset ) VALUES ( NULL, 9223372036854775807, 2147483647, 32767, 255, 12345.12345, 12345.12345, 123.456, 12345.12345, 1, 3148.2929, 3148.1234, 'test', 'test', 'test', 'test', 'test', 'test', '12:35:29.1234567', '2007-05-08', '2007-05-08 12:35:00', '2007-05-08 12:35:29.123', '2007-05-08 12:35:29.1234567', '2007-05-08 12:35:29.1234567 +12:15' ); GO INSERT INTO sqlserver_types ( t_null, t_bigint, t_int, t_smallint, t_tinyint, t_float, t_real, t_decimal, t_numeric, t_bit, t_smallmoney, t_money, t_char, t_varchar, t_nchar, t_nvarchar, t_text, t_ntext, t_time, t_date, t_smalldatetime, t_datetime, t_datetime2, t_datetimeoffset ) VALUES ( NULL, 9223372036854775807, 2147483647, 32767, 255, 12345.12345, 12345.12345, 123.456, 12345.12345, 1, 3148.2929, 3148.1234, 'test', 'test', 'test', 'test', 'test', 'test', '12:35:29.1234567', '2007-05-08', '2007-05-08 12:35:00', '2007-05-08 12:35:29.123', '2007-05-08 12:35:29.1234567', '2007-05-08 12:35:29.1234567 +12:15' ); GO DELETE FROM sqlserver_types WHERE t_bigint = 1; GO
<filename>EdFi.Ods.Utilities.Migration/Scripts/MsSql/02Upgrade/v24_to_v25/09 Update Existing Tables/10720 AssessmentFamily.sql -- SPDX-License-Identifier: Apache-2.0 -- Licensed to the Ed-Fi Alliance under one or more agreements. -- The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0. -- See the LICENSE and NOTICES files in the project root for more information. PRINT N'Altering [edfi].[AssessmentFamily]' GO ALTER TABLE [edfi].[AssessmentFamily] ALTER COLUMN [AssessmentFamilyTitle] [nvarchar] (100) NOT NULL GO ALTER TABLE [edfi].[AssessmentFamily] ALTER COLUMN [ParentAssessmentFamilyTitle] [nvarchar] (100) NULL GO
<filename>infrastructure/github/database/schema.sql<gh_stars>0 create database if not exists github_info; create table comment ( id int not null, issue_id int not null, body longtext not null, primary key (id, issue_id) ); create table pull_request_comment ( id int not null, pull_request_id int not null, body longtext not null, primary key (id, pull_request_id) ); create table issue ( id int not null primary key, number int not null, repository_id int not null, closed tinyint(1) not null, closed_at datetime null, closed_week datetime null , created_at datetime not null, created_week datetime not null, title varchar(1000) not null, url varchar(1000) not null, constraint issue_number_repository_id_uindex unique (number, repository_id) ); create table issue_team ( issue_id int not null, team_id int not null, primary key (issue_id, team_id) ); create table issue_version_fixed ( issue_id int not null, version_id int not null, primary key (issue_id,version_id) ); create table issue_version_affected ( issue_id int not null, version_id int not null, primary key (issue_id,version_id) ); create table pull_request ( id int not null primary key, number int not null, repository_id int not null, closed tinyint(1) not null, closed_at datetime null, closed_week datetime null , created_at datetime not null, created_week datetime not null, merged tinyint(1) not null, merged_at datetime null, merged_week datetime null, title varchar(1000) not null, url varchar(1000) not null, constraint pull_request_number_repository_id_uindex unique (number, repository_id) ); create table pull_request_team ( pull_request_id int not null, team_id int not null, primary key (pull_request_id, team_id) ); create table label ( id int auto_increment primary key, name varchar(100) not null, repository_id int not null, constraint label_name_uindex unique (id, name) ); create table issue_label ( issue_id int not null, label_id int not null, primary key (issue_id, label_id) ); create table pull_request_label ( pull_request_id int not null, label_id int not null, primary key (pull_request_id, label_id) ); create table label_severity_weight ( label_id int not null, label_name varchar(100) not null, weight float not null, primary key (label_id) ); create table repository ( id int not null primary key, owner varchar(100) not null, repo_name varchar(100) not null, url varchar(1000) not null ); create table timeline_repository ( datetime datetime not null, repository_id int not null, constraint datetime unique (datetime, repository_id) ); create table label_sig ( label_id int not null, label_name varchar(100) not null, primary key (label_id) ); create table if not exists team ( id int auto_increment primary key, name varchar(40) not null, size int null ); create table if not exists team_bug_jail ( time datetime null, team_id int null, DI float null, in_jail tinyint(1) not null ); create table if not exists team_issue ( issue_id int not null, team_id int not null, primary key (issue_id, team_id) ); create table timeline ( datetime datetime not null, constraint datetime unique (datetime) ); create table week_line ( week datetime not null unique ); create table user ( id int not null primary key, login varchar(100) not null, email varchar(100) not null, constraint user_login_name_uindex unique (login) ); create table user_issue ( user_id int not null, issue_id int not null, primary key (user_id, issue_id) ); create table user_bug_jail ( time datetime not null, user_id int not null, in_jail tinyint(1) null, critical int null, di float null, primary key (user_id, time) ); create table user_pull_request ( user_id int not null, pull_request_id int not null, primary key (user_id, pull_request_id) ); create table version ( id int not null primary key, major int not null, minor int not null, patch int not null ); create table tag ( id int auto_increment primary key, name varchar(100) not null, repository_id int not null, constraint name unique (name,repository_id) ); create table coverage_timeline ( time datetime not null, repo_id int not null, coverage float not null );
<reponame>jmvezic/webcurator insert into DB_WCT.AGENCY (AGC_OID,AGC_NAME,AGC_ADDRESS) values (0,'bootstrap', 'NA'); insert into DB_WCT.WCTUSER (USR_OID, USR_ACTIVE, USR_EMAIL, USR_EXTERNAL_AUTH, USR_FIRSTNAME, USR_LASTNAME, USR_NOTIFICATIONS_BY_EMAIL, USR_PASSWORD, USR_USERNAME, USR_FORCE_PWD_CHANGE, USR_AGC_OID, USR_TASKS_BY_EMAIL, USR_NOTIFY_ON_GENERAL, USR_NOTIFY_ON_WARNINGS) values (0, 1, '<EMAIL>', 0, 'System', 'Bootstrap', 0, '2cef312836577798919<PASSWORD>bd', 'bootstrap', 0,0,0,0,0); insert into DB_WCT.WCTROLE (ROL_OID, ROL_DESCRIPTION, ROL_NAME, ROL_AGENCY_OID) values(0,'Bootstrap Role', 'Bootstrap Role',0); insert into DB_WCT.USER_ROLE (URO_USR_OID, URO_ROL_OID) values (0,0); insert into DB_WCT.ROLE_PRIVILEGE (PRV_OID, PRV_CODE, PRV_ROLE_OID, PRV_SCOPE) values (0,'LOGIN',0,0); insert into DB_WCT.ROLE_PRIVILEGE (PRV_OID, PRV_CODE, PRV_ROLE_OID, PRV_SCOPE) values (-1,'MANAGE_AGENCIES',0,0); insert into DB_WCT.ROLE_PRIVILEGE (PRV_OID, PRV_CODE, PRV_ROLE_OID, PRV_SCOPE) values (-2,'MANAGE_USERS',0,0); insert into DB_WCT.ROLE_PRIVILEGE (PRV_OID, PRV_CODE, PRV_ROLE_OID, PRV_SCOPE) values (-3,'MANAGE_ROLES',0,0); insert into DB_WCT.ROLE_PRIVILEGE (PRV_OID, PRV_CODE, PRV_ROLE_OID, PRV_SCOPE) values (-4,'GRANT_CROSS_AGENCY_USER_ADMIN',0,0);
-- MySQL dump 10.13 Distrib 5.5.27, for Win32 (x86) -- -- Host: localhost Database: store_v1.0 -- ------------------------------------------------------ -- Server version 5.5.27 /*!40101 SET @OLD_CHARACTER_SET_CLIENT = @@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS = @@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION = @@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!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 `category` -- DROP TABLE IF EXISTS `category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `category` ( `cid` VARCHAR(32) NOT NULL, `cname` VARCHAR(20) DEFAULT NULL, PRIMARY KEY (`cid`) ) ENGINE = InnoDB DEFAULT CHARSET = utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `category` -- LOCK TABLES `category` WRITE; /*!40000 ALTER TABLE `category` DISABLE KEYS */; INSERT INTO `category` VALUES ('1', '手机数码'), ('172934bd636d485c98fd2d3d9cccd409', '运动户外'), ('2', '电脑办公'), ('3', '家具家居'), ('4', '鞋靴箱包'), ('5', '图书音像'), ('59f56ba6ccb84cb591c66298766b83b5', 'aaaa'), ('6', '母婴孕婴'), ('afdba41a139b4320a74904485bdb7719', '汽车用品'); /*!40000 ALTER TABLE `category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `orderitem` -- DROP TABLE IF EXISTS `orderitem`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `orderitem` ( `itemid` VARCHAR(32) NOT NULL, `count` INT(11) DEFAULT NULL, `subtotal` DOUBLE DEFAULT NULL, `pid` VARCHAR(32) DEFAULT NULL, `oid` VARCHAR(32) DEFAULT NULL, PRIMARY KEY (`itemid`), KEY `fk_0001` (`pid`), KEY `fk_0002` (`oid`), CONSTRAINT `fk_0001` FOREIGN KEY (`pid`) REFERENCES `product` (`pid`), CONSTRAINT `fk_0002` FOREIGN KEY (`oid`) REFERENCES `orders` (`oid`) ) ENGINE = InnoDB DEFAULT CHARSET = utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `orderitem` -- LOCK TABLES `orderitem` WRITE; /*!40000 ALTER TABLE `orderitem` DISABLE KEYS */; /*!40000 ALTER TABLE `orderitem` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `orders` -- DROP TABLE IF EXISTS `orders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `orders` ( `oid` VARCHAR(32) NOT NULL, `ordertime` DATETIME DEFAULT NULL, `total` DOUBLE DEFAULT NULL, `state` INT(11) DEFAULT NULL, `address` VARCHAR(30) DEFAULT NULL, `name` VARCHAR(20) DEFAULT NULL, `telephone` VARCHAR(20) DEFAULT NULL, `uid` VARCHAR(32) DEFAULT NULL, PRIMARY KEY (`oid`) ) ENGINE = InnoDB DEFAULT CHARSET = utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `orders` -- LOCK TABLES `orders` WRITE; /*!40000 ALTER TABLE `orders` DISABLE KEYS */; /*!40000 ALTER TABLE `orders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product` -- DROP TABLE IF EXISTS `product`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `product` ( `pid` VARCHAR(32) NOT NULL, `pname` VARCHAR(50) DEFAULT NULL, `market_price` DOUBLE DEFAULT NULL, `shop_price` DOUBLE DEFAULT NULL, `pimage` VARCHAR(200) DEFAULT NULL, `pdate` DATE DEFAULT NULL, `is_hot` INT(11) DEFAULT NULL, `pdesc` VARCHAR(255) DEFAULT NULL, `pflag` INT(11) DEFAULT NULL, `cid` VARCHAR(32) DEFAULT NULL, PRIMARY KEY (`pid`), KEY `sfk_0001` (`cid`), CONSTRAINT `sfk_0001` FOREIGN KEY (`cid`) REFERENCES `category` (`cid`) ) ENGINE = InnoDB DEFAULT CHARSET = utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `product` -- LOCK TABLES `product` WRITE; /*!40000 ALTER TABLE `product` DISABLE KEYS */; INSERT INTO `product` VALUES ('1', '小米 4c 标准版', 1399, 1299, 'products/1/c_0001.jpg', '2015-11-02', 1, '小米 4c 标准版 全网通 白色 移动联通电信4G手机 双卡双待', 0, '1'), ('10', '华为 Ascend Mate7', 2699, 2599, 'products/1/c_0010.jpg', '2015-11-02', 1, '华为 Ascend Mate7 月光银 移动4G手机 双卡双待双通6英寸高清大屏,纤薄机身,智能超八核,按压式指纹识别!!选择下方“移动老用户4G飞享合约”,无需换号,还有话费每月返还!', 0, '1'), ('11', 'vivo X5Pro', 2399, 2298, 'products/1/c_0014.jpg', '2015-11-02', 1, '移动联通双4G手机 3G运存版 极光白【购机送蓝牙耳机+蓝牙自拍杆】新升级3G运行内存·双2.5D弧面玻璃·眼球识别技术', 0, '1'), ('12', '努比亚(nubia)My 布拉格', 1899, 1799, 'products/1/c_0013.jpg', '2015-11-02', 0, '努比亚(nubia)My 布拉格 银白 移动联通4G手机 双卡双待【嗨11,下单立减100】金属机身,快速充电!布拉格相机全新体验!', 0, '1'), ('13', '华为 麦芒4', 2599, 2499, 'products/1/c_0012.jpg', '2015-11-02', 1, '华为 麦芒4 晨曦金 全网通版4G手机 双卡双待金属机身 2.5D弧面屏 指纹解锁 光学防抖', 0, '1'), ('14', 'vivo X5M', 1899, 1799, 'products/1/c_0011.jpg', '2015-11-02', 0, 'vivo X5M 移动4G手机 双卡双待 香槟金【购机送蓝牙耳机+蓝牙自拍杆】5.0英寸大屏显示·八核双卡双待·Hi-Fi移动KTV', 0, '1'), ('15', 'Apple iPhone 6 (A1586)', 4399, 4288, 'products/1/c_0015.jpg', '2015-11-02', 1, 'Apple iPhone 6 (A1586) 16GB 金色 移动联通电信4G手机长期省才是真的省!点击购机送费版,月月送话费,月月享优惠,畅享4G网络,就在联通4G!', 0, '1'), ('16', '华为 HUAWEI Mate S 臻享版', 4200, 4087, 'products/1/c_0016.jpg', '2015-11-03', 0, '华为 HUAWEI Mate S 臻享版 手机 极昼金 移动联通双4G(高配)满星评价即返30元话费啦;买就送电源+清水套+创意手机支架;优雅弧屏,mate7升级版', 0, '1'), ('17', '索尼(SONY) E6533 Z3+', 4099, 3999, 'products/1/c_0017.jpg', '2015-11-02', 0, '索尼(SONY) E6533 Z3+ 双卡双4G手机 防水防尘 涧湖绿索尼z3专业防水 2070万像素 移动联通双4G', 0, '1'), ('18', 'HTC One M9+', 3599, 3499, 'products/1/c_0018.jpg', '2015-11-02', 0, 'HTC One M9+(M9pw) 金银汇 移动联通双4G手机5.2英寸,8核CPU,指纹识别,UltraPixel超像素前置相机+2000万/200万后置双镜头相机!降价特卖,惊喜不断!', 0, '1'), ('19', 'HTC Desire 826d 32G 臻珠白', 1599, 1469, 'products/1/c_0020.jpg', '2015-11-02', 1, '后置1300万+UltraPixel超像素前置摄像头+【双】前置扬声器+5.5英寸【1080p】大屏!', 0, '1'), ('2', '中兴 AXON', 2899, 2699, 'products/1/c_0002.jpg', '2015-11-05', 1, '中兴 AXON 天机 mini 压力屏版 B2015 华尔金 移动联通电信4G 双卡双待', 0, '1'), ('20', '小米 红米2A 增强版 白色', 649, 549, 'products/1/c_0019.jpg', '2015-11-02', 0, '新增至2GB 内存+16GB容量!4G双卡双待,联芯 4 核 1.5GHz 处理器!', 0, '1'), ('21', '魅族 魅蓝note2 16GB 白色', 1099, 999, 'products/1/c_0021.jpg', '2015-11-02', 0, '现货速抢,抢完即止!5.5英寸1080P分辨率屏幕,64位八核1.3GHz处理器,1300万像素摄像头,双色温双闪光灯!', 0, '1'), ('22', '三星 Galaxy S5 (G9008W) 闪耀白', 2099, 1999, 'products/1/c_0022.jpg', '2015-11-02', 1, '5.1英寸全高清炫丽屏,2.5GHz四核处理器,1600万像素', 0, '1'), ('23', 'sonim XP7700 4G手机', 1799, 1699, 'products/1/c_0023.jpg', '2015-11-09', 1, '三防智能手机 移动/联通双4G 安全 黑黄色 双4G美国军工IP69 30天长待机 3米防水防摔 北斗', 0, '1'), ('24', '努比亚(nubia)Z9精英版 金色', 3988, 3888, 'products/1/c_0024.jpg', '2015-11-02', 1, '移动联通电信4G手机 双卡双待真正的无边框!金色尊贵版!4GB+64GB大内存!', 0, '1'), ('25', 'Apple iPhone 6 Plus (A1524) 16GB 金色', 5188, 4988, 'products/1/c_0025.jpg', '2015-11-02', 0, 'Apple iPhone 6 Plus (A1524) 16GB 金色 移动联通电信4G手机 硬货 硬实力', 0, '1'), ('26', 'Apple iPhone 6s (A1700) 64G 玫瑰金色', 6388, 6088, 'products/1/c_0026.jpg', '2015-11-02', 0, 'Apple iPhone 6 Plus (A1524) 16GB 金色 移动联通电信4G手机 硬货 硬实力', 0, '1'), ('27', '三星 Galaxy Note5(N9200)32G版', 5588, 5388, 'products/1/c_0027.jpg', '2015-11-02', 0, '旗舰机型!5.7英寸大屏,4+32G内存!不一样的SPen更优化的浮窗指令!赠无线充电板!', 0, '1'), ('28', '三星 Galaxy S6 Edge+(G9280)32G版 铂光金', 5999, 5888, 'products/1/c_0028.jpg', '2015-11-02', 0, '赠移动电源+自拍杆+三星OTG金属U盘+无线充电器+透明保护壳', 0, '1'), ('29', 'LG G4(H818)陶瓷白 国际版', 3018, 2978, 'products/1/c_0029.jpg', '2015-11-02', 0, '李敏镐代言,F1.8大光圈1600万后置摄像头,5.5英寸2K屏,3G+32G内存,LG年度旗舰机!', 0, '1'), ('3', '华为荣耀6', 1599, 1499, 'products/1/c_0003.jpg', '2015-11-02', 0, '荣耀 6 (H60-L01) 3GB内存标准版 黑色 移动4G手机', 0, '1'), ('30', '微软(Microsoft) Lumia 640 LTE DS (RM-1113)', 1099, 999, 'products/1/c_0030.jpg', '2015-11-02', 0, '微软首款双网双卡双4G手机,5.0英寸高清大屏,双网双卡双4G!', 0, '1'), ('31', '宏碁(acer)ATC705-N50 台式电脑', 2399, 2299, 'products/1/c_0031.jpg', '2015-11-02', 0, '爆款直降,满千减百,品质宏碁,特惠来袭,何必苦等11.11,早买早便宜!', 0, '2'), ('32', 'Apple MacBook Air MJVE2CH/A 13.3英寸', 6788, 6688, 'products/1/c_0032.jpg', '2015-11-02', 0, '宽屏笔记本电脑 128GB 闪存', 0, '2'), ('33', '联想(ThinkPad) 轻薄系列E450C(20EH0001CD)', 4399, 4199, 'products/1/c_0033.jpg', '2015-11-02', 0, '联想(ThinkPad) 轻薄系列E450C(20EH0001CD)14英寸笔记本电脑(i5-4210U 4G 500G 2G独显 Win8.1)', 0, '2'), ('34', '联想(Lenovo)小新V3000经典版', 4599, 4499, 'products/1/c_0034.jpg', '2015-11-02', 0, '14英寸超薄笔记本电脑(i7-5500U 4G 500G+8G SSHD 2G独显 全高清屏)黑色满1000減100,狂减!火力全开,横扫3天!', 0, '2'), ('35', '华硕(ASUS)经典系列R557LI', 3799, 3699, 'products/1/c_0035.jpg', '2015-11-02', 0, '15.6英寸笔记本电脑(i5-5200U 4G 7200转500G 2G独显 D刻 蓝牙 Win8.1 黑色)', 0, '2'), ('36', '华硕(ASUS)X450J', 4599, 4399, 'products/1/c_0036.jpg', '2015-11-02', 0, '14英寸笔记本电脑 (i5-4200H 4G 1TB GT940M 2G独显 蓝牙4.0 D刻 Win8.1 黑色)', 0, '2'), ('37', '戴尔(DELL)灵越 飞匣3000系列', 3399, 3299, 'products/1/c_0037.jpg', '2015-11-03', 0, ' Ins14C-4528B 14英寸笔记本(i5-5200U 4G 500G GT820M 2G独显 Win8)黑', 0, '2'), ('38', '惠普(HP)WASD 暗影精灵', 5699, 5499, 'products/1/c_0038.jpg', '2015-11-02', 0, '15.6英寸游戏笔记本电脑(i5-6300HQ 4G 1TB+128G SSD GTX950M 4G独显 Win10)', 0, '2'), ('39', 'Apple 配备 Retina 显示屏的 MacBook', 11299, 10288, 'products/1/c_0039.jpg', '2015-11-02', 0, 'Pro MF840CH/A 13.3英寸宽屏笔记本电脑 256GB 闪存', 0, '2'), ('4', '联想 P1', 2199, 1999, 'products/1/c_0004.jpg', '2015-11-02', 0, '联想 P1 16G 伯爵金 移动联通4G手机充电5分钟,通话3小时!科技源于超越!品质源于沉淀!5000mAh大电池!高端商务佳配!', 0, '1'), ('40', '机械革命(MECHREVO)MR X6S-M', 6799, 6599, 'products/1/c_0040.jpg', '2015-11-02', 0, '15.6英寸游戏本(I7-4710MQ 8G 64GSSD+1T GTX960M 2G独显 IPS屏 WIN7)黑色', 0, '2'), ('41', '神舟(HASEE) 战神K660D-i7D2', 5699, 5499, 'products/1/c_0041.jpg', '2015-11-02', 0, '15.6英寸游戏本(i7-4710MQ 8G 1TB GTX960M 2G独显 1080P)黑色', 0, '2'), ('42', '微星(MSI)GE62 2QC-264XCN', 6199, 5999, 'products/1/c_0042.jpg', '2015-11-02', 0, '15.6英寸游戏笔记本电脑(i5-4210H 8G 1T GTX960MG DDR5 2G 背光键盘)黑色', 0, '2'), ('43', '雷神(ThundeRobot)G150S', 5699, 5499, 'products/1/c_0043.jpg', '2015-11-02', 0, '15.6英寸游戏本 ( i7-4710MQ 4G 500G GTX950M 2G独显 包无亮点全高清屏) 金', 0, '2'), ('44', '惠普(HP)轻薄系列 HP', 3199, 3099, 'products/1/c_0044.jpg', '2015-11-02', 0, '15-r239TX 15.6英寸笔记本电脑(i5-5200U 4G 500G GT820M 2G独显 win8.1)金属灰', 0, '2'), ('45', '未来人类(Terrans Force)T5', 10999, 9899, 'products/1/c_0045.jpg', '2015-11-02', 0, '15.6英寸游戏本(i7-5700HQ 16G 120G固态+1TB GTX970M 3G GDDR5独显)黑', 0, '2'), ('46', '戴尔(DELL)Vostro 3800-R6308 台式电脑', 3299, 3199, 'products/1/c_0046.jpg', '2015-11-02', 0, '(i3-4170 4G 500G DVD 三年上门服务 Win7)黑', 0, '2'), ('47', '联想(Lenovo)H3050 台式电脑', 5099, 4899, 'products/1/c_0047.jpg', '2015-11-11', 0, '(i5-4460 4G 500G GT720 1G独显 DVD 千兆网卡 Win10)23英寸', 0, '2'), ('48', 'Apple iPad mini 2 ME279CH/A', 2088, 1888, 'products/1/c_0048.jpg', '2015-11-02', 0, '(配备 Retina 显示屏 7.9英寸 16G WLAN 机型 银色)', 0, '2'), ('49', '小米(MI)7.9英寸平板', 1399, 1299, 'products/1/c_0049.jpg', '2015-11-02', 0, 'WIFI 64GB(NVIDIA Tegra K1 2.2GHz 2G 64G 2048*1536视网膜屏 800W)白色', 0, '2'), ('5', '摩托罗拉 moto x(x+1)', 1799, 1699, 'products/1/c_0005.jpg', '2015-11-01', 0, '摩托罗拉 moto x(x+1)(XT1085) 32GB 天然竹 全网通4G手机11月11天!MOTO X震撼特惠来袭!1699元!带你玩转黑科技!天然材质,原生流畅系统!', 0, '1'), ('50', 'Apple iPad Air 2 MGLW2CH/A', 2399, 2299, 'products/1/c_0050.jpg', '2015-11-12', 0, '(9.7英寸 16G WLAN 机型 银色)', 0, '2'), ('6', '魅族 MX5 16GB 银黑色', 1899, 1799, 'products/1/c_0006.jpg', '2015-11-02', 0, '魅族 MX5 16GB 银黑色 移动联通双4G手机 双卡双待送原厂钢化膜+保护壳+耳机!5.5英寸大屏幕,3G运行内存,2070万+500万像素摄像头!长期省才是真的省!', 0, '1'), ('7', '三星 Galaxy On7', 1499, 1398, 'products/1/c_0007.jpg', '2015-11-14', 0, '三星 Galaxy On7(G6000)昂小七 金色 全网通4G手机 双卡双待新品火爆抢购中!京东尊享千元良机!5.5英寸高清大屏!1300+500W像素!评价赢30元话费券!', 0, '1'), ('8', 'NUU NU5', 1288, 1190, 'products/1/c_0008.jpg', '2015-11-02', 0, 'NUU NU5 16GB 移动联通双4G智能手机 双卡双待 晒单有礼 晨光金香港品牌 2.5D弧度前后钢化玻璃 随机附赠手机套+钢化贴膜 晒单送移动电源+蓝牙耳机', 0, '1'), ('9', '乐视(Letv)乐1pro(X800)', 2399, 2299, 'products/1/c_0009.jpg', '2015-11-02', 0, '乐视(Letv)乐1pro(X800)64GB 金色 移动联通4G手机 双卡双待乐视生态UI+5.5英寸2K屏+高通8核处理器+4GB运行内存+64GB存储+1300万摄像头!', 0, '1'); /*!40000 ALTER TABLE `product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user` ( `uid` VARCHAR(32) NOT NULL, `username` VARCHAR(20) DEFAULT NULL, `password` VARCHAR(20) DEFAULT NULL, `name` VARCHAR(20) DEFAULT NULL, `email` VARCHAR(30) DEFAULT NULL, `telephone` VARCHAR(20) DEFAULT NULL, `birthday` DATE DEFAULT NULL, `sex` VARCHAR(10) DEFAULT NULL, `state` INT(11) DEFAULT NULL, `code` VARCHAR(64) DEFAULT NULL, PRIMARY KEY (`uid`) ) ENGINE = InnoDB DEFAULT CHARSET = utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user` -- LOCK TABLES `user` WRITE; /*!40000 ALTER TABLE `user` DISABLE KEYS */; INSERT INTO `user` VALUES ('373eb242<PASSWORD>668b', 'ccc', 'ccc', 'aaa', '<EMAIL>', '15723689921', '2015-11-04', '男', 0, '9782f<PASSWORD>'), ('3ca76a75e4f64db2bacd0974acc7c897', 'bb', 'bb', '张三', '<EMAIL>', '15723689921', '1990-02-01', '男', 0, '1258e96181a9457987928954825189000bae305094a042d6bd9d2d35674684e6'), ('62145f6e66ea4f5cbe7b6f6b954917d3', 'cc', 'cc', '张三', '<EMAIL>', '15723689921', '2015-11-03', '男', 0, '19f100aa81184c03951c4b840a725b6a98097aa1106a4a38ba1c29f1a496c231'), ('c95b15a864334adab3d5bb6604c6e1fc', 'bbb', 'bbb', '老王', '<EMAIL>', '15712344823', '2000-02-01', '男', 0, '71a3a933353347a4bcacff699e6baa9c950a02f6b84e4f6fb8404ca06febfd6f'), ('f55b7d3a352a4f0782c910b2c70f1ea4', 'aaa', 'aaa', '小王', '<EMAIL>', '15712344823', '2000-02-01', '男', 1, NULL); /*!40000 ALTER TABLE `user` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE = @OLD_TIME_ZONE */; /*!40101 SET SQL_MODE = @OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS = @OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS = @OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT = @OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS = @OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION = @OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES = @OLD_SQL_NOTES */; -- Dump completed on 2016-03-03 0:08:34
<reponame>UAMS-DBMI/PosdaTools -- Name: InsertIntoSeriesScan -- Schema: posda_phi -- Columns: [] -- Args: ['scan_id', 'equipment_signature_id', 'series_instance_uid', 'series_scanned_file'] -- Tags: ['UsedInPhiSeriesScan', 'NotInteractive'] -- Description: List of values seen in scan by VR (with count of elements) -- insert into series_scan( scan_event_id, equipment_signature_id, series_instance_uid, series_scan_status, series_scanned_file ) values ( ?, ?, ?, 'In Process', ?)
<filename>migrations/migrations/default/1609360441458_alter_table_source_collector_Schema_add_column_ConnectionId/down.sql<gh_stars>10-100 ALTER TABLE "source_collector"."Schema" DROP COLUMN "ConnectionId";
<reponame>ngalaiko/sturdy ALTER TABLE github_repositories ALTER COLUMN installation_access_token_expires_at TYPE TIMESTAMP WITH TIME ZONE USING installation_access_token_expires_at AT TIME ZONE 'UTC', ALTER COLUMN created_at TYPE TIMESTAMP WITH TIME ZONE USING created_at AT TIME ZONE 'UTC', ALTER COLUMN uninstalled_at TYPE TIMESTAMP WITH TIME ZONE USING uninstalled_at AT TIME ZONE 'UTC', ALTER COLUMN synced_at TYPE TIMESTAMP WITH TIME ZONE USING synced_at AT TIME ZONE 'UTC'; ALTER TABLE codebases ALTER COLUMN created_at TYPE TIMESTAMP WITH TIME ZONE USING created_at AT TIME ZONE 'UTC', ALTER COLUMN archived_at TYPE TIMESTAMP WITH TIME ZONE USING archived_at AT TIME ZONE 'UTC';
<reponame>Zhaojia2019/cubrid-testcases<filename>sql/_03_object_oriented/_02_collection_type/_002_virtual_class/cases/1001.sql --creating vclass with set type column and other types. create vclass ddl_0001( sChar set(char(10)), sVarchar set(varchar(10)), sNchar set(nchar(10)), sNvchar set(nchar VARYING(10)), sBit set(bit(10)), sBvit set(bit VARYING(10)), sNumeric set(numeric), sInteger set(integer), sSmallint set(smallint), sMonetary set(monetary), sFloat set(float), sReal set(real), sDouble set(double), sDate set(date), sTime set(time), sTimestamp set(timestamp), sSet set(set), sMultiSet set(multiset), sList set(list), sSequence set(sequence) ); drop vclass ddl_0001;
<filename>openGaussBase/testcase/SQL/DDL/interval/Opengauss_Function_DDL_Partition_Interval_Case0025.sql -- @testpoint: interval分区,创建时声明like子句,源表是普通表,新表是分区表,指定INCLUDING INDEXES,违背唯一约束合理报错 drop table if exists common_table_001; drop table if exists partition_table_001; -- 创建普通表作为分区表like的源表 create table common_table_001( col_1 smallint primary key check (col_1 > 0), col_2 char(30) default 'hey boy', col_3 int unique, col_4 date, col_5 boolean, col_6 nchar(30), col_7 float )with(fillfactor=70); create unique index idx_001 on common_table_001(col_4); -- like指定INCLUDING INDEXES create table partition_table_001( like common_table_001 including indexes) partition by range (col_4) interval ('1 year') ( partition partition_p1 values less than ('2018-01-01'), partition partition_p2 values less than ('2019-01-01'), partition partition_p3 values less than ('2020-01-01') ); -- 查看分区信息 select relname, parttype, partstrategy, boundaries,reltablespace from pg_partition where parentid = (select oid from pg_class where relname = 'partition_table_001') order by relname; -- 验证索引,唯一索引被继承 insert into partition_table_001 values (5,'eee',5,'2020-06-23',true,'eee',5.5); insert into partition_table_001 values (6,'fff',6,'2020-06-23',false,'fff',6.6); drop table if exists common_table_001; drop table if exists partition_table_001;
-- Database export via SQLPro (https://www.sqlprostudio.com/allapps.html) -- Exported by carter at 15-04-2021 15:47. -- WARNING: This file may contain descructive statements such as DROPs. -- Please ensure that you are running the script at the proper location. -- BEGIN TABLE briefs DROP TABLE IF EXISTS briefs; CREATE TABLE `briefs` ( `briefId` int NOT NULL AUTO_INCREMENT, `clientId` int NOT NULL, `briefType` varchar(64) DEFAULT NULL, `isTestBrief?` tinyint(1) DEFAULT NULL, `opposingParty` varchar(128) NOT NULL, PRIMARY KEY (`briefId`), KEY `clientId` (`clientId`), CONSTRAINT `briefs_ibfk_1` FOREIGN KEY (`clientId`) REFERENCES `clients` (`clientId`), CONSTRAINT `briefs_ibfk_2` FOREIGN KEY (`clientId`) REFERENCES `clients` (`clientId`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- Inserting 4 rows into briefs -- Insert batch #1 INSERT INTO briefs (briefId, clientId, briefType, `isTestBrief?`, opposingParty) VALUES (0, 1, 'Opening', 1, 'Apple Inc.'), (2, 1, 'Answering', 1, 'Apple Inc.'), (3, 1, 'Reply', 1, 'Apple Inc.'), (5, 1, 'test', NULL, 'Testing'); -- END TABLE briefs -- BEGIN TABLE cards DROP TABLE IF EXISTS cards; CREATE TABLE `cards` ( `cardId` int NOT NULL AUTO_INCREMENT, `briefId` int NOT NULL, `Answer` varchar(1000) DEFAULT NULL, `Question` varchar(1000) DEFAULT NULL, `Verified` bit(1) DEFAULT NULL, `categoryId` int DEFAULT NULL, `sentenceId` int DEFAULT NULL, PRIMARY KEY (`cardId`), KEY `categoryId` (`categoryId`), KEY `sentenceId` (`sentenceId`), KEY `briefId` (`briefId`), CONSTRAINT `cards_ibfk_1` FOREIGN KEY (`categoryId`) REFERENCES `categories` (`categoryId`), CONSTRAINT `cards_ibfk_2` FOREIGN KEY (`sentenceId`) REFERENCES `sentences` (`sentenceId`), CONSTRAINT `cards_ibfk_3` FOREIGN KEY (`briefId`) REFERENCES `briefs` (`briefId`) ) ENGINE=InnoDB AUTO_INCREMENT=3105 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- Inserting 1397 rows into cards -- Insert batch #1 INSERT INTO cards (cardId, briefId, Answer, Question, Verified, categoryId, sentenceId) VALUES (1422, 0, 'In re Twitter Inc., 2018 U.S. Dist.', NULL, NULL, NULL, NULL), (1423, 0, 'LEXIS 119153, at *27', NULL, NULL, NULL, NULL), (1424, 0, '(internal quotation omitted).', NULL, NULL, NULL, NULL), (1425, 0, 'Rather, “[t]he Ninth Circuit reads Comcast to demand only that plaintiffs ‘be able to show that their damages stemmed from the defendant’s actions that created the legal liability.’” Hatamian v. Advanced', NULL, NULL, NULL, NULL), (1428, 0, 'Micro Devices, Inc., No. 14-CV-00226 YGR, 2016 U.S. Dist.', NULL, NULL, NULL, NULL), (1430, 0, '(N.D. Cal. Mar. 16, 2016)', NULL, NULL, NULL, NULL), (1431, 0, '(quoting Leyva, 716 F.3d at 514).', NULL, NULL, NULL, NULL), (1432, 0, 'In ruling a functioning impact/damages model was required to establish predominance, the District Court ignored binding Supreme Court and Ninth Circuit cases.', NULL, NULL, NULL, NULL), (1433, 0, 'This is reversible error.', NULL, NULL, NULL, NULL), (1434, 0, 'B. Plaintiffs’ Proposed Methodologies Are Capable of Establishing Antitrust Impact and Computing Damages at Trial', NULL, NULL, NULL, NULL), (1435, 0, 'Dr. Warren-Boulton’s proposed but-for methodology is economically sound and well-designed and is fully capable of demonstrating the fact and quantum of harm at trial.', NULL, NULL, NULL, NULL), (1436, 0, 'As stated above, Dr. Warren-Boulton constructed two but-for worlds to show what would have happened absent Apple’s conspiracy to monopolize the aftermarket for iPhone Wireless Services.', NULL, NULL, NULL, NULL), (1437, 0, 'As the district court explained in Apple I when approving a but-for methodology for a nearly identical antitrust claim, “[t]he proper focus of a ‘but for’ analysis is the absence of the ‘challenged practices.’” Apple I, 2010 U.S. Dist.', NULL, NULL, NULL, NULL), (1438, 0, 'LEXIS 98270, at *39.', NULL, NULL, NULL, NULL), (1439, 0, 'That is precisely how Dr. Warren-Boulton constructed his methodology here.', NULL, NULL, NULL, NULL), (1440, 0, 'The but-for methodology is a sound and widely accepted methodology for calculating damages in an antitrust context.', NULL, NULL, NULL, NULL), (1441, 0, 'See Apple iPod iTunes Antitrust Litig.', NULL, NULL, NULL, NULL), (1442, 0, ', No. 05-CV-0037 YGR, 2014 U.S. Dist.', NULL, NULL, NULL, NULL), (1443, 0, 'LEXIS 136437, at *13-14 n.7', NULL, NULL, NULL, NULL), (1444, 0, '(N.D. Cal. Sept. 26, 2014)', NULL, NULL, NULL, NULL), (1445, 0, '(“It is common in antitrust cases to estimate damages by', NULL, NULL, NULL, NULL), (1446, 0, '- 43 -', NULL, NULL, NULL, NULL), (1447, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 53 of 75', NULL, NULL, NULL, NULL), (1448, 0, 'comparing the price actually charged to an expert economist’s estimation of the price that would have been charged ‘but for’ the asserted anticompetitive conduct.', NULL, NULL, NULL, NULL), (1449, 0, '”)', NULL, NULL, NULL, NULL), (1450, 0, '(citations omitted)).', NULL, NULL, NULL, NULL), (1451, 0, 'See also In re: C<NAME>', NULL, NULL, NULL, NULL), (1452, 0, '(CRT)', NULL, NULL, NULL, NULL), (1453, 0, 'Antitrust Litig.', NULL, NULL, NULL, NULL), (1454, 0, ', 2013 U.S. Dist.', NULL, NULL, NULL, NULL), (1455, 0, 'LEXIS 137946, at *82', NULL, NULL, NULL, NULL), (1456, 0, '(court accepted expert’s opinion using “but-for” analysis); Comcast, 569 U.S. at 36-37', NULL, NULL, NULL, NULL), (1457, 0, '(plaintiffs’ expert’s but-for methodology “might have produced commonality of damages” if it was tied to plaintiffs’ theory of liability).', NULL, NULL, NULL, NULL), (1458, 0, 'As described above, in Dr. Warren-Boulton’s TE but-for world, iPhone purchasers reasonably expected to not be locked into using ATTM after the expiration of their WSAs.', NULL, NULL, NULL, NULL), (1459, 0, 'EOR 134-35, ¶ 14.', NULL, NULL, NULL, NULL), (1460, 0, 'This reasonable expectation artificially inflated the perceived value of the iPhone and shifted up the demand curve for iPhones relative to what it would have been in the TE world, raising consumers’ willingness to pay', NULL, NULL, NULL, NULL), (1461, 0, '(or reservation prices)', NULL, NULL, NULL, NULL), (1462, 0, '“by an amount equal to the present value of both', NULL, NULL, NULL, NULL), (1463, 0, '(a) the lower prices or higher quality on the service they would have expected to receive on their iPhones after the expiration of their initial service contracts and', NULL, NULL, NULL, NULL), (1464, 0, '(b) the ability to use lower cost foreign service providers when making calls in foreign countries rather than pay [ATTM]’s international roaming charges.', NULL, NULL, NULL, NULL), (1465, 0, '” EOR 132 ¶ 8.', NULL, NULL, NULL, NULL), (1466, 0, 'In the proposed TNE but-for world, Apple would have agreed to unlock iPhones at the end of the customers’ initial two-year service contracts or to permit', NULL, NULL, NULL, NULL), (1467, 0, '- 44 -', NULL, NULL, NULL, NULL), (1468, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 54 of 75', NULL, NULL, NULL, NULL), (1469, 0, 'international roaming.', NULL, NULL, NULL, NULL), (1470, 0, 'See, e.g., EOR 130-31, 135, ¶¶ 4, 15.', NULL, NULL, NULL, NULL), (1471, 0, 'The refusal to unlock iPhones upon the expiration of the WSAs “increased the TCO in the as-is world through higher prices or lower quality (or both) on the service received by iPhone purchasers.”', NULL, NULL, NULL, NULL), (1472, 0, 'EOR 132, ¶ 8.', NULL, NULL, NULL, NULL), (1473, 0, 'Significantly, Dr. Warren-Boulton’s TNE but-for methodology is based in part on expert methods previously approved by <NAME> in Apple I. EOR 130, ¶ 3; EOR 268 n.1.', NULL, NULL, NULL, NULL), (1474, 0, 'In Apple I, <NAME> held the challenged practice in that case, as here, included “Defendants’ monopolization of the aftermarket[] for voice and data service . . . that resulted from Defendants’ five year agreement and failure to disclose the agreement to consumers at the time of purchase of the iPhones.” 2010 U.S. Dist.', NULL, NULL, NULL, NULL), (1475, 0, 'LEXIS 98270, at *39.', NULL, NULL, NULL, NULL), (1476, 0, 'Dr. Wilkie measured “(1) ‘what prices consumers would have paid for iPhone voice and data service if they had the right to switch,’ and (2) ‘the inherent value of the right to switch itself, a right the consumers bargained for but never received.’” Id. at *39-40.', NULL, NULL, NULL, NULL), (1477, 0, 'Dr. Warren-Boulton determined that two of Dr. Wilkie’s estimates of harm in Apple I were useful to his own but-for analysis: the harm from higher services prices over the renewal period due to the refusal to unlock phones after the end of the initial service period, and the harm over the entire service life from the refusal to provide unlock codes for international calls.', NULL, NULL, NULL, NULL), (1478, 0, 'EOR 137, ¶ 20.', NULL, NULL, NULL, NULL), (1479, 0, 'Dr. Warren-Boulton explained that he intends to use Dr. Wilkie’s approach for estimating the', NULL, NULL, NULL, NULL), (1480, 0, '- 45 -', NULL, NULL, NULL, NULL), (1481, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 55 of 75', NULL, NULL, NULL, NULL), (1482, 0, 'savings iPhone owners could have enjoyed in the TNE world during the renewal period by using T-Mobile’s prices as a benchmark.14', NULL, NULL, NULL, NULL), (1483, 0, 'EOR 136-39, ¶¶ 19-21, 26.', NULL, NULL, NULL, NULL), (1484, 0, 'Dr. Warren-Boulton further explained that this approach “can be used to estimate the post-Initial-Service-Period savings that iPhone customers . . . reasonably could have expected,” and thus “the amount by which Apple’s alleged unlawful conduct . . . increased the price that iPhone consumers would have been willing to pay.”', NULL, NULL, NULL, NULL), (1485, 0, 'EOR 137, ¶ 21.', NULL, NULL, NULL, NULL), (1486, 0, 'The methodologies that Dr. Warren-Boulton has proposed are tailored specifically to fit the theory of this case and take into account the District Court’s summary judgment ruling.', NULL, NULL, NULL, NULL), (1487, 0, 'Therefore, they fully comply with Comcast and this Court’s precedent.', NULL, NULL, NULL, NULL), (1488, 0, 'They are designed to measure the impact of Apple’s refusal to unlock iPhones after the expiration of the two-year WSAs, the relevant market set forth in the District Court’s summary judgment ruling.15', NULL, NULL, NULL, NULL), (1489, 0, 'As Dr. Warren-Boulton', NULL, NULL, NULL, NULL), (1490, 0, '14 “[A] testifying expert can use facts, data, and conclusions of other experts to offer an opinion within the testifying expert’s domain of expertise, but the testifying expert cannot vouch for the truth of the other expert’s conclusion.”', NULL, NULL, NULL, NULL), (1491, 0, 'K&N Eng’g, Inc. v. Spectre Performance, No.', NULL, NULL, NULL, NULL), (1492, 0, 'EDCV 09-1900VAP (DTBx), 2011 U.S. Dist.', NULL, NULL, NULL, NULL), (1493, 0, 'LEXIS 164981, at *27 (C.D. Cal. May 12, 2011) (citing Dura Automotive Systems of Indiana, Inc. v. CTS Corp., 285 F.3d 609, 614 (7th Cir. 2002)).', NULL, NULL, NULL, NULL), (1494, 0, '15 Dr. Warren-Boulton excluded from his own analysis an element of Dr. Wilkie’s analysis based on a theory that the District Court has since rejected – an assumption that iPhone customers could have paid an early termination fee and switched services.', NULL, NULL, NULL, NULL), (1495, 0, 'EOR 136-37, ¶ 19.', NULL, NULL, NULL, NULL), (1496, 0, 'This further demonstrates that his methodologies are appropriately tailored to Plaintiffs’ liability theory and the summary judgment ruling.', NULL, NULL, NULL, NULL), (1497, 0, '- 46 -', NULL, NULL, NULL, NULL), (1498, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 56 of 75', NULL, NULL, NULL, NULL), (1499, 0, 'explained, that harm arose immediately when consumers purchased their iPhones and began paying for Wireless Service, in the form of a willingness to accept a higher price for the iPhones or to accept higher prices or lower quality on the Wireless Service received.', NULL, NULL, NULL, NULL), (1500, 0, 'See EOR 131, 137-140, ¶¶ 8, 20-21, 25-26, 30-31; EOR 270, 275-76, 279-80, 282 ¶¶ 9, 22-23, 31, 38.', NULL, NULL, NULL, NULL), (1501, 0, 'Dr. Warren-Boulton explained that the harm stems from the “actual or expected effect of the refusal by Apple and [ATTM] to unlock iPhones upon the expiration of class members’ initial contracts with [ATTM].”', NULL, NULL, NULL, NULL), (1502, 0, 'EOR 131-32, ¶ 8.', NULL, NULL, NULL, NULL), (1503, 0, 'Dr. Warren-Boulton opined that while the nexus of harm to Class members differs in the two but-for worlds, harm is measurable for either scenario applying standard economic analysis to class-wide market data in ways commonly used by economists.', NULL, NULL, NULL, NULL), (1504, 0, 'EOR 269, ¶ 7.', NULL, NULL, NULL, NULL), (1505, 0, 'Dr. Warren-Boulton stated that his review of the data collected by Dr. Wilkie and additional data he reviewed confirmed that, at the appropriate time, he could reliably apply his methodology to estimate the harm from Apple’s conspiracy for both the TE and TNE but-for worlds on a class-wide basis using common data.', NULL, NULL, NULL, NULL), (1506, 0, 'Both of Dr. Warren-Boulton’s proposed but-for scenarios are capable of measuring class-wide damages from their aftermarket antitrust claim, and are based on the District Court’s definition of the relevant antitrust market.', NULL, NULL, NULL, NULL), (1507, 0, 'See EOR 136, 138-40, ¶¶ 19, 23-24, 28-32; EOR 269, ¶ 7.', NULL, NULL, NULL, NULL), (1508, 0, 'No more is required to establish predominance at class certification.', NULL, NULL, NULL, NULL), (1509, 0, '- 47 -', NULL, NULL, NULL, NULL), (1510, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 57 of 75', NULL, NULL, NULL, NULL), (1511, 0, 'C. Plaintiffs Request Reassignment of the Case to a New Judge on Remand', NULL, NULL, NULL, NULL), (1512, 0, 'This Court has authority under 28 U.S.C. § 2106, as well as its inherent authority, to reassign this case to a different judge upon remand.', NULL, NULL, NULL, NULL), (1513, 0, 'Reassignment is appropriate if a personal bias exists or where there are unusual circumstances.', NULL, NULL, NULL, NULL), (1514, 0, 'United States v. Sears, Roebuck & Co., 785 F.2d 777, 780 (9th Cir. 1986).', NULL, NULL, NULL, NULL), (1515, 0, 'In determining whether unusual circumstances exist, the Court considers:', NULL, NULL, NULL, NULL), (1516, 0, '(1) whether the original judge would reasonably be expected upon remand to have substantial difficulty in putting out of his or her mind previously-expressed views or findings determined to be erroneous or based on evidence that must be rejected, (2) whether reassignment is advisable to preserve the appearance of justice, and (3) whether reassignment would entail waste and duplication out of proportion to any gain in preserving the appearance of fairness.', NULL, NULL, NULL, NULL), (1517, 0, 'United States v. Arnett, 628 F.2d 1162, 1165 (9th Cir. 1979) (quoting United States v. Robin, 553 F.2d 8, 10 (2d Cir. 1977) (en banc)).', NULL, NULL, NULL, NULL), (1518, 0, 'The first two factors are of equal importance, and a finding of just one of them supports a remand to a different judge.', NULL, NULL, NULL, NULL), (1519, 0, 'See United States v. Alverson, 666 F.2d 341, 349 (9th Cir. 1982).', NULL, NULL, NULL, NULL), (1520, 0, 'All three factors are present here and therefore unusual circumstances exist justifying transfer to a different judge.', NULL, NULL, NULL, NULL), (1521, 0, 'First, the District Court already has exhibited substantial difficulty in putting out of its mind previously-expressed views or findings determined to be erroneous by this Court.', NULL, NULL, NULL, NULL), (1522, 0, 'The District Court initially dismissed this action on December 17, 2012, holding that ATTM, which is not a defendant in this action, was a necessary and indispensable party.', NULL, NULL, NULL, NULL), (1523, 0, 'EOR 216-', NULL, NULL, NULL, NULL), (1524, 0, '- 48 -', NULL, NULL, NULL, NULL), (1525, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 58 of 75', NULL, NULL, NULL, NULL), (1526, 0, '20; Ward, 791 F.3d at 1045.', NULL, NULL, NULL, NULL), (1527, 0, 'This Court reversed that decision on June 29, 2015.', NULL, NULL, NULL, NULL), (1528, 0, 'Id. at 1043.', NULL, NULL, NULL, NULL), (1529, 0, 'The District Court, however, apparently disagrees with this Court’s ruling and still believes that ATTM is an indispensable party.', NULL, NULL, NULL, NULL), (1530, 0, 'The District Court referred to this Court’s holding as an “interesting opinion by the Ninth Circuit” (EOR 192, 2:17-19), and later continued to express its belief that ATTM is an indispensable party despite this Court’s clear holding that it is not (EOR 144, 4:18-20).', NULL, NULL, NULL, NULL), (1531, 0, 'Further, the District Court’s opinion that ATTM is an indispensable party appears to have affected its handling of substantive issues that arose later in this case.', NULL, NULL, NULL, NULL), (1532, 0, 'For example, this appeal arises because the District Court failed to follow this Court’s binding precedent even though the cases were cited and argued extensively in Plaintiffs’ class certification briefs.', NULL, NULL, NULL, NULL), (1533, 0, 'The District Court’s apparent disagreement with this Court’s holdings justifies remand to a new judge.', NULL, NULL, NULL, NULL), (1534, 0, 'See <NAME>.', NULL, NULL, NULL, NULL), (1535, 0, 'Auth.', NULL, NULL, NULL, NULL), (1536, 0, ', 806 F.3d 1178, 1203 (9th Cir. 2015) (granting reassignment where district judge made a number of statements indicating his disagreement with the Ninth Circuit’s prior reversal).', NULL, NULL, NULL, NULL), (1537, 0, 'Furthermore, there are indications that the District Court will also have difficulty putting out of its mind its previously-expressed views regarding Plaintiffs’ ability to certify a class in this case.', NULL, NULL, NULL, NULL), (1538, 0, 'For example, after the District Court denied Plaintiffs’ motion for class certification, Plaintiffs filed their Rule 23', NULL, NULL, NULL, NULL), (1539, 0, '(f)', NULL, NULL, NULL, NULL), (1540, 0, '- 49 -', NULL, NULL, NULL, NULL), (1541, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 59 of 75', NULL, NULL, NULL, NULL), (1542, 0, 'Petition.', NULL, NULL, NULL, NULL), (1543, 0, 'Shortly thereafter the parties stipulated to stay discovery and vacate the trial and associated dates pending this Court’s resolution of the Rule 23', NULL, NULL, NULL, NULL), (1544, 0, '(f) Petition as there were numerous looming deadlines, including the close of fact and expert discovery and disclosure of expert witnesses.', NULL, NULL, NULL, NULL), (1545, 0, 'EOR 263, ECF No. 202.', NULL, NULL, NULL, NULL), (1546, 0, 'The District Court summarily rejected the stipulation to stay the action, which would have forced the parties to pursue this costly and time-consuming antitrust case as an individual action while the Rule 23', NULL, NULL, NULL, NULL), (1547, 0, '(f) Petition was pending.', NULL, NULL, NULL, NULL), (1548, 0, 'As a result, Plaintiffs were forced to file an emergency motion under Circuit Rule 27-3 and ask this Court to intervene and stay the action pending resolution of the Rule 23', NULL, NULL, NULL, NULL), (1549, 0, '(f) Petition, which the Court promptly granted.', NULL, NULL, NULL, NULL), (1550, 0, 'The District Court’s refusal to accept a stipulated stay pending the Court’s review of the Rule 23', NULL, NULL, NULL, NULL), (1551, 0, '(f) Petition confirms that it would have a difficult time putting aside its own views of class certification following remand.', NULL, NULL, NULL, NULL), (1552, 0, 'As this Court held in United States v. Morales, 465 F. App’x 734, 740 (9th Cir. 2012), “[t]he strength of [the District Court judge’s] beliefs is manifest in [its] rejection of the [parties’ stipulated] request to stay proceedings pending [this] interlocutory appeal[], requiring this court to enter an emergency stay.”', NULL, NULL, NULL, NULL), (1553, 0, 'See Earp v. Cullen, 623 F.3d 1065, 1072 (9th Cir. 2010) (reassigning case where Ninth Circuit had to intervene and enter emergency stay).', NULL, NULL, NULL, NULL), (1554, 0, '- 50 -', NULL, NULL, NULL, NULL), (1555, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 60 of 75', NULL, NULL, NULL, NULL), (1556, 0, 'Second, reassignment is advisable to preserve the appearance of justice.', NULL, NULL, NULL, NULL), (1557, 0, 'For example, the District Court appears unwilling to try this case because it is “too old” and will be difficult to try before a jury.', NULL, NULL, NULL, NULL), (1558, 0, 'The District Court has noted numerous times that it was “having a difficult time understanding why this case is still here,” (EOR 194, 4:13-16) and has complained that the case is “stale” (EOR 214, 24:912) and “too old” (EOR 143, 3:4-8).', NULL, NULL, NULL, NULL), (1559, 0, 'The District Court apparently had difficulty trying a different antitrust case against Apple involving a different product, the iPod.', NULL, NULL, NULL, NULL), (1560, 0, 'EOR 193-94, 3:24-4:11.', NULL, NULL, NULL, NULL), (1561, 0, 'Drawing a connection between the two cases, the District Court said the iPod case “was so old that the jurors didn’t know what iPods were,” and noted the technical difficulties it encountered in trying that case.', NULL, NULL, NULL, NULL), (1562, 0, 'Id.', NULL, NULL, NULL, NULL), (1563, 0, 'The District Court further complained of being forced to spend “two plus weeks in trial over something . . . that was ancient history as far as jurors were concerned.”', NULL, NULL, NULL, NULL), (1564, 0, 'EOR 195, 5:6-10.', NULL, NULL, NULL, NULL), (1565, 0, 'Accordingly, the District Court appears not to want this case to go to trial because of the difficulties encountered in trying a different “old” case.', NULL, NULL, NULL, NULL), (1566, 0, 'The District Court appears to be looking for a reason to get this case off its docket.', NULL, NULL, NULL, NULL), (1567, 0, 'During a routine CMC on September 11, 2017, the District Court questioned Plaintiffs’ counsel at length regarding the merits of Plaintiffs’ damages methodology even though the class certification motion had not been fully briefed and the class certification hearing was not scheduled to take place for another five months.', NULL, NULL, NULL, NULL), (1568, 0, 'Nonetheless, suggesting that it had prejudged the motion, the District', NULL, NULL, NULL, NULL), (1569, 0, '- 51 -', NULL, NULL, NULL, NULL), (1570, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 61 of 75', NULL, NULL, NULL, NULL), (1571, 0, 'Court expressed skepticism toward Plaintiffs’ damages methodology.', NULL, NULL, NULL, NULL), (1572, 0, 'EOR 109-19, 3:7-13:25.', NULL, NULL, NULL, NULL), (1573, 0, 'After Plaintiffs’ counsel expressed his view that the merits of the class certification motion were not properly addressed during a routine scheduling conference, the District Court persisted (“That’s why I have lead counsel here”) and the parties continued to argue the merits of the not-yet-briefed motion.', NULL, NULL, NULL, NULL), (1574, 0, 'EOR 116, 10:22.', NULL, NULL, NULL, NULL), (1575, 0, 'The District Court ultimately denied Plaintiffs’ class certification motion because, in its view, Plaintiffs’ impact and damages showing was insufficient.', NULL, NULL, NULL, NULL), (1576, 0, 'In doing so, the District Court ignored arguments offered by Plaintiffs in the fully-briefed motion and at the class certification hearing under this Court’s binding precedent.', NULL, NULL, NULL, NULL), (1577, 0, 'Lastly, reassignment would not entail any waste or duplication of efforts out of proportion to the clear gain in preserving the appearance of fairness.', NULL, NULL, NULL, NULL), (1578, 0, 'Although this case has been pending for six years, it was on appeal for three years (including two years for the decision in the prior appeal to which the District Court has expressed disagreement).', NULL, NULL, NULL, NULL), (1579, 0, 'Moreover, discovery has not yet been completed.', NULL, NULL, NULL, NULL), (1580, 0, 'Thus, if the case is remanded, further delay is inevitable.', NULL, NULL, NULL, NULL), (1581, 0, 'It is clear that the District Court does not want to consider this case on the merits.', NULL, NULL, NULL, NULL), (1582, 0, 'The District Court denied Plaintiffs’ class certification motion – essentially a death-knell to Plaintiffs’ case – in a perfunctory five-page Order with less than two pages of “discussion” and without not citing, much less considering, the', NULL, NULL, NULL, NULL), (1583, 0, '- 52 -', NULL, NULL, NULL, NULL), (1584, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 62 of 75', NULL, NULL, NULL, NULL), (1585, 0, 'correct standard under this Court’s decisions in Lambert, 870 F.3d at 1182 and Just Film, 847 F.3d at 1120-22.', NULL, NULL, NULL, NULL), (1586, 0, 'Courts of Appeals have reassigned complex cases that were pending for even longer periods of time when reassignment is justified under the circumstances.', NULL, NULL, NULL, NULL), (1587, 0, 'See, e.g., Howe v. City of Akron, 801 F.3d 718, 757 (6th Cir. 2015) (reassigning case pending for almost a decade).', NULL, NULL, NULL, NULL), (1588, 0, 'All of these factors support reassignment to a new judge.', NULL, NULL, NULL, NULL), (1589, 0, 'IX.', NULL, NULL, NULL, NULL), (1590, 0, 'CONCLUSION', NULL, NULL, NULL, NULL), (1591, 0, 'For all the foregoing reasons, Plaintiffs respectfully request that this Court reverse the District Court’s February 16, 2018 Order denying Plaintiffs’ motion for class certification.', NULL, NULL, NULL, NULL), (1592, 0, 'If the Court remands the case, Plaintiffs request reassignment to a different judge of the District Court.', NULL, NULL, NULL, NULL), (1593, 0, 'DATED: January 14, 2019 Respectfully submitted,', NULL, NULL, NULL, NULL), (1594, 0, '<NAME> & HERZ LLP', NULL, NULL, NULL, NULL), (1595, 0, '<NAME>', NULL, NULL, NULL, NULL), (1596, 0, '<NAME>', NULL, NULL, NULL, NULL), (1597, 0, 's/ <NAME>', NULL, NULL, NULL, NULL), (1598, 0, '<NAME>', NULL, NULL, NULL, NULL), (1599, 0, '750 B Street, Suite 1820 San Diego, California 92101 Telephone: 619/239-4599 Facsimile: 619/234-4599 <EMAIL>', NULL, NULL, NULL, NULL), (1600, 0, '- 53 -', NULL, NULL, NULL, NULL), (1601, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 63 of 75', NULL, NULL, NULL, NULL), (1602, 0, '<NAME> & HERZ LLP MARK C. RIFKIN', NULL, NULL, NULL, NULL), (1603, 0, '<NAME>', NULL, NULL, NULL, NULL), (1604, 0, '270 Madison Avenue', NULL, NULL, NULL, NULL), (1605, 0, 'New York, New York 10016 Telephone: 212/545-4600 Facsimile: 212/545-4677 <EMAIL>', NULL, NULL, NULL, NULL), (1606, 0, 'Attorneys for Plaintiffs-Appellants', NULL, NULL, NULL, NULL), (1607, 0, '24866', NULL, NULL, NULL, NULL), (1608, 0, '- 54 -', NULL, NULL, NULL, NULL), (1609, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 64 of 75', NULL, NULL, NULL, NULL), (1610, 0, 'CERTIFICATE OF COMPLIANCE', NULL, NULL, NULL, NULL), (1611, 0, 'This brief complies with the type-volume limitation of Fed.', NULL, NULL, NULL, NULL), (1612, 0, 'R. App.', NULL, NULL, NULL, NULL), (1613, 0, 'P. 32', NULL, NULL, NULL, NULL), (1614, 0, '(a)(7)', NULL, NULL, NULL, NULL), (1615, 0, '(B) because it contains 12,876 words, excluding the parts of the brief exempted by Fed.', NULL, NULL, NULL, NULL), (1616, 0, 'R. App.', NULL, NULL, NULL, NULL), (1617, 0, 'P. 32', NULL, NULL, NULL, NULL), (1618, 0, '(a)(7)', NULL, NULL, NULL, NULL), (1619, 0, '(B)(i).', NULL, NULL, NULL, NULL), (1620, 0, 'This brief complies with the typeface requirements of Fed.', NULL, NULL, NULL, NULL), (1621, 0, 'R. App.', NULL, NULL, NULL, NULL), (1622, 0, 'P. 32', NULL, NULL, NULL, NULL), (1623, 0, '(a)(5) and the type style requirements of Fed.', NULL, NULL, NULL, NULL), (1624, 0, 'R. App.', NULL, NULL, NULL, NULL), (1625, 0, 'P. 32', NULL, NULL, NULL, NULL), (1626, 0, '(a)(6) because it has been prepared in a proportionally spaced typeface using Microsoft Office Word 2010 in Times New Roman type style, 14-point font.', NULL, NULL, NULL, NULL), (1627, 0, 'DATED: January 14, 2019 Respectfully submitted,', NULL, NULL, NULL, NULL), (1628, 0, '<NAME> & <NAME>', NULL, NULL, NULL, NULL), (1629, 0, '<NAME>', NULL, NULL, NULL, NULL), (1630, 0, '<NAME>', NULL, NULL, NULL, NULL), (1631, 0, 's/ <NAME> <NAME>', NULL, NULL, NULL, NULL), (1632, 0, '750 B Street, Suite 1820 San Diego, California 92101 Telephone: 619/239-4599 Facsimile: 619/234-4599 <EMAIL>', NULL, NULL, NULL, NULL), (1633, 0, 'Attorneys for Plaintiffs-Appellants', NULL, NULL, NULL, NULL), (1634, 0, '- 55 -', NULL, NULL, NULL, NULL), (1635, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 65 of 75', NULL, NULL, NULL, NULL), (1636, 0, 'STATEMENT OF RELATED CASES', NULL, NULL, NULL, NULL), (1637, 0, 'Plaintiffs are not aware of any related cases pending in this Court.', NULL, NULL, NULL, NULL), (1638, 0, '- 56 -', NULL, NULL, NULL, NULL), (1639, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 66 of 75', NULL, NULL, NULL, NULL), (1640, 0, 'ADDENDUM', NULL, NULL, NULL, NULL), (1641, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 67 of 75', NULL, NULL, NULL, NULL), (1642, 0, 'ADDENDUM TO OPENING BRIEF OF PLAINTIFF-APPELLANT', NULL, NULL, NULL, NULL), (1643, 0, 'TABLE OF CONTENTS', NULL, NULL, NULL, NULL), (1644, 0, 'Statutes Page', NULL, NULL, NULL, NULL), (1645, 0, 'Fed.', NULL, NULL, NULL, NULL), (1646, 0, 'R. Civ.', NULL, NULL, NULL, NULL), (1647, 0, 'P. 23 1', NULL, NULL, NULL, NULL), (1648, 0, 'Statutory Addendum', NULL, NULL, NULL, NULL), (1649, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 68 of 75', NULL, NULL, NULL, NULL), (1650, 0, 'Fed.', NULL, NULL, NULL, NULL), (1651, 0, '<NAME>.', NULL, NULL, NULL, NULL), (1652, 0, 'P. 23.', NULL, NULL, NULL, NULL), (1653, 0, 'Class Actions', NULL, NULL, NULL, NULL), (1654, 0, '(a) Prerequisites.', NULL, NULL, NULL, NULL), (1655, 0, 'One or more members of a class may sue or be sued as representative parties on behalf of all members only if:', NULL, NULL, NULL, NULL), (1656, 0, 'the class is so numerous that joinder of all members is impracticable;', NULL, NULL, NULL, NULL), (1657, 0, 'there are questions of law or fact common to the class;', NULL, NULL, NULL, NULL), (1658, 0, 'the claims or defenses of the representative parties are typical of the claims or defenses of the class; and', NULL, NULL, NULL, NULL), (1659, 0, 'the representative parties will fairly and adequately protect the interests of the class.', NULL, NULL, NULL, NULL), (1660, 0, '(b) Types of Class Actions.', NULL, NULL, NULL, NULL), (1661, 0, 'A class action may be maintained if Rule 23', NULL, NULL, NULL, NULL), (1662, 0, '(a) is satisfied and if:', NULL, NULL, NULL, NULL), (1663, 0, '(1) prosecuting separate actions by or against individual class members would create a risk of:', NULL, NULL, NULL, NULL), (1664, 0, 'inconsistent or varying adjudications with respect to individual class members that would establish incompatible standards of conduct for the party opposing the class; or', NULL, NULL, NULL, NULL), (1665, 0, 'adjudications with respect to individual class members that, as a practical matter, would be dispositive of the interests of the other members not parties to the individual adjudications or would substantially impair or impede their ability to protect their interests;', NULL, NULL, NULL, NULL), (1666, 0, '(2) the party opposing the class has acted or refused to act on grounds that apply generally to the class, so that final injunctive relief or corresponding declaratory relief is appropriate respecting the class as a whole; or', NULL, NULL, NULL, NULL), (1667, 0, '(3) the court finds that the questions of law or fact common to class members predominate over any questions affecting only individual members, and that a class action is superior to other available methods for fairly and efficiently adjudicating the controversy.', NULL, NULL, NULL, NULL), (1668, 0, 'The matters pertinent to these findings include:', NULL, NULL, NULL, NULL), (1669, 0, 'the class members’ interests in individually controlling the prosecution or defense of separate actions;', NULL, NULL, NULL, NULL), (1670, 0, 'the extent and nature of any litigation concerning the controversy already begun by or against class members;', NULL, NULL, NULL, NULL), (1671, 0, 'Statutory Addendum', NULL, NULL, NULL, NULL), (1672, 0, '- 1 -', NULL, NULL, NULL, NULL), (1673, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 69 of 75', NULL, NULL, NULL, NULL), (1674, 0, 'the desirability or undesirability of concentrating the litigation of the claims in the particular forum; and', NULL, NULL, NULL, NULL), (1675, 0, 'the likely difficulties in managing a class action.', NULL, NULL, NULL, NULL), (1676, 0, '(c) Certification Order; Notice to Class Members; Judgment; Issues Classes; Subclasses.', NULL, NULL, NULL, NULL), (1677, 0, '(1) Certification Order.', NULL, NULL, NULL, NULL), (1678, 0, 'Time to Issue.', NULL, NULL, NULL, NULL), (1679, 0, 'At an early practicable time after a person sues or is sued as a class representative, the court must determine by order whether to certify the action as a class action.', NULL, NULL, NULL, NULL), (1680, 0, 'Defining the Class; Appointing Class Counsel.', NULL, NULL, NULL, NULL), (1681, 0, 'An order that certifies a class action must define the class and the class claims, issues, or defenses, and must appoint class counsel under Rule 23', NULL, NULL, NULL, NULL), (1682, 0, '(g).', NULL, NULL, NULL, NULL), (1683, 0, 'Altering or Amending the Order.', NULL, NULL, NULL, NULL), (1684, 0, 'An order that grants or denies class certification may be altered or amended before final judgment.', NULL, NULL, NULL, NULL), (1685, 0, '(2) Notice.', NULL, NULL, NULL, NULL), (1686, 0, 'For', NULL, NULL, NULL, NULL), (1687, 0, '(b)(1) or', NULL, NULL, NULL, NULL), (1688, 0, '(b)(2) Classes.', NULL, NULL, NULL, NULL), (1689, 0, 'For any class certified under Rule 23', NULL, NULL, NULL, NULL), (1690, 0, '(b)(1) or', NULL, NULL, NULL, NULL), (1691, 0, '(b)(2), the court may direct appropriate notice to the class.', NULL, NULL, NULL, NULL), (1692, 0, 'For', NULL, NULL, NULL, NULL), (1693, 0, '(b)(3) Classes.', NULL, NULL, NULL, NULL), (1694, 0, 'For any class certified under Rule 23', NULL, NULL, NULL, NULL), (1695, 0, '(b)(3)— or upon ordering notice under Rule 23', NULL, NULL, NULL, NULL), (1696, 0, '(e)(1) to a class proposed to be certified for purposes of settlement under Rule 23', NULL, NULL, NULL, NULL), (1697, 0, '(b)(3)—the court must direct to class members the best notice that is practicable under the circumstances, including individual notice to all members who can be identified through reasonable effort.', NULL, NULL, NULL, NULL), (1698, 0, 'The notice may be by one or more of the following: United States mail, electronic means, or other appropriate means.', NULL, NULL, NULL, NULL), (1699, 0, 'The notice must clearly and concisely state in plain, easily understood language:', NULL, NULL, NULL, NULL), (1700, 0, 'the nature of the action;', NULL, NULL, NULL, NULL), (1701, 0, 'the definition of the class certified;', NULL, NULL, NULL, NULL), (1702, 0, 'the class claims, issues, or defenses;', NULL, NULL, NULL, NULL), (1703, 0, 'that a class member may enter an appearance through an attorney if the member so desires;', NULL, NULL, NULL, NULL), (1704, 0, 'that the court will exclude from the class any member who requests exclusion;', NULL, NULL, NULL, NULL), (1705, 0, 'the time and manner for requesting exclusion; and', NULL, NULL, NULL, NULL), (1706, 0, 'Statutory Addendum', NULL, NULL, NULL, NULL), (1707, 0, '- 2 -', NULL, NULL, NULL, NULL), (1708, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 70 of 75', NULL, NULL, NULL, NULL), (1709, 0, '(vii) the binding effect of a class judgment on members under Rule 23', NULL, NULL, NULL, NULL), (1710, 0, '(c)(3).', NULL, NULL, NULL, NULL), (1711, 0, '(3) Judgment.', NULL, NULL, NULL, NULL), (1712, 0, 'Whether or not favorable to the class, the judgment in a class action must:', NULL, NULL, NULL, NULL), (1713, 0, 'for any class certified under Rule 23', NULL, NULL, NULL, NULL), (1714, 0, '(b)(1) or', NULL, NULL, NULL, NULL), (1715, 0, '(b)(2), include and describe those whom the court finds to be class members; and', NULL, NULL, NULL, NULL), (1716, 0, 'for any class certified under Rule 23', NULL, NULL, NULL, NULL), (1717, 0, '(b)(3), include and specify or describe those to whom the Rule 23', NULL, NULL, NULL, NULL), (1718, 0, '(c)(2) notice was directed, who have not requested exclusion, and whom the court finds to be class members.', NULL, NULL, NULL, NULL), (1719, 0, '(4) Particular Issues.', NULL, NULL, NULL, NULL), (1720, 0, 'When appropriate, an action may be maintained as a class action with respect to particular issues.', NULL, NULL, NULL, NULL), (1721, 0, '(5) Subclasses.', NULL, NULL, NULL, NULL), (1722, 0, 'When appropriate, a class may be divided into subclasses that are each treated as a class under this rule.', NULL, NULL, NULL, NULL), (1723, 0, '(d) Conducting the Action.', NULL, NULL, NULL, NULL), (1724, 0, '(1) In General.', NULL, NULL, NULL, NULL), (1725, 0, 'In conducting an action under this rule, the court may issue orders that:', NULL, NULL, NULL, NULL), (1726, 0, '(A) determine the course of proceedings or prescribe measures to prevent undue repetition or complication in presenting evidence or argument;', NULL, NULL, NULL, NULL), (1727, 0, '(B) require—to protect class members and fairly conduct the action— giving appropriate notice to some or all class members of:', NULL, NULL, NULL, NULL), (1728, 0, 'any step in the action;', NULL, NULL, NULL, NULL), (1729, 0, 'the proposed extent of the judgment; or', NULL, NULL, NULL, NULL), (1730, 0, 'the members’ opportunity to signify whether they consider the representation fair and adequate, to intervene and present claims or defenses, or to otherwise come into the action;', NULL, NULL, NULL, NULL), (1731, 0, '(C) impose conditions on the representative parties or on intervenors;', NULL, NULL, NULL, NULL), (1732, 0, '(D) require that the pleadings be amended to eliminate allegations about representation of absent persons and that the action proceed accordingly; or', NULL, NULL, NULL, NULL), (1733, 0, '(E) deal with similar procedural matters.', NULL, NULL, NULL, NULL), (1734, 0, 'Statutory Addendum', NULL, NULL, NULL, NULL), (1735, 0, '- 3 -', NULL, NULL, NULL, NULL), (1736, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 71 of 75', NULL, NULL, NULL, NULL), (1737, 0, '(2) Combining and Amending Orders.', NULL, NULL, NULL, NULL), (1738, 0, 'An order under Rule 23', NULL, NULL, NULL, NULL), (1739, 0, '(d)(1) may be altered or amended from time to time and may be combined with an order under Rule 16.', NULL, NULL, NULL, NULL), (1740, 0, '(e) Settlement, Voluntary Dismissal, or Compromise.', NULL, NULL, NULL, NULL), (1741, 0, 'The claims, issues, or defenses of a certified class—or a class proposed to be certified for purposes of settlement—may be settled, voluntarily dismissed, or compromised only with the court’s approval.', NULL, NULL, NULL, NULL), (1742, 0, 'The following procedures apply to a proposed settlement, voluntary dismissal, or compromise:', NULL, NULL, NULL, NULL), (1743, 0, '(1) Notice to the Class.', NULL, NULL, NULL, NULL), (1744, 0, 'Information That Parties Must Provide to the Court.', NULL, NULL, NULL, NULL), (1745, 0, 'The parties must provide the court with information sufficient to enable it to determine whether to give notice of the proposal to the class.', NULL, NULL, NULL, NULL), (1746, 0, 'Grounds for a Decision to Give Notice.', NULL, NULL, NULL, NULL), (1747, 0, 'The court must direct notice in a reasonable manner to all class members who would be bound by the proposal if giving notice is justified by the parties’ showing that the court will likely be able to:', NULL, NULL, NULL, NULL), (1748, 0, 'approve the proposal under Rule 23', NULL, NULL, NULL, NULL), (1749, 0, '(e)(2); and', NULL, NULL, NULL, NULL), (1750, 0, 'certify the class for purposes of judgment on the proposal.', NULL, NULL, NULL, NULL), (1751, 0, '(2) Approval of the Proposal.', NULL, NULL, NULL, NULL), (1752, 0, 'If the proposal would bind class members, the court may approve it only after a hearing and only on finding that it is fair, reasonable, and adequate after considering whether:', NULL, NULL, NULL, NULL), (1753, 0, '(A) the class representatives and class counsel have adequately represented the class;', NULL, NULL, NULL, NULL), (1754, 0, '(B) the proposal was negotiated at arm’s length;', NULL, NULL, NULL, NULL), (1755, 0, '(C) the relief provided for the class is adequate, taking into account:', NULL, NULL, NULL, NULL), (1756, 0, 'the costs, risks, and delay of trial and appeal;', NULL, NULL, NULL, NULL), (1757, 0, 'the effectiveness of any proposed method of distributing relief to the class, including the method of processing class-member claims;', NULL, NULL, NULL, NULL), (1758, 0, 'the terms of any proposed award of attorney’s fees, including timing of payment; and', NULL, NULL, NULL, NULL), (1759, 0, 'any agreement required to be identified under Rule 23', NULL, NULL, NULL, NULL), (1760, 0, '(e)(3); and', NULL, NULL, NULL, NULL), (1761, 0, '(D) the proposal treats class members equitably relative to each other.', NULL, NULL, NULL, NULL), (1762, 0, 'Statutory Addendum', NULL, NULL, NULL, NULL), (1763, 0, '- 4 -', NULL, NULL, NULL, NULL), (1764, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 72 of 75', NULL, NULL, NULL, NULL), (1765, 0, 'Identifying Agreements.', NULL, NULL, NULL, NULL), (1766, 0, 'The parties seeking approval must file a statement identifying any agreement made in connection with the proposal.', NULL, NULL, NULL, NULL), (1767, 0, 'New Opportunity to Be Excluded.', NULL, NULL, NULL, NULL), (1768, 0, 'If the class action was previously certified under Rule 23', NULL, NULL, NULL, NULL), (1769, 0, '(b)(3), the court may refuse to approve a settlement unless it affords a new opportunity to request exclusion to individual class members who had an earlier opportunity to request exclusion but did not do so.', NULL, NULL, NULL, NULL), (1770, 0, 'Class-Member Objections.', NULL, NULL, NULL, NULL), (1771, 0, '(A) In General.', NULL, NULL, NULL, NULL), (1772, 0, 'Any class member may object to the proposal if it requires court approval under this subdivision', NULL, NULL, NULL, NULL), (1773, 0, '(e).', NULL, NULL, NULL, NULL), (1774, 0, 'The objection must state whether it applies only to the objector, to a specific subset of the class, or to the entire class, and also state with specificity the grounds for the objection.', NULL, NULL, NULL, NULL), (1775, 0, '(B) Court Approval Required for Payment in Connection with an Objection.', NULL, NULL, NULL, NULL), (1776, 0, 'Unless approved by the court after a hearing, no payment or other consideration may be provided in connection with:', NULL, NULL, NULL, NULL), (1777, 0, 'forgoing or withdrawing an objection, or', NULL, NULL, NULL, NULL), (1778, 0, 'forgoing, dismissing, or abandoning an appeal from a judgment approving the proposal.', NULL, NULL, NULL, NULL), (1779, 0, '(C) Procedure for Approval After an Appeal.', NULL, NULL, NULL, NULL), (1780, 0, 'If approval under Rule 23', NULL, NULL, NULL, NULL), (1781, 0, '(e)(5)', NULL, NULL, NULL, NULL), (1782, 0, '(B) has not been obtained before an appeal is docketed in the court of appeals, the procedure of Rule 62.1 applies while the appeal remains pending.', NULL, NULL, NULL, NULL), (1783, 0, 'Appeals.', NULL, NULL, NULL, NULL), (1784, 0, 'A court of appeals may permit an appeal from an order granting or denying class-action certification under this rule, but not from an order under Rule 23', NULL, NULL, NULL, NULL), (1785, 0, '(e)(1).', NULL, NULL, NULL, NULL), (1786, 0, 'A party must file a petition for permission to appeal with the circuit clerk within 14 days after the order is entered, or within 45 days after the order is entered if any party is the United States, a United States agency, or a United States officer or employee sued for an act or omission occurring in connection with duties performed on the United States’ behalf.', NULL, NULL, NULL, NULL), (1787, 0, 'An appeal does not stay proceedings in the district court unless the district judge or the court of appeals so orders.', NULL, NULL, NULL, NULL), (1788, 0, 'Class Counsel.', NULL, NULL, NULL, NULL), (1789, 0, 'Statutory Addendum', NULL, NULL, NULL, NULL), (1790, 0, '- 5 -', NULL, NULL, NULL, NULL), (1791, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 73 of 75', NULL, NULL, NULL, NULL), (1792, 0, '(1) Appointing Class Counsel.', NULL, NULL, NULL, NULL), (1793, 0, 'Unless a statute provides otherwise, a court that certifies a class must appoint class counsel.', NULL, NULL, NULL, NULL), (1794, 0, 'In appointing class counsel, the court:', NULL, NULL, NULL, NULL), (1795, 0, '(A) must consider:', NULL, NULL, NULL, NULL), (1796, 0, 'the work counsel has done in identifying or investigating potential claims in the action;', NULL, NULL, NULL, NULL), (1797, 0, 'counsel’s experience in handling class actions, other complex litigation, and the types of claims asserted in the action;', NULL, NULL, NULL, NULL), (1798, 0, 'counsel’s knowledge of the applicable law; and', NULL, NULL, NULL, NULL), (1799, 0, 'the resources that counsel will commit to representing the class;', NULL, NULL, NULL, NULL), (1800, 0, '(B) may consider any other matter pertinent to counsel’s ability to fairly and adequately represent the interests of the class;', NULL, NULL, NULL, NULL), (1801, 0, '(C) may order potential class counsel to provide information on any subject pertinent to the appointment and to propose terms for attorney’s fees and nontaxable costs;', NULL, NULL, NULL, NULL), (1802, 0, '(D) may include in the appointing order provisions about the award of attorney’s fees or nontaxable costs under Rule 23', NULL, NULL, NULL, NULL), (1803, 0, '(h); and', NULL, NULL, NULL, NULL), (1804, 0, '(E) may make further orders in connection with the appointment.', NULL, NULL, NULL, NULL), (1805, 0, '(2) Standard for Appointing Class Counsel.', NULL, NULL, NULL, NULL), (1806, 0, 'When one applicant seeks appointment as class counsel, the court may appoint that applicant only if the applicant is adequate under Rule 23', NULL, NULL, NULL, NULL), (1807, 0, '(g)(1) and (4).', NULL, NULL, NULL, NULL), (1808, 0, 'If more than one adequate applicant seeks appointment, the court must appoint the applicant best able to represent the interests of the class.', NULL, NULL, NULL, NULL), (1809, 0, '(3) Interim Counsel.', NULL, NULL, NULL, NULL), (1810, 0, 'The court may designate interim counsel to act on behalf of a putative class before determining whether to certify the action as a class action.', NULL, NULL, NULL, NULL), (1811, 0, '(4) Duty of Class Counsel.', NULL, NULL, NULL, NULL), (1812, 0, 'Class counsel must fairly and adequately represent the interests of the class.', NULL, NULL, NULL, NULL), (1813, 0, '(h) Attorney’s Fees and Nontaxable Costs.', NULL, NULL, NULL, NULL), (1814, 0, 'In a certified class action, the court may award reasonable attorney’s fees and nontaxable costs that are authorized by law or by the parties’ agreement.', NULL, NULL, NULL, NULL), (1815, 0, 'The following procedures apply:', NULL, NULL, NULL, NULL), (1816, 0, '(1) A claim for an award must be made by motion under Rule 54', NULL, NULL, NULL, NULL), (1817, 0, '(d)(2), subject to the provisions of this subdivision', NULL, NULL, NULL, NULL), (1818, 0, '(h), at a time the court sets.', NULL, NULL, NULL, NULL), (1819, 0, 'Statutory Addendum', NULL, NULL, NULL, NULL), (1820, 0, '- 6 -', NULL, NULL, NULL, NULL), (2104, 0, 'A. Statement of Facts', NULL, NULL, NULL, NULL), (2105, 0, 'Apple introduced the iPhone in June of 2007.', NULL, NULL, NULL, NULL), (2106, 0, 'See Ward v. Apple Inc., 791', NULL, NULL, NULL, NULL), (2107, 0, 'F.3d 1041, 1043 (9th Cir. 2015).', NULL, NULL, NULL, NULL), (2108, 0, 'Before doing so, on or about August 10, 2006, Apple (then called Apple Computer, Inc.) entered into an undisclosed agreement called the Distribution and Revenue Share Agreement (the “Agreement” or “DRSA”) with ATTM (then called Cingular Wireless LLC) that made ATTM the', NULL, NULL, NULL, NULL), (2109, 0, '- 2 -', NULL, NULL, NULL, NULL), (2110, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 12 of 75', NULL, NULL, NULL, NULL), (2111, 0, 'exclusive provider of Wireless Service for the iPhone for five years.', NULL, NULL, NULL, NULL), (2112, 0, 'Id.', NULL, NULL, NULL, NULL), (2113, 0, '; EOR 315, ¶¶ 2, 3.1.', NULL, NULL, NULL, NULL), (2114, 0, 'In exchange for the exclusivity given to ATTM, Apple received a percentage of ATTM’s revenues and profits on the first generation of iPhones, known as the iPhone 2G.', NULL, NULL, NULL, NULL), (2115, 0, 'EOR 316, ¶ 4.1.', NULL, NULL, NULL, NULL), (2116, 0, 'The five-year exclusivity provided for in the Agreement was and is unprecedented in the cellular service industry, and the five-year term has never been publicly disclosed to anyone outside of Apple and ATTM.', NULL, NULL, NULL, NULL), (2117, 0, 'EOR 436-37, ¶ 27; 496, ¶¶ 8-9; 501, ¶¶ 1-2.', NULL, NULL, NULL, NULL), (2118, 0, 'The DRSA was so important to Apple and ATTM that the economic viability of both Apple and ATTM depended upon customers being “locked” to ATTM as the exclusive iPhone Wireless Service provider.', NULL, NULL, NULL, NULL), (2119, 0, 'EOR 487, 36:9-13 (“for the economic viability for both companies it was essential” that iPhones not be unlocked).', NULL, NULL, NULL, NULL), (2120, 0, 'Apple and ATTM expressly agreed not to disclose any of the terms or conditions of the DRSA and to coordinate their public announcements about it.', NULL, NULL, NULL, NULL), (2121, 0, 'EOR 326, ¶ 14.1.', NULL, NULL, NULL, NULL), (2122, 0, 'Although the full five-year term of exclusivity never came to pass, Apple and non-party ATTM readily admit they never disclosed the agreed-upon duration of the DRSA to the public or even to their own employees.', NULL, NULL, NULL, NULL), (2123, 0, 'EOR 495-96, ¶¶ 2-7.', NULL, NULL, NULL, NULL), (2124, 0, 'Apple and ATTM agreed they would say only that the agreement between Apple and ATTM was for an indefinite “multi-year” period; they took great pains to keep the length of ATTM’s exclusivity period secret.', NULL, NULL, NULL, NULL), (2125, 0, 'See, e.g., EOR 489 (employees', NULL, NULL, NULL, NULL), (2126, 0, '- 3 -', NULL, NULL, NULL, NULL), (2127, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 13 of 75', NULL, NULL, NULL, NULL), (2128, 0, 'told “multiyear”); EOR 492 (“WHAT WE ARE NOT TALKING ABOUT: Terms of the deal other than stating ‘multi-year, exclusive’”).', NULL, NULL, NULL, NULL), (2129, 0, 'Apple concedes that none of its sales or customer service representatives was told of the duration of the Agreement, and it does not know of any iPhone customer who was told of the duration.', NULL, NULL, NULL, NULL), (2130, 0, 'EOR 495-96, ¶¶ 2-7; 501, ¶¶ 1-2.', NULL, NULL, NULL, NULL), (2131, 0, 'Each Plaintiff and every other member of the Class entered into two-year Wireless Service Agreements (“WSAs”) with ATTM.', NULL, NULL, NULL, NULL), (2132, 0, 'Neither Plaintiffs nor any other Class member agreed to use ATTM for longer than two years.', NULL, NULL, NULL, NULL), (2133, 0, 'Furthermore, neither of the Plaintiffs were told by Apple or ATTM that they would be required to use ATTM beyond the two-year term of their WSAs in order to use their iPhones or that they would not be provided with unlock codes that would enable them to switch to another Wireless Service provider upon expiration of their two-year WSAs.', NULL, NULL, NULL, NULL), (2134, 0, 'EOR 182, ¶ 12; EOR 187, ¶ 13.', NULL, NULL, NULL, NULL), (2135, 0, 'Apple and ATTM’s undisclosed exclusivity Agreement and the technological impediments that Apple embedded in the iPhones, however, effectively locked iPhone users into using ATTM for longer than two years, despite their contractual rights and contrary to their reasonable expectations based on prior industry practices.', NULL, NULL, NULL, NULL), (2136, 0, 'When Apple and ATTM began selling iPhones to the public, they charged all customers the same price for 2G iPhones ($499 for the 4 gigabyte model/$599 for the 8 gigabyte model).', NULL, NULL, NULL, NULL), (2137, 0, 'Likewise, the 3G iPhone, released on July 11, 2008,', NULL, NULL, NULL, NULL), (2138, 0, '- 4 -', NULL, NULL, NULL, NULL), (2139, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 14 of 75', NULL, NULL, NULL, NULL), (2140, 0, 'was sold to all customers at the same price ($199 for the 8 gigabyte model/$299 for the 16 gigabyte model), as was the 3GS iPhone, released on June 19, 2009 ($199 for the 16 gigabyte model/$299 for the 32 gigabyte model).', NULL, NULL, NULL, NULL), (2141, 0, 'All iPhone customers were also required to enter into two-year WSAs with ATTM for iPhone Wireless Service at uniform prices.', NULL, NULL, NULL, NULL), (2142, 0, 'EOR 477-78.1', NULL, NULL, NULL, NULL), (2143, 0, 'On June 8, 2008, Apple and ATTM entered into the First Amendments to Key Terms and Reseller Agreements (the “Amended Agreement”), which revised their original revenue-sharing arrangement.', NULL, NULL, NULL, NULL), (2144, 0, 'EOR 513-22.', NULL, NULL, NULL, NULL), (2145, 0, 'In relevant part, the Amended Agreement eliminated revenue-sharing for the iPhone 3G and 3GS.', NULL, NULL, NULL, NULL), (2146, 0, 'EOR 513, ¶ 2. However, the Amended Agreement continued revenue sharing for the 2G iPhone.', NULL, NULL, NULL, NULL), (2147, 0, 'Id.', NULL, NULL, NULL, NULL), (2148, 0, 'The Amended Agreement also shortened ATTM’s period of exclusivity for iPhone cellular service from five years under the DRSA to three and one-half years.', NULL, NULL, NULL, NULL), (2149, 0, 'EOR 517, ¶ 5.1.', NULL, NULL, NULL, NULL), (2150, 0, 'To enforce ATTM’s exclusivity, Apple programmed and installed software locks on each iPhone that prevent consumers from switching to any other carrier’s Wireless Service and agreed with ATTM to never give consumers the iPhone unlock codes, either for international travel or to lawfully switch to another carrier, even after they fulfilled their original service commitments with ATTM.', NULL, NULL, NULL, NULL), (2151, 0, 'EOR 317,', NULL, NULL, NULL, NULL), (2152, 0, '1 ATTM gave certain customers corporate discounts of between 10 and 20', NULL, NULL, NULL, NULL), (2153, 0, 'percent off the consumer prices for 3G and 3GS iPhone Wireless Service.', NULL, NULL, NULL, NULL), (2154, 0, 'EOR 510-11, 61:5-62:3.', NULL, NULL, NULL, NULL), (2155, 0, 'The corporate discount was the only discount, promotion, or other price reduction offered by ATTM.', NULL, NULL, NULL, NULL), (2156, 0, 'EOR 511, 63:5-9.', NULL, NULL, NULL, NULL), (2157, 0, '- 5 -', NULL, NULL, NULL, NULL), (2158, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 15 of 75', NULL, NULL, NULL, NULL), (2159, 0, '¶ 4.2; EOR 178.', NULL, NULL, NULL, NULL), (2160, 0, 'By locking the iPhones and refusing to give consumers the software codes needed to unlock them, Apple and ATTM unlawfully prevented iPhone customers from exercising their legal right to switch carriers.', NULL, NULL, NULL, NULL), (2161, 0, 'Among other injuries, iPhone consumers were unable to switch to a less expensive carrier in the U.S. (such as T-Mobile) and unable to use local carriers while traveling abroad, thus incurring exorbitant roaming charges – amounting to thousands of dollars per trip – to ATTM, which it agreed to share with Apple under certain circumstances.', NULL, NULL, NULL, NULL), (2162, 0, 'EOR 139; EOR 314-15, 325 ¶¶ 1.29, 1.30, 12.3.', NULL, NULL, NULL, NULL), (2163, 0, 'By virtue of the Agreement and the Amended Agreement, ATTM charged supra-competitive prices for Wireless Services, which it shared with Apple during the terms of these agreements (Ward, 791 F.3d at 1044), which impacted the total ownership cost (“TOC”) for all Class members.', NULL, NULL, NULL, NULL), (2164, 0, 'In addition, Apple extracted supra-competitive profits from all Class members by virtue of its conspiracy to monopolize the aftermarket for iPhone Wireless Service by charging more for the iPhone than it could have had the exclusivity arrangements been disclosed.', NULL, NULL, NULL, NULL), (2165, 0, 'See, e.g., EOR 236, ¶ 76; EOR 133, 139, ¶¶ 10, 30; EOR 282, ¶ 37.', NULL, NULL, NULL, NULL), (2166, 0, 'B. Procedural History', NULL, NULL, NULL, NULL), (2167, 0, 'Before this action was filed, purchasers of iPhones filed an earlier antitrust class action against Apple and ATTM arising from the exclusivity arrangement between the two.', NULL, NULL, NULL, NULL), (2168, 0, 'In re Apple & AT&TM Antitrust Litig.', NULL, NULL, NULL, NULL), (2169, 0, ', No.', NULL, NULL, NULL, NULL), (2170, 0, 'C 07-05152 JW', NULL, NULL, NULL, NULL), (2171, 0, '- 6 -', NULL, NULL, NULL, NULL), (2172, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 16 of 75', NULL, NULL, NULL, NULL), (2173, 0, '(N.D. Cal.) (“Apple I”).', NULL, NULL, NULL, NULL), (2174, 0, 'In that action, which was pending before then Chief Judge <NAME> of the Northern District of California, the district court granted the plaintiffs’ motion for class certification and certified a class essentially identical to the Class proposed here (apart from the Class Period) of “[a]ll persons who purchased or acquired an iPhone in the United States and entered into a two-year agreement with Defendant AT&T Mobility, LLC for iPhone voice and data service any time from June 29, 2007, to the present.”', NULL, NULL, NULL, NULL), (2175, 0, 'Id., No.', NULL, NULL, NULL, NULL), (2176, 0, 'C 07-05152 JW, 2010 U.S. Dist.', NULL, NULL, NULL, NULL), (2177, 0, 'LEXIS 98270, at *27 (N.D. Cal. July 8, 2010).', NULL, NULL, NULL, NULL), (2178, 0, 'However, the case ultimately ended when the district court granted ATTM’s motion to compel arbitration as to the claims against it based on an arbitration clause in its contracts with its customers.', NULL, NULL, NULL, NULL), (2179, 0, 'See Apple I, 826 F. Supp.', NULL, NULL, NULL, NULL), (2180, 0, '2d 1168 (N.D. Cal. 2011).2', NULL, NULL, NULL, NULL), (2181, 0, 'On October 19, 2012, Plaintiffs brought this action against Apple only.', NULL, NULL, NULL, NULL), (2182, 0, 'EOR 221-238.', NULL, NULL, NULL, NULL), (2183, 0, 'On December 17, 2012, the District Court dismissed the Complaint, ruling that ATTM was a necessary and indispensable party.', NULL, NULL, NULL, NULL), (2184, 0, 'EOR 216-20; Ward, 791 F.3d at 1045.', NULL, NULL, NULL, NULL), (2185, 0, 'On June 29, 2015, this Court reversed the District Court’s dismissal of the Complaint, holding that ATTM is not a necessary or indispensable party under Federal Rules of Civil Procedure 19', NULL, NULL, NULL, NULL), (2186, 0, '(a) and', NULL, NULL, NULL, NULL), (2187, 0, '(b).', NULL, NULL, NULL, NULL), (2188, 0, 'Ward, 791 F.3d at 1055.', NULL, NULL, NULL, NULL), (2189, 0, 'On August 31, 2015, at a Case Management Conference (“CMC”) following remand, the District Court expressed disagreement with this Court’s', NULL, NULL, NULL, NULL), (2190, 0, '2 The class was also decertified in light of the grant of the motion to compel', NULL, NULL, NULL, NULL), (2191, 0, '(id.), which has no bearing on this appeal.', NULL, NULL, NULL, NULL), (2192, 0, '- 7 -', NULL, NULL, NULL, NULL), (2193, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 17 of 75', NULL, NULL, NULL, NULL), (2194, 0, 'ruling, calling the reversal an “interesting opinion by the Ninth Circuit.”', NULL, NULL, NULL, NULL), (2195, 0, 'EOR 192, 2:17-19.', NULL, NULL, NULL, NULL), (2196, 0, 'During the same CMC, the District Court also stated that the case was “stale.”', NULL, NULL, NULL, NULL), (2197, 0, 'EOR 214, 4:2-16.', NULL, NULL, NULL, NULL), (2198, 0, 'On September 15, 2015, Apple again moved to dismiss the Complaint, this time contending that Plaintiffs’ definition of the relevant market was improper.', NULL, NULL, NULL, NULL), (2199, 0, 'EOR 247, ECF No. 57.', NULL, NULL, NULL, NULL), (2200, 0, 'On December 15, 2015, the District Court denied Apple’s motion, but permitted Apple to file a “narrow motion for summary judgment . . . solely on the issue of whether the complaint alleges a relevant market.”', NULL, NULL, NULL, NULL), (2201, 0, 'EOR 190.', NULL, NULL, NULL, NULL), (2202, 0, 'On February 2, 2016, Apple moved for summary judgment, claiming the aftermarket for iPhone Wireless Service was not a relevant antitrust market.', NULL, NULL, NULL, NULL), (2203, 0, 'EOR 249, ECF No. 78.', NULL, NULL, NULL, NULL), (2204, 0, 'The District Court granted in part and denied in part Apple’s summary judgment motion on March 22, 2017.', NULL, NULL, NULL, NULL), (2205, 0, 'EOR 164-76.', NULL, NULL, NULL, NULL), (2206, 0, 'The District Court found there was no relevant antitrust market during the initial two-year service period under ATTM’s WSA and granted Apple’s motion for summary judgment to that extent.', NULL, NULL, NULL, NULL), (2207, 0, 'EOR 175-76.', NULL, NULL, NULL, NULL), (2208, 0, 'However, the District Court found Plaintiffs could prove that Apple manipulated the aftermarket for iPhone Wireless Service by refusing to unlock iPhones for either domestic or international use after the initial two-year service period expired and denied Apple’s motion for summary judgment to that extent.', NULL, NULL, NULL, NULL), (2209, 0, 'EOR 175.', NULL, NULL, NULL, NULL), (2210, 0, '- 8 -', NULL, NULL, NULL, NULL), (2211, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 18 of 75', NULL, NULL, NULL, NULL), (2212, 0, 'In ruling on Apple’s motion for summary judgment, the District Court found:', NULL, NULL, NULL, NULL), (2213, 0, '[P]laintiffs have submitted evidence showing that defendant may have manipulated a market for service plans where defendant failed or refused to unlock the phones after the expiration of the two-year commitment for either domestic or international use.', NULL, NULL, NULL, NULL), (2214, 0, '* * *', NULL, NULL, NULL, NULL), (2215, 0, 'These consumers could have expected to switch to another GSM provider, like T-Mobile, at the end of the two-year contract with [ATTM].', NULL, NULL, NULL, NULL), (2216, 0, 'However, as plaintiffs’ evidence suggests, [ATTM] did not begin providing unlock codes for such phones until April 2012.', NULL, NULL, NULL, NULL), (2217, 0, 'Consequently, these consumers would have been locked into renewing ATTM service, or else lose the cellular capabilities of their iPhones.', NULL, NULL, NULL, NULL), (2218, 0, 'EOR 175.', NULL, NULL, NULL, NULL), (2219, 0, 'During a May 1, 2017 CMC, despite this Court’s decision to the contrary, the District Court again expressed the view that ATTM was an indispensable party (EOR 144, 4:18-20), and reiterated that the case was too old.', NULL, NULL, NULL, NULL), (2220, 0, 'EOR 143, 3:4-8.', NULL, NULL, NULL, NULL), (2221, 0, 'On August 15, 2017, Plaintiffs moved for class certification.', NULL, NULL, NULL, NULL), (2222, 0, 'EOR 259, ECF No. 158.', NULL, NULL, NULL, NULL), (2223, 0, 'Among other evidence offered in support of their class certification motion, Plaintiffs submitted an expert declaration and a supplemental declaration from a noted antitrust economist, <NAME>, Ph.D. (“Dr. Warren-Boulton”).3', NULL, NULL, NULL, NULL), (2224, 0, 'EOR 128-40 and 266-304.', NULL, NULL, NULL, NULL), (2225, 0, 'In his Expert Declaration, Dr.', NULL, NULL, NULL, NULL), (2226, 0, '3 Dr. Warren-Boulton is an antitrust economist and principal at', NULL, NULL, NULL, NULL), (2227, 0, 'Microeconomic Consulting & Research Associates (“MiCRA”) in Washington D.C. His extensive credentials and experience are set forth in his curriculum vitae, which is attached to his Supplemental Declaration.', NULL, NULL, NULL, NULL), (2228, 0, 'EOR 288-304.', NULL, NULL, NULL, NULL), (2229, 0, 'Dr. Warren-', NULL, NULL, NULL, NULL), (2230, 0, '- 9 -', NULL, NULL, NULL, NULL), (2231, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 19 of 75', NULL, NULL, NULL, NULL), (2232, 0, 'Warren-Boulton provided his expert opinion that (1) Apple’s alleged conduct in “the aftermarket for iPhone [Wireless Service], if proven, can establish that all or almost all members of the proposed Class in this case sustained similar economic injury, and (2) . . . there exist a common methodology and data to reliably assess the existence and amount of damages to the Class members without the need for individual inquiry.”', NULL, NULL, NULL, NULL), (2233, 0, 'EOR 130, 138-40, ¶¶ 2, 24, 29, 30-31.', NULL, NULL, NULL, NULL), (2234, 0, 'In his Expert Declaration, Dr. Warren-Boulton employed a “but-for” methodology, which is commonly used in antitrust cases to demonstrate impact and resultant damages.', NULL, NULL, NULL, NULL), (2235, 0, 'See Section VIII.B, infra.', NULL, NULL, NULL, NULL), (2236, 0, 'Specifically, using widely accepted standards and methods in his area of expertise, Dr. Warren-Boulton analyzed the iPhone Wireless Service aftermarket and identified two potentially appropriate so-called “but-for” worlds, i.e., what would have happened absent Apple’s conspiracy with ATTM to monopolize the aftermarket for iPhone Wireless Service.', NULL, NULL, NULL, NULL), (2237, 0, 'The timing and nature of the harm to members of the Class, as well as the methods for estimating that harm (discussed below), depends on which of the two assumed but-for worlds apply.', NULL, NULL, NULL, NULL), (2238, 0, 'EOR 130-31, ¶ 4. Both but-for methodologies are designed to identify the harm and calculate the damages attributable solely to', NULL, NULL, NULL, NULL), (2239, 0, 'Boulton has a B.A. in economics from Yale University, an M.A. and Ph.D. in economics from Princeton University, and over 30 years of experience in the field of antitrust and regulatory economics.', NULL, NULL, NULL, NULL), (2240, 0, 'Among other things, he has testified on behalf of the Department of Justice in U.S. v. AT&T and U.S. v. Microsoft.', NULL, NULL, NULL, NULL), (2241, 0, 'EOR 288.', NULL, NULL, NULL, NULL), (2242, 0, 'Apple did not challenge Dr. Warren-Boulton’s qualifications or move to exclude any portion of his expert opinions under Federal Rule of Evidence 702.', NULL, NULL, NULL, NULL), (2243, 0, '- 10 -', NULL, NULL, NULL, NULL), (2244, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 20 of 75', NULL, NULL, NULL, NULL), (2245, 0, 'Plaintiffs’ theory of liability – that Apple manipulated the iPhone Wireless Service aftermarket – and are fully consistent with the District Court’s summary judgment ruling that the Plaintiffs have a triable claim that Apple manipulated the aftermarket for iPhone Wireless Service after expiration of Class members’ two-year WSAs.', NULL, NULL, NULL, NULL), (2246, 0, 'Dr. Warren-Boulton’s first but-for world is the “truthfully exclusive”', NULL, NULL, NULL, NULL), (2247, 0, '(“TE”)', NULL, NULL, NULL, NULL), (2248, 0, 'world, where Apple would have adequately informed prospective customers that neither it nor ATTM would unlock their iPhones when their initial two-year WSAs ended.', NULL, NULL, NULL, NULL), (2249, 0, 'EOR 134, ¶¶ 13-14.', NULL, NULL, NULL, NULL), (2250, 0, 'As Dr. Warren-Boulton explained, in the TE world, informing iPhone purchasers that Apple would not unlock their phones would have reduced what consumers were willing to pay for their iPhones, or the “reservation prices,” by an amount equal to the present value of the lower prices or higher quality of the Wireless Service they could have expected to receive on their iPhones after the expiration of their WSAs.', NULL, NULL, NULL, NULL), (2251, 0, 'EOR 138-39, ¶¶ 25-29.', NULL, NULL, NULL, NULL), (2252, 0, 'The second but-for world is the “truthfully non-exclusive”', NULL, NULL, NULL, NULL), (2253, 0, '(“TNE”)', NULL, NULL, NULL, NULL), (2254, 0, 'world, where Apple, recognizing the need to adequately inform customers about the unlock policy, would have, upon request, agreed to unlock iPhones at the end of the customers’ WSAs.', NULL, NULL, NULL, NULL), (2255, 0, 'EOR 135, ¶ 15.', NULL, NULL, NULL, NULL), (2256, 0, 'In the TNE world, the refusal of Apple and ATTM to unlock iPhones upon the expiration of Class members’ WSAs with ATTM increased the total cost of ownership in the as-is world through higher', NULL, NULL, NULL, NULL), (2257, 0, '- 11 -', NULL, NULL, NULL, NULL), (2258, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 21 of 75', NULL, NULL, NULL, NULL), (2259, 0, 'prices or lower quality iPhone voice and data service', NULL, NULL, NULL, NULL), (2260, 0, '(or both).', NULL, NULL, NULL, NULL), (2261, 0, 'EOR 136-38, ¶¶ 19-24.', NULL, NULL, NULL, NULL), (2262, 0, 'Dr. Warren-Boulton reviewed the expert declarations of plaintiffs’ expert antitrust economist, <NAME> Ph.D.', NULL, NULL, NULL, NULL), (2263, 0, '(“Dr. Wilkie”), submitted in support of plaintiffs’ successful class certification motion in Apple I and recognized the utility of Wilkie’s methodology for calculating damages in at least one of the two possible but-for worlds, the TNE world.', NULL, NULL, NULL, NULL), (2264, 0, 'EOR 136-38, ¶¶ 19-23.', NULL, NULL, NULL, NULL), (2265, 0, 'Dr. Wilkie determined that T-Mobile’s Wireless Service was a reasonable alternative to ATTM’s own Wireless Service and was able to measure damages based on the differences between ATTM’s prices and T-Mobile’s prices for similar Wireless Service plans.', NULL, NULL, NULL, NULL), (2266, 0, 'EOR 455-56, ¶¶ 64-65.', NULL, NULL, NULL, NULL), (2267, 0, 'Based on his expert analysis, informed by sound econometric principles, <NAME> affirmatively concluded that “Class members who purchased iPhones have been harmed by Apple’s conspiracy with [ATTM] to monopolize the aftermarket for iPhone Wireless Service in each of the but-for worlds as measured by an increase in the total cost of ownership', NULL, NULL, NULL, NULL), (2268, 0, '(“TCO”)4 of iPhones and [Wireless Service] for those consumers.', NULL, NULL, NULL, NULL), (2269, 0, '” EOR 131, ¶ 7.', NULL, NULL, NULL, NULL), (2270, 0, 'In response to Dr. Warren-Boulton’s Expert Declaration, Apple submitted a declaration from <NAME>, Ph.D. identifying a number of purported issues', NULL, NULL, NULL, NULL), (2271, 0, '4 “TCO consists of the purchase price of the iPhone plus the cost of service', NULL, NULL, NULL, NULL), (2272, 0, 'for the iPhone over its expected useful lifetime', NULL, NULL, NULL, NULL), (2273, 0, '(the expected lifetime extends until the iPhone is expected to be scrapped; i.e., it include us as a used or refurbished iPhone).', NULL, NULL, NULL, NULL), (2274, 0, '” EOR 133, ¶ 12.', NULL, NULL, NULL, NULL), (2275, 0, '- 12 -', NULL, NULL, NULL, NULL), (2276, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 22 of 75', NULL, NULL, NULL, NULL), (2277, 0, 'with the methodologies that Dr. Warren-Boulton proposes.', NULL, NULL, NULL, NULL), (2278, 0, 'See EOR 6-106.', NULL, NULL, NULL, NULL), (2279, 0, 'Dr. Katz analyzed Dr. Warren-Boulton’s proposed methodologies, referring to them as methodologies, and never opined they were econometrically unsound.', NULL, NULL, NULL, NULL), (2280, 0, 'Dr. Katz opined only that the two but-for worlds would not be able to accurately determine whether there was antitrust injury from Apple’s monopoly and, if they did, they would not be capable of accurately measuring the extent of that injury, including because, purportedly, the price of the iPhone could have risen rather than fallen in the TE world, and that after T-Mobile began offering the iPhone, ATTM’s and T-Mobile’s prices did not actually converge.', NULL, NULL, NULL, NULL), (2281, 0, 'EOR 35-36, 51-52, ¶¶ 45, 71.', NULL, NULL, NULL, NULL), (2282, 0, 'Whether the two methods will provide a basis for the jury to determine whether there was antitrust injury from Apple’s monopoly and to furnish a reliable estimate of the antitrust injury are quintessential merits-based arguments that are inappropriate at the class certification stage.', NULL, NULL, NULL, NULL), (2283, 0, 'Dr. Katz did not opine that Dr. Warren-Boulton had to submit a functioning damages model or perform damages computations using already available data in order to show that the existence and quantum of harm could be measured on a class-wide basis under the two but-for worlds.', NULL, NULL, NULL, NULL), (2284, 0, 'Moreover, and critically, Dr. Katz also did not opine that Dr. Warren-Boulton’s methodologies conflicted with Plaintiffs’ theory of liability.', NULL, NULL, NULL, NULL), (2285, 0, 'In his Supplemental Declaration, Dr. Warren-Boulton addressed each of Dr. Katz’s merits arguments.', NULL, NULL, NULL, NULL), (2286, 0, 'See EOR 266-304.', NULL, NULL, NULL, NULL), (2287, 0, 'As Dr. Warren-Boulton explained, the', NULL, NULL, NULL, NULL), (2288, 0, '- 13 -', NULL, NULL, NULL, NULL), (2289, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 23 of 75', NULL, NULL, NULL, NULL), (2290, 0, 'harm to Class members stemming from Apple’s monopolization of the Wireless Service aftermarket did not await the expiration of customers’ two-year WSAs with ATTM, but, instead, arose immediately when they purchased their iPhones and began paying for ATTM Wireless Service, and occurred regardless of when they purchased their iPhones during the Class Period or whether they completed their two-year term.', NULL, NULL, NULL, NULL), (2291, 0, 'EOR 270, 275-76, 279-80, 282, ¶¶ 9, 22-23, 31, 38.', NULL, NULL, NULL, NULL), (2292, 0, 'During a routine scheduling conference on September 11, 2017, less than one month after Plaintiffs filed their class certification motion – before Apple filed its opposition and before Plaintiffs filed their reply – the District Court questioned Plaintiffs’ counsel regarding the merits of the damages report Plaintiffs submitted in support of their motion, expressing doubt that Plaintiffs could meet what the District Court regarded as their legal burden on class certification.', NULL, NULL, NULL, NULL), (2293, 0, 'EOR 109, 11619, 3:7-13; 10:10-13:22.', NULL, NULL, NULL, NULL), (2294, 0, 'On February 16, 2018, in a perfunctory five-page order', NULL, NULL, NULL, NULL), (2295, 0, '(the “Order”), the District Court denied Plaintiffs’ motion for class certification.', NULL, NULL, NULL, NULL), (2296, 0, 'EOR 1-5.', NULL, NULL, NULL, NULL), (2297, 0, 'In the Order, the District Court noted, “Apple does not dispute that plaintiffs have satisfied the threshold requirements of Rule 23', NULL, NULL, NULL, NULL), (2298, 0, '(a)', NULL, NULL, NULL, NULL), (2299, 0, 'or the superiority requirement of Rule 23', NULL, NULL, NULL, NULL), (2300, 0, '(b)(3).', NULL, NULL, NULL, NULL), (2301, 0, 'It contends only that the class definition is overbroad and that plaintiffs have not established predominance.', NULL, NULL, NULL, NULL), (2302, 0, '” EOR 4. Therefore, the District Court limited its analysis to one issue: whether Dr. Warren-Boulton’s Expert', NULL, NULL, NULL, NULL), (2303, 0, '- 14 -', NULL, NULL, NULL, NULL), (2304, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 24 of 75', NULL, NULL, NULL, NULL), (2305, 0, 'Declaration', NULL, NULL, NULL, NULL), (2306, 0, '(the District Court did not address his Supplemental Declaration)', NULL, NULL, NULL, NULL), (2307, 0, 'adequately supported Plaintiffs’ class certification motion.', NULL, NULL, NULL, NULL), (2308, 0, 'See id.', NULL, NULL, NULL, NULL), (2309, 0, 'The District Court found that his report lacked a “data-driven model” for proving impact or damages on a class-wide basis.', NULL, NULL, NULL, NULL), (2310, 0, 'EOR 5. For that reason, the District Court denied Plaintiffs’ class certification motion.5', NULL, NULL, NULL, NULL), (2311, 0, 'On March 2, 2018, Plaintiffs filed a Rule 23', NULL, NULL, NULL, NULL), (2312, 0, '(f)', NULL, NULL, NULL, NULL), (2313, 0, 'Petition for Permission to Appeal the District Court’s denial of Plaintiffs’ motion for class certification', NULL, NULL, NULL, NULL), (2314, 0, '(“Rule 23', NULL, NULL, NULL, NULL), (2315, 0, '(f)', NULL, NULL, NULL, NULL), (2316, 0, 'Petition”).', NULL, NULL, NULL, NULL), (2317, 0, 'On March 6, 2018, the parties filed a stipulation requesting a stay of discovery and adjournment of the trial and associated dates pending resolution of Plaintiffs’ Rule 23', NULL, NULL, NULL, NULL), (2318, 0, '(f)', NULL, NULL, NULL, NULL), (2319, 0, 'Petition.', NULL, NULL, NULL, NULL), (2320, 0, 'EOR 263, ECF No. 202.', NULL, NULL, NULL, NULL), (2321, 0, 'The District Court summarily denied the joint request the next day without explanation.', NULL, NULL, NULL, NULL), (2322, 0, 'EOR 263, ECF No. 204.', NULL, NULL, NULL, NULL), (2323, 0, 'Accordingly, on March 9, 2018, Plaintiffs were forced to file an emergency motion under Circuit Rule 27-3 to stay discovery and vacate the trial and associated dates in the District Court pending this Court’s decision on Plaintiffs’ Rule 23', NULL, NULL, NULL, NULL), (2324, 0, '(f)', NULL, NULL, NULL, NULL), (2325, 0, 'Petition and any subsequent appeal that followed.', NULL, NULL, NULL, NULL), (2326, 0, 'The Court granted the emergency motion on March 20, 2018.', NULL, NULL, NULL, NULL), (2327, 0, 'On June 1, 2018, the Court granted Plaintiffs’ Rule 23', NULL, NULL, NULL, NULL), (2328, 0, '(f)', NULL, NULL, NULL, NULL), (2329, 0, 'Petition.', NULL, NULL, NULL, NULL), (2330, 0, 'Plaintiffs now appeal the District Court’s Order denying their motion for class certification.', NULL, NULL, NULL, NULL), (2331, 0, '5 The District Court did not reach Apple’s argument that the class definition', NULL, NULL, NULL, NULL), (2332, 0, 'was overbroad.', NULL, NULL, NULL, NULL), (2333, 0, 'EOR 5, n.5.', NULL, NULL, NULL, NULL), (2334, 0, 'However, that argument squarely conflicted with the District Court’s summary judgment decision.', NULL, NULL, NULL, NULL), (2335, 0, '- 15 -', NULL, NULL, NULL, NULL), (2336, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 25 of 75', NULL, NULL, NULL, NULL), (2337, 0, 'C. Rulings Presented for Review', NULL, NULL, NULL, NULL), (2338, 0, 'Plaintiffs submit for review all rulings in the District Court’s February 16, 2018, Order denying Plaintiffs’ Motion for Class Certification.', NULL, NULL, NULL, NULL), (2339, 0, 'VI.', NULL, NULL, NULL, NULL), (2340, 0, 'STANDARD OF REVIEW', NULL, NULL, NULL, NULL), (2341, 0, 'A district court’s decision regarding class certification is reviewed for an abuse of discretion.', NULL, NULL, NULL, NULL), (2342, 0, 'See Pulaski & Middleman, LLC v. Google, Inc., 802 F.3d 979, 984', NULL, NULL, NULL, NULL), (2343, 0, '(9th Cir. 2015)', NULL, NULL, NULL, NULL), (2344, 0, '(“Pulaski”); Parra v. Bashas’, Inc., 536 F.3d 975, 977', NULL, NULL, NULL, NULL), (2345, 0, '(9th Cir. 2008).', NULL, NULL, NULL, NULL), (2346, 0, 'A court abuses its discretion if it makes an error of law.', NULL, NULL, NULL, NULL), (2347, 0, 'See Yokoyama v. Midland Nat’l Life Ins.', NULL, NULL, NULL, NULL), (2348, 0, 'Co., 594 F.3d 1087, 1091', NULL, NULL, NULL, NULL), (2349, 0, '(9th Cir. 2010).', NULL, NULL, NULL, NULL), (2350, 0, '“‘A district court would necessarily abuse its discretion if it based its ruling on an erroneous view of the law or a clearly erroneous assessment of the evidence.’”', NULL, NULL, NULL, NULL), (2351, 0, 'United States v. Hinkson, 585 F.3d 1247, 1259', NULL, NULL, NULL, NULL), (2352, 0, '(9th Cir. 2009)', NULL, NULL, NULL, NULL), (2353, 0, '(en banc)', NULL, NULL, NULL, NULL), (2354, 0, '(quoting Cooter & Gell v. Hartmarx Corp., 496 U.S. 384, 405', NULL, NULL, NULL, NULL), (2355, 0, '(1990)).', NULL, NULL, NULL, NULL), (2356, 0, 'Thus, this Court has held, “when an appellant raises the argument that the district court premised a class certification determination on an error of law, our first task is to evaluate whether such legal error occurred.”', NULL, NULL, NULL, NULL), (2357, 0, 'Yokoyama, 594 F.3d at 1091.', NULL, NULL, NULL, NULL), (2358, 0, '“If the district court’s determination was premised on a legal error, we will find a per se abuse of discretion.”', NULL, NULL, NULL, NULL), (2359, 0, 'Id.', NULL, NULL, NULL, NULL), (2360, 0, 'Otherwise, “we will proceed to review the district court’s class certification decision for abuse of discretion as we always have done.”', NULL, NULL, NULL, NULL), (2361, 0, 'Id.', NULL, NULL, NULL, NULL), (2362, 0, 'The district court’s decision must be supported by sufficient findings to be entitled to the traditional', NULL, NULL, NULL, NULL), (2363, 0, '- 16 -', NULL, NULL, NULL, NULL), (2364, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 26 of 75', NULL, NULL, NULL, NULL), (2365, 0, 'deference given to such a determination.', NULL, NULL, NULL, NULL), (2366, 0, 'See Narouz v. Charter Communications, LLC, 591 F.3d 1261, 1266', NULL, NULL, NULL, NULL), (2367, 0, '(9th Cir. 2010).', NULL, NULL, NULL, NULL), (2368, 0, 'VII.', NULL, NULL, NULL, NULL), (2369, 0, 'SUMMARY OF ARGUMENT', NULL, NULL, NULL, NULL), (2370, 0, 'In this six-year-old Sherman Act § 2 case, Plaintiffs’ antitrust claim against Apple for conspiring with non-party ATTM to monopolize the market for iPhone Wireless Service survived', NULL, NULL, NULL, NULL), (2371, 0, '(1)', NULL, NULL, NULL, NULL), (2372, 0, 'Apple’s motion to dismiss for failure to join ATTM as an indispensable party – albeit by way of this Court’s reversal of the District Court’s ruling in Apple’s favor;', NULL, NULL, NULL, NULL), (2373, 0, '(2)', NULL, NULL, NULL, NULL), (2374, 0, 'Apple’s second motion to dismiss on the ground that Plaintiffs’ definition of the relevant market was improper; and', NULL, NULL, NULL, NULL), (2375, 0, '(3)', NULL, NULL, NULL, NULL), (2376, 0, 'partially survived Apple’s motion for summary judgment when the District Court ruled that Plaintiffs raised a triable issue of fact whether Apple manipulated the aftermarket for iPhone Wireless Services by refusing to unlock iPhones for domestic or international use after the initial two-year service term under ATTM’s WSAs had expired.', NULL, NULL, NULL, NULL), (2377, 0, 'Plaintiffs’ viable antitrust claim against a single conspirator defendant – Apple – and involves a single product – the iPhone – sold at uniform prices to a homogenous group of direct iPhone purchasers, all of whom paid uniform charges to ATTM for Wireless Service during the same Class Period.', NULL, NULL, NULL, NULL), (2378, 0, 'As such, Plaintiffs’ antitrust claim is therefore ideally suited for class certification.', NULL, NULL, NULL, NULL), (2379, 0, '- 17 -', NULL, NULL, NULL, NULL), (2380, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 27 of 75', NULL, NULL, NULL, NULL), (2381, 0, 'The proposed Class should have been certified.6', NULL, NULL, NULL, NULL), (2382, 0, 'Nonetheless, in a terse five-page Order, the District Court refused to certify this cohesive Class, despite predominance being established as to liability and the superiority requirement being met', NULL, NULL, NULL, NULL), (2383, 0, '(EOR 4), solely on the ground that Plaintiffs’ expert antitrust economist, Dr. Warren-Boulton, did not submit a “functioning” antitrust impact and damages “model” with a “data-driven analysis . . . tailored to market facts in the case at hand.”', NULL, NULL, NULL, NULL), (2384, 0, 'EOR 5. The District Court’s insistence on a “functioning model” and a “data-driven analysis” to establish predominance at class certification is contrary to established Ninth Circuit law.', NULL, NULL, NULL, NULL), (2385, 0, 'In this Circuit, the most that is required at the class certification stage is for the plaintiff to advance a method that is capable of showing injury and calculating damages at trial.', NULL, NULL, NULL, NULL), (2386, 0, 'As this Court held in Lambert v. Nutraceutical Corp., 870 F.3d 1170', NULL, NULL, NULL, NULL), (2387, 0, '(9th Cir. 2017), “[a] Rule 23', NULL, NULL, NULL, NULL), (2388, 0, '(b)(3)', NULL, NULL, NULL, NULL), (2389, 0, 'plaintiff must show a class wide method for damages calculations as a part of the assessment of whether common questions predominate over individual questions.', NULL, NULL, NULL, NULL), (2390, 0, '” Id. at 1182', NULL, NULL, NULL, NULL), (2391, 0, '(citing Levya v. Medline Indus.', NULL, NULL, NULL, NULL), (2392, 0, 'Inc., 716 F.3d 510, 514', NULL, NULL, NULL, NULL), (2393, 0, '(9th Cir. 2013))', NULL, NULL, NULL, NULL), (2394, 0, '(emphasis added).', NULL, NULL, NULL, NULL), (2395, 0, 'If a methodology is presented, it must be capable of measuring damages attributable solely to the plaintiffs’ theory of the case.', NULL, NULL, NULL, NULL), (2396, 0, 'Comcast v. Behrend, 569 U.S. 27, 34', NULL, NULL, NULL, NULL), (2397, 0, '(2013); Pulaski, 802 F.3d at 984.', NULL, NULL, NULL, NULL), (2398, 0, 'However, under', NULL, NULL, NULL, NULL), (2399, 0, '6 As stated above, in Apple I, which arises from the same conspiracy between', NULL, NULL, NULL, NULL), (2400, 0, 'Apple and ATTM and also concerned the monopolization of the iPhone Wireless Service aftermarket, <NAME> certified an identical class', NULL, NULL, NULL, NULL), (2401, 0, '(other than the class period)', NULL, NULL, NULL, NULL), (2402, 0, 'as the one Plaintiffs propose here.', NULL, NULL, NULL, NULL), (2403, 0, '- 18 -', NULL, NULL, NULL, NULL), (2404, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 28 of 75', NULL, NULL, NULL, NULL), (2405, 0, 'Ninth Circuit precedent – which the District Court ignored – Plaintiffs are not required to present an operational impact and damages formula, populated with numerical data, at class certification, and the District Court did not and cannot cite any authority that requires one.', NULL, NULL, NULL, NULL), (2406, 0, 'Because the District Court did not acknowledge, let alone apply, binding Ninth Circuit precedent in assessing whether Plaintiffs established predominance, this Court should find a per se abuse of discretion and reverse the District Court’s decision.', NULL, NULL, NULL, NULL), (2407, 0, 'Yokoyama, 594 F.3d at 1091.', NULL, NULL, NULL, NULL), (2408, 0, 'In any event, Plaintiffs did offer a well-established impact and damages methodology that is capable of showing antitrust injury and measuring damages for the aftermarket claim that remains in the case on a class-wide basis.', NULL, NULL, NULL, NULL), (2409, 0, 'Dr. Warren-Boulton proposes to use a “but-for” methodology that is widely used by economists to calculate damages in antitrust actions, and has been accepted by numerous courts.', NULL, NULL, NULL, NULL), (2410, 0, 'The but-for methodology is based on sound economic principles and seeks to compare Plaintiffs’ real-world experience with what their experience would have been but for the antitrust violation.', NULL, NULL, NULL, NULL), (2411, 0, 'Dr. Warren-Boulton described two but-for scenarios – the “TE world” and the “TNE world” – in detail in his Expert Declaration and Supplemental Declaration, neither of which is “devoid of analysis”', NULL, NULL, NULL, NULL), (2412, 0, '(EOR 3)', NULL, NULL, NULL, NULL), (2413, 0, 'as the District Court wrongly determined.', NULL, NULL, NULL, NULL), (2414, 0, 'Dr. Warren-Boulton stated that his review of the data collected by Dr. Wilkie, the plaintiffs’ expert in Apple I, and', NULL, NULL, NULL, NULL), (2415, 0, '- 19 -', NULL, NULL, NULL, NULL), (2416, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 29 of 75', NULL, NULL, NULL, NULL), (2417, 0, 'additional data he reviewed confirmed that he could reliably estimate the harm from Apple’s monopoly conspiracy on a class-wide basis using common evidence for both the TE and TNE but-for worlds.', NULL, NULL, NULL, NULL), (2418, 0, 'EOR 137-39, ¶¶ 21-29.', NULL, NULL, NULL, NULL), (2419, 0, 'No more is required at the class certification stage.', NULL, NULL, NULL, NULL), (2420, 0, 'While complaining that it could not perform the requisite “rigorous analysis” purportedly because Dr. Warren-Boulton did not present a data-driven functioning model, the District Court did not conduct any analysis of Dr. Warren-Boulton’s two but-for methodologies, but merely described them.', NULL, NULL, NULL, NULL), (2421, 0, 'EOR 4-5.', NULL, NULL, NULL, NULL), (2422, 0, 'The District Court did not even mention, let alone consider, Dr. Warren-Boulton’s Supplemental Declaration, in which he expands his description of the two methods.', NULL, NULL, NULL, NULL), (2423, 0, 'Nor did the District Court consider that Apple’s own antitrust expert never challenged Dr. Warren-Boulton’s but-for methods as being econometrically unsound or that Apple did not seek to exclude Dr. Warren-Boulton’s methods as unreliable.', NULL, NULL, NULL, NULL), (2424, 0, 'Using Dr. Warren-Bolton’s sound but-for methodology, part of which includes the methodology and data Dr. Wilkie used in Apple I, at the merits stage of the litigation, Plaintiffs will be able to present to the factfinder an impact and damages model that will be able to establish the existence and quantum of economic harm resulting from Apple’s conspiracy to monopolize the aftermarket for iPhone Wireless Service.', NULL, NULL, NULL, NULL), (2425, 0, 'The methodology can be the basis for a damages', NULL, NULL, NULL, NULL), (2426, 0, '- 20 -', NULL, NULL, NULL, NULL), (2427, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 30 of 75', NULL, NULL, NULL, NULL), (2428, 0, 'model populated with some of the data that Dr. Wilkie used in Apple I', NULL, NULL, NULL, NULL), (2429, 0, '(i.e., iPhone sales data that is in Apple’s exclusive possession), as well as Wireless Service sales data that is in the exclusive possession of Apple’s co-conspirator ATTM and other data that Dr. Warren-Boulton believes may be necessary to perform his work.', NULL, NULL, NULL, NULL), (2430, 0, 'Plaintiffs should not be denied the opportunity to prosecute their viable class claim against Apple on a class-wide basis because the District Court invented a legal requirement that does not exist under the law of this Circuit to deny their class certification motion.', NULL, NULL, NULL, NULL), (2431, 0, 'In addition, for the reasons explained below, if the Court remands this action, Plaintiffs seek reassignment to a different judge of the District Court.', NULL, NULL, NULL, NULL), (2432, 0, 'VIII.', NULL, NULL, NULL, NULL), (2433, 0, 'ARGUMENT', NULL, NULL, NULL, NULL), (2434, 0, 'A. The District Court Abused its Discretion in Denying Class Certification', NULL, NULL, NULL, NULL), (2435, 0, 'The District Court committed legal error and thereby abused its discretion in ruling that, in order demonstrate that impact and damages could be proven on a class-wide basis to meet the predominance requirement for class certification, Plaintiffs were required to present a “functioning model . . . tailored to market facts in the case at hand,” complete with a “data-driven analysis.”', NULL, NULL, NULL, NULL), (2436, 0, 'EOR 5. As detailed below, reversal is warranted on at least three grounds.', NULL, NULL, NULL, NULL), (2437, 0, 'First, Plaintiffs have satisfied the predominance requirement of Rule 23', NULL, NULL, NULL, NULL), (2438, 0, '(b)(3)', NULL, NULL, NULL, NULL), (2439, 0, 'because, as is common in antitrust cases, class-wide questions concerning', NULL, NULL, NULL, NULL), (2440, 0, '- 21 -', NULL, NULL, NULL, NULL), (2441, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 31 of 75', NULL, NULL, NULL, NULL), (2442, 0, 'the defendant’s conspiracy nearly always predominate over any questions that require individual evidence.', NULL, NULL, NULL, NULL), (2443, 0, 'Second, under this Court’s binding precedent, Plaintiffs were not required to provide a fully-functioning, market-based data-driven model to demonstrate antitrust impact or damages at the class certification stage.', NULL, NULL, NULL, NULL), (2444, 0, 'And third, Plaintiffs in fact provided adequate methodologies for showing that both impact and damages are susceptible to class-wide proof.', NULL, NULL, NULL, NULL), (2445, 0, 'In reaching its contrary conclusion, the District Court applied the wrong standards, and its ruling should be reversed.', NULL, NULL, NULL, NULL), (2446, 0, '1. Rule 23', NULL, NULL, NULL, NULL), (2447, 0, '(b)(3)', NULL, NULL, NULL, NULL), (2448, 0, 'is Satisfied Because Common Liability Issues Predominate Over Any Individual Issues', NULL, NULL, NULL, NULL), (2449, 0, 'Rule 23', NULL, NULL, NULL, NULL), (2450, 0, '(b)(3)', NULL, NULL, NULL, NULL), (2451, 0, 'simply requires that “questions of law or fact common to class members predominate over any questions affecting only individual members.”', NULL, NULL, NULL, NULL), (2452, 0, 'Fed.', NULL, NULL, NULL, NULL), (2453, 0, 'R. Civ.', NULL, NULL, NULL, NULL), (2454, 0, 'P. 23', NULL, NULL, NULL, NULL), (2455, 0, '(b)(3).', NULL, NULL, NULL, NULL), (2456, 0, 'This plain-English rule must be read and applied as written.', NULL, NULL, NULL, NULL), (2457, 0, 'Amchem Prods.', NULL, NULL, NULL, NULL), (2458, 0, 'v. Windsor, 521 U.S. 591, 620', NULL, NULL, NULL, NULL), (2459, 0, '(1997)', NULL, NULL, NULL, NULL), (2460, 0, '(“[t]he text of a rule thus proposed and reviewed limits judicial inventiveness”).', NULL, NULL, NULL, NULL), (2461, 0, 'Indeed, in Briseno v. ConAgra Foods, Inc., 844 F.3d 1121', NULL, NULL, NULL, NULL), (2462, 0, '(9th Cir. 2017), this Court explained: “[i]n construing what Rule 23 requires, our first step is . . . determin[ing] whether the language at issue has a plain meaning.”', NULL, NULL, NULL, NULL), (2463, 0, 'Id. at 1125, 1126', NULL, NULL, NULL, NULL), (2464, 0, '(internal citations omitted).', NULL, NULL, NULL, NULL), (2465, 0, 'On that basis, the Court declined to apply an “administrative feasibility prerequisite to class certification” that the plain language of Rule 23', NULL, NULL, NULL, NULL), (2466, 0, '(b)(3)', NULL, NULL, NULL, NULL), (2467, 0, 'does not include.', NULL, NULL, NULL, NULL), (2468, 0, 'Id.', NULL, NULL, NULL, NULL), (2469, 0, '- 22 -', NULL, NULL, NULL, NULL), (2470, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 32 of 75', NULL, NULL, NULL, NULL), (2471, 0, 'Further, as the Supreme Court held in Amgen Inc. v. Conn.', NULL, NULL, NULL, NULL), (2472, 0, 'Ret.', NULL, NULL, NULL, NULL), (2473, 0, 'Plans & Tr.', NULL, NULL, NULL, NULL), (2474, 0, 'Funds, 568 U.S. 455', NULL, NULL, NULL, NULL), (2475, 0, '(2013), Rule 23', NULL, NULL, NULL, NULL), (2476, 0, '(b)(3)', NULL, NULL, NULL, NULL), (2477, 0, '“does not require a plaintiff seeking class certification to prove that each element of her claim is susceptible to class-wide proof . . . . What the Rule does require is that common questions predominate over any questions affecting only individual class members.”', NULL, NULL, NULL, NULL), (2478, 0, 'Id. at 469', NULL, NULL, NULL, NULL), (2479, 0, '(emphasis in original; internal quotations and brackets omitted).', NULL, NULL, NULL, NULL), (2480, 0, 'Few cases are better suited to class-wide resolution than antitrust actions.', NULL, NULL, NULL, NULL), (2481, 0, '“Predominance is a test readily met in certain cases alleging . . . violations of the antitrust laws.”', NULL, NULL, NULL, NULL), (2482, 0, 'Amchem, 521 U.S. at 625.', NULL, NULL, NULL, NULL), (2483, 0, 'This is “because proof of the conspiracy is a common question that is thought to predominate over the other issues of the case.”', NULL, NULL, NULL, NULL), (2484, 0, 'In re Scrap Metal Antitrust Litig.', NULL, NULL, NULL, NULL), (2485, 0, ', 527 F.3d 517, 535', NULL, NULL, NULL, NULL), (2486, 0, '(6th Cir. 2008)', NULL, NULL, NULL, NULL), (2487, 0, '(emphasis in original)', NULL, NULL, NULL, NULL), (2488, 0, '(citing Amchem, 521 U.S. at 625, and 7AA Wright, Miller & Kane, Federal Practice and Procedure § 1781', NULL, NULL, NULL, NULL), (2489, 0, '(3d ed. 2005)).', NULL, NULL, NULL, NULL), (2490, 0, 'In turn, class actions “play a particularly vital role in the private enforcement of antitrust [laws].”', NULL, NULL, NULL, NULL), (2491, 0, 'In re Tableware Antitrust Litig.', NULL, NULL, NULL, NULL), (2492, 0, ', 241 F.R.D. 644, 648', NULL, NULL, NULL, NULL), (2493, 0, '(N.D. Cal. 2007); see also In re Dynamic Random Access Memory', NULL, NULL, NULL, NULL), (2494, 0, '(DRAM)', NULL, NULL, NULL, NULL), (2495, 0, 'Antitrust Litig.', NULL, NULL, NULL, NULL), (2496, 0, ', No.', NULL, NULL, NULL, NULL), (2497, 0, 'M 02-1486 PJH, 2006 U.S. Dist.', NULL, NULL, NULL, NULL), (2498, 0, 'LEXIS 39841, at *27', NULL, NULL, NULL, NULL), (2499, 0, '(N.D. Cal. June 5, 2006)', NULL, NULL, NULL, NULL), (2500, 0, '(“DRAM”)', NULL, NULL, NULL, NULL), (2501, 0, '(same).', NULL, NULL, NULL, NULL), (2502, 0, '“Accordingly, in antitrust cases, courts tend to favor class certification when in doubt.”', NULL, NULL, NULL, NULL), (2503, 0, 'Tableware Antitrust Litig.', NULL, NULL, NULL, NULL), (2504, 0, ', 241 F.R.D. at 648', NULL, NULL, NULL, NULL), (2505, 0, '(emphasis added).', NULL, NULL, NULL, NULL), (2506, 0, 'See also In re Cathode Ray Tube', NULL, NULL, NULL, NULL), (2507, 0, '(CRT)', NULL, NULL, NULL, NULL), (2508, 0, 'Antitrust Litig.', NULL, NULL, NULL, NULL), (2509, 0, ', 308', NULL, NULL, NULL, NULL), (2510, 0, '- 23 -', NULL, NULL, NULL, NULL), (2511, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 33 of 75', NULL, NULL, NULL, NULL), (2512, 0, 'F.R.D. 606, 612', NULL, NULL, NULL, NULL), (2513, 0, '(N.D. Cal. 2015)', NULL, NULL, NULL, NULL), (2514, 0, '(same); DRAM, 2006 U.S. Dist.', NULL, NULL, NULL, NULL), (2515, 0, 'LEXIS 39841, at *27', NULL, NULL, NULL, NULL), (2516, 0, '(same); In re Vitamins Antitrust Litig.', NULL, NULL, NULL, NULL), (2517, 0, ', 209 F.R.D. 251, 258', NULL, NULL, NULL, NULL), (2518, 0, '(D.D.C. 2002)', NULL, NULL, NULL, NULL), (2519, 0, '(same).', NULL, NULL, NULL, NULL), (2520, 0, 'Further, this Court has made clear that “[p]redominance is not . . . a matter of nose-counting,” but “[r]ather, more important questions apt to drive the resolution of the litigation are given more weight in the predominance analysis over individualized questions which are of considerably less significance to the claims of the class.”', NULL, NULL, NULL, NULL), (2521, 0, '<NAME> v. Mercer Canyons Inc., 835 F.3d 1125, 1134', NULL, NULL, NULL, NULL), (2522, 0, '(9th Cir. 2016)', NULL, NULL, NULL, NULL), (2523, 0, '(citation omitted).', NULL, NULL, NULL, NULL), (2524, 0, 'The district courts should decide only “whether proposed classes are sufficiently cohesive to warrant adjudication by representation.”', NULL, NULL, NULL, NULL), (2525, 0, 'Id.', NULL, NULL, NULL, NULL), (2526, 0, '(internal quotation omitted).', NULL, NULL, NULL, NULL), (2527, 0, 'Predominance is particularly easy to establish in this case because Plaintiffs’ antitrust claim concerns only one product – the iPhone – sold by just one manufacturer – Apple – and the aftermarket for iPhone Wireless Service was provided by a single service provider – ATTM – and the iPhone and iPhone Wireless Services were sold at non-negotiable, uniform prices throughout the Class Period.', NULL, NULL, NULL, NULL), (2528, 0, 'The Class is comprised of only direct purchasers who paid those uniform prices for the iPhone and related Wireless Services, and “it is particularly well suited for resolution on a classwide basis.”', NULL, NULL, NULL, NULL), (2529, 0, 'Tawfilis v. Allergan, Inc., No. 8:15-cv-00307-JLS-JCG, 2017 U.S. Dist.', NULL, NULL, NULL, NULL), (2530, 0, 'LEXIS 122974, at *43', NULL, NULL, NULL, NULL), (2531, 0, '(C.D. Cal.', NULL, NULL, NULL, NULL), (2532, 0, 'June', NULL, NULL, NULL, NULL), (2533, 0, '- 24 -', NULL, NULL, NULL, NULL), (2534, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 34 of 75', NULL, NULL, NULL, NULL), (2535, 0, '26, 2017).', NULL, NULL, NULL, NULL), (2536, 0, 'The predominance requirement is readily met in this case.', NULL, NULL, NULL, NULL), (2537, 0, 'Whether Apple conspired with ATTM to monopolize the aftermarket for iPhone Wireless Service and to what extent the conspiracy caused anticompetitive harm to consumers both raise common issues that predominate over any individual issues.', NULL, NULL, NULL, NULL), (2538, 0, 'The District Court erred when it denied class certification for lack of predominance.', NULL, NULL, NULL, NULL), (2539, 0, '2. The District Court Applied the Wrong Standard in Ruling Plaintiffs Did Not Demonstrate Class-wide Antitrust Impact', NULL, NULL, NULL, NULL), (2540, 0, 'In order to demonstrate antitrust impact or injury7 at trial, Plaintiffs need only show some damage suffered as a consequence of the alleged anticompetitive behavior.', NULL, NULL, NULL, NULL), (2541, 0, 'See Zenith Radio Corp. v. Hazeltine Research, Inc., 395 U.S. 100, 114 n.9', NULL, NULL, NULL, NULL), (2542, 0, '(1969)', NULL, NULL, NULL, NULL), (2543, 0, '(“burden of proving the fact of damage . . . is satisfied by . . . proof of some damage flowing from the unlawful [conduct]; inquiry beyond this minimum point goes only to the amount and not the fact of damage”', NULL, NULL, NULL, NULL), (2544, 0, '(second emphasis added)).', NULL, NULL, NULL, NULL), (2545, 0, 'Fact of damage or antitrust injury “flows from that which makes defendants’ acts unlawful.”', NULL, NULL, NULL, NULL), (2546, 0, 'Blue Shield of Virginia v. McCready, 457 U.S. 465,', NULL, NULL, NULL, NULL), (2547, 0, '7 “Injury-in-fact” is another term for “impact” or “fact of damage.”', NULL, NULL, NULL, NULL), (2548, 0, 'See', NULL, NULL, NULL, NULL), (2549, 0, 'Thompson v. Clear Channel Communs.', NULL, NULL, NULL, NULL), (2550, 0, ', Inc.', NULL, NULL, NULL, NULL), (2551, 0, '(In re Live Concert Antitrust Litig.), 247 F.R.D. 98, 132', NULL, NULL, NULL, NULL), (2552, 0, '(C.D. Cal. 2007)', NULL, NULL, NULL, NULL), (2553, 0, '(“‘[T]he antitrust plaintiff must establish that it suffered injury, also known as impact or fact of damage, and that the injury was materially and directly caused by an antitrust violation.’”', NULL, NULL, NULL, NULL), (2554, 0, '(quoting 8 <NAME>, et al., ANTITRUST LAWS AND TRADE REGULATIONS § 160.02 [2] [c]', NULL, NULL, NULL, NULL), (2555, 0, '(2d ed. 1997))).', NULL, NULL, NULL, NULL), (2556, 0, '- 25 -', NULL, NULL, NULL, NULL), (2557, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 35 of 75', NULL, NULL, NULL, NULL), (2558, 0, '484', NULL, NULL, NULL, NULL), (2559, 0, '(1982)', NULL, NULL, NULL, NULL), (2560, 0, '(internal quotation omitted).', NULL, NULL, NULL, NULL), (2561, 0, '“‘Plaintiff[s] must be able to establish, predominantly with generalized evidence, that all', NULL, NULL, NULL, NULL), (2562, 0, '(or nearly all)', NULL, NULL, NULL, NULL), (2563, 0, 'members of the class suffered damage as a result of Defendants’ alleged anti-competitive conduct.', NULL, NULL, NULL, NULL), (2564, 0, '’” In re TFT-LCD Antitrust Litig.', NULL, NULL, NULL, NULL), (2565, 0, ', 267 F.R.D. 291, 311', NULL, NULL, NULL, NULL), (2566, 0, '(N.D. Cal. 2010)', NULL, NULL, NULL, NULL), (2567, 0, '(quoting In re Static Random Access Antitrust Litig.', NULL, NULL, NULL, NULL), (2568, 0, ', No.', NULL, NULL, NULL, NULL), (2569, 0, 'C 07-01819 CW, 2008 U.S. Dist.', NULL, NULL, NULL, NULL), (2570, 0, 'LEXIS 107523, *44', NULL, NULL, NULL, NULL), (2571, 0, '(N.D. Cal. Sept. 29, 2008)', NULL, NULL, NULL, NULL), (2572, 0, '(“SRAM”)).', NULL, NULL, NULL, NULL), (2573, 0, 'Further, where, as here, “defendants have acted with intent to eliminate competition, the proof of resulting injury need not be overwhelming.’” D & S Redi-Mix v. Sierra Redi-Mix & Contracting Co., 692 F.2d 1245, 1249', NULL, NULL, NULL, NULL), (2574, 0, '(9th Cir. 1982)', NULL, NULL, NULL, NULL), (2575, 0, '(citing Fox West Coast Theatres Corp. v. Paradise Theatre Bldg.', NULL, NULL, NULL, NULL), (2576, 0, 'Corp., 264 F.2d 602, 608', NULL, NULL, NULL, NULL), (2577, 0, '(9th Cir. 1958)', NULL, NULL, NULL, NULL), (2578, 0, '(The fact of “damage need not be made patent item by item as on a balance sheet. The mere unlawful combination over a period of time to eliminate competition is proof of damage.”)).', NULL, NULL, NULL, NULL), (2579, 0, 'At class certification, Plaintiffs were not required to actually prove class-wide antitrust impact; rather, they need only have made “a sufficient showing that the evidence they intend to present concerning antitrust impact will be made using generalized proof common to the class and that these common issues will predominate.”', NULL, NULL, NULL, NULL), (2580, 0, 'In re TFT-LCD Antitrust Litig.', NULL, NULL, NULL, NULL), (2581, 0, ', 267 F.R.D. at 311', NULL, NULL, NULL, NULL), (2582, 0, '(quoting DRAM, 2006 U.S. Dist. LEXIS 39841, at *44-45); SRAM, 2008 U.S. Dist.', NULL, NULL, NULL, NULL), (2583, 0, 'LEXIS 107523, at *44', NULL, NULL, NULL, NULL), (2584, 0, '(same)', NULL, NULL, NULL, NULL), (2585, 0, '(quoting DRAM); In re Bulk [Extruded] Graphite Prods.', NULL, NULL, NULL, NULL), (2586, 0, 'Antitrust', NULL, NULL, NULL, NULL), (2587, 0, '- 26 -', NULL, NULL, NULL, NULL), (2588, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 36 of 75', NULL, NULL, NULL, NULL), (2589, 0, 'Litig.', NULL, NULL, NULL, NULL), (2590, 0, ', Civ.', NULL, NULL, NULL, NULL), (2591, 0, 'No. 02-6030', NULL, NULL, NULL, NULL), (2592, 0, '(WHW), 2006 U.S. Dist.', NULL, NULL, NULL, NULL), (2593, 0, 'LEXIS 16619, at *30-31', NULL, NULL, NULL, NULL), (2594, 0, '(D.N.J. Apr. 4, 2006)', NULL, NULL, NULL, NULL), (2595, 0, 'same).', NULL, NULL, NULL, NULL), (2596, 0, 'See also Kleen Prods.', NULL, NULL, NULL, NULL), (2597, 0, 'LLC v. Int’l Paper Co., 831 F.3d 919, 927', NULL, NULL, NULL, NULL), (2598, 0, '(7th Cir. 2016)', NULL, NULL, NULL, NULL), (2599, 0, '(“[w]hile we have no quarrel with the proposition that each and every class member would need to make . . . a showing [of impact from the alleged violation] in order ultimately to recover, we have not insisted on this level of proof at the class certification stage.”).', NULL, NULL, NULL, NULL), (2600, 0, 'See Astrazeneca AB v. UFCW', NULL, NULL, NULL, NULL), (2601, 0, '(In re Nexium Antitrust Litig.), 777 F.3d 9, 24 n.20', NULL, NULL, NULL, NULL), (2602, 0, '(1st Cir. 2015)', NULL, NULL, NULL, NULL), (2603, 0, '(At class certification, “plaintiffs must only show that ‘antitrust impact is capable of proof at trial through evidence that is common to the class rather than individual members.’”', NULL, NULL, NULL, NULL), (2604, 0, '(emphasis in original; citation omitted)).8', NULL, NULL, NULL, NULL), (2605, 0, 'Thus, “[o]n a motion for class certification, the Court only evaluates whether the method by which plaintiffs propose to prove class-wide impact could prove such impact, not whether plaintiffs in fact can prove class-wide impact.”', NULL, NULL, NULL, NULL), (2606, 0, 'In re Static Random Access Memory Antitrust Litig.', NULL, NULL, NULL, NULL), (2607, 0, ', 264 F.R.D. 603, 612', NULL, NULL, NULL, NULL), (2608, 0, '(N.D. Cal. 2009)', NULL, NULL, NULL, NULL), (2609, 0, '(“SRAM II”)', NULL, NULL, NULL, NULL), (2610, 0, '(emphasis added).', NULL, NULL, NULL, NULL), (2611, 0, 'See also Messner v. Northshore Univ.', NULL, NULL, NULL, NULL), (2612, 0, 'HealthSystem, 669 F.3d 802, 818-19', NULL, NULL, NULL, NULL), (2613, 0, '(7th Cir. 2012)', NULL, NULL, NULL, NULL), (2614, 0, '(“[u]nder the proper standard, plaintiffs’ ‘burden at the class certification stage [is] not to prove the element of', NULL, NULL, NULL, NULL), (2615, 0, '8 Indeed, in antitrust cases, “[e]ven if [a] district court concludes that the issue', NULL, NULL, NULL, NULL), (2616, 0, 'of injury-in-fact presents individual questions . . . it does not necessarily follow that they predominate over common ones and that class action treatment is therefore unwarranted.', NULL, NULL, NULL, NULL), (2617, 0, '” Cordes & Co.', NULL, NULL, NULL, NULL), (2618, 0, 'Fin.', NULL, NULL, NULL, NULL), (2619, 0, 'Servs.', NULL, NULL, NULL, NULL), (2620, 0, 'v. <NAME> & Sons, Inc., 502 F.3d 91, 108', NULL, NULL, NULL, NULL), (2621, 0, '(2d Cir. 2007); see also In re Nexium Antitrust Litig.', NULL, NULL, NULL, NULL), (2622, 0, ', 777 F.3d at 24 n.20', NULL, NULL, NULL, NULL), (2623, 0, '(same).', NULL, NULL, NULL, NULL), (2624, 0, '- 27 -', NULL, NULL, NULL, NULL), (2625, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 37 of 75', NULL, NULL, NULL, NULL), (2626, 0, 'antitrust impact,’ but only to ‘demonstrate that the element of antitrust impact is capable of proof at trial through evidence that is common to the class rather than individual to its members.’”', NULL, NULL, NULL, NULL), (2627, 0, '(emphasis in original; internal citation omitted)).', NULL, NULL, NULL, NULL), (2628, 0, 'Further, “‘[p]laintiffs need only advance a plausible methodology to demonstrate that antitrust injury can be proven on a class-wide basis.’” In re TFT-LCD Antitrust Litig.', NULL, NULL, NULL, NULL), (2629, 0, ', No.', NULL, NULL, NULL, NULL), (2630, 0, 'M 07-1827 SI, 2012 U.S. Dist.', NULL, NULL, NULL, NULL), (2631, 0, 'LEXIS 9449, at *44', NULL, NULL, NULL, NULL), (2632, 0, '(N.D. Cal. Jan. 26, 2012)', NULL, NULL, NULL, NULL), (2633, 0, '(emphasis added; internal quotation omitted).', NULL, NULL, NULL, NULL), (2634, 0, 'See also SRAM II, 264 F.R.D. at 612', NULL, NULL, NULL, NULL), (2635, 0, '(same, quoting DRAM, 2006 U.S. Dist. LEXIS 39841); In re: Cathode Ray Tube', NULL, NULL, NULL, NULL), (2636, 0, '(CRT)', NULL, NULL, NULL, NULL), (2637, 0, 'Antitrust Litig.', NULL, NULL, NULL, NULL), (2638, 0, ', MDL No. 1917, 2013 U.S. Dist.', NULL, NULL, NULL, NULL), (2639, 0, 'LEXIS 137946, at *78-79', NULL, NULL, NULL, NULL), (2640, 0, '(N.D. Cal. Sept. 19, 2013)', NULL, NULL, NULL, NULL), (2641, 0, '(“The Court’s job at this stage is simple: determine whether the [plaintiffs] showed that there is a reasonable method for determining, on a classwide basis, the antitrust impact’s effects on the class members. ... This is a question of methodology, not merit.”).9', NULL, NULL, NULL, NULL), (2642, 0, 'Unlike the District Court, <NAME> applied the correct standard in Apple I to certify a class on nearly identical facts, holding: “Plaintiffs need only advance a plausible methodology to demonstrate that antitrust injury can be proven on a class-wide basis.”', NULL, NULL, NULL, NULL), (2643, 0, 'Apple I, 2010 U.S. Dist.', NULL, NULL, NULL, NULL), (2644, 0, 'LEXIS 98270, at *37-38', NULL, NULL, NULL, NULL), (2645, 0, '(emphasis', NULL, NULL, NULL, NULL), (2646, 0, '9 Antitrust injury or impact is typically established for class certification', NULL, NULL, NULL, NULL), (2647, 0, 'purposes through expert testimony that generally accepted economic methodologies are available to demonstrate antitrust impact.', NULL, NULL, NULL, NULL), (2648, 0, 'See, e.g., Tawfilis, 2017 U.S. Dist.', NULL, NULL, NULL, NULL), (2649, 0, 'LEXIS 122974, at *40-41; Live Concert, 247 F.R.D. at 144; DRAM, 2006 U.S. Dist.', NULL, NULL, NULL, NULL), (2650, 0, 'LEXIS 39841, at *44-45; Apple I, 2010 U.S. Dist.', NULL, NULL, NULL, NULL), (2651, 0, 'LEXIS 98270, at *40.', NULL, NULL, NULL, NULL), (2652, 0, '- 28 -', NULL, NULL, NULL, NULL), (2653, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 38 of 75', NULL, NULL, NULL, NULL), (2654, 0, 'added; internal quotation omitted).', NULL, NULL, NULL, NULL), (2655, 0, 'In granting class certification in Apple I, <NAME> accepted Dr. Wilkie’s “analysis of the value of a customer’s ability to switch carriers” as a “plausible measure of the antitrust impact of the challenged practice [because] Dr. Wilkie’s approach, although broad, appears to track the overall challenged practice of the monopolization of the voice and data aftermarket.”', NULL, NULL, NULL, NULL), (2656, 0, 'Apple I, 2010 U.S. Dist.', NULL, NULL, NULL, NULL), (2657, 0, 'LEXIS 98270, at *39-40.', NULL, NULL, NULL, NULL), (2658, 0, 'Here, in denying class certification, the District Court did not apply or even acknowledge the correct standard, it ignored Judge Ware’s earlier holding in Apple I, it did not analyze the methodologies advanced in Dr. Warren-Boulton’s Expert Declaration, and apparently it did not considered Dr. Warren-Boulton’s Supplemental Declaration.', NULL, NULL, NULL, NULL), (2659, 0, 'Instead, the District Court attempted to justify its ruling by stringing together cherry-picked quotes from two non-binding antitrust cases that are entirely inapposite.', NULL, NULL, NULL, NULL), (2660, 0, 'Relying on its patent misinterpretation of an inapposite case, In re Graphics Processing Units Antitrust Litig.', NULL, NULL, NULL, NULL), (2661, 0, '(“In re GPU”), 253 F.R.D. 478', NULL, NULL, NULL, NULL), (2662, 0, '(N.D. Cal. 2008), the District Court criticized Dr. Warren-Boulton for failing to “submit any semblance of a ‘functioning model that is tailored to market facts at hand.’” EOR 5', NULL, NULL, NULL, NULL), (2663, 0, '(quoting In re GPU, 253 F.R.D. at 492).10', NULL, NULL, NULL, NULL), (2664, 0, 'However, In re GPU did not hold that a', NULL, NULL, NULL, NULL), (2665, 0, '10 Notably, neither this quote nor the other language the District Court quoted', NULL, NULL, NULL, NULL), (2666, 0, 'from In re GPU – that courts in the antitrust context are “increasingly skeptical of plaintiffs’ experts who offer only generalized and theoretical opinions”', NULL, NULL, NULL, NULL), (2667, 0, '(EOR 5)', NULL, NULL, NULL, NULL), (2668, 0, '–', NULL, NULL, NULL, NULL), (2669, 0, '- 29 -', NULL, NULL, NULL, NULL), (2670, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 39 of 75', NULL, NULL, NULL, NULL), (2671, 0, 'functioning model is required at class certification.', NULL, NULL, NULL, NULL), (2672, 0, 'Instead, the district court merely noted that the class certification inquiry necessarily touches on evidence relating to the merits of the case, such as the “proposed methodology” of the plaintiff’s expert.', NULL, NULL, NULL, NULL), (2673, 0, '253 F.R.D. at 492-93.', NULL, NULL, NULL, NULL), (2674, 0, 'Moreover, the conspiracy at issue in In re GPU was far more complex and differentiated than Apple’s conspiracy with ATTM here.', NULL, NULL, NULL, NULL), (2675, 0, 'The alleged price-fixing conspiracy in In re GPU involved a graphics rendering device', NULL, NULL, NULL, NULL), (2676, 0, '(called a “GPU”)', NULL, NULL, NULL, NULL), (2677, 0, 'that was produced in two different forms', NULL, NULL, NULL, NULL), (2678, 0, '(both chips and cards)', NULL, NULL, NULL, NULL), (2679, 0, 'and in hundreds of different types, and was used in many different products.', NULL, NULL, NULL, NULL), (2680, 0, 'Those products were sold to a variety of customers through a number of different distribution channels, including original equipment manufacturers, add-in-board manufacturers, distributors, retailers, and original design manufacturers, and one defendant who sold graphics cards directly to individual consumers through its website.', NULL, NULL, NULL, NULL), (2681, 0, 'Id. at 480.', NULL, NULL, NULL, NULL), (2682, 0, 'The defendants’ business came from 130 different wholesale purchasers.', NULL, NULL, NULL, NULL), (2683, 0, 'Significantly, although the defendants kept price lists for some of their standard products, the vast majority of wholesale-purchaser transactions were made after individualized negotiations, and several factors influenced the negotiations, including the volume of the purchase, the particular market power of the wholesale', NULL, NULL, NULL, NULL), (2684, 0, 'are part of the court’s ruling in In re GPU.', NULL, NULL, NULL, NULL), (2685, 0, 'They are quotations from a 2007 article, written by attorneys at O’Melveny & Myers, that appear in the preface of the In re GPU opinion.', NULL, NULL, NULL, NULL), (2686, 0, 'In re GPU, 253 F.R.D. at 492.', NULL, NULL, NULL, NULL), (2687, 0, '- 30 -', NULL, NULL, NULL, NULL), (2688, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 40 of 75', NULL, NULL, NULL, NULL), (2689, 0, 'purchaser, the extent of the customization of the production, the market for which the chip or card was designed, the degree of customer support, the performance level of the chip or card, and the various representations and warranties that were included in the sales contract.', NULL, NULL, NULL, NULL), (2690, 0, 'Id. at 481.', NULL, NULL, NULL, NULL), (2691, 0, 'As the district court noted In re GPU, “[t]he complex structure of defendants’ chain of distribution and the particularized sales transactions associated with each sale of a GPU product present a significant barrier to certification. Antitrust decisions have been mixed in determining whether certification is warranted where complex chains of distribution with highly varying purchasers and products are involved.”', NULL, NULL, NULL, NULL), (2692, 0, 'Id. at 483-84', NULL, NULL, NULL, NULL), (2693, 0, '(emphasis added).', NULL, NULL, NULL, NULL), (2694, 0, 'After surveying numerous antitrust cases involving price-fixing conspiracies, the district court noted that “[f]actors favoring certification have been price lists and commodity products as opposed to individually negotiated deals and customized products.”', NULL, NULL, NULL, NULL), (2695, 0, 'Id. at 489', NULL, NULL, NULL, NULL), (2696, 0, '(emphasis added).', NULL, NULL, NULL, NULL), (2697, 0, 'The district court also noted that, “[i]n industries involving varying products and complex pricing structures, antitrust plaintiffs have in recent years trended toward presenting an econometric formula or other statistical analysis to show class-wide impact.', NULL, NULL, NULL, NULL), (2698, 0, 'The idea is to account for differences from transaction to transaction by assigning variables to certain conditions relating to the transaction', NULL, NULL, NULL, NULL), (2699, 0, '(e.g., product features or type of purchaser)', NULL, NULL, NULL, NULL), (2700, 0, 'or by establishing some type of correlation between product lines or purchasers.', NULL, NULL, NULL, NULL), (2701, 0, '” Id.', NULL, NULL, NULL, NULL), (2702, 0, '- 31 -', NULL, NULL, NULL, NULL), (2703, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 41 of 75', NULL, NULL, NULL, NULL), (2704, 0, 'at 491', NULL, NULL, NULL, NULL), (2705, 0, '(emphasis added).', NULL, NULL, NULL, NULL), (2706, 0, 'In In re GPU, the court rejected plaintiffs’ expert’s impact methodology because it found it could not “show that individual differences between products and purchasers could be accounted for.”', NULL, NULL, NULL, NULL), (2707, 0, 'Id. at 494', NULL, NULL, NULL, NULL); -- Insert batch #2 INSERT INTO cards (cardId, briefId, Answer, Question, Verified, categoryId, sentenceId) VALUES (2708, 0, '(emphasis in original).', NULL, NULL, NULL, NULL), (2709, 0, 'In contrast to In re GPU, this case alleges a conspiracy between Apple, who sold its iPhones at uniform prices, and ATTM, who sold cellular services at set uniform prices, all to the same direct purchasers.', NULL, NULL, NULL, NULL), (2710, 0, 'Notably, the district court in In re GPU did certify a more limited direct purchaser class, consisting of consumers who purchased GPUs directly from the defendant’s website and paid non-negotiable prices.', NULL, NULL, NULL, NULL), (2711, 0, 'Thus, “[t]he complex chain of distribution, the diversity of products, and any purchaser-specific considerations could be ignored” when assessing predominance.', NULL, NULL, NULL, NULL), (2712, 0, 'Id. at 497.', NULL, NULL, NULL, NULL), (2713, 0, 'This is exactly the situation here, yet the District Court did not even acknowledge this', NULL, NULL, NULL, NULL), (2714, 0, '(or any other)', NULL, NULL, NULL, NULL), (2715, 0, 'ruling in In re GPU.', NULL, NULL, NULL, NULL), (2716, 0, 'The District Court’s reliance on another inapposite case, In re High-Tech Emp.', NULL, NULL, NULL, NULL), (2717, 0, '<NAME>.', NULL, NULL, NULL, NULL), (2718, 0, ', 289 F.R.D. 555', NULL, NULL, NULL, NULL), (2719, 0, '(N.D. Cal. 2013), is equally misplaced.', NULL, NULL, NULL, NULL), (2720, 0, 'EOR 5. There, the plaintiffs alleged that six defendants conspired to fix and suppress compensation and mobility of different kinds of employees, including technical, creative, and research employees, over different time periods and by varying means.', NULL, NULL, NULL, NULL), (2721, 0, 'The district court denied class certification because the plaintiffs’ evidence did not demonstrate class-wide impact, but granted plaintiffs leave to amend.', NULL, NULL, NULL, NULL), (2722, 0, 'The', NULL, NULL, NULL, NULL), (2723, 0, '- 32 -', NULL, NULL, NULL, NULL), (2724, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 42 of 75', NULL, NULL, NULL, NULL), (2725, 0, 'district court explained it was most concerned with whether the evidence would show the defendant maintained such a rigid compensation structure that a suppression of wages to some of the diverse employees would have affected all of them.', NULL, NULL, NULL, NULL), (2726, 0, 'Id. at 583.', NULL, NULL, NULL, NULL), (2727, 0, 'There simply is no such concern here.', NULL, NULL, NULL, NULL), (2728, 0, 'In sum, the District Court’s ruling that Plaintiffs were required to present a functioning, data-driven model to demonstrate class-wide impact and damages at class certification is reversible error.', NULL, NULL, NULL, NULL), (2729, 0, '3. The District Court Applied the Wrong Standard in Demanding a Functioning Damages Model at Class Certification', NULL, NULL, NULL, NULL), (2730, 0, 'The District Court also abused its discretion in holding that Plaintiffs must present a damages model that is fully-operational, tied to market facts, and is data-driven in order to establish predominance.', NULL, NULL, NULL, NULL), (2731, 0, 'There is no such requirement and, even in situations where individualized damages calculations may be required later in the litigation, class certification is still appropriate where, as here, class-wide liability issues predominate over individualized ones.', NULL, NULL, NULL, NULL), (2732, 0, 'See Section VIII.A.1, supra.', NULL, NULL, NULL, NULL), (2733, 0, 'At trial, once antitrust impact is established, the burden of proving the amount of damages is eased significantly for antitrust plaintiffs.', NULL, NULL, NULL, NULL), (2734, 0, 'See Story Parchment Co. v. Paterson Parchment Paper Co., 282 U.S. 555, 563', NULL, NULL, NULL, NULL), (2735, 0, '(1931); Moore v. Jas.', NULL, NULL, NULL, NULL), (2736, 0, '<NAME> & Co., 682 F.2d 830, 836', NULL, NULL, NULL, NULL), (2737, 0, '(9th Cir. 1982)', NULL, NULL, NULL, NULL), (2738, 0, '(same);', NULL, NULL, NULL, NULL), (2739, 0, '- 33 -', NULL, NULL, NULL, NULL), (2740, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 43 of 75', NULL, NULL, NULL, NULL), (2741, 0, 'Tawfilis, 2017 U.S. Dist.', NULL, NULL, NULL, NULL), (2742, 0, 'LEXIS 122974, at *43', NULL, NULL, NULL, NULL), (2743, 0, '(same).11', NULL, NULL, NULL, NULL), (2744, 0, 'Under this relaxed standard, “while the damages may not be determined by mere speculation or guess, it will be enough if the evidence show the extent of the damages as a matter of just and reasonable inference, although the result be only approximate.”', NULL, NULL, NULL, NULL), (2745, 0, 'Story Parchment Co., 282 U.S. at 563.', NULL, NULL, NULL, NULL), (2746, 0, 'As the Supreme Court held in Comcast, at class certification, a plaintiff need only show that “damages are capable of measurement on a classwide basis” using a methodology that is tied to its theory of liability.', NULL, NULL, NULL, NULL), (2747, 0, '569 U.S. at 34', NULL, NULL, NULL, NULL), (2748, 0, '(2013)', NULL, NULL, NULL, NULL), (2749, 0, '(emphasis added).', NULL, NULL, NULL, NULL), (2750, 0, 'See also Lambert, 870 F.3d at 1182', NULL, NULL, NULL, NULL), (2751, 0, '(Comcast requires only that damages are capable of measurement on a class-wide basis and “stemmed from the defendant’s actions that created the legal liability”', NULL, NULL, NULL, NULL), (2752, 0, '(internal quotations omitted)); Just Film, Inc. v. Buono, 847 F.3d 1108, 1120-22', NULL, NULL, NULL, NULL), (2753, 0, '(9th Cir. 2017)', NULL, NULL, NULL, NULL), (2754, 0, '(Comcast requires that ‘“damages are capable of measurement on a classwide basis’ . . . in the sense that the whole class suffered damages traceable to the same injurious course of conduct underlying the plaintiffs’ legal theory”', NULL, NULL, NULL, NULL), (2755, 0, '(citing Comcast, 569 U.S. at 34-38)); Pulaski, 802 F.3d at 987-88', NULL, NULL, NULL, NULL), (2756, 0, '(“‘plaintiffs must be able to show that their damages stemmed from the defendant’s actions that created the legal liability’”', NULL, NULL, NULL, NULL), (2757, 0, '(quoting Levya, 716 F.3d at 514)).', NULL, NULL, NULL, NULL), (2758, 0, '11 See also Comcast Corp., 569 U.S. at 35', NULL, NULL, NULL, NULL), (2759, 0, '(citing Story Parchment Co. with', NULL, NULL, NULL, NULL), (2760, 0, 'approval); <NAME> Co. v. Chrysler Motors Corp., 451 U.S. 557, 565', NULL, NULL, NULL, NULL), (2761, 0, '(1981); Zenith, 395 U.S. at 123-25.', NULL, NULL, NULL, NULL), (2762, 0, '- 34 -', NULL, NULL, NULL, NULL), (2763, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 44 of 75', NULL, NULL, NULL, NULL), (2764, 0, 'However, as this Court has long and often held, the need for individualized damages calculations does not preclude class certification.', NULL, NULL, NULL, NULL), (2765, 0, 'See, e.g., Blackie v. Barrack, 524 F.2d 891, 905', NULL, NULL, NULL, NULL), (2766, 0, '(9th Cir. 1975)', NULL, NULL, NULL, NULL), (2767, 0, '(“The amount of damages is invariably an individual question and does not defeat class action treatment.”); Marks v. S.F. Real Estate Bd.', NULL, NULL, NULL, NULL), (2768, 0, ', 627 F.2d 947, 951', NULL, NULL, NULL, NULL), (2769, 0, '(9th Cir. 1980)', NULL, NULL, NULL, NULL), (2770, 0, '(same); Pulaski, 802 F.3d at 986', NULL, NULL, NULL, NULL), (2771, 0, '(same).', NULL, NULL, NULL, NULL), (2772, 0, 'Moreover, whether a plaintiff can prove damages to a reasonable certainty is a question of fact to be decided at trial, not at class certification.', NULL, NULL, NULL, NULL), (2773, 0, 'See Lambert, 870 F.3d at 1184; see also In re: Cathode Ray Tube', NULL, NULL, NULL, NULL), (2774, 0, '(CRT)', NULL, NULL, NULL, NULL), (2775, 0, '<NAME>.', NULL, NULL, NULL, NULL), (2776, 0, ', MDL No. 1917, 2013 U.S. Dist.', NULL, NULL, NULL, NULL), (2777, 0, 'LEXIS 137945, at *136-37', NULL, NULL, NULL, NULL), (2778, 0, '(N.D. Cal. June 20, 2013)', NULL, NULL, NULL, NULL), (2779, 0, '(“courts have never required a precise mathematical calculation of damages before deeming a class worthy of certification” and the “validity of [the expert’s] methods will be adjudicated at trial . . . not at the class certification stage.”', NULL, NULL, NULL, NULL), (2780, 0, '(internal quotations omitted)).', NULL, NULL, NULL, NULL), (2781, 0, 'By requiring a fully functional, “data-driven” damages model at class certification, the District Court imposed a burden on Plaintiffs that does not exist under Ninth Circuit law.', NULL, NULL, NULL, NULL), (2782, 0, 'At most, as is the case with demonstrating impact, at class certification, plaintiffs may be required to present a methodology that is capable of measuring damages by common evidence on a class-wide basis.', NULL, NULL, NULL, NULL), (2783, 0, 'See, e.g., Lambert, 870 F.3d at 1182', NULL, NULL, NULL, NULL), (2784, 0, '(“Uncertainty regarding class members’ damages does', NULL, NULL, NULL, NULL), (2785, 0, '- 35 -', NULL, NULL, NULL, NULL), (2786, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 45 of 75', NULL, NULL, NULL, NULL), (2787, 0, 'not prevent certification of a class as long as a valid method has been proposed for calculating those damages.', NULL, NULL, NULL, NULL), (2788, 0, '”', NULL, NULL, NULL, NULL), (2789, 0, '(emphasis supplied; internal quotations omitted); <NAME>, 847 F.3d at 1120', NULL, NULL, NULL, NULL), (2790, 0, '(“In Plaintiffs’ motion for class certification, Plaintiffs gave examples of methods for calculating damages.”', NULL, NULL, NULL, NULL), (2791, 0, '(emphasis added)); McArdle v. AT&T Mobility LLC, No. 09-cv-1117 CW, 2018 U.S. Dist.', NULL, NULL, NULL, NULL), (2792, 0, 'LEXIS 218070, at *26', NULL, NULL, NULL, NULL), (2793, 0, '(N.D. Cal. Aug. 13, 2018)', NULL, NULL, NULL, NULL), (2794, 0, '(certifying class where expert’s “testimony shows damages are capable of measurement on a classwide basis, notwithstanding that his method remains largely untested.”', NULL, NULL, NULL, NULL), (2795, 0, '(emphasis added; internal quotations omitted)).', NULL, NULL, NULL, NULL), (2796, 0, 'Comcast is the leading Supreme Court case addressing the showing of damages at class certification.', NULL, NULL, NULL, NULL), (2797, 0, 'There, the district court had allowed the plaintiffs to proceed on just one of the four theories of antitrust liability they had proposed.', NULL, NULL, NULL, NULL), (2798, 0, '569 U.S. at 31.', NULL, NULL, NULL, NULL), (2799, 0, 'The Supreme Court held the damages methodology used by the plaintiffs’ expert was deficient because it sought to measure damages stemming from all four liability theories originally advanced by plaintiffs and did not isolate the damages attributable to the single theory accepted by the district court', NULL, NULL, NULL, NULL), (2800, 0, '(id. at 31-32), and thus could not “possibly establish that damages are susceptible of measurement across the entire class for purposes of Rule 23', NULL, NULL, NULL, NULL), (2801, 0, '(b)(3).', NULL, NULL, NULL, NULL), (2802, 0, '” Comcast, 569 U.S. at 35.', NULL, NULL, NULL, NULL), (2803, 0, 'Significantly, the Supreme Court did not decide that the plaintiffs were required to show at class certification that damages attributable to class-wide injury', NULL, NULL, NULL, NULL), (2804, 0, '- 36 -', NULL, NULL, NULL, NULL), (2805, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 46 of 75', NULL, NULL, NULL, NULL), (2806, 0, 'are measurable on a class-wide basis.', NULL, NULL, NULL, NULL), (2807, 0, 'It merely accepted that precept because it was uncontested by either party.12', NULL, NULL, NULL, NULL), (2808, 0, 'As Justice Ruth Bader Ginsburg explained in her dissent, the “oddity of [the Comcast] case, in which the need to prove damages on a class-wide basis through a common methodology was never challenged by respondents” means that “[t]he Court’s ruling [was] good for [that] day and case only,” and “[i]n the mine run of cases, it remains the ‘black letter rule’ that a class may obtain certification under Rule 23', NULL, NULL, NULL, NULL), (2809, 0, '(b)(3)', NULL, NULL, NULL, NULL), (2810, 0, 'when liability questions common to the class predominate over damages questions unique to class members.', NULL, NULL, NULL, NULL), (2811, 0, '” Id. at 4243', NULL, NULL, NULL, NULL), (2812, 0, '(<NAME>., dissenting).', NULL, NULL, NULL, NULL), (2813, 0, 'In Tyson Foods, Inc. v. Bouaphakeo, 136 S. Ct.', NULL, NULL, NULL, NULL), (2814, 0, '1036, 1045', NULL, NULL, NULL, NULL), (2815, 0, '(2016), the Supreme Court confirmed that the “black letter rule” of predominance remains the law of the land after Comcast.', NULL, NULL, NULL, NULL), (2816, 0, 'There, the Court rejected the defendant’s argument that individual damages questions predominated where the plaintiffs failed to provide a mechanism to ensure that uninjured class members did not contribute to', NULL, NULL, NULL, NULL), (2817, 0, '12 See id. at 30', NULL, NULL, NULL, NULL), (2818, 0, '(“The District Court held, and it is uncontested here, that to', NULL, NULL, NULL, NULL), (2819, 0, 'meet the predominance requirement respondents had to show', NULL, NULL, NULL, NULL), (2820, 0, '(1)', NULL, NULL, NULL, NULL), (2821, 0, 'that the existence of individual injury resulting from the alleged antitrust violation', NULL, NULL, NULL, NULL), (2822, 0, '(referred to as antitrust impact)', NULL, NULL, NULL, NULL), (2823, 0, 'was capable of proof at trial through evidence that [was] common to the class rather than individual to its members; and', NULL, NULL, NULL, NULL), (2824, 0, '(2)', NULL, NULL, NULL, NULL), (2825, 0, 'that the damages resulting from that injury were measurable on a class-wide basis through use of a common methodology”', NULL, NULL, NULL, NULL), (2826, 0, '(internal quotations omitted; emphasis added)).', NULL, NULL, NULL, NULL), (2827, 0, 'As <NAME> noted, “[i]n particular, the decision should not be read to require, as a prerequisite to certification, that damages attributable to a classwide injury be measurable on a class-wide basis,” citing to the majority’s opinion “acknowledging [the] Court’s dependence on the absence of contest on the matter in this case.”', NULL, NULL, NULL, NULL), (2828, 0, 'See id. at 41', NULL, NULL, NULL, NULL), (2829, 0, '(<NAME>. dissenting)', NULL, NULL, NULL, NULL), (2830, 0, '(internal quotation omitted).', NULL, NULL, NULL, NULL), (2831, 0, '- 37 -', NULL, NULL, NULL, NULL), (2832, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 47 of 75', NULL, NULL, NULL, NULL), (2833, 0, 'the size of any damage award and would not recover damages.', NULL, NULL, NULL, NULL), (2834, 0, 'The Court upheld certification of a class of workers claiming entitlement to overtime pay for time spent donning and doffing protective gear despite individual differences and a lack of records as to overtime spent because “[w]hen ‘one or more of the central issues in the action are common to the class and can be said to predominate, the action may be considered proper under Rule 23', NULL, NULL, NULL, NULL), (2835, 0, '(b)(3)', NULL, NULL, NULL, NULL), (2836, 0, 'even though other important matters will have to be tried separately, such as damages or some affirmative defenses peculiar to some individual class members.', NULL, NULL, NULL, NULL), (2837, 0, '’” Id.', NULL, NULL, NULL, NULL), (2838, 0, '(quoting 7AA Wright, Miller & Kane § 1778, pp. 123-24)', NULL, NULL, NULL, NULL), (2839, 0, '(emphasis added).', NULL, NULL, NULL, NULL), (2840, 0, 'Tyson Foods is fully consistent with this Court’s holding that a fully-functioning damages model – such as the “data-driven” model the District Court required of Plaintiffs here – is unnecessary at class certification.', NULL, NULL, NULL, NULL), (2841, 0, 'This Court has acknowledged that Comcast “did not hold that proponents of class certification must rely upon a classwide damages model to demonstrate predominance.”', NULL, NULL, NULL, NULL), (2842, 0, 'Pulaski, 802 F.3d at 987-88', NULL, NULL, NULL, NULL), (2843, 0, '(quoting Roach v. T.L. Cannon Corp., 778 F.3d 401, 407', NULL, NULL, NULL, NULL), (2844, 0, '(2d Cir. 2015)).', NULL, NULL, NULL, NULL), (2845, 0, 'See also <NAME>, 847 F.3d at 1120', NULL, NULL, NULL, NULL), (2846, 0, '(affirming certification of a class where plaintiffs merely “gave examples of methods for calculating damages.”).13', NULL, NULL, NULL, NULL), (2847, 0, 'This Court has never required the type of', NULL, NULL, NULL, NULL), (2848, 0, '13 Other circuits are in accord.', NULL, NULL, NULL, NULL), (2849, 0, 'See, e.g., Roach, 778 F.3d at 987', NULL, NULL, NULL, NULL), (2850, 0, '(Comcast does', NULL, NULL, NULL, NULL), (2851, 0, 'not require a damages model); Brown v. Electrolux Home Prods.', NULL, NULL, NULL, NULL), (2852, 0, ', 817 F.3d 1225, 1239', NULL, NULL, NULL, NULL), (2853, 0, '(11th Cir. 2016)', NULL, NULL, NULL, NULL), (2854, 0, '(“the Supreme Court did not hold . . . that a plaintiff seeking', NULL, NULL, NULL, NULL), (2855, 0, '- 38 -', NULL, NULL, NULL, NULL), (2856, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 48 of 75', NULL, NULL, NULL, NULL), (2857, 0, 'fully developed, data-driven class-wide damages model demanded by the District Court to establish predominance under Rule 23', NULL, NULL, NULL, NULL), (2858, 0, '(b)(3).', NULL, NULL, NULL, NULL), (2859, 0, 'For example, in Leyva, 716 F.3d at 513-14, this Court’s first class certification ruling after Comcast, this Court held that, under Comcast, “plaintiffs must be able to show that their damages stemmed from the defendant’s actions that created the legal liability,” but held an adequate showing was made where evidence showed that, if the plaintiffs established liability, the district court could calculate damages itself using the defendant’s time-keeping records.', NULL, NULL, NULL, NULL), (2860, 0, 'Id. at 514.', NULL, NULL, NULL, NULL), (2861, 0, 'In Pulaski, a proposed class of advertisers who purchased internet advertising through Google auctions alleged that Google misrepresented the quality of the websites on which the ads would appear.', NULL, NULL, NULL, NULL), (2862, 0, 'On appeal, Google, citing Comcast, argued the district court’s denial of class certification was proper because the proposed method for calculating restitution was “arbitrary,” and therefore did', NULL, NULL, NULL, NULL), (2863, 0, 'class certification must present an expert damages model.', NULL, NULL, NULL, NULL), (2864, 0, 'The Court assumed those points because the parties had conceded them.', NULL, NULL, NULL, NULL), (2865, 0, '. . . Such assumptions are not holdings.', NULL, NULL, NULL, NULL), (2866, 0, '”', NULL, NULL, NULL, NULL), (2867, 0, '(citations omitted)); Dow Chem.', NULL, NULL, NULL, NULL), (2868, 0, 'Co. v. Seegott Holdings, Inc.', NULL, NULL, NULL, NULL), (2869, 0, '(In re Urethane Antitrust Litig.), 768 F.3d 1245, 1257-59', NULL, NULL, NULL, NULL), (2870, 0, '(10th Cir. 2014)', NULL, NULL, NULL, NULL), (2871, 0, '(distinguishing Comcast because the parties there had conceded that “that class certification required a method to prove class-wide damages through a common methodology.”); Kleen Prods.', NULL, NULL, NULL, NULL), (2872, 0, ', 831 F.3d at 929', NULL, NULL, NULL, NULL), (2873, 0, '(“Comcast insists that the damages theory must correspond to the theory of liability, but that is all Comcast said that is pertinent. We must see if there is a classwide method for proving damages, and if not, whether individual damage determinations will overwhelm the common questions....”); In re Deepwater Horizon, 739 F.3d 790, 815', NULL, NULL, NULL, NULL), (2874, 0, '(5th Cir. 2014)', NULL, NULL, NULL, NULL), (2875, 0, '(“nothing in Comcast mandates a formula for classwide measurement of damages in all cases.”).', NULL, NULL, NULL, NULL), (2876, 0, '- 39 -', NULL, NULL, NULL, NULL), (2877, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 49 of 75', NULL, NULL, NULL, NULL), (2878, 0, 'not satisfy Rule 23', NULL, NULL, NULL, NULL), (2879, 0, '(b)(3)’s predominance requirement.', NULL, NULL, NULL, NULL), (2880, 0, '802 F.3d at 988.', NULL, NULL, NULL, NULL), (2881, 0, 'This Court disagreed and, addressing the plaintiffs’ “proposed method for calculating restitution,” held that where such method measures the monetary loss “resulting from the particular . . . injury,” it is sufficient for predominance under Comcast.', NULL, NULL, NULL, NULL), (2882, 0, 'Id. at 989', NULL, NULL, NULL, NULL), (2883, 0, '(internal quotations omitted).', NULL, NULL, NULL, NULL), (2884, 0, 'The Court further held, “[i]n calculating damages . . . California law ‘requires only that some reasonable basis of computation of damages be used, and the damages may be computed even if the result reached is an approximation.’” Id. at 989', NULL, NULL, NULL, NULL), (2885, 0, '(citation omitted).', NULL, NULL, NULL, NULL), (2886, 0, 'In <NAME>, this Court affirmed certification of a class where the plaintiffs merely “gave examples of methods for calculating damages.” 847 F.3d at 1120-22', NULL, NULL, NULL, NULL), (2887, 0, '(emphasis added).', NULL, NULL, NULL, NULL), (2888, 0, 'There, merchants asserted a RICO claim against lessors of point-of-sale credit and debit card equipment.', NULL, NULL, NULL, NULL), (2889, 0, 'This Court held predominance was established where the plaintiffs’ proposed damages theory – not a functioning mathematical model with existing numerical data – proposed that damages could be calculated based on any fees that were deducted from the merchants’ bank accounts using defendants’ own records and any expenses incurred by class members using their own records.', NULL, NULL, NULL, NULL), (2890, 0, 'See id. at 1121.', NULL, NULL, NULL, NULL), (2891, 0, 'The Court concluded, “[a]t this stage, Plaintiffs need only show that such damages can be determined without excessive difficulty and attributed to their theory of liability, and have proposed as much here.”', NULL, NULL, NULL, NULL), (2892, 0, 'Id.', NULL, NULL, NULL, NULL), (2893, 0, '(emphasis added).', NULL, NULL, NULL, NULL), (2894, 0, 'Indeed, Comcast itself holds that damages', NULL, NULL, NULL, NULL), (2895, 0, '- 40 -', NULL, NULL, NULL, NULL), (2896, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 50 of 75', NULL, NULL, NULL, NULL), (2897, 0, '“[c]alculations need not be exact.” 569 U.S. at 35.', NULL, NULL, NULL, NULL), (2898, 0, 'In Just Film, the Court also rejected the defendants’ argument that the plaintiffs’ other theory of liability – that defendants calculated taxes on the basis of equipment cost, which resulted in higher tax liability for the plaintiffs – assumed that the equipment cost was higher, and that there was no factual support for that in the record.', NULL, NULL, NULL, NULL), (2899, 0, 'This Court held that the argument was not “pertinent at this [class certification] stage,” and did not require the plaintiffs to produce data that the amount of the tax would, in fact, be higher on a class-wide basis.', NULL, NULL, NULL, NULL), (2900, 0, '847 F.3d at 1122.', NULL, NULL, NULL, NULL), (2901, 0, 'The Court held that whether the tax liability increased was a merits question not appropriate for resolution at the class certification stage.', NULL, NULL, NULL, NULL), (2902, 0, 'See id.', NULL, NULL, NULL, NULL), (2903, 0, '(citing Amgen, 568 U.S. at 458).', NULL, NULL, NULL, NULL), (2904, 0, 'Subsequently, in Lambert, 870 F.3d at 1182-84, this Court reversed a district court’s decertification of a class on the ground that the plaintiff failed to prove damages, and held there is no requirement at the class certification stage that a court find that a damages methodology will work with certainty, only that the plaintiff must present a “workable method” that was supportable by evidence that could be introduced at trial.', NULL, NULL, NULL, NULL), (2905, 0, 'See also Alaska Rent-A-Car, Inc. v. Avis Budget Grp.', NULL, NULL, NULL, NULL), (2906, 0, ', Inc., 738 F.3d 960, 970', NULL, NULL, NULL, NULL), (2907, 0, '(9th Cir. 2013)', NULL, NULL, NULL, NULL), (2908, 0, '(certification “requires only that damages be capable of measurement based upon reliable factors without undue speculation.”); In re Twitter Inc.', NULL, NULL, NULL, NULL), (2909, 0, 'Sec.', NULL, NULL, NULL, NULL), (2910, 0, 'Litig.', NULL, NULL, NULL, NULL), (2911, 0, ', No. 16-cv-05314-JST, 2018 U.S. Dist.', NULL, NULL, NULL, NULL), (2912, 0, '- 41 -', NULL, NULL, NULL, NULL), (2913, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 51 of 75', NULL, NULL, NULL, NULL), (2914, 0, 'LEXIS 119153, at *27-29', NULL, NULL, NULL, NULL), (2915, 0, '(N.D. Cal. July 16, 2018)', NULL, NULL, NULL, NULL), (2916, 0, '(certifying class despite defendants’ objection that the plaintiffs’ expert had not yet calculated damages); Luna v. Marvell Tech.', NULL, NULL, NULL, NULL), (2917, 0, 'Grp.', NULL, NULL, NULL, NULL), (2918, 0, ', Ltd., No.', NULL, NULL, NULL, NULL), (2919, 0, 'C 15-05447 WHA, 2017 U.S. Dist.', NULL, NULL, NULL, NULL), (2920, 0, 'LEXIS 178674, at *18-19', NULL, NULL, NULL, NULL), (2921, 0, '(N.D. Cal. Oct. 27, 2017)', NULL, NULL, NULL, NULL), (2922, 0, '(“That lead plaintiff has not yet provided a loss-causation model [at the class certification stage] does not defeat predominance.”); Hayes v. MagnaChip Semiconductor Corp., No. 14-cv-01160-JST, 2016 U.S. Dist.', NULL, NULL, NULL, NULL), (2923, 0, 'LEXIS 177787, at *30', NULL, NULL, NULL, NULL), (2924, 0, '(N.D. Cal. Dec. 22, 2016)', NULL, NULL, NULL, NULL), (2925, 0, '(“Comcast does not require certification proponents to rely on a class-wide damages model to demonstrate predominance”); Brown v. <NAME> Grp.', NULL, NULL, NULL, NULL), (2926, 0, ', Inc., No.', NULL, NULL, NULL, NULL), (2927, 0, 'C 11-03082 LB, 2014 U.S. Dist.', NULL, NULL, NULL, NULL), (2928, 0, 'LEXIS 162038, at *57-58', NULL, NULL, NULL, NULL), (2929, 0, '(N.D. Cal. Nov. 18, 2014)', NULL, NULL, NULL, NULL), (2930, 0, '(“‘At class certification, plaintiff must present a likely method for determining class damages, though it is not necessary to show that his method will work with certainty at this time.’”)', NULL, NULL, NULL, NULL), (2931, 0, '(quoting Chavez v. Blue Sky Nat’l Beverage Co., 268 F.R.D. 365, 379', NULL, NULL, NULL, NULL), (2932, 0, '(N.D. Cal. 2010)).', NULL, NULL, NULL, NULL), (2933, 0, 'In short, “[c]ourts in this circuit [as elsewhere] have not interpreted Comcast to require certification proponents to rely on a class-wide damages model to demonstrate predominance.”', NULL, NULL, NULL, NULL), (2934, 0, 'In re Twitter Inc., 2018 U.S. Dist.', NULL, NULL, NULL, NULL), (2935, 0, 'LEXIS 119153, at *27', NULL, NULL, NULL, NULL), (2936, 0, '(internal quotation omitted).', NULL, NULL, NULL, NULL), (2937, 0, 'Rather, “[t]he Ninth Circuit reads Comcast to demand only that plaintiffs ‘be able to show that their damages stemmed from the defendant’s actions that created the legal liability.’” Hatamian v. Advanced', NULL, NULL, NULL, NULL), (2938, 0, '- 42 -', NULL, NULL, NULL, NULL), (2939, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 52 of 75', NULL, NULL, NULL, NULL), (2940, 0, 'Micro Devices, Inc., No. 14-CV-00226 YGR, 2016 U.S. Dist.', NULL, NULL, NULL, NULL), (2941, 0, 'LEXIS 34150, at *24', NULL, NULL, NULL, NULL), (2942, 0, '(N.D. Cal. Mar. 16, 2016)', NULL, NULL, NULL, NULL), (2943, 0, '(quoting Leyva, 716 F.3d at 514).', NULL, NULL, NULL, NULL), (2944, 0, 'In ruling a functioning impact/damages model was required to establish predominance, the District Court ignored binding Supreme Court and Ninth Circuit cases.', NULL, NULL, NULL, NULL), (2945, 0, 'This is reversible error.', NULL, NULL, NULL, NULL), (2946, 0, 'B. Plaintiffs’ Proposed Methodologies Are Capable of Establishing Antitrust Impact and Computing Damages at Trial', NULL, NULL, NULL, NULL), (2947, 0, 'Dr. Warren-Boulton’s proposed but-for methodology is economically sound and well-designed and is fully capable of demonstrating the fact and quantum of harm at trial.', NULL, NULL, NULL, NULL), (2948, 0, 'As stated above, Dr. Warren-Boulton constructed two but-for worlds to show what would have happened absent Apple’s conspiracy to monopolize the aftermarket for iPhone Wireless Services.', NULL, NULL, NULL, NULL), (2949, 0, 'As the district court explained in Apple I when approving a but-for methodology for a nearly identical antitrust claim, “[t]he proper focus of a ‘but for’ analysis is the absence of the ‘challenged practices.’” Apple I, 2010 U.S. Dist.', NULL, NULL, NULL, NULL), (2950, 0, 'LEXIS 98270, at *39.', NULL, NULL, NULL, NULL), (2951, 0, 'That is precisely how Dr. Warren-Boulton constructed his methodology here.', NULL, NULL, NULL, NULL), (2952, 0, 'The but-for methodology is a sound and widely accepted methodology for calculating damages in an antitrust context.', NULL, NULL, NULL, NULL), (2953, 0, 'See Apple iPod iTunes Antitrust Litig.', NULL, NULL, NULL, NULL), (2954, 0, ', No. 05-CV-0037 YGR, 2014 U.S. Dist.', NULL, NULL, NULL, NULL), (2955, 0, 'LEXIS 136437, at *13-14 n.7', NULL, NULL, NULL, NULL), (2956, 0, '(N.D. Cal. Sept. 26, 2014)', NULL, NULL, NULL, NULL), (2957, 0, '(“It is common in antitrust cases to estimate damages by', NULL, NULL, NULL, NULL), (2958, 0, '- 43 -', NULL, NULL, NULL, NULL), (2959, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 53 of 75', NULL, NULL, NULL, NULL), (2960, 0, 'comparing the price actually charged to an expert economist’s estimation of the price that would have been charged ‘but for’ the asserted anticompetitive conduct.', NULL, NULL, NULL, NULL), (2961, 0, '”)', NULL, NULL, NULL, NULL), (2962, 0, '(citations omitted)).', NULL, NULL, NULL, NULL), (2963, 0, 'See also In re: Cathode Ray Tube', NULL, NULL, NULL, NULL), (2964, 0, '(CRT)', NULL, NULL, NULL, NULL), (2965, 0, 'Antitrust Litig.', NULL, NULL, NULL, NULL), (2966, 0, ', 2013 U.S. Dist.', NULL, NULL, NULL, NULL), (2967, 0, 'LEXIS 137946, at *82', NULL, NULL, NULL, NULL), (2968, 0, '(court accepted expert’s opinion using “but-for” analysis); Comcast, 569 U.S. at 36-37', NULL, NULL, NULL, NULL), (2969, 0, '(plaintiffs’ expert’s but-for methodology “might have produced commonality of damages” if it was tied to plaintiffs’ theory of liability).', NULL, NULL, NULL, NULL), (2970, 0, 'As described above, in Dr. Warren-Boulton’s TE but-for world, iPhone purchasers reasonably expected to not be locked into using ATTM after the expiration of their WSAs.', NULL, NULL, NULL, NULL), (2971, 0, 'EOR 134-35, ¶ 14.', NULL, NULL, NULL, NULL), (2972, 0, 'This reasonable expectation artificially inflated the perceived value of the iPhone and shifted up the demand curve for iPhones relative to what it would have been in the TE world, raising consumers’ willingness to pay', NULL, NULL, NULL, NULL), (2973, 0, '(or reservation prices)', NULL, NULL, NULL, NULL), (2974, 0, '“by an amount equal to the present value of both', NULL, NULL, NULL, NULL), (2975, 0, '(a) the lower prices or higher quality on the service they would have expected to receive on their iPhones after the expiration of their initial service contracts and', NULL, NULL, NULL, NULL), (2976, 0, '(b) the ability to use lower cost foreign service providers when making calls in foreign countries rather than pay [ATTM]’s international roaming charges.', NULL, NULL, NULL, NULL), (2977, 0, '” EOR 132 ¶ 8.', NULL, NULL, NULL, NULL), (2978, 0, 'In the proposed TNE but-for world, Apple would have agreed to unlock iPhones at the end of the customers’ initial two-year service contracts or to permit', NULL, NULL, NULL, NULL), (2979, 0, '- 44 -', NULL, NULL, NULL, NULL), (2980, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 54 of 75', NULL, NULL, NULL, NULL), (2981, 0, 'international roaming.', NULL, NULL, NULL, NULL), (2982, 0, 'See, e.g., EOR 130-31, 135, ¶¶ 4, 15.', NULL, NULL, NULL, NULL), (2983, 0, 'The refusal to unlock iPhones upon the expiration of the WSAs “increased the TCO in the as-is world through higher prices or lower quality (or both) on the service received by iPhone purchasers.”', NULL, NULL, NULL, NULL), (2984, 0, 'EOR 132, ¶ 8.', NULL, NULL, NULL, NULL), (2985, 0, 'Significantly, Dr. Warren-Boulton’s TNE but-for methodology is based in part on expert methods previously approved by <NAME> in Apple I. EOR 130, ¶ 3; EOR 268 n.1.', NULL, NULL, NULL, NULL), (2986, 0, 'In Apple I, <NAME> held the challenged practice in that case, as here, included “Defendants’ monopolization of the aftermarket[] for voice and data service . . . that resulted from Defendants’ five year agreement and failure to disclose the agreement to consumers at the time of purchase of the iPhones.” 2010 U.S. Dist.', NULL, NULL, NULL, NULL), (2987, 0, 'LEXIS 98270, at *39.', NULL, NULL, NULL, NULL), (2988, 0, 'Dr. Wilkie measured “(1) ‘what prices consumers would have paid for iPhone voice and data service if they had the right to switch,’ and (2) ‘the inherent value of the right to switch itself, a right the consumers bargained for but never received.’” Id. at *39-40.', NULL, NULL, NULL, NULL), (2989, 0, 'Dr. Warren-Boulton determined that two of Dr. Wilkie’s estimates of harm in Apple I were useful to his own but-for analysis: the harm from higher services prices over the renewal period due to the refusal to unlock phones after the end of the initial service period, and the harm over the entire service life from the refusal to provide unlock codes for international calls.', NULL, NULL, NULL, NULL), (2990, 0, 'EOR 137, ¶ 20.', NULL, NULL, NULL, NULL), (2991, 0, 'Dr. Warren-Boulton explained that he intends to use Dr. Wilkie’s approach for estimating the', NULL, NULL, NULL, NULL), (2992, 0, '- 45 -', NULL, NULL, NULL, NULL), (2993, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 55 of 75', NULL, NULL, NULL, NULL), (2994, 0, 'savings iPhone owners could have enjoyed in the TNE world during the renewal period by using T-Mobile’s prices as a benchmark.14', NULL, NULL, NULL, NULL), (2995, 0, 'EOR 136-39, ¶¶ 19-21, 26.', NULL, NULL, NULL, NULL), (2996, 0, 'Dr. Warren-Boulton further explained that this approach “can be used to estimate the post-Initial-Service-Period savings that iPhone customers . . . reasonably could have expected,” and thus “the amount by which Apple’s alleged unlawful conduct . . . increased the price that iPhone consumers would have been willing to pay.”', NULL, NULL, NULL, NULL), (2997, 0, 'EOR 137, ¶ 21.', NULL, NULL, NULL, NULL), (2998, 0, 'The methodologies that Dr. Warren-Boulton has proposed are tailored specifically to fit the theory of this case and take into account the District Court’s summary judgment ruling.', NULL, NULL, NULL, NULL), (2999, 0, 'Therefore, they fully comply with Comcast and this Court’s precedent.', NULL, NULL, NULL, NULL), (3000, 0, 'They are designed to measure the impact of Apple’s refusal to unlock iPhones after the expiration of the two-year WSAs, the relevant market set forth in the District Court’s summary judgment ruling.15', NULL, NULL, NULL, NULL), (3001, 0, 'As Dr. Warren-Boulton', NULL, NULL, NULL, NULL), (3002, 0, '14 “[A] testifying expert can use facts, data, and conclusions of other experts to offer an opinion within the testifying expert’s domain of expertise, but the testifying expert cannot vouch for the truth of the other expert’s conclusion.”', NULL, NULL, NULL, NULL), (3003, 0, 'K&N Eng’g, Inc. v. Spectre Performance, No.', NULL, NULL, NULL, NULL), (3004, 0, 'EDCV 09-1900VAP (DTBx), 2011 U.S. Dist.', NULL, NULL, NULL, NULL), (3005, 0, 'LEXIS 164981, at *27 (C.D. Cal. May 12, 2011) (citing Dura Automotive Systems of Indiana, Inc. v. CTS Corp., 285 F.3d 609, 614 (7th Cir. 2002)).', NULL, NULL, NULL, NULL), (3006, 0, '15 Dr. Warren-Boulton excluded from his own analysis an element of Dr. Wilkie’s analysis based on a theory that the District Court has since rejected – an assumption that iPhone customers could have paid an early termination fee and switched services.', NULL, NULL, NULL, NULL), (3007, 0, 'EOR 136-37, ¶ 19.', NULL, NULL, NULL, NULL), (3008, 0, 'This further demonstrates that his methodologies are appropriately tailored to Plaintiffs’ liability theory and the summary judgment ruling.', NULL, NULL, NULL, NULL), (3009, 0, '- 46 -', NULL, NULL, NULL, NULL), (3010, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 56 of 75', NULL, NULL, NULL, NULL), (3011, 0, 'explained, that harm arose immediately when consumers purchased their iPhones and began paying for Wireless Service, in the form of a willingness to accept a higher price for the iPhones or to accept higher prices or lower quality on the Wireless Service received.', NULL, NULL, NULL, NULL), (3012, 0, 'See EOR 131, 137-140, ¶¶ 8, 20-21, 25-26, 30-31; EOR 270, 275-76, 279-80, 282 ¶¶ 9, 22-23, 31, 38.', NULL, NULL, NULL, NULL), (3013, 0, 'Dr. Warren-Boulton explained that the harm stems from the “actual or expected effect of the refusal by Apple and [ATTM] to unlock iPhones upon the expiration of class members’ initial contracts with [ATTM].”', NULL, NULL, NULL, NULL), (3014, 0, 'EOR 131-32, ¶ 8.', NULL, NULL, NULL, NULL), (3015, 0, 'Dr. Warren-Boulton opined that while the nexus of harm to Class members differs in the two but-for worlds, harm is measurable for either scenario applying standard economic analysis to class-wide market data in ways commonly used by economists.', NULL, NULL, NULL, NULL), (3016, 0, 'EOR 269, ¶ 7.', NULL, NULL, NULL, NULL), (3017, 0, 'Dr. Warren-Boulton stated that his review of the data collected by Dr. Wilkie and additional data he reviewed confirmed that, at the appropriate time, he could reliably apply his methodology to estimate the harm from Apple’s conspiracy for both the TE and TNE but-for worlds on a class-wide basis using common data.', NULL, NULL, NULL, NULL), (3018, 0, 'Both of Dr. Warren-Boulton’s proposed but-for scenarios are capable of measuring class-wide damages from their aftermarket antitrust claim, and are based on the District Court’s definition of the relevant antitrust market.', NULL, NULL, NULL, NULL), (3019, 0, 'See EOR 136, 138-40, ¶¶ 19, 23-24, 28-32; EOR 269, ¶ 7.', NULL, NULL, NULL, NULL), (3020, 0, 'No more is required to establish predominance at class certification.', NULL, NULL, NULL, NULL), (3021, 0, '- 47 -', NULL, NULL, NULL, NULL), (3022, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 57 of 75', NULL, NULL, NULL, NULL), (3023, 0, 'C. Plaintiffs Request Reassignment of the Case to a New Judge on Remand', NULL, NULL, NULL, NULL), (3024, 0, 'This Court has authority under 28 U.S.C. § 2106, as well as its inherent authority, to reassign this case to a different judge upon remand.', NULL, NULL, NULL, NULL), (3025, 0, 'Reassignment is appropriate if a personal bias exists or where there are unusual circumstances.', NULL, NULL, NULL, NULL), (3026, 0, 'United States v. Sears, Roebuck & Co., 785 F.2d 777, 780 (9th Cir. 1986).', NULL, NULL, NULL, NULL), (3027, 0, 'In determining whether unusual circumstances exist, the Court considers:', NULL, NULL, NULL, NULL), (3028, 0, '(1) whether the original judge would reasonably be expected upon remand to have substantial difficulty in putting out of his or her mind previously-expressed views or findings determined to be erroneous or based on evidence that must be rejected, (2) whether reassignment is advisable to preserve the appearance of justice, and (3) whether reassignment would entail waste and duplication out of proportion to any gain in preserving the appearance of fairness.', NULL, NULL, NULL, NULL), (3029, 0, 'United States v. Arnett, 628 F.2d 1162, 1165 (9th Cir. 1979) (quoting United States v. Robin, 553 F.2d 8, 10 (2d Cir. 1977) (en banc)).', NULL, NULL, NULL, NULL), (3030, 0, 'The first two factors are of equal importance, and a finding of just one of them supports a remand to a different judge.', NULL, NULL, NULL, NULL), (3031, 0, 'See United States v. Alverson, 666 F.2d 341, 349 (9th Cir. 1982).', NULL, NULL, NULL, NULL), (3032, 0, 'All three factors are present here and therefore unusual circumstances exist justifying transfer to a different judge.', NULL, NULL, NULL, NULL), (3033, 0, 'First, the District Court already has exhibited substantial difficulty in putting out of its mind previously-expressed views or findings determined to be erroneous by this Court.', NULL, NULL, NULL, NULL), (3034, 0, 'The District Court initially dismissed this action on December 17, 2012, holding that ATTM, which is not a defendant in this action, was a necessary and indispensable party.', NULL, NULL, NULL, NULL), (3035, 0, 'EOR 216-', NULL, NULL, NULL, NULL), (3036, 0, '- 48 -', NULL, NULL, NULL, NULL), (3037, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 58 of 75', NULL, NULL, NULL, NULL), (3038, 0, '20; Ward, 791 F.3d at 1045.', NULL, NULL, NULL, NULL), (3039, 0, 'This Court reversed that decision on June 29, 2015.', NULL, NULL, NULL, NULL), (3040, 0, 'Id. at 1043.', NULL, NULL, NULL, NULL), (3041, 0, 'The District Court, however, apparently disagrees with this Court’s ruling and still believes that ATTM is an indispensable party.', NULL, NULL, NULL, NULL), (3042, 0, 'The District Court referred to this Court’s holding as an “interesting opinion by the Ninth Circuit” (EOR 192, 2:17-19), and later continued to express its belief that ATTM is an indispensable party despite this Court’s clear holding that it is not (EOR 144, 4:18-20).', NULL, NULL, NULL, NULL), (3043, 0, 'Further, the District Court’s opinion that ATTM is an indispensable party appears to have affected its handling of substantive issues that arose later in this case.', NULL, NULL, NULL, NULL), (3044, 0, 'For example, this appeal arises because the District Court failed to follow this Court’s binding precedent even though the cases were cited and argued extensively in Plaintiffs’ class certification briefs.', NULL, NULL, NULL, NULL), (3045, 0, 'The District Court’s apparent disagreement with this Court’s holdings justifies remand to a new judge.', NULL, NULL, NULL, NULL), (3046, 0, 'See <NAME>.', NULL, NULL, NULL, NULL), (3047, 0, 'Auth.', NULL, NULL, NULL, NULL), (3048, 0, ', 806 F.3d 1178, 1203 (9th Cir. 2015) (granting reassignment where district judge made a number of statements indicating his disagreement with the Ninth Circuit’s prior reversal).', NULL, NULL, NULL, NULL), (3049, 0, 'Furthermore, there are indications that the District Court will also have difficulty putting out of its mind its previously-expressed views regarding Plaintiffs’ ability to certify a class in this case.', NULL, NULL, NULL, NULL), (3050, 0, 'For example, after the District Court denied Plaintiffs’ motion for class certification, Plaintiffs filed their Rule 23', NULL, NULL, NULL, NULL), (3051, 0, '(f)', NULL, NULL, NULL, NULL), (3052, 0, '- 49 -', NULL, NULL, NULL, NULL), (3053, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 59 of 75', NULL, NULL, NULL, NULL), (3054, 0, 'Petition.', NULL, NULL, NULL, NULL), (3055, 0, 'Shortly thereafter the parties stipulated to stay discovery and vacate the trial and associated dates pending this Court’s resolution of the Rule 23', NULL, NULL, NULL, NULL), (3056, 0, '(f) Petition as there were numerous looming deadlines, including the close of fact and expert discovery and disclosure of expert witnesses.', NULL, NULL, NULL, NULL), (3057, 0, 'EOR 263, ECF No. 202.', NULL, NULL, NULL, NULL), (3058, 0, 'The District Court summarily rejected the stipulation to stay the action, which would have forced the parties to pursue this costly and time-consuming antitrust case as an individual action while the Rule 23', NULL, NULL, NULL, NULL), (3059, 0, '(f) Petition was pending.', NULL, NULL, NULL, NULL), (3060, 0, 'As a result, Plaintiffs were forced to file an emergency motion under Circuit Rule 27-3 and ask this Court to intervene and stay the action pending resolution of the Rule 23', NULL, NULL, NULL, NULL), (3061, 0, '(f) Petition, which the Court promptly granted.', NULL, NULL, NULL, NULL), (3062, 0, 'The District Court’s refusal to accept a stipulated stay pending the Court’s review of the Rule 23', NULL, NULL, NULL, NULL), (3063, 0, '(f) Petition confirms that it would have a difficult time putting aside its own views of class certification following remand.', NULL, NULL, NULL, NULL), (3064, 0, 'As this Court held in United States v. Morales, 465 F. App’x 734, 740 (9th Cir. 2012), “[t]he strength of [the District Court judge’s] beliefs is manifest in [its] rejection of the [parties’ stipulated] request to stay proceedings pending [this] interlocutory appeal[], requiring this court to enter an emergency stay.”', NULL, NULL, NULL, NULL), (3065, 0, 'See Earp v. Cullen, 623 F.3d 1065, 1072 (9th Cir. 2010) (reassigning case where Ninth Circuit had to intervene and enter emergency stay).', NULL, NULL, NULL, NULL), (3066, 0, '- 50 -', NULL, NULL, NULL, NULL), (3067, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 60 of 75', NULL, NULL, NULL, NULL), (3068, 0, 'Second, reassignment is advisable to preserve the appearance of justice.', NULL, NULL, NULL, NULL), (3069, 0, 'For example, the District Court appears unwilling to try this case because it is “too old” and will be difficult to try before a jury.', NULL, NULL, NULL, NULL), (3070, 0, 'The District Court has noted numerous times that it was “having a difficult time understanding why this case is still here,” (EOR 194, 4:13-16) and has complained that the case is “stale” (EOR 214, 24:912) and “too old” (EOR 143, 3:4-8).', NULL, NULL, NULL, NULL), (3071, 0, 'The District Court apparently had difficulty trying a different antitrust case against Apple involving a different product, the iPod.', NULL, NULL, NULL, NULL), (3072, 0, 'EOR 193-94, 3:24-4:11.', NULL, NULL, NULL, NULL), (3073, 0, 'Drawing a connection between the two cases, the District Court said the iPod case “was so old that the jurors didn’t know what iPods were,” and noted the technical difficulties it encountered in trying that case.', NULL, NULL, NULL, NULL), (3074, 0, 'Id.', NULL, NULL, NULL, NULL), (3075, 0, 'The District Court further complained of being forced to spend “two plus weeks in trial over something . . . that was ancient history as far as jurors were concerned.”', NULL, NULL, NULL, NULL), (3076, 0, 'EOR 195, 5:6-10.', NULL, NULL, NULL, NULL), (3077, 0, 'Accordingly, the District Court appears not to want this case to go to trial because of the difficulties encountered in trying a different “old” case.', NULL, NULL, NULL, NULL), (3078, 0, 'The District Court appears to be looking for a reason to get this case off its docket.', NULL, NULL, NULL, NULL), (3079, 0, 'During a routine CMC on September 11, 2017, the District Court questioned Plaintiffs’ counsel at length regarding the merits of Plaintiffs’ damages methodology even though the class certification motion had not been fully briefed and the class certification hearing was not scheduled to take place for another five months.', NULL, NULL, NULL, NULL), (3080, 0, 'Nonetheless, suggesting that it had prejudged the motion, the District', NULL, NULL, NULL, NULL), (3081, 0, '- 51 -', NULL, NULL, NULL, NULL), (3082, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 61 of 75', NULL, NULL, NULL, NULL), (3083, 0, 'Court expressed skepticism toward Plaintiffs’ damages methodology.', NULL, NULL, NULL, NULL), (3084, 0, 'EOR 109-19, 3:7-13:25.', NULL, NULL, NULL, NULL), (3085, 0, 'After Plaintiffs’ counsel expressed his view that the merits of the class certification motion were not properly addressed during a routine scheduling conference, the District Court persisted (“That’s why I have lead counsel here”) and the parties continued to argue the merits of the not-yet-briefed motion.', NULL, NULL, NULL, NULL), (3086, 0, 'EOR 116, 10:22.', NULL, NULL, NULL, NULL), (3087, 0, 'The District Court ultimately denied Plaintiffs’ class certification motion because, in its view, Plaintiffs’ impact and damages showing was insufficient.', NULL, NULL, NULL, NULL), (3088, 0, 'In doing so, the District Court ignored arguments offered by Plaintiffs in the fully-briefed motion and at the class certification hearing under this Court’s binding precedent.', NULL, NULL, NULL, NULL), (3089, 0, 'Lastly, reassignment would not entail any waste or duplication of efforts out of proportion to the clear gain in preserving the appearance of fairness.', NULL, NULL, NULL, NULL), (3090, 0, 'Although this case has been pending for six years, it was on appeal for three years (including two years for the decision in the prior appeal to which the District Court has expressed disagreement).', NULL, NULL, NULL, NULL), (3091, 0, 'Moreover, discovery has not yet been completed.', NULL, NULL, NULL, NULL), (3092, 0, 'Thus, if the case is remanded, further delay is inevitable.', NULL, NULL, NULL, NULL), (3093, 0, 'It is clear that the District Court does not want to consider this case on the merits.', NULL, NULL, NULL, NULL), (3094, 0, 'The District Court denied Plaintiffs’ class certification motion – essentially a death-knell to Plaintiffs’ case – in a perfunctory five-page Order with less than two pages of “discussion” and without not citing, much less considering, the', NULL, NULL, NULL, NULL), (3095, 0, '- 52 -', NULL, NULL, NULL, NULL), (3096, 0, 'Case: 18-16016, 02/15/2019, ID: 11191840, DktEntry: 19, Page 62 of 75', NULL, NULL, NULL, NULL), (3097, 0, 'correct standard under this Court’s decisions in Lambert, 870 F.3d at 1182 and Just Film, 847 F.3d at 1120-22.', NULL, NULL, NULL, NULL), (3098, 0, 'Courts of Appeals have reassigned complex cases that were pending for even longer periods of time when reassignment is justified under the circumstances.', NULL, NULL, NULL, NULL), (3099, 0, 'See, e.g., Howe v. City of Akron, 801 F.3d 718, 757 (6th Cir. 2015) (reassigning case pending for almost a decade).', NULL, NULL, NULL, NULL), (3100, 0, 'All of these factors support reassignment to a new judge.', NULL, NULL, NULL, NULL), (3101, 0, 'IX.', NULL, NULL, NULL, NULL), (3102, 0, 'CONCLUSION', NULL, NULL, NULL, NULL), (3103, 0, 'For all the foregoing reasons, Plaintiffs respectfully request that this Court reverse the District Court’s February 16, 2018 Order denying Plaintiffs’ motion for class certification.', NULL, NULL, NULL, NULL), (3104, 0, 'If the Court remands the case, Plaintiffs request reassignment to a different judge of the District Court.', NULL, NULL, NULL, NULL); -- END TABLE cards -- BEGIN TABLE categories DROP TABLE IF EXISTS categories; CREATE TABLE `categories` ( `categoryId` int NOT NULL AUTO_INCREMENT, `name` varchar(64) NOT NULL, PRIMARY KEY (`categoryId`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- Inserting 4 rows into categories -- Insert batch #1 INSERT INTO categories (categoryId, name) VALUES (1, 'Introduction'), (2, 'Conclusion'), (3, 'Argument'), (4, 'Statement of Facts'); -- END TABLE categories -- BEGIN TABLE clients DROP TABLE IF EXISTS clients; CREATE TABLE `clients` ( `clientId` int NOT NULL AUTO_INCREMENT, `longName` varchar(128) NOT NULL, `shortName` varchar(16) NOT NULL, `isCurrent` tinyint(1) DEFAULT NULL, PRIMARY KEY (`clientId`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- Inserting 1 row into clients -- Insert batch #1 INSERT INTO clients (clientId, longName, shortName, isCurrent) VALUES (1, 'ZACK WARD and THOMAS BUCHAR, on behalf of themselves and all others similarly situated', 'Ward', NULL); -- END TABLE clients -- BEGIN TABLE sentences DROP TABLE IF EXISTS sentences; CREATE TABLE `sentences` ( `sentenceId` int NOT NULL AUTO_INCREMENT, `briefId` int NOT NULL, `content` varchar(480) NOT NULL, `verified?` tinyint(1) NOT NULL, `parseNum` int NOT NULL, PRIMARY KEY (`sentenceId`), KEY `briefId` (`briefId`), CONSTRAINT `sentences_ibfk_1` FOREIGN KEY (`briefId`) REFERENCES `briefs` (`briefId`) ) ENGINE=InnoDB AUTO_INCREMENT=403 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- Inserting 402 rows into sentences -- Insert batch #1 INSERT INTO sentences (sentenceId, briefId, content, `verified?`, parseNum) VALUES (1, 0, 'This is a class action against Apple Inc.', 1, 1), (2, 0, 'Evaluation Only.', 0, 0), (3, 0, 'Created with Aspose.', 0, 1), (4, 0, 'Words.', 0, 2), (5, 0, 'Copyright 2003-2021 Aspose Pty Ltd.', 0, 3), (6, 0, 'Escape from Sobibor', 0, 4), (7, 0, '1942 was the year', 0, 5), (8, 0, 'heinrich himmler began', 0, 6), (9, 0, 'the atrocity that spoke', 0, 7), (10, 0, 'for generations to come:', 0, 8), (11, 0, 'Operation Reinhard.', 0, 9), (12, 0, 'camps scattered throughout', 0, 10), (13, 0, 'Eastern Poland, ready', 0, 11), (14, 0, 'to commit further genocide.', 0, 12), (15, 0, 'As was the case with much', 0, 13), (16, 0, 'of Nazi Germany, that which', 0, 14), (17, 0, 'was the most secretive became', 0, 15), (18, 0, 'the most famous,', 0, 16), (19, 0, 'And the same can be said', 0, 17), (20, 0, 'for Sobibor.', 0, 18), (21, 0, 'It’s odd –', 0, 19), (22, 0, 'a movie about Germany', 0, 20), (23, 0, 'spoken in English, almost', 0, 21), (24, 0, 'seems insensitive for its', 0, 22), (25, 0, 'sensitive subject.', 0, 23), (26, 0, 'Some historical inaccuracies', 0, 24), (27, 0, 'yield understanding,', 0, 25), (28, 0, 'such as language –', 0, 26), (29, 0, 'but are they ever good?', 0, 27), (30, 0, 'And they try to', 0, 28), (31, 0, 'make up for it', 0, 29), (32, 0, 'with light German accents!', 0, 30), (33, 0, 'The first thing I realized', 0, 31), (34, 0, 'when those Families stepped off the train', 0, 32), (35, 0, 'was that there were no', 0, 33), (36, 0, 'women and children in Sobibor.', 0, 34), (37, 0, 'As plots for escape were made,', 0, 35), (38, 0, 'collaboration between separate groups heightened.', 0, 36), (39, 0, 'They understood the situation,', 0, 37), (40, 0, 'only together would they escape the camp:', 0, 38), (41, 0, 'Sasha and Leon received intel,', 0, 39), (42, 0, 'they must act now, now!', 0, 40), (43, 0, 'the revelation of the plan yields to', 0, 41), (44, 0, 'leaving the next day-', 0, 42), (45, 0, 'One by one, the', 0, 43), (46, 0, 'guards began to vanish.', 0, 44), (47, 0, 'the monsters became hunted,', 0, 45), (48, 0, 'was that ever expected?', 0, 46), (49, 0, 'I can only imagine their thoughts-', 0, 47), (50, 0, 'when will guards become', 0, 48), (51, 0, 'suspicious?', 0, 49), (52, 0, 'That their fellow', 0, 50), (53, 0, 'ss men are gone.', 0, 51), (54, 0, 'Our Fellow Jewish people', 0, 52), (55, 0, 'cannot believe the situation - we cannot believe it!', 0, 53), (56, 0, 'We are not', 0, 54), (57, 0, 'killers.', 0, 55), (58, 0, 'But we must kill', 0, 56), (59, 0, 'though, to survive.', 0, 57), (60, 0, 'This is', 0, 58), (61, 0, 'Our only chance.', 0, 59), (62, 0, 'The first thing I realized', 0, 60), (63, 0, 'when those Families stepped off the train', 0, 61), (64, 0, 'was that there were no', 0, 62), (65, 0, 'women and children in Sobibor.', 0, 63), (66, 0, 'Artist Statement:', 0, 64), (67, 0, 'When writing the poem we were thinking about the horrific atrocities that were committed during the holocaust.', 0, 65), (68, 0, 'We were not there to fully understand what happened, but to honor the people who died we decided to capitalize certain words to honor Jewish people.', 0, 66), (69, 0, 'We also decided to lower case any nazi or german terms because of horrific acts they commited.', 0, 67), (70, 0, 'We also tried to emphasize and understand the emotional situation of the imprisoned Jewish people.', 0, 68), (71, 0, 'Again, we cannot completely understand the complexity of the situation because we were not there, but we wanted to portray what we saw in the movie and how the actors expressed that it was morally difficult for the Jewish prisoners to kill other humans in order to free themselves from the camp.', 0, 69), (72, 0, 'We also noticed in the movie that there were not a lot of women and children stepping off the train into the camp.', 0, 70), (73, 0, 'It felt sad and gave us a sense of impending doom because we knew that the overwhelming majority of these women and children were going to die.', 0, 71), (74, 0, 'The fact that they visibly had no idea made the situation somehow even sadder.', 0, 72), (75, 0, 'We decided to repeat this stanza and end the poem with it because it was one of the saddest times of the movie to us, because we knew in that moment all the terrible things that were going to occur to these people.', 0, 73), (76, 0, 'It’s also important to mention that there were some women and children in Sobibor, just not many.', 0, 74), (77, 0, 'However, at this point in the story that we saw them getting off the trains, we hadn''t been introduced to any yet.', 0, 75), (78, 0, 'In conclusion, the impact of that scene still stays with us because most of the women and children were killed unless they had a trade or were older boys.', 0, 76), (79, 0, 'Created with an evaluation copy of Aspose.', 0, 77), (80, 0, 'Words.', 0, 78), (81, 0, 'To discover the full versions of our APIs please visit: https://products.aspose.com/words/', 0, 79), (82, 0, 'Evaluation Only.', 0, 0), (83, 0, 'Created with Aspose.', 0, 1), (84, 0, 'Words.', 0, 2), (85, 0, 'Copyright 2003-2021 Aspose Pty Ltd.', 0, 3), (86, 0, 'Collect feedback on your draft portfolio from at least two reviewers who represent your intended audience.', 0, 4), (87, 0, 'Write a synthesis of the results.', 0, 5), (88, 0, 'Keep in mind that a synthesis is different from a collection of notes.', 0, 6), (89, 0, 'In a synthesis, you need to combine different parts into a whole.', 0, 7), (90, 0, 'In this case, you are combining different aspects of feedback into a single discussion of how your portfolio was perceived by your reviewers and your reactions to their feedback.', 0, 8), (91, 0, 'You should include individual comments after the synthesis of results.', 0, 9), (92, 0, 'Your document should include the following:', 0, 10), (93, 0, 'An introduction that discusses the purpose of this synthesis.', 0, 11), (94, 0, 'Include detailed information about the reviewers (names, affiliations, qualifications/relevance to your portfolio goals) and about the interviews (dates, method of reviews).', 0, 12), (95, 0, 'A synthesis of the feedback and how you plan to integrate the feedback into your revised portfolio.', 0, 13), (96, 0, 'If you are not going to use some of the reviewers’ ideas, explain why.', 0, 14), (97, 0, 'The interview questions and the reviewers’ responses to them.', 0, 15), (98, 0, 'Samples of effective synthesis assignments are available on Canvas.', 0, 16), (99, 0, 'Please review them before submitting your synthesis.', 0, 17), (100, 0, 'Be prepared to present your synthesis to a small group during a facilitated workshop around March 3.', 0, 18), (101, 0, 'Created with an evaluation copy of Aspose.', 0, 19), (102, 0, 'Words.', 0, 20), (103, 0, 'To discover the full versions of our APIs please visit: https://products.aspose.com/words/', 0, 21), (104, 0, 'DSGN 370: Winter 2021', 0, 22), (105, 0, 'Major deliverable 4: Synthesis', 0, 23), (106, 0, 'Synthesis of Reviewer Feedback', 0, 24), (107, 0, 'Please upload to Canvas by March 3', 0, 25), (108, 0, '………………………………………………………………………………………………………', 0, 26), (109, 2, 'Evaluation Only.', 0, 0), (110, 2, 'Created with Aspose.', 0, 1), (111, 2, 'Words.', 0, 2), (112, 2, 'Copyright 2003-2021 Aspose Pty Ltd.', 0, 3), (113, 2, 'Collect feedback on your draft portfolio from at least two reviewers who represent your intended audience.', 0, 4), (114, 2, 'Write a synthesis of the results.', 0, 5), (115, 2, 'Keep in mind that a synthesis is different from a collection of notes.', 0, 6), (116, 2, 'In a synthesis, you need to combine different parts into a whole.', 0, 7), (117, 2, 'In this case, you are combining different aspects of feedback into a single discussion of how your portfolio was perceived by your reviewers and your reactions to their feedback.', 0, 8), (118, 2, 'You should include individual comments after the synthesis of results.', 0, 9), (119, 2, 'Your document should include the following:', 0, 10), (120, 2, 'An introduction that discusses the purpose of this synthesis.', 0, 11), (121, 2, 'Include detailed information about the reviewers (names, affiliations, qualifications/relevance to your portfolio goals) and about the interviews (dates, method of reviews).', 0, 12), (122, 2, 'A synthesis of the feedback and how you plan to integrate the feedback into your revised portfolio.', 0, 13), (123, 2, 'If you are not going to use some of the reviewers’ ideas, explain why.', 0, 14), (124, 2, 'The interview questions and the reviewers’ responses to them.', 0, 15), (125, 2, 'Samples of effective synthesis assignments are available on Canvas.', 0, 16), (126, 2, 'Please review them before submitting your synthesis.', 0, 17), (127, 2, 'Be prepared to present your synthesis to a small group during a facilitated workshop around March 3.', 0, 18), (128, 2, 'Created with an evaluation copy of Aspose.', 0, 19), (129, 2, 'Words.', 0, 20), (130, 2, 'To discover the full versions of our APIs please visit: https://products.aspose.com/words/', 0, 21), (131, 2, 'DSGN 370: Winter 2021', 0, 22), (132, 2, 'Major deliverable 4: Synthesis', 0, 23), (133, 2, 'Synthesis of Reviewer Feedback', 0, 24), (134, 2, 'Please upload to Canvas by March 3', 0, 25), (135, 2, '………………………………………………………………………………………………………', 0, 26), (136, 3, 'Evaluation Only.', 0, 0), (137, 3, 'Created with Aspose.', 0, 1), (138, 3, 'Words.', 0, 2), (139, 3, 'Copyright 2003-2021 Aspose Pty Ltd.', 0, 3), (140, 3, 'Collect feedback on your draft portfolio from at least two reviewers who represent your intended audience.', 0, 4), (141, 3, 'Write a synthesis of the results.', 0, 5), (142, 3, 'Keep in mind that a synthesis is different from a collection of notes.', 0, 6), (143, 3, 'In a synthesis, you need to combine different parts into a whole.', 0, 7), (144, 3, 'In this case, you are combining different aspects of feedback into a single discussion of how your portfolio was perceived by your reviewers and your reactions to their feedback.', 0, 8), (145, 3, 'You should include individual comments after the synthesis of results.', 0, 9), (146, 3, 'Your document should include the following:', 0, 10), (147, 3, 'An introduction that discusses the purpose of this synthesis.', 0, 11), (148, 3, 'Include detailed information about the reviewers (names, affiliations, qualifications/relevance to your portfolio goals) and about the interviews (dates, method of reviews).', 0, 12), (149, 3, 'A synthesis of the feedback and how you plan to integrate the feedback into your revised portfolio.', 0, 13), (150, 3, 'If you are not going to use some of the reviewers’ ideas, explain why.', 0, 14), (151, 3, 'The interview questions and the reviewers’ responses to them.', 0, 15), (152, 3, 'Samples of effective synthesis assignments are available on Canvas.', 0, 16), (153, 3, 'Please review them before submitting your synthesis.', 0, 17), (154, 3, 'Be prepared to present your synthesis to a small group during a facilitated workshop around March 3.', 0, 18), (155, 3, 'Created with an evaluation copy of Aspose.', 0, 19), (156, 3, 'Words.', 0, 20), (157, 3, 'To discover the full versions of our APIs please visit: https://products.aspose.com/words/', 0, 21), (158, 3, 'DSGN 370: Winter 2021', 0, 22), (159, 3, 'Major deliverable 4: Synthesis', 0, 23), (160, 3, 'Synthesis of Reviewer Feedback', 0, 24), (161, 3, 'Please upload to Canvas by March 3', 0, 25), (162, 3, '………………………………………………………………………………………………………', 0, 26), (163, 0, 'Evaluation Only.', 0, 0), (164, 0, 'Created with Aspose.', 0, 1), (165, 0, 'Words.', 0, 2), (166, 0, 'Copyright 2003-2021 Aspose Pty Ltd.', 0, 3), (167, 0, 'Escape from Sobibor', 0, 4), (168, 0, '1942 was the year', 0, 5), (169, 0, '<NAME> began', 0, 6), (170, 0, 'the atrocity that spoke', 0, 7), (171, 0, 'for generations to come:', 0, 8), (172, 0, 'Operation Reinhard.', 0, 9), (173, 0, 'camps scattered throughout', 0, 10), (174, 0, 'Eastern Poland, ready', 0, 11), (175, 0, 'to commit further genocide.', 0, 12), (176, 0, 'As was the case with much', 0, 13), (177, 0, 'of Nazi Germany, that which', 0, 14), (178, 0, 'was the most secretive became', 0, 15), (179, 0, 'the most famous,', 0, 16), (180, 0, 'And the same can be said', 0, 17), (181, 0, 'for Sobibor.', 0, 18), (182, 0, 'It’s odd –', 0, 19), (183, 0, 'a movie about Germany', 0, 20), (184, 0, 'spoken in English, almost', 0, 21), (185, 0, 'seems insensitive for its', 0, 22), (186, 0, 'sensitive subject.', 0, 23), (187, 0, 'Some historical inaccuracies', 0, 24), (188, 0, 'yield understanding,', 0, 25), (189, 0, 'such as language –', 0, 26), (190, 0, 'but are they ever good?', 0, 27), (191, 0, 'And they try to', 0, 28), (192, 0, 'make up for it', 0, 29), (193, 0, 'with light German accents!', 0, 30), (194, 0, 'The first thing I realized', 0, 31), (195, 0, 'when those Families stepped off the train', 0, 32), (196, 0, 'was that there were no', 0, 33), (197, 0, 'women and children in Sobibor.', 0, 34), (198, 0, 'As plots for escape were made,', 0, 35), (199, 0, 'collaboration between separate groups heightened.', 0, 36), (200, 0, 'They understood the situation,', 0, 37), (201, 0, 'only together would they escape the camp:', 0, 38), (202, 0, 'Sasha and Leon received intel,', 0, 39), (203, 0, 'they must act now, now!', 0, 40), (204, 0, 'the revelation of the plan yields to', 0, 41), (205, 0, 'leaving the next day-', 0, 42), (206, 0, 'One by one, the', 0, 43), (207, 0, 'guards began to vanish.', 0, 44), (208, 0, 'the monsters became hunted,', 0, 45), (209, 0, 'was that ever expected?', 0, 46), (210, 0, 'I can only imagine their thoughts-', 0, 47), (211, 0, 'when will guards become', 0, 48), (212, 0, 'suspicious?', 0, 49), (213, 0, 'That their fellow', 0, 50), (214, 0, 'ss men are gone.', 0, 51), (215, 0, 'Our Fellow Jewish people', 0, 52), (216, 0, 'cannot believe the situation - we cannot believe it!', 0, 53), (217, 0, 'We are not', 0, 54), (218, 0, 'killers.', 0, 55), (219, 0, 'But we must kill', 0, 56), (220, 0, 'though, to survive.', 0, 57), (221, 0, 'This is', 0, 58), (222, 0, 'Our only chance.', 0, 59), (223, 0, 'The first thing I realized', 0, 60), (224, 0, 'when those Families stepped off the train', 0, 61), (225, 0, 'was that there were no', 0, 62), (226, 0, 'women and children in Sobibor.', 0, 63), (227, 0, 'Artist Statement:', 0, 64), (228, 0, 'When writing the poem we were thinking about the horrific atrocities that were committed during the holocaust.', 0, 65), (229, 0, 'We were not there to fully understand what happened, but to honor the people who died we decided to capitalize certain words to honor Jewish people.', 0, 66), (230, 0, 'We also decided to lower case any nazi or german terms because of horrific acts they commited.', 0, 67), (231, 0, 'We also tried to emphasize and understand the emotional situation of the imprisoned Jewish people.', 0, 68), (232, 0, 'Again, we cannot completely understand the complexity of the situation because we were not there, but we wanted to portray what we saw in the movie and how the actors expressed that it was morally difficult for the Jewish prisoners to kill other humans in order to free themselves from the camp.', 0, 69), (233, 0, 'We also noticed in the movie that there were not a lot of women and children stepping off the train into the camp.', 0, 70), (234, 0, 'It felt sad and gave us a sense of impending doom because we knew that the overwhelming majority of these women and children were going to die.', 0, 71), (235, 0, 'The fact that they visibly had no idea made the situation somehow even sadder.', 0, 72), (236, 0, 'We decided to repeat this stanza and end the poem with it because it was one of the saddest times of the movie to us, because we knew in that moment all the terrible things that were going to occur to these people.', 0, 73), (237, 0, 'It’s also important to mention that there were some women and children in Sobibor, just not many.', 0, 74), (238, 0, 'However, at this point in the story that we saw them getting off the trains, we hadn''t been introduced to any yet.', 0, 75), (239, 0, 'In conclusion, the impact of that scene still stays with us because most of the women and children were killed unless they had a trade or were older boys.', 0, 76), (240, 0, 'Created with an evaluation copy of Aspose.', 0, 77), (241, 0, 'Words.', 0, 78), (242, 0, 'To discover the full versions of our APIs please visit: https://products.aspose.com/words/', 0, 79), (243, 0, 'Evaluation Only.', 0, 0), (244, 0, 'Created with Aspose.', 0, 1), (245, 0, 'Words.', 0, 2), (246, 0, 'Copyright 2003-2021 Aspose Pty Ltd.', 0, 3), (247, 0, 'Escape from Sobibor', 0, 4), (248, 0, '1942 was the year', 0, 5), (249, 0, '<NAME> began', 0, 6), (250, 0, 'the atrocity that spoke', 0, 7), (251, 0, 'for generations to come:', 0, 8), (252, 0, 'Operation Reinhard.', 0, 9), (253, 0, 'camps scattered throughout', 0, 10), (254, 0, 'Eastern Poland, ready', 0, 11), (255, 0, 'to commit further genocide.', 0, 12), (256, 0, 'As was the case with much', 0, 13), (257, 0, 'of Nazi Germany, that which', 0, 14), (258, 0, 'was the most secretive became', 0, 15), (259, 0, 'the most famous,', 0, 16), (260, 0, 'And the same can be said', 0, 17), (261, 0, 'for Sobibor.', 0, 18), (262, 0, 'It’s odd –', 0, 19), (263, 0, 'a movie about Germany', 0, 20), (264, 0, 'spoken in English, almost', 0, 21), (265, 0, 'seems insensitive for its', 0, 22), (266, 0, 'sensitive subject.', 0, 23), (267, 0, 'Some historical inaccuracies', 0, 24), (268, 0, 'yield understanding,', 0, 25), (269, 0, 'such as language –', 0, 26), (270, 0, 'but are they ever good?', 0, 27), (271, 0, 'And they try to', 0, 28), (272, 0, 'make up for it', 0, 29), (273, 0, 'with light German accents!', 0, 30), (274, 0, 'The first thing I realized', 0, 31), (275, 0, 'when those Families stepped off the train', 0, 32), (276, 0, 'was that there were no', 0, 33), (277, 0, 'women and children in Sobibor.', 0, 34), (278, 0, 'As plots for escape were made,', 0, 35), (279, 0, 'collaboration between separate groups heightened.', 0, 36), (280, 0, 'They understood the situation,', 0, 37), (281, 0, 'only together would they escape the camp:', 0, 38), (282, 0, 'Sasha and Leon received intel,', 0, 39), (283, 0, 'they must act now, now!', 0, 40), (284, 0, 'the revelation of the plan yields to', 0, 41), (285, 0, 'leaving the next day-', 0, 42), (286, 0, 'One by one, the', 0, 43), (287, 0, 'guards began to vanish.', 0, 44), (288, 0, 'the monsters became hunted,', 0, 45), (289, 0, 'was that ever expected?', 0, 46), (290, 0, 'I can only imagine their thoughts-', 0, 47), (291, 0, 'when will guards become', 0, 48), (292, 0, 'suspicious?', 0, 49), (293, 0, 'That their fellow', 0, 50), (294, 0, 'ss men are gone.', 0, 51), (295, 0, 'Our Fellow Jewish people', 0, 52), (296, 0, 'cannot believe the situation - we cannot believe it!', 0, 53), (297, 0, 'We are not', 0, 54), (298, 0, 'killers.', 0, 55), (299, 0, 'But we must kill', 0, 56), (300, 0, 'though, to survive.', 0, 57), (301, 0, 'This is', 0, 58), (302, 0, 'Our only chance.', 0, 59), (303, 0, 'The first thing I realized', 0, 60), (304, 0, 'when those Families stepped off the train', 0, 61), (305, 0, 'was that there were no', 0, 62), (306, 0, 'women and children in Sobibor.', 0, 63), (307, 0, 'Artist Statement:', 0, 64), (308, 0, 'When writing the poem we were thinking about the horrific atrocities that were committed during the holocaust.', 0, 65), (309, 0, 'We were not there to fully understand what happened, but to honor the people who died we decided to capitalize certain words to honor Jewish people.', 0, 66), (310, 0, 'We also decided to lower case any nazi or german terms because of horrific acts they commited.', 0, 67), (311, 0, 'We also tried to emphasize and understand the emotional situation of the imprisoned Jewish people.', 0, 68), (312, 0, 'Again, we cannot completely understand the complexity of the situation because we were not there, but we wanted to portray what we saw in the movie and how the actors expressed that it was morally difficult for the Jewish prisoners to kill other humans in order to free themselves from the camp.', 0, 69), (313, 0, 'We also noticed in the movie that there were not a lot of women and children stepping off the train into the camp.', 0, 70), (314, 0, 'It felt sad and gave us a sense of impending doom because we knew that the overwhelming majority of these women and children were going to die.', 0, 71), (315, 0, 'The fact that they visibly had no idea made the situation somehow even sadder.', 0, 72), (316, 0, 'We decided to repeat this stanza and end the poem with it because it was one of the saddest times of the movie to us, because we knew in that moment all the terrible things that were going to occur to these people.', 0, 73), (317, 0, 'It’s also important to mention that there were some women and children in Sobibor, just not many.', 0, 74), (318, 0, 'However, at this point in the story that we saw them getting off the trains, we hadn''t been introduced to any yet.', 0, 75), (319, 0, 'In conclusion, the impact of that scene still stays with us because most of the women and children were killed unless they had a trade or were older boys.', 0, 76), (320, 0, 'Created with an evaluation copy of Aspose.', 0, 77), (321, 0, 'Words.', 0, 78), (322, 0, 'To discover the full versions of our APIs please visit: https://products.aspose.com/words/', 0, 79), (323, 0, 'Evaluation Only.', 0, 0), (324, 0, 'Created with Aspose.', 0, 1), (325, 0, 'Words.', 0, 2), (326, 0, 'Copyright 2003-2021 Aspose Pty Ltd.', 0, 3), (327, 0, 'Escape from Sobibor', 0, 4), (328, 0, '1942 was the year', 0, 5), (329, 0, '<NAME> began', 0, 6), (330, 0, 'the atrocity that spoke', 0, 7), (331, 0, 'for generations to come:', 0, 8), (332, 0, 'Operation Reinhard.', 0, 9), (333, 0, 'camps scattered throughout', 0, 10), (334, 0, 'Eastern Poland, ready', 0, 11), (335, 0, 'to commit further genocide.', 0, 12), (336, 0, 'As was the case with much', 0, 13), (337, 0, 'of Nazi Germany, that which', 0, 14), (338, 0, 'was the most secretive became', 0, 15), (339, 0, 'the most famous,', 0, 16), (340, 0, 'And the same can be said', 0, 17), (341, 0, 'for Sobibor.', 0, 18), (342, 0, 'It’s odd –', 0, 19), (343, 0, 'a movie about Germany', 0, 20), (344, 0, 'spoken in English, almost', 0, 21), (345, 0, 'seems insensitive for its', 0, 22), (346, 0, 'sensitive subject.', 0, 23), (347, 0, 'Some historical inaccuracies', 0, 24), (348, 0, 'yield understanding,', 0, 25), (349, 0, 'such as language –', 0, 26), (350, 0, 'but are they ever good?', 0, 27), (351, 0, 'And they try to', 0, 28), (352, 0, 'make up for it', 0, 29), (353, 0, 'with light German accents!', 0, 30), (354, 0, 'The first thing I realized', 0, 31), (355, 0, 'when those Families stepped off the train', 0, 32), (356, 0, 'was that there were no', 0, 33), (357, 0, 'women and children in Sobibor.', 0, 34), (358, 0, 'As plots for escape were made,', 0, 35), (359, 0, 'collaboration between separate groups heightened.', 0, 36), (360, 0, 'They understood the situation,', 0, 37), (361, 0, 'only together would they escape the camp:', 0, 38), (362, 0, 'Sasha and Leon received intel,', 0, 39), (363, 0, 'they must act now, now!', 0, 40), (364, 0, 'the revelation of the plan yields to', 0, 41), (365, 0, 'leaving the next day-', 0, 42), (366, 0, 'One by one, the', 0, 43), (367, 0, 'guards began to vanish.', 0, 44), (368, 0, 'the monsters became hunted,', 0, 45), (369, 0, 'was that ever expected?', 0, 46), (370, 0, 'I can only imagine their thoughts-', 0, 47), (371, 0, 'when will guards become', 0, 48), (372, 0, 'suspicious?', 0, 49), (373, 0, 'That their fellow', 0, 50), (374, 0, 'ss men are gone.', 0, 51), (375, 0, 'Our Fellow Jewish people', 0, 52), (376, 0, 'cannot believe the situation - we cannot believe it!', 0, 53), (377, 0, 'We are not', 0, 54), (378, 0, 'killers.', 0, 55), (379, 0, 'But we must kill', 0, 56), (380, 0, 'though, to survive.', 0, 57), (381, 0, 'This is', 0, 58), (382, 0, 'Our only chance.', 0, 59), (383, 0, 'The first thing I realized', 0, 60), (384, 0, 'when those Families stepped off the train', 0, 61), (385, 0, 'was that there were no', 0, 62), (386, 0, 'women and children in Sobibor.', 0, 63), (387, 0, 'Artist Statement:', 0, 64), (388, 0, 'When writing the poem we were thinking about the horrific atrocities that were committed during the holocaust.', 0, 65), (389, 0, 'We were not there to fully understand what happened, but to honor the people who died we decided to capitalize certain words to honor Jewish people.', 0, 66), (390, 0, 'We also decided to lower case any nazi or german terms because of horrific acts they commited.', 0, 67), (391, 0, 'We also tried to emphasize and understand the emotional situation of the imprisoned Jewish people.', 0, 68), (392, 0, 'Again, we cannot completely understand the complexity of the situation because we were not there, but we wanted to portray what we saw in the movie and how the actors expressed that it was morally difficult for the Jewish prisoners to kill other humans in order to free themselves from the camp.', 0, 69), (393, 0, 'We also noticed in the movie that there were not a lot of women and children stepping off the train into the camp.', 0, 70), (394, 0, 'It felt sad and gave us a sense of impending doom because we knew that the overwhelming majority of these women and children were going to die.', 0, 71), (395, 0, 'The fact that they visibly had no idea made the situation somehow even sadder.', 0, 72), (396, 0, 'We decided to repeat this stanza and end the poem with it because it was one of the saddest times of the movie to us, because we knew in that moment all the terrible things that were going to occur to these people.', 0, 73), (397, 0, 'It’s also important to mention that there were some women and children in Sobibor, just not many.', 0, 74), (398, 0, 'However, at this point in the story that we saw them getting off the trains, we hadn''t been introduced to any yet.', 0, 75), (399, 0, 'In conclusion, the impact of that scene still stays with us because most of the women and children were killed unless they had a trade or were older boys.', 0, 76), (400, 0, 'Created with an evaluation copy of Aspose.', 0, 77), (401, 0, 'Words.', 0, 78), (402, 0, 'To discover the full versions of our APIs please visit: https://products.aspose.com/words/', 0, 79); -- END TABLE sentences
# get started with new system python manage.py syncdb --settings=app.settings_my python manage.py migrate home --settings=app.settings_my # create new package python manage.py schemamigration home --initial python manage.py migrate home # updates python manage.py schemamigration home --auto python manage.py migrate home # fake migrations up to a point python manage.py migrate home --fake 0001 # fake rollback to 0th migration python manage.py migrate home zero --fake # not sure what these do python manage.py convert_to_south home --delete-ghost-migrations python manage.py schemamigration home --auto
CREATE OR REPLACE ALGORITHM = UNDEFINED VIEW hic_covid.movement_export AS SELECT 'NIHR Leicester Biomedical Research Centre' AS BRC, 'RWE' AS Organisation, d.participant_identifier AS Subject, COALESCE(t.spell_id, '') AS spell_id, COALESCE(t.transfer_datetime, '') AS start_datetime, COALESCE(t.transfer_type, '') AS start_type, COALESCE(t2.transfer_datetime, '') AS end_datetime, COALESCE(t2.transfer_type, '') AS end_type, COALESCE(t.hospital, '') AS hospital, COALESCE(t.ward_code, '') AS ward_code, COALESCE(t.ward_name, '') AS ward_name FROM hic_covid.transfer t JOIN hic_covid.transfer t2 ON t2.spell_id = t.spell_id AND ( t2.transfer_datetime = ( SELECT min(t3.transfer_datetime) FROM hic_covid.transfer t3 WHERE t3.spell_id = t.spell_id AND t3.transfer_datetime > t.transfer_datetime ) ) JOIN hic_covid.demographics_filtered d ON d.uhl_system_number = t.uhl_system_number
<reponame>nikita-baliassniy/library<filename>src/main/resources/db/migration/V1__init.sql BEGIN; DROP SCHEMA IF EXISTS hiber; CREATE SCHEMA hiber; SET search_path TO hiber,public; DROP TABLE IF EXISTS books CASCADE; CREATE TABLE books ( id BIGSERIAL PRIMARY KEY, -- info_id BIGSERIAL NOT NULL REFERENCES books_info (id), -- storage_id BIGSERIAL NOT NULL REFERENCES books_storage (id), title VARCHAR(255) NOT NULL, price NUMERIC(8, 2), description TEXT, year_of_publish INT, discount INTEGER default 0, editors_advice BOOLEAN default false, created_at TIMESTAMP default current_timestamp, updated_at TIMESTAMP default current_timestamp ); CREATE TABLE books_info ( id BIGSERIAL PRIMARY KEY, book_id BIGINT NOT NULL REFERENCES books (id), size INT NOT NULL, score NUMERIC(2, 1), age_recommendation INT ); CREATE TABLE books_storage ( id BIGSERIAL PRIMARY KEY, book_id BIGINT NOT NULL REFERENCES books (id), link_cover VARCHAR(255), link_fb2 VARCHAR(255), link_pdf VARCHAR(255), link_epub VARCHAR(255), link_audio VARCHAR(255) ); CREATE TABLE authors ( id BIGSERIAL PRIMARY KEY, name VARCHAR(255) NOT NULL, date_of_birth DATE, biography TEXT, country VARCHAR(50) ); CREATE TABLE books_authors ( book_id BIGINT NOT NULL REFERENCES books (id), author_id BIGINT NOT NULL REFERENCES authors (id), PRIMARY KEY (book_id, author_id) ); CREATE TABLE genres ( id BIGSERIAL PRIMARY KEY, name VARCHAR(255) NOT NULL ); CREATE TABLE books_genres ( book_id BIGINT NOT NULL REFERENCES books (id), genre_id BIGINT NOT NULL REFERENCES genres (id), PRIMARY KEY (book_id, genre_id) ); CREATE TABLE users ( id BIGSERIAL PRIMARY KEY, -- username VARCHAR(50) NOT NULL UNIQUE, email VARCHAR(50) NOT NULL UNIQUE, password VARCHAR(80) NOT NULL, created_at TIMESTAMP default current_timestamp, updated_at TIMESTAMP default current_timestamp ); CREATE TABLE users_info ( id BIGSERIAL PRIMARY KEY, user_id BIGINT NOT NULL REFERENCES users (id), name VARCHAR(255), phone VARCHAR(15), discount INT, address VARCHAR(255), date_of_birth DATE ); CREATE TABLE roles ( id BIGSERIAL PRIMARY KEY, name VARCHAR(50) NOT NULL UNIQUE, created_at TIMESTAMP default current_timestamp, updated_at TIMESTAMP default current_timestamp ); CREATE TABLE users_roles ( user_id BIGINT NOT NULL REFERENCES users (id), role_id BIGINT NOT NULL REFERENCES roles (id), PRIMARY KEY (user_id, role_id) ); CREATE TABLE comments ( id BIGSERIAL PRIMARY KEY, book_id BIGINT NOT NULL REFERENCES books (id), text VARCHAR(2000), user_id BIGINT NOT NULL REFERENCES users (id), score NUMERIC(1, 0), created_at TIMESTAMP default current_timestamp ); CREATE TABLE orders ( id BIGSERIAL PRIMARY KEY, owner_id BIGINT NOT NULL REFERENCES users (id), total_price NUMERIC(8, 2), address VARCHAR(255), created_at TIMESTAMP default current_timestamp, updated_at TIMESTAMP default current_timestamp ); CREATE TABLE order_items ( id BIGSERIAL PRIMARY KEY, order_id BIGINT REFERENCES orders (id), book_id BIGINT REFERENCES books (id), title VARCHAR(255), quantity INT, price_per_book NUMERIC(8, 2), price NUMERIC(8, 2), created_at TIMESTAMP default current_timestamp, updated_at TIMESTAMP default current_timestamp ); CREATE TABLE carts ( id UUID PRIMARY KEY, price NUMERIC(8, 2) ); CREATE TABLE cart_items ( id BIGSERIAL PRIMARY KEY, cart_id UUID REFERENCES carts (id), book_id BIGINT REFERENCES books (id), title VARCHAR(255), quantity INT, price_per_book NUMERIC(8, 2), price NUMERIC(8, 2), created_at TIMESTAMP default current_timestamp, updated_at TIMESTAMP default current_timestamp ); CREATE TABLE newsletter ( id BIGSERIAL PRIMARY KEY, user_id BIGSERIAL REFERENCES users (id) ); INSERT INTO users (email, password) VALUES ('<EMAIL>', <PASSWORD>'), -- 111 ('<EMAIL>', '$2a$12$aRjLVCKZHGpQ26dm7zZfjOwDXq1MUA/dEGHt67VbueAnLMBnwP5G.'), --222 ('<EMAIL>', '$2a$12$aRjLVCKZHGpQ26dm7zZfjOwDXq1MUA/dEGHt67VbueAnLMBnwP5G.'), --222 ('<EMAIL>', '$2a$12$aRjLVCKZHGpQ26dm7zZfjOwDXq1MUA/dEGHt67VbueAnLMBnwP5G.'); INSERT INTO users_info (user_id, name, phone, discount, address, date_of_birth) VALUES (1, 'John', '89991234567', 10, 'Москва, ул. не знаю', PARSEDATETIME('10.05.1981', 'dd.MM.yyyy')), (2, 'Vova', '89992223344', 20, 'Москва, Кремль', PARSEDATETIME('07.10.1952', 'dd.MM.yyyy')), (3, 'Carl', '89992223344', 30, '<NAME>', PARSEDATETIME('07.10.1952', 'dd.MM.yyyy')), (4, 'Bob', '89992223311', 20, '<NAME>', PARSEDATETIME('12.11.1982', 'dd.MM.yyyy')); INSERT INTO roles (name) VALUES ('ROLE_ADMIN'), ('ROLE_MANAGER'), ('ROLE_USER'); INSERT INTO users_roles (user_id, role_id) VALUES (1, 1), (2, 3), (3, 2), (4, 3); INSERT INTO books (title, price, description, year_of_publish) VALUES ('Приключения Т<NAME>', 229.90, 'Вышедшая в 1876 году повесть <NAME> о приключениях мальчика, живущего в небольшом американском городке Сент-Питерсберг (Санкт-Петербург) в штате Миссури. Действие в книге происходит до событий Гражданской войны в США, при этом ряд моментов в этой книге и её продолжении, «Приключениях Гекльберри Финна», а также обстоятельства жизни автора, во многом легшие в основу книг, уверенно указывают на первую половину 1840-х годов.', 2018), ('<NAME> и философский камень', 324.90, 'Первый роман в серии книг про юного волшебника Гарри Поттера, написанный Дж. <NAME>. В нём рассказывается, как Гарри узнает, что он волшебник, встречает близких друзей и немало врагов в Школе Чародейства и Волшебства «Хогвартс», а также с помощью своих друзей пресекает попытку возвращения злого волшебника Волан-де-Морта, который убил родителей Гарри', 2020), ('Приключения Шерлока Холмса', 422.90, 'Сборник из 12 детективных рассказов, созданных Артуром Конаном Дойлом.', 2015), ('Портрет <NAME>', 232.90, 'Единственный роман Оскара Уайльда. В жанровом отношении представляет смесь романа воспитания с моральной притчей; оказался самым успешным произведением Уайльда, экранизировался в разных странах мира более 30 раз. Существует в трёх версиях — журнальный вариант в тринадцати главах, опубликованный в Lippincott’s Monthly Magazine в июле 1890 года, подвергшийся сокращениям, сделанными редактором журнала; первое книжное издание в двадцати главах (апрель 1891 года), в которое автором были добавлены главы III, V, XV—XVIII, а последняя глава разделена на две, ставшие главами XIX и XX и «бесцензурная» версия романа в тринадцати главах, представляющая собой первоначальную оригинальную машинопись Уайльда, впервые опубликованную в 2011 году Издательством Гарвардского университета. В основе всех изданий на английском языке и переводов лежит книжная версия 1891 года.', 2012), ('Последнее желание', 250.00, 'Книгой «Последнее желание» начинается один из самых популярных циклов жанра фэнтези. В нее включены семь историй о начале пути ведьмака Геральта из Ривии, его друзьях и возлюбленной, нелегкой судьбе, работе по уничтожению нечисти и врагов мира, волшебном мире, населенном колдунами, эльфами, чародейками, гномами, оборотнями, драконами и, конечно же, людьми с их пороками и добродетелями. Начав читать произведение, вы познакомитесь с удивительным охотником за нечистью, прошедшим через невероятные испытания и пережившим ужасные потери. Геральт – это воин, ведущий непрерывную борьбу с силами зла. А рядом с ним всегда находится его верный трубадур Лютик, слагающий баллады о приключениях, подвигах и прекрасных дамах…', 2016), ('Меч предназначения', 300.00, 'Ведьмак – это мастер меча и мэтр волшебства, ведущий непрерывную войну с кровожадными монстрами, которые угрожают покою сказочной страны. «Ведьмак» – это мир на острие меча, ошеломляющее действие, незабываемые ситуации, великолепные боевые сцены. Читайте продолжение саги о Ведьмаке!', 2009), ('<NAME>', 340.00, 'Цинтра захвачено Нильфгаардской империей. Всюду пламя и разрушения, сотни погибших. Прекрасное королевство пало. Наследнице Цири чудом удается спастись. Напуганную, потерявшую близких и дом девочку Геральт доставляет в убежище ведьмаков. Неожиданно для всех у принцессы открываются магические способности. Чтобы понять их природу, Геральт обращается за помощью к чародейке. Однако она советует ведьмаку призвать свою бывшую возлюбленную Йеннифэр. Ибо только она сможет научить девочку пользоваться ее даром…', 2009), ('Час презрения', 330.00, 'Йеннифер и княжна Цирилла отправились на остров Танедд, чтобы принять участие в Чародейском Сборе. Чародейка не только хочет обсудить судьбы мира, но и устроить Цири в школу Аретузе. Геральт сопровождает их на всем пути странствия, распространяя слух о гибели Цири во время нападения на Цинтру. Все планы рушит мятеж чародеев, послуживший началу новой войны. Геральту чудом удается спастись, в Цири перемещается в незнакомое место… Удастся ли главным героям выжить в новом мире и найти друг друга? Чья сторона одержит победу в войне между чародеями и людьми? Об этом читайте в новой части цикла «Ведьмак».', 2009), ('Крещение огнем', 340.00, 'Нильфгаард продолжает наступление на северные королевства. Тем временем Геральт, восстановивший силы у дриад после восстания на Таннеде, отправляется на поиски Цири. В этом нелегком путешествии к ведьмаку присоединяются его старые знакомцы: трубадур Лютик, лучница Мария Барринг, рыцарь Кагыр и вампир <NAME>. На спасение Цири отправляется и Йеннифер, которая смогла сбежать из плена. Сама Цири под именем Фалька стала разбойничать в банде под названием Крысы. Однако за бандой уже следит безжалостный охотник за головами Лео Бонарт…', 2014), ('Башня ласточки', 245.00, 'Все окончательно перепуталось, интриги сплелись в тугой клубок, распутать который никому не по силам. Идет война, гибнут люди и нелюди. Избранные чародеи решили, что они в праве вершить судьбы мира. Йенифер попала в серьезную переделку, и вряд ли ее спасет даже ее хладнокровие и цинизм. Не лучше дела обстоят у Геральда и Цири. К чему приведет этот смертоносный круговорот событий?', 2014), ('Владычица озера', 290.00, 'Книга «Владычица Озера» – это потрясающее завершение одной из самых популярных фэнтези-саг современности. Читателю откроются тайны прошлого и настоящего, а главные герои смогут обрести свое счастье. Цири найдет Башню Ласточки, которую хочет в своих целях использовать Народ Ольх. При попытке бегства Цири потеряется в параллельных мирах… Объединенные Королевства Севера объединят силы и дадут бой Нильфгаарду. Геральт со своими друзьями выйдет в сражение против Вильгефорца. Эта схватка обернется невосполнимыми потерями сил добра…', 2014), ('Азазель', 300.00, 'Погожим майским днем 1876 года в Александровском саду происходит неслыханное. На глазах у изумленной публики симпатичный молодой человек пускает себе пулю в висок. Вскоре выясняется: погибший – некто <NAME>, студент юридического факультета. В предсмертной записке Кокорин завещает все свое немалое имущество баронессе Эстер, подданной Британии, которая занимается образованием и воспитанием сирот. Все это кажется очень странным чиновнику четырнадцатого класса Эрасту Петровичу Фандорину. С одобрения своего начальника, пристава Сыскного управления Ксаверия Грушина, Фандорин берется за расследование гибели студента. Вскоре он выясняет, что в тот день свести счеты с жизнью тем же способом пытался еще один человек. Что или кто связывает этих двоих? И главное, кто заставляет молодых людей играть в зловещую рулетку со смертью?..', 2010), ('Турецкий гамбит', 290.00, '1877 год, Российская империя участвует в жесточайшей русско-турецкой войне. Юная девушка <NAME>, петербургская красавица передовых взглядов и почти нигилистка, отправляется в зону боевых действий к жениху. Началось путешествие как веселое приключение, а затем Варвара вдруг остается одна в сомнительной придорожной корчме, и случайные попутчики даже играют на нее в карты… О приключениях Варвары Суворовой на Балканах, оказавшейся в самом центре интригующих событий и вместе с тайным агентом Российской империи Эрастом Фандориным разоблачившей обширный шпионский заговор, читайте в романе «Турецкий гамбит».', 2010), ('Левиафан', 400.00, '15 марта 1878 года на рю де Гренель в Париже совершено страшное убийство. Убит лорд Литтлби и девять его слуг. Преступник не взял из дома ничего, кроме статуэтки бога Шивы и цветного платка. Расследование приводит комиссара полиции Гоша на роскошный корабль «Левиафан», плывущий в Калькутту. Убийца на корабле, но кто это? Среди подозреваемых, каждый из которых прячет свою тайну, английский аристократ, офицер Японской армии, беременная жена швейцарского банковского служащего и молодой русский дипломат с седыми висками…', 2010), ('<NAME>', 340.00, '<NAME> «<NAME>» – это добротный детектив, приятный для не обременяющего мозг чтения и не раздражающий, в отличие от большинства его современных собратьев, глупостью или пошлостью. В этой книге описывается расследование обстоятельств смерти всенародного любимца, генерала Соболева, сыщиком Эрастом Фандориным, а также приводится развернутая история превращения мальчика Ахимаса в закоренелого негодяя…', 2010), ('Особые поручения', 320.00, 'В Москве орудует шайка мошенников «Пиковый Валет». Они нахальны, изобретательны и уверены в своей безнаказанности. Они проворачивают чрезвычайно дерзкие аферы и бесследно исчезают с места преступления. Но за дело берется разоблачитель заговоров, мастер по тайным расследованиям, кавалер Орденов Хризантем, специалист по ведению деликатных и тайных дел <NAME>.', 2010), ('Статский советник', 300.00, '1891 год. Брожение в умах, революционные идеи популярны среди молодежи, повсюду возникают революционные кружки. Но не для всех это только мода. Группа, называющая себя «Б. Г.», работает точно и дерзко. Убит сибирский генерал-губернатор, убийца – человек, предъявивший документы на имя Эраста Фандорина. <NAME> принимает вызов и берется за расследование. Кто стоит за буквами «Б. Г.»? Что сделало их террористами? Ради чего они совершают свои кровавые преступления?', 2010), ('Коронация, или Последний из романов', 310.00, 'Действие этого романа происходит в 1896 году, накануне коронации императора Николая II. Похищен Михаил, четырёхлетний сын великого князя <NAME>. Похититель, называющий себя «<NAME>», требует бриллиант «<NAME>», которым украшен императорский скипетр, в обмен на принца. Если сделка не состоится, ребёнок будет возвращён родителям по частям. Но без скипетра не может состояться коронация. <NAME> берётся спасти честь монархии.', 2010), ('Любовник смерти', 300.00, 'Жила себе красавица с отцом и матерью. Вот и возраст подошел, сосватали ее. Но не суждено было счастью долго продлиться. В день свадьбы умер жених. Похоронили, убивалась невеста сильно. Погоревала, опять замуж собралась. Но перед венчанием и второй жених скончался. С кем бы ни жила девушка после, все умирали. Вот прозвали ее не иначе, как Смерть. Но недостатка в ухажерах она не испытывала. Вот и теперь Князь приударил, любовником Смерти стал. Долго ли ему землю топтать осталось?', 2010), ('Алмазная колесница', 400.00, '«Алмазная колесница» издана двухтомником, причем оба тома помещаются под одной обложкой. В первой книге «Ловец стрекоз» читатель следит за двумя героями – Хорошим (железнодорожный чиновник Фандорин) и Плохим (японский супершпион Рыбников). Действуют они втайне друг от друга на фоне русско-японской войны 1905 года и предреволюционной смуты. Плохой желает взорвать железную дорогу и устроить мятеж в первопрестольной, Хороший – помешать злодейским планам. Вторая книга «Между строк» повествует о приключениях Фандорина в Японии 1878 года, его невооруженных конфликтах с самураями и ниндзя, любви к куртизанке и прослушивании курса вербовочных лекций на тему «Убийцы и воры – буддоизбранные счастливчики».', 2010), ('Ангелы и демоны', 360.00, 'Контейнер с опасной антиматерией похищен. И за этим преступлением, по мнению профессора Роберта Лэнгдона, стоит тайный оккультный орден иллюминатов, восставший из небытия. Путем долгих вычислений Лэнгдону удается узнать, что штаб-квартира ордена находится в Ватикане. Теперь ему предстоит как можно скорее приехать в Рим и заняться поисками контейнера, чтобы спасти мир. Но для этого нужно будет разгадать множество сложных загадок. К счастью, профессору Гарвардского университета это под силу.', 2013), ('Код да Винчи', 300.00, 'Страшное преступление совершается в стенах Лувра: куратор <NAME> жестоко убит, на его обнаженном теле начертаны странные знаки, а рядом с его трупом виднеются пурпурные буквы и цифры. В качестве помощника в расследовании полиция приглашает профессора Гарвардского университета по истории культуры и религии Роберта Лэнгдона. Как вскоре узнает Лэнгдон, ключ к раскрытию тайны убийства лежит в картинах Леонардо да Винчи, и только ему под силу разгадать эти сложнейшие загадки. Вскоре профессор понимает, что дело об убийстве Соньера куда более запутанное, чем могло показаться на первый взгляд.', 2013), ('Происхождение', 450.00, '«Происхождение» – пятая книга американского писателя <NAME> о гарвардском профессоре, специалисте по религиозной символике Роберте Лэнгдоне. В этот раз все начинается с, возможно, одного из наиболее знаковых событий в истории: наконец-то стало известно, откуда произошло человечество. Футуролог <NAME>, совершивший невероятное открытие, был всего лишь в шаге от того, чтобы полностью изменить представление современников о мире. Однако его речи не суждено было прозвучать в стенах Музея Гуггенхайма. Ученого убили на глазах гостей. И начался хаос… Лэнгдона снова ждут опасные приключения: от побега из музея под градом пуль до поиска зашифрованных ключей, позволяющих встретиться лицом к лицу с открытием Кирша.', 2017), ('Унесенные ветром', 500.0, 'Согласно легенде, создание романа «Унесенные ветром» началось с того, как Маргарет Митчелл написала главную фразу последней главы: «Ни одного из любимых ею мужчин Скарлетт так и не смогла понять и вот – потеряла обоих». Последующая работа над произведением продолжалась около десяти лет и потребовала от писательницы огромной самоотдачи и напряженного труда. Стремясь проникнуть в самый дух эпохи, Митчелл кропотливо изучала историю родной Атланты, использовала газеты и журналы середины XIX века. На страницах ее рукописи оживали рассказы очевидцев Гражданской войны и семейные предания. Некоторые сцены Митчелл переписывала по четыре-пять раз, а что касается первой главы, писательницу удовлетворил лишь 60-й вариант! Роман, вышедший весной 1936 года, имел беспрецедентный успех и сразу побил все рекорды по популярности и тиражам во всей истории американской литературы. А одноименная экранизация с <NAME> и Кларком Гейблом в главных ролях завоевала 10 премий «Оскар» и стала одной из самых знаменитых лент в истории мирового кинематографа.', 2010), ('До встречи с тобой', 290.00, 'Лу Кларк знает, сколько шагов от автобусной остановки до ее дома. Она знает, что ей очень нравится работа в кафе и что, скорее всего, она не любит своего бойфренда Патрика. Но Лу не знает, что вот-вот потеряет свою работу и что в ближайшем будущем ей понадобятся все силы, чтобы преодолеть свалившиеся на нее проблемы. <NAME> знает, что сбивший его мотоциклист отнял у него желание жить. И он точно знает, что надо сделать, чтобы положить конец всему этому. Но он не знает, что Лу скоро ворвется в его мир буйством красок. И они оба не знают, что навсегда изменят жизнь друг друга. В первые месяцы после выхода в свет романа Джоджо Мойес «До встречи с тобой» было продано свыше полумиллиона экземпляров. Книга вошла в список бестселлеров «Нью-Йорк таймс», переведена на 31 язык. Права на ее экранизацию купила киностудия «Метро-Голдвин-Майер».', 2013), ('Селфи с судьбой', 280.00, 'В магазинчике «Народный промысел» в селе Сокольничьем найдена задушенной богатая дама. Она частенько наведывалась в село, щедро жертвовала на восстановление колокольни и пользовалась уважением. Преступник – шатавшийся поблизости пьянчужка – задержан по горячим следам… Профессор <NAME> приезжает в село, чтобы установить истину. У преподавателя физики странное хобби – он разгадывает преступления. На него вся надежда, ибо копать глубже никто не станет, дело закрыто. В Сокольничьем вокруг Ильи собирается странная компания: поэтесса с дредами; печальная красотка в мехах; развеселая парочка, занятая выкладыванием селфи в Интернет; экскурсоводша; явно что-то скрывающий чудаковатый парень; да еще лощеного вида джентльмен. Кто-то из них убил почтенную даму. Но кто? И зачем?..', 2017), ('С небес на землю', 330.00, 'Он ведет странную жизнь и, кажется, не слишком ею доволен. У него странная профессия, странные привычки, даже имя странное – Алекс Шан-Гирей!.. Издательство, в которое Алекса пригласили на работу, на первый взгляд кажется вполне мирным, уютным и процветающим. Все друг друга любят и заняты благородным делом – изданием книг. Все пойдет прахом как раз в тот день, когда в коридоре издательства обнаружится труп. Кто этот человек? Как он туда попал? Выходит, убил его один из тех самых милых и интеллигентных людей, занятых благородным делом?! И как докопаться до истины?! А докапываться придется, потому что Алексу тоже угрожает смертельная опасность – он увяз в давней тяжелой ненависти, совсем позабыл про любовь, потерялся по дороге. Да и враг, самый настоящий, реальный, хитрый и сильный, не дремлет!.. Ему во всем придется разбираться – в ненависти, в любви, во врагах и друзьях, ибо он не знает, кто друг, а кто враг! Ему придется вернуться с небес на землю, оглядеться по сторонам, перевести дыхание и понять, что здесь, на земле, все не так уж и плохо!..', 2011), ('Пес по имени Мани', 200.00, 'Трогательная история говорящего Лабрадора Мани, который оказался настоящим финансовым гением, в доступной форме открывает перед детьми и взрослыми секреты денег. Для широкого круга читателей.', 2017), ('Пора зрабатывать больше!', 240.00, 'Эта книга – пособие для достижения финансового благополучия. Ее написал автор нашумевшего бестселлера «Путь к финансовой свободе» <NAME>. Его советы помогут всем, кто желает добиться материальной независимости и взлететь по карьерной лестнице. Применить рекомендации на практике смогут и безработный, и владелец бизнеса, и работники по найму. Автор делится простыми и эффективными способами заработка, рассказывает о подводных камнях на пути к богатству, приводит множество секретов, которые помогут полюбить свою работу.', 2018), ('Ходячий замок', 390.00, 'Книги английской писательницы <NAME> настолько ярки, что так и просятся на экран. По ее бестселлеру «Ходячий замок» знаменитый мультипликатор <NAME> («Унесенные призраками»), обладатель «Золотого льва» – высшей награды Венецианского фестиваля, снял анимационный фильм, побивший в Японии рекорд кассовых сборов. …Софи живет в сказочной стране, где ведьмы и русалки, семимильные сапоги и говорящие собаки – обычное дело. Поэтому, когда на нее обрушивается ужасное проклятие коварной Болотной Ведьмы, Софи ничего не остается, как обратиться за помощью к таинственному чародею Хоулу, обитающему в Ходячем замке. Однако, чтобы освободиться от чар, Софи предстоит разгадать немало загадок и прожить в замке у Хоула гораздо дольше, чем она рассчитывала. А для этого нужно подружиться с огненным демоном, поймать падающую звезду, подслушать пение русалок, отыскать мандрагору и многое, многое другое.', 2009); INSERT INTO books_info (book_id, size, score, age_recommendation) VALUES (1, 240, 4.6, 6), (2, 260, 3.7, 6), (3, 710, 4.6, 16), (4, 270, 4.6, 16), (5, 310, 4.8, 16), (6, 380, 4.9, 16), (7, 330, 4.8, 16), (8, 360, 4.8, 16), (9, 380, 4.9, 16), (10, 490, 4.8, 16), (11, 590, 4.7, 16), (12, 230, 4.7, 16), (13, 210, 4.8, 16), (14, 250, 4.7, 16), (15, 340, 4.8, 16), (16, 160, 4.6, 16), (17, 310, 4.8, 16), (18, 380, 4.7, 16), (19, 300, 4.8, 16), (20, 690, 4.8, 16), (21, 670, 4.7, 18), (22, 560, 4.7, 16), (23, 530, 4.4, 16), (24, 780, 4.9, 18), (25, 410, 4.8, 16), (26, 280, 4.5, 16), (27, 290, 4.6, 16), (28, 170, 4.8, 12), (29, 310, 4.0, 16), (30, 280, 4.8, 12); INSERT INTO books_storage (book_id, link_cover, link_fb2, link_pdf, link_epub, link_audio) VALUES (1, 'storage_repo/cover/1.jpg', 'storage_repo/fb2/1.fb2', 'storage_repo/pdf/1.pdf', 'storage_repo/epub/1.epub', 'storage_repo/audio/1.mp3'), (2, 'storage_repo/cover/2.jpg', 'storage_repo/fb2/2.fb2', 'storage_repo/pdf/2.pdf', 'storage_repo/epub/2.epub', 'storage_repo/audio/2.mp3'), (3, 'storage_repo/cover/3.jpg', 'storage_repo/fb2/3.fb2', 'storage_repo/pdf/3.pdf', 'storage_repo/epub/3.epub', 'storage_repo/audio/3.mp3'), (4, 'storage_repo/cover/4.jpg', 'storage_repo/fb2/4.fb2', 'storage_repo/pdf/4.pdf', 'storage_repo/epub/4.epub', 'storage_repo/audio/4.mp3'), (5, 'storage_repo/cover/5.jpg', 'storage_repo/fb2/5.fb2', 'storage_repo/pdf/5.pdf', 'storage_repo/epub/5.epub', 'storage_repo/audio/3.mp3'), (6, 'storage_repo/cover/6.jpg', 'storage_repo/fb2/6.fb2', 'storage_repo/pdf/6.pdf', 'storage_repo/epub/6.epub', 'storage_repo/audio/3.mp3'), (7, 'storage_repo/cover/7.jpg', 'storage_repo/fb2/7.fb2', 'storage_repo/pdf/7.pdf', 'storage_repo/epub/7.epub', 'storage_repo/audio/3.mp3'), (8, 'storage_repo/cover/8.jpg', 'storage_repo/fb2/8.fb2', 'storage_repo/pdf/8.pdf', 'storage_repo/epub/8.epub', 'storage_repo/audio/3.mp3'), (9, 'storage_repo/cover/9.jpg', 'storage_repo/fb2/9.fb2', 'storage_repo/pdf/9.pdf', 'storage_repo/epub/9.epub', 'storage_repo/audio/3.mp3'), (10, 'storage_repo/cover/10.jpg', 'storage_repo/fb2/10.fb2', 'storage_repo/pdf/10.pdf', 'storage_repo/epub/10.epub', 'storage_repo/audio/3.mp3'), (11, 'storage_repo/cover/11.jpg', 'storage_repo/fb2/11.fb2', 'storage_repo/pdf/11.pdf', 'storage_repo/epub/11.epub', 'storage_repo/audio/3.mp3'), (12, 'storage_repo/cover/12.jpg', 'storage_repo/fb2/12.fb2', 'storage_repo/pdf/12.pdf', 'storage_repo/epub/12.epub', 'storage_repo/audio/3.mp3'), (13, 'storage_repo/cover/13.jpg', 'storage_repo/fb2/13.fb2', 'storage_repo/pdf/13.pdf', 'storage_repo/epub/13.epub', 'storage_repo/audio/3.mp3'), (14, 'storage_repo/cover/14.jpg', 'storage_repo/fb2/14.fb2', 'storage_repo/pdf/14.pdf', 'storage_repo/epub/14.epub', 'storage_repo/audio/3.mp3'), (15, 'storage_repo/cover/15.jpg', 'storage_repo/fb2/15.fb2', 'storage_repo/pdf/15.pdf', 'storage_repo/epub/15.epub', 'storage_repo/audio/3.mp3'), (16, 'storage_repo/cover/16.jpg', 'storage_repo/fb2/16.fb2', 'storage_repo/pdf/16.pdf', 'storage_repo/epub/16.epub', 'storage_repo/audio/3.mp3'), (17, 'storage_repo/cover/17.jpg', 'storage_repo/fb2/17.fb2', 'storage_repo/pdf/17.pdf', 'storage_repo/epub/17.epub', 'storage_repo/audio/3.mp3'), (18, 'storage_repo/cover/18.jpg', 'storage_repo/fb2/18.fb2', 'storage_repo/pdf/18.pdf', 'storage_repo/epub/18.epub', 'storage_repo/audio/3.mp3'), (19, 'storage_repo/cover/19.jpg', 'storage_repo/fb2/19.fb2', 'storage_repo/pdf/19.pdf', 'storage_repo/epub/19.epub', 'storage_repo/audio/3.mp3'), (20, 'storage_repo/cover/20.jpg', 'storage_repo/fb2/20.fb2', 'storage_repo/pdf/20.pdf', 'storage_repo/epub/20.epub', 'storage_repo/audio/3.mp3'), (21, 'storage_repo/cover/21.jpg', 'storage_repo/fb2/21.fb2', 'storage_repo/pdf/21.pdf', 'storage_repo/epub/21.epub', 'storage_repo/audio/3.mp3'), (22, 'storage_repo/cover/22.jpg', 'storage_repo/fb2/22.fb2', 'storage_repo/pdf/22.pdf', 'storage_repo/epub/22.epub', 'storage_repo/audio/3.mp3'), (23, 'storage_repo/cover/23.jpg', 'storage_repo/fb2/23.fb2', 'storage_repo/pdf/23.pdf', 'storage_repo/epub/23.epub', 'storage_repo/audio/3.mp3'), (24, 'storage_repo/cover/24.jpg', 'storage_repo/fb2/24.fb2', 'storage_repo/pdf/24.pdf', 'storage_repo/epub/24.epub', 'storage_repo/audio/3.mp3'), (25, 'storage_repo/cover/25.jpg', 'storage_repo/fb2/25.fb2', 'storage_repo/pdf/25.pdf', 'storage_repo/epub/25.epub', 'storage_repo/audio/3.mp3'), (26, 'storage_repo/cover/26.jpg', 'storage_repo/fb2/26.fb2', 'storage_repo/pdf/26.pdf', 'storage_repo/epub/26.epub', 'storage_repo/audio/3.mp3'), (27, 'storage_repo/cover/27.jpg', 'storage_repo/fb2/27.fb2', 'storage_repo/pdf/27.pdf', 'storage_repo/epub/27.epub', 'storage_repo/audio/3.mp3'), (28, 'storage_repo/cover/28.jpg', 'storage_repo/fb2/28.fb2', 'storage_repo/pdf/28.pdf', 'storage_repo/epub/28.epub', 'storage_repo/audio/3.mp3'), (29, 'storage_repo/cover/29.jpg', 'storage_repo/fb2/29.fb2', 'storage_repo/pdf/29.pdf', 'storage_repo/epub/29.epub', 'storage_repo/audio/3.mp3'), (30, 'storage_repo/cover/30.jpg', 'storage_repo/fb2/30.fb2', 'storage_repo/pdf/30.pdf', 'storage_repo/epub/30.epub', 'storage_repo/audio/3.mp3'); INSERT INTO comments (book_id, text, user_id, score) VALUES (1, 'Неплохая книга для детской аудитории. Во взрослом возрасте перечитывать уже не рекомендую.', 1, 3), (2, 'Детская сказочка про магию, исключительно для детей', 2, 3), (2, '<NAME> - это замечательно, всем рекомендую, если есть такие, кто еще не читал его.', 1, 5), (1, 'Не зашла, уж очень занудно', 2, 2), (4, 'Прекрасное классическое произведение, стиль Уайльда непревзойден.', 1, 5), (5, 'Одна из самых лучших частей саги о Ведьмаке, как по мне.', 1, 5), (3, 'Столкнулся с Шерлоком Холмсом уже в сознательном взрослом возрасте, показался слишком простым.', 1, 3), (28, 'Отличная книга для детей на сложные темы', 4, 5); INSERT INTO authors (name, date_of_birth, biography, country) VALUES ('<NAME>', '1835-11-30', 'Американский писатель, юморист, журналист и общественный деятель. Его творчество охватывает множество жанров — юмор, сатиру, философскую фантастику, публицистику и другие, и во всех этих жанрах он неизменно занимает позицию гуманиста и демократа. Уильям Фолкнер писал, что <NAME> был «первым по-настоящему американским писателем, и все мы с тех пор — его наследники», а Эрнест Хемингуэй считал, что вся современная американская литература вышла из одной книги <NAME>, которая называется «Приключения Гекльберри Финна». Из русских писателей о Марке Твене особенно тепло отзывались Максим Горький и Александр Куприн.', 'США'), ('<NAME>', '1965-07-31', 'Британская писательница, сценаристка и кинопродюсер, наиболее известная как автор серии романов о Гарри Поттере. Книги о Гарри Поттере получили несколько наград и были проданы в количестве более 500 миллионов экземпляров. Они стали самой продаваемой серией книг в истории и основой для серии фильмов, ставшей третьей по кассовому сбору серией фильмов в истории. <NAME> сама утверждала сценарии фильмов, а также вошла в состав продюсеров последних двух частей.', 'Великобритания'), ('Артур <NAME>', '1930-07-07', 'Английский писатель (по образованию врач) ирландского происхождения, автор многочисленных приключенческих, исторических, публицистических, фантастических и юмористических произведений. Создатель классических персонажей детективной, научно-фантастической и историко-приключенческой литературы: гениального сыщика Шерлока Холмса, эксцентричного профессора Челленджера, бравого кавалерийского офицера Жерара, благородного рыцаря сэра Найджела. Со второй половины 1910-х годов и до конца жизни — активный сторонник и пропагандист идей спиритуализма.', 'Великобритания'), ('<NAME>', '1854-10-16', 'Ирландский писатель и поэт. Один из самых известных драматургов позднего Викторианского периода, одна из ключевых фигур эстетизма и европейского модернизма.', 'Ирландия'), ('<NAME>', '1956-05-20', 'Русский писатель, учёный-японист, литературовед, переводчик, общественный деятель. Также публиковался под литературными псевдонимами <NAME> и Анатол<NAME>никин.', 'Россия'), ('<NAME>', '1964-06-22', 'Американский писатель, журналист, музыкант. Из-под его пера вышли такие бестселлеры, как «Ангелы и демоны», «Код да Винчи», «Утраченный символ» и «Инферно», рассказывающие о тайных обществах, символике, заговорах. Его первый роман «Цифровая крепость» посвящён деятельности Агентства национальной безопасности США.', 'США'), ('<NAME>', '1948-06-21', 'Польский писатель-фантаст и публицист, автор популярной фэнтези-саги «Ведьмак». Произведения Сапковского изданы на польском, чешском, русском, немецком, испанском, финском, литовском, французском, английском, португальском, болгарском, белорусском, итальянском, шведском, сербском, украинском и китайском языках. По заявлениям издателей, Сапковский входит в пятёрку самых издаваемых авторов Польши. Сам же писатель, как правило, не распространяется о тиражах своих книг.', 'Польша'), ('<NAME>', '1900-11-08', 'Американская писательница и журналистка, автор романа «Унесённые ветром».', 'США'), ('<NAME>', '1969-08-04', 'Английская романистка и журналистка, двукратная обладательница премии Ассоциации романтических новеллистов в номинации «Романтическая новелла года» за романы «Заморские фрукты» и «Последнее письмо от твоего любимого».', 'Великобритания'), ('<NAME>', '1968-04-21', 'Современная российская писательница, сценаристка, переводчица и радиоведущая.', 'Россия'), ('<NAME>', '1960-09-10', 'Современный немецкий эксперт по финансовым вопросам, бизнес-коуч, автор книг.', 'Германия'), ('<NAME>', '1934-03-26', 'Британская писательница, автор фантастических романов для детей и взрослых. Наиболее известные работы — это серия книг о Крестоманси и роман «Ходячий замок», а также «Темный Властелин Деркхольма».', 'Великобритания'); INSERT INTO genres (name) VALUES ('детектив'), ('криминал'), ('фэнтези'), ('научная фантастика'), ('приключения'), ('детская литература'), ('мистика'), ('литература 21 века'), ('литература 20 века'), ('литература 19 века'), ('исторический'), ('триллер'), ('любовный роман'), ('финансы'), ('сказки'); INSERT INTO books_genres (book_id, genre_id) VALUES (1, 5), (1, 6), (1, 10), (2, 5), (2, 6), (2, 9), (2, 3), (3, 1), (3, 2), (3, 5), (3, 10), (4, 10), (4, 7), (5, 3), (5, 9), (5, 5), (6, 3), (6, 9), (6, 5), (7, 3), (7, 9), (7, 5), (8, 3), (8, 9), (8, 5), (9, 3), (9, 9), (9, 5), (10, 3), (10, 9), (10, 5), (11, 3), (11, 9), (11, 5), (12, 1), (12, 2), (12, 9), (13, 1), (13, 2), (13, 9), (14, 1), (14, 2), (14, 9), (15, 1), (15, 2), (15, 9), (16, 1), (16, 2), (16, 9), (17, 1), (17, 2), (17, 9), (18, 1), (18, 2), (18, 9), (18, 11), (19, 1), (19, 2), (19, 8), (20, 1), (20, 2), (20, 8), (20, 11), (21, 1), (21, 8), (21, 12), (22, 1), (22, 12), (22, 8), (23, 1), (23, 8), (23, 12), (24, 13), (24, 11), (24, 9), (25, 13), (25, 8), (26, 1), (26, 13), (26, 8), (27, 1), (27, 8), (28, 6), (28, 14), (28, 8), (29, 14), (29, 8), (30, 15), (30, 6), (30, 5), (30, 8); INSERT INTO books_authors (book_id, author_id) VALUES (1, 1), (2, 2), (3, 3), (4, 4), (5, 7), (6, 7), (7, 7), (8, 7), (9, 7), (10, 7), (11, 7), (12, 5), (13, 5), (14, 5), (15, 5), (16, 5), (17, 5), (18, 5), (19, 5), (20, 5), (21, 6), (22, 6), (23, 6), (24, 8), (25, 9), (26, 10), (27, 10), (28, 11), (29, 11), (30, 12); UPDATE books SET discount = 20 WHERE id > 10 AND id < 20; UPDATE books SET editors_advice = true WHERE id > 0 AND id < 10; COMMIT
-- Add a professor_id column ALTER TABLE affiliations ADD COLUMN professor_id integer REFERENCES professors (id); -- Rename the organization column to organization_id ALTER TABLE affiliations RENAME organization TO organization_id; -- Add a foreign key on organization_id ALTER TABLE affiliations ADD CONSTRAINT affiliations_organization_fkey FOREIGN KEY (organization_id) REFERENCES organizations (id);
-- # Problem: https://www.hackerrank.com/challenges/weather-observation-station-17/problem -- # Score: 15 SELECT TOP 1 CAST(LONG_W AS NUMERIC(12,4)) FROM STATION WHERE LAT_N > 38.7780 ORDER BY LAT_N;
-- Joins the two geocoding result tables to the transactions -- for those geocoding results that scored 80 or better in the first round -- or zero (0) or better in the second round. CREATE OR REPLACE VIEW transactions_geocoded AS ( SELECT t.sr_unique_id, t.sr_property_id, gc.score, t.sr_val_transfer, t.sr_tax_transfer, t.sr_full_part_code, t.sr_doc_type, t.sr_deed_type, t.sr_tran_type, t.sr_quitclaim, t.mm_fips_county_name, t.sr_date_transfer, left(t.sr_date_transfer::text, 4) AS transfer_year, right(left(t.sr_date_transfer::text, 6), 2) AS transfer_month, left(t.sr_date_filing::text, 4) AS filing_year, left(t.sr_date_transfer::text, 4) || right(left(sr_date_transfer::text, 6), 2) AS transfer_date_key, ST_Transform(ST_SetSRID(ST_MakePoint(gc.x, gc.y), 4326), 32617) AS geom FROM transactions t JOIN geocoded gc ON t.sr_property_id = gc.property_id -- First round results WHERE gc.score >= 80 AND t.sr_val_transfer > 0 UNION SELECT t.sr_unique_id, t.sr_property_id, gc2.score, t.sr_val_transfer, t.sr_tax_transfer, t.sr_full_part_code, t.sr_doc_type, t.sr_deed_type, t.sr_tran_type, t.sr_quitclaim, t.mm_fips_county_name, t.sr_date_transfer, left(t.sr_date_transfer::text, 4) AS transfer_year, right(left(t.sr_date_transfer::text, 6), 2) AS transfer_month, left(t.sr_date_filing::text, 4) AS filing_year, left(t.sr_date_transfer::text, 4) || right(left(sr_date_transfer::text, 6), 2) AS transfer_date_key, ST_Transform(ST_SetSRID(ST_MakePoint(gc2.x, gc2.y), 4326), 32617) AS geom FROM transactions t JOIN geocoded_extra gc2 ON t.sr_property_id = gc2.property_id -- Second round results WHERE gc2.score > 0 AND t.sr_val_transfer > 0 )
SELECT * FROM giving.nonprofits_top_words_homepage WHERE nonprofits_id = XXXXX
<reponame>development-hoke/remaps-front<gh_stars>1-10 -- MySQL dump 10.16 Distrib 10.2.32-MariaDB, for Linux (x86_64) -- -- Host: localhost Database: advanced_tuning -- ------------------------------------------------------ -- Server version 10.2.32-MariaDB /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!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 `companies` -- DROP TABLE IF EXISTS `companies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `companies` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) DEFAULT NULL, `country` varchar(50) DEFAULT NULL, `state` varchar(50) DEFAULT NULL, `town` varchar(50) DEFAULT NULL, `address_line_1` varchar(100) DEFAULT NULL, `address_line_2` varchar(100) DEFAULT NULL, `post_code` varchar(30) DEFAULT NULL, `logo` varchar(100) DEFAULT 'default-logo.png', `theme_color` varchar(10) DEFAULT '#dd<PASSWORD>', `copy_right_text` varchar(100) DEFAULT NULL, `domain_link` varchar(100) DEFAULT NULL, `main_email_address` varchar(100) DEFAULT NULL, `support_email_address` varchar(100) DEFAULT NULL, `billing_email_address` varchar(100) DEFAULT NULL, `bank_account` varchar(100) DEFAULT NULL, `bank_identification_code` varchar(100) DEFAULT NULL, `vat_number` varchar(100) DEFAULT NULL, `vat_percentage` float(2,2) DEFAULT NULL, `customer_note` text DEFAULT NULL, `mail_driver` varchar(20) DEFAULT NULL, `mail_host` varchar(100) DEFAULT NULL, `mail_port` int(10) DEFAULT NULL, `mail_encryption` varchar(10) DEFAULT NULL, `mail_username` varchar(100) DEFAULT NULL, `mail_password` varchar(100) DEFAULT NULL, `paypal_mode` varchar(20) DEFAULT 'live', `paypal_client_id` varchar(200) DEFAULT NULL, `paypal_secret` varchar(200) DEFAULT NULL, `paypal_currency_code` varchar(10) DEFAULT 'GBP', `is_default` tinyint(1) DEFAULT 0, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NULL DEFAULT NULL, `is_public` tinyint(4) DEFAULT 0 COMMENT '''1''=>''Public'',''0''=>''Private''', `rating` float(10,1) DEFAULT 0.0, `more_info` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `companies` -- LOCK TABLES `companies` WRITE; /*!40000 ALTER TABLE `companies` DISABLE KEYS */; INSERT INTO `companies` VALUES (1,'Advanced Tuning Ltd','01254 393700','Lancashire','ACCRINGTON','UNIT 4 WALMSLEY COURT','Clayton Business Park','BB5 5JQ','1542745913.png','#1f0bcd','Advanced Tuning 2019','https://apt.myremaps.com','<EMAIL>','<EMAIL>','<EMAIL>',NULL,NULL,NULL,NULL,'MONDAY - FRIDAY 9 - 5pm ALLOW 1 HOUR FOR FILE RETURN\r\nSATURDAY 10.30 - 2pm FILES WITH PRIOR NOTICE ONLY !','smtp','192.168.3.11',25,NULL,'<EMAIL>','!Winston11!','live','<KEY>','<KEY> <KEY>','GBP',1,'2018-11-02 13:03:51','2020-04-22 07:54:43',1,4.7,'<p><strong>Specialising in Remapping for European Vehicles. </strong></p>\r\n\r\n<ul>\r\n <li>Remapping</li>\r\n <li>DPF &amp; EGR</li>\r\n <li>ADBlue &amp; SCR</li>\r\n <li>Pops &amp; Burbles</li>\r\n</ul>\r\n\r\n<p># #Vehicle Dependent</p>'),(19,'Premier Remapping','United Kingdom','WEST YORKSHIRE','HALIFAX','Asquith bottom mill','Sowerby bridge','HX6 3BT','1542625075.png','#0f1fab','Premier Remapping 2019','https://premier.myremaps.com','<EMAIL>','<EMAIL>','<EMAIL>',NULL,NULL,NULL,NULL,'MONDAY - FRIDAY 9 - 6 pm ALLOW 1 HOUR FOR FILE RETURN\r\nSATURDAY 10.30 - 2pm FILES WITH PRIOR NOTICE ONLY !','smtp','smtp.gmail.com',587,'tls','<EMAIL>','Nicola071<PASSWORD>','live','<KEY>','<KEY>','GBP',0,'2018-11-19 10:53:44','2020-02-28 10:50:09',1,5.0,'<ul>\r\n <li>PREMIER-REMAPPING EXPERIENCED IN ECU REPAIRS AND TUNNG FILES.</li>\r\n <li>WE OFFER BELOW AND MORE</li>\r\n <li>Remapping</li>\r\n <li>DPF</li>\r\n <li>EGR</li>\r\n <li>DTC Removal</li>\r\n <li>Aldblue</li>\r\n <li>Immo</li>\r\n <li>GPF/OPF REMOVAL</li>\r\n <li>Burbles Activation</li>\r\n <li>Boost Sensor Calibration Module</li>\r\n</ul>'),(33,'Cobra Tuning','Ireland',NULL,'Coleraine','Brockagh Rd',NULL,NULL,'1569319206.png','#de1f0a','<EMAIL>','https://cobra.myremaps.com','<EMAIL>','<EMAIL>','<EMAIL>',NULL,NULL,NULL,NULL,'Monday - Saturday 9am-5pm','smtp','mail.myremaps.com',25,NULL,'<EMAIL>','!Winston11!','live','Add2DPuGG5qE5-mDMc0NsBFXxvmuKNIZyC1ELFTwrpCQfSlzzRoeaJzWOanS4GUpV_aRMw-pUK73Uc0Z','EDD6EG3vrO27mcHwuMCn59mSrXJ7W_Q7OjDAWngb6P1rwePe-HhFdS1ja7K46Tf500wNEP4F4FwFUPUe','GBP',0,'2019-09-23 08:42:23','2019-10-02 16:29:31',1,0.0,'<p><strong>Cobra Tuning &amp; Motorsport</strong></p>\r\n\r\n<p>An experienced tuning company based in Northern Ireland.<br />\r\nWe can offer the <strong>best quality files at great value for money</strong>.</p>\r\n\r\n<p>We offer:-</p>\r\n\r\n<ul>\r\n <li><strong>Remapping of European Vehicles</strong></li>\r\n <li><strong>DPF removal</strong></li>\r\n <li><strong>EGR removal</strong></li>\r\n <li><strong>Pops on certain cars*</strong></li>\r\n <li><strong>Adblue*</strong></li>\r\n <li><strong>Speed limit deactivate</strong></li>\r\n <li><strong>Special Rates for Regular Customers</strong></li>\r\n</ul>\r\n\r\n<p>* check for compatability&nbsp;</p>'),(34,'ROCKET PERFORMANCE MATRIZ','Brasil','<NAME>','<NAME>','Avenida Barão Homem de Melo','3500','30494270','1590089981.png','#000000','Rocket Performance Direitos Reservados 2020','https://rocketperformance.myremaps.com','<EMAIL>','<EMAIL>','<EMAIL>',NULL,NULL,NULL,NULL,NULL,'smtp','dc-aeb7fe5facb0.myremaps.com',25,NULL,'<EMAIL>','!Winston11!','live','enter here','enter here','USD',0,'2020-03-09 19:33:58','2020-06-09 16:02:35',1,5.0,NULL),(41,'DS Test Company','India','Rajasthan','Jiapur','<NAME>an','Jaipur Rajshtan','23234','default-logo.png',NULL,NULL,'https://dstest.myremaps.com','<EMAIL>','<EMAIL>','<EMAIL>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'live',NULL,NULL,'GBP',0,'2020-06-05 12:59:13','2020-06-05 13:00:39',0,0.0,NULL); /*!40000 ALTER TABLE `companies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_ratings` -- DROP TABLE IF EXISTS `customer_ratings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `customer_ratings` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `rating` int(11) NOT NULL, `user_id` int(11) NOT NULL, `company_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_ratings` -- LOCK TABLES `customer_ratings` WRITE; /*!40000 ALTER TABLE `customer_ratings` DISABLE KEYS */; INSERT INTO `customer_ratings` VALUES (1,5,106,1,'2019-09-11 09:26:36','2019-09-12 05:26:06'),(2,4,105,1,'2019-09-11 09:42:19','2019-09-11 09:42:19'),(3,5,110,24,'2019-09-12 08:58:04','2019-09-12 08:58:04'),(4,5,100,19,'2019-09-26 12:22:59','2019-09-26 12:22:59'),(5,5,136,19,'2020-01-28 09:33:04','2020-01-28 09:33:04'),(6,5,135,19,'2020-01-28 09:33:17','2020-01-28 09:33:17'),(7,5,134,19,'2020-01-28 09:33:35','2020-01-28 09:33:35'),(8,5,121,19,'2020-01-28 09:33:53','2020-01-28 09:33:53'),(9,5,74,19,'2020-01-28 09:34:06','2020-01-28 09:34:06'),(10,5,76,19,'2020-01-28 09:34:17','2020-01-28 09:34:17'),(11,5,70,1,'2020-02-22 14:40:14','2020-02-22 14:40:14'),(12,5,149,34,'2020-03-12 13:59:39','2020-03-12 13:59:39'),(13,5,144,34,'2020-03-13 13:25:29','2020-03-13 13:25:29'); /*!40000 ALTER TABLE `customer_ratings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `email_templates` -- DROP TABLE IF EXISTS `email_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `email_templates` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `company_id` int(11) unsigned NOT NULL, `label` varchar(191) NOT NULL, `subject` varchar(191) NOT NULL, `body` text NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1 COMMENT '1->active, 0->inactive', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `company_id` (`company_id`), CONSTRAINT `email_templates_ibfk_1` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=298 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `email_templates` -- LOCK TABLES `email_templates` WRITE; /*!40000 ALTER TABLE `email_templates` DISABLE KEYS */; INSERT INTO `email_templates` VALUES (2,1,'customer-welcome-email','Welcome email: Reset your password','<table class=\"wrapper\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #f5f8fa; margin: 0; padding: 0; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table class=\"content\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 0; padding: 0; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td class=\"header\" style=\"font-family: Avenir, Helvetica, sans-serif;box-sizing: border-box; padding: 25px 0; text-align: center;\">\r\n <a href=\"##APP_URL\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #bbbfc3; font-size: 19px; font-weight: bold; text-decoration: none; text-shadow: 0 1px 0 white;\">\r\n <img src=\"##APP_LOGO\" alt=\"##APP_NAME\" style=\"max-width:300px\">\r\n </a>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td class=\"body\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #FFFFFF; border-bottom: 1px solid #EDEFF2; border-top: 1px solid#EDEFF2; margin: 0; padding: 0; width: 100%;-premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <table class=\"inner-body\" align=\"center\" width=\"570\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #FFFFFF; margin: 0 auto; padding: 0; width: 570px; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 570px;\">\r\n <tr>\r\n <td class=\"content-cell\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; padding: 35px;\">\r\n <h1 style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #2F3133; font-size: 19px; font-weight: bold; margin-top: 0; text-align: left;\"> \r\n Hello! ##USER_NAME\r\n </h1>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E;font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">\r\n You are receiving this email because we received a password reset request for your account. Click the button below to reset your password:\r\n </p>\r\n <table class=\"action\" align=\"center\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 30px auto; padding: 0; text-align: center; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir,Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n\r\n <a href=\"##LINK\" class=\"button button-blue\" target=\"_blank\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; border-radius: 3px; box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16); color: #FFF; display: inline-block; text-decoration: none; -webkit-text-size-adjust: none;background-color: #3097D1; border-top: 10px solid #3097D1; border-right: 18px solid #3097D1; border-bottom: 10px solid #3097D1; border-left: 18px solid #3097D1;\">\r\n Reset Password\r\n </a>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E; font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">If you did not request a password reset, no further action is required.</p>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E;font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">\r\n Kind Regards,<br>##APP_NAME\r\n </p>\r\n <table class=\"subcopy\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; border-top: 1px solid #EDEFF2; margin-top:25px; padding-top: 25px;\">\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;color: #74787E; line-height: 1.5em; margin-top: 0; text-align: left; font-size: 12px;\">\r\n If you\'re having trouble clicking the \"Reset Password\" button, copy and paste the URL below into your web browser: \r\n <a href=\"##LINK\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #3869D4;\"\r\n >\r\n ##LINK\r\n </a>\r\n </p>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table class=\"footer\" align=\"center\" width=\"570\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 0 auto; padding: 0; text-align: center; width: 570px; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 570px;\">\r\n <tr>\r\n <td class=\"content-cell\" align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; padding: 35px;\">\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; line-height: 1.5em; margin-top: 0; color: #AEAEAE; font-size: 12px; text-align: center;\">\r\n &copy; 2018 ##APP_NAME. All rights reserved.\r\n </p>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n</table>',1,'2018-09-05 00:40:56','2018-09-06 06:32:41',NULL),(3,1,'new-file-service-created-email','New file service has been created','<table class=\"wrapper\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #f5f8fa; margin: 0; padding: 0; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table class=\"content\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 0; padding: 0; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td class=\"header\" style=\"font-family: Avenir, Helvetica, sans-serif;box-sizing: border-box; padding: 25px 0; text-align: center;\">\r\n <a href=\"##APP_URL\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #bbbfc3; font-size: 19px; font-weight: bold; text-decoration: none; text-shadow: 0 1px 0 white;\">\r\n <img src=\"##APP_LOGO\" alt=\"##APP_NAME\" style=\"max-width:300px\">\r\n </a>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td class=\"body\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #FFFFFF; border-bottom: 1px solid #EDEFF2; border-top: 1px solid#EDEFF2; margin: 0; padding: 0; width: 100%;-premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <table class=\"inner-body\" align=\"center\" width=\"570\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #FFFFFF; margin: 0 auto; padding: 0; width: 570px; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 570px;\">\r\n <tr>\r\n <td class=\"content-cell\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; padding: 35px;\">\r\n <h1 style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #2F3133; font-size: 19px; font-weight: bold; margin-top: 0; text-align: left;\"> \r\n Hi there,\r\n </h1>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E;font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">\r\n A new file service has been created:\r\n </p>\r\n\r\n <strong>Customer:</strong>\r\n <p>##CUSTOMER_NAME</p>\r\n <strong>Car:</strong>\r\n <p>##CAR_NAME</p>\r\n\r\n <table class=\"action\" align=\"center\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 30px auto; padding: 0; text-align: center; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir,Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n\r\n <a href=\"##LINK\" class=\"button button-blue\" target=\"_blank\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; border-radius: 3px; box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16); color: #FFF; display: inline-block; text-decoration: none; -webkit-text-size-adjust: none;background-color: #3097D1; border-top: 10px solid #3097D1; border-right: 18px solid #3097D1; border-bottom: 10px solid #3097D1; border-left: 18px solid #3097D1;\">\r\n File Service\r\n </a>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E; font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">If you did not request a file service, no further action is required.</p>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E;font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">\r\n Kind Regards,<br>##APP_NAME\r\n </p>\r\n <table class=\"subcopy\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; border-top: 1px solid #EDEFF2; margin-top:25px; padding-top: 25px;\">\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;color: #74787E; line-height: 1.5em; margin-top: 0; text-align: left; font-size: 12px;\">\r\n If you\'re having trouble clicking the \"File Service\" button, copy and paste the URL below into your web browser: \r\n <a href=\"##LINK\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #3869D4;\"\r\n >\r\n ##LINK\r\n </a>\r\n </p>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table class=\"footer\" align=\"center\" width=\"570\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 0 auto; padding: 0; text-align: center; width: 570px; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 570px;\">\r\n <tr>\r\n <td class=\"content-cell\" align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; padding: 35px;\">\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; line-height: 1.5em; margin-top: 0; color: #AEAEAE; font-size: 12px; text-align: center;\">\r\n &copy; 2018 ##APP_NAME. All rights reserved.\r\n </p>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n</table>',1,'2018-09-13 06:00:58','2018-09-13 06:00:58',NULL),(4,1,'file-service-modified-email','Your mod file is ready !','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hi there,</h1>\r\n\r\n <p>Your modified file has been modified/completed</p>\r\n <strong>Car:</strong>\r\n\r\n <p>##CAR_NAME</p>\r\n\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td><a href=\"##LINK\" target=\"_blank\">File Service </a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n <p>If you did not request a file service, no further action is required.</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>If you&#39;re having trouble clicking the &quot;File Service&quot; button, copy and paste the URL below into your web browser: <a href=\"##LINK\"> ##LINK </a></p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2018-09-19 04:18:50','2019-01-28 14:01:37',NULL),(5,1,'new-subscription-email','##COMPANY_NAME subscribed a plan','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>##COMPANY_NAME&nbsp;has subscribed a plan ##PLAN_ID on the ##AGREEMENT_START_DATE</p>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2018-11-03 00:33:31','2020-02-09 16:36:34',NULL),(6,1,'subscription-cancelled','##COMPANY_NAME cancelled a plan','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>##COMPANY_NAME has cancelled subscription for plan ##PLAN_ID, It will be expired on ##AGREEMENT_NEXT_BILLING_DATE</p>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2018-11-03 00:38:19','2020-02-09 16:37:14',NULL),(7,1,'payment-completed','##COMPANY_NAME payment completed','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>##COMPANY_NAME&nbsp;has started a&nbsp;for subscription for subscription ##AGREEMENT_ID.</p>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2018-11-03 01:46:01','2020-02-09 16:36:59',NULL),(8,1,'file-service-processed-email','We have started work on your file !','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hi ##CUSTOMER_NAME,</h1>\r\n\r\n <p>Your file service (##CAR_NAME) has been picked up by our engineer who<br />\r\n has started working on it.</p>\r\n\r\n <p>This email is automatically sent when an engineer downloads your Original file.</p>\r\n\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td><a href=\"##LINK\" target=\"_blank\">File Service </a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>If you&#39;re having trouble clicking the &quot;File Service&quot; button, copy and paste the URL below into your web browser: <a href=\"##LINK\"> ##LINK </a></p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,NULL,'2018-11-14 10:33:54',NULL),(9,1,'payment-pending','##COMPANY_NAME payment pending','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>##COMPANY_NAME company payment of ##AGREEMENT_AMOUNT for subscription for subscription ##AGREEMENT_ID has been pending.</p>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,NULL,'2018-11-14 00:08:23',NULL),(10,1,'payment-denied','##COMPANY_NAME payment denied','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>##COMPANY_NAME company payment of ##AGREEMENT_AMOUNT for subscription for subscription ##AGREEMENT_ID has been denied.</p>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,NULL,'2018-11-14 00:08:12',NULL),(55,19,'customer-welcome-email','Welcome email: LOGIN TO NEW FILE SERVER','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello! ##USER_NAME</h1>\r\n\r\n <p>You are receiving this email because we received a password reset request for your account.<br />\r\n Click the button below to reset your password:</p>\r\n\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td><a href=\"http://premier.myremaps.com/password/reset/<PASSWORD>\" target=\"_blank\">LOGIN TO NEW FILE SERVICE</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n <p>If you did not request a password reset, no further action is required.</p>\r\n\r\n <p>Kind Regards,<br />\r\n Premier Remapping</p>\r\n\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>If you&#39;re having trouble clicking the &quot;Reset Password&quot; button, copy and paste the URL below into your web browser: <a href=\"##LINK\"> ##LINK </a></p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2018-11-19 10:53:44','2018-12-08 11:55:13',NULL),(56,19,'new-file-service-created-email','New file service has been created','<table class=\"wrapper\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #f5f8fa; margin: 0; padding: 0; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table class=\"content\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 0; padding: 0; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td class=\"header\" style=\"font-family: Avenir, Helvetica, sans-serif;box-sizing: border-box; padding: 25px 0; text-align: center;\">\r\n <a href=\"##APP_URL\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #bbbfc3; font-size: 19px; font-weight: bold; text-decoration: none; text-shadow: 0 1px 0 white;\">\r\n <img src=\"##APP_LOGO\" alt=\"##APP_NAME\" style=\"max-width:300px\">\r\n </a>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td class=\"body\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #FFFFFF; border-bottom: 1px solid #EDEFF2; border-top: 1px solid#EDEFF2; margin: 0; padding: 0; width: 100%;-premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <table class=\"inner-body\" align=\"center\" width=\"570\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #FFFFFF; margin: 0 auto; padding: 0; width: 570px; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 570px;\">\r\n <tr>\r\n <td class=\"content-cell\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; padding: 35px;\">\r\n <h1 style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #2F3133; font-size: 19px; font-weight: bold; margin-top: 0; text-align: left;\"> \r\n Hi there,\r\n </h1>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E;font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">\r\n A new file service has been created:\r\n </p>\r\n\r\n <strong>Customer:</strong>\r\n <p>##CUSTOMER_NAME</p>\r\n <strong>Car:</strong>\r\n <p>##CAR_NAME</p>\r\n\r\n <table class=\"action\" align=\"center\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 30px auto; padding: 0; text-align: center; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir,Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n\r\n <a href=\"##LINK\" class=\"button button-blue\" target=\"_blank\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; border-radius: 3px; box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16); color: #FFF; display: inline-block; text-decoration: none; -webkit-text-size-adjust: none;background-color: #3097D1; border-top: 10px solid #3097D1; border-right: 18px solid #3097D1; border-bottom: 10px solid #3097D1; border-left: 18px solid #3097D1;\">\r\n File Service\r\n </a>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E; font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">If you did not request a file service, no further action is required.</p>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E;font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">\r\n Kind Regards,<br>##APP_NAME\r\n </p>\r\n <table class=\"subcopy\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; border-top: 1px solid #EDEFF2; margin-top:25px; padding-top: 25px;\">\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;color: #74787E; line-height: 1.5em; margin-top: 0; text-align: left; font-size: 12px;\">\r\n If you\'re having trouble clicking the \"File Service\" button, copy and paste the URL below into your web browser: \r\n <a href=\"##LINK\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #3869D4;\"\r\n >\r\n ##LINK\r\n </a>\r\n </p>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table class=\"footer\" align=\"center\" width=\"570\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 0 auto; padding: 0; text-align: center; width: 570px; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 570px;\">\r\n <tr>\r\n <td class=\"content-cell\" align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; padding: 35px;\">\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; line-height: 1.5em; margin-top: 0; color: #AEAEAE; font-size: 12px; text-align: center;\">\r\n &copy; 2018 ##APP_NAME. All rights reserved.\r\n </p>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n</table>',1,'2018-11-19 10:53:44','2018-11-19 10:53:44',NULL),(57,19,'file-service-modified-email','Your mod file is ready !','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hi there,</h1>\r\n\r\n <p>Your modified file is ready ! log in and download your mod file.</p>\r\n <strong>Car:</strong>\r\n\r\n <p>##CAR_NAME</p>\r\n\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td><a href=\"##LINK\" target=\"_blank\">File Service </a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n <p>If you did not request a file service, no further action is required.</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2018-11-19 10:53:44','2019-01-10 21:51:34',NULL),(58,19,'file-service-processed-email','We have started work on your file !','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hi ##CUSTOMER_NAME,</h1>\r\n\r\n <p>Your file service (##CAR_NAME) has been picked up by our engineer who<br />\r\n has started working on it.</p>\r\n\r\n <p>This email is automatically sent when an engineer downloads your Original file.</p>\r\n\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td><a href=\"##LINK\" target=\"_blank\">File Service </a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>If you&#39;re having trouble clicking the &quot;File Service&quot; button, copy and paste the URL below into your web browser: <a href=\"##LINK\"> ##LINK </a></p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2018-11-19 10:53:44','2018-11-19 10:53:44',NULL),(133,1,'new-ticket-created','##CUSTOMER_NAME has made a Support Ticket','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello Admin!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>A new support ticket has been created by ##CUSTOMER_NAME regarding ##MESSAGE.</p>\r\n\r\n <p>Please log in to view the ticket</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2019-01-23 12:57:09','2019-01-25 21:50:36',NULL),(134,1,'new-file-ticket-created','Reply of your generated ticket','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello ##CUSTOMER_NAME!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>You have received a reply to your support ticket regarding ##MESSAGE.</p>\r\n\r\n <p>Please log in to view the ticket</p>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2019-01-23 12:57:52','2019-01-25 10:22:40',NULL),(139,1,'reply-to-your-ticket','##CUSTOMER_NAME has responded to you !','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello Admin!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>You have received a message from ##CUSTOMER_NAME to your support ticket regarding ##MESSAGE.</p>\r\n\r\n <p>Please log in to view the ticket</p>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2019-01-23 12:57:52','2019-01-25 21:49:32',NULL),(141,19,'new-ticket-created','##CUSTOMER_NAME has made a Support Ticket','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello Admin!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>A new support ticket has been created by ##CUSTOMER_NAME regarding ##MESSAGE.</p>\r\n\r\n <p>Please log in to view the ticket</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2019-01-23 12:57:09','2019-01-25 21:50:36',NULL),(142,19,'new-file-ticket-created','Reply of your generated ticket','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello ##CUSTOMER_NAME!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>You have received a reply to your support ticket regarding ##MESSAGE.</p>\r\n\r\n <p>Please log in to view the ticket</p>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2019-01-23 12:57:52','2019-01-25 10:22:40',NULL),(143,19,'reply-to-your-ticket','##CUSTOMER_NAME has responded to you !','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello Admin!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>You have received a message from ##CUSTOMER_NAME to your support ticket regarding ##MESSAGE.</p>\r\n\r\n <p>Please log in to view the ticket</p>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2019-01-23 12:57:52','2019-01-25 21:49:32',NULL),(151,1,'customer-welcome-email','Welcome: Company has been registered','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello! ##USER_NAME</h1>\r\n\r\n <p>Thank you for your payment. If you have any questions regarding setup and using your new system please first contact <a href=\"mailto:<EMAIL>\"><EMAIL></a></p>\r\n\r\n <p>Kind Regards,<br />\r\n MyRemaps Team.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2019 MyRemaps Team. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2019-06-23 23:00:00','2019-09-19 12:10:28',NULL),(174,1,'customer-activate-email','Welcome email: Your Approved ! Company Registration','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello! ##USER_NAME</h1>\r\n\r\n <p>Congratulatons you have been approved.<br />\r\n <br />\r\n The next step is log in to your account and complete your company profile detail.<br />\r\n <br />\r\n Before&nbsp;you do anything else you will need a PayPal API to be able to accept payments.<br />\r\n Goto company settings and click the PayPal tab then visit the link shown and set up your API key.<br />\r\n <br />\r\n Enter this PayPal key then&nbsp;you can enter the rest of your details<br />\r\n <br />\r\n If you get stuck email <EMAIL><br />\r\n <br />\r\n &nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2019&nbsp;##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2018-09-05 00:40:56','2019-09-19 12:12:31',NULL),(175,1,'new-company-apply','New Company allication','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\">&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello&nbsp;##APP_NAME</h1>\r\n\r\n <p>You&nbsp;have recieved an application to register.</p>\r\n\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2019&nbsp;##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2018-09-05 00:40:56','2019-09-19 12:13:39',NULL),(226,33,'customer-welcome-email','Welcome email: Reset your password','<table class=\"wrapper\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #f5f8fa; margin: 0; padding: 0; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table class=\"content\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 0; padding: 0; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td class=\"header\" style=\"font-family: Avenir, Helvetica, sans-serif;box-sizing: border-box; padding: 25px 0; text-align: center;\">\r\n <a href=\"##APP_URL\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #bbbfc3; font-size: 19px; font-weight: bold; text-decoration: none; text-shadow: 0 1px 0 white;\">\r\n <img src=\"##APP_LOGO\" alt=\"##APP_NAME\" style=\"max-width:300px\">\r\n </a>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td class=\"body\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #FFFFFF; border-bottom: 1px solid #EDEFF2; border-top: 1px solid#EDEFF2; margin: 0; padding: 0; width: 100%;-premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <table class=\"inner-body\" align=\"center\" width=\"570\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #FFFFFF; margin: 0 auto; padding: 0; width: 570px; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 570px;\">\r\n <tr>\r\n <td class=\"content-cell\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; padding: 35px;\">\r\n <h1 style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #2F3133; font-size: 19px; font-weight: bold; margin-top: 0; text-align: left;\"> \r\n Hello! ##USER_NAME\r\n </h1>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E;font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">\r\n You are receiving this email because we received a password reset request for your account. Click the button below to reset your password:\r\n </p>\r\n <table class=\"action\" align=\"center\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 30px auto; padding: 0; text-align: center; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir,Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n\r\n <a href=\"##LINK\" class=\"button button-blue\" target=\"_blank\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; border-radius: 3px; box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16); color: #FFF; display: inline-block; text-decoration: none; -webkit-text-size-adjust: none;background-color: #3097D1; border-top: 10px solid #3097D1; border-right: 18px solid #3097D1; border-bottom: 10px solid #3097D1; border-left: 18px solid #3097D1;\">\r\n Reset Password\r\n </a>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E; font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">If you did not request a password reset, no further action is required.</p>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E;font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">\r\n Kind Regards,<br>##APP_NAME\r\n </p>\r\n <table class=\"subcopy\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; border-top: 1px solid #EDEFF2; margin-top:25px; padding-top: 25px;\">\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;color: #74787E; line-height: 1.5em; margin-top: 0; text-align: left; font-size: 12px;\">\r\n If you\'re having trouble clicking the \"Reset Password\" button, copy and paste the URL below into your web browser: \r\n <a href=\"##LINK\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #3869D4;\"\r\n >\r\n ##LINK\r\n </a>\r\n </p>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table class=\"footer\" align=\"center\" width=\"570\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 0 auto; padding: 0; text-align: center; width: 570px; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 570px;\">\r\n <tr>\r\n <td class=\"content-cell\" align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; padding: 35px;\">\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; line-height: 1.5em; margin-top: 0; color: #AEAEAE; font-size: 12px; text-align: center;\">\r\n &copy; 2018 ##APP_NAME. All rights reserved.\r\n </p>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n</table>',1,'2019-10-03 08:03:30','2019-10-03 08:03:30',NULL),(227,33,'new-file-service-created-email','New file service has been created','<table class=\"wrapper\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #f5f8fa; margin: 0; padding: 0; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table class=\"content\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 0; padding: 0; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td class=\"header\" style=\"font-family: Avenir, Helvetica, sans-serif;box-sizing: border-box; padding: 25px 0; text-align: center;\">\r\n <a href=\"##APP_URL\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #bbbfc3; font-size: 19px; font-weight: bold; text-decoration: none; text-shadow: 0 1px 0 white;\">\r\n <img src=\"##APP_LOGO\" alt=\"##APP_NAME\" style=\"max-width:300px\">\r\n </a>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td class=\"body\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #FFFFFF; border-bottom: 1px solid #EDEFF2; border-top: 1px solid#EDEFF2; margin: 0; padding: 0; width: 100%;-premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <table class=\"inner-body\" align=\"center\" width=\"570\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #FFFFFF; margin: 0 auto; padding: 0; width: 570px; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 570px;\">\r\n <tr>\r\n <td class=\"content-cell\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; padding: 35px;\">\r\n <h1 style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #2F3133; font-size: 19px; font-weight: bold; margin-top: 0; text-align: left;\"> \r\n Hi there,\r\n </h1>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E;font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">\r\n A new file service has been created:\r\n </p>\r\n\r\n <strong>Customer:</strong>\r\n <p>##CUSTOMER_NAME</p>\r\n <strong>Car:</strong>\r\n <p>##CAR_NAME</p>\r\n\r\n <table class=\"action\" align=\"center\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 30px auto; padding: 0; text-align: center; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir,Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n\r\n <a href=\"##LINK\" class=\"button button-blue\" target=\"_blank\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; border-radius: 3px; box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16); color: #FFF; display: inline-block; text-decoration: none; -webkit-text-size-adjust: none;background-color: #3097D1; border-top: 10px solid #3097D1; border-right: 18px solid #3097D1; border-bottom: 10px solid #3097D1; border-left: 18px solid #3097D1;\">\r\n File Service\r\n </a>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E; font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">If you did not request a file service, no further action is required.</p>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E;font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">\r\n Kind Regards,<br>##APP_NAME\r\n </p>\r\n <table class=\"subcopy\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; border-top: 1px solid #EDEFF2; margin-top:25px; padding-top: 25px;\">\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;color: #74787E; line-height: 1.5em; margin-top: 0; text-align: left; font-size: 12px;\">\r\n If you\'re having trouble clicking the \"File Service\" button, copy and paste the URL below into your web browser: \r\n <a href=\"##LINK\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #3869D4;\"\r\n >\r\n ##LINK\r\n </a>\r\n </p>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table class=\"footer\" align=\"center\" width=\"570\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 0 auto; padding: 0; text-align: center; width: 570px; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 570px;\">\r\n <tr>\r\n <td class=\"content-cell\" align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; padding: 35px;\">\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; line-height: 1.5em; margin-top: 0; color: #AEAEAE; font-size: 12px; text-align: center;\">\r\n &copy; 2018 ##APP_NAME. All rights reserved.\r\n </p>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n</table>',1,'2019-10-03 08:03:30','2019-10-03 08:03:30',NULL),(228,33,'file-service-modified-email','Your mod file is ready !','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hi there,</h1>\r\n\r\n <p>Your modified file has been modified/completed</p>\r\n <strong>Car:</strong>\r\n\r\n <p>##CAR_NAME</p>\r\n\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td><a href=\"##LINK\" target=\"_blank\">File Service </a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n <p>If you did not request a file service, no further action is required.</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>If you&#39;re having trouble clicking the &quot;File Service&quot; button, copy and paste the URL below into your web browser: <a href=\"##LINK\"> ##LINK </a></p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2019-10-03 08:03:30','2019-10-03 08:03:30',NULL),(229,33,'file-service-processed-email','We have started work on your file !','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hi ##CUSTOMER_NAME,</h1>\r\n\r\n <p>Your file service (##CAR_NAME) has been picked up by our engineer who<br />\r\n has started working on it.</p>\r\n\r\n <p>This email is automatically sent when an engineer downloads your Original file.</p>\r\n\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td><a href=\"##LINK\" target=\"_blank\">File Service </a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>If you&#39;re having trouble clicking the &quot;File Service&quot; button, copy and paste the URL below into your web browser: <a href=\"##LINK\"> ##LINK </a></p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2019-10-03 08:03:30','2019-10-03 08:03:30',NULL),(230,33,'new-ticket-created','##CUSTOMER_NAME has made a Support Ticket','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello Admin!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>A new support ticket has been created by ##CUSTOMER_NAME regarding ##MESSAGE.</p>\r\n\r\n <p>Please log in to view the ticket</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2019-10-03 08:03:30','2019-10-03 08:03:30',NULL),(231,33,'new-file-ticket-created','Reply of your generated ticket','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello ##CUSTOMER_NAME!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>You have received a reply to your support ticket regarding ##MESSAGE.</p>\r\n\r\n <p>Please log in to view the ticket</p>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2019-10-03 08:03:30','2019-10-03 08:03:30',NULL),(232,33,'reply-to-your-ticket','##CUSTOMER_NAME has responded to you !','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello Admin!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>You have received a message from ##CUSTOMER_NAME to your support ticket regarding ##MESSAGE.</p>\r\n\r\n <p>Please log in to view the ticket</p>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2019-10-03 08:03:30','2019-10-03 08:03:30',NULL),(233,33,'customer-welcome-email','Welcome: Company has been registered','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello! ##USER_NAME</h1>\r\n\r\n <p>Thank you for your payment. If you have any questions regarding setup and using your new system please first contact <a href=\"mailto:<EMAIL>\"><EMAIL></a></p>\r\n\r\n <p>Kind Regards,<br />\r\n MyRemaps Team.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2019 MyRemaps Team. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2019-10-03 08:03:30','2019-10-03 08:03:30',NULL),(234,34,'customer-welcome-email','BEM VINDO: RESETAR SENHA PORTAL ROCKET','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>OL&Aacute;! ##USER_NAME</h1>\r\n\r\n <pre>\r\nVoc&ecirc; est&aacute; recebendo este e-mail porque recebemos uma solicita&ccedil;&atilde;o de redefini&ccedil;&atilde;o de senha para sua conta. Clique no bot&atilde;o abaixo para redefinir sua senha:</pre>\r\n\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td><a href=\"##LINK\" target=\"_blank\">Reset Password </a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n <pre>\r\nSe voc&ecirc; n&atilde;o solicitou uma redefini&ccedil;&atilde;o de senha, nenhuma a&ccedil;&atilde;o adicional ser&aacute; necess&aacute;ria.</pre>\r\n\r\n <p>Muito obrigado, ROCKET PERFORMANCE.<br />\r\n ##APP_NAME</p>\r\n\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <pre>\r\nSe estiver com problemas para clicar no bot&atilde;o &quot;RESET PASSWORD&quot;, copie e cole o URL abaixo no seu navegador</pre>\r\n\r\n <p>: <a href=\"##LINK\"> ##LINK </a></p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2020 ##APP_NAME. Todos direitos reservados.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2020-03-09 19:33:58','2020-03-12 13:34:15',NULL),(235,34,'new-file-service-created-email','NOVO PEDIDO DE ARQUIVO FOI CRIADO!','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>OL&Aacute;,</h1>\r\n\r\n <p>UM NOVO PEDIDO DE ARQUIVO FOI FEITO:</p>\r\n <strong>CLIENTE:</strong>\r\n\r\n <p>##CUSTOMER_NAME</p>\r\n <strong>CARRO:</strong>\r\n\r\n <p>##CAR_NAME</p>\r\n\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td><a href=\"##LINK\" target=\"_blank\">File Service </a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n <p>Muito obrigado, ROCKET PERFORMANCE.<br />\r\n ##APP_NAME</p>\r\n\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&nbsp;</p>\r\n\r\n <p>Se voc&ecirc; estiver com problemas para clicar no bot&atilde;o &quot;FILE SERVICE&quot;, copie e cole o URL abaixo no seu navegador:: <a href=\"##LINK\"> ##LINK </a></p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2020 ##APP_NAME. TODOS DIREITOS RESERVADOS.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2020-03-09 19:33:58','2020-03-12 13:35:23',NULL),(236,34,'file-service-modified-email','SEU ARQUIVO MODIFICADO ESTÁ PRONTO','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>OL&Aacute; ,</h1>\r\n\r\n <p>SEU ARQUIVO MODIFICADO EST&Aacute; FINALIZADO.</p>\r\n <strong>Carro:</strong>\r\n\r\n <p>##CAR_NAME</p>\r\n\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td><a href=\"##LINK\" target=\"_blank\">File Service </a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>Muito obrigado, ROCKET PERFORMANCE<br />\r\n ##APP_NAME</p>\r\n\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>Se voc&ecirc; estiver com problemas para clicar no bot&atilde;o &quot;FILE SERVICE&quot;, copie e cole o URL abaixo no seu navegador&nbsp;<a href=\"##LINK\">##LINK </a></p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2020 ##APP_NAME. TODOS DIREITOS RESERVADOS.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2020-03-09 19:33:58','2020-03-12 13:35:44',NULL),(237,34,'file-service-processed-email','NÓS COMEÇAMOS A TRABALHAR NO SEU ARQUIVO.','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>OL&Aacute; ##CUSTOMER_NAME,</h1>\r\n\r\n <p>SEU PEDIDO DE ARQUIVO (##CAR_NAME) EST&Aacute; SENDO TRABALHADO PELA EQUIPE ROCKET PERFORMANCE.</p>\r\n\r\n <p>ESSE EMAIL &Eacute; AUTOMATICAMENTE ENVIADO QUANDO BAIXAMOS O ARQUIVO ORIGINAL DO SEU PEDIDO.</p>\r\n\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td><a href=\"##LINK\" target=\"_blank\">File Service </a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n <p>Muito obrigado, ROCKET PERFORMANCE<br />\r\n ##APP_NAME</p>\r\n\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>Se estiver com problema ao apertar o bot&atilde;o&nbsp;&quot;File Service&quot; , copiei e cole est&aacute; url no seu navegador&nbsp;<a href=\"##LINK\">##LINK </a></p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2020 ##APP_NAME. TODOS DIREITOS RESERVADOS.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2020-03-09 19:33:58','2020-03-12 13:28:06',NULL),(238,34,'new-ticket-created','##CUSTOMER_NAME fez um PEDIDO DE SUPORTE ARQUIVO.','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>OL&Aacute; ROCKET PERFORMANCE!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>UM NOVO SUPORTE DE ARQUIVO FOI CRIADO POR&nbsp;##CUSTOMER_NAME COM A MENSAGEM&nbsp;##MESSAGE.</p>\r\n\r\n <p>POR FAVOR LOG NO PORTAL PARA VER O SUPORTE</p>\r\n\r\n <p>MUITO OBRIGADO, ROCKET PERFORMANCE<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2020 ##APP_NAME. TODOS DIREITOS RESERVADOS</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2020-03-09 19:33:58','2020-03-12 13:25:36',NULL),(239,34,'new-file-ticket-created','RESPOSTA AO SEU SUPORTE DE ARQUIVO.','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">&nbsp;\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>&nbsp;OL&Aacute; ##CUSTOMER_NAME!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>Voc&ecirc; recebeuma resposta ao suporte de arquivo&nbsp;##MESSAGE.</p>\r\n\r\n <p>Por favor fa&ccedil;a login no portal para ver.</p>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>Muito obrigado, Rocket Performance.<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2020 ##APP_NAME. TODOS DIREITOS RESERVADOS</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2020-03-09 19:33:58','2020-03-12 13:24:03',NULL),(240,34,'reply-to-your-ticket','##CUSTOMER_NAME respondeu você!','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello Admin!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>Voc&ecirc; recebeu a mensagem de ##CUSTOMER_NAME pro seu suporte de arquivo</p>\r\n\r\n <p>&nbsp;##MESSAGE.</p>\r\n\r\n <p>Por favor log no portal para ver.</p>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>Obrigado<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2020-03-09 19:33:58','2020-03-12 02:52:57',NULL),(241,34,'customer-welcome-email','BEM VINDO: SEU EMAIL FOI REGISTRADO (ROCKET PERFORMANCE)','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>OL! ##USER_NAME</h1>\r\n\r\n <p>Thank you for your payment. If you have any questions regarding setup and using your new system please first contact <a href=\"mailto:<EMAIL>\"><EMAIL></a></p>\r\n\r\n <p>Kind Regards,<br />\r\n MyRemaps Team.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2019 MyRemaps Team. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2020-03-09 19:33:58','2020-03-12 01:02:24',NULL),(290,41,'customer-welcome-email','Welcome email: Reset your password','<table class=\"wrapper\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #f5f8fa; margin: 0; padding: 0; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table class=\"content\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 0; padding: 0; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td class=\"header\" style=\"font-family: Avenir, Helvetica, sans-serif;box-sizing: border-box; padding: 25px 0; text-align: center;\">\r\n <a href=\"##APP_URL\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #bbbfc3; font-size: 19px; font-weight: bold; text-decoration: none; text-shadow: 0 1px 0 white;\">\r\n <img src=\"##APP_LOGO\" alt=\"##APP_NAME\" style=\"max-width:300px\">\r\n </a>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td class=\"body\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #FFFFFF; border-bottom: 1px solid #EDEFF2; border-top: 1px solid#EDEFF2; margin: 0; padding: 0; width: 100%;-premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <table class=\"inner-body\" align=\"center\" width=\"570\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #FFFFFF; margin: 0 auto; padding: 0; width: 570px; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 570px;\">\r\n <tr>\r\n <td class=\"content-cell\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; padding: 35px;\">\r\n <h1 style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #2F3133; font-size: 19px; font-weight: bold; margin-top: 0; text-align: left;\"> \r\n Hello! ##USER_NAME\r\n </h1>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E;font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">\r\n You are receiving this email because we received a password reset request for your account. Click the button below to reset your password:\r\n </p>\r\n <table class=\"action\" align=\"center\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 30px auto; padding: 0; text-align: center; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir,Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n\r\n <a href=\"##LINK\" class=\"button button-blue\" target=\"_blank\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; border-radius: 3px; box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16); color: #FFF; display: inline-block; text-decoration: none; -webkit-text-size-adjust: none;background-color: #3097D1; border-top: 10px solid #3097D1; border-right: 18px solid #3097D1; border-bottom: 10px solid #3097D1; border-left: 18px solid #3097D1;\">\r\n Reset Password\r\n </a>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E; font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">If you did not request a password reset, no further action is required.</p>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E;font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">\r\n Kind Regards,<br>##APP_NAME\r\n </p>\r\n <table class=\"subcopy\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; border-top: 1px solid #EDEFF2; margin-top:25px; padding-top: 25px;\">\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;color: #74787E; line-height: 1.5em; margin-top: 0; text-align: left; font-size: 12px;\">\r\n If you\'re having trouble clicking the \"Reset Password\" button, copy and paste the URL below into your web browser: \r\n <a href=\"##LINK\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #3869D4;\"\r\n >\r\n ##LINK\r\n </a>\r\n </p>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table class=\"footer\" align=\"center\" width=\"570\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 0 auto; padding: 0; text-align: center; width: 570px; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 570px;\">\r\n <tr>\r\n <td class=\"content-cell\" align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; padding: 35px;\">\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; line-height: 1.5em; margin-top: 0; color: #AEAEAE; font-size: 12px; text-align: center;\">\r\n &copy; 2018 ##APP_NAME. All rights reserved.\r\n </p>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n</table>',1,'2020-06-05 13:00:39','2020-06-05 13:00:39',NULL),(291,41,'new-file-service-created-email','New file service has been created','<table class=\"wrapper\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #f5f8fa; margin: 0; padding: 0; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table class=\"content\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 0; padding: 0; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td class=\"header\" style=\"font-family: Avenir, Helvetica, sans-serif;box-sizing: border-box; padding: 25px 0; text-align: center;\">\r\n <a href=\"##APP_URL\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #bbbfc3; font-size: 19px; font-weight: bold; text-decoration: none; text-shadow: 0 1px 0 white;\">\r\n <img src=\"##APP_LOGO\" alt=\"##APP_NAME\" style=\"max-width:300px\">\r\n </a>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td class=\"body\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #FFFFFF; border-bottom: 1px solid #EDEFF2; border-top: 1px solid#EDEFF2; margin: 0; padding: 0; width: 100%;-premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <table class=\"inner-body\" align=\"center\" width=\"570\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; background-color: #FFFFFF; margin: 0 auto; padding: 0; width: 570px; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 570px;\">\r\n <tr>\r\n <td class=\"content-cell\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; padding: 35px;\">\r\n <h1 style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #2F3133; font-size: 19px; font-weight: bold; margin-top: 0; text-align: left;\"> \r\n Hi there,\r\n </h1>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E;font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">\r\n A new file service has been created:\r\n </p>\r\n\r\n <strong>Customer:</strong>\r\n <p>##CUSTOMER_NAME</p>\r\n <strong>Car:</strong>\r\n <p>##CAR_NAME</p>\r\n\r\n <table class=\"action\" align=\"center\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 30px auto; padding: 0; text-align: center; width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 100%;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir,Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n\r\n <a href=\"##LINK\" class=\"button button-blue\" target=\"_blank\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; border-radius: 3px; box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16); color: #FFF; display: inline-block; text-decoration: none; -webkit-text-size-adjust: none;background-color: #3097D1; border-top: 10px solid #3097D1; border-right: 18px solid #3097D1; border-bottom: 10px solid #3097D1; border-left: 18px solid #3097D1;\">\r\n File Service\r\n </a>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E; font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">If you did not request a file service, no further action is required.</p>\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #74787E;font-size: 16px; line-height: 1.5em; margin-top: 0; text-align: left;\">\r\n Kind Regards,<br>##APP_NAME\r\n </p>\r\n <table class=\"subcopy\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; border-top: 1px solid #EDEFF2; margin-top:25px; padding-top: 25px;\">\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;color: #74787E; line-height: 1.5em; margin-top: 0; text-align: left; font-size: 12px;\">\r\n If you\'re having trouble clicking the \"File Service\" button, copy and paste the URL below into your web browser: \r\n <a href=\"##LINK\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; color: #3869D4;\"\r\n >\r\n ##LINK\r\n </a>\r\n </p>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n\r\n <tr>\r\n <td style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box;\">\r\n <table class=\"footer\" align=\"center\" width=\"570\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; margin: 0 auto; padding: 0; text-align: center; width: 570px; -premailer-cellpadding: 0; -premailer-cellspacing: 0; -premailer-width: 570px;\">\r\n <tr>\r\n <td class=\"content-cell\" align=\"center\" style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; padding: 35px;\">\r\n <p style=\"font-family: Avenir, Helvetica, sans-serif; box-sizing: border-box; line-height: 1.5em; margin-top: 0; color: #AEAEAE; font-size: 12px; text-align: center;\">\r\n &copy; 2018 ##APP_NAME. All rights reserved.\r\n </p>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n</table>',1,'2020-06-05 13:00:39','2020-06-05 13:00:39',NULL),(292,41,'file-service-modified-email','Your mod file is ready !','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hi there,</h1>\r\n\r\n <p>Your modified file has been modified/completed</p>\r\n <strong>Car:</strong>\r\n\r\n <p>##CAR_NAME</p>\r\n\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td><a href=\"##LINK\" target=\"_blank\">File Service </a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n <p>If you did not request a file service, no further action is required.</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>If you&#39;re having trouble clicking the &quot;File Service&quot; button, copy and paste the URL below into your web browser: <a href=\"##LINK\"> ##LINK </a></p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2020-06-05 13:00:40','2020-06-05 13:00:40',NULL),(293,41,'file-service-processed-email','We have started work on your file !','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hi ##CUSTOMER_NAME,</h1>\r\n\r\n <p>Your file service (##CAR_NAME) has been picked up by our engineer who<br />\r\n has started working on it.</p>\r\n\r\n <p>This email is automatically sent when an engineer downloads your Original file.</p>\r\n\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td><a href=\"##LINK\" target=\"_blank\">File Service </a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>If you&#39;re having trouble clicking the &quot;File Service&quot; button, copy and paste the URL below into your web browser: <a href=\"##LINK\"> ##LINK </a></p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2020-06-05 13:00:40','2020-06-05 13:00:40',NULL),(294,41,'new-ticket-created','##CUSTOMER_NAME has made a Support Ticket','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello Admin!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>A new support ticket has been created by ##CUSTOMER_NAME regarding ##MESSAGE.</p>\r\n\r\n <p>Please log in to view the ticket</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2020-06-05 13:00:40','2020-06-05 13:00:40',NULL),(295,41,'new-file-ticket-created','Reply of your generated ticket','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello ##CUSTOMER_NAME!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>You have received a reply to your support ticket regarding ##MESSAGE.</p>\r\n\r\n <p>Please log in to view the ticket</p>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2020-06-05 13:00:40','2020-06-05 13:00:40',NULL),(296,41,'reply-to-your-ticket','##CUSTOMER_NAME has responded to you !','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"text-align:center\"><a href=\"##APP_URL\"><img alt=\"##APP_NAME\" src=\"##APP_LOGO\" /> </a></td>\r\n </tr>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello Admin!</h1>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>You have received a message from ##CUSTOMER_NAME to your support ticket regarding ##MESSAGE.</p>\r\n\r\n <p>Please log in to view the ticket</p>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <p>Kind Regards,<br />\r\n ##APP_NAME</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2018 ##APP_NAME. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2020-06-05 13:00:40','2020-06-05 13:00:40',NULL),(297,41,'customer-welcome-email','Welcome: Company has been registered','<table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"background-color:#ffffff; width:100%\">\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h1>Hello! ##USER_NAME</h1>\r\n\r\n <p>Thank you for your payment. If you have any questions regarding setup and using your new system please first contact <a href=\"mailto:<EMAIL>\"><EMAIL></a></p>\r\n\r\n <p>Kind Regards,<br />\r\n MyRemaps Team.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:570px\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <p>&copy; 2019 MyRemaps Team. All rights reserved.</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>',1,'2020-06-05 13:00:40','2020-06-05 13:00:40',NULL); /*!40000 ALTER TABLE `email_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `file_service_tuning_type_option` -- DROP TABLE IF EXISTS `file_service_tuning_type_option`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `file_service_tuning_type_option` ( `file_service_id` int(11) unsigned NOT NULL, `tuning_type_option_id` int(11) unsigned NOT NULL, PRIMARY KEY (`file_service_id`,`tuning_type_option_id`), KEY `file_service_id` (`file_service_id`), KEY `tuning_type_option_id` (`tuning_type_option_id`), CONSTRAINT `file_service_tuning_type_option_ibfk_1` FOREIGN KEY (`file_service_id`) REFERENCES `file_services` (`id`) ON DELETE CASCADE, CONSTRAINT `file_service_tuning_type_option_ibfk_2` FOREIGN KEY (`tuning_type_option_id`) REFERENCES `tuning_type_options` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `file_service_tuning_type_option` -- LOCK TABLES `file_service_tuning_type_option` WRITE; /*!40000 ALTER TABLE `file_service_tuning_type_option` DISABLE KEYS */; INSERT INTO `file_service_tuning_type_option` VALUES (28,16),(29,16),(30,16),(31,12),(32,15),(37,23),(41,13),(43,12),(44,13),(45,21),(46,13),(48,16),(53,12),(53,13),(59,12),(62,23),(66,16),(68,16),(69,13),(70,20),(72,13),(74,16),(75,16),(76,23),(83,16),(85,16),(87,16),(88,23),(95,13),(97,27),(98,13),(105,16),(110,16),(111,16),(113,18),(114,12),(123,16),(126,16),(129,16),(131,17),(132,48),(142,16),(145,12),(147,16),(148,20),(149,13),(150,16),(151,16),(154,12),(154,23),(156,16),(160,60),(164,12),(167,16),(168,16),(169,16),(173,16),(175,23),(192,31),(206,13),(214,16),(215,16),(216,12),(216,13),(219,29),(221,16),(223,16),(224,16),(226,16),(228,23),(230,16),(234,62),(235,30),(237,13),(240,12),(240,39),(243,29),(244,13),(249,16),(253,29),(256,16),(259,12),(260,30),(262,16),(265,16),(268,67),(270,68),(273,30),(274,30),(275,16),(277,16),(278,12),(282,12),(283,15),(295,18),(296,12),(300,12),(304,13),(307,18),(309,16),(313,16),(315,12),(319,48),(322,17),(331,12),(340,16),(341,16),(345,13),(354,17),(356,12),(356,13),(360,12),(360,13),(361,16),(364,58),(365,16),(368,17),(377,16),(381,16),(382,16),(384,16),(385,23),(387,16),(388,12),(390,13),(391,13),(392,30),(395,18),(397,12),(397,13),(400,13),(401,22),(405,12),(407,12),(408,16),(409,23),(421,12),(421,13),(425,16),(428,20),(430,23),(431,64),(433,30),(436,28),(437,16),(438,12),(439,13),(441,28),(444,28),(447,12),(447,13),(455,13),(457,31),(458,16),(467,16),(468,64),(471,12),(471,13),(473,58),(473,74),(475,12),(478,16),(493,13),(493,14),(494,60),(496,12),(502,16),(503,16),(505,64),(508,16),(515,23),(530,16),(532,16),(538,13),(540,24),(542,16),(551,16),(557,12),(561,12),(564,23),(567,15),(570,17),(590,16),(597,23),(598,16),(603,48),(608,17),(616,13),(617,16),(619,12),(619,13),(619,22),(621,16),(633,18),(636,16),(642,62),(652,12),(654,16),(656,16),(657,17),(681,16),(685,18),(689,18),(693,31),(707,12),(707,13),(715,16),(719,12),(720,12),(720,13),(723,12),(723,13),(728,12),(729,16),(732,16),(737,15),(739,12),(742,16),(744,30),(746,15),(749,20),(768,12),(771,16),(776,48),(778,15),(780,12),(780,13),(781,23),(786,12),(786,13),(787,18),(791,30),(793,23),(795,18),(801,13),(807,12),(807,13),(819,23),(821,21),(823,13),(825,64),(827,15),(836,16),(837,20),(843,17),(844,12),(846,12),(846,13),(852,16),(856,60),(857,31),(861,18),(871,15),(875,16),(877,17),(878,12),(880,16),(885,60),(887,16),(889,18),(894,15),(895,13),(897,23),(899,16),(900,16),(906,16),(912,18),(924,16),(934,18),(942,18),(946,15),(946,16),(947,16),(948,74),(958,12),(960,16),(963,16),(973,15),(977,16),(981,14),(981,20),(981,23),(987,74),(1003,17),(1005,31),(1007,18),(1008,18),(1019,12),(1019,13),(1041,16),(1046,16),(1051,16),(1056,12),(1057,13),(1060,23),(1064,16),(1069,16),(1086,20),(1096,12),(1096,13),(1102,13),(1104,16),(1113,16),(1114,17),(1115,12),(1128,64),(1129,16),(1134,17),(1136,30),(1148,12),(1148,13),(1150,12),(1151,17),(1158,23),(1179,13),(1180,23),(1183,17),(1184,12),(1188,48),(1190,23),(1197,16),(1200,24),(1221,21),(1238,36),(1248,16),(1251,12),(1256,16),(1263,17),(1276,17),(1278,16),(1280,18),(1296,16),(1318,16),(1321,16),(1340,17),(1347,13),(1347,22),(1358,16),(1364,23),(1366,16),(1367,16),(1368,16),(1370,62),(1373,16),(1375,12),(1375,13),(1380,18),(1387,15),(1392,20),(1401,62),(1402,12),(1402,13),(1413,16),(1426,16),(1431,31),(1434,17),(1438,16),(1441,16),(1450,16),(1474,18),(1475,16),(1476,18),(1479,16),(1492,16),(1501,23),(1505,18),(1509,62),(1528,16),(1534,12),(1564,18),(1571,23),(1573,18),(1579,16),(1585,62),(1588,15),(1588,17),(1597,90),(1597,92),(1603,124),(1603,125),(1605,17),(1606,17),(1610,16),(1618,16),(1619,30),(1622,16),(1627,114),(1629,23),(1635,85),(1635,86),(1635,87),(1657,166),(1657,167),(1657,168),(1657,170),(1660,13),(1667,16),(1673,16),(1675,171),(1675,172),(1675,179),(1681,171),(1681,172),(1681,179),(1682,110),(1683,114),(1688,13),(1696,110),(1713,166),(1713,167),(1713,168),(1720,93),(1726,16),(1729,180),(1730,180),(1731,93),(1732,180),(1749,142),(1749,143),(1752,82),(1754,12),(1754,13),(1757,16),(1761,114),(1766,124),(1766,125); /*!40000 ALTER TABLE `file_service_tuning_type_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `file_services` -- DROP TABLE IF EXISTS `file_services`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `file_services` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) unsigned NOT NULL, `tuning_type_id` int(11) unsigned NOT NULL, `make` varchar(191) NOT NULL, `model` varchar(191) NOT NULL, `generation` varchar(191) NOT NULL, `engine` varchar(191) NOT NULL, `ecu` varchar(191) DEFAULT NULL, `fuel_type` varchar(191) DEFAULT NULL, `engine_hp` varchar(191) DEFAULT NULL, `year` year(4) NOT NULL, `gearbox` varchar(191) NOT NULL, `license_plate` varchar(191) DEFAULT NULL, `vin` varchar(191) DEFAULT NULL, `orginal_file` varchar(191) DEFAULT NULL, `modified_file` varchar(191) DEFAULT NULL, `note_to_engineer` varchar(191) DEFAULT NULL, `notes_by_engineer` text DEFAULT NULL, `status` enum('O','W','C') NOT NULL DEFAULT 'O' COMMENT '''O''=>''open'',''W''=>''waiting'',''C''=>''completed''', `displayable_id` bigint(20) unsigned NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp(), `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `tuning_type_id` (`tuning_type_id`), KEY `user_id` (`user_id`), CONSTRAINT `file_services_ibfk_1` FOREIGN KEY (`tuning_type_id`) REFERENCES `tuning_types` (`id`) ON DELETE CASCADE, CONSTRAINT `file_services_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=1768 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `file_services` -- LOCK TABLES `file_services` WRITE; /*!40000 ALTER TABLE `file_services` DISABLE KEYS */; INSERT INTO `file_services` VALUES (18,24,15,'ford','focus','3rd','2.0','delphi dcm3.5',NULL,'1',2021,'2',NULL,NULL,'1538064141.','1538065168.',NULL,NULL,'C',1,'2018-12-11 05:18:49','2018-09-27 15:19:28',NULL),(24,19,15,'NISSAN','XTRAIL','T30','2.0','BOSCH',NULL,'150',2013,'1',NULL,NULL,'1538564558.','1538564862.COD','and egr','disconnect all dpf sensors and it tells me egr need unplugging, but the fault you have suggests it already thinks it is','C',2,'2018-12-11 05:18:52','2018-10-03 10:07:42',NULL),(28,29,14,'VW','TRANSPORTER','5','1900','BOSCH',NULL,'109',2015,'1',NULL,NULL,'1538673128.null','1538673508.cod',NULL,NULL,'C',3,'2018-12-11 05:18:56','2018-10-04 18:18:28',NULL),(29,19,14,'ford','transit','14 on','2.2','sid208',NULL,'125',2024,'2',NULL,NULL,'1538727627.','1538730507.cod',NULL,NULL,'C',4,'2018-12-11 05:18:59','2018-10-05 10:08:27',NULL),(30,19,14,'landrover','rr sport','1st','2.7tdi','sid',NULL,'190',2018,'3',NULL,NULL,'1538730079.','1538730650.cod',NULL,NULL,'C',5,'2018-12-11 05:19:03','2018-10-05 10:10:50',NULL),(31,24,11,'vw','touran','6at','2000','siemens ppd1.2',NULL,'1',2018,'2',NULL,NULL,'1539015118.','1539015884.cod',NULL,NULL,'C',6,'2018-12-11 05:19:06','2018-10-08 17:24:44',NULL),(32,19,14,'mercedes','906 sprinter','2nd','130','edc16cp31/33',NULL,'130',2017,'1',NULL,NULL,'1539078052.','1539080363.cod',NULL,'unplug sensors egt and pressure','C',7,'2018-12-11 05:19:12','2018-10-09 11:19:23',NULL),(33,36,11,'vw','golf r','mark 7','2.0tsi','vw continental',NULL,'310',2026,'4',NULL,NULL,'1539251376.','1539251823.cod','stage one remap',NULL,'C',8,'2018-12-11 05:19:17','2018-10-11 10:57:24',NULL),(34,19,15,'vauxhall','astra j','j','a17dtj','denso dce02',NULL,NULL,2000,'1',NULL,NULL,'1539253081.','1539254612.cod',NULL,'unplug all sensors. on some models it may be required to go in to VARIANT CODING OF THE DASHBOARD AND CHANGE TO A PETROL MODEL. KEYCODE NEEDED','C',9,'2018-12-11 05:19:20','2018-10-11 11:43:32',NULL),(35,19,15,'ford','transit connect','2nd','1.8','sid',NULL,NULL,2022,'1',NULL,NULL,'1539335184.','1539336019.cod',NULL,NULL,'C',10,'2018-12-11 05:19:24','2018-10-12 10:20:19',NULL),(37,36,11,'Vauahall','Vivaro','B','1.6','Bosch',NULL,NULL,2025,'1',NULL,NULL,'1539429274.6 TDCi van SF10 UBL','1539431311.cod',NULL,NULL,'C',11,'2018-12-11 05:19:27','2018-10-13 12:48:31',NULL),(40,19,15,'ford','connect','2nd','1.8','sid',NULL,NULL,2000,'1','yd63gpu',NULL,'1539684363.','1539685380.cod',NULL,NULL,'C',12,'2018-12-11 05:19:30','2018-10-16 11:23:00',NULL),(41,45,11,'FORD','FOCUS','2','1.8TDCI','SIEMEMS',NULL,'115',2016,'1','DONNA',NULL,'1539688720.dat','1539692570.cod',NULL,NULL,'C',13,'2018-12-11 05:19:34','2018-10-16 13:22:50',NULL),(42,45,11,'VW','Tiguan','2018','2.0','ECD17C74',NULL,'150',2028,'2','DE12RLE',NULL,'1539697168.','1539698936.cod',NULL,NULL,'C',14,'2018-12-11 05:19:38','2018-10-16 15:34:01',NULL),(43,24,11,'nissan','xtrail','h','2000','h',NULL,'1',2018,'3','i',NULL,'1539700139.0D 150BHP AUTO','1539701623.cod',NULL,NULL,'C',15,'2018-12-11 05:19:42','2018-10-16 15:54:02',NULL),(44,28,11,'range rover','vouge','l322','3.6','eu4',NULL,NULL,2017,'3','ra07',NULL,'1539874189.','1539875102.cod',NULL,NULL,'C',16,'2018-12-11 05:19:53','2018-10-18 16:07:28',NULL),(45,43,11,'BMW','M3','E92','4.0 V8','MSS60',NULL,'420',2022,'10','YG62UMR',NULL,'1539972757.','1539974063.cod','Stage 2 with decat',NULL,'C',17,'2018-12-11 05:19:57','2018-10-19 19:34:25',NULL),(46,43,11,'Renault','Traffic','MK2','2.0','EDC17C42',NULL,'90',2022,'2','SB62RVM',NULL,'1539974896.0DCi 90Bhp _SB62 RVM_ Kin Kess Read EDC17C42','1539975913.cod',NULL,NULL,'C',18,'2018-12-11 05:20:03','2018-10-19 20:05:18',NULL),(47,43,11,'Toyota','Hilux','Euro 6','2GD-FTV','Denso',NULL,'150',2028,'3','EY68 WZA',NULL,'1540030828.txt','1540032116.cod',NULL,NULL,'C',19,'2018-12-11 05:20:06','2018-10-20 11:42:18',NULL),(48,19,14,'landrover','rr sport','1st','3.6tdv8','siemens',NULL,NULL,2000,'1','pe07wgw',NULL,'1540196841.6','1540199694.cod',NULL,NULL,'C',20,'2018-12-11 05:20:11','2018-10-22 10:14:56',NULL),(49,43,11,'Range Rover','Evogue','MK2','2.2','EDC17',NULL,'190',2000,'3','VD57 ONY',NULL,'1540217494.2 190Bhp _VD57 ONY_ Tony Kess read EDC17','1540218316.cod',NULL,NULL,'C',21,'2018-12-11 05:20:14','2018-10-22 15:25:20',NULL),(50,43,11,'Mercedes','E250','A207','2.1','Delphi CRD3.X',NULL,'204',2000,'3','B4 DWO',NULL,'1540221548.','1540221838.cod',NULL,NULL,'C',22,'2018-12-11 05:20:17','2018-10-22 16:24:02',NULL),(51,19,11,'ford','transit','ty','2.2 115','sid208',NULL,'115',2022,'2','bk12vue',NULL,'1540285021.','1540285891.cod',NULL,NULL,'C',23,'2018-12-11 05:20:22','2018-10-23 10:11:38',NULL),(52,21,11,'ford','fiesta','5','1.4tdci','sid802',NULL,'67',2016,'1','kc06xjt',NULL,'1540369147.4TDCI','1540371530.cod',NULL,NULL,'C',24,'2018-12-11 05:20:29','2018-10-24 09:58:54',NULL),(53,43,11,'BMW','5 series','F10','2.0','EDC17C41',NULL,'184',2000,'3','YB11 XWP',NULL,'1540402819.','1540405919.cod',NULL,'egr has to be unplugged.','C',25,'2018-12-11 05:20:35','2018-10-24 19:32:10',NULL),(54,43,15,'Ford','Kuga','TDCi','2.0','DCM3.5',NULL,'140',2023,'1','EU13WNP',NULL,'1540488758.5','1540489965.cod','P2463:00-27',NULL,'C',26,'2018-12-11 05:20:40','2018-10-25 19:13:04',NULL),(55,36,11,'BMW','5 Series','?','2LD','Bosch',NULL,NULL,2000,'1','DN63 JYH',NULL,'1540636486.txt','1540642813.cod',NULL,NULL,'C',27,'2018-12-11 05:20:43','2018-10-27 13:20:17',NULL),(56,19,15,'audi','a6','c6','2.0 bre','edc16',NULL,'130',2017,'3','kv07kf',NULL,'1540912522.a6','1540916821.cod',NULL,NULL,'C',28,'2018-12-11 05:20:48','2018-10-30 17:27:08',NULL),(57,24,11,'fiat','ducato','2002','7','7',NULL,'1',2013,'1','j',NULL,'1540981887.','1540983297.cod',NULL,NULL,'C',29,'2018-12-11 05:20:51','2018-10-31 11:55:10',NULL),(58,24,15,'kia','karens','3','3','3',NULL,'1',2018,'3','g',NULL,'1540985305.','1540986567.cod',NULL,NULL,'C',30,'2018-12-11 05:20:58','2018-10-31 12:49:30',NULL),(59,43,11,'Ford','Transit','MK7','2.2','SID208/209',NULL,'155',2022,'2','E16 REC',NULL,'1540998194.2TDCi 155Bhp _E16 REC_ <NAME> Read SIED208_209','1540999723.cod',NULL,NULL,'C',31,'2018-12-11 05:21:01','2018-10-31 16:28:45',NULL),(60,19,11,'merc','ml350','w164','3.0','edc17',NULL,'221',2020,'3','ta51her',NULL,'1541000749.','1541002053.unq',NULL,NULL,'C',32,'2018-12-11 05:21:05','2018-10-31 17:07:37',NULL),(61,23,15,'mercedes','sprinter','2009','2.2','EDC16CP31CAN',NULL,NULL,2019,'2','KR09YOJ',NULL,'1541070669.','1541071249.cod',NULL,NULL,'C',33,'2018-12-11 05:21:08','2018-11-01 12:20:52',NULL),(62,43,11,'Ford','Transit','MK8','2.2','SID208/209',NULL,'125',2024,'2','FD64BVJ',NULL,NULL,'1541075361.cod',NULL,NULL,'C',34,'2018-12-11 05:21:12','2018-11-01 13:29:27',NULL),(63,43,11,'VW','POLO','6C1','1.8','SIMOS18',NULL,'192',2025,'2','S31TYN',NULL,'1541078803.8TFSi 192Bhp _S31 TYN_ Soi Kess VR File SIMOS18','1541082519.cod','MAKE IT FAST!',NULL,'C',35,'2018-12-11 05:21:17','2018-11-01 15:28:51',NULL),(64,19,15,'hyundai','tucon','1st','2.o','edc16',NULL,NULL,2017,'1','tk07pkx',NULL,'1541085814.','1541086910.cod',NULL,'IF THIS IS AN AUTO IT MIGHT NOT WORK. A BDM READ IS NEEDED','C',36,'2018-12-11 05:21:22','2018-11-01 16:42:07',NULL),(65,27,11,'FORD','transit','MK8','2.2tdci','sid208/209',NULL,'125',2000,'2','W30DSY',NULL,'1541087975.','1541089221.cod',NULL,NULL,'C',37,'2018-12-11 05:21:25','2018-11-01 17:20:25',NULL),(66,19,14,'merc','ml280cdi','w164','3.0','edc16',NULL,'190',2017,'3','lm07d-p',NULL,'1541157400.','1541158005.cod',NULL,'unplug actuator','C',38,'2018-12-11 05:21:29','2018-11-02 12:26:49',NULL),(67,23,17,'mercedes','sprinter','311','2.2','EDCC16CP31CAN',NULL,NULL,2019,'2','KR09YOJ',NULL,'1541420303.','1541424815.cod','Remove existing remap, revert to standard dpf delete and speed limiter enabled',NULL,'C',39,'2018-12-11 05:21:32','2018-11-05 14:33:43',NULL),(68,19,14,'landrover','discovery','3','20.','siemens',NULL,NULL,2016,'3','k188ler',NULL,'1541423011.','1541424225.cod',NULL,NULL,'C',40,'2018-12-11 05:21:36','2018-11-05 14:23:47',NULL),(69,24,11,'nissan','pathfinder','1','2500','denso',NULL,'1',2017,'2','07',NULL,'1541437633.','1541438571.cod',NULL,'actuator has to be unplugged','C',41,'2018-12-11 05:21:40','2018-11-05 18:23:01',NULL),(70,45,11,'Audi','A1','2010','1.6tdi','simos pcr2.1 can',NULL,NULL,2020,'1','AV60 UXO',NULL,'1541581005.6tdi ORI','1541583470.cod',NULL,NULL,'C',42,'2018-12-11 05:21:43','2018-11-07 10:37:53',NULL),(71,45,11,'Audi','TT','8j3','2.0TDI','EDC17C46',NULL,NULL,2022,'6','BJ62RBX',NULL,'1541583257.0TDI ORI','1541584501.cod',NULL,NULL,'C',43,'2018-12-11 05:21:48','2018-11-07 10:55:03',NULL),(72,43,11,'2015Ford','Connect','MK3','1.6','SID807EVO',NULL,'116',2025,'2','DG13EDY',NULL,'1541709636.pth','1541711507.unq','EGR Fault codes P00405:00-AF P0405',NULL,'C',44,'2018-12-11 05:21:51','2018-11-08 22:12:14',NULL),(73,19,15,'ford','mondeo','5th','2.2','edc17',NULL,NULL,2000,'3','ef11yhv',NULL,'1541765670.','1541768865.unq',NULL,NULL,'C',45,'2018-12-11 05:21:55','2018-11-09 14:07:47',NULL),(74,19,14,'landrover','disco3','3rd','2.7','siemens',NULL,NULL,2000,'3','bf57of',NULL,'1541778730.7','1541779563.cod',NULL,NULL,'C',46,'2018-12-11 05:22:00','2018-11-09 17:06:05',NULL),(75,19,14,'audi','a6','c6','2.0tdi bre','edc16',NULL,'140',2016,'2','pu06gal',NULL,'1542281098.','1542282546.cod',NULL,NULL,'C',47,'2018-12-11 05:22:03','2018-11-15 12:49:09',NULL),(76,19,11,'vw','crafter','2nd','2.5 bjl','edc16u34',NULL,'136',2020,'12','y10gaf',NULL,'1542367755.','1542369446.cod',NULL,NULL,'C',48,'2018-12-11 05:22:07','2018-11-16 12:57:29',NULL),(77,24,11,'ford','transit','6','6','6',NULL,'1',2023,'2','cx13ule',NULL,'1542447704.','1542449275.cod',NULL,NULL,'C',49,'2018-12-11 05:22:12','2018-11-17 11:07:58',NULL),(78,36,11,'Range Rover','3L Tdi','3','3.0L','BMW',NULL,NULL,2014,'3','RA04 MZF',NULL,'1542455426.0L TDi RA04 MZF','1542456201.cod',NULL,NULL,'C',50,'2018-12-11 05:22:17','2018-11-17 13:03:23',NULL),(79,43,11,'Mercedes','313','?','2.1','CRD2X',NULL,NULL,2021,'2','FP11MZE',NULL,'1542455637.','1542456401.cod',NULL,NULL,'C',51,'2018-12-11 05:22:20','2018-11-17 13:06:43',NULL),(80,46,11,'ford','transit','5','2.2','?',NULL,'130',2017,'1','yk07 yon',NULL,'1542460255.','1542461123.cod',NULL,'https://fordtransit.org/forum/viewtopic.php?f=54&t=129845','C',52,'2018-12-11 05:22:24','2018-11-17 14:25:32',NULL),(82,45,15,'mazda','3','2007','2.0','denso renesas',NULL,'140',2017,'1','FD57 FBB',NULL,'1542799596.','1542800447.cod',NULL,NULL,'C',53,'2018-12-11 05:22:28','2018-11-21 11:40:50',NULL),(83,43,14,'Mitsubishi','Outlander','MK2','2.0','edc16+',NULL,'140',2019,'1','GV59 UDP',NULL,'1542801624.0D BSY 140Bhp _GV59 UDP_ ADM <NAME> Read EDC16','1542804085.cod','P0102, P0401, P0487, P2141, P2142',NULL,'C',54,'2018-12-11 05:22:32','2018-11-21 12:41:30',NULL),(84,19,15,'ford','transit','tty','2.2','sid208',NULL,NULL,2022,'2','nj62usg',NULL,'1542806988.','1542808449.cod',NULL,NULL,'C',55,'2018-12-11 05:22:37','2018-11-21 13:54:11',NULL),(85,19,14,'landrover','discovery','3rd','2.7','siemens',NULL,NULL,2018,'3','fy09ypx',NULL,'1542890689.7','1542891351.cod',NULL,NULL,'C',56,'2018-12-11 05:22:41','2018-11-22 12:55:53',NULL),(86,46,11,'bmw','530d','e60','3l','.',NULL,'230',2015,'2','ls05 lbo',NULL,'1542895940.','1542898275.cod','turn it right up chris if you can - its my own car lol',NULL,'C',57,'2018-12-11 05:22:45','2018-11-22 14:51:20',NULL),(87,45,14,'VW','Transporter','T5','2000','EDC17CP20',NULL,NULL,2000,'1','OV64 LRL',NULL,'1542905442.txt','1542906116.cod',NULL,NULL,'C',58,'2018-12-11 05:23:07','2018-11-22 17:02:07',NULL),(88,43,11,'BMW','M5','F10','4.4','MEVD17',NULL,'560',2021,'8','EF61XUR',NULL,'1542971800.4V8 560Bhp _EF61 XUR_ Fayek Kess VR File','1542975203.cod','Adjust Performance gauge',NULL,'C',59,'2018-12-11 05:23:10','2018-11-23 12:13:27',NULL),(90,46,11,'ford','transit','4th','2.4','.',NULL,'125',2013,'1','ym03 xls',NULL,'1543061640.','1543064318.cod',NULL,NULL,'C',61,'2018-12-11 05:23:18','2018-11-24 12:58:41',NULL),(91,19,15,'vw','passat','6b','2.0 pd 170 bmr','siemens',NULL,'170',2018,'2','l80 ods',NULL,'1543395464.','1543397274.cod',NULL,NULL,'C',62,'2018-12-11 05:23:22','2018-11-28 09:28:03',NULL),(93,27,11,'AUDI','A5','MK8','2.0TDI','BOSCH',NULL,'177',2024,'2','RE14HZZ',NULL,'1543407535.','1543409093.cod',NULL,NULL,'C',63,'2018-12-11 05:23:26','2018-11-28 12:44:57',NULL),(94,29,11,'bmw','335','3','3.0','bosch',NULL,'282',2018,'3','exz 7196',NULL,'1543509789.','1543509849.cod',NULL,'this had a shit map on it already, cleared most of it and done it properly','C',64,'2018-12-11 05:23:30','2018-11-29 16:44:15',NULL),(95,28,11,'land rover','disco3','3','2.7 tdv6','eu4',NULL,NULL,2018,'1','h101',NULL,'1543592125.','1543592544.cod',NULL,NULL,'C',65,'2018-12-11 05:23:33','2018-11-30 15:42:28',NULL),(96,45,11,'BMW','325','E90','2500','EDC16',NULL,'194',2019,'3','YC09 LGV',NULL,'1543832142.','1543833825.cod',NULL,NULL,'C',66,'2018-12-11 05:23:40','2018-12-03 10:43:58',NULL),(97,19,11,'audi','a6','2015','2.0tdi','edc17c64',NULL,'190',2025,'2','na11saa',NULL,'1543846658.txt','1543848281.cod',NULL,NULL,'C',67,'2018-12-11 05:23:46','2018-12-03 14:44:43',NULL),(98,45,11,'Land rover','discovery','3','2.7tdi','sid204',NULL,NULL,2016,'1','DE56 YDN',NULL,'1543915198.7tdi de56ydn read','1543918055.cod',NULL,'Cover yourself with this vehicle.\r\n\r\nit was massively over fuelled, over boosted. clearly tuned by someone that has never done a Siemens system before ! I would point the potential damage the tune that was on it has probably already caused to turbo and especially injectors. For instance the rail pressure (which you should NEVER increase on an JLR 2.7) was raised by 8% !! that\'s not only idiotic but 6% more than the MAX you would raise the stronger Bosch CR system by !!!\r\n\r\nOver boosting does not necessarily mean more power, likewise with over fuelling. The tune I have done should make better power, and not stress things any further','C',68,'2018-12-11 05:23:49','2018-12-04 10:08:23',NULL),(100,39,15,'AUDI','A3','3','1.6','SIEMENS',NULL,'109',2000,'1','LV59 VHY',NULL,'1544004520.','1544005888.cod',NULL,NULL,'C',70,'2018-12-11 05:23:59','2018-12-05 10:31:35',NULL),(101,19,11,'vw','amorak','1st','2.otdi','edc17cp20',NULL,'161',2022,'2','nd62rxc',NULL,'1544090728.txt','1544093105.cod',NULL,NULL,'C',71,'2018-12-11 05:24:03','2018-12-06 10:45:08',NULL),(102,21,11,'audi','s5','2008','4.2','bosch',NULL,NULL,2018,'2','s15jrn',NULL,'1544094661.','1544096212.cod',NULL,NULL,'C',72,'2018-12-11 05:24:07','2018-12-06 11:36:55',NULL),(104,45,11,'BMW','320d','E90','2.0 diesel','EDC16+C35',NULL,NULL,2015,'1','ny05 mwj',NULL,'1544178228.','1544180283.cod',NULL,NULL,'C',73,'2018-12-11 05:24:11','2018-12-07 10:58:07',NULL),(105,45,14,'VW','Caddy','2k','2000','simos pcr2.1 can',NULL,NULL,2021,'1','NA61ZVL',NULL,'1544181255.txt','1544194749.cod','Ori file not found... have sent id, using new protocol',NULL,'C',74,'2018-12-11 05:24:15','2018-12-07 14:59:12',NULL),(106,76,20,'Ford','Ranger','T6','2200','sid209',NULL,'148',2023,'2','YT63PNK',NULL,'1544189451.','1544192996.cod','tune dpf off egr off','OK TUNE+EGR+DPF','C',1,'2018-12-11 05:25:18','2018-12-07 14:30:17',NULL),(107,27,11,'BMW','cooper S','R52','1.6','siemens',NULL,'170',2018,'2','RE08 VVZ',NULL,'1544189703.','1544190790.cod',NULL,NULL,'C',75,'2018-12-11 05:24:19','2018-12-07 13:53:36',NULL),(108,74,20,'BMW','318D','E90','1995CC','EDC17C41',NULL,'140',2019,'2','GY09 KXR',NULL,'1544194262.','1544198992.cod','TUNE DPF EGR PLEASE',NULL,'C',2,'2018-12-11 05:25:22','2018-12-07 16:09:56',NULL),(109,45,15,'Ford','Transit','custom','2.2cdti','sid208',NULL,'123',2024,'2','YP14 XRX',NULL,'1544432022.2 Read','1544436040.cod',NULL,NULL,'C',76,'2018-12-11 05:24:23','2018-12-10 10:00:44',NULL),(110,45,14,'honda','accord','i-dtec','2.2cdti','EDC17CP06',NULL,NULL,2018,'1','re58 wkm',NULL,'1544457148.2 idtec re58wkn read','1544457867.unq',NULL,'can be disconnected if required but not essential','C',77,'2018-12-11 05:24:27','2018-12-10 16:04:48',NULL),(111,45,14,'VW','Transporter','T5','2000','EDC17CP20',NULL,'84',2022,'1','PK12 XVH',NULL,'1544458828.','1544460269.cod','THIS HAS ALREADY BEEN TUNED BY US SENT ORIGINAL ID, CAN YOU RE ADD THE TUNE AND ADDITONAL EGR DELETE PLEASE',NULL,'C',78,'2018-12-11 05:24:36','2018-12-10 16:44:31',NULL),(113,82,15,'volkswagon','passat','mk6','2.0 tdi','ecu',NULL,'140',2018,'2','lr58rvm',NULL,'1544518382.','1544519628.cod',NULL,NULL,'C',80,'2018-12-11 09:13:53','2018-12-11 09:13:53',NULL),(114,43,11,'Ford','Galaxy','MK2','2.0','DCM3.5',NULL,'140',2020,'3','CA60BJY',NULL,'1544541471.5','1544542431.cod',NULL,NULL,'C',81,'2018-12-11 15:33:53','2018-12-11 15:33:53',NULL),(115,43,11,'BMW','525D','E60','2.5','EDC16C31',NULL,'177',2016,'3','LV06 KTC',NULL,'1544543409.','1544545764.unq',NULL,NULL,'C',82,'2018-12-11 16:29:31','2018-12-11 16:29:31',NULL),(119,23,15,'ford','kuga','1','2-0','delphi dcm3.5',NULL,NULL,2024,'2','PF14BTY',NULL,'1544702899.','1544704140.cod',NULL,NULL,'C',83,'2018-12-13 12:29:12','2018-12-13 12:29:12',NULL),(120,84,15,'VAUXHALL','ZAFIRA','B','1.7','DENSO',NULL,NULL,2021,'1','DN11 MGU',NULL,'1544718548.','1544720209.cod',NULL,'clear counters and codes','C',84,'2018-12-13 16:57:11','2018-12-13 16:57:11',NULL),(121,43,11,'Ford','Fiesta','MK7','1.0','MED17',NULL,'100',2022,'1','EF62 KTJ',NULL,'1544794807.0T EcoB 100Bhp _EF62 KTJ_ Glen Kess Read','1544797366.cod',NULL,NULL,'C',85,'2018-12-14 14:22:48','2018-12-14 14:22:48',NULL),(122,43,11,'Audi','SQ5','MK1','3.0','EDC17CP44',NULL,'313',2024,'3','GY14 WSJ',NULL,'1544802705.0TDi 313Bhp _GY14 WSJ_ Gary Kess Read VR','1544804306.cod',NULL,NULL,'C',86,'2018-12-14 16:18:32','2018-12-14 16:18:32',NULL),(123,19,14,'mitsubishi','l200','2nd','2.5did','denso',NULL,'136',2016,'1','yp06sfe',NULL,'1545044518.','1545045934.cod',NULL,NULL,'C',87,'2018-12-17 11:25:41','2018-12-17 11:25:41',NULL),(124,74,20,'BMW','325d','E90','2993','edc16+ c35',NULL,'194',2018,'2','MJ58 ESN',NULL,'1545055208.BIN','1545056668.cod','TUNE DPF EGR PLEASE',NULL,'C',3,'2018-12-17 14:56:00','2018-12-17 14:56:00',NULL),(125,74,20,'VW','GOLF','BLUEMOTION TDI','1598','PCR2.1',NULL,'105',2020,'1','MX60YAY',NULL,'1545134569.1 VR','1545139180.cod','TUNE DPF EGR PLEASE',NULL,'C',4,'2018-12-18 13:19:48','2018-12-18 13:19:48',NULL),(126,45,14,'VW','Transporter','T5','2000','EDC17CP20',NULL,NULL,2021,'2','FG11 PUE',NULL,'','1545147706.cod','THIS HAS ALREADY BEEN TUNED BY US SENT ORIGINAL ID, CAN YOU RE ADD THE TUNE AND ADDITONAL EGR DELETE PLEASE',NULL,'C',88,'2018-12-19 11:04:12','2018-12-18 15:41:51',NULL),(128,43,11,'Mercedes','E250','C207','2.1','CRD3.X',NULL,'204',2013,'5','G6 PFX',NULL,'1545219416.X','1545222760.cod',NULL,NULL,'C',90,'2019-03-19 20:12:42','2019-03-19 20:12:42',NULL),(129,19,14,'vw','golf','mk6','1.6tdi cayc','pcr2.1',NULL,NULL,2019,'1','sd59msv',NULL,'1545296299.','1545297517.cod','ecu was already unlocked and suspect its had a dpf off before as values dont ring true.','fyi dpf delete is poor and incomplete','C',91,'2018-12-20 09:55:22','2018-12-20 09:55:22',NULL),(130,19,11,'ford','transit','mk6','2.2','sid208',NULL,'140',2022,'2','yt62myn',NULL,'1545303759.','1545304937.cod',NULL,'messed with overtuned aleady. done best with this','C',92,'2018-12-20 11:23:00','2018-12-20 11:23:00',NULL),(131,19,14,'landrover','freelander','2nd','2.2','edc17',NULL,NULL,2023,'3','oe13syw',NULL,'1545309959.','1545311244.cod',NULL,NULL,'C',93,'2018-12-20 13:07:28','2018-12-20 13:07:28',NULL),(132,19,14,'audi','q7','2nd','3.0tdi casa','edc17c14',NULL,NULL,2019,'3','xxxxxxxx',NULL,'1545317473.','1545322641.cod','08224 code showing',NULL,'C',94,'2018-12-20 16:17:24','2018-12-20 16:17:24',NULL),(134,36,11,'Audi','TT','Quattro','1800','Bosch ME 7.5.5',NULL,'177',2013,'2','TT53 SMB',NULL,'1545479573.8 - TT53 SMB','1545480620.cod',NULL,NULL,'C',95,'2018-12-22 12:10:26','2018-12-22 12:10:26',NULL),(135,36,11,'VW','Toureg','SE BMT 3L TDi','3L','Bosch EDC17',NULL,NULL,2023,'3','S2 MDX',NULL,'1545489520.','1545491399.cod','Wants economy improvements',NULL,'C',96,'2018-12-22 15:10:07','2018-12-22 15:10:07',NULL),(136,19,15,'citroen','berlingo','2nd','1.6hdi','edc17c10',NULL,NULL,2023,'1','sl13bhn',NULL,'1545991576.txt','1545996049.unq',NULL,NULL,'C',97,'2018-12-28 11:20:53','2018-12-28 11:20:53',NULL),(138,19,15,'ford','transit','mk7','2.2','sid208',NULL,NULL,2023,'2','yh62xaw',NULL,'1546426814.','1546427776.cod',NULL,NULL,'C',99,'2019-01-02 11:16:21','2019-01-02 11:16:21',NULL),(139,43,11,'BMW','325D','E92','3.0','EDC16C35',NULL,'197',2018,'3','YF58NYY',NULL,'1546428215.','1546428762.cod',NULL,NULL,'C',100,'2019-01-02 11:32:48','2019-01-02 11:32:48',NULL),(140,19,15,'citroen','dispatch','2nd','1.6','edc17c10',NULL,NULL,2022,'1','yr12uoc',NULL,'1546428527.','1546429416.unq',NULL,NULL,'C',101,'2019-01-02 11:43:49','2019-01-02 11:43:49',NULL),(141,43,11,'Ford','Galaxy','MK2','1.9','EDC15P',NULL,'130',2015,'2','EJ55UCD',NULL,'1546429514.','1546431210.cod','195k Miles',NULL,'C',102,'2019-01-02 12:13:33','2019-01-02 12:13:33',NULL),(142,19,14,'AUDI','a3','8p','1.6 cayc','simos 2.1',NULL,NULL,2022,'1','xxxxxxx',NULL,'1546432283.','1546432889.cod',NULL,NULL,'C',103,'2019-01-02 12:41:34','2019-01-02 12:41:34',NULL),(144,76,20,'mercedes','vito','2012','2143','delphi crd2',NULL,'136',2022,'2','ro12vlt',NULL,'1546438132.','1546441668.cod','Tune DPF off and EGR off pls',NULL,'C',5,'2019-01-02 15:08:07','2019-01-02 15:08:07',NULL),(145,43,11,'Mercedes','E250','W212','2.1','CRD3X',NULL,'204',2023,'3','KS63EYC',NULL,'1546448164.','1546451644.cod',NULL,'unplug temps and pressure sensors','C',105,'2019-01-02 17:54:07','2019-01-02 17:54:07',NULL),(146,74,20,'BMW','525D','E60','2497','EDC16C31',NULL,'174',2014,'3','ML04 KUJ',NULL,'1546448654.','1546470482.cod','EGR AND DPF OFF TOO PLS JAY',NULL,'C',6,'2019-01-02 23:08:06','2019-01-02 23:08:06',NULL),(147,39,14,'vw','golf','6','cffb','bosch',NULL,'140',2020,'2','AJ60AWP',NULL,'1546448837.','1546450720.cod',NULL,'unplugging egr actuator is recommended','C',106,'2019-01-02 17:38:58','2019-01-02 17:38:58',NULL),(148,19,11,'ford','transit','mk7','2.2','sid 208',NULL,'100',2022,'1','ys12mwv',NULL,'1546519383.','1546520634.cod',NULL,NULL,'C',107,'2019-01-03 13:03:57','2019-01-03 13:03:57',NULL),(149,19,11,'vw','t5.1','5.1','2.0cr tdi','edc17cp20',NULL,'104',2023,'1','p900jos',NULL,'1546521775.txt','1546522587.cod',NULL,NULL,'C',108,'2019-01-03 13:36:30','2019-01-03 13:36:30',NULL),(150,84,14,'ford','mondeo','mk3','2.2','delphi',NULL,NULL,2000,'1','ea0 xae',NULL,'1546533763.','1546533807.cod',NULL,NULL,'C',109,'2019-01-03 16:43:31','2019-01-03 16:43:31',NULL),(151,45,14,'VW','Caddy','2011','2000','EDC17C46',NULL,NULL,2021,'15','ML61 PYZ',NULL,'1546689247.cod','1546690167.cod','Attached our tuned file of this...... Needs EGR delete please','egr added to stage 1','C',110,'2019-01-05 12:09:38','2019-01-05 12:09:38',NULL),(152,43,11,'Renault','Traffic','II','2.0','EDC16',NULL,'115',2020,'2','MV10 NWL',NULL,'1546690112.','1546690357.cod','Can you check to see if this has been mapped before please',NULL,'C',111,'2019-01-05 12:12:56','2019-01-05 12:12:56',NULL),(153,43,11,'Dacia','Logan','MK2','1.5','EDC17C42',NULL,'90',2025,'1','EN15 UWA',NULL,'1546691109.5DCi 90Bhp _EN15 UWA_ Plamen Kess Read EDC17C42','1546692051.cod',NULL,NULL,'C',112,'2019-01-05 12:40:53','2019-01-05 12:40:53',NULL),(154,43,11,'Ford','Transit','MK2','2.2','SID208',NULL,'125',2022,'2','KM12OTA',NULL,'1546697692.2 125Bhp _KM12 OTA_ Brad G Kess Read SID208','1546699727.cod',NULL,NULL,'C',113,'2019-01-05 14:48:50','2019-01-05 14:48:50',NULL),(155,19,11,'audi','tt','1st','1.8t','me5.5',NULL,'180',2012,'2','v24mbs',NULL,'1546850746.','1546851151.cod',NULL,NULL,'C',114,'2019-01-07 08:52:35','2019-01-07 08:52:35',NULL),(156,19,14,'vw','golf','mk6','1.6tdi','pcr2.1',NULL,NULL,2021,'1','vw11xdo',NULL,'1546857763.','1546858714.cod',NULL,NULL,'C',115,'2019-01-07 10:59:11','2019-01-07 10:59:11',NULL),(157,74,20,'MERCEDES','E350','E CLASS','2987','EDC17CP57',NULL,'248',2024,'3','FV14 LAE',NULL,'1546864123.mpc','1546866177.bin','ADBLUE REMOVAL TOO PLS',NULL,'C',7,'2019-01-07 13:03:03','2019-01-07 13:03:03',NULL),(158,76,21,'ford','transit','custom','2200','sid208',NULL,'123',2025,'2','bt655arf',NULL,'1546939018.','1546939806.cod','dpf egr delete pls','ok dpf egr done v2','C',8,'2019-01-08 09:30:47','2019-01-08 09:30:47',NULL),(159,43,35,'Audi','S3','8V','2.0TFSi','DQ250 MBQ',NULL,'300',2024,'5','HG14KCK',NULL,'1546953351.0TFSi 300Bhp CJXC _HG14 KCK_ E Kess Read DSG DQ250 MBQ','1546954987.cod','Its a MBQ DSG DQ250 not sure how many gears I think its 6 speed',NULL,'C',116,'2019-01-08 13:43:13','2019-01-08 13:43:13',NULL),(160,43,34,'Audi','S3','8V','2.0TFSi','SIMOS18',NULL,'300',2024,'5','HG14KCK',NULL,'1546953669.0TFSi 300Bhp CJXC _HG14 KCK_ E Kess Read SIMOS_18 VR','1546956329.cod','Stage 2 remap + Decat + PnB on Sports Button (Mods-_De-cat + Racingline R600 Intake)',NULL,'C',117,'2019-01-08 14:05:34','2019-01-08 14:05:34',NULL),(161,76,20,'landrover','disco','3','2700','siemens',NULL,'187',2019,'3','sd09pyk',NULL,'1547029707.','1547046794.cod','pure power','TRY THIS','C',9,'2019-01-09 15:13:33','2019-01-09 15:13:33',NULL),(162,19,15,'citroen','c4','1st','1.6hdi','edc16',NULL,NULL,2000,'1','p28sln',NULL,'1547034513.','1547035190.cod',NULL,NULL,'C',118,'2019-01-09 11:59:55','2019-01-09 11:59:55',NULL),(163,84,11,'range','rover','2','3.0','bosch',NULL,NULL,2012,'3','947 chw',NULL,'1547115884.','1547117004.cod',NULL,NULL,'C',119,'2019-01-10 10:43:27','2019-01-10 10:43:27',NULL),(164,27,11,'VW','T5','T5','2.0','BOSCH',NULL,'180',2021,'6','GL61 DMX',NULL,'1547131068.','1547134699.cod',NULL,NULL,'C',120,'2019-01-10 15:38:30','2019-01-10 15:38:30',NULL),(165,85,20,'vw','transporter','t5.1','2.0','edc17cp2002',NULL,'102',2025,'1','l3 lgp',NULL,'1547206719.bin','1547208203.MOD','read boot autotuner thanks',NULL,'C',10,'2019-01-11 12:03:37','2019-01-11 12:03:37',NULL),(166,45,11,'VW','T5','T5','2000','EDC17CP20',NULL,'84',2022,'1','PJ62 OSW',NULL,'1547290521.txt','1547291616.cod',NULL,NULL,'C',121,'2019-01-12 11:13:40','2019-01-12 11:13:40',NULL),(167,19,14,'ford','transit connect','2nd','1.8','sid202',NULL,NULL,2020,'1','ml62vpw',NULL,'1547455297.','1547456123.cod',NULL,NULL,'C',122,'2019-01-14 08:55:29','2019-01-14 08:55:29',NULL),(168,19,14,'ford','transit connect','2nd','1.8','sid202',NULL,NULL,2022,'1','ye12en',NULL,'1547456113.','1547456635.cod',NULL,NULL,'C',123,'2019-01-14 09:04:10','2019-01-14 09:04:10',NULL),(169,45,14,'Audi','A4','B7','2000','EDC16',NULL,NULL,2016,'1','YF57 NZR',NULL,'1547543828.','1547545558.cod',NULL,NULL,'C',124,'2019-01-15 09:46:02','2019-01-15 09:46:02',NULL),(170,21,11,'honda','crv','2007','2.2','bosch',NULL,NULL,2017,'2','yg07svn',NULL,'1547566435.','1547567388.cod',NULL,NULL,'C',125,'2019-01-15 15:49:52','2019-01-15 15:49:52',NULL),(171,21,11,'vw','caddy','2014','1.6','2.1',NULL,NULL,2024,'1','lp14tzd',NULL,'1547570924.txt','1547574833.cod',NULL,NULL,'C',126,'2019-01-15 17:54:21','2019-01-15 17:54:21',NULL),(172,43,11,'Renault','Kangoo','Gen II','1.5','SID310',NULL,'110',2028,'2','EU18PYF',NULL,'1547664144.5DCi 110Bhp _EU18 PYF_ AJ Ktag Read SID310','1547666692.unq',NULL,NULL,'C',127,'2019-01-16 19:24:55','2019-01-16 19:24:55',NULL),(173,19,14,'landrover','discovery','3rd','2.7','siemens',NULL,NULL,2000,'2','ov56mxy',NULL,'1547719328.7_ov56mxy_','1547721763.cod',NULL,NULL,'C',128,'2019-01-17 10:42:46','2019-01-17 10:42:46',NULL),(174,45,11,'Skoda','octavia','VRS','2.0','EDC17C64',NULL,NULL,2000,'1','MW14EMV',NULL,'1547724300.txt','1547739695.cod',NULL,NULL,'C',129,'2019-01-17 15:41:55','2019-01-17 15:41:55',NULL),(175,27,11,'VAUXHALL','VIVARO','A','2.0CDTI','BOSCH EDC16',NULL,'90',2019,'2','KR59 JZA',NULL,'1547815138.','1547817879.cod',NULL,'before writing the file make sure you have followed the instructions in kess and backed up the injector codes.\r\n\r\nTOOLS > injector read','C',130,'2019-01-18 13:24:46','2019-01-18 13:24:46',NULL),(177,74,21,'FORD','TRANSIT','OLD SHAPE T350','2198','SID208',NULL,'123',2022,'2','YR62JYP',NULL,'1547823680.','1547824245.cod',NULL,NULL,'C',11,'2019-01-18 15:10:47','2019-01-18 15:10:47',NULL),(189,45,15,'Ford','Transit','Custom','2.2','SID208',NULL,NULL,2023,'2','YP63 YPF',NULL,'1547827218.','1547829392.cod',NULL,NULL,'C',136,'2019-01-18 16:36:35','2019-01-18 16:36:35',NULL),(192,36,14,'Vauxhall','Vivaro','A`','2L TDCi','Bosch EDC16C36',NULL,'89',2021,'1','SB60OPJ',NULL,'1547902312.','1547903018.cod',NULL,NULL,'C',138,'2019-01-19 13:03:43','2019-01-19 13:03:43',NULL),(193,36,11,'Vauxhall','Astra','H','1.7 CDTi','Opel Denso DECE02',NULL,'109',2020,'1','BJ10 YMS',NULL,'1547903938.7 CDTi BJ10 YMS','1547905479.cod',NULL,NULL,'C',139,'2019-01-19 13:44:44','2019-01-19 13:44:44',NULL),(194,43,11,'Audi','A4','B8','2.0','EDC17CP14',NULL,'140',2000,'2','LC09CVO',NULL,'1547909400.0TDi CAGA 140Bhp _LC09 CVO_ Barry Kess Read VR EDC17CP14','1547911402.cod',NULL,NULL,'C',140,'2019-01-19 15:23:25','2019-01-19 15:23:25',NULL),(195,43,11,'Audi','A4','B8','2.0','EDC17C46',NULL,'163',2023,'2','RK13 BBV',NULL,'1547910752.0TDi 163Bhp _RK13 BBV_ Mark Kess VR EDC17C46','1547912046.cod',NULL,NULL,'C',141,'2019-01-19 15:34:11','2019-01-19 15:34:11',NULL),(196,45,11,'Vauxhall','Astra','GTC','2000','EDC17C59',NULL,NULL,2025,'2','DK15 OKV',NULL,'1548065239.','1548067204.unq',NULL,NULL,'C',142,'2019-01-21 10:40:09','2019-01-21 10:40:09',NULL),(197,84,11,'audi','q7','mk1','3.0','edc17',NULL,NULL,2000,'3','an11 arz',NULL,'1548076895.','1548076935.cod',NULL,NULL,'C',143,'2019-01-21 13:22:21','2019-01-21 13:22:21',NULL),(198,70,11,'new','new','new','new','new',NULL,NULL,2000,'1','new',NULL,'1548199917.log','1548200011.log',NULL,NULL,'C',144,'2019-01-22 23:33:34','2019-01-22 23:33:34',NULL),(199,76,20,'JEEP','CHEROKEE CRD','OLD SHAPE','2800','EDC16',NULL,'161',2017,'2','RJ57BHZ',NULL,'1548323349.','1548324670.cod','P0299 DTC DELETE','CLEAR DTC','C',12,'2019-01-24 10:11:32','2019-01-24 10:11:32',NULL),(200,76,33,'landrover','evoque','2','2.0','med17.9',NULL,'180',2027,'1','OE17PFO','SALVA2CN2HH248259','1548335673.','1548336374.cod',NULL,'OK HERE IS TUNE','C',13,'2019-01-24 13:26:24','2019-01-24 13:26:24',NULL),(201,45,15,'BMW','335d','e91','3.5','EDC16C35',NULL,NULL,2000,'1','VX57 TYH',NULL,'1548337386.','1548337986.unq',NULL,NULL,'C',145,'2019-01-24 13:53:33','2019-01-24 13:53:33',NULL),(202,45,11,'VW','Golf','6','1400','MED17.5',NULL,'160',2022,'2','PE12 OWY',NULL,'1548406341.','1548407804.cod',NULL,NULL,'C',146,'2019-01-25 09:16:53','2019-01-25 09:16:53',NULL),(203,70,11,'sxaxa','sxasxasxa','dsad','sdasd','sdas',NULL,NULL,2000,'1','sasdasd',NULL,'1548429220.log','1548429265.log',NULL,NULL,'C',147,'2019-01-25 15:14:27','2019-01-25 15:14:27',NULL),(204,85,20,'mazda','6','dont know','2.2','rf8',NULL,NULL,2000,'1','abs123e',NULL,'1548432164.rar','1548434196.rar',NULL,NULL,'C',14,'2019-01-25 16:36:46','2019-01-25 16:36:46',NULL),(205,45,11,'range','rover','l322','3000','edc15',NULL,NULL,2013,'3','s19 chj',NULL,'1548497521.','1548498732.cod',NULL,NULL,'C',148,'2019-01-26 10:32:27','2019-01-26 10:32:27',NULL),(206,28,11,'landrover','disco','4','2.7','eu4',NULL,NULL,2020,'3','v3dse',NULL,'1548677231.','1548679254.cod',NULL,NULL,'C',149,'2019-01-28 12:40:58','2019-01-28 12:40:58',NULL),(207,70,11,'vfvfvfvf','vfvfvfvf','vfvfvfvf','vfvfvf','vfvf',NULL,NULL,2000,'1','vfvfvf',NULL,'1548680093.','1548680120.',NULL,NULL,'C',150,'2019-01-28 14:19:22','2019-01-28 14:19:22',NULL),(209,76,20,'Seat','Ibiza','2010','1400','VAG IAW 4GV',NULL,'84',2020,'2','pl10nty',NULL,'1548696683.','1548697018.cod',NULL,NULL,'C',15,'2019-01-28 17:37:05','2019-01-28 17:37:05',NULL),(210,76,32,'Skoda','YETI','2012','1600','PCR',NULL,'105',2022,'1','SM12FMF',NULL,'1548755146.','1548755849.cod',NULL,NULL,'C',16,'2019-01-29 09:57:34','2019-01-29 09:57:34',NULL),(211,76,33,'PEUGEOT','BOXER','EARLY','2800','EDC15C7',NULL,'127',2016,'1','KX06GKZ',NULL,'1548844604.','1548847883.cod',NULL,NULL,'C',17,'2019-01-30 11:31:33','2019-01-30 11:31:33',NULL),(212,74,21,'FORD','TRANSIT','OLD SHAPE T100','2198','SID208',NULL,'98',2023,'2','BF13 PSZ',NULL,'1548858054.','1548859550.cod','DPF & EGR DELETE',NULL,'C',18,'2019-01-30 14:45:57','2019-01-30 14:45:57',NULL),(213,19,15,'ford','transit','mk7','2.2','sid208',NULL,NULL,2000,'1','hy13xtp',NULL,'1548943237.','1548944958.cod',NULL,NULL,'C',151,'2019-01-31 14:29:19','2019-01-31 14:29:19',NULL),(214,45,14,'audi','a4','B7','2000','EDC16',NULL,NULL,2016,'2','MW56 HCA',NULL,'1549278488.','1549279822.cod',NULL,NULL,'C',152,'2019-02-04 11:30:32','2019-02-04 11:30:32',NULL),(215,19,14,'jeep','grand cherokee','3rd','3.0crd','edc16',NULL,NULL,2000,'3','rk56xeg',NULL,'1549282032.','1549282786.cod','need p code and flaps off too take off what you need on credits. p0046 p0299 p0403',NULL,'C',153,'2019-02-04 12:20:01','2019-02-04 12:20:01',NULL),(216,45,11,'VW','Transporter','t5','2000','EDC17CP20',NULL,NULL,2020,'2','MA62 YJT',NULL,'1549292608.','1549292796.cod',NULL,NULL,'C',154,'2019-02-04 15:06:44','2019-02-04 15:06:44',NULL),(217,45,11,'Audi','TT','Coupe','1.8','Bosch ME',NULL,NULL,2012,'2','CV52 OYY',NULL,'1549292685.','1549293973.cod','CAN YOU CHECK TO SEE IF ITS BEEN MODDIED BEFORE YOU TUNE',NULL,'C',155,'2019-02-04 15:26:22','2019-02-04 15:26:22',NULL),(218,27,34,'VW','GOLF','MK4','1.9','BOSCH',NULL,'130',2012,'2','FM02EUR',NULL,'1549361530.','1549363858.cod',NULL,NULL,'C',156,'2019-02-05 10:51:10','2019-02-05 10:51:10',NULL),(219,19,14,'merc','s350cdi','w221','3.o','edc17cp46',NULL,NULL,2022,'3','ra61les',NULL,'1549372903.','1549374533.unq',NULL,NULL,'C',157,'2019-02-05 13:49:05','2019-02-05 13:49:05',NULL),(220,19,15,'skoda','fabia','3RD','1.6tdi cayb','pcr 2.1',NULL,'85',2020,'1','xxxxxx',NULL,'1549441636.','1549442760.cod','has already had egr off by us',NULL,'C',158,'2019-02-06 08:46:13','2019-02-06 08:46:13',NULL),(221,19,14,'vw','polo','6r','12tdi','dcm3.7',NULL,NULL,2020,'1','v19vls',NULL,'1549443937.2','1549445214.cod',NULL,NULL,'C',159,'2019-02-06 09:27:12','2019-02-06 09:27:12',NULL),(222,43,11,'Mercedes','A180D','W176','1.5','SID310',NULL,'109',2025,'3','EU65WTF',NULL,'1549467489.pth','1549469388.unq',NULL,NULL,'C',160,'2019-02-06 16:10:00','2019-02-06 16:10:00',NULL),(223,19,14,'seat','leon','3','1.6tdi','pcr2.1',NULL,NULL,2000,'1','oy10ygh',NULL,'1549471212.','1549471733.cod',NULL,NULL,'C',161,'2019-02-06 16:49:20','2019-02-06 16:49:20',NULL),(224,27,14,'Land Rover','Range Rover Sport','MK1','2.7 TDV6','SIEMENS',NULL,'190',2018,'3','BN08XGZ',NULL,'1549532390.','1549533302.cod',NULL,NULL,'C',162,'2019-02-07 09:55:10','2019-02-07 09:55:10',NULL),(225,70,11,'lkjjnjok','klnlk','lkn','lkn','lkn',NULL,NULL,2000,'1','huiohg',NULL,'1549544675.','1574759883.',NULL,NULL,'C',163,'2019-11-26 09:18:09','2019-11-26 09:18:09',NULL),(226,45,14,'Skoda','Octavia','2011','2000 CR','EDC17C46',NULL,NULL,2021,'2','SY11 ZYM',NULL,'1549618401.','1549619125.cod',NULL,NULL,'C',164,'2019-02-08 09:45:34','2019-02-08 09:45:34',NULL),(227,27,11,'BMW','318D','F30','2.0','BOSCH',NULL,'143',2022,'3','AP62AHG',NULL,'1549635645.','1549642767.cod',NULL,NULL,'C',165,'2019-02-08 16:19:40','2019-02-08 16:19:40',NULL),(228,43,11,'Vauxhall','Vivaro','MK2','2.0CDTi','EDC16',NULL,'90',2018,'2','AJ08 THU',NULL,'1549715497.0CDTi 90Bhp _AJ08 THU_ Dan Kess Read EDC16','1549715751.cod',NULL,NULL,'C',166,'2019-02-09 12:36:02','2019-02-09 12:36:02',NULL),(229,45,15,'ford','kuga','mk1','2.0tdci','sid202',NULL,NULL,2000,'1','ck58 xdf',NULL,'1549877024.','1549878555.cod',NULL,NULL,'C',167,'2019-02-11 09:49:23','2019-02-11 09:49:23',NULL),(230,45,14,'Audi','A3','8p','2000','EDC17 cP14',NULL,'170',2018,'1','HG58 KFU',NULL,'1549965507.txt','1549965783.cod',NULL,NULL,'C',168,'2019-02-12 10:03:11','2019-02-12 10:03:11',NULL),(231,81,20,'audi','Q7','NA','3.0 TDI','35/1/EDC17_CP04/5/P617//C617Q3OL',NULL,'239',2018,'1','N26 SON','WAUZZZ4L88D052290','1550062050.txt','1550148028.cod',NULL,NULL,'C',19,'2019-02-14 12:40:37','2019-02-14 12:40:37',NULL),(232,76,20,'Fiat','Grande Punto','2009','1900jtd','c16c39',NULL,'130',2000,'2','m6fuw',NULL,'1550486253.','1550488227.cod','full on',NULL,'C',20,'2019-02-18 11:10:33','2019-02-18 11:10:33',NULL),(233,19,11,'vw','passat','7b','2.o cbab','edc17',NULL,NULL,2000,'2','y40tju',NULL,'1550499779.txt','1550504645.cod',NULL,NULL,'C',169,'2019-02-18 15:44:11','2019-02-18 15:44:11',NULL),(234,19,14,'seat','leon','x','bmn','siemens',NULL,'170',2017,'2','oy07uog',NULL,'1550572134.','1550573293.cod','need to know if its had dpf off?','STOCK ATTACHED.\r\n\r\nBADLY TUNED AND A POOR DPF DELETE DONE','C',170,'2019-02-19 10:49:03','2019-02-19 10:49:03',NULL),(235,19,14,'seat','leon','x','bmn 2.0tdi','siemens ppd',NULL,'170',2017,'2','oy07uog',NULL,'1550573946.','1550574346.cod','the cars \'modified\' file is attached','IVE ONLY REMOVED EGR AND DPF RELATED CODES','C',171,'2019-02-19 11:06:01','2019-02-19 11:06:01',NULL),(236,76,20,'ISUZU','<NAME>','2010','2500','TRANSTRON',NULL,'138',2020,'1','YX10VOH',NULL,'1550685121.','1550685186.cod','TUNE AND EGR OFF PLS',NULL,'C',21,'2019-02-20 17:53:08','2019-02-20 17:53:08',NULL),(237,24,11,'vauxhall','astra','j gen','1700','denso',NULL,'7',2021,'2','fg61cfp',NULL,'1550760923.','1550761813.cod',NULL,'unlpug actuator','C',172,'2019-02-21 15:10:21','2019-02-21 15:10:21',NULL),(238,45,11,'Ford','Focus','2','2500','ME7.',NULL,NULL,2016,'2','MH04 PRO',NULL,'1550830187.','1550830629.cod',NULL,NULL,'C',173,'2019-02-22 10:17:19','2019-02-22 10:17:19',NULL),(239,76,20,'Audi','A6','4f','2000','EDC16C34',NULL,'140',2016,'2','ST56LMY',NULL,'1550853525.','1550854450.cod','TUNE AND EGR OFF PLS',NULL,'C',22,'2019-02-22 16:54:14','2019-02-22 16:54:14',NULL),(240,43,11,'BMW','335D','F30','3.0','EDC17CP45',NULL,'313',2026,'3','PO66YJX',NULL,'1550917369.','1550921137.cod','make it fast please good customer of mine',NULL,'C',174,'2019-02-23 11:25:48','2019-02-23 11:25:48',NULL),(241,43,11,'Audi','A3','8P','2.0TDI','EDC17CP14',NULL,'170',2019,'2','VK59NFF',NULL,'1551106772.','1551107886.cod',NULL,NULL,'C',175,'2019-02-25 15:18:13','2019-02-25 15:18:13',NULL),(242,43,11,'Seat','Lean','FR','2.0','EDC17C64',NULL,'150',2023,'2','YN13 ZZS',NULL,'1551116572.0TDi 150Bhp _YN13 ZZS_ Geln Kess VR File EDC17C64','1551119405.cod',NULL,NULL,'C',176,'2019-02-25 18:30:12','2019-02-25 18:30:12',NULL),(243,43,14,'Ford','Transit','MK7','2.0','SID211',NULL,'105',2026,'2','LC66 EAP',NULL,'1551189648.0TDi _LC66 EAP_ Vidas Ktag Read SID211','1551200542.cod','Didnt perform patch as its been done previously dont know if update from FDRS puts it back on','kess file','C',177,'2019-02-26 17:02:33','2019-02-26 17:02:33',NULL),(244,43,11,'Vauxhall','Vectra C','C','1.9','eDC16C39Can',NULL,'150',2018,'3','AB08NPP',NULL,'1551268907.txt','1551271746.cod',NULL,'there was no full read available, but on closer inspection the 150 section was in the obd read','C',178,'2019-02-27 12:49:53','2019-02-27 12:49:53',NULL),(245,45,11,'VW','Transporter','T6','2000 CR','Delphi',NULL,NULL,2026,'1','W7 TSO',NULL,'1551279958.','1551283542.cod','102 BHP at present',NULL,'C',179,'2019-02-27 16:05:50','2019-02-27 16:05:50',NULL),(246,21,11,'VW','CADDY','2012','1.6','2.1',NULL,'102',2022,'1','CY12DVK',NULL,'1551351385.txt','1551356899.cod',NULL,NULL,'C',180,'2019-02-28 12:28:26','2019-02-28 12:28:26',NULL),(247,74,32,'VW','golf 5k','mk6','1.6','PCR2.1',NULL,'103',2000,'1','yb12czf',NULL,'1551359221.1 vr kess2','1553165911.cod','egr removal',NULL,'C',23,'2019-03-21 10:58:36','2019-03-21 10:58:36',NULL),(248,45,11,'VW','Transporter','T6','2.0','Delphi',NULL,'102',2028,'1','HJ18 BEU',NULL,'1551435650.','1551436172.cod',NULL,NULL,'C',181,'2019-03-01 10:29:40','2019-03-01 10:29:40',NULL),(249,19,14,'citroen','c6','x','2.7hdi','siemens',NULL,NULL,2017,'3','kuo7aym',NULL,'1551449806.txt','1551451142.cod',NULL,NULL,'C',182,'2019-03-01 14:39:07','2019-03-01 14:39:07',NULL),(250,74,20,'AUDI','A1','8X','1.6','PCR2.1',NULL,'105',2022,'1','EN12FWX',NULL,'1551450381.1 VR','1551453782.cod',NULL,NULL,'C',24,'2019-03-01 15:23:06','2019-03-01 15:23:06',NULL),(251,19,11,'vw','t5.1','5.1','2.0 caab','edc17',NULL,'102',2025,'1','s444rmo',NULL,'1551453950.txt','1551455589.cod',NULL,NULL,'C',183,'2019-03-01 15:53:12','2019-03-01 15:53:12',NULL),(252,29,15,'vauxhall','vivaro','1','1.6','edc 1742',NULL,'100',2026,'2','ybz 56',NULL,'1551526797.','1551530187.cod',NULL,'temp and pressure sensors need unplugged','C',184,'2019-03-02 12:36:30','2019-03-02 12:36:30',NULL),(253,43,14,'Audi','Q5','MK2','2.0','EDC17C46',NULL,'177',2022,'3','RF62 EUT',NULL,NULL,'1551535494.cod','P20BD00',NULL,'C',185,'2019-03-02 14:04:59','2019-03-02 14:04:59',NULL),(254,28,11,'ford','transit custom','2015','diesel','eu4',NULL,NULL,2026,'2','tris',NULL,'1551533985.','1551535944.cod',NULL,NULL,'C',186,'2019-03-02 14:12:36','2019-03-02 14:12:36',NULL),(255,43,11,'Vaxuxhall','Astra','H','1.9','edc16c39',NULL,'150',2018,'2','HG58 AXX',NULL,'1551535200.9CDTi Z19DTH _HG58 AXX_ <NAME> Read EDC16C39','1551538441.cod',NULL,NULL,'C',187,'2019-03-02 14:54:07','2019-03-02 14:54:07',NULL),(256,19,14,'fiat','scudo','2nd','2.0hdi 16v','sid803',NULL,NULL,2018,'2','sf58ewu',NULL,'1551708538.','1551709472.cod','p2143 & p1462',NULL,'C',188,'2019-03-04 14:24:46','2019-03-04 14:24:46',NULL),(257,74,20,'seat','leon cupra','mk1','1.8T','me7.5',NULL,'180',2000,'2','FH03 CPZ',NULL,'1551715649.bin',NULL,'POWER TUNE PLS',NULL,'C',25,'2019-03-04 21:18:34','2019-03-04 21:18:34',NULL),(258,81,20,'ford fiesta NEEDS STAGE 2','ST','2015','1.6 ecoboost','ED17.0.1 ECM',NULL,'180',2025,'2','HT15MKL',NULL,'1551734664.','1551789429.cod','HAS STAGE 1 REVO LOOKING FOR STAGE 2 PERFORMANCE REMAP HAS BIGGER TURBO INJECTORS AND PERFORMANCE EXHAUST',NULL,'C',26,'2019-03-05 12:37:12','2019-03-05 12:37:12',NULL),(259,43,11,'Mercrcedes','E220D','C207','2.1','CRD3.X',NULL,'177',2015,'Automatic Transmission','KV65 JFJ',NULL,'1551789128.','1551792872.cod','Fault code in Whatsapp','DPF PRESSURE AND TEMPERATURE SENSORS HAVE TO BE DISCONNECTED\r\nADBLUE MODULE DISCONNECT','C',189,'2019-03-25 11:39:05','2019-03-25 11:39:05',NULL),(260,19,14,'volvo','c30','2nd','2.0 rhr','sid803',NULL,'136',2021,'2','sg10lsj',NULL,'1551792739.','1551793572.cod',NULL,NULL,'C',190,'2019-03-05 13:46:21','2019-03-05 13:46:21',NULL),(261,19,15,'ford','connect','2nd','1.8tdci','sid202',NULL,NULL,2021,'1','x',NULL,'1551866805.','1551867591.cod',NULL,NULL,'C',191,'2019-03-06 10:19:58','2019-03-06 10:19:58',NULL),(262,19,14,'nissan','x trail','t31','m9r','edc16',NULL,NULL,2018,'2','ro08bxr',NULL,'1551877077.','1551878379.cod',NULL,'back up injectors and use the emergency key in the ignition barrel if its a keyless.','C',192,'2019-03-06 13:19:50','2019-03-06 13:19:50',NULL),(263,74,20,'FORD','TRANSIT custom','mk7','2198','SID208',NULL,'155',2025,'2','EG15EDL',NULL,'1551889556.',NULL,'egr/dpf off pls',NULL,'C',27,'2019-03-08 14:34:36','2019-03-08 14:34:36',NULL),(264,43,15,'Mazda','6','RF MK1','2.0','Denso',NULL,'143',2016,'2','CN06 VXK',NULL,'1551958662.0 143Bhp _CN06 VKX_ <NAME> Read Denso','1551959544.cod',NULL,NULL,'C',193,'2019-03-07 11:53:59','2019-03-07 11:53:59',NULL),(265,19,14,'ford','connect','1st','1.8tdci','sid202',NULL,NULL,2018,'1','x',NULL,'1552052929.','1552055310.cod',NULL,NULL,'C',194,'2019-03-08 14:28:35','2019-03-08 14:28:35',NULL),(266,43,11,'Seat','Sport Tourer','5F8','2.0TSi','SIMOS18',NULL,'280',2025,'5','KM15 XRH',NULL,'1552127757.0TSi 280Bhp _KM15 XRH_ Niel Kess VR File','1552129194.cod',NULL,NULL,'C',195,'2019-03-09 11:00:02','2019-03-09 11:00:02',NULL),(267,43,11,'Land Rover','Range Rover','L322','3.6','SID201',NULL,'272',2017,'3','GV57LZS',NULL,'1552306379.6 272Bhp _GV57 LZS_ David Kess Read SID201','1552307665.cod',NULL,NULL,'C',196,'2019-03-11 12:34:32','2019-03-11 12:34:32',NULL),(268,43,39,'Peugeot','308','T9','1.6HDi','EDC17C60',NULL,'120',2025,'2','BP15 VJL',NULL,'1552391559.6HDi 120Bhp _BP15 VJL_ Thameside Taxi Ktag Read EDC17C60','1552396653.unq','P20E8 - P1435(00) - U0118(87) Adblue and Eolys fluid deletion','adblue ecu and pump disconnect','C',197,'2019-03-12 13:17:36','2019-03-12 13:17:36',NULL),(269,43,11,'Audi','Q7','4L','3.0','EDC17CP44',NULL,'245',2022,'3','RO62 UZD',NULL,'1552394831.0TDi 245Bhp _RO62 UZD_ Hui Kess VR File','1552397383.cod',NULL,NULL,'C',198,'2019-03-12 13:29:48','2019-03-12 13:29:48',NULL),(270,45,39,'VW','Crafrer','2','2.5','CP20',NULL,'109',2020,'1','crafter',NULL,'1552423995.','1552424024.unq',NULL,'no need to unplg anything, but Nox sensors can be unplugged if faulty','C',199,'2019-03-12 20:55:48','2019-03-12 20:55:48',NULL),(271,45,11,'VW','Golf','7','2000','EDC17 C74',NULL,NULL,2026,'6','FD16 UPH',NULL,'1552469144.','1552472252.cod','GTD Engine CUNA',NULL,'C',200,'2019-03-13 10:17:37','2019-03-13 10:17:37',NULL),(272,76,20,'transit','connect','2011','1800','sid803/202',NULL,NULL,2000,'1','js54jsf',NULL,'1552497463.','1552498884.cod','Tune DPF off and EGR off pls',NULL,'C',28,'2019-03-13 17:41:28','2019-03-13 17:41:28',NULL),(273,19,14,'audi','a6','c6','2.otdi bre','edc16',NULL,'140',2017,'1','ks07ukn',NULL,'1552568656.','1552570511.cod',NULL,NULL,'C',201,'2019-03-14 13:35:16','2019-03-14 13:35:16',NULL),(274,19,14,'skoda','octavia','2nd','cayc 1.6tdi','pcr2.1',NULL,NULL,2021,'1','x',NULL,'1552578180.','1552579164.cod',NULL,NULL,'C',202,'2019-03-14 15:59:28','2019-03-14 15:59:28',NULL),(275,19,14,'ford','connect','2nd','1.8tdci','sid803',NULL,NULL,2021,'1','ak11pnx',NULL,'1552642564.','1552643632.cod',NULL,NULL,'C',203,'2019-03-15 09:53:59','2019-03-15 09:53:59',NULL),(276,43,11,'Mercedes','C350','W204','3.0','EDC16C46 Old',NULL,'265',2022,'3','HY62 ZCJ',NULL,'1552733424.','1552736982.unq',NULL,NULL,'C',204,'2019-03-16 11:49:55','2019-03-16 11:49:55',NULL),(277,43,14,'Smart','Fortwo','W451','800','EDC16',NULL,'54',2021,'11','BJ61 OBC',NULL,'1552741169.','1552742333.cod','P2355 EGR/AFR Control',NULL,'C',205,'2019-03-16 13:19:01','2019-03-16 13:19:01',NULL),(278,43,11,'Ford','Kuga','MK1','2.0','Seiemens',NULL,'136',2020,'2','EA10 MYM',NULL,'1552744197.0D 136Bhp _EA10 MYM_ <NAME> Read','1552747503.cod','P242F:00 P2453:00 P2463:00 P242F:61 P2453:A1 P2463:E1',NULL,'C',206,'2019-03-16 14:45:14','2019-03-16 14:45:14',NULL),(279,45,11,'VW','Transporter','T5','2000','EDC17CP20',NULL,NULL,2025,'1','LF65 FEO',NULL,'1552933346.','1552939011.cod','this is an 84 bhp',NULL,'C',207,'2019-03-18 19:56:59','2019-03-18 19:56:59',NULL),(280,74,20,'vw','golf','mk6','2.0','edc17c46',NULL,'140',2021,'2','YG11YUH',NULL,'1552938925.bin','1552940441.MOD',NULL,NULL,'C',29,'2019-03-18 20:20:48','2019-03-18 20:20:48',NULL),(281,76,20,'ford','focus','2012','1560','sid807',NULL,'113',2022,'2','k17drm',NULL,'1552992994.','1552997311.cod',NULL,NULL,'C',30,'2019-03-19 12:08:37','2019-03-19 12:08:37',NULL),(282,43,11,'Mercedes','E250','W212','2.1','CRD3.X',NULL,'204',2023,'3','KV63 DYP',NULL,'1552996072.X','1552998404.cod','P246309 - P068501 - P245328 - P245414',NULL,'C',208,'2019-03-19 12:26:49','2019-03-19 12:26:49',NULL),(283,45,14,'Merc','E350','W212','3500`','EDC17 CP10',NULL,NULL,2020,'15','LS10 ZVZ',NULL,'1552997180.','1552997329.unq',NULL,NULL,'C',209,'2019-03-19 12:08:56','2019-03-19 12:08:56',NULL),(284,76,20,'renault','Master','2013','2300','edc17c11',NULL,'125',2023,'2','sn63avk',NULL,'1552997325.','1552998405.cod',NULL,NULL,'C',31,'2019-03-19 12:26:51','2019-03-19 12:26:51',NULL),(285,43,11,'Ford','Mustang','GT500','5.0','Conti EMS244XX',NULL,'418',2027,'2','EA17 PBZ',NULL,'1553003901.','1553007128.cod',NULL,NULL,'C',210,'2019-03-19 14:52:15','2019-03-19 14:52:15',NULL),(286,74,20,'seat','toledo','na','1.6','EDC17C64',NULL,'113',2025,'2','px65 zrd',NULL,'1553022009.bin','1553023799.MOD','DFP AND EGR PLS TOO',NULL,'C',32,'2019-03-19 19:30:05','2019-03-19 19:30:05',NULL),(287,81,20,'audi','a6','2012','2.0 tdi','ED17',NULL,'177',2022,'12','MM12GOV',NULL,'1553029124.txt','1553030444.cod',NULL,NULL,'C',33,'2019-03-19 21:20:51','2019-03-19 21:20:51',NULL),(288,45,11,'VW','Amarok','2018','3000','EDC17 cP54',NULL,'201',2028,'6','GAZ15',NULL,'1553079370.txt','1553080001.pat','It says to open a ticket as ecu not recognised, but downloaded the ori? Engine code DDXB',NULL,'C',211,'2019-03-20 11:06:46','2019-03-20 11:06:46',NULL),(289,45,11,'vw','Transporter','t6','2000','delphi dcm',NULL,NULL,2027,'1','CE67 XPX',NULL,'1553079839.','1553087231.cod','84 ps',NULL,'C',212,'2019-03-20 13:08:17','2019-03-20 13:08:17',NULL),(290,35,15,'ford','transit','df','2,2','sid',NULL,NULL,2022,'1','wp12bpz',NULL,'1553089807.','1553090825.cod',NULL,NULL,'C',213,'2019-03-20 14:07:09','2019-03-20 14:07:09',NULL),(291,45,11,'Nissan','Navara','D23','2300','SID309',NULL,'160',2026,'3','S16 MJW',NULL,'1553096414.','1553100225.cod',NULL,'mate you did the exact same software number 13/02/19\r\ndidnt you have to patch it somehow or read the pin ?','C',214,'2019-03-20 16:44:30','2019-03-20 16:44:30',NULL),(292,74,21,'BMW','325d','E91','2993','edc16+ c35',NULL,'194',2019,'2','YH59 EFL',NULL,'1553097049.','1553097643.cod','EGR AND DPF OFF PLS JAY',NULL,'C',34,'2019-03-20 16:00:46','2019-03-20 16:00:46',NULL),(293,76,20,'audi','A7','2015','3000 BITURBO','CP44',NULL,'315',2025,'4','R7LWW',NULL,'1553161396.','1553162706.cod',NULL,NULL,'C',35,'2019-03-21 10:05:11','2019-03-21 10:05:11',NULL),(294,76,20,'mercedes','ML280','2009','2987','EDC16C+ C31/C36',NULL,NULL,2018,'3','J3233AJO',NULL,'1553162677.','1553165305.cod','J333AJO',NULL,'C',36,'2019-03-21 10:48:29','2019-03-21 10:48:29',NULL),(295,45,15,'VW','Passat','B6','2000','EDC17cP20',NULL,NULL,2019,'1','AD09 AYJ',NULL,'1553183999.','1553187564.cod',NULL,NULL,'C',215,'2019-03-21 16:59:37','2019-03-21 16:59:37',NULL),(296,43,11,'Jaguar','X-Type','-','2.2','Delphi MPC555 P233',NULL,'146',2018,'3','BG08 UGV',NULL,'1553189313.2D 146Bhp _BG08 UGV_ Bill Lock Ktag Read Delphi Ford P233','1553195413.unq','P2031 - P2032 - P242F','you may have to do dpf resets','C',216,'2019-03-21 19:10:28','2019-03-21 19:10:28',NULL),(297,43,11,'VW','Passat','B6','2.0 BKP','Seimens PPD',NULL,'140',2016,'2','MJ06UHM',NULL,'1553272001.0 BKP 140Bhp _MJ06 UHM_ <NAME> Read Seimens PPD','1553273982.cod',NULL,NULL,'C',217,'2019-03-22 16:59:55','2019-03-22 16:59:55',NULL),(298,43,11,'Mercedes','E350','A207','3.0','EDC17CP46 P365',NULL,'265',2022,'3','KU12 FEF',NULL,'1553346575.','1553348020.unq','Make it fast its for Chris who I done the first ever remap for on the Mini R53',NULL,'C',218,'2019-03-23 13:33:44','2019-03-23 13:33:44',NULL),(299,76,20,'citroen','c4','2007','1560`','edc16+',NULL,NULL,2017,'3','nv07tfy',NULL,'1553517363.','1553521483.cod','Tune DPF off and EGR off',NULL,'C',37,'2019-03-25 13:44:50','2019-03-25 13:44:50',NULL),(300,35,11,'bmw','325','e90','3,0','edc16',NULL,NULL,2000,'2','lv57ucj',NULL,'1553520551.','1553521876.cod',NULL,NULL,'C',219,'2019-03-25 13:51:21','2019-03-25 13:51:21',NULL),(301,85,20,'range rover','big one','no idea','3.6','sid201',NULL,NULL,2018,'1','l33 cgf',NULL,'1553705765.rar','1553708843.MOD','and egr off',NULL,'C',38,'2019-03-27 17:47:26','2019-03-27 17:47:26',NULL),(302,35,15,'ford','focus','2010','1600','edc16 c34',NULL,NULL,2020,'1','ea10zbl',NULL,'1553763019.','1553765501.unq',NULL,NULL,'C',220,'2019-03-28 09:32:01','2019-03-28 09:32:01',NULL),(303,19,15,'merc','c220 cdi','w204','2.1','crd2xx',NULL,NULL,2019,'1','eo59edu',NULL,'1553777649.','1553780712.cod',NULL,'sorry fucking customers coming in to chat,','C',221,'2019-03-28 13:45:44','2019-03-28 13:45:44',NULL),(304,19,11,'vw','passat','b5','1.9avf','edc15p',NULL,NULL,2013,'3','rx53gjj',NULL,'1553788950.9pd','1553791215.cod',NULL,NULL,'C',222,'2019-03-28 16:40:19','2019-03-28 16:40:19',NULL),(306,74,21,'BMW','1 SERIES','E87','2000','EDC17',NULL,NULL,2018,'2','GF08 BNJ',NULL,'1553872296.','1553874062.cod',NULL,NULL,'C',39,'2019-03-29 15:41:20','2019-03-29 15:41:20',NULL),(307,45,15,'Ford','Transit','Mk7','2200','SID208',NULL,NULL,2023,'2','ND13 VJL',NULL,'1553945354.','1553948112.cod',NULL,NULL,'C',223,'2019-03-30 12:15:15','2019-03-30 12:15:15',NULL),(308,36,11,'Mercedes','CLS 250 BLUEEFFICIENCY AMG SPORT CDI','C218','2143cc Diesel','Delphi CRD3',NULL,NULL,2022,'1','BL62 SVA',NULL,'1553949610.','1553950364.cod',NULL,NULL,'C',224,'2019-03-30 12:52:48','2019-03-30 12:52:48',NULL),(309,19,14,'landrover','discovery','3rd','2.7','siemens',NULL,NULL,2017,'3','k9xxx',NULL,'1554112004.','1554112796.cod',NULL,NULL,'C',225,'2019-04-01 10:00:03','2019-04-01 09:00:03',NULL),(310,45,11,'Audi','A3','8V','1400','MED17.5.25',NULL,'150',2024,'2','AV64 MPU',NULL,'1554196230.txt','1554196444.cod',NULL,NULL,'C',226,'2019-04-02 09:14:09','2019-04-02 08:14:09',NULL),(311,43,11,'Ford','Kuga','MKII','2.0TDI','DCM3.5',NULL,'140',2023,'2','SX11DOM',NULL,'1554198388.5','1554199921.cod',NULL,NULL,'C',227,'2019-04-02 10:12:11','2019-04-02 09:12:11',NULL),(312,76,20,'LANDROVER','Defender','td5','2500','SAL',NULL,'120',2014,'1','YG54SZL',NULL,'1554281661.','1554282344.cod','FLAT OUT TUNE',NULL,'C',40,'2019-04-03 09:05:49','2019-04-03 08:05:49',NULL),(313,19,14,'vw','caddy','2k','2.otdi bls','edc16',NULL,NULL,2019,'1','pn59ynf',NULL,'1554295116.','1554296551.cod','08213 & 01027 fault codes',NULL,'C',228,'2019-04-03 13:02:35','2019-04-03 12:02:35',NULL),(314,35,15,'volvo','s60','1','2400','edc16',NULL,NULL,2015,'1','ku55uua',NULL,'1554297443.','1554299526.cod',NULL,NULL,'C',229,'2019-04-03 13:52:11','2019-04-03 12:52:11',NULL),(315,43,11,'Audi','<NAME>','8P','1.6TDi','PCR2.1',NULL,'105',2020,'1','OY10 GXO',NULL,'1554299510.5Bhp _OY10 GXO_ Ernie Kess VR File','1554301352.cod',NULL,NULL,'C',230,'2019-04-03 14:22:36','2019-04-03 13:22:36',NULL),(316,76,20,'ford','Connect','2013','1800 tdci','803a',NULL,NULL,2023,'1','yc13hrp',NULL,'1554300700.','1554303610.cod','Tune DPF off and EGR off pls',NULL,'C',41,'2019-04-03 15:00:15','2019-04-03 14:00:15',NULL),(317,35,11,'toyota','hilux','7','3000','denso',NULL,NULL,2022,'1','ln12ybw',NULL,'1554303801.txt','1554308424.cod',NULL,NULL,'C',231,'2019-04-03 16:20:28','2019-04-03 15:20:28',NULL),(318,76,32,'Volkswagen','transporter','2013','2000','CP20',NULL,'138',2023,'2','pn63uba',NULL,'1554371162.txt','1554371907.cod','egr off',NULL,'C',42,'2019-04-04 09:58:30','2019-04-04 08:58:30',NULL),(319,19,14,'vw','tiguan','1st','caab','edc17',NULL,NULL,2020,'2','x',NULL,'1554464841.txt','1554471055.cod','p012100 fault',NULL,'C',232,'2019-04-05 13:31:01','2019-04-05 12:31:01',NULL),(320,35,11,'bmw','330d','e46','3000','edc15',NULL,NULL,2011,'1','fg51udx',NULL,'1554472478.','1554473091.cod',NULL,NULL,'C',233,'2019-04-05 14:04:57','2019-04-05 13:04:57',NULL),(321,85,20,'ford','mondeo','mk4','2.0tdci','dcm3,5',NULL,'161',2022,'1','vo12 vxn',NULL,'1554718168.rar','1554720308.rar',NULL,NULL,'C',43,'2019-04-08 10:45:13','2019-04-08 09:45:13',NULL),(322,19,14,'landrover','freelander','2nd','2.2','edc16',NULL,NULL,2018,'2','l44stl',NULL,'1554719017.','1554720620.cod','p0234 turbo overboost condition',NULL,'C',234,'2019-04-08 10:50:25','2019-04-08 09:50:25',NULL),(324,19,15,'toyota','hilux','3.0','1kv','denso',NULL,NULL,2022,'1','yk62nhp',NULL,'1554730237.txt','1554732829.cod',NULL,NULL,'C',236,'2019-04-08 14:13:54','2019-04-08 13:13:54',NULL),(325,76,32,'Volkswagen','Transporter','2014','2000','cp20',NULL,'102',2000,'1','af63syr',NULL,'1554803461.','1554804589.cod',NULL,NULL,'C',44,'2019-04-09 10:09:53','2019-04-09 09:09:53',NULL),(327,43,15,'Peugeot','308','MKII','1.6HDi','EDC17C60',NULL,'120',2025,'2','BP15 VJL',NULL,'1554819197.6HDi 120Bhp _BP15 VJL_ Thameside Taxi Ktag Read EDC17C60','1554826317.unq','Mapped previously with Ad-blue and Eloys delete',NULL,'C',237,'2019-04-09 16:12:02','2019-04-09 15:12:02',NULL),(328,85,20,'opel','zaf','no idea','2,0','me1.5.5',NULL,NULL,2000,'1','dont no',NULL,'1554835209.rar',NULL,NULL,NULL,'C',45,'2019-04-09 19:01:56','2019-04-09 18:01:56',NULL),(330,35,17,'audi','a4','b7','2000','edc16',NULL,NULL,2017,'2','ea07klx',NULL,'1554894356.','1554897382.cod',NULL,'egr and dpf still on but otherwise stock','C',239,'2019-04-10 11:56:33','2019-04-10 10:56:33',NULL),(331,35,11,'vw','golf','6','1600','sim',NULL,NULL,2000,'1','ky10cxa',NULL,'1554899691.','1554904393.cod',NULL,NULL,'C',240,'2019-04-10 13:53:20','2019-04-10 12:53:20',NULL),(332,35,11,'ford','focus','2','1600','ddd',NULL,NULL,2015,'1','kf05jpy',NULL,'1554906526.','1554912335.cod',NULL,NULL,'C',241,'2019-04-10 16:05:42','2019-04-10 15:05:42',NULL),(333,74,20,'FORD','TRANSIT','mk7','2400','DCU102',NULL,'114',2000,'2','FY61 ZZW',NULL,'1554980770.','1554982033.cod','POWER TUNE ON BOTH THESE PLS',NULL,'C',46,'2019-04-11 11:27:19','2019-04-11 10:27:19',NULL),(334,74,20,'FORD','TRANSIT','CUSTOM','2.2','SID208',NULL,'153',2000,'2','NK63 WPW',NULL,'1554981625.','1554987858.cod','POWER TUNE PLS',NULL,'C',47,'2019-04-11 13:04:44','2019-04-11 12:04:44',NULL),(335,29,11,'renault','trafic','1','2.0','16c',NULL,'115',2017,'2','bf09 kju',NULL,'1554986804.','1554988223.cod',NULL,NULL,'C',242,'2019-04-11 13:10:29','2019-04-11 12:10:29',NULL),(336,43,11,'VW','Passat','B8','2.0','EDC17C74',NULL,'150',2025,'3','NOH 947T',NULL,'1555064110.0TDi 150Bhp _NOH 947T_ William Kess VR Read EDC17C74','1555066816.cod','LEFT HAND DRIVE CAR',NULL,'C',243,'2019-04-12 11:00:23','2019-04-12 10:00:23',NULL),(337,43,11,'Mercedes','SLK200','R171','2.0','SIM4LKE',NULL,'163',2000,'3','M100 ADP',NULL,'1555159206.','1555161876.cod',NULL,NULL,'C',244,'2019-04-13 13:24:48','2019-04-13 12:24:48',NULL),(338,21,11,'audi','a3','2012','2.0','.',NULL,NULL,2000,'2','oy62rxc',NULL,'1555407024.txt','1555408801.cod',NULL,NULL,'C',245,'2019-04-16 10:00:08','2019-04-16 09:00:08',NULL),(339,45,15,'Ford','Ranger','2013','3200','SID208',NULL,NULL,2023,'1','FE63 SWV',NULL,'1555422276.','1555423469.cod',NULL,NULL,'C',246,'2019-04-16 14:04:36','2019-04-16 13:04:36',NULL),(340,19,14,'suuki','sx4','1st','1.9','edc16',NULL,NULL,2021,'1','x',NULL,'1555506042.','1555508833.cod',NULL,NULL,'C',247,'2019-04-17 13:47:22','2019-04-17 12:47:22',NULL),(341,19,14,'vw','amorak','1st','2.otdi','edc17',NULL,'161',2023,'2','x',NULL,'1555507216.txt','1555508340.cod',NULL,NULL,'C',248,'2019-04-17 13:39:08','2019-04-17 12:39:08',NULL),(342,27,11,'VW','T5','5','2.0','bosch',NULL,'1092',2023,'1','WD63OLT',NULL,'1555581732.','1555583203.cod',NULL,NULL,'C',249,'2019-04-18 10:26:56','2019-04-18 09:26:56',NULL),(343,74,20,'vw','caddy','mk5','2.0','edc16u1',NULL,'140',2017,'2','BG07CFY',NULL,'1555758014.','1555762328.cod','EGR DPF',NULL,'C',48,'2019-04-20 12:12:11','2019-04-20 11:12:11',NULL),(344,21,11,'VOLKSWAGON','CADDY','2K','1.6','PCR2.1',NULL,'102',2021,'1','SG61BOO',NULL,'1556093862.txt','1556195798.',NULL,NULL,'C',250,'2019-04-25 12:36:50','2019-04-25 11:36:50',NULL),(345,45,11,'VW','T6','T6','2000','EDC17cP20',NULL,'140',2026,'2','S23 CBB',NULL,'1556125508.','1556142686.cod',NULL,NULL,'C',251,'2019-04-24 21:51:31','2019-04-24 20:51:31',NULL),(346,21,11,'VW','POLO','6R','1.6','PCR2.1',NULL,'75',2000,'1','LS10YTG',NULL,'1556184295.txt','1556187804.cod',NULL,NULL,'C',252,'2019-04-25 10:23:30','2019-04-25 09:23:30',NULL),(347,19,11,'fiat','ducatto','2nd','3.0hdi','edc16',NULL,NULL,2018,'1','cb11jmb',NULL,'1556185103.','1556189547.cod',NULL,NULL,'C',253,'2019-04-25 10:52:36','2019-04-25 09:52:36',NULL),(348,35,15,'ford','ranger','2','2200','sid',NULL,NULL,2023,'2','yt13aor',NULL,'1556197255.','1556200046.cod',NULL,NULL,'C',254,'2019-04-25 13:47:33','2019-04-25 12:47:33',NULL),(349,36,11,'Audi','Q5 Quattro','1','2L TDi','Bosch EDC17E64',NULL,NULL,2018,'1','RR07 ROG',NULL,'1556360478.txt','1556361140.cod',NULL,NULL,'C',255,'2019-04-27 10:32:25','2019-04-27 09:32:25',NULL),(350,36,11,'Skoda','Fabia','??','1.6 TDi','VAG SIMOS PCR2.1 352 CAN',NULL,NULL,2023,'1','S13 WSR',NULL,'1556362445.txt','1556366089.cod',NULL,NULL,'C',256,'2019-04-27 11:54:55','2019-04-27 10:54:55',NULL),(351,81,20,'renault','megane','2012','1.5 dci','ecm',NULL,'110',2022,'2','SD620AZ',NULL,'1556458022.','1556460455.cod','stage 1 remap and dpf delete',NULL,'C',49,'2019-04-28 14:07:43','2019-04-28 13:07:43',NULL),(352,21,11,'AUDI','Q7','4L','3.0','.',NULL,NULL,2000,'11','B5DKG',NULL,'1556525958.txt','1556526688.cod',NULL,NULL,'C',257,'2019-04-29 08:31:54','2019-04-29 07:31:54',NULL),(353,74,20,'FORD','TRANSIT','OLD SHAPE T280','2198','SID208',NULL,'100',2022,'2','MF62KWH',NULL,'1556535405.BIN','1556538433.cod','EGR AND DPF OFF PLS JAY',NULL,'C',50,'2019-04-29 11:47:39','2019-04-29 10:47:39',NULL),(354,19,14,'audi','a3','8v','2.otd','edc16cp14',NULL,NULL,2019,'2','x',NULL,'1556545857.txt','1556551326.cod','swirl flaps off. pic sent',NULL,'C',258,'2019-04-29 15:22:10','2019-04-29 14:22:10',NULL),(355,35,15,'vauxhall','corsa','d','1300','edc17 c59',NULL,NULL,2000,'1','fp64xmf',NULL,'1556559217.','1556560037.unq',NULL,NULL,'C',259,'2019-04-29 17:47:34','2019-04-29 16:47:34',NULL),(356,45,11,'Seat','Leon','FR','2000','PPD',NULL,NULL,2017,'2','DK57 YBA',NULL,'1556717724.','1556719004.cod',NULL,NULL,'C',260,'2019-05-01 13:56:46','2019-05-01 12:56:46',NULL),(357,43,11,'Renault','Traffic','MK2','1.6','EDC17C42',NULL,'120',2025,'2','LG15WEB',NULL,'1556720800.6D _LG15 WEB_ ASC Kess Read File EDC17C42 P425','1556723219.cod',NULL,NULL,'C',261,'2019-05-01 15:07:02','2019-05-01 14:07:02',NULL),(358,76,21,'nissan','quashqai','2012','1600','cp42',NULL,'130',2022,'2','yc62xlj',NULL,'1556787568.','1556788139.cod',NULL,NULL,'C',51,'2019-05-02 09:09:04','2019-05-02 08:09:04',NULL),(359,27,11,'ford','transit','mk6','2.0','delphi',NULL,'85',2013,'1','GL53FMF',NULL,'1556789817.','1556792010.cod',NULL,NULL,'C',262,'2019-05-02 10:13:34','2019-05-02 09:13:34',NULL),(360,43,11,'VW','Golf','MKV','CFFB','EDC17C46',NULL,'140',2022,'2','FR12 XXH',NULL,'1556809203.0TDi CFFB _FR12 XXH_ Ernie Kess VR File EDC17C46 P399','1556812421.cod',NULL,NULL,'C',263,'2019-05-02 15:53:45','2019-05-02 14:53:45',NULL),(361,19,14,'ford','transit','mk7','2.4tdci','visteon',NULL,NULL,2018,'2','x',NULL,'1556810327.','1556812786.cod',NULL,NULL,'C',264,'2019-05-02 15:59:50','2019-05-02 14:59:50',NULL),(362,23,11,'audi','a5','2','1.8 tfsi','siemans-conti simos 12 vag can',NULL,NULL,2015,'2','KP12FVE',NULL,'1556874799.','1556875343.cod',NULL,NULL,'C',265,'2019-05-03 09:22:28','2019-05-03 08:22:28',NULL),(363,74,21,'land rover','range rover sport','dunno','2.7tdi','sid204',NULL,'187',2018,'3','nu58 xlp',NULL,'1556878867.','1556879983.cod','EGR AND DPF OFF PLS JAY',NULL,'C',52,'2019-05-03 10:39:48','2019-05-03 09:39:48',NULL),(364,43,15,'Citroen','Relay','MK2','2.2','SID208',NULL,'130',2025,'2','LD65 FPG',NULL,'1556881441.2HDi 130Bhp _LD65 FPG_ Dan Wilkins Foods Ktag OBD mode SID208 P1009','1556883363.unq','its not got additive but customer wants atomiser/5th injector deleted. P0423(92)-P1490(92)-P2002(7A)',NULL,'C',266,'2019-05-03 11:36:09','2019-05-03 10:36:09',NULL),(365,19,14,'vw','passat','b7','cayc','simos',NULL,NULL,2021,'2','x',NULL,'1556895672.','1556898057.cod',NULL,'sorry for delay pal','C',267,'2019-05-03 15:41:36','2019-05-03 14:41:36',NULL),(366,81,20,'audi','a4','2013','2.0 tdi','EDC17',NULL,'140',2023,'2','P17GKD',NULL,'1557168827.txt','1557170610.cod','STAGE 1 PERFORMANCE',NULL,'C',53,'2019-05-06 19:23:39','2019-05-06 18:23:39',NULL),(367,19,39,'renault','master','3rd','2.3','sid310',NULL,NULL,2028,'2','fl18drx',NULL,'1557301861.','1557302722.unq',NULL,NULL,'C',268,'2019-05-08 08:05:28','2019-05-08 07:05:28',NULL),(368,19,14,'peugeot','rc','1st','1.6 turbo','med17.4',NULL,NULL,2021,'2','x',NULL,'1557305302.','1557309830.unq','p0087,p1336,p1337,p1340, no rush with this.',NULL,'C',269,'2019-05-08 10:03:59','2019-05-08 09:03:59',NULL),(369,23,11,'BMW','X5','1','3.0D','BOSCH EDC16 C31 1MB SLOW KLINE',NULL,NULL,2014,'3','WJ54CFF',NULL,'1557307732.','1557309249.cod',NULL,NULL,'C',270,'2019-05-08 09:54:12','2019-05-08 08:54:12',NULL),(370,19,15,'audi','a3','8v','2.0tdi bmn','simos ppd',NULL,NULL,2017,'2','gj07dge',NULL,'1557317174.','1557319067.cod',NULL,NULL,'C',271,'2019-05-08 12:38:02','2019-05-08 11:38:02',NULL),(371,43,15,'Mercedes','E220','W212','2.1','CRD3x',NULL,'170',2023,'3','HG63PDV',NULL,'1557328150.','1557329649.cod','P246309 - P042815',NULL,'C',272,'2019-05-08 15:34:15','2019-05-08 14:34:15',NULL),(372,21,11,'AUDI','Q5','2012','CCWA','bosch',NULL,NULL,2022,'11','L3CLO',NULL,'1557399535.txt','1557400699.cod',NULL,NULL,'C',273,'2019-05-09 11:18:32','2019-05-09 10:18:32',NULL),(373,45,15,'Ford','Focus','3','1600','EDC17C10',NULL,NULL,2023,'2','YB62 VHD',NULL,'1557401222.','1557402274.cod',NULL,NULL,'C',274,'2019-05-09 11:44:46','2019-05-09 10:44:46',NULL),(374,76,20,'vw','Transporter','2011','2000','CP20',NULL,'140',2021,'2','va11jye',NULL,'1557402344.txt','1557404183.cod','Tune DPF off and EGR off pls',NULL,'C',54,'2019-05-09 12:16:35','2019-05-09 11:16:35',NULL),(375,27,11,'VW','GOLF','MK5','2.0','bosch',NULL,'140',2014,'2','GJ54ZRF',NULL,'1557403718.','1557405394.cod',NULL,NULL,'C',275,'2019-05-09 12:36:42','2019-05-09 11:36:42',NULL),(376,76,20,'vw','Transporter','2011','2000','cp20',NULL,'109',2021,'1','j100mcs',NULL,'1557475388.txt','1557476897.cod','Tune DPF off and EGR off pls',NULL,'C',55,'2019-05-10 08:28:26','2019-05-10 07:28:26',NULL),(377,19,14,'landrover','rr sport','1st','2.7tdi','siemens',NULL,NULL,2018,'3','x',NULL,'1557564051.','1557565768.cod',NULL,NULL,'C',276,'2019-05-11 09:09:39','2019-05-11 08:09:39',NULL),(378,45,11,'Mercedes','Sprinter','906','2100','Delphi CRD3',NULL,NULL,2026,'2','AY66 OTP',NULL,'1557564137.','1557565340.cod',NULL,NULL,'C',277,'2019-05-11 09:02:24','2019-05-11 08:02:24',NULL),(379,81,20,'sabb','93ttid','2008','1.9ttid','ed16 can',NULL,'182',2018,'2','OU58XVR',NULL,'1557566957.','1557569192.cod','STAGE 1 PERFORMANCE DPF DELETE',NULL,'C',56,'2019-05-11 10:06:44','2019-05-11 09:06:44',NULL),(380,45,11,'Mercedes','Sprinter','906','2100','Dephi CRD2',NULL,NULL,2023,'2','FJ63 MTF',NULL,'1557568328.','1557570374.cod',NULL,NULL,'C',278,'2019-05-11 10:26:19','2019-05-11 09:26:19',NULL),(381,19,14,'ford','moneo','4th','1.8tdci','sid206',NULL,NULL,2018,'1','x',NULL,'1557743466.','1557744440.cod',NULL,NULL,'C',279,'2019-05-13 10:47:24','2019-05-13 09:47:24',NULL),(382,45,14,'Seat','Leon','2011','1600','simos pcr2.1 can',NULL,NULL,2021,'2','ML11 ZZM',NULL,'1557744532.','1557745321.cod',NULL,NULL,'C',280,'2019-05-13 11:02:06','2019-05-13 10:02:06',NULL),(383,45,15,'Mercedes','vito','113','2100','Dephi CRD2',NULL,NULL,2023,'2','KM63 YZT',NULL,'1557759452.','1557763112.cod',NULL,NULL,'C',281,'2019-05-13 15:58:38','2019-05-13 14:58:38',NULL),(384,19,14,'land rover','disco','3','2.7tdi','siemens',NULL,NULL,2017,'3','n13cba',NULL,'1557833111.','1557834089.cod',NULL,NULL,'C',282,'2019-05-14 11:41:34','2019-05-14 10:41:34',NULL),(385,43,11,'vauxhall','Vivaro','MK3','2.0','EDC17C42',NULL,'114',2022,'2','EY12 ZRU',NULL,'1557839235.0D 114Bhp _EY12 ZRU_ Miley Kess Read EDC17C42','1557840431.cod',NULL,NULL,'C',283,'2019-05-14 13:27:21','2019-05-14 12:27:21',NULL),(386,19,11,'merc','c63','1st','6.3','me9.7',NULL,NULL,2024,'3','n9rmb',NULL,'1557930246.','1557931294.unq',NULL,NULL,'C',284,'2019-05-15 14:41:37','2019-05-15 13:41:37',NULL),(387,43,14,'Fiat','Ducato','MK3','2.3','Merelli',NULL,'130',2022,'2','YN12 GBY',NULL,'1557930722.3 _YN12 GBY_ Mark Kess Read Merelli P293','1557932802.cod',NULL,NULL,'C',285,'2019-05-15 15:06:46','2019-05-15 14:06:46',NULL),(388,43,11,'RangeRover','Evogue','MK1','2.2D','EDC17C42',NULL,'190',2022,'3','OV12 YDS',NULL,'1557939597.2D 190Bhp _OV12 YDS_ Dan Kess Read EDC17C42','1557941136.cod',NULL,NULL,'C',286,'2019-05-15 17:25:40','2019-05-15 16:25:40',NULL),(389,76,20,'vw','Transporter','2012','2000','cp20',NULL,'180',2022,'3','v12hll',NULL,'1557994742.txt','1557996847.cod','Tune DPF off and EGR off pls',NULL,'C',57,'2019-05-16 08:54:11','2019-05-16 07:54:11',NULL),(390,19,11,'landrover','sport','1st','2.7tdi','siemens',NULL,NULL,2018,'3','j100ycy',NULL,'1557999264.','1558007620.cod',NULL,NULL,'C',287,'2019-05-16 11:53:46','2019-05-16 10:53:46',NULL),(391,45,11,'Audi','A3','8P','2000 PD','EDC16',NULL,NULL,2015,'1','GL05 UUH',NULL,'1558001693.','1558007230.cod',NULL,NULL,'C',288,'2019-05-16 11:47:16','2019-05-16 10:47:16',NULL),(392,19,14,'ford','cmax','1st','1.6tdci','edc16',NULL,NULL,2017,'1','na07nvo',NULL,'1558002132.','1558005499.cod',NULL,NULL,'C',289,'2019-05-16 11:18:33','2019-05-16 10:18:33',NULL),(393,43,11,'Peugeot','Boxer','MK2','2.2HDi','SID208',NULL,'130',2025,'2','WX15ODG',NULL,'1558012174.2HDi 130Bhp _WX15 ODG_ Dave Ktag OBD Read SID208 P1009','1558013120.unq',NULL,NULL,'C',290,'2019-05-16 13:25:23','2019-05-16 12:25:23',NULL),(394,85,20,'bmw','7 series','DONT KNOW','3.0','edc17c09',NULL,NULL,2020,'3','7 MBL',NULL,'1558020231.bin','1558022319.MOD',NULL,NULL,'C',58,'2019-05-16 15:58:42','2019-05-16 14:58:42',NULL),(395,35,15,'bmw','320d','e93','2000','edc17 c41',NULL,NULL,2000,'1','dv60xvx',NULL,'1558110185.pth','1558112110.unq',NULL,'egr has to be unplugged','C',291,'2019-05-17 16:55:15','2019-05-17 15:55:15',NULL),(396,76,21,'iveco','daily','2013','2300jtd','c17',NULL,'130',2023,'2','nx13tyt',NULL,'1558279712.rar','1558357896.bin',NULL,NULL,'C',59,'2019-05-20 13:11:43','2019-05-20 12:11:43',NULL),(397,35,11,'mini','mini','r56','1.6','edc16 c35',NULL,NULL,2000,'1','sy57llg',NULL,'1558360126.','1558362560.cod',NULL,NULL,'C',292,'2019-05-20 14:29:23','2019-05-20 13:29:23',NULL),(398,46,11,'CITROEN','C4','1ST','1.6HDI','BOSCH',NULL,'90',2015,'1','SM55 EBP',NULL,'1558370248.6hdi 2005 pez read file','1558429977.cod',NULL,NULL,'C',293,'2019-05-21 09:13:04','2019-05-21 08:13:04',NULL),(400,45,11,'Izusu','DMAX','2','2500','Transtron',NULL,'163',2022,'3','FN62 XHX',NULL,'1558426416.','1558428714.cod',NULL,NULL,'C',294,'2019-05-21 08:52:06','2019-05-21 07:52:06',NULL),(401,43,11,'VW','PASSAT','3C','2.0','EDC17CP04-14',NULL,'140',2019,'3','KN09 YUV',NULL,'1558438249.','1558440023.cod','08198 Intake Stuck Closed - 08213 Intake Range Performance Diagnosti didnt give P codes codes from Autel',NULL,'C',295,'2019-05-21 12:00:41','2019-05-21 11:00:41',NULL),(402,85,20,'jag','xe','dont know','2.0','medc.17.9',NULL,'177',2025,'1','b2 kcm',NULL,'1558438308.bin',NULL,NULL,NULL,'C',61,'2019-05-29 08:50:34','2019-05-29 07:50:34',NULL),(403,19,11,'ford','transit','mk7','2.2tdci drfb','sid208',NULL,NULL,2022,'2','bd61bmt',NULL,'1558453601.','1558459062.cod',NULL,NULL,'C',296,'2019-05-21 17:17:49','2019-05-21 16:17:49',NULL),(404,19,11,'ford','ranger','2nd','3.2tdci','sid209',NULL,NULL,2026,'3','yw16veo',NULL,'1558531258.','1558533106.cod',NULL,NULL,'C',297,'2019-05-22 13:51:51','2019-05-22 12:51:51',NULL),(405,24,11,'MERC','SPRINTER','313','2.2','UU',NULL,'-2',2017,'2','KK',NULL,'1558544265.','1558549149.cod',NULL,NULL,'C',298,'2019-05-22 18:19:21','2019-05-22 17:19:21',NULL),(406,76,20,'VW','T6','2017','2000 adblue','dcm6.2v',NULL,'102',2027,'1','sk17bus',NULL,'1558602400.txt','1558604828.cod','adblue off dpf off and strong tune','HAVE NICE HOLIDAY AND STAY AWAY FROM POOLS AND CHILDREN','C',62,'2019-05-23 09:47:28','2019-05-23 08:47:28',NULL),(407,24,11,'Merc','e class','212','2143','aaa',NULL,'1',2020,'2','aaa',NULL,'1558613281.','1558615763.cod',NULL,NULL,'C',299,'2019-05-23 12:49:32','2019-05-23 11:49:32',NULL),(408,19,14,'landrover','range rover','l322','v8 tdv8','sid203',NULL,NULL,2019,'3','ak59hyh',NULL,'1558700117.','1558703220.cod','needs p code off too. whatsapp sent. take what credits you need','dtc\'s removed','C',300,'2019-05-24 13:07:05','2019-05-24 12:07:05',NULL),(409,43,11,'Ford','Transit','TT9','2.4','Visteon',NULL,'100',2021,'2','YF11 DZA',NULL,'1558776751.4 100Bhp _VF11 DZA_ Simon Kess Read Visteon P113','1558780871.cod',NULL,NULL,'C',301,'2019-05-25 10:41:21','2019-05-25 09:41:21',NULL),(410,43,34,'MINI','JCW','R58','1.6T','MEVD17.2.2',NULL,'211',2023,'2','P2 OGX',NULL,'1558786224.pth','1558789597.unq','P516 Connection P208 Used (REF)',NULL,'C',302,'2019-05-25 13:07:04','2019-05-25 12:07:04',NULL),(414,76,20,'landrover','discovery','td5','2500','nnn',NULL,NULL,2014,'1','vo54 dse',NULL,'1559121265.','1559121669.cod',NULL,NULL,'C',63,'2019-05-29 09:22:16','2019-05-29 08:22:16',NULL),(416,19,39,'citroen','cactus','1st','1.6hdi','edc17c60',NULL,NULL,2025,'2','x',NULL,'1559141733.','1559145360.unq',NULL,'docs say adblue pump and ecu need to be unplugged','C',305,'2019-05-29 15:56:46','2019-05-29 14:56:46',NULL),(417,84,11,'vauxhall','vivaro','p2','2.0','edc16',NULL,NULL,2021,'2','wp11 ule',NULL,'1559149346.','1559149813.cod',NULL,NULL,'C',306,'2019-05-29 17:10:19','2019-05-29 16:10:19',NULL),(418,19,39,'merc','c220d','w205','2.1','crd3',NULL,NULL,2024,'2','hk64lhj',NULL,'1559214427.','1559229845.unq',NULL,'Try this file and feedback. this is a development file','C',307,'2019-05-30 15:24:16','2019-05-30 14:24:16',NULL),(419,21,11,'SEAT','LEON FR','2010','2.0','bosch',NULL,'170',2020,'2','WA60MGV',NULL,'1559217899.txt','1559219733.cod',NULL,NULL,'C',308,'2019-05-30 12:35:55','2019-05-30 11:35:55',NULL),(421,35,11,'vw','caddy','5','1600','pcr 2.1',NULL,NULL,2000,'1','pf11fwz',NULL,'1559222691.6 TDI','1559224557.cod',NULL,NULL,'C',309,'2019-05-30 13:56:04','2019-05-30 12:56:04',NULL),(422,85,20,'ford','ranger','dont know','3.2','sid209',NULL,NULL,2029,'1','bd19 ogo',NULL,'1559234608.bin','1559298095.MOD',NULL,NULL,'C',64,'2019-05-31 10:21:46','2019-05-31 09:21:46',NULL),(423,21,11,'AUDI','TT','2010','2.0','bosch',NULL,NULL,2020,'2','MK60WUD',NULL,'1559292208.txt','1559292988.cod',NULL,NULL,'C',310,'2019-05-31 08:56:31','2019-05-31 07:56:31',NULL),(424,43,11,'VW','Golf','MK6','1.4TSI','MED17.5.20',NULL,'122',2022,'6','S23 ASO',NULL,'1559384925.4TSI 122Bhp CAXA _S23 ASO_ Samantha Kess VR File P426','1559387338.cod',NULL,NULL,'C',311,'2019-06-01 11:09:12','2019-06-01 10:09:12',NULL),(425,19,14,'citroen','berlingo','1st','1.6','edc16',NULL,NULL,2016,'1','x',NULL,'1559569021.','1559569711.cod',NULL,NULL,'C',312,'2019-06-03 13:48:37','2019-06-03 12:48:37',NULL),(426,45,11,'VW','Caddy','2017','2000','EDC17 C64',NULL,'101',2027,'2','SY17 VST',NULL,'1559577876.','1559578496.cod',NULL,NULL,'C',313,'2019-06-03 16:15:02','2019-06-03 15:15:02',NULL),(427,76,20,'bmw','535','2006','3500','edc 16+c35',NULL,'272',2016,'3','l444dmk',NULL,'1559646213.','1559650123.cod','egr off plus power map',NULL,'C',65,'2019-06-04 12:09:07','2019-06-04 11:09:07',NULL),(428,19,11,'vw','t5.1','5.1','2.0 caaa','edc17cp20',NULL,'84',2020,'1','x',NULL,'1559719640.txt','1559722079.cod',NULL,NULL,'C',314,'2019-06-05 08:08:07','2019-06-05 07:08:07',NULL),(429,45,11,'Vauxhall','Astra','J','1400 T','Delco E83',NULL,'118',2024,'2','ML64 XPS',NULL,'1559725954.','1559727642.cod',NULL,NULL,'C',315,'2019-06-05 09:40:56','2019-06-05 08:40:56',NULL),(430,45,11,'renault','kangoo','2','1.5`','EDC17 C42',NULL,NULL,2025,'1','BJ65 BMU',NULL,'1559820168.','1559821657.cod','Speed limiter set to 68mph',NULL,'C',316,'2019-06-06 11:47:47','2019-06-06 10:47:47',NULL),(431,24,11,'ford','focus st','2','2.5','cc',NULL,'1',2016,'2','cv55',NULL,'1559824234.','1559828717.cod',NULL,'decat the exhaust','C',317,'2019-06-06 13:45:41','2019-06-06 12:45:41',NULL),(432,24,11,'tiguan','vw','q','2.0','f',NULL,'1',2024,'2','h',NULL,'1559824815.','1559827763.cod',NULL,NULL,'C',318,'2019-06-06 13:29:34','2019-06-06 12:29:34',NULL),(433,19,14,'ford','connect','2nd','1.8tdci','sid202',NULL,NULL,2021,'1','x',NULL,'1559831668.','1559833265.cod',NULL,NULL,'C',319,'2019-06-06 15:01:14','2019-06-06 14:01:14',NULL),(434,76,20,'vw','crafter','2011','2500','cp20',NULL,'82',2021,'2','rj11ryh',NULL,'1559896581.txt','1559899539.cod','dpf off and tune pls',NULL,'C',66,'2019-06-07 09:26:05','2019-06-07 08:26:05',NULL),(436,19,14,'audi','a4','b7','3.2fsi','simos 6.2',NULL,NULL,2017,'11','m1rpp',NULL,'1560163519.2','1560164083.cod',NULL,NULL,'C',321,'2019-06-10 10:54:51','2019-06-10 09:54:51',NULL),(437,94,14,'ford','ranger','t6','2.2','siemens',NULL,'-1',2024,'2','pfz7190',NULL,'1560172050.','1560174290.cod','i need an egr done do this map please.',NULL,'C',322,'2019-06-10 13:44:58','2019-06-10 12:44:58',NULL),(438,19,11,'bmw','118','e82','n47d20c','edc17cp02',NULL,NULL,2020,'2','kp10omu',NULL,'1560172575.','1560175879.unq','looks like someones been in it before',NULL,'C',323,'2019-06-10 14:11:26','2019-06-10 13:11:26',NULL),(439,45,11,'VW','Scirocco','2009','2000 CR','CP14',NULL,NULL,2019,'1','B19 PPY',NULL,'1560333167.','1560336402.cod',NULL,NULL,'C',324,'2019-06-12 10:46:49','2019-06-12 09:46:49',NULL),(440,76,20,'ford','ranger','2012','2200','sid208',NULL,'140',2022,'2','da58yan',NULL,'1560416465.','1560417711.cod','5050 dpf off',NULL,'C',67,'2019-06-13 09:21:55','2019-06-13 08:21:55',NULL),(441,19,14,'vauxhall','corsa d','d','1.2xep','me7.6.2',NULL,NULL,2018,'1','x',NULL,'1560416864.','1560417713.cod',NULL,NULL,'C',325,'2019-06-13 09:22:06','2019-06-13 08:22:06',NULL),(442,76,20,'vw','Transporter','t5','1900','edc16',NULL,'84',2014,'1','la04svv',NULL,'1560419126.','1560420112.cod','a bit better eco but more power',NULL,'C',68,'2019-06-13 10:02:00','2019-06-13 09:02:00',NULL),(443,23,15,'ford','transit','mk7','2.2','sid208 can',NULL,'125',2023,'2','mx13ykg',NULL,'1560430749.','1560434504.cod',NULL,NULL,'C',326,'2019-06-13 14:02:07','2019-06-13 13:02:07',NULL),(444,19,14,'skoda','<NAME>','2nd','1.4tsi cthe','me7',NULL,NULL,2023,'4','x',NULL,'1560517122.txt','1560519126.cod',NULL,NULL,'C',327,'2019-06-14 13:32:10','2019-06-14 12:32:10',NULL),(445,76,20,'bmw','320 f31','2012','2000','dme dde701a',NULL,'181',2022,'1','fv12zvh',NULL,'1560517516.txt','1560518755.cod',NULL,NULL,'C',69,'2019-06-14 13:25:59','2019-06-14 12:25:59',NULL),(446,19,15,'fiat','doblo','263','1.3jtd','mjd8',NULL,NULL,2023,'1','yr64trx',NULL,'1560519445.','1560520871.cod',NULL,NULL,'C',328,'2019-06-14 14:01:18','2019-06-14 13:01:18',NULL),(447,43,11,'Ford','Focus','MKII','1.6TDCi','EDC16C34',NULL,'109',2019,'1','FL09 GGJ',NULL,'1560519993.6TDCi 109Bhp _FL09 GGJ_ Reece Ktag Read EDC16C34','1560522404.unq','P0490 - P042F both EGR related',NULL,'C',329,'2019-06-14 14:26:50','2019-06-14 13:26:50',NULL),(448,39,15,'volvo','v50','1','2000','siemens',NULL,NULL,2015,'1','gf55lna',NULL,'1560524466.','1560526578.cod',NULL,'see how you get on','C',330,'2019-06-14 15:36:26','2019-06-14 14:36:26',NULL),(449,74,21,'BMW','1 SERIES','E87','2.0','EDC17CP02',NULL,'174',2017,'2','RO57 HTG',NULL,'1560940102.','1560941408.cod','EGR AND DPF OFF PLS JAY',NULL,'C',70,'2019-06-19 10:50:13','2019-06-19 09:50:13',NULL),(450,85,20,'ford','kuga','dont know','2.0','dcm6.1',NULL,'150',2026,'1','mm16',NULL,'1560952372.bin','1560953984.','stage 1 please',NULL,'C',71,'2019-06-19 14:19:47','2019-06-19 13:19:47',NULL),(451,81,20,'bmw','330d','2013','3.0 twin turbo','ecm',NULL,'258',2023,'3','WV63PKY',NULL,'1560956739.txt','1560958626.cod','STAGE 1 PERFORMANCE',NULL,'C',72,'2019-06-19 15:37:11','2019-06-19 14:37:11',NULL),(452,76,32,'fiat','ducato','1','2300','c16c39',NULL,'120',2021,'2','wn61lzf',NULL,'1560960328.','1560960992.cod','thought switch and dtc off were discounted. it takes a full credit off me every time',NULL,'C',73,'2019-06-19 16:16:38','2019-06-19 15:16:38',NULL),(453,27,11,'AUDI','A6','MK2','2.0','bosch',NULL,'190',2024,'4','RK64XEO',NULL,'1561029741.','1561032451.cod',NULL,NULL,'C',331,'2019-06-20 12:07:38','2019-06-20 11:07:38',NULL),(455,19,11,'vw','polo','6','1.6 cayc','prc2.1',NULL,NULL,2024,'1','x',NULL,'1561113027.','1561115307.cod',NULL,NULL,'C',332,'2019-06-21 11:08:33','2019-06-21 10:08:33',NULL),(456,21,34,'RENAULT','SCENIC','2005','2..0','.',NULL,NULL,2015,'1','MA05EZU',NULL,'1561116279.0 turbo ma05ezu','1561118613.cod',NULL,'stage 2 O2 off','C',333,'2019-06-21 12:03:38','2019-06-21 11:03:38',NULL),(457,27,14,'MERCEDES','SPRINTER','651.955','2.2','bosch',NULL,'129',2022,'3','OU12 DWK',NULL,'1561117712.','1561119486.cod',NULL,NULL,'C',334,'2019-06-21 12:18:12','2019-06-21 11:18:12',NULL),(458,19,14,'landrover','freelander','2nd','2.2','edc16',NULL,NULL,2019,'3','l700stl',NULL,'1561448967.','1561452174.cod',NULL,NULL,'C',335,'2019-06-25 08:43:01','2019-06-25 07:43:01',NULL),(459,76,21,'kia','sportage','2007','2000','c39',NULL,'138',2017,'2','dl07axd',NULL,'1561453292.','1561454415.cod',NULL,NULL,'C',74,'2019-06-25 09:20:26','2019-06-25 08:20:26',NULL),(460,45,11,'vw','Caddy','2016','2000','EDC17 C64',NULL,'101',2026,'1','GD16 FFN',NULL,'1561536554.','1561539171.cod',NULL,NULL,'C',336,'2019-06-26 08:52:57','2019-06-26 07:52:57',NULL),(461,19,34,'mini','jcw','r56','1.6 turbo','mev17 tc1766',NULL,NULL,2021,'2','ov11kje',NULL,'1561558629.','1561561769.unq',NULL,NULL,'C',337,'2019-06-26 15:09:33','2019-06-26 14:09:33',NULL),(462,43,15,'Vauxhall','Insignia','MK1','2.0','A20DTH',NULL,'150',2020,'2','EO10 VWL',NULL,'1561567308.0CDTi A20DTH _EO10 VWL_ Ryan Ktag Read EDC17C19','1561568790.unq',NULL,NULL,'C',338,'2019-06-26 17:06:41','2019-06-26 16:06:41',NULL),(463,19,15,'fiat','doblo','263','1.3','mjd8',NULL,NULL,2025,'1','x',NULL,'1561635194.','1561637058.cod',NULL,NULL,'C',339,'2019-06-27 12:04:22','2019-06-27 11:04:22',NULL),(464,76,21,'ford','Connect','2012','TDCI','sid803/202',NULL,NULL,2022,'1','MJ12DZA',NULL,'1561638968.','1561726449.cod','DPF OFF',NULL,'C',75,'2019-06-28 12:54:16','2019-06-28 11:54:16',NULL),(465,23,15,'skoda','octavia','2','1.6','siemens conti pcr2.1 can',NULL,NULL,2021,'2','pk61yro',NULL,'1561640784.','1561642753.cod',NULL,NULL,'C',340,'2019-06-27 13:39:17','2019-06-27 12:39:17',NULL),(467,19,14,'citroen','relay','u9 euro5','2.2hi','sid208',NULL,'130',2025,'2','pe15dvo',NULL,'1561719600.','1561723605.unq',NULL,NULL,'C',342,'2019-06-28 12:07:10','2019-06-28 11:07:10',NULL),(468,27,11,'VW','GOLF','MK5','2.0','bosch',NULL,'200',2016,'4','NC06FSD',NULL,'1561732889.','1561737657.cod',NULL,'this is more of a stage 2 to be fair, and burbles added','C',343,'2019-06-28 16:01:03','2019-06-28 15:01:03',NULL),(469,45,11,'Audi','TT','2012','2000cR','EDC17C46',NULL,'170',2022,'2','KX61 EKY',NULL,'1561800208.','1561802349.cod',NULL,NULL,'C',344,'2019-06-29 09:59:13','2019-06-29 08:59:13',NULL),(471,43,11,'Vauxhall','Vivaro','MK1','2.5','EDC16',NULL,'146',2017,'3','FN57 THX',NULL,'1562008761.5CDTi 146Bhp _FN57 THX_ Fella Kess Read EDC16','1562014200.cod',NULL,NULL,'C',346,'2019-07-01 20:50:56','2019-07-01 19:50:56',NULL),(472,45,11,'Mini','Cooper S','R53','1600','EMS2',NULL,NULL,2016,'2','KH06 EWA',NULL,'1562143085.','1562145244.cod',NULL,NULL,'C',347,'2019-07-03 09:14:10','2019-07-03 08:14:10',NULL),(473,43,15,'Peugeot','308','T9','1.6HDi','EDC17C60',NULL,'120',2025,'2','WM65 FTO',NULL,'1562147739.6HDi 120Bhp _MW65 FTO_ Thameside Taxi Ktag Read EDC17C60 P728','1562149609.unq','P2463 - P246C - P24A4','ACCORDING TO THE SPEC SHEET\r\nDPF PRESSURE AND TEMPERATURE SENSORS HAVE TO BE DISCONNECTED\r\nADBLUE ECU AND PUMP HAVE BE DISCONNECTED','C',348,'2019-07-03 10:27:04','2019-07-03 09:27:04',NULL),(474,43,11,'BMW','1 series','F21','2.0','EDC17C50',NULL,'117',2025,'3','EY15 YAK',NULL,'1562148671.0D 117Bhp _EY15 YAK_ Mark Kess VR File EDC17C50 P628','1562151135.cod','MAKE IT FAST','this is the lower bhp','C',349,'2019-07-03 10:52:35','2019-07-03 09:52:35',NULL),(475,45,11,'Lexus','IS220','2007','2200','Denso',NULL,NULL,2000,'1','N6 CVH',NULL,'1562158853.ori','1562159886.cod',NULL,'you hay need to reset the counters','C',350,'2019-07-03 13:18:27','2019-07-03 12:18:27',NULL),(476,23,15,'VW','BEETLE','3','2.0TDI','EDC17C46 VAG CAN',NULL,NULL,2022,'2','NV62UKY',NULL,'1562245369.','1562246996.cod',NULL,NULL,'C',351,'2019-07-04 13:30:01','2019-07-04 12:30:01',NULL),(477,76,20,'vw','golf','5','2000','ppd1.2',NULL,'170',2018,'2','ma08bhp',NULL,'1562249611.','1562251961.cod','dpf off and tune pls',NULL,'C',76,'2019-07-04 14:52:46','2019-07-04 13:52:46',NULL),(478,19,14,'vw','passat','3b','2.0tdi','siemens',NULL,NULL,2015,'2','x',NULL,'1562250759.0','1562256234.cod',NULL,NULL,'C',352,'2019-07-04 16:04:00','2019-07-04 15:04:00',NULL),(480,100,20,'Ford','Custom','2014','2200','sid208',NULL,'85',2024,'2','na64ljf',NULL,'1562338271.','1562404157.cod',NULL,NULL,'C',77,'2019-07-06 09:09:21','2019-07-06 08:09:21',NULL),(481,85,20,'ford','focus','dont know','1.6 tdci','sid807evo',NULL,NULL,2022,'1','cv12blf',NULL,'1562590032.bin',NULL,'customer reports gear 1 is sluggish',NULL,'C',78,'2019-07-09 14:40:20','2019-07-09 13:40:20',NULL),(483,100,20,'vw','transporter','2011','1968','edc17cp20',NULL,'102',2021,'1','kp11xem',NULL,'1562682793.txt','1562683796.cod',NULL,NULL,'C',79,'2019-07-09 14:50:04','2019-07-09 13:50:04',NULL),(484,100,20,'ford','transit','2010','2200','DCU10x',NULL,NULL,2020,'2','nd59xaj',NULL,'1562696119.','1562698922.cod',NULL,NULL,'C',80,'2019-07-09 19:02:25','2019-07-09 18:02:25',NULL),(485,19,15,'ford','kuga','1st','2.0','dcm3.5',NULL,NULL,2020,'2','x',NULL,'1562746044.','1562746538.cod',NULL,NULL,'C',354,'2019-07-10 08:15:47','2019-07-10 07:15:47',NULL),(486,19,11,'audi','a6','c6','2.0 caha','edc17',NULL,NULL,2020,'3','x',NULL,'1562761950.txt','1562763457.cod',NULL,NULL,'C',355,'2019-07-10 12:57:40','2019-07-10 11:57:40',NULL),(487,100,20,'Audi','a4','2008','2698','501 - vag bosch',NULL,NULL,2018,'3','fy58mvz',NULL,'1562783278.txt','1562842334.cod',NULL,NULL,'C',81,'2019-07-11 10:52:17','2019-07-11 09:52:17',NULL),(488,100,20,'mercedes','c220cla','2014','2143','delphi crd3 ecm',NULL,NULL,2024,'3','ls64zfa',NULL,'1562789679.','1562842296.cod',NULL,NULL,'C',82,'2019-07-11 10:51:45','2019-07-11 09:51:45',NULL),(489,19,11,'audi','a4','b9','2.0 deta','edc17c74',NULL,'190',2026,'3','x',NULL,'1562831818.txt','1562834938.cod',NULL,NULL,'C',356,'2019-07-11 08:49:03','2019-07-11 07:49:03',NULL),(490,76,20,'jag','xfr','2015','2200','c42',NULL,'200',2025,'3','ys15bmu',NULL,'1562843679.','1562845560.cod',NULL,NULL,'C',83,'2019-07-11 11:46:07','2019-07-11 10:46:07',NULL),(491,43,11,'Mercedes','A200D AMG 7G-DCT','W176','2.0','CRD3.E1 P935',NULL,'136',2026,'3','GF66VGP',NULL,'1562844103.pth','1562845476.unq',NULL,NULL,'C',357,'2019-07-11 11:44:39','2019-07-11 10:44:39',NULL),(492,85,33,'vw','tiguan','dont know','2.0','edc17c46',NULL,NULL,2000,'3','mt61fej',NULL,'1562846145.rar','1562846558.bin','eco mate 4 motion',NULL,'C',84,'2019-07-11 12:02:51','2019-07-11 11:02:51',NULL),(493,98,11,'Audi','Q7','2006','BUG 3000 TDI','EDC16CP34',NULL,'229',2016,'3','J109730',NULL,'1562849775.','1562855204.','Hi, Please delete EGR and some fault codes . P1099 / P3085 / P2008 / P2011 . Thank you',NULL,'C',358,'2019-07-11 14:26:51','2019-07-11 13:26:51',NULL),(494,43,34,'BMW','M4','F82','S55B30','MEVD17.2.G',NULL,'431',2024,'8','K3 BCT',NULL,'1562865223.G P629','1562867005.cod','STG_2 + PnP Sport Button + Sports DIsplay',NULL,'C',359,'2019-07-11 17:43:28','2019-07-11 16:43:28',NULL),(495,100,20,'ford','transit','2010','2200','dcu102',NULL,NULL,2020,'2','mk10pcy',NULL,'1562868408.','1562873393.cod',NULL,NULL,'C',85,'2019-07-11 19:30:42','2019-07-11 18:30:42',NULL),(496,27,11,'AUDI','A3','8P','2.0','SIEMENS',NULL,'170',2017,'5','KP07AHC',NULL,'1562927851.','1562928760.cod',NULL,'i did the egr for you as well and the hot start fix, help starting','C',360,'2019-07-12 10:52:49','2019-07-12 09:52:49',NULL),(498,43,15,'Ford','Transit Connect','MK2','1.8','SID202',NULL,'75',2023,'1','LM13 EWB',NULL,'1562950798.8TDCi 75 Bhp _LM13 EWB_ Mark Mechanic Kess Read SID202 P76','1562952043.cod',NULL,NULL,'C',362,'2019-07-12 17:20:46','2019-07-12 16:20:46',NULL),(499,100,20,'mercedes','vito','2012','2200','delphi crd3 ecm',NULL,NULL,2022,'2','sb12dpk',NULL,'1563044168.','1563045770.cod',NULL,NULL,'C',86,'2019-07-13 19:22:56','2019-07-13 18:22:56',NULL),(500,100,20,'vw','transporter','2014','1968','edc17cp20',NULL,NULL,2024,'2','vo14ezk',NULL,'1563127390.','1563129396.cod',NULL,NULL,'C',87,'2019-07-14 18:36:39','2019-07-14 17:36:39',NULL),(502,19,14,'vw','golf','6','cayc 1.6tdi','pcr2.1',NULL,NULL,2021,'1','x',NULL,'1563189974.','1563190774.cod',NULL,NULL,'C',363,'2019-07-15 11:39:38','2019-07-15 10:39:38',NULL),(503,19,14,'landrover','freelander','2nd','2.2','edc17',NULL,NULL,2021,'3','l400stl',NULL,'1563197587.','1563198577.unq',NULL,'EGR Actuator plug must be disconnected','C',364,'2019-07-15 13:49:42','2019-07-15 12:49:42',NULL),(504,19,17,'skoda','yet','1','2.0tdi','edc17c64',NULL,NULL,2026,'1','x',NULL,'1563205101.txt','1563205841.cod',NULL,NULL,'C',365,'2019-07-15 15:50:46','2019-07-15 14:50:46',NULL),(505,43,11,'VW','Scirocco','MKII','CDLK','MED9.1',NULL,'280',2025,'5','LC15 NDE',NULL,'1563210431.1','1563214724.cod',NULL,NULL,'C',366,'2019-07-15 18:18:47','2019-07-15 17:18:47',NULL),(506,100,20,'ford','ranger','2018','3200','sid209',NULL,NULL,2028,'3','sl18juy',NULL,'1563216827.','1563219771.cod',NULL,NULL,'C',88,'2019-07-15 19:43:04','2019-07-15 18:43:04',NULL),(507,76,21,'ford','cuastom','2014','2200','sid208',NULL,NULL,2024,'2','sb14ekh',NULL,'1563264536.','1563265885.cod','dpf off egroff',NULL,'C',89,'2019-07-16 08:31:33','2019-07-16 07:31:33',NULL),(508,19,14,'bmw','320d','e90','n47d20a','edc17',NULL,NULL,2018,'2','x',NULL,'1563268706.','1563271288.unq',NULL,'sorry for the delay. i saw 2018 model and couldnt work out what edc17 version it was, eventually discovered it wasnt a 2018 and was old, lol. edc17 cp02. More info you can give me, full ecu type etc speeds things up alot. :)','C',367,'2019-07-16 10:01:47','2019-07-16 09:01:47',NULL),(509,100,20,'ford','Custom','2014','2200','sid208',NULL,NULL,2024,'2','nv64ouc',NULL,'1563275639.','1563277477.cod',NULL,NULL,'C',90,'2019-07-16 11:44:48','2019-07-16 10:44:48',NULL),(510,100,20,'ford','Custom','2015','2200','sid209',NULL,'125',2025,'2','yt15vhc',NULL,'1563276431.','1563452999.cod',NULL,NULL,'C',91,'2019-07-18 12:30:04','2019-07-18 11:30:04',NULL),(511,76,20,'audi','tt mk1','225','1800t','med7.5',NULL,'225',2011,'2','x685vvx',NULL,'1563278067.','1563282006.cod','275 silly tune pls',NULL,'C',92,'2019-07-16 13:00:21','2019-07-16 12:00:21',NULL),(512,27,11,'SKODA','SUPERB','MK2','2.0','bosch',NULL,'170',2022,'2','KP62UYW',NULL,'1563282643.','1563287011.cod',NULL,NULL,'C',368,'2019-07-16 14:24:08','2019-07-16 13:24:08',NULL),(513,24,11,'merc','gla','1','2000','delphi',NULL,'1',2025,'3','s',NULL,'1563286874.','1563289300.cod',NULL,NULL,'C',369,'2019-07-16 15:01:46','2019-07-16 14:01:46',NULL),(514,100,20,'vw','golf','2011','1968','bosch edc17c46',NULL,'140',2021,'2','na61ozg',NULL,'1563360137.','1563362052.cod','INCLUDING EGR DELETE',NULL,'C',93,'2019-07-17 11:14:18','2019-07-17 10:14:18',NULL),(515,43,11,'Mercedes','Sprinter','313','2.31','CRD3.20',NULL,'129',2025,'3','OU65 SVX',NULL,'1563369845.20','1563371552.cod',NULL,NULL,'C',370,'2019-07-17 13:52:34','2019-07-17 12:52:34',NULL),(516,43,11,'Audi','A6','C7','2.0','EDC17C64',NULL,'190',2025,'12','GF65 NHC',NULL,'1563380778.0TDi Black Edition 190Bhp CNHA _GF65NHC_ Nick Kess VR File EDC17C64 P447','1563381671.cod',NULL,NULL,'C',371,'2019-07-17 16:41:14','2019-07-17 15:41:14',NULL),(517,76,20,'FORD','TRANSIT','2012','2200','SID208',NULL,NULL,2022,'2','BF62OYO',NULL,'1563437135.','1563445009.cod','dpf off and MILD tune pls',NULL,'C',94,'2019-07-18 10:16:57','2019-07-18 09:16:57',NULL),(518,76,20,'FORD','cuastom','2014','2200','SID208',NULL,'99',2024,'2','ga55ant',NULL,'1563451528.','1563454794.cod','good not silly tune pls',NULL,'C',95,'2019-07-18 13:00:02','2019-07-18 12:00:02',NULL),(519,74,20,'FORD','TRANSIT custom','CUSTOM','2.2','SID208',NULL,'125',2025,'2','YH15 WWF',NULL,'1563529061.','1563530740.cod',NULL,NULL,'C',96,'2019-07-19 10:05:45','2019-07-19 09:05:45',NULL),(520,100,20,'vw','golf','2017','1968','edc17c74',NULL,'184',2027,'3','jd17gtd',NULL,'1563530979.','1563548792.cod',NULL,NULL,'C',97,'2019-07-19 15:06:37','2019-07-19 14:06:37',NULL),(521,43,11,'VW','Crafter','MKII','2.5TDi','EDC17CP20',NULL,'136',2021,'2','OV11 FWS',NULL,'1563538307.5TDi 136Bhp _OV11 FWS_ Jamie Kess VR File EDC17CP20 P459','1563540075.cod',NULL,NULL,'C',372,'2019-07-19 12:41:59','2019-07-19 11:41:59',NULL),(522,76,20,'Ford','Fiesta ST','6','1999','EEC-Vi',NULL,'150',2016,'2','BF06XTH',NULL,'1563556342.','1563561071.cod','As much as possible pls',NULL,'C',98,'2019-07-19 18:31:17','2019-07-19 17:31:17',NULL),(523,100,20,'ford','fiesta','2012','1560','edc17c10',NULL,'95',2022,'1','sk62otj',NULL,'1563702076.','1563811647.cod',NULL,NULL,'C',99,'2019-07-22 16:07:39','2019-07-22 15:07:39',NULL),(524,100,20,'audi','a4','2011','1800','bosch med17.x can',NULL,'160',2021,'2','nl61mjf',NULL,'1563719220.','1563818743.cod',NULL,NULL,'C',100,'2019-07-22 18:05:45','2019-07-22 17:05:45',NULL),(525,100,20,'skoda','OCTAVIA VRS','2009','1968','edc17 cp04/cp14',NULL,'170',2019,'2','kh02ash',NULL,'1563807459.','1563809614.cod','DPF DELETE',NULL,'C',101,'2019-07-22 15:33:43','2019-07-22 14:33:43',NULL),(526,76,20,'FORD','Mondeo','2010','1999','dcm3.5',NULL,'138',2020,'2','FG60LYY',NULL,'1563869696.5','1563872873.cod','Tune DPF off and EGR off',NULL,'C',102,'2019-07-23 09:08:07','2019-07-23 08:08:07',NULL),(527,19,11,'INFINITY','q30','1st','1.5dci merc','sid310',NULL,'109',2027,'2','m13cov',NULL,'1563871581.pth','1563873131.unq',NULL,NULL,'C',373,'2019-07-23 09:12:20','2019-07-23 08:12:20',NULL),(528,76,20,'VW','PASSAT','2008','2000','PPD 1.5',NULL,'140',2017,'4','YY07 BFG',NULL,'1563882910.','1563884791.cod','STONG TUNE PLEASE',NULL,'C',103,'2019-07-23 12:26:38','2019-07-23 11:26:38',NULL),(529,100,20,'seat','leon','2007','2000','siemens ppd1.2',NULL,'170',2017,'2','ku57okb',NULL,'1563884221.','1563959884.cod','DPF DELETE',NULL,'C',104,'2019-07-24 09:18:10','2019-07-24 08:18:10',NULL),(530,19,14,'ford','transit','mk7 euro5','2.2','sid208',NULL,NULL,2022,'2','x',NULL,'1563885308.','1563887482.cod',NULL,NULL,'C',374,'2019-07-23 13:11:25','2019-07-23 12:11:25',NULL),(531,100,20,'ford','transit','2009','2200','DCU10x',NULL,'110',2019,'1','sk09jbz',NULL,'1563887943.','1563891806.cod',NULL,NULL,'C',105,'2019-07-23 14:23:29','2019-07-23 13:23:29',NULL),(532,39,14,'vw','tiguan','1','2000','bosch',NULL,NULL,2019,'1','y80amd',NULL,'1563896055.txt','1563896541.cod','egr delete','EGR Actuator plug must be disconnected','C',375,'2019-07-23 15:43:17','2019-07-23 14:43:17',NULL),(533,19,15,'ford','connect','2nd','1.8tdci','sid202/206',NULL,NULL,2022,'1','x',NULL,'1563953799.','1563958046.cod','possibly sid 206 but will only read as sid202/803a',NULL,'C',376,'2019-07-24 08:47:30','2019-07-24 07:47:30',NULL),(534,43,11,'Vauxhall','Astra','K','1.4T','AC Delco E80',NULL,'150',2026,'3','VA16 YAK',NULL,'1563967737.4T 150Bhp _VA16 YAK_ Tommy Kess Read E80 P613','1563970680.cod',NULL,NULL,'C',377,'2019-07-24 12:18:04','2019-07-24 11:18:04',NULL),(535,19,11,'mitsubishi','l200','4th','2.5did','denso',NULL,'136',2018,'1','ym08fvd',NULL,'1563974486.','1563975482.cod',NULL,NULL,'C',378,'2019-07-24 13:38:06','2019-07-24 12:38:06',NULL),(536,19,15,'renault','scenic','3rd','1.5dci','sid307',NULL,'110',2020,'2','nv61afe',NULL,'1563981118.','1563982835.cod',NULL,NULL,'C',379,'2019-07-24 15:41:12','2019-07-24 14:41:12',NULL),(537,19,11,'landrover','freelander','2nd','2.2','edc17',NULL,NULL,2021,'2','p40apf',NULL,'1564051009.','1564052791.cod',NULL,NULL,'C',380,'2019-07-25 11:06:34','2019-07-25 10:06:34',NULL),(538,19,11,'skoda','fabia','vrs','1.9pd130','edc15p',NULL,'130',2016,'2','yb06eku',NULL,'1564051966.','1564054190.cod',NULL,NULL,'C',381,'2019-07-25 11:29:53','2019-07-25 10:29:53',NULL),(539,19,11,'rover','75','1st','2.0','edc15bmw',NULL,'114',2013,'1','re03xcm',NULL,'1564052895.','1564053418.cod',NULL,NULL,'C',382,'2019-07-25 11:17:03','2019-07-25 10:17:03',NULL),(540,19,11,'vw','crafter','2nd','2.5ti cebb','ec17c20',NULL,'109',2020,'2','fy60xuk',NULL,'1564127494.txt','1564135327.unq',NULL,'Ktag file','C',383,'2019-07-26 10:02:14','2019-07-26 09:02:14',NULL),(541,100,20,'mitsubishi','l200','2015','2477','482 denso',NULL,'178',2000,'1','sd65eem',NULL,'1564138758.','1564146314.cod',NULL,NULL,'C',106,'2019-07-26 13:05:18','2019-07-26 12:05:18',NULL),(542,19,14,'skoda','octavia','2nd','1.6tdi cayc','pcr2.1',NULL,NULL,2021,'1','de11ywy',NULL,'1564139124.','1564140132.cod',NULL,NULL,'C',384,'2019-07-26 11:22:14','2019-07-26 10:22:14',NULL),(543,100,20,'ford','connect','2014','1560','404 sid807 evo can',NULL,'95',2024,'1','k19mof',NULL,'1564142740.','1564150034.cod',NULL,NULL,'C',107,'2019-07-26 14:07:17','2019-07-26 13:07:17',NULL),(544,100,20,'vw','crafter','2015','1968','edc17c54',NULL,'109',2025,'2','wt15gau',NULL,'1564142995.','1564484550.cod',NULL,NULL,'C',108,'2019-07-30 11:02:36','2019-07-30 10:02:36',NULL),(545,100,20,'nissan','navara','2013','2991','125 bosch edc16cp33',NULL,'228',2023,'3','vu63fwb',NULL,'1564143112.','1564160149.cod',NULL,NULL,'C',109,'2019-07-26 16:55:54','2019-07-26 15:55:54',NULL),(546,43,11,'Ford','Transit2.4','TT9','2.4','Visteo',NULL,'115',2021,'2','SA61 NXM',NULL,'1564147751.4 115Bhp _SA61 NXM_ ASC Terry Kess Read Visteon P113','1564148328.cod',NULL,NULL,'C',385,'2019-07-26 13:38:54','2019-07-26 12:38:54',NULL),(547,45,34,'Honda','Civic','2013','1600','EDC17C58',NULL,NULL,2023,'2','RF63 HKB',NULL,'1564219665.','1564221665.unq',NULL,'ill credit the .5 back','C',386,'2019-07-27 10:01:21','2019-07-27 09:01:21',NULL),(548,30,11,'ford','transit connect','2014','1.6 tdci','Continental SID807EVO',NULL,NULL,2024,'2','YS64HGC',NULL,'1564410250.','1564411474.cod',NULL,NULL,'C',387,'2019-07-29 14:44:38','2019-07-29 13:44:38',NULL),(549,100,20,'bmw','320d','2016','1995','628 - BMW/MINI FXX BOSCH',NULL,'190',2026,'3','BM03CAS',NULL,'1564426341.','1564439345.cod',NULL,NULL,'C',110,'2019-07-29 22:29:13','2019-07-29 21:29:13',NULL),(550,100,20,'vw','transporter','2016','1968','edc17cp20',NULL,'140',2026,'4','x10mof',NULL,'1564426511.','1564437213.cod','possibe remap already installed',NULL,'C',111,'2019-07-29 21:53:38','2019-07-29 20:53:38',NULL),(551,19,14,'landrover','discovery','3rd','2.7','siemens',NULL,NULL,2018,'3','am58ypw',NULL,'1564491434.','1564495107.cod',NULL,NULL,'C',388,'2019-07-30 13:58:31','2019-07-30 12:58:31',NULL),(552,102,21,'toyota','auris','any','14','bosch',NULL,NULL,2022,'1','nat 094',NULL,'1564562047.','1564562578.unq',NULL,NULL,'C',112,'2019-07-31 08:43:04','2019-07-31 07:43:04',NULL),(553,100,20,'bmw','116d','2009','1995','bosch edc17 cp02/c06',NULL,'115',2019,'2','sc09usj',NULL,'1564587892.','1564590950.cod',NULL,NULL,'C',113,'2019-07-31 16:35:55','2019-07-31 15:35:55',NULL),(554,43,11,'VW','Transporter','T5','2.0TDi','EDC17CP20',NULL,'84',2022,'1','VA61 CRU',NULL,'1564589540.0TDi 84Bhp _VA61 CRU_ Jason Kess VR Read EDC17CP20','1564590704.cod',NULL,NULL,'C',389,'2019-07-31 16:31:50','2019-07-31 15:31:50',NULL),(555,100,20,'mercedes','a200','2013','1796','delphi crd3.x can',NULL,'136',2023,'2','ro13foj',NULL,'1564593992.','1564596225.cod',NULL,NULL,'C',114,'2019-07-31 18:03:48','2019-07-31 17:03:48',NULL),(556,23,15,'ford','transit','custom','2.2','sid209',NULL,NULL,2027,'2','SE17PCU',NULL,'1564660219.','1564661970.cod',NULL,'DPF Pressure sensors and temp sensors have to be unplugged','C',390,'2019-08-01 12:19:38','2019-08-01 11:19:37',NULL),(557,45,11,'ford','smax','2009','2000','SID206',NULL,NULL,2019,'3','ek59 vbu',NULL,'1564666447.','1564668373.cod',NULL,NULL,'C',391,'2019-08-01 14:06:19','2019-08-01 13:06:19',NULL),(558,19,15,'ford','transit','7','2.2','sid208',NULL,NULL,2023,'2','x',NULL,'1564669004.','1564671714.cod',NULL,NULL,'C',392,'2019-08-01 15:02:01','2019-08-01 14:02:01',NULL),(559,102,21,'vw','touareg','any','3l','bosch',NULL,NULL,2000,'3','kyr11',NULL,'1564727318.txt','1564728501.cod','id read',NULL,'C',115,'2019-08-02 06:48:25','2019-08-02 05:48:25',NULL),(560,43,11,'Seat','Exeo','3R2','2.0 CAGA','EDC17CP14',NULL,'143',2019,'2','OE11VVU',NULL,'1564827405.0TDi CAGA _OE11 VVU_ Marius Ktag Read File EDC17CP14 P151','1564830944.unq',NULL,NULL,'C',393,'2019-08-03 11:15:47','2019-08-03 10:15:47',NULL),(561,43,11,'Ford','Mondeo','MKII','2.0TDCi','Delphi DCM3.5',NULL,'140',2021,'2','VN61UAG',NULL,'1564844844.5','1564845917.cod',NULL,NULL,'C',394,'2019-08-03 15:25:19','2019-08-03 14:25:19',NULL),(562,43,11,'Mercedes','314','906','2.1','CRD3.E1',NULL,'140',2026,'2','ET66FXE',NULL,'1564867632.pth','1564868874.unq',NULL,NULL,'C',395,'2019-08-03 21:48:03','2019-08-03 20:48:03',NULL),(563,19,11,'ford','transit','MK7','2.2','SID208',NULL,'85',2022,'2','X',NULL,'1565008233.','1565009458.cod',NULL,NULL,'C',396,'2019-08-05 12:51:02','2019-08-05 11:51:02',NULL),(564,43,11,'Mercedes','313','906','2.1','CRD3.20 P350',NULL,'129',2025,'3','OU65SVC',NULL,'1565008774.20 P350','1565009910.cod','Couldnt find CRD3.20 in sprinter so used P350',NULL,'C',397,'2019-08-05 12:58:33','2019-08-05 11:58:33',NULL),(565,45,11,'Izusu','Dmax','2','2500','Transtron',NULL,NULL,2025,'2','K300 SMF',NULL,'1565012360.','1565013796.cod',NULL,NULL,'C',398,'2019-08-05 14:03:22','2019-08-05 13:03:22',NULL),(566,30,11,'audi','a7','2017','3.0 tdi','EDC17CP44',NULL,NULL,2027,'3','M100NLL',NULL,'1565082857.','1565085205.cod',NULL,NULL,'C',399,'2019-08-06 09:54:16','2019-08-06 08:54:16',NULL),(567,27,14,'VW','PASSAT','B6','2.0','SIEMENS',NULL,'170',2019,'2','N24 SLP',NULL,'1565087843.','1565088534.cod',NULL,'TRY TO RESET ASH COUNT WITH VCDS>\r\nBut if coil light is flashing, you may have to drive it until it drops.\r\nlight wont go out until it gets to 15% load','C',400,'2019-08-06 10:50:46','2019-08-06 09:50:46',NULL),(568,19,11,'vw','transporter','t5','1.9 brr','edc16',NULL,'85',2015,'1','x',NULL,'1565094184.','1565097650.cod',NULL,NULL,'C',401,'2019-08-06 13:20:54','2019-08-06 12:20:54',NULL),(569,19,15,'audi','a4','8e','2.0pd','siemens',NULL,'170',2016,'2','x',NULL,'1565180875.','1565181825.cod',NULL,NULL,'C',402,'2019-08-07 12:43:49','2019-08-07 11:43:49',NULL),(570,29,14,'audi','a4','diesel','2.o','bosch',NULL,'105',2018,'2','rv58 tyx',NULL,'1565181843.','1565184185.cod','p201500 fault code delete',NULL,'C',403,'2019-08-07 13:23:08','2019-08-07 12:23:08',NULL),(571,76,21,'vw','crafter','2011','2000','cp54',NULL,NULL,2021,'2','yr61fxd',NULL,'1565186114.txt','1565187524.cod','dpf off',NULL,'C',116,'2019-08-07 14:20:07','2019-08-07 13:20:07',NULL),(572,100,20,'<NAME>','c220','2013','2200','delphi crd3 ecm',NULL,'170',2023,'2','na63lup',NULL,'1565257746.','1565259915.cod','DPF DELETE',NULL,'C',117,'2019-08-08 10:25:19','2019-08-08 09:25:19',NULL),(573,100,20,'ford','Custom','2016','2200','sid209',NULL,'100',2026,'2','nj16shx',NULL,'1565257858.','1565269353.cod',NULL,NULL,'C',118,'2019-08-08 13:02:39','2019-08-08 12:02:39',NULL),(574,100,20,'Ford','focus st 1','2015','1997','delphi dcm6.x can',NULL,'185',2025,'2','te03jay',NULL,'1565337815.','1565353658.cod',NULL,NULL,'C',119,'2019-08-09 12:27:51','2019-08-09 11:27:51',NULL),(575,19,11,'seat','leon','1p1','2.otfsi','med9.1',NULL,'180',2015,'2','dv55kma',NULL,'1565340307.','1565343835.cod',NULL,'STAGE1+','C',404,'2019-08-09 09:44:02','2019-08-09 08:44:02',NULL),(576,45,11,'Audi','R8','2011','5200','MED9.1',NULL,NULL,2021,'12','E15 JPT',NULL,'1565428723.zip','1565434274.zip',NULL,'write each file to respective ecu\'s','C',405,'2019-08-10 10:52:05','2019-08-10 09:52:05',NULL),(577,43,11,'Mercedes','A200CDi','W176','2.1','CRD3.50',NULL,'136',2024,'8','AJ14UWH',NULL,'1565441674.50','1565443918.cod',NULL,'ive disable torque monitor for you FOC','C',406,'2019-08-10 13:32:17','2019-08-10 12:32:17',NULL),(578,100,20,'Audi','TT','2009','1984','bosch med9.1 tfsi can',NULL,'200',2019,'2','KP09ENK',NULL,'1565513849.','1565518314.cod',NULL,NULL,'C',120,'2019-08-11 10:11:59','2019-08-11 09:11:59',NULL),(579,45,11,'VW','Caddy','2018','2000','EDC17C64',NULL,'102',2028,'1','GM18 KZY',NULL,'1565623588.','1565625847.cod',NULL,NULL,'C',407,'2019-08-12 16:04:11','2019-08-12 15:04:11',NULL),(580,43,11,'Mercedes','A200','W176','1.8','CRD3.40',NULL,'136',2022,'3','WR62YDJ',NULL,'1565699935.40','1565703136.cod',NULL,NULL,'C',408,'2019-08-13 13:32:20','2019-08-13 12:32:20',NULL),(581,76,20,'BMW','1er','2015','1995','dme dde701a',NULL,'115',2024,'2','ye64ffj',NULL,'1565772520.txt','1565777209.cod','flat out tune pls',NULL,'C',121,'2019-08-14 10:06:54','2019-08-14 09:06:54',NULL),(582,76,32,'audi','a3','2010','2000','c46',NULL,'138',2020,'2','df10jwy',NULL,'1565782882.txt','1565784563.cod','egr off',NULL,'C',122,'2019-08-14 12:09:26','2019-08-14 11:09:26',NULL),(583,100,20,'Ford','ranger','2014','2198','sid 208',NULL,'150',2024,'2','ym14vsg',NULL,'1565862395.','1565864256.cod',NULL,NULL,'C',123,'2019-08-15 10:17:42','2019-08-15 09:17:42',NULL),(584,76,21,'mercedes','sprinter','2008','2200','c16+',NULL,'109',2018,'2','bk58vma',NULL,'1565882995.','1565883378.cod','dpf off',NULL,'C',124,'2019-08-15 15:36:23','2019-08-15 14:36:23',NULL),(585,23,15,'FORD','TRANSIT','MK7','2.2','SID208 CAN',NULL,NULL,2023,'2','YK63EVF',NULL,'1565945225.','1566026106.cod',NULL,NULL,'C',409,'2019-08-17 07:15:15','2019-08-17 06:15:15',NULL),(586,100,20,'seat','leon','2010','2000','501 - edc17 cp04/cp14',NULL,'170',2020,'2','yd10lzx',NULL,'1565948313.','1565950728.cod',NULL,NULL,'C',125,'2019-08-16 10:19:14','2019-08-16 09:19:14',NULL),(587,100,32,'land rover','RR evoque','2013','2179','edc17cp42',NULL,'190',2023,'2','px63khd',NULL,'1566035501.','1566036395.cod',NULL,'if any problems.\r\nBOSCH EDC17_CP42 (EGR Actuator plug must be disconnected)','C',126,'2019-08-17 10:06:47','2019-08-17 09:06:47',NULL),(588,76,21,'vw','golf 6','2012','1600','SIMOS PCR',NULL,NULL,2022,'1','PN12VZZ',NULL,'1566207053.','1566208419.cod','EGR OFF ONLY','Have a nice day','C',127,'2019-08-19 09:53:57','2019-08-19 08:53:57',NULL),(589,19,15,'ford','transit','custom','2.2','sid208',NULL,NULL,2024,'2','bw14fxo',NULL,'1566209251.','1566213347.cod',NULL,NULL,'C',410,'2019-08-19 11:15:58','2019-08-19 10:15:58',NULL),(590,19,14,'seat','ibisa','5','1.2tdi','dcm3.5',NULL,NULL,2023,'1','x',NULL,'1566209516.2','1566220397.cod',NULL,NULL,'C',411,'2019-08-19 13:14:46','2019-08-19 12:14:46',NULL),(591,76,21,'mercedes','vito','2013','2200','delphi',NULL,'130',2024,'1','yb63pbx',NULL,'1566209942.','1566211141.cod',NULL,NULL,'C',128,'2019-08-19 10:39:05','2019-08-19 09:39:05',NULL),(592,19,15,'vauxhall','astra','j','2.0cdti a20dth','edc17c59',NULL,NULL,2023,'2','dn13clo',NULL,'1566211882.0cdti','1566214365.unq',NULL,NULL,'C',412,'2019-08-19 11:32:57','2019-08-19 10:32:57',NULL),(593,19,15,'vw','golf','6','cayc','pcr2.1',NULL,NULL,2020,'1','sm59uew',NULL,'1566213752.cod','1566215301.cod',NULL,NULL,'C',413,'2019-08-19 11:48:43','2019-08-19 10:48:43',NULL),(594,100,31,'bmw','535d','2005','2993','bosch edc16+ c35',NULL,'272',2015,'3','lr05ejf',NULL,'1566215551.','1566220260.cod','PLUS EGR DELETE & DE CAT',NULL,'C',129,'2019-08-19 13:11:04','2019-08-19 12:11:04',NULL),(595,100,20,'vauxhall','corsa','2015','1229','delco e78',NULL,'70',2025,'1','pe15llg',NULL,'1566223990.','1566226251.cod',NULL,NULL,'C',130,'2019-08-19 14:50:55','2019-08-19 13:50:55',NULL),(596,100,20,'bmw','318d','2012','1995','edc17c41',NULL,'143',2022,'2','fp12vyv',NULL,'1566289129.','1566291677.cod','DPF DELETE',NULL,'C',131,'2019-08-20 09:01:21','2019-08-20 08:01:21',NULL),(597,98,11,'BMW','M4','F82','3000','DME-MEVD17.2.G','Diesel','444',1990,'6','J144413',NULL,'1566296048.','1566302552.','Please remove the speed limiter','i have added sports display calibration and a few Pops etc on sport button,\r\nenjoy !','C',414,'2020-03-13 06:04:31','2020-03-13 06:04:31',NULL),(598,19,14,'jaguar','s type','2nd','2.7','siemens',NULL,'190',2016,'3','b9rgf',NULL,'1566299996.','1566303204.cod',NULL,NULL,'C',415,'2019-08-20 12:14:01','2019-08-20 11:14:01',NULL),(599,46,11,'vauxhall','vectra','vectra c','1,9cdti','BOSCH',NULL,'120',2017,'2','KB57 SZC',NULL,'1566310931.9 cdti read file','1566315852.cod','CUSTOMER WANTS FULL POWER LOL',NULL,'C',416,'2019-08-20 15:44:56','2019-08-20 14:44:56',NULL),(600,27,11,'AUDI','A6','C7/4G','3.0','bosch',NULL,'313',2024,'11','LK64ZFR',NULL,'1566380522.','1566383583.cod',NULL,NULL,'C',417,'2019-08-21 10:33:24','2019-08-21 09:33:24',NULL),(601,100,20,'bmw','320d','2017','1995','edc17c50',NULL,'190',2027,'3','yb67obc',NULL,'1566385709.','1566387626.cod',NULL,NULL,'C',132,'2019-08-21 11:40:29','2019-08-21 10:40:29',NULL),(602,19,11,'ford','transit','mk6','2.4tdci','delphi eecv',NULL,'90',2015,'1','x',NULL,'1566395264.','1566397526.cod',NULL,NULL,'C',418,'2019-08-21 14:25:28','2019-08-21 13:25:28',NULL),(603,19,14,'vw','tiguan','1','2.0tdi cr','edc17',NULL,'136',2022,'2','x',NULL,'1566395426.txt','1566399099.cod','p2015 & p0122',NULL,'C',419,'2019-08-21 14:51:46','2019-08-21 13:51:46',NULL),(604,100,20,'mercedes','a200','2014','1796','delphi crd3',NULL,'136',2024,'3','pe14wbj',NULL,'1566402535.','1566403372.cod',NULL,NULL,'C',133,'2019-08-21 16:02:55','2019-08-21 15:02:55',NULL),(605,100,20,'bmw','318d','2007','1995','bosch edc16+ c35',NULL,'122',2017,'2','yy07nwl',NULL,'1566469801.','1566471159.cod',NULL,NULL,'C',134,'2019-08-22 10:52:46','2019-08-22 09:52:46',NULL),(606,76,32,'subaru','forrester','2010','1999','denso',NULL,'144',2020,'2','cy10dlv',NULL,'1566474442.','1566474708.cod','EGR OFF ONLY',NULL,'C',135,'2019-08-22 11:53:03','2019-08-22 10:53:03',NULL),(607,100,20,'AUDI','a4','2010','1968','bosch edc17cp20 can',NULL,'170',2020,'2','gu10wnl',NULL,'1566476126.','1566478546.cod',NULL,NULL,'C',136,'2019-08-22 12:55:51','2019-08-22 11:55:51',NULL),(608,19,14,'landrover','discovery','3','2.7','siemens',NULL,'190',2018,'3','x',NULL,'1566476595.','1566478196.cod',NULL,'did the egr delete for you, removed the pcode','C',420,'2019-08-22 12:50:03','2019-08-22 11:50:03',NULL),(609,43,15,'Vauxhall','Zafira','MK II','2.0CDTi','EDC17C59',NULL,'130',2022,'2','YP62YSA',NULL,'1566491854.0CDti A20Dt 130Bhp _YP62 YSA_ Integrity Claims Ktag Read EDC17C59 GPT P688','1566492767.unq',NULL,NULL,'C',421,'2019-08-22 16:52:56','2019-08-22 15:52:56',NULL),(610,45,11,'VW','Amarok','2016','2000CR','EDC17 cP54',NULL,NULL,2026,'3','BG16 NPU',NULL,'1566549813.','1566550642.cod',NULL,NULL,'C',422,'2019-08-23 08:57:32','2019-08-23 07:57:32',NULL),(611,102,21,'mitsubishi','l200','any','2l','denso',NULL,NULL,2022,'3','nbp739',NULL,'1566823804.','1566831597.cod',NULL,NULL,'C',137,'2019-08-26 15:00:01','2019-08-26 14:00:01',NULL),(612,76,20,'VW','Golf','4','1.6','mag marellic 1AW4MV',NULL,NULL,2013,'1','vw03lwb',NULL,'1566905584.','1566908560.cod','LAMDA OFF',NULL,'C',138,'2019-08-27 12:22:43','2019-08-27 11:22:43',NULL),(613,100,20,'vw','golf','2013','2000','bosch edc17c46 can',NULL,'150',2023,'2','vo13rcv',NULL,'1566910585.','1566912172.cod',NULL,NULL,'C',139,'2019-08-27 13:23:12','2019-08-27 12:23:12',NULL),(614,100,20,'Ford','Custom','2017','2000','ford continental sid211',NULL,'105',2027,'2','jl07 her',NULL,'1566925104.','1576770556.cod',NULL,NULL,'C',140,'2019-12-19 15:49:20','2019-12-19 15:49:20',NULL),(615,100,20,'Renault','Trafic','2017','1600','edc17c84',NULL,'120',2027,'2','hk17lza',NULL,'1566926544.','1566987163.cod',NULL,NULL,'C',141,'2019-08-28 10:12:48','2019-08-28 09:12:48',NULL),(616,45,11,'VW','T6','T6','2000','EDC17 CP20',NULL,'140',2026,'2','J888 EJN',NULL,'1566990396.','1566993068.cod',NULL,NULL,'C',423,'2019-08-28 11:51:13','2019-08-28 10:51:13',NULL),(617,35,14,'LANDROVER','evoque','1','2200','edc17',NULL,NULL,2000,'1','ld62dxb',NULL,'1566991488.','1566995492.cod',NULL,NULL,'C',424,'2019-08-28 12:31:56','2019-08-28 11:31:56',NULL),(618,43,11,'BMW','320D','F31','2.0','EDC17C50',NULL,'184',2022,'3','CP62LYH',NULL,'1566999750.','1567003573.cod',NULL,NULL,'C',425,'2019-08-28 14:46:17','2019-08-28 13:46:17',NULL),(619,45,11,'audi','a3','8P','bmn','PPD',NULL,'170',2017,'2','ALZ2241',NULL,'1567071669.','1567073621.cod',NULL,'swirl flap delte not done as instructed, credit refunded.\r\n\r\ntune egr dpf only','C',426,'2019-08-29 10:13:53','2019-08-29 09:13:53',NULL),(620,76,20,'Vw','Crafter','2016','2000','cp54',NULL,'107',2026,'2','gd16hju',NULL,'1567077689.','1567079074.cod','big van used for towing pls not go too crazy',NULL,'C',142,'2019-08-29 11:45:32','2019-08-29 10:45:32',NULL),(621,19,14,'vw','eos','1st','2.0 bmm','edc16',NULL,NULL,2017,'2','x',NULL,'1567080366.','1567082304.cod',NULL,NULL,'C',427,'2019-08-29 12:38:26','2019-08-29 11:38:26',NULL),(622,100,20,'BMW','x5','2005','2993','bosch edc16 c31 kline',NULL,'218',2015,'3','f17syx',NULL,'1567083389.','1567092741.cod',NULL,'try this','C',143,'2019-09-20 11:10:00','2019-09-20 10:10:00',NULL),(623,102,21,'bmw','x6','any','3.5','bosch',NULL,NULL,2019,'3','kyk724',NULL,'1567151569.','1567155902.cod',NULL,'the delay in file was you put the word any and it didnt understand it','C',144,'2019-08-30 09:05:52','2019-08-30 08:05:52',NULL),(624,100,20,'mercedes','sprinter','2012','2143','delphi crd2.xx',NULL,'129',2022,'2','av12gwe',NULL,'1567173721.','1567178094.cod','speed limiter removal',NULL,'C',145,'2019-08-30 15:14:58','2019-08-30 14:14:58',NULL),(625,76,20,'mercedes','sprinter','906','2200','crd2 delphi',NULL,'127',2023,'2','lk13pyu',NULL,'1567238860.','1567242691.cod','Tune DPF off and EGR off pls',NULL,'C',146,'2019-08-31 09:12:49','2019-08-31 08:12:49',NULL),(626,100,20,'vw','golf','2009','2000','edc17cp04/cp17',NULL,'140',2019,'2','py58ewe',NULL,'1567247401.','1567253055.cod',NULL,NULL,'C',147,'2019-08-31 12:04:37','2019-08-31 11:04:37',NULL),(627,100,20,'vw','golf','2007','2000','109 vag siemens ppd1.2 can',NULL,'170',2017,'2','nl57ssz',NULL,'1567248935.','1567250906.cod','DPF DELETE',NULL,'C',148,'2019-08-31 11:28:32','2019-08-31 10:28:32',NULL),(629,102,21,'ford','kuga','any','2l','denso',NULL,NULL,2024,'3','naz109',NULL,'1567405764.','1567408711.cod','please check whats up for fault codes',NULL,'C',150,'2019-09-02 07:18:35','2019-09-02 06:18:35',NULL),(630,100,20,'bmw','320d','2008','2000','edc16c35',NULL,'163',2017,'2','ts04arm',NULL,'1567414945.','1567421195.cod',NULL,NULL,'C',151,'2019-09-02 10:47:02','2019-09-02 09:47:02',NULL),(632,100,20,'bmw','430d','2014','2993','edc17c56',NULL,'258',2024,'3','mm11mcb',NULL,'1567419138.','1567424208.cod','OTHER MAP ALREADY INSTALLED',NULL,'C',153,'2019-09-02 11:38:21','2019-09-02 10:38:21',NULL),(633,43,15,'Renault','Traffic','MK3','1.6','EDC17C42',NULL,'120',2025,'2','LG15 WEB',NULL,'1567419842.6D _LG15 WEB_ ASC Kess Read File EDC17C42 P425 STG_1 Map','1567422287.cod','Already Stage 1 remapped - DF1020 Oil Dilution',NULL,'C',428,'2019-09-02 11:04:52','2019-09-02 10:04:52',NULL),(634,23,39,'Ford','Transit','8','2.2','sid 208 209 can',NULL,NULL,2027,'2','SE17PCU',NULL,'1567503824.dat','1567513876.cod','Adblue removal dash states adblue malfunction xxx miles to engine shutdown, Also getting codes P2463 P246C and P246B which we get when DPF fails prior to removal.',NULL,'C',429,'2019-09-03 12:34:30','2019-09-03 11:34:30',NULL),(635,21,11,'AUDI','TT','2011','2.0TDI','bosch',NULL,NULL,2021,'2','NX11KDK',NULL,'1567509407.txt','1567516030.cod',NULL,NULL,'C',430,'2019-09-03 13:07:17','2019-09-03 12:07:17',NULL),(636,35,14,'peugeot','expert 2','2','2000','sid 803',NULL,NULL,2000,'1','sf61hcd',NULL,'1567591298.','1567593190.cod',NULL,NULL,'C',431,'2019-09-04 10:33:14','2019-09-04 09:33:14',NULL),(637,94,34,'ford','transit','6','2.2','siemens',NULL,'140',2019,'2','exz6148',NULL,'1567594252.','1567595149.cod','i need a egr delete and P1103 FAULT CODE DELETE',NULL,'C',432,'2019-09-04 11:05:57','2019-09-04 10:05:57',NULL),(638,100,20,'ford','ranger','2015','2200','sid208',NULL,'150',2025,'3','r77mnd',NULL,'1567599463.','1567601858.cod',NULL,NULL,'C',154,'2019-09-04 12:57:50','2019-09-04 11:57:50',NULL),(639,19,39,'citroen','c4','3','1.6bluehdi','edc17c60',NULL,NULL,2025,'1','ko15udn',NULL,'1567602764.','1567606497.unq','p20E8(00) urea pressure','unplug adblue pump','C',433,'2019-09-04 14:15:08','2019-09-04 13:15:08',NULL),(640,76,20,'LANDROVER','discovery','2004','td5','nnn',NULL,NULL,2014,'1','wp04dkj',NULL,'1567621412.','1567622011.cod',NULL,NULL,'C',155,'2019-09-04 18:33:36','2019-09-04 17:33:36',NULL),(641,76,20,'AUDI','SQ5','2014','3000 V6','CP44',NULL,'313',2024,'3','V24HLL',NULL,'1567670940.','1567672752.cod','STRONG TUNE PLS',NULL,'C',156,'2019-09-05 08:39:14','2019-09-05 07:39:14',NULL),(642,19,14,'landrover','range rover sport','2nd','3.0sdv6','edc17cp11',NULL,NULL,2021,'1','a13bxt',NULL,'1567677467.',NULL,'suspect turbo related p code delete','NOPE, not that i can see','C',434,'2019-09-05 10:56:01','2019-09-05 09:56:01',NULL),(643,43,11,'Ford','Kuga','MKII','2.0','Delphi DCM6.X',NULL,'150',2025,'2','YT65 HVH',NULL,'1567685092.X','1567687659.cod',NULL,NULL,'C',435,'2019-09-05 12:47:44','2019-09-05 11:47:44',NULL),(644,100,20,'ford','tourneo connect','2015','1500','edc17c70',NULL,'120',2025,'3','xjz9072',NULL,'1567696472.','1585044765.cod',NULL,NULL,'C',157,'2020-03-24 10:12:49','2020-03-24 10:12:49',NULL),(645,45,15,'Vauxhall','Insignia','2009','2000','EDC17 cp19',NULL,NULL,2019,'2','YC09 OFB',NULL,'1567755168.','1567766042.unq',NULL,NULL,'C',436,'2019-09-06 10:34:06','2019-09-06 09:34:06',NULL),(646,76,21,'FORD','CMAX','2009/10','1600','C34',NULL,NULL,2020,'1','EO59KZV',NULL,'1567758084.','1567759410.cod','dpf off egroff',NULL,'C',158,'2019-09-06 08:43:53','2019-09-06 07:43:53',NULL),(648,76,20,'Volkswagen','<NAME>','7','2000','cant remember',NULL,'300',2025,'2','t66aeg',NULL,'1567870148.','1568106077.cod',NULL,NULL,'C',160,'2019-09-10 09:01:22','2019-09-10 08:01:22',NULL),(649,30,11,'vw','golf','2015','2.0','EDC17C64',NULL,'148',2025,'2','WM15UTA',NULL,'1568031586.','1568032173.cod',NULL,NULL,'C',437,'2019-09-09 12:29:36','2019-09-09 11:29:36',NULL),(650,45,17,'VW','T5','2008','2500','EDC16',NULL,'130',2000,'2','SW57 CYX',NULL,'1568040871.','1568041318.cod',NULL,'stock','C',438,'2019-09-09 15:02:05','2019-09-09 14:02:05',NULL),(651,27,11,'JAGUAR','XFR','MK1','5.0','DERNSO',NULL,'510',2021,'3','MK61 XWU',NULL,'1568104430.','1568106537.cod',NULL,'these need a upgraded pully !\r\n\r\nStart engine and stop, x 5 to remove EML from flashing','C',439,'2019-09-10 09:09:20','2019-09-10 08:09:20',NULL),(652,45,11,'BMW','X5','E70','3000','EDC16',NULL,'281',2000,'3','BN58 DHA',NULL,'1568105402.0 D read ktag','1568108088.unq',NULL,NULL,'C',440,'2019-09-10 09:34:55','2019-09-10 08:34:55',NULL),(654,45,14,'Mercedes','GLA','2000','2100','Delphi CRD3.40',NULL,NULL,2026,'2','MF16 SVV',NULL,'1568114157.','1568126918.unq','Fault Codes P044C-11.... P044B-28 and EOBD code of P044C','PLEASE TEST AND REPORT','C',442,'2019-09-10 14:48:52','2019-09-10 13:48:52',NULL),(655,74,21,'AUDI','A1','8X','1.6','PCR2.1',NULL,'105',2021,'1','M55 SET',NULL,'1568120100.6tdi orig','1568121116.cod',NULL,NULL,'C',161,'2019-09-10 13:12:04','2019-09-10 12:12:04',NULL),(656,45,14,'BMW','320d','E92','2000','EDC17 CP41',NULL,'180',2020,'2','GY10 CZO',NULL,'1568122422.','1568128027.cod','Fault Code 4CAE',NULL,'C',443,'2019-09-10 15:07:12','2019-09-10 14:07:12',NULL),(657,45,14,'Seat','Exeo','2010','2000CR','EDC17 CP14',NULL,NULL,2020,'2','DE10 WUY',NULL,'1568122512.','1568126776.cod','Swirl flap delete please, cant find it in the option Fault code is P2015 inlet manifold flap position sensor implaus single',NULL,'C',444,'2019-09-10 14:46:22','2019-09-10 13:46:22',NULL),(658,100,20,'bmw','525d','2005','2497','edc16c31',NULL,'177',2015,'3','KC55ZRT',NULL,'1568192132.','1568194501.cod','DPF & EGR DELETE',NULL,'C',162,'2019-09-11 09:35:09','2019-09-11 08:35:09',NULL),(659,76,20,'audi','a4','b6','2000','c34',NULL,'140',2016,'2','bk55kpl',NULL,'1568196028.','1568197414.cod','egr off plus power map',NULL,'C',163,'2019-09-11 10:23:42','2019-09-11 09:23:42',NULL),(660,21,11,'PEUGEOT','EXPERT','3','2.0','DELPHI 3.5',NULL,NULL,2026,'2','MD16FHH',NULL,'1568205000.','1568208243.cod',NULL,NULL,'C',445,'2019-09-11 13:24:12','2019-09-11 12:24:12',NULL),(661,76,21,'peugeot','3008','1','1560','c34',NULL,'110',2020,'2','kw10myn',NULL,'1568207236.','1568209935.cod','dpf off egroff',NULL,'C',164,'2019-09-11 13:52:29','2019-09-11 12:52:29',NULL),(662,102,21,'mercedes','e class','any','2l','delphi',NULL,NULL,2022,'3','nht741',NULL,'1568274596.','1568277045.cod',NULL,NULL,'C',165,'2019-09-12 08:31:12','2019-09-12 07:31:12',NULL),(663,76,20,'mini','cooper s','r56','1600','bosch',NULL,'179',2018,'2','ye57cgz',NULL,'1568280660.','1568282144.cod','STRONG TUNE PLS',NULL,'C',166,'2019-09-12 09:55:49','2019-09-12 08:55:49',NULL),(664,76,20,'mercedes','sprinter','905','2200','edc15',NULL,'110',2015,'1','fv05nhc',NULL,'1568280756.','1568283843.cod',NULL,NULL,'C',167,'2019-09-12 10:24:08','2019-09-12 09:24:08',NULL),(666,100,20,'izuzu','d max','2014','2500','transtron 4jxx',NULL,'163',2024,'2','px14kvh',NULL,'1568296811.','1568299600.cod',NULL,NULL,'C',168,'2019-09-12 14:46:44','2019-09-12 13:46:44',NULL),(667,100,20,'bmw','320d','2008','2000','edc17cp02',NULL,'177',2018,'3','yk58slz',NULL,'1568299819.','1568302160.cod',NULL,NULL,'C',169,'2019-09-12 15:29:57','2019-09-12 14:29:57',NULL),(668,102,21,'mitsubishi','l200','any','2.5L','denso',NULL,NULL,2022,'3','NAB079',NULL,'1568354750.','1568360553.cod','P1427 DIESEL PART FILTER TEMP BANK 1 SIGNAL LOW',NULL,'C',170,'2019-09-13 07:42:38','2019-09-13 06:42:38',NULL),(669,19,11,'ford','connect','2nd','1.6tdci','sid807evo',NULL,'115',2024,'2','mk64hlj',NULL,'1568368212.','1568368842.cod','my van',NULL,'C',446,'2019-09-13 10:00:47','2019-09-13 09:00:47',NULL),(670,100,20,'vw','crafter','2014','2000','edc17c54',NULL,'109',2024,'2','aj14jvk',NULL,'1568370622.','1568373316.cod','DPF DELETE',NULL,'C',171,'2019-09-13 11:15:19','2019-09-13 10:15:19',NULL),(671,76,21,'ford','custom','2015','2200','sid208',NULL,NULL,2000,'2','sf15kfd',NULL,'1568374722.','1568375851.cod',NULL,NULL,'C',172,'2019-09-13 11:57:35','2019-09-13 10:57:35',NULL),(672,100,20,'vw','GOLF GTD','2015','2000','edc17c74',NULL,'184',2025,'2','K6 WUL',NULL,'1568385134.','1568386047.cod',NULL,NULL,'C',173,'2019-09-13 14:47:33','2019-09-13 13:47:33',NULL),(673,76,32,'ford','connect','2009','1753 tdci','sid803/202',NULL,'90',2019,'1','rk59ulc',NULL,'1568449221.','1568452525.cod','EGR OFF ONLY',NULL,'C',174,'2019-09-14 09:15:33','2019-09-14 08:15:33',NULL),(674,81,21,'BMW','330D','2013','3.0D','ECM',NULL,'255',2023,'3','WV63PKY',NULL,'1568464029.txt','1568465493.cod','CAR HAS STAGE 1 REMAP WHICH WE DONE A FEW MONTHS BACK AND NOW WANTS DPF DELETE T',NULL,'C',175,'2019-09-14 12:52:06','2019-09-14 11:52:06',NULL),(675,102,21,'bmw','x5','any','3l','bosch',NULL,NULL,2021,'3','MNT378',NULL,'1568617351.','1568620275.cod',NULL,NULL,'C',176,'2019-09-16 07:51:22','2019-09-16 06:51:22',NULL),(676,45,11,'Mercedes','A200','2013','1800','Delphi CRD3',NULL,NULL,2023,'1','kx63 hnz',NULL,'1568625167.','1568625961.cod',NULL,NULL,'C',447,'2019-09-16 09:26:05','2019-09-16 08:26:05',NULL),(677,45,11,'BMW','5 Series','F10','2000','EDC17 CP50',NULL,NULL,2026,'3','H15 PNW',NULL,'1568629709.','1568635122.cod',NULL,NULL,'C',448,'2019-09-16 11:58:44','2019-09-16 10:58:44',NULL),(678,21,11,'AUDI','RS5','2012','4.2','MED17',NULL,NULL,2022,'3','C9SPC',NULL,'1568633011.txt','1568636314.cod',NULL,NULL,'C',449,'2019-09-16 12:18:38','2019-09-16 11:18:38',NULL),(679,19,11,'audi','s3','8p','2.0 tfsi','med9.1',NULL,NULL,2000,'1','b5oba',NULL,'1568635135.','1568636937.cod',NULL,NULL,'C',450,'2019-09-16 12:28:59','2019-09-16 11:28:59',NULL),(680,100,20,'vw','GOLF GTD','2014','2000','edc17c64 can',NULL,'184',2024,'4','x24met',NULL,'1568653192.','1568656440.cod',NULL,NULL,'C',177,'2019-09-16 17:54:03','2019-09-16 16:54:03',NULL),(681,19,14,'vw','transporter t6','t6','2.0tdi 180','edc17cp20',NULL,'180',2026,'2','yh65 ofv',NULL,'1568710194.txt','1568711352.cod','we did a stage 1 on this on 16/1/18',NULL,'C',451,'2019-09-17 09:09:18','2019-09-17 08:09:18',NULL),(682,100,33,'vw','transporter','2004','1900','edc16u1',NULL,'85',2014,'1','so04jyh',NULL,'1568740858.','1568741326.cod',NULL,NULL,'C',178,'2019-09-17 17:28:51','2019-09-17 16:28:51',NULL),(683,19,11,'vw','jetta','mk5','1.9tdi bxe','edc16u31/34',NULL,'100',2017,'1','ds57kxd',NULL,'1568804269.','1568805492.cod',NULL,NULL,'C',452,'2019-09-18 11:18:21','2019-09-18 10:18:21',NULL),(684,45,11,'Ford','Transit','Custom','2200','SID208',NULL,'99',2025,'2','CV65 HPK',NULL,'1568805387.','1568806552.cod','Would prefer close to the 155 bhp please',NULL,'C',453,'2019-09-18 11:36:17','2019-09-18 10:36:17',NULL),(685,19,15,'volvo','v50','2','2.0 d psa','sid206',NULL,'138',2020,'2','x',NULL,'1568817480.','1568819364.cod',NULL,NULL,'C',454,'2019-09-18 15:09:32','2019-09-18 14:09:32',NULL),(687,27,11,'VAUXHALL','VIVARO','MK1','2.0','BOSCH',NULL,'90',2019,'2','YX59 CZT',NULL,'1568882394.','1568883433.cod',NULL,'did you save injector codes ? TOOLs menu?','C',455,'2019-09-19 08:57:33','2019-09-19 07:57:33',NULL),(688,45,11,'BMW','3 Series','E93','2000','Siemens MSD80',NULL,'163',2019,'2','M80 LJG',NULL,'1568889770.','1568890150.cod',NULL,NULL,'C',456,'2019-09-19 10:49:14','2019-09-19 09:49:14',NULL),(689,19,15,'seat','leon','8p','1.6 cayc','pcr2.1',NULL,NULL,2023,'1','x',NULL,'1568906801.','1568907839.cod',NULL,NULL,'C',457,'2019-09-19 15:44:08','2019-09-19 14:44:08',NULL),(690,45,11,'Infinty','Q50','Q50','2100','Delphi CRD3.70',NULL,'168',2026,'3','ND16 UDS',NULL,'1568971066.','1568973434.unq',NULL,NULL,'C',458,'2019-09-20 09:57:20','2019-09-20 08:57:20',NULL),(691,100,20,'vw','GOLF GTD','2016','2000','edc17c74',NULL,'184',2026,'4','kr16fsp',NULL,'1568971640.','1568972945.cod',NULL,NULL,'C',179,'2019-09-20 09:49:09','2019-09-20 08:49:09',NULL),(692,76,20,'LANDROVER','evoque','SD4','2200','prot 381',NULL,NULL,2025,'3','ou15mvd',NULL,'1568981717.','1577470737.cod','STRONG TUNE PLS',NULL,'C',180,'2019-12-27 18:19:16','2019-12-27 18:19:16',NULL),(693,45,14,'VW','Transporter','T6','2000','delphi dcm',NULL,'101',2028,'1','KN68 UFW',NULL,'1568987689.','1568990730.cod',NULL,NULL,'C',459,'2019-09-20 14:45:35','2019-09-20 13:45:35',NULL),(694,45,11,'Mazda','3','2016','2000','Denso P5',NULL,'118',2026,'2','RJ16 MPO',NULL,'1569055304.','1569059008.cod',NULL,NULL,'C',460,'2019-09-21 09:43:36','2019-09-21 08:43:36',NULL),(695,45,11,'Landrover','freelander','TD4','2000','EDC15',NULL,'111',2014,'1','BV54 VHT',NULL,'1569057611.','1569059442.cod',NULL,NULL,'C',461,'2019-09-21 09:50:48','2019-09-21 08:50:48',NULL),(696,29,11,'audi','a4','bosch','2.0','edc 16',NULL,NULL,2018,'3','fy08 zyt',NULL,'1569073797.','1569074873.cod',NULL,NULL,'C',462,'2019-09-21 14:08:01','2019-09-21 13:08:01',NULL),(697,102,21,'FORD','GALAXY','any','2l','bosch',NULL,NULL,2022,'3','MBM525',NULL,'1569219882.','1569230329.cod','P246B PARTICULATE FILTER REG MALFUNCTION/ P2463 PART FILTER SOOT CONTEN PART MASS TOO HIGH',NULL,'C',181,'2019-09-23 09:18:57','2019-09-23 08:18:57',NULL),(699,76,20,'FORD','ranger','t6','3200','sid209',NULL,'197',2027,'3','yk66vxw',NULL,'1569230337.','1569234296.cod',NULL,NULL,'C',183,'2019-09-23 10:25:27','2019-09-23 09:25:27',NULL),(700,19,15,'skoda','octavia','2nd','1.6tdi cayc','pcr2.1',NULL,NULL,2021,'1','dellywy',NULL,'1569233974.cod','1569235826.cod','weve done egr on this, please retain',NULL,'C',463,'2019-09-23 10:50:29','2019-09-23 09:50:29',NULL),(701,102,21,'RENAULT','CLIO','any','1.5','denso',NULL,NULL,2022,'3','MAK437',NULL,'1569317296.','1569332160.cod','I AM NOT SURE FOR THE TYPE OF THE ECU',NULL,'C',184,'2019-09-24 13:36:03','2019-09-24 12:36:03',NULL),(702,43,11,'VW','Golf','MK5','2.0TDi BMN','PPD',NULL,'170',2018,'2','MF08 BXD',NULL,'1569320103.0TDi BMN _MF08 BXD_ Lee Kess Read PPD','1569321320.cod',NULL,NULL,'C',464,'2019-09-24 10:35:24','2019-09-24 09:35:24',NULL),(703,121,20,'vauxhall','antara','?','2.2','delphi dcm3.7',NULL,NULL,2000,'1','sr12 gys',NULL,'1569321847.2dti-hw-01804720ab-sw-01805db6aa-upgsw-01805dbeaa-ver-323','1569329032.cod','customer requesting better economy',NULL,'C',185,'2019-09-24 12:43:57','2019-09-24 11:43:57',NULL),(704,100,20,'skoda','fabia','2011','1598','simos pcr 2.1',NULL,'90',2021,'1','px61ynj',NULL,'1569328805.','1569330783.cod','DPF DELETE',NULL,'C',186,'2019-09-24 13:13:09','2019-09-24 12:13:09',NULL),(705,76,32,'citroen','xsara`','2007','1600','c34',NULL,NULL,2017,'1','cv57lxa',NULL,'1569329654.','1569331353.cod',NULL,NULL,'C',187,'2019-09-24 13:22:37','2019-09-24 12:22:37',NULL),(707,43,11,'Ford','Mondeo','4th','2.0TDi','DCM3.5',NULL,'140',2023,'3','NA2013',NULL,'1569330381.5','1569335214.cod',NULL,NULL,'C',465,'2019-09-24 14:27:01','2019-09-24 13:27:01',NULL),(708,121,20,'mitsubishi','l200','x','2.5did','denso',NULL,'136',2025,'4','nx65 zys',NULL,'1569334951.5DID-hw-h1ae45w-sw-tmwohmw03101-upgsw-1860c36001-denso-sh7059','1569341547.cod',NULL,NULL,'C',188,'2019-09-24 16:16:56','2019-09-24 15:16:56',NULL),(709,76,21,'fiay','sedice','2007','1900','c34',NULL,NULL,2000,'2','va07kwj',NULL,'1569336078.','1569337351.cod',NULL,NULL,'C',189,'2019-09-24 15:02:34','2019-09-24 14:02:34',NULL),(710,76,20,'LANDROVER','discovery','3','2700','siemens',NULL,NULL,2018,'1','yg08eno',NULL,'1569336467.','1569339027.cod','egr off plus power map',NULL,'C',190,'2019-09-24 15:30:39','2019-09-24 14:30:39',NULL),(712,121,20,'vauxhall','combo','D','1600','edc17c49',NULL,NULL,2024,'1','fj64 wpd',NULL,'1569405007.6-hw-0281030776-sw-1037536526-upgsw-1037536526-rep-5529910','1569424644.unq',NULL,NULL,'C',191,'2019-09-25 15:17:28','2019-09-25 14:17:28',NULL),(715,19,14,'vw','<PASSWORD>','b6','2.0cr cbab','edc17c14',NULL,NULL,2020,'2','x',NULL,'1569406280.txt','1569521404.unq',NULL,NULL,'C',469,'2019-09-26 18:10:16','2019-09-26 17:10:16',NULL),(716,76,21,'audi','a4','b8','3000','cp20',NULL,NULL,2021,'3','j20ode',NULL,'1569407747.','1569410526.cod',NULL,NULL,'C',192,'2019-09-25 11:22:07','2019-09-25 10:22:07',NULL),(718,45,11,'AUDI','A4','B9','2000','EDC17 CP74',NULL,'190',2026,'4','CR15 SMO',NULL,'1569480719.txt','1569487323.cod','ID only as no ORI found. Can you see if you can get one please. Also can you give me some statistics as its not listed on the website yet cheers',NULL,'C',470,'2019-09-26 08:42:14','2019-09-26 07:42:14',NULL),(719,43,11,'Mercedes','Vito','116CDi','2.1','Delphi CRD2',NULL,'163',2010,'Automatic Transmission','BE-782-CX',NULL,'1569486809.X','1569489100.cod',NULL,NULL,'C',471,'2019-09-28 07:56:15','2019-09-28 06:56:15',NULL),(720,43,11,'Citroen','C5','III','DV6 1.6 HDi','EDC16+',NULL,'110',2018,'1','AC58 CTV',NULL,'1569493811.6HDi 110Bhp _AC58 CTV_ <NAME> Read EDC16_','1569498183.cod','P0409 - P0489 both to do with egr',NULL,'C',472,'2019-09-26 11:43:07','2019-09-26 10:43:07',NULL),(721,100,20,'mitsubishi','l200 trojan','2011','2477','denso ra6',NULL,'136',2021,'1','sb11 cuw',NULL,'1569500479.',NULL,NULL,NULL,'C',194,'2019-09-26 14:03:43','2019-09-26 13:03:43',NULL),(722,19,15,'audi','a3','8p','2.0tdi cbba','edc17c46',NULL,'140',2020,'2','x',NULL,'1569506383.txt','1569597547.cod',NULL,NULL,'C',473,'2019-09-27 15:19:09','2019-09-27 14:19:09',NULL),(723,45,11,'Ford','Fiesta','2010','1400','EDC17 C10',NULL,NULL,2020,'1','BD60 UYE',NULL,'1569508067.','1569509077.bin',NULL,'tuned and egr, before badly, got 90% back to stock. Car smoking badly','C',474,'2019-09-26 14:45:18','2019-09-26 13:45:18',NULL),(724,76,32,'nissan','navarra','2012','2488','denso 482',NULL,NULL,2000,'2','yg61dxk',NULL,'1569515930.','1569516874.cod',NULL,NULL,'C',195,'2019-09-26 16:54:41','2019-09-26 15:54:41',NULL),(725,121,21,'ford','transit','mk7','2.2','sid208',NULL,NULL,2024,'2','sf14 umv',NULL,'1569571812.2tdci-hw-cc11-12b684-ac-sw-cc11-12a650-ac-upgsw-cc11-14c204-ebp-ver-ds-cc11-12a650-cak','1569573954.cod',NULL,NULL,'C',196,'2019-09-27 08:45:59','2019-09-27 07:45:59',NULL),(726,45,17,'VW','Transporter','T6','2000 Bitdi','delphi dcm',NULL,'204',2026,'6','TE67 ERS',NULL,'1569573579.','1569576035.cod',NULL,'assuming that was a virtual read, here you go !','C',475,'2019-09-27 09:20:51','2019-09-27 08:20:51',NULL),(727,100,33,'ford','transit connect','2012','1800','siemens sid803a/sid202',NULL,'109',2022,'1','p1rdb',NULL,'1569582864.','1569584330.cod','DPF & EGR DELETE',NULL,'C',197,'2019-09-27 11:38:58','2019-09-27 10:38:58',NULL),(728,45,11,'Ford','Focus','MK2','1600','EDC16',NULL,NULL,2018,'1','YK58 XOA',NULL,'1569584917.','1569586144.cod',NULL,NULL,'C',476,'2019-09-27 12:09:08','2019-09-27 11:09:08',NULL),(729,19,14,'audi','a3','8p','2.0','edc17',NULL,NULL,2000,'1','x',NULL,'1569595317.cod','1569599907.cod',NULL,NULL,'C',477,'2019-09-27 15:58:31','2019-09-27 14:58:31',NULL),(730,43,11,'Mercedes','313CDi','906','2.1 CDI','CRD3.20',NULL,'129',2024,'3','KS14 FHD','113,860','1569663990.20 P350','1569668694.cod','Ex Tesco Fleet Van','vmax added, re download the mod from here','C',478,'2019-09-28 11:05:11','2019-09-28 10:05:11',NULL),(731,100,20,'bmw','320d','2006','2000','edc16+c35',NULL,'163',2016,'2','nc06xtl',NULL,'1569668721.','1569675061.cod',NULL,NULL,'C',198,'2019-09-28 12:51:04','2019-09-28 11:51:04',NULL),(732,24,14,'audi','A5','coupe','2.7','bosh 501',NULL,NULL,2018,'12','ca51lre',NULL,'1569766824.txt','1569769897.cod',NULL,'EGR Actuator plug MUST be disconnected','C',479,'2019-09-29 15:11:44','2019-09-29 14:11:44',NULL),(733,43,11,'Audi','A3','8P','2.0TDi','EDC17C46',NULL,'140',2011,'5','CK11OKR','71,530','1569836268.0TDi 140Bhp _CK11 OKR_ Mark Kess VR File EDC17C46','1569837467.cod',NULL,NULL,'C',480,'2019-09-30 14:43:04','2019-09-30 13:43:04',NULL),(734,121,32,'vw','caddy','?','1600','simos pcr2.1',NULL,NULL,2023,'1','nu63ecw',NULL,'1569846118.6tdi-hw-cayd-sw-03l906023th-upgsw-03l906023th-9978','1569848747.cod','& Tune plz',NULL,'C',199,'2019-09-30 13:05:51','2019-09-30 12:05:51',NULL),(735,76,20,'ford','transit','custom','2200','sid 209',NULL,NULL,2026,'2','fg16usu',NULL,'1569846962.','1569847994.cod',NULL,NULL,'C',200,'2019-09-30 12:53:17','2019-09-30 11:53:17',NULL),(736,76,32,'VW','Golf','5','bkc','c16u1',NULL,NULL,2015,'2','y9blw',NULL,'1569848829.','1569849565.cod',NULL,NULL,'C',201,'2019-09-30 13:19:28','2019-09-30 12:19:28',NULL),(737,45,14,'Ford','Kuga','MK1','2000','sid202',NULL,NULL,2020,'1','MJI4601',NULL,'1569853519.','1569855072.cod',NULL,NULL,'C',481,'2019-09-30 14:51:19','2019-09-30 13:51:19',NULL),(738,76,32,'subaru','outback','3','2000','denso 7058',NULL,'150',2019,'1','pj09nwa',NULL,'1569918994.','1569920074.cod',NULL,NULL,'C',202,'2019-10-01 08:54:37','2019-10-01 07:54:37',NULL),(739,19,11,'ford','transit','mk7','2.2','sid208',NULL,NULL,2024,'2','ea14yy',NULL,'1569919345.','1569920823.cod',NULL,NULL,'C',482,'2019-10-01 09:07:10','2019-10-01 08:07:10',NULL),(740,100,20,'VW','caddy','2013','1600','simos pcr 2.1',NULL,'102',2023,'1','ey13ahj',NULL,'1569922812.','1569924083.cod',NULL,NULL,'C',203,'2019-10-01 10:01:27','2019-10-01 09:01:27',NULL),(741,45,11,'Volvo','V60','D3','2000','EDC17 CP48',NULL,'161',2022,'2','YH12 EFF',NULL,'1569923255.','1569927300.unq',NULL,NULL,'C',483,'2019-10-01 10:55:04','2019-10-01 09:55:04',NULL),(742,19,14,'audi','a1','1','1.6tdi cayc','pcr2.1',NULL,NULL,2022,'1','nj12jvr',NULL,'1569932849.','1569934045.cod',NULL,NULL,'C',484,'2019-10-01 12:47:30','2019-10-01 11:47:30',NULL),(743,23,15,'FORD','TRANSIT','8','2.2','SID208',NULL,NULL,2023,'2','YP13SYF',NULL,'1569944504.dat','1570006151.cod','This van has been remapped previously',NULL,'C',485,'2019-10-02 08:49:18','2019-10-02 07:49:18',NULL),(744,24,14,'ford','focus','2','1560','<NAME>',NULL,NULL,2019,'1','nl09uee',NULL,'1570015115.','1570016694.cod',NULL,NULL,'C',486,'2019-10-02 11:44:58','2019-10-02 10:44:58',NULL),(745,102,36,'mini','coopers','any','2l','bosch',NULL,NULL,2025,'2','MKE864',NULL,'1570017298.','1570030034.cod','see whats up fault codes','ok try this','C',204,'2019-10-02 15:27:27','2019-10-02 14:27:27',NULL),(746,45,14,'Nissan','Xtrail','2008','2000','EDC16',NULL,NULL,2018,'2','HG58 ASZ',NULL,'1570031586.','1570037776.cod',NULL,'unplug temps and pressure sensors','C',487,'2019-10-02 17:36:33','2019-10-02 16:36:33',NULL),(747,100,20,'mercedes','c250 coupe','2012','2143','delphi crd3',NULL,'204',2023,'3','ja07era',NULL,'1570034482.','1589809856.cod',NULL,'added egr','C',205,'2020-05-18 13:51:05','2020-05-18 12:51:05',NULL),(748,76,33,'LANDROVER','range rover sport','1','2700','sid204',NULL,NULL,2015,'3','j30keh',NULL,'1570109716.','1570112405.cod',NULL,NULL,'C',206,'2019-10-03 14:20:14','2019-10-03 13:20:14',NULL),(749,24,11,'audi','a3','2','1.9','vag',NULL,NULL,2019,'1','n31dlm',NULL,'1570118469.','1570125779.cod',NULL,'this file was already messed with, ive done my best to correct the mess','C',488,'2019-10-03 18:03:11','2019-10-03 17:03:11',NULL),(750,85,20,'ford','focus','mk3','1600','sid807evo',NULL,'115',2024,'1','ys64ntd',NULL,'1570119877.bin',NULL,NULL,NULL,'C',207,'2019-10-08 08:27:52','2019-10-08 07:27:52',NULL),(751,102,20,'BMW','Z4','any','2l','bosch',NULL,NULL,2025,'3','NMT004',NULL,'1570171140.','1570183315.cod',NULL,NULL,'C',208,'2019-10-04 10:01:58','2019-10-04 09:01:58',NULL),(752,102,21,'MERCEDES','CLS','any','2.1L','delphi',NULL,NULL,2023,'3','MZT150',NULL,'1570176282.','1570182097.cod',NULL,NULL,'C',209,'2019-10-04 09:41:43','2019-10-04 08:41:43',NULL),(753,45,11,'VW','Golf','7','2000','SIMOS018',NULL,NULL,2026,'4','FP16 LNG',NULL,'1570191763.dec','1570192764.cod',NULL,NULL,'C',489,'2019-10-04 12:39:28','2019-10-04 11:39:28',NULL),(754,102,21,'SMART','FOURTWO PULSE','ANY','800CM3','bosch',NULL,NULL,2019,'9','NBN794',NULL,'1570195694.','1570201067.cod','DPF OFF EGR OFF',NULL,'C',210,'2019-10-04 14:57:52','2019-10-04 13:57:52',NULL),(755,19,11,'skoda','yeti','1','2.0tdi cuub','edc17c64',NULL,'150',2025,'2','yo65eaf',NULL,'1570436042.txt','1570711912.cod',NULL,NULL,'C',490,'2019-10-10 12:51:56','2019-10-10 11:51:56',NULL),(756,102,20,'VW','GOLF7','ANY','1.4','bosch',NULL,NULL,2026,'3','MMN223',NULL,'1570522124.','1570527873.cod','110KW',NULL,'C',211,'2019-10-08 09:44:39','2019-10-08 08:44:39',NULL),(757,102,21,'CITROEN','BERLINGO','ANY','1.6','bosch',NULL,NULL,2022,'1','NAN277',NULL,'1570522603.txt','1570523638.cod','id read',NULL,'C',212,'2019-10-08 08:34:01','2019-10-08 07:34:01',NULL),(758,76,32,'vw','golf','6','1600','SIMOS PCR',NULL,NULL,2000,'1','yk12ykr',NULL,'1570523873.','1570525684.cod',NULL,'ok here is file super fast','C',213,'2019-10-08 09:08:08','2019-10-08 08:08:08',NULL),(760,76,21,'FORD','TRANSIT','7','2200','SID208',NULL,'100',2022,'2','sa59wcj',NULL,'1570531680.','1570533499.cod','dpf off and tune pls',NULL,'C',215,'2019-10-08 11:18:25','2019-10-08 10:18:25',NULL),(761,27,11,'mercedes','c200','mk1','2.1','BOSCH',NULL,'122',2017,'3','OV07AOW',NULL,'1570532974.','1570536199.cod',NULL,NULL,'C',491,'2019-10-08 12:03:22','2019-10-08 11:03:22',NULL),(762,100,20,'mercedes','sprinter 313','2010','2143','delphi crd2.xx',NULL,'129',2020,'3','lm60okd',NULL,'1570535919.','1570539392.cod','DPF DELETE - LIMITER REMOVAL',NULL,'C',216,'2019-10-08 12:56:35','2019-10-08 11:56:35',NULL),(763,45,15,'Ford','Galaxy','mk2','2000','Delphi DCM 3.5',NULL,NULL,2020,'3','WF60 LJZ',NULL,'1570608850.','1570612723.cod',NULL,NULL,'C',492,'2019-10-09 09:20:14','2019-10-09 08:20:14',NULL),(764,121,20,'vw','golf','6','2000','edc17 cb.03.15.00 c47.00',NULL,NULL,2021,'2','kn11 vye',NULL,'1570609762.0tdi-hwver-03l907309r-upgsw-03l906018-7453','1570616538.cod','tune & egr delete plz J',NULL,'C',217,'2019-10-09 10:22:25','2019-10-09 09:22:25',NULL),(765,19,15,'vw','golf','6','2.0 cffb','edc17c46',NULL,'140',2020,'2','bn10wle',NULL,'1570609884.txt','1570611405.cod',NULL,NULL,'C',493,'2019-10-09 08:56:50','2019-10-09 07:56:50',NULL),(766,102,21,'Mercedes','SPRINTER','ANY','2.2','delphi',NULL,NULL,2025,'2','BK15UFH',NULL,'1570612121.','1570619579.cod','P05461 TEMP SENSOR 1 / P20802 TEMP SENSOR 1 EXHAUST',NULL,'C',218,'2019-10-09 11:14:27','2019-10-09 10:14:27',NULL),(767,100,20,'VW','caddy','2013','1600','simos pcr 2.1',NULL,'102',2023,'1','ey13ahj',NULL,'1570614038.','1570621647.cod','DPF DELETE',NULL,'C',219,'2019-10-09 11:47:44','2019-10-09 10:47:44',NULL),(768,19,11,'ford','transit','MK7','2.2','SID208',NULL,NULL,2023,'2','YP63JKV',NULL,'1570615486.','1570616783.cod',NULL,NULL,'C',494,'2019-10-09 10:26:32','2019-10-09 09:26:32',NULL),(769,30,11,'Volkswagen','Passat','2017','2.0 tdi','EDC17C74',NULL,'190',2027,'4','R90JJP',NULL,'1570617594.txt','1570620352.cod',NULL,NULL,'C',495,'2019-10-09 11:25:55','2019-10-09 10:25:55',NULL),(770,102,32,'NISSAN','NAVARA','ANY','2.5','denso',NULL,NULL,2017,'3','KZF062',NULL,'1570621838.','1570622839.cod','THIS CR WE HAVE DONE DPF AND TUNING BEFORE HOPE U WILL NOT CHARGE ME',NULL,'C',220,'2019-10-09 12:07:24','2019-10-09 11:07:24',NULL),(771,27,14,'VW','GOLF','MK5','2.0','BOSCH',NULL,'140',2014,'2','GJ54 ZRF',NULL,'1570622707.','1570624217.cod',NULL,NULL,'C',496,'2019-10-09 12:30:20','2019-10-09 11:30:20',NULL),(772,100,33,'vauxhall','vivaro','2015','1600','edc17c42',NULL,'90',2025,'2','wt15vld',NULL,'1570622968.','1570626292.cod',NULL,NULL,'C',221,'2019-10-09 13:04:56','2019-10-09 12:04:56',NULL),(773,76,20,'mercedes','a 176','2104','20','crd3',NULL,'170',2024,'3','ane84m',NULL,'1570699203.','1570701954.cod',NULL,NULL,'C',222,'2019-10-10 10:06:03','2019-10-10 09:06:03',NULL),(774,23,15,'FORD','TRANSIT','MK7','2.2','SID208 /209',NULL,NULL,2023,'2','YN63XMR',NULL,'1570699576.dat','1570704367.cod',NULL,NULL,'C',497,'2019-10-10 10:46:09','2019-10-10 09:46:09',NULL),(776,19,14,'vw','sirroco','1st','2.0tsi','med17.5',NULL,'210',2019,'2','x',NULL,'1570701143.','1570706930.cod','swirl flaps off p2015','there is no script for DTC for these. Ive think ive founf the DTC area required. Please test this file','C',499,'2019-10-10 11:29:36','2019-10-10 10:29:36',NULL),(777,45,11,'Jaguar','Xtype','X800``','2200','Delphi MPC',NULL,'150',2019,'3','D9 PGA',NULL,'1570702211.2 REad','1570702407.cod',NULL,NULL,'C',500,'2019-10-10 10:13:29','2019-10-10 09:13:29',NULL),(778,45,14,'Peugeot','Partner','2','1600','EDC17 C10',NULL,NULL,2023,'1','NU13 NTM',NULL,'1570702328.','1570706567.unq',NULL,'do resets','C',501,'2019-10-10 11:22:58','2019-10-10 10:22:58',NULL),(779,100,20,'vw','golf','2008','2000','edc16u34',NULL,'140',2018,'2','j20rcy',NULL,'1570707171.','1570710065.cod',NULL,NULL,'C',223,'2019-10-10 12:21:07','2019-10-10 11:21:07',NULL),(780,43,11,'VW','Golf','1K','2.0','EDC17CP14',NULL,'140',2019,'2','RV59UAZ','162,260','1570715365.0TDi 140Bhp CBAB _RV59 UAZ_ James Kess VR File EDC17C14','1570715737.cod','P0544 Ex Temp Sensor Bank 1',NULL,'C',502,'2019-10-10 13:55:42','2019-10-10 12:55:42',NULL),(781,43,11,'Mercedes','Sprinter','906','2.1','CRD2.XX',NULL,'163',2022,'3','HY62 VJU',NULL,'1570727494.XX','1570728971.cod',NULL,'didnt look stock','C',503,'2019-10-10 17:36:39','2019-10-10 16:36:39',NULL),(782,121,20,'suzuki','grand vitara','x','1900','edc16c36',NULL,NULL,2021,'2','y30 srm',NULL,'1570732497.9dt-hw-8201196328-sw-1037512062','1570734304.unq',NULL,NULL,'C',224,'2019-10-10 19:05:10','2019-10-10 18:05:10',NULL),(783,121,21,'vauxhall','combo','c','1300','mag',NULL,NULL,2016,'1','vk56 xbx',NULL,'1570743962.3cdti-hw-mag-01246o203d-sw-3124c148-ver-0002-spr-55194015zf','1570745637.cod','EGR and could you plz delete dtc P0243 & P0403',NULL,'C',225,'2019-10-10 22:14:18','2019-10-10 21:14:18',NULL),(785,45,11,'BMW','520','F11','2000','EDC17 C41',NULL,'181',2021,'3','RGV300',NULL,'1570784110.','1570787729.cod',NULL,NULL,'C',504,'2019-10-11 09:55:34','2019-10-11 08:55:34',NULL),(786,24,11,'FIAT','DUCATO','2','2.3','MARRELLO',NULL,'130',2022,'2','DU62AGY',NULL,'1570787228.','1570789757.cod',NULL,NULL,'C',505,'2019-10-11 10:30:29','2019-10-11 09:30:29',NULL),(787,43,15,'VW','Golf','1K1','2.0','PPD',NULL,'170',2018,'2','MF08BXD',NULL,'1570788948.0TDi BMN _MF08 BXD_ Lee Kess Read PPD STG_1 464-modified','1570790532.cod','already Stage 1 add a bit more if you can dont want smoke','dpf and egr added to a tune','C',506,'2019-10-11 10:42:17','2019-10-11 09:42:17',NULL),(788,76,32,'opel','vivaro','a','2000','c16+',NULL,'113',2021,'2','dv11hkn',NULL,'1570791730.','1570797051.cod',NULL,NULL,'C',227,'2019-10-11 12:30:55','2019-10-11 11:30:55',NULL),(789,100,20,'vw','crafter','2015','2000','edc17c54',NULL,'109',2025,'2','yk65ysr',NULL,'1570803458.','1570806879.cod','DPF DELETE',NULL,'C',228,'2019-10-11 15:14:43','2019-10-11 14:14:43',NULL),(790,45,11,'VW','Caddy','2019','2000','EDC17 C64',NULL,'102',2029,'1','FG69 OKD',NULL,'1570804681.','1570811146.unq','Customer asked for around 150bhp please',NULL,'C',507,'2019-10-11 16:25:50','2019-10-11 15:25:50',NULL),(791,29,14,'ford','transit','kess v2','2.2','sid208',NULL,NULL,2022,'2','tjz 8321',NULL,'1570874599.','1570879170.cod',NULL,'egr plug needs disconnecting','C',508,'2019-10-12 13:50:01','2019-10-12 12:50:01',NULL),(792,43,11,'Ford','Transit','MK6','2.4','Delphi / EECV',NULL,'115',2015,'1','BV05VFY','157,678','1570898437.','1570900053.cod',NULL,NULL,'C',509,'2019-10-12 17:07:36','2019-10-12 16:07:36',NULL),(793,43,11,'Vauxhall','Vivaro','MK2','1.6 Bi-Turbo','EDC17C42',NULL,'120',2025,'2','DS65 UDG','56,126','1571043701.6CDi Bi-Turbo _DS65 UDG_ Garry Kess Read EDC17C42','1571044732.cod',NULL,NULL,'C',510,'2019-10-14 09:18:57','2019-10-14 08:18:57',NULL),(794,23,15,'ford','transit','mk7','2.2','sid 208/209',NULL,NULL,2022,'2','NA12HZB',NULL,'1571047433.dat','1571049047.cod',NULL,'please update your cmd, it keeps complaining its not up to date','C',511,'2019-10-14 10:31:13','2019-10-14 09:31:13',NULL),(795,19,15,'citroen','berlingo','b9','1.6hdi','edc17c10 irom',NULL,NULL,2024,'1','x',NULL,'1571054808.','1571056308.unq',NULL,'unplug EGR\r\nDPF PRESSURE AND TEMPERATURE SENSORS MUST BE DISCONNECTED!','C',512,'2019-10-14 12:31:51','2019-10-14 11:31:51',NULL),(796,100,20,'ford','custom','2018','2000','sid211',NULL,'105',2028,'2','bk57gns',NULL,'1571129359.','1571132991.cod',NULL,NULL,'C',229,'2019-10-15 09:49:54','2019-10-15 08:49:54',NULL),(797,102,21,'CITROEN','C4','ANY','1.6','NOT KNOWN',NULL,NULL,2024,'3','NHY 564',NULL,'1571130479.txt','1571144747.unq','id read / ADDITIVE PUMP P1434 ADDITIVE PUMP MALFUNCTION',NULL,'C',230,'2019-10-15 13:05:51','2019-10-15 12:05:51',NULL),(799,100,20,'vauxhall','vivaro','2015','1600','edc17c42',NULL,'120',2025,'2','sj15syc',NULL,'1571141748.','1571145051.cod',NULL,NULL,'C',231,'2019-10-15 13:10:57','2019-10-15 12:10:57',NULL),(800,76,20,'opel','ASTRA','2011','1700','E87',NULL,NULL,2021,'2','BL61OGX',NULL,'1571148677.','1571150163.cod','Tune DPF off and EGR off pls',NULL,'C',232,'2019-10-15 14:36:08','2019-10-15 13:36:08',NULL),(801,43,11,'Peugeot','Partner','MK2','2.0HDi','SID806',NULL,'90',2014,'1','HG04NLT','237,861','1571148793.txt','1571151740.cod','P0402 EGR Flow incorrect',NULL,'C',513,'2019-10-15 15:02:24','2019-10-15 14:02:24',NULL),(802,43,11,'Skoda','Octavia','MK2','2.0TFSi','MED17.X',NULL,'200',2021,'5','FM61AAO','65,936','1571159498.X','1571220682.cod',NULL,'only have a stage 2, 290+','C',514,'2019-10-16 10:11:39','2019-10-16 09:11:39',NULL),(803,102,21,'Mitsubishi','l200','ANY','2.5','denso',NULL,NULL,2022,'3','MPK201',NULL,'1571208970.','1571219685.cod','P1499 DIESEL PARTICULATE FILTER',NULL,'C',233,'2019-10-16 09:54:55','2019-10-16 08:54:55',NULL),(804,100,20,'NISSAN','navara','2011','2488','denso 23710',NULL,'188',2021,'2','p11 mhl',NULL,'1571222533.','1571223323.cod',NULL,NULL,'C',234,'2019-10-16 10:55:31','2019-10-16 09:55:31',NULL),(806,100,20,'AUDI','a6','2014','2000','edc17c46',NULL,'177',2024,'12','bl63esu',NULL,'1571237319.',NULL,NULL,NULL,'C',235,'2019-10-16 15:17:23','2019-10-16 14:17:23',NULL),(807,43,11,'Ford','S-MAx','MK1','2.2TDCi','EDC16C39',NULL,'175',2018,'2','AK08VGH','68,173','1571306530.2TDCi 175Bhp _AK08 VGH_ Aron Kess Read EDC16C39','1571308231.cod',NULL,'EGR Actuator plug must be disconnected\r\nDPF PRESSURE AND TEMPERATURE SENSORS MUST BE DISCONNECTED','C',515,'2019-10-17 10:30:35','2019-10-17 09:30:35',NULL),(808,100,20,'ford','transit','2015','2200','sid209',NULL,'125',2025,'2','nv65bgy',NULL,'1571310000.','1571314250.cod','DPF DELETE',NULL,'C',236,'2019-10-17 12:10:53','2019-10-17 11:10:53',NULL),(809,100,20,'audi','a3','2006','2000','edc16u34',NULL,'140',2016,'2','py56lfs',NULL,'1571311375.','1571312844.cod','possibe remap already installed',NULL,'C',237,'2019-10-17 11:47:28','2019-10-17 10:47:28',NULL),(810,76,21,'fprd','ranger','2012','2200','sid208',NULL,'150',2022,'1','nj62kyf',NULL,'1571322230.','1571324407.cod','dpf off egr off and 62 mph speed limiter',NULL,'C',238,'2019-10-17 15:00:11','2019-10-17 14:00:11',NULL),(811,100,20,'ford','ranger','2016','3200','sid209',NULL,'200',2026,'2','nl66rnf',NULL,'1571326676.','1571331656.cod',NULL,NULL,'C',239,'2019-10-17 17:01:02','2019-10-17 16:01:02',NULL),(812,21,11,'FORD','TRANSIT','2013','2.2','CONTI',NULL,NULL,2023,'2','WJ63HVG',NULL,'1571388294.','1571395581.cod',NULL,NULL,'C',516,'2019-10-18 10:46:24','2019-10-18 09:46:24',NULL),(814,102,32,'MITSUBISHI','FUSO','ANY','4.9','bosch',NULL,NULL,2019,'1','KVW168',NULL,'1571390006.','1571391673.unq','EGR OFF',NULL,'C',241,'2019-10-18 09:41:18','2019-10-18 08:41:18',NULL),(815,100,20,'vw','caddy','2014','2000','edc17c46',NULL,'140',2024,'2','t9gkd',NULL,'1571396436.','1571401097.cod',NULL,NULL,'C',242,'2019-10-18 12:18:21','2019-10-18 11:18:21',NULL),(816,21,11,'VW','TRANSPORTER','T5','2.0','bosch',NULL,NULL,2025,'2','D9LCO',NULL,'1571403364.txt','1571404206.cod',NULL,NULL,'C',517,'2019-10-18 13:10:10','2019-10-18 12:10:10',NULL),(817,19,11,'landrover','defender','110','2.5td5','mems3',NULL,NULL,2013,'1','x',NULL,'1571403497.','1571668139.cod',NULL,NULL,'C',518,'2019-10-21 14:29:05','2019-10-21 13:29:05',NULL),(818,19,11,'NISSAN','nv200','2nd','1.5dci','edc17c84',NULL,'90',2028,'1','bl68txr',NULL,'1571405931.','1571410292.unq',NULL,'no done one of these before needed studying','C',519,'2019-10-18 14:51:51','2019-10-18 13:51:51',NULL),(819,19,11,'mercedes','sprinter','906','2.2 313','crd2.3',NULL,'130',2023,'1','x',NULL,'1571408241.','1571412307.cod',NULL,NULL,'C',520,'2019-10-18 15:25:11','2019-10-18 14:25:11',NULL),(820,102,21,'ISUZU','DMAX','ANY','2.5','TRANSTRON',NULL,NULL,2026,'3','NKE 338',NULL,'1571416024.','1571417477.unq','DPF OFF',NULL,'C',243,'2019-10-18 16:51:23','2019-10-18 15:51:23',NULL),(821,43,11,'Ford','Mondeo','4th','2.0','MED147.0.1',NULL,'240',2022,'3','BJ04 CON','111,008','1571476405.1','1571480154.cod',NULL,NULL,'C',521,'2019-10-19 10:15:57','2019-10-19 09:15:57',NULL),(822,121,21,'vw','passat','6','2.0','edc17cp04/14',NULL,'140',2018,'2','ae08 mld',NULL,'1571478024.0tdi-140bhp-sw-1037394183-upgsw-03l906022fn-2643-edc17cp04','1571483282.cod','Tune Egr & dpf plz J',NULL,'C',244,'2019-10-19 11:08:06','2019-10-19 10:08:06',NULL),(823,24,11,'audi','a4','3','2000','1',NULL,'1',2019,'2','58',NULL,'1571656794.','1571658474.cod',NULL,NULL,'C',522,'2019-10-21 11:48:09','2019-10-21 10:48:09',NULL),(824,102,21,'MITSUBISHI','l200','ANY','2.5','denso',NULL,NULL,2025,'1','NKN523',NULL,'1571656899.','1571658360.cod','DPF OFF',NULL,'C',245,'2019-10-21 11:46:11','2019-10-21 10:46:11',NULL),(825,19,11,'vw','golf mk7 r','7','2.0 tsi cjxc','simos18',NULL,NULL,2025,'1','x',NULL,'1571657844.txt','1571659062.cod',NULL,'no decat added','C',523,'2019-10-21 11:57:53','2019-10-21 10:57:53',NULL),(826,100,33,'ford','custom','2016','2200','sid209',NULL,'125',2026,'2','ba16frd',NULL,'1571665952.','1571667095.cod',NULL,NULL,'C',246,'2019-10-21 14:11:40','2019-10-21 13:11:40',NULL),(827,45,14,'Ford','Transit','MK7','2.2','Sid208',NULL,NULL,2023,'2','BM63 WRL',NULL,'1571672644.2 read','1571675361.cod',NULL,'this car was 100% stock, not tuned. He did say they have another van without a DPF and it goes like a rocket','C',524,'2019-10-21 16:29:24','2019-10-21 15:29:24',NULL),(828,76,21,'bmw','535','e60','m57','edc 16+c35',NULL,NULL,2016,'3','l444dmk new',NULL,'1571742985.','1571743122.cod','already tuned dpf off pls',NULL,'C',247,'2019-10-22 11:18:45','2019-10-22 10:18:45',NULL),(829,100,33,'ford','connect','2015','1560','sid807',NULL,'75',2025,'1','ap64edr',NULL,'1571755750.','1571758839.cod','DPF DELETE',NULL,'C',248,'2019-10-22 15:40:45','2019-10-22 14:40:45',NULL),(830,21,11,'VW','TRANSPORTER','T5','1.9','bosch',NULL,NULL,2015,'1','AU05OKV',NULL,'1571817363.','1571821261.cod',NULL,NULL,'C',525,'2019-10-23 09:01:05','2019-10-23 08:01:05',NULL),(831,100,20,'vauxhall','vivaro','2014','1600','edc17c42',NULL,'115',2024,'2','dl64pjv',NULL,'1571823396.','1571826744.cod',NULL,NULL,'C',249,'2019-10-23 10:32:31','2019-10-23 09:32:31',NULL),(832,100,33,'citroen','berlingo','2013','1560','edc17c10',NULL,'75',2023,'1','sk13xug',NULL,'1571837168.txt','1571839858.cod','DPF DELETE',NULL,'C',250,'2019-10-23 14:11:01','2019-10-23 13:11:01',NULL),(833,100,20,'ford','custom','2015','2200','sid209',NULL,'100',2025,'2','hn15fyz',NULL,'1571837296.','1571841522.cod',NULL,NULL,'C',251,'2019-10-23 14:38:45','2019-10-23 13:38:45',NULL),(834,43,11,'VW','Touran','MK2','2.0TDi CFHC','EDC17C46',NULL,'140',2021,'2','EO61NFE','119,414','1571840309.0TDi 140Bhp _EO61 NFE_ Alan Kess VR File EDC17C46','1571842233.cod','MAKE IT FAST ITS THE CANNING TOWN BOYS',NULL,'C',526,'2019-10-23 14:50:40','2019-10-23 13:50:40',NULL),(835,100,20,'vw','golf','2006','2000','siemens ppd1.2',NULL,'170',2016,'2','px56wwt',NULL,'1571847304.','1571848568.cod','DPF DELETE',NULL,'C',252,'2019-10-23 16:36:13','2019-10-23 15:36:13',NULL),(836,19,14,'landrover','discovery','3','2.7','siemens',NULL,NULL,2019,'2','dy09xbk',NULL,'1571905167.','1571907219.cod',NULL,NULL,'C',527,'2019-10-24 08:53:47','2019-10-24 07:53:47',NULL),(837,19,11,'vw','golf','5','2.0tdi bmn','siemens ppd1.2 can',NULL,'170',2017,'2','pe07eta',NULL,'1571912357.','1571918580.cod',NULL,NULL,'C',528,'2019-10-24 12:03:05','2019-10-24 11:03:05',NULL),(838,100,20,'audi','a6','2006','3000','edc16cp34',NULL,'225',2016,'3','POLISH PLATES',NULL,'1571917144.','1571922384.cod',NULL,NULL,'C',253,'2019-10-24 13:06:27','2019-10-24 12:06:27',NULL),(839,100,20,'audi','a3','2007','1900','edc16+ u31/u34',NULL,'105',2000,'1','nh56dkv',NULL,'1571936521.','1571937077.cod',NULL,NULL,'C',254,'2019-10-24 17:11:20','2019-10-24 16:11:20',NULL),(840,100,20,'vw','golf','2007','2000','edc16+ u31/u34',NULL,'140',2000,'2','lr57jyn',NULL,'1571937730.','1571938746.cod',NULL,NULL,'C',255,'2019-10-24 17:39:19','2019-10-24 16:39:19',NULL),(841,76,20,'vw','tiguan','2009','2000','cp14',NULL,'140',2019,'2','yx58vuu',NULL,'1571994057.','1571997018.cod','Tune DPF off and EGR off pls',NULL,'C',256,'2019-10-25 09:50:29','2019-10-25 08:50:29',NULL),(842,100,20,'vw','caddy','2010','1900','edc16+ u31/u34',NULL,'104',2000,'1','wj60uxw',NULL,'1572000022.','1572001072.cod',NULL,NULL,'C',257,'2019-10-25 10:57:58','2019-10-25 09:57:58',NULL),(843,43,14,'Mercedes','E300 Hybrid','W212','2.1','CRD3.X',NULL,'204',2022,'3','YB62 UXR',NULL,'1572003713.cod','1572009486.cod','file attached is the modded file P061B64 P20802A P04262A P257D00','THERE IS NO DTC DELETE FOR THIS ECU.\r\nIVE RUN IT THOUGH AGAIN AS A 3.X AND IT HAS DONE A COUPLE MORE BITS,\r\nCHECK IT AND SEE','C',529,'2019-10-25 13:19:10','2019-10-25 12:19:10',NULL),(844,43,11,'BMW','325D','E90','3.0','EDC16',NULL,'197',2018,'3','YF08XLC','165,731','1572012006.','1572013980.cod',NULL,'messed with in the past, ive brought everything back to spec I could see.','C',530,'2019-10-25 14:33:01','2019-10-25 13:33:01',NULL),(845,45,11,'BMW','640','F06','3000','EDC17 CP45',NULL,'308',2025,'3','EN15 AWA',NULL,'1572080875.','1572083943.cod',NULL,NULL,'C',531,'2019-10-26 09:59:07','2019-10-26 08:59:07',NULL),(846,43,11,'Ford','S-max','MK1','2.2','EDC17CP42',NULL,'140',2020,'1','FL10 FFT',NULL,'1572087075.2 TDCi _FL10 FFT_ Tootchie Ktag Service Mode Read EDC17CP42','1572090432.unq','P1412 P2002','NOTHING SHOULD NEED UNPLUGGING','C',532,'2019-10-26 11:47:28','2019-10-26 10:47:28',NULL),(847,74,21,'FORD','TRANSIT custom','MK7','2.2','SID209',NULL,'149',2025,'2','EG15EDL',NULL,'1572099180.','1572102659.cod','AD BLUE OFF EGR OFF DPF OFF',NULL,'C',258,'2019-10-26 15:11:03','2019-10-26 14:11:03',NULL),(848,100,20,'audi','a3','2006','1968','edc16+ u31/u34',NULL,'140',2000,'2','py56lfs',NULL,'1572262232.','1572263310.cod','EGR DELETE',NULL,'C',259,'2019-10-28 11:48:33','2019-10-28 11:48:33',NULL),(849,121,20,'ford','ranger','2','2500','edc16c7',NULL,NULL,2019,'2','j12 gls',NULL,'1572269167.5tdi-verhw-edc16c7-7-30-sw-1037390179-swver-p382-v95','1572280932.cod',NULL,NULL,'C',260,'2019-10-28 16:42:16','2019-10-28 16:42:16',NULL),(850,45,11,'BMW','530D','F10','3000','EDC17 CP45',NULL,'255',2024,'3','SD64 XPV',NULL,'1572279838.','1572282983.cod',NULL,NULL,'C',533,'2019-10-28 17:16:25','2019-10-28 17:16:25',NULL),(851,100,20,'bmw','530d','2007','3000','edc16+c35',NULL,'235',2000,'2','mv57lxr',NULL,'1572285468.','1572289232.cod','SWIRLFLSP DELETE',NULL,'C',261,'2019-10-28 19:00:39','2019-10-28 19:00:39',NULL),(852,19,14,'ford','connect','1st','1.8tdci','sid202',NULL,NULL,2018,'1','nj08wrn',NULL,'1572340586.','1572341737.cod',NULL,NULL,'C',534,'2019-10-29 09:35:41','2019-10-29 09:35:41',NULL),(853,43,15,'Ford','Transit','TTF','2.2','SID208',NULL,'125',2023,'2','CU63 DLX','122,599','1572343660.2TDCi _CU63 DLX_ Dave Kess Read SID208 P397','1572348267.cod','P2463 P246C P24A4',NULL,'C',535,'2019-10-29 11:24:29','2019-10-29 11:24:29',NULL),(854,121,20,'vauxhall','zafira','2','1900','edc16+',NULL,NULL,2018,'2','am58 dgz',NULL,'1572345041.9cdti-sw-1037394069-upgsw-p485-o27','1572348786.unq','tune dpf & egr plz J',NULL,'C',262,'2019-10-29 11:33:20','2019-10-29 11:33:20',NULL),(855,100,20,'bmw','33d','2006','2993','edc16+c35',NULL,'231',2000,'3','fy56fbb',NULL,'1572346291.','1572350596.cod','EGR DELETE',NULL,'C',263,'2019-10-29 12:03:25','2019-10-29 12:03:25',NULL),(856,43,34,'mercedes','ML63','W166','5.5','MED17.7.3',NULL,'525',2023,'3','ML63 OFF','51,524','1572354220.3','1572357687.cod',NULL,NULL,'C',536,'2019-10-29 14:01:33','2019-10-29 14:01:33',NULL),(857,19,14,'vauxhall','vivaro','3','2.otdci m9r','edc17c42',NULL,'115',2024,'2','vk14hjn',NULL,'1572427298.','1572430075.cod',NULL,NULL,'C',537,'2019-10-30 10:07:58','2019-10-30 10:07:58',NULL),(858,19,11,'merc','sprinter','316','2.1','crd3.2',NULL,'160',2024,'2','m444mts',NULL,'1572430977.','1572433117.cod',NULL,NULL,'C',538,'2019-10-30 10:58:41','2019-10-30 10:58:41',NULL),(859,100,33,'mercedes','s320','2003','3222','edc16c2',NULL,'204',2000,'3','sh03ooa',NULL,'1572444650.','1572450457.cod',NULL,NULL,'C',264,'2019-10-30 15:47:42','2019-10-30 15:47:42',NULL),(860,100,20,'izuzu','d max','2012','2499','transtron 4jxx',NULL,'163',2000,'2','ll62okf',NULL,'1572446947.','1572451529.cod','EGR DELETE',NULL,'C',265,'2019-10-30 16:05:36','2019-10-30 16:05:36',NULL),(861,19,15,'vauxhall','combo','3','1.3cdti','mj8f',NULL,NULL,2022,'1','x',NULL,'1572449575.','1572453010.cod',NULL,NULL,'C',539,'2019-10-30 16:30:13','2019-10-30 16:30:13',NULL),(863,102,21,'toyota','urban cruise','ANY','1.4','bosch',NULL,NULL,2020,'1','rk10xma',NULL,'1572528596.','1572531521.unq',NULL,NULL,'C',266,'2019-10-31 14:18:49','2019-10-31 14:18:49',NULL),(864,45,11,'Vauxhall','Astra','J','1700','Delco E83',NULL,'130',2022,'2','SY62 XVH',NULL,'1572537590.','1572539988.cod',NULL,'power on sport','C',540,'2019-10-31 16:39:55','2019-10-31 16:39:55',NULL),(865,76,32,'LANDROVER','defender','2011','2400','visteon',NULL,NULL,2021,'2','h10hhb',NULL,'1572610530.','1573724865.cod',NULL,NULL,'C',267,'2019-11-14 09:47:49','2019-11-14 09:47:49',NULL),(866,76,21,'ford','cuatom','2016','2200','sid208',NULL,NULL,2026,'2','bd66hcf',NULL,'1572683001.','1572690748.cod',NULL,NULL,'C',268,'2019-11-02 10:32:32','2019-11-02 10:32:32',NULL),(867,100,20,'ford','custom','2015','2200','sid209',NULL,'100',2000,'2','px15vzp',NULL,'1572694656.','1572696108.cod',NULL,NULL,'C',269,'2019-11-02 12:01:54','2019-11-02 12:01:54',NULL),(868,43,11,'Audi','A3','8V','2.0TDi','EDC17C64',NULL,'150',2023,'2','SJ63 GVG','60,540','1572701368.0TDi 150Bhp CRBC _SJ63 GVG_ Kess VR File EDC17C64','1572708740.cod',NULL,NULL,'C',541,'2019-11-02 15:32:23','2019-11-02 15:32:23',NULL),(869,100,20,'BMW','116D','2009','2000','.',NULL,'115',2000,'2','sc09usj',NULL,'1572710263.','1572711182.cod','DPF DELETE',NULL,'C',270,'2019-11-02 16:13:10','2019-11-02 16:13:10',NULL),(870,21,11,'audi','a4','2010','2.7','bosch',NULL,NULL,2020,'3','m40dpj',NULL,'1572858353.txt','1572862531.cod',NULL,'Your catch up subs finally run out on the 10th. The cost now you\'ve caught up is only £600 a year and this entitles you to Alientech support, updates and files credits from us @£75 instead of £100.\r\n\r\nYour credit price will automatically change to £100 on the 11th if you choose not to aplly an Alientech Support Subscription','C',542,'2019-11-04 10:15:36','2019-11-04 10:15:36',NULL),(871,45,14,'Mercedes','Sprinter','313','2100','Dephi CRD2',NULL,'130',2019,'2','KN59 GBX',NULL,'1572858446.','1572862404.cod',NULL,NULL,'C',543,'2019-11-04 10:14:37','2019-11-04 10:14:37',NULL),(873,76,32,'FORD','ranger','2008','3000','edc16c7',NULL,'154',2018,'1','ly57foc',NULL,'1572889330.','1572899713.cod',NULL,NULL,'C',271,'2019-11-04 20:35:18','2019-11-04 20:35:18',NULL),(874,121,20,'ford','connect','7','1.5','Bosch',NULL,'120',2000,'1','-----------',NULL,'1573040439.5tdci-120bhp-hw-f1f1-12b684-ad-hwver-f1f1-14c558-ba-sw-fv61-12a650-rd','1573040578.cod',NULL,NULL,'C',272,'2019-11-06 11:43:14','2019-11-06 11:43:14',NULL),(875,19,14,'lexus','is220d','x','2adfhv','denso',NULL,NULL,2019,'2','x',NULL,'1573048471.txt','1573052062.cod',NULL,NULL,'C',544,'2019-11-06 14:54:31','2019-11-06 14:54:31',NULL),(876,100,20,'VW','transporter','2017','1968','delphi dcm6.2v',NULL,'102',2000,'1','sf17orr',NULL,'1573054808.','1573055471.cod',NULL,NULL,'C',273,'2019-11-06 15:52:23','2019-11-06 15:52:23',NULL),(877,19,14,'ford','connect','3rd','1.6tdci','sid807evo',NULL,'90',2024,'1','x',NULL,'1573057602.','1573060228.cod',NULL,NULL,'C',545,'2019-11-06 17:10:33','2019-11-06 17:10:33',NULL),(878,45,11,'Citreon','DS5','2013','2000','Delphi DCM 3.5',NULL,'160',2023,'2','AF63 OTT',NULL,'1573120042.','1573123251.cod',NULL,'nothing to disconnect','C',546,'2019-11-07 10:40:59','2019-11-07 10:40:59',NULL),(879,100,20,'volvo','c30','2010','1560','edc16c34',NULL,'109',2000,'1','yt60uey',NULL,'1573124529.','1573128539.cod','DPF DELETE',NULL,'C',274,'2019-11-07 12:09:02','2019-11-07 12:09:02',NULL),(880,43,14,'VW','Golf','MK5','1.6TDi','PCR2.1',NULL,'105',2019,'1','MT59EHB','137,837','1573125669.1','1573131018.cod',NULL,NULL,'C',547,'2019-11-07 12:50:26','2019-11-07 12:50:26',NULL),(881,100,20,'ford','connect','2007','1800','sid202',NULL,'75',2000,'1','LM56BHZ',NULL,'1573212282.','1573219521.cod','EGR DELETE',NULL,'C',275,'2019-11-08 13:25:26','2019-11-08 13:25:26',NULL),(882,100,20,'FORD','ranger','2013','2200','sid208',NULL,'150',2000,'2','sb62gyo',NULL,'1573212853.','1573221216.cod','DPF DELETE',NULL,'C',276,'2019-11-08 13:53:39','2019-11-08 13:53:39',NULL),(883,21,11,'VW','TRANSPORTER T6','T6','2.0','DELPHI',NULL,NULL,2027,'3','W45LTD',NULL,'1573213124.txt','1573224528.cod',NULL,'please give us the bhp version otherwise we cant be sure what level we are tuning. So we guessed on this on','C',548,'2019-11-08 14:48:53','2019-11-08 14:48:53',NULL),(884,100,20,'bmw','330d','2011','2993','edc17cp09',NULL,'245',2000,'2','k44mlr',NULL,'1573213301.','1573225751.cod','DPF DELETE',NULL,'C',277,'2019-11-08 15:09:21','2019-11-08 15:09:21',NULL),(885,19,34,'ford','fiesta','6','1.0 ecoboost','med17.0.1',NULL,NULL,2025,'1','yl15bkx',NULL,'1573213887.','1573217237.cod',NULL,NULL,'C',549,'2019-11-08 12:47:25','2019-11-08 12:47:25',NULL),(886,100,20,'seat','leon fr','2013','1800','simos 12.1',NULL,'180',2000,'2','sm13kle',NULL,'1573215276.','1573232282.cod',NULL,NULL,'C',278,'2019-11-08 16:58:06','2019-11-08 16:58:06',NULL),(887,19,14,'landrover','freelander','2nd','2.2','edc17',NULL,NULL,2022,'3','x',NULL,'1573220364.','1573221217.unq',NULL,'EGR Actuator plug must be disconnected','C',550,'2019-11-08 13:56:27','2019-11-08 13:56:27',NULL),(888,121,21,'audi','a3','5','2000','edc17 cp14',NULL,'140',2018,'2','sp58zka',NULL,'1573225289.0tdi-upgsw-03l906022bq-9978-edc17cp14','1573230921.cod','egr dpf & tune plz J',NULL,'C',279,'2019-11-08 16:35:28','2019-11-08 16:35:28',NULL),(889,45,15,'VW','Golf','6','1600','simos pcr2.1 can',NULL,NULL,2022,'2','FG62 HCA',NULL,'1573230202.','1573233070.cod','cayc engine',NULL,'C',551,'2019-11-08 17:11:15','2019-11-08 17:11:15',NULL),(890,100,20,'AUDI','S3','2014','1984','simos12',NULL,'300',2000,'2','px14rdu',NULL,'1573296510.','1573298248.cod',NULL,NULL,'C',280,'2019-11-09 11:17:32','2019-11-09 11:17:32',NULL),(891,100,20,'vw','transporter','2004','1896','edc16u1',NULL,'86',2000,'1','sb04vkn',NULL,'1573380986.','1573382956.cod',NULL,NULL,'C',281,'2019-11-10 10:49:20','2019-11-10 10:49:20',NULL),(892,100,20,'VOLVO','C30','2008','1997','SID206',NULL,'136',2000,'2','FH57VOP',NULL,'1573381770.','1573384194.cod',NULL,NULL,'C',282,'2019-11-10 11:09:59','2019-11-10 11:09:59',NULL),(893,43,11,'Renault','Master','MK3','2.3DCi','EDC17C42',NULL,'100',2024,'2','SC14APZ','101,175','1573470926.3DCi 100Bhp _SC14 APZ_ Lee Kess Read EDC1C42','1573473137.cod',NULL,NULL,'C',552,'2019-11-11 11:52:19','2019-11-11 11:52:19',NULL),(894,45,14,'JeepP','Wrangler','2016','2800','EDC17 C69',NULL,NULL,2026,'3','FP66 BZM',NULL,'1573485304.','1573486864.unq',NULL,'nothing to unplug','C',553,'2019-11-11 15:41:16','2019-11-11 15:41:16',NULL),(895,43,11,'VW','Transporter','T5','2.0TDi','EDC17CP20',NULL,'180',2024,'6','WR64FJV','84,146','1573493094.0TDi 180Bhp _WR64 FJV_ Paul Krss VR File EDC17CP20','1573495779.cod',NULL,NULL,'C',554,'2019-11-11 18:09:45','2019-11-11 18:09:45',NULL),(896,19,15,'skoda','octavia','1','cayc','pcr2.1',NULL,NULL,2021,'1','de11ywy',NULL,'1573555619.','1573557773.cod','please add egr',NULL,'C',555,'2019-11-12 11:25:29','2019-11-12 11:25:29',NULL),(897,45,11,'Mercedes','Citan','2015','1500DCI','EDC17 C42',NULL,NULL,2025,'1','EJ15 CXY',NULL,'1573564309.','1573567387.cod',NULL,NULL,'C',556,'2019-11-12 14:03:11','2019-11-12 14:03:11',NULL),(898,19,11,'ford','transit','mk6','2.4tddi','ford delphi',NULL,'90',2016,'1','x',NULL,'1573575248.','1573577929.cod',NULL,NULL,'C',557,'2019-11-12 16:58:55','2019-11-12 16:58:55',NULL),(899,45,14,'Lexus','Is220','2009','2000','DENSO',NULL,NULL,2019,'2','N6 CVH',NULL,'1573577279.txt','1573578732.cod','THIS HAS ALREADYT HAD A DPF OFF, CAN YOU RE ADD TO THIS FILE PLUS egr PLEASE','nothing to unplug','C',558,'2019-11-12 18:00:47','2019-11-12 18:00:47',NULL),(900,19,14,'landrover','rr sport','1st','2.7tdi','sid204',NULL,'0',2016,'3','yf06xho',NULL,'1573642166.','1573643784.cod',NULL,NULL,'C',559,'2019-11-13 11:16:28','2019-11-13 11:16:28',NULL),(901,19,11,'landrover','rr sport','1','3.8tdv8','siemens',NULL,NULL,2018,'3','h3ayh',NULL,'1573646658.','1573650578.cod',NULL,NULL,'C',560,'2019-11-13 13:09:41','2019-11-13 13:09:41',NULL),(902,121,31,'land rover','defender','td5','2500','?',NULL,NULL,2000,'1','pk06 yma',NULL,'1573656558.','1573658550.cod',NULL,NULL,'C',283,'2019-11-13 15:22:38','2019-11-13 15:22:38',NULL),(903,100,20,'audi','a3','2008','1968','edc17cp14',NULL,'140',2000,'2','da57zaa',NULL,'1573662987.','1573664738.cod','DPF DELETE',NULL,'C',284,'2019-11-13 17:05:41','2019-11-13 17:05:41',NULL),(904,121,21,'peugeot','partner','2','1600','edc17',NULL,NULL,2022,'1','pj62 wcp',NULL,'1573663799.txt','1573666137.cod','egr & dpf delete',NULL,'C',285,'2019-11-13 17:29:14','2019-11-13 17:29:14',NULL),(905,19,15,'ford','kuga','1','2.0tdci','dcm3.5',NULL,NULL,2021,'1','x',NULL,'1573720604.','1573727084.cod',NULL,NULL,'C',561,'2019-11-14 10:24:47','2019-11-14 10:24:47',NULL),(906,19,14,'landrover','range rover sport','1','2.7tdi','sid204',NULL,NULL,2017,'3','v31maf',NULL,'1573720718.','1573728633.cod',NULL,NULL,'C',562,'2019-11-14 10:50:38','2019-11-14 10:50:38',NULL),(907,102,20,'mercedes','e class','ANY','2143','delphi',NULL,NULL,2000,'3','mte723',NULL,'1573721563.','1573742692.cod',NULL,NULL,'C',286,'2019-11-14 14:45:12','2019-11-14 14:45:12',NULL),(908,43,11,'Ford','Focus','MK3','2.0TDCi','DCM3.5',NULL,'163',2021,'2','EN61 KLA','90,475','1573724612.5','1573728970.cod',NULL,NULL,'C',563,'2019-11-14 10:56:13','2019-11-14 10:56:13',NULL),(909,100,20,'vw','tiguan','2016','2000','edc17c64 can',NULL,'150',2000,'2','R6AWL',NULL,'1573726465.','1573732238.cod',NULL,NULL,'C',287,'2019-11-14 11:50:44','2019-11-14 11:50:44',NULL),(910,100,20,'AUDI','A3','2012','2000','EDC17C46 CAN',NULL,'170',2000,'2','RJ12FHS',NULL,'1573728875.','1573733027.cod',NULL,NULL,'C',288,'2019-11-14 12:03:51','2019-11-14 12:03:51',NULL),(911,100,20,'izuzu','d max','2012','2499','transtron 4jxx',NULL,'163',2000,'2','yt62xhd',NULL,'1573732712.','1573733221.cod',NULL,NULL,'C',289,'2019-11-14 12:07:07','2019-11-14 12:07:07',NULL),(912,45,15,'VW','Golf','6','1600','simos pcr2.1 can',NULL,NULL,2020,'2','YX60 YSW',NULL,'1573805428.txt','1573812403.cod','NO ori found when VR. Can you let me know if you have one? cheers',NULL,'C',564,'2019-11-15 10:06:47','2019-11-15 10:06:47',NULL),(913,45,15,'VW','Golf','6','1600','simos pcr2.1 can',NULL,NULL,2021,'2','SL11 FCA',NULL,'1573809267.','1573818685.cod','already had egr and tune',NULL,'C',565,'2019-11-15 11:51:29','2019-11-15 11:51:29',NULL),(914,100,20,'ford','c max','2010','1600','edc16c34',NULL,'109',2000,'1','ck60zfj',NULL,'1573820721.','1573823092.cod',NULL,NULL,'C',290,'2019-11-15 13:04:56','2019-11-15 13:04:56',NULL),(915,45,15,'Nissan','Juke','2013','1500DCI','SID307',NULL,NULL,2023,'2','NJ13 AVD',NULL,'1573833444.','1573837813.cod',NULL,NULL,'C',566,'2019-11-15 17:10:21','2019-11-15 17:10:21',NULL),(916,43,15,'Jaguar','X-Type','X400','2.0','Delphi MPC555',NULL,'130',2020,'3','L30 DWG','119,793','1573833806.0D 130Bhp _L30 DWG_ Jude Ktag Read Delphi MPC555 FORD P233','1573837102.bin','ECU BEEN OPENED BEFORE SUSPECT REMAPPED ALREADY','if its been tuned before bench, kess cant do it anymore the cksum algo is different.','C',567,'2019-11-15 16:59:12','2019-11-15 16:59:12',NULL),(917,45,11,'Citreon','Relay','2014','2.2','SID 208',NULL,'130',2024,'2','NK14 FCN',NULL,'1573898974.','1573902443.unq',NULL,NULL,'C',568,'2019-11-16 11:07:29','2019-11-16 11:07:29',NULL),(918,100,20,'mercedes','c250 coupe','2014','2143','delphi crd3.x can',NULL,'204',2000,'3','bt63pyg',NULL,'1573902016.','1573904977.cod','DPF DELETE',NULL,'C',291,'2019-11-16 11:49:55','2019-11-16 11:49:55',NULL),(919,100,20,'mercedes','e200','2010','2143','delphi crd2',NULL,'136',2000,'2','de10foa',NULL,'1573905600.','1573907261.cod','DPF DELETE',NULL,'C',292,'2019-11-16 12:27:48','2019-11-16 12:27:48',NULL),(920,100,20,'vw','scirocco','2010','2000','med17.5',NULL,'210',2000,'2','sf10plv',NULL,'1573912142.','1574077193.cod',NULL,NULL,'C',293,'2019-11-18 11:39:59','2019-11-18 11:39:59',NULL),(921,100,20,'bmw','116d','2014','1995','edc17c50',NULL,'117',2000,'2','mk14vku',NULL,'1573913702.','1573917216.cod',NULL,NULL,'C',294,'2019-11-16 15:13:45','2019-11-16 15:13:45',NULL),(922,19,11,'vw','crafter','2nd','2.0','dcm6.2v',NULL,'140',2029,'2','py19xma',NULL,'1574073209.txt','1574077942.cod',NULL,NULL,'C',569,'2019-11-18 11:52:24','2019-11-18 11:52:24',NULL),(923,100,20,'audi','sq5','2015','2967','edc17cp44 can',NULL,'313',2000,'3','j17cwd',NULL,'1574073297.','1574076184.cod',NULL,NULL,'C',295,'2019-11-18 11:26:23','2019-11-18 11:26:23',NULL),(924,24,14,'renault','traffic','2','2.5','e',NULL,NULL,2018,'1','57',NULL,'1574074259.','1574076439.cod',NULL,NULL,'C',570,'2019-11-18 11:27:31','2019-11-18 11:27:31',NULL),(925,19,15,'ford','transit','MK7','2.2','SID208',NULL,NULL,2022,'2','YC62VHB',NULL,'1574077443.','1574083336.cod',NULL,NULL,'C',571,'2019-11-18 13:22:19','2019-11-18 13:22:19',NULL),(926,76,32,'ford','transit','7','3200','visteon',NULL,'197',2016,'2','ls55osk',NULL,'1574077724.','1574079324.cod',NULL,NULL,'C',296,'2019-11-18 12:15:29','2019-11-18 12:15:29',NULL),(927,121,20,'audi','a3','1','1600','simos pcr2.1',NULL,'102',2020,'1','ek60 whp',NULL,'1574086233.6tdi-hw-cayc-sw-03l906023m-upgsw-03l906023m-9979','1574087279.cod',NULL,NULL,'C',297,'2019-11-18 14:28:05','2019-11-18 14:28:05',NULL),(928,102,36,'mercedes','ml','ANY','2143','NOT KNOWN',NULL,NULL,2023,'3','mpp281',NULL,'1574088593.','1574090163.cod','please check whats up for fault codes',NULL,'C',298,'2019-11-18 15:16:06','2019-11-18 15:16:06',NULL),(929,43,11,'VW','Transporter','T5','2.5TDi BNZ','EDC16',NULL,'129',2019,'2','YH59XRS','150,045','1574098193.5TDi 130Bhp _YH59 XRS_ <NAME> Read EDC16','1574104177.cod','HIGH MILEAGE please inspect current map file','tune and egr','C',572,'2019-11-18 19:09:44','2019-11-18 19:09:44',NULL),(930,76,20,'ford','transit','2014','2200','sid208',NULL,'125',2000,'2','nd14oab',NULL,'1574158613.','1574160397.cod','bottom end rtorque the lad is greedy',NULL,'C',299,'2019-11-19 10:46:43','2019-11-19 10:46:43',NULL),(931,19,15,'ford','transit','custom','2.3','sid208',NULL,NULL,2025,'2','bv15kvr',NULL,'1574162380.','1574164814.cod',NULL,NULL,'C',573,'2019-11-19 12:00:17','2019-11-19 12:00:17',NULL),(932,43,11,'Ford','Kuga','MK2','2.0','DCM6.1',NULL,'170',2028,'2','DPO','19,180','1574245315.1','1574247847.cod',NULL,NULL,'C',574,'2019-11-20 11:04:09','2019-11-20 11:04:09',NULL),(933,43,11,'Audi','Q5','8RB','2.0TDI','EDC17C46',NULL,'170',2020,'2','KX60 ZWS','44,916','1574252471.txt','1574253407.cod','Error with downloading VR',NULL,'C',575,'2019-11-20 12:36:49','2019-11-20 12:36:49',NULL),(934,19,15,'skoda','octavia','2','cayc 1.6tdi','pcr2.1',NULL,NULL,2023,'2','x',NULL,'1574255274.','1574258024.cod',NULL,NULL,'C',576,'2019-11-20 13:53:47','2019-11-20 13:53:47',NULL),(935,100,20,'bmw','330d','2008','2993','edc16+c35',NULL,'231',2000,'3','t18tkr',NULL,'1574266351.','1574268186.cod','DPF DELETE',NULL,'C',300,'2019-11-20 16:43:11','2019-11-20 16:43:11',NULL),(936,102,21,'mercedes','e class','ANY','2143','delphi',NULL,NULL,2000,'3','mta904',NULL,'1574267001.','1574269152.cod',NULL,NULL,'C',301,'2019-11-20 16:59:15','2019-11-20 16:59:15',NULL),(937,102,32,'honda','crv','ANY','2.2l','bosch',NULL,NULL,2020,'3','nee473',NULL,'1574325434.','1574329080.unq',NULL,NULL,'C',302,'2019-11-21 09:38:16','2019-11-21 09:38:16',NULL),(938,45,11,'Ford','Kuga','2','2000','Delphi DCM 6.2',NULL,'170',2025,'2','T28 DAB',NULL,'1574326808.','1574329053.cod',NULL,NULL,'C',577,'2019-11-21 09:37:36','2019-11-21 09:37:36',NULL),(939,100,20,'mercedes','e250','2014','2143','delphi crd3.x can',NULL,'204',2000,'3','g1rnt',NULL,'1574331089.','1574334022.cod',NULL,NULL,'C',303,'2019-11-21 11:00:27','2019-11-21 11:00:27',NULL),(940,100,20,'VW','transporter','2017','1968','delphi dcm6.2v',NULL,'102',2000,'1','LO17MWJ',NULL,'1574335828.','1574337681.cod',NULL,NULL,'C',304,'2019-11-21 12:01:25','2019-11-21 12:01:25',NULL),(941,100,20,'vw','transporter','2011','1968','edc17cp20',NULL,'84',2000,'1','h20cno',NULL,'1574336351.','1574340316.cod','DPF DELETE',NULL,'C',305,'2019-11-21 12:45:20','2019-11-21 12:45:20',NULL),(942,19,15,'skoda','octavia','2','2.0 bmn','siemens ppd',NULL,'170',2018,'2','x',NULL,'1574337748.','1574339532.cod',NULL,NULL,'C',578,'2019-11-21 12:32:13','2019-11-21 12:32:13',NULL),(943,85,20,'ford','focus','not sure','1.5','edc17c7020',NULL,'120',2025,'1','djlkdsiod',NULL,'1574339694.bin','1574346397.bin',NULL,NULL,'C',306,'2019-11-21 14:26:43','2019-11-21 14:26:43',NULL),(945,100,21,'skoda','octavia greenline','2015','1600','edc17c64 can',NULL,'110',2000,'2','bf15fdc',NULL,'1574346825.','1574348993.cod',NULL,NULL,'C',307,'2019-11-21 15:09:57','2019-11-21 15:09:57',NULL),(946,94,14,'ford','transit','6','2.2','siemens',NULL,NULL,2023,'2','sf13ulo',NULL,'1574347310.','1574350251.cod',NULL,'nothing needs unplugging','C',579,'2019-11-21 15:31:03','2019-11-21 15:31:03',NULL),(947,19,14,'vw','golf','mk6','1.6cayc','pcr2.1',NULL,NULL,2020,'1','x',NULL,'1574351378.','1574354096.cod',NULL,NULL,'C',580,'2019-11-21 16:35:18','2019-11-21 16:35:18',NULL),(948,23,15,'range rover','evoque','2','2.0td','bosch',NULL,NULL,2026,'2','pf16kwx',NULL,'1574354518.','1574357023.cod',NULL,'unplug dpf pressure and temp sensors, \r\n\r\nNothing to unplug on adblue','C',581,'2019-11-21 17:24:26','2019-11-21 17:24:26',NULL),(949,43,11,'Mercedes','E350','C207','3.0','EDC17CP10',NULL,'231',2019,'3','FL59 ZSN','82,000','1574355351.','1574357440.unq',NULL,NULL,'C',582,'2019-11-21 17:31:20','2019-11-21 17:31:20',NULL),(950,45,15,'Nissan','Quasquai','2011','1500DCI','Sid205',NULL,NULL,2021,'2','AJ61 CZG',NULL,'1574355302.','1574358947.cod',NULL,'nothing to unplug','C',583,'2019-11-21 17:55:49','2019-11-21 17:55:49',NULL),(952,102,36,'mercedes','cclass w205','ANY','2143','delphi',NULL,NULL,2025,'3','nkn572',NULL,'1574412660.','1574426093.cod','p229f62 nox sensor2 cylinderbank1 has a malfanction','ok new fie','C',308,'2019-11-22 12:35:02','2019-11-22 12:35:02',NULL),(953,102,32,'honda','crv','ANY','2.2l','bosch',NULL,NULL,2000,'3','lay829',NULL,'1574413310.','1574418503.unq','we have done dpf off before',NULL,'C',309,'2019-11-22 10:28:28','2019-11-22 10:28:28',NULL),(954,121,20,'audi','a6','2','2000','edc16+',NULL,'140',2016,'1','r55 bfj',NULL,'1574416781.0tdi-sw-1037383812-upgsw-03g906016hs-9673','1574420779.cod',NULL,NULL,'C',310,'2019-11-22 11:06:24','2019-11-22 11:06:24',NULL),(955,100,20,'ford','mondeo','2008','1753','siemens sid206',NULL,'125',2000,'1','yc58pfk',NULL,'1574440320.','1574441279.cod',NULL,NULL,'C',311,'2019-11-22 16:48:04','2019-11-22 16:48:04',NULL),(956,43,11,'Ford','Ranger','MK2','3.2','SID209',NULL,'200',2029,'3','YD19 BCH','9367','1574449715.2D 200Bhp _YD19 BCH_ Daryl Kess Read SID209','1574452565.cod','Add more throttle sensitivity',NULL,'C',584,'2019-11-22 19:56:11','2019-11-22 19:56:11',NULL),(957,43,11,'Jaguar','XJ_L','X351','3.0V6','EDC17CP11',NULL,'275',2021,'3','OY61 USX','82,304','1574456952.0V6 275Bhp _OY61 USX_ Bez Ktag Read EDC17CP11 SM','1574458952.unq','MAKE IT FAST',NULL,'C',585,'2019-11-22 21:42:35','2019-11-22 21:42:35',NULL),(958,43,11,'Iveco','Daily','70C','3.0D','EDC16C39_5.A3',NULL,'175',2021,'2','YJ61LFZ',NULL,'1574458688.A3 P140','1574460816.unq','Canning Town Boys',NULL,'C',586,'2019-11-22 22:13:41','2019-11-22 22:13:41',NULL),(959,100,20,'seat','leon','2007','1968','edc16+ u31/u34',NULL,'140',2000,'2','px07ufl',NULL,'1574593260.','1574611144.cod',NULL,NULL,'C',312,'2019-11-24 15:59:10','2019-11-24 15:59:10',NULL),(960,43,14,'Jaguar','XF','X351','3.0 V6','EDC17CP11',NULL,'241',2021,'3','AV11 DAO','111,686','1574696442.0D 241Bhp _AV11 DAO_ BEZ Ktag Read EDC17CP11 SM','1574701274.unq','P044A-16 EGR Sensor C Circuit',NULL,'C',587,'2019-11-25 17:01:17','2019-11-25 17:01:17',NULL),(961,100,33,'skoda','superb','2012','1598','simos pcr 2.1',NULL,'105',2000,'1','fy62xun',NULL,'1574697869.','1574703277.cod','DPF & EGR DELETE',NULL,'C',313,'2019-11-25 17:34:42','2019-11-25 17:34:42',NULL),(963,45,14,'VW','Caddy','2012','1600','simos pcr2.1 can',NULL,NULL,2022,'1','YX12 VNU',NULL,'1574758744.','1574760416.cod',NULL,NULL,'C',589,'2019-11-26 09:27:01','2019-11-26 09:27:01',NULL),(964,102,21,'opel','zafirab','ANY','1.9','bosch',NULL,NULL,2000,'3','nap610',NULL,'1574762715.','1574854319.cod',NULL,NULL,'C',314,'2019-11-27 11:32:06','2019-11-27 11:32:06',NULL),(966,100,20,'ford','tourneo custom','2014','2200','sid208',NULL,'125',2000,'2','bl14hvv',NULL,'1574772062.','1574775721.cod',NULL,NULL,'C',315,'2019-11-26 13:42:06','2019-11-26 13:42:06',NULL),(967,27,11,'FORD','RANGER','MK1','3.2','SIEMENS',NULL,'197',2028,'3','D3X DD',NULL,'1574772630.','1574773869.cod',NULL,NULL,'C',591,'2019-11-26 13:11:15','2019-11-26 13:11:15',NULL),(968,27,11,'VW','GOLF','MK4','1.9','BOSCH',NULL,'130',2013,'2','BK53 TWP',NULL,'1574772835.','1574775121.cod',NULL,NULL,'C',592,'2019-11-26 13:32:04','2019-11-26 13:32:04',NULL),(970,100,20,'range rover','evoque','2011','2170','edc17',NULL,'190',2000,'3','rm02kez',NULL,'1574785260.','1574786894.cod','DPF DELETE',NULL,'C',316,'2019-11-26 16:48:18','2019-11-26 16:48:18',NULL),(971,100,33,'nissan','juke','2014','1500','sid307',NULL,'110',2000,'1','vk64uxv',NULL,'1574785609.','1574869834.cod','DPF DELETE',NULL,'C',317,'2019-11-27 15:50:39','2019-11-27 15:50:39',NULL),(972,100,20,'ford','custom','2018','2000','sid211',NULL,'130',2000,'2','c4udd',NULL,'1574848844.','1574852630.cod',NULL,NULL,'C',318,'2019-11-27 11:03:55','2019-11-27 11:03:55',NULL),(973,29,14,'renault','trafic','bosch','1.6','edc 17',NULL,'115',2027,'2','ngz 9627',NULL,'1574864277.','1574867929.cod',NULL,NULL,'C',593,'2019-11-27 15:18:51','2019-11-27 15:18:51',NULL),(974,100,20,'vauxhall','insignia','2011','2000','edc17c19',NULL,'160',2000,'2','r15tdp',NULL,'1574868227.','1574869607.unq',NULL,NULL,'C',319,'2019-11-27 15:46:52','2019-11-27 15:46:52',NULL),(975,121,20,'vw','jetta','2','1900 bxe','edc16+',NULL,NULL,2017,'1','ad07 wvx',NULL,'1574870362.9tdi-sw1037382083-upgsw-03g906021kh-9245','1574871081.cod','egr delete plz.. love you long time',NULL,'C',320,'2019-11-27 16:11:25','2019-11-27 16:11:25',NULL),(976,102,21,'mazda','cx5','ANY','2191','NOT KNOWN',NULL,NULL,2026,'3','mzn344',NULL,'1574929280.','1574931888.cod',NULL,'sir here is your file have a cracking day','C',321,'2019-11-28 09:05:17','2019-11-28 09:05:17',NULL),(977,19,14,'landrover','disco3','3','2.7tdi','sid204',NULL,NULL,2017,'3','b17bme',NULL,'1574933130.','1574934140.cod',NULL,NULL,'C',594,'2019-11-28 09:42:24','2019-11-28 09:42:24',NULL),(978,76,20,'bmw','m5','2012','4400','MED17.2.8',NULL,'563',2022,'6','g13dap',NULL,'1574933924.','1574947258.cod','stRAIGHT THROUGH EXHAUST',NULL,'C',322,'2019-11-28 13:21:02','2019-11-28 13:21:02',NULL),(979,121,20,'audi','tt','2','2000','edc17',NULL,NULL,2020,'2','p15 nch',NULL,'1574939617.0tdi-verhw-03l906018dt-upgsw-03l906018dt-7766-edc17cb031500c4700','1574953742.cod','egr delete & tune plz J',NULL,'C',323,'2019-11-28 15:09:11','2019-11-28 15:09:11',NULL),(980,100,20,'ford','custom','2014','2200','sid208',NULL,'100',2000,'2','bn64ylu',NULL,'1574940263.','1574955440.cod',NULL,NULL,'C',324,'2019-11-28 15:37:24','2019-11-28 15:37:24',NULL),(981,43,11,'Ford','Transit','TT9','2.2','SID208',NULL,'125',2024,'2','YP14MKX','178,761','1574940156.2TDi _YP14 MKX_ Tootchie Kess Read SID208','1574945748.cod','DTC OFF AS 5th Injector fault codes in whatsapp pic','faults present at the time not fixed\r\nP0089 Fuel Pressure Regulator P2267 Water In Fuel P228C FPR 1 Exceeded','C',595,'2019-11-28 12:56:01','2019-11-28 12:56:01',NULL),(982,100,20,'ford','custom','2018','2000','sid211',NULL,'130',2000,'2','sk68obe',NULL,'1574945412.','1574949940.cod',NULL,NULL,'C',325,'2019-11-28 14:05:45','2019-11-28 14:05:45',NULL),(983,76,21,'VW','PASSAT','2008','2000 CR','ppd1.2',NULL,'170',2018,'2','FG08GWM',NULL,'1574947069.','1574947661.cod','dpf off egroff',NULL,'C',326,'2019-11-28 13:27:48','2019-11-28 13:27:48',NULL),(984,100,20,'ford','transit','2011','2198','visteon dcu102',NULL,'86',2000,'1','vn61uao',NULL,'1574947364.','1574949783.cod',NULL,NULL,'C',327,'2019-11-28 14:03:07','2019-11-28 14:03:07',NULL),(985,29,11,'ford','transit','connect','1.6','sid',NULL,'70',2024,'2','mx14 xvm',NULL,'1574947602.','1574950503.cod',NULL,NULL,'C',596,'2019-11-28 14:15:07','2019-11-28 14:15:07',NULL),(986,30,11,'volvo','s40','1st','1.6 dci','ed16',NULL,NULL,2015,'1','sd55nlf',NULL,'1574951009.','1574954215.cod',NULL,NULL,'C',597,'2019-11-28 15:16:59','2019-11-28 15:16:59',NULL),(987,23,15,'ford transit','custom','7','2.2','sid211',NULL,NULL,2027,'2','se17pcu',NULL,'1574951788.','1574954704.cod',NULL,NULL,'C',598,'2019-11-28 15:25:07','2019-11-28 15:25:07',NULL),(988,100,20,'ford','custom','2018','2000','sid211',NULL,'130',2000,'2','rx18gnn',NULL,'1574977199.','1576770493.cod',NULL,NULL,'C',328,'2019-12-19 15:48:16','2019-12-19 15:48:16',NULL),(989,100,20,'ford','ranger','2017','2198','sid209',NULL,'160',2000,'2','bv67ejf',NULL,'1574977289.','',NULL,'new tune more power','C',329,'2020-03-12 11:18:34','2020-03-12 11:18:34',NULL),(990,100,20,'mitsubishi','outlander','2018','2268','denso RHF4',NULL,'147',2000,'2','sa68chy',NULL,'1574977387.','1575032742.cod',NULL,NULL,'C',330,'2019-11-29 13:05:46','2019-11-29 13:05:46',NULL),(991,45,11,'Ford','Transit','Custom','2.2','SID208',NULL,NULL,2024,'2','YS14 LCL',NULL,'1575022059.','1575024471.cod',NULL,NULL,'C',599,'2019-11-29 10:47:58','2019-11-29 10:47:58',NULL),(992,45,11,'Ford','Transit Custom','BD15 KFO','2200','SID208',NULL,NULL,2025,'15','BD15 KFO',NULL,'1575023069.','1575026288.cod',NULL,NULL,'C',600,'2019-11-29 11:18:11','2019-11-29 11:18:11',NULL),(993,76,20,'mitsubishi','l200','2017','2400','denso',NULL,'178',2027,'2','cb03bos',NULL,'1575032140.','1575032591.cod',NULL,NULL,'C',331,'2019-11-29 13:03:14','2019-11-29 13:03:14',NULL),(994,100,20,'vw','golf','2010','2000','EDC17C46 CAN',NULL,'140',2000,'2','yg60ahk',NULL,'1575038835.','1575043375.cod','EGR DELETE','BOSCH EDC17_C46 (EGR Actuator plug must be disconnected)','C',332,'2019-11-29 16:02:59','2019-11-29 16:02:59',NULL),(995,100,20,'ford','custom','2016','2200','sid208',NULL,'125',2000,'2','en16aoy',NULL,'1575040053.','1575045094.cod',NULL,NULL,'C',333,'2019-11-29 16:31:40','2019-11-29 16:31:40',NULL),(996,100,20,'2019','ford','transit courier','1499','edc17c70 can',NULL,'100',2000,'2','so19ruh',NULL,'1575043483.','1575048302.cod',NULL,NULL,'C',334,'2019-11-29 17:25:51','2019-11-29 17:25:51',NULL),(997,100,20,'vw','golf','2013','1600','edc17c64 can',NULL,'105',2000,'1','as12low',NULL,'1575045002.','1575050261.cod',NULL,NULL,'C',335,'2019-11-29 17:57:45','2019-11-29 17:57:45',NULL),(998,100,20,'audi','a4','2014','2000','EDC17C46 CAN',NULL,'177',2000,'2','j90ewa',NULL,'1575045383.','1575051392.cod',NULL,NULL,'C',336,'2019-11-29 18:16:35','2019-11-29 18:16:35',NULL),(999,76,32,'CITROEN','RELAY','2013','2200','SID208',NULL,'110',2023,'2','YE62MYP',NULL,'1575052364.dat','1575053374.dat','DPF and egr off pls',NULL,'C',337,'2019-11-29 18:49:47','2019-11-29 18:49:47',NULL),(1000,74,20,'FORD','transit','MK7','2.2','SID208',NULL,NULL,2023,'2','yt08tre',NULL,'1575058831.','1575060818.cod','dpf and egr and power tune',NULL,'C',338,'2019-11-29 20:53:45','2019-11-29 20:53:45',NULL),(1001,76,32,'mERCEDES','SPRINTER','2016','2143','CRD3 CMD',NULL,'130',2026,'2','PN65DYY',NULL,'1575118891.dat','1575120532.dat','SWIRL FLAP OFF EGR OFF',NULL,'C',339,'2019-11-30 13:29:06','2019-11-30 13:29:06',NULL),(1002,100,20,'vauxhall','insignia','2013','1956','edc17c59',NULL,'140',2000,'2','ll63ljz',NULL,'1575131237.','1575133122.unq',NULL,NULL,'C',340,'2019-11-30 16:58:45','2019-11-30 16:58:45',NULL),(1003,19,14,'landrover','freelander','2nd','2.2','edc17cp42',NULL,NULL,2023,'3','ov63yhp',NULL,'1575277402.','1575278968.unq','p006a-00 manifold pressure or mass air flow correlation',NULL,'C',601,'2019-12-02 09:29:30','2019-12-02 09:29:30',NULL),(1004,100,20,'mercedes','c200','2011','2143','delphi crd3.x can',NULL,'136',2000,'3','sl61olj',NULL,'1575290654.','1575295329.cod',NULL,NULL,'C',341,'2019-12-02 14:02:13','2019-12-02 14:02:13',NULL),(1005,29,14,'vauxhall','vivaro','3','1.6','edc 1742',NULL,'115',2025,'2','fl16 hrx',NULL,'1575297935.','1575299583.cod',NULL,NULL,'C',602,'2019-12-02 15:13:07','2019-12-02 15:13:07',NULL),(1006,102,21,'ISUZU','nqr','ANY','5.2','NOT KNOWN',NULL,NULL,2018,'1','mnh406',NULL,'1575353778.','1575366175.cod','dpf egr delete fault codes: p0409 egr valve/ p2456 particulate filter diff pressure sensor/ p0401 egr amount insufficient/ p1404 egr valve position valve stuck',NULL,'C',342,'2019-12-03 09:43:02','2019-12-03 09:43:02',NULL),(1007,45,15,'VW','Crafter','VA57 RCV','2.5 TDI','EDC16',NULL,NULL,2017,'2','VA57 RCV',NULL,'1575364455.','1575368912.unq',NULL,NULL,'C',603,'2019-12-03 10:28:34','2019-12-03 10:28:34',NULL),(1008,35,15,'vw','polo','6','1.6','pcr 2.1',NULL,NULL,2000,'1','pf10cjz',NULL,'1575367538.6tdi','1575370560.cod',NULL,NULL,'C',604,'2019-12-03 10:56:59','2019-12-03 10:56:59',NULL),(1009,102,21,'mercedes','e class','ANY','2143','delphi',NULL,NULL,2019,'3','kxz289',NULL,'1575367549.','1575368499.cod',NULL,NULL,'C',343,'2019-12-03 10:21:42','2019-12-03 10:21:42',NULL),(1010,102,21,'toyota','rave4','ANY','2l','NOT KNOWN',NULL,NULL,2024,'1','nbb413',NULL,'1575369165.txt','1575370509.cod','id read',NULL,'C',344,'2019-12-03 10:55:12','2019-12-03 10:55:12',NULL),(1011,100,20,'skoda','octava vrs','2008','2000','siemens ppd1.2',NULL,'170',2000,'2','px08sxr',NULL,'1575370187.','1575372061.cod','DPF & EGR DELETE',NULL,'C',345,'2019-12-03 11:21:08','2019-12-03 11:21:08',NULL),(1012,100,20,'vw','transporter','2008','1900','edc16+ u31/u34',NULL,'102',2000,'1','r14ysn / yh58xwc',NULL,'1575380268.','1575383009.cod',NULL,NULL,'C',346,'2019-12-03 14:23:33','2019-12-03 14:23:33',NULL),(1013,76,21,'FORD','RANGER','2015','2200','SID208',NULL,NULL,2000,'2','NU15JZV',NULL,'1575381684.','1575382421.cod','DPF and egr off pls- STINKS OF SHIT',NULL,'C',347,'2019-12-03 14:13:46','2019-12-03 14:13:46',NULL),(1014,121,32,'citroen','ds3','2','1600','edc17c10',NULL,NULL,2022,'1','y30rke',NULL,'1575393680.6e-hdi-hw-9666077280-sw-9666729580-upgsw-9678896180','1575396179.unq',NULL,NULL,'C',348,'2019-12-03 18:03:03','2019-12-03 18:03:03',NULL),(1015,76,36,'skoda','octavia','2013','2000','edc17',NULL,NULL,2024,'2','hg63',NULL,'1575453763.',NULL,'dtc off',NULL,'C',349,'2019-12-04 13:35:08','2019-12-04 13:35:08',NULL),(1016,76,20,'ford','transit','custom','2200','sid208',NULL,'100',2024,'2','yr64tyx',NULL,'1575453976.','1575457894.cod','speed limiter offas well pls',NULL,'C',350,'2019-12-04 11:11:38','2019-12-04 11:11:38',NULL),(1017,100,20,'bmw','x5','2006','2993','edc16c31',NULL,'218',2000,'3','pn56wmy',NULL,'1575461674.','1575465882.cod',NULL,NULL,'C',351,'2019-12-04 13:24:45','2019-12-04 13:24:45',NULL),(1018,100,20,'mercedes','sprinter','2008','2148','edc16cp31',NULL,'109',2000,'2','j30cfc',NULL,'1575464434.','1575466211.cod',NULL,NULL,'C',352,'2019-12-04 13:34:34','2019-12-04 13:34:34',NULL),(1019,45,11,'VW','Passat','W10 ACH','2000 BMR','PPD',NULL,'170',2018,'2','W10 ACH',NULL,'1575537256.','1575541856.cod',NULL,NULL,'C',605,'2019-12-05 10:30:59','2019-12-05 10:30:59',NULL),(1020,76,20,'Volkswagen','polo','2011','1200','dcm3.7',NULL,'55',2021,'1','pe61ezx',NULL,'1575539950.','1575540855.cod','and egr off pls',NULL,'C',353,'2019-12-05 10:14:38','2019-12-05 10:14:38',NULL),(1021,100,20,'audi','a3 quattro','2009','1968','edc17cp14',NULL,'170',2000,'2','sy09rfl',NULL,'1575540598.','1575543741.cod','DPF DELETE',NULL,'C',354,'2019-12-05 11:02:24','2019-12-05 11:02:24',NULL),(1022,76,32,'landrover','rr sport','2007','3600','SIEMENS NNN',NULL,'270',2017,'3','DEC7D',NULL,'1575543189.','1575544211.cod','ALREADY TUNED IMPROVE IF POSS OR LEAVE',NULL,'C',355,'2019-12-05 11:10:21','2019-12-05 11:10:21',NULL),(1023,100,20,'vw','golf gttdi','2009','2000','edc17cp14',NULL,'140',2000,'2','sk58sxs',NULL,'1575546321.','1575548358.cod','EGR DELETE',NULL,'C',356,'2019-12-05 12:19:22','2019-12-05 12:19:22',NULL),(1024,100,33,'land rover','discovery td5','2004','2495','rover mems3',NULL,'138',2000,'1','pj04txl',NULL,'1575552268.','1575555989.cod',NULL,NULL,'C',357,'2019-12-05 14:26:36','2019-12-05 14:26:36',NULL),(1025,76,21,'FORD','CUSTOM','2014','2200`','SID208',NULL,NULL,2000,'2','ET14BVR',NULL,'1575560395.','1575561086.cod',NULL,NULL,'C',358,'2019-12-05 15:51:31','2019-12-05 15:51:31',NULL),(1026,100,33,'saab','93','2007','1900','e',NULL,'150',2000,'2','px07ynw',NULL,'1575562364.txt','1575562394.cod',NULL,NULL,'C',359,'2019-12-05 16:13:40','2019-12-05 16:13:40',NULL),(1027,100,32,'audi','a3','2012','1968','edc17c46',NULL,'140',2000,'2','k800tyo',NULL,'1575563245.','1575563683.cod',NULL,NULL,'C',360,'2019-12-05 16:34:53','2019-12-05 16:34:53',NULL),(1028,121,20,'mitsubishi','outlander','2','2000','edc16',NULL,NULL,2018,'2','nd08 vuv',NULL,'1575626636.0did-sw-1037390125-upgsw-1037390125','1575629333.cod',NULL,NULL,'C',361,'2019-12-06 10:48:59','2019-12-06 10:48:59',NULL),(1029,30,11,'vw','golf gtd','2013','2.0 tdi','EDC17C64',NULL,NULL,2023,'2','DN63XBO',NULL,'1575632142.','1575633949.cod',NULL,NULL,'C',606,'2019-12-06 12:05:52','2019-12-06 12:05:52',NULL),(1030,100,20,'vw','transporter','2011','1968','edc17cp20',NULL,'84',2000,'1','h20cno',NULL,'1575636774.','1575638025.cod','DPF & EGR DELETE','BOSCH EDC17_CP20 (EGR Actuator plug must be disconnected)','C',362,'2019-12-06 13:14:02','2019-12-06 13:14:02',NULL),(1031,100,20,'bmw','320d','2014','1995','edc17c50',NULL,'184',2000,'2','m21veg',NULL,'1575639499.','1575644808.cod',NULL,NULL,'C',363,'2019-12-06 15:06:53','2019-12-06 15:06:53',NULL),(1032,100,20,'audi','a3','2008','1968','edc16u34',NULL,'140',2000,'2','x20prk',NULL,'1575651208.','1575654452.cod',NULL,NULL,'C',364,'2019-12-06 17:47:34','2019-12-06 17:47:34',NULL),(1033,43,11,'BMW','116D','F21','2.0','EDC17C50',NULL,'116',2023,'2','YF63 HJK','38,402','1575658571.','1575659285.cod','Make it fast (Says Rated for 190Bhp)',NULL,'C',607,'2019-12-06 19:08:08','2019-12-06 19:08:08',NULL),(1034,43,11,'Skoda','Superb','MK3','CRLB','EDC17C74',NULL,'150',2026,'5','FP66 TXA','26,661','1575713087.0TDi 150Bhp CRLB _FP66 TXA_ Florian Kess VR File EDC17C74 VAG BOSCH','1575715328.cod',NULL,NULL,'C',608,'2019-12-07 10:42:11','2019-12-07 10:42:11',NULL),(1035,45,11,'Mercedes','A220','GY14 UVS','2100','CRD3',NULL,NULL,2024,'2','GY14 UVS',NULL,'1575714663.','1575716055.cod',NULL,NULL,'C',609,'2019-12-07 10:54:45','2019-12-07 10:54:45',NULL),(1036,27,11,'BMW','325D','E90/91','2.5','bosch',NULL,'197',2019,'2','SP59UAW',NULL,'1575720297.','1575723454.cod',NULL,NULL,'C',610,'2019-12-07 12:57:38','2019-12-07 12:57:38',NULL),(1037,100,20,'ford','fiesta','2014','1596','med17.0.1',NULL,'182',2000,'2','ml14fxz',NULL,'1575720598.','1579000763.cod',NULL,NULL,'C',365,'2020-01-14 11:19:29','2020-01-14 11:19:29',NULL),(1038,19,15,'fiat','ducato','3rd','2.3mjet','mjd8',NULL,'130',2024,'2','x',NULL,'1575882307.','1575883617.cod',NULL,NULL,'C',611,'2019-12-09 09:32:58','2019-12-09 09:32:58',NULL),(1039,100,20,'ford','transit tipper rwd','2014','2198','sid208',NULL,'100',2000,'2','nj14jxu',NULL,'1575885826.','1575889030.cod','limiter removal',NULL,'C',366,'2019-12-09 10:57:16','2019-12-09 10:57:16',NULL),(1040,100,20,'vw','crafter','2016','1968','edc17c54',NULL,'109',2000,'2','bj66lru',NULL,'1575886691.','1575889419.cod',NULL,NULL,'C',367,'2019-12-09 11:03:48','2019-12-09 11:03:48',NULL),(1041,19,14,'seat','leon','2nd','cayc','pcr2.1',NULL,NULL,2023,'1','x',NULL,'1575892258.6obd','1575894115.cod',NULL,NULL,'C',612,'2019-12-09 12:21:58','2019-12-09 12:21:58',NULL),(1042,121,20,'vw','passat','x','1900','edc15',NULL,'130',2013,'2','py53fco','134000','1575899280.9tdi-130bhp-hw-0281011205-sw-1037366501-upgsw-038906019kd-4897','1575900055.cod','love you long time',NULL,'C',368,'2019-12-09 14:01:03','2019-12-09 14:01:03',NULL),(1043,100,20,'vw','golf','2012','1600','simos pcr 2.1',NULL,'105',2000,'1','ys61lwx',NULL,'1575911688.','1575912338.cod',NULL,NULL,'C',369,'2019-12-09 17:25:44','2019-12-09 17:25:44',NULL),(1044,102,20,'BMW','X3','ANY','2l','bosch',NULL,NULL,2017,'2','KQF885',NULL,'1575967313.','1575972746.cod','TUNING/ DTC OFF: 4501 EGR/4166 PARTICULATE SYSTEM /447B OXYEN SENSOR',NULL,'C',370,'2019-12-10 10:12:35','2019-12-10 10:12:35',NULL),(1045,121,21,'vauxhall','insignia','2','2000','edc17',NULL,NULL,2019,'2','t50 ptr',NULL,'1575977958.0cdti-sw-1037529584-upgsw-p564-ob8-tune','1575979794.unq','DPF & EGR please J',NULL,'C',371,'2019-12-10 12:09:58','2019-12-10 12:09:58',NULL),(1046,19,14,'toyota','corolla verso','1','2adftd','denso',NULL,NULL,2017,'1','ya07xwn',NULL,'1575981329.txt','1575988908.cod','p0400 fault',NULL,'C',613,'2019-12-10 14:41:51','2019-12-10 14:41:51',NULL),(1047,100,20,'vw','golf','2007','1968','edc16u34',NULL,'140',2000,'2','lr57jxc',NULL,'1575982325.','1575987205.cod',NULL,NULL,'C',372,'2019-12-10 14:13:31','2019-12-10 14:13:31',NULL),(1048,102,21,'isuzu','DMAX','anything','2499','TRANSTRON',NULL,NULL,2023,'2','nmb699',NULL,'1575986020.','1575988017.cod',NULL,NULL,'C',373,'2019-12-10 14:26:59','2019-12-10 14:26:59',NULL),(1049,102,21,'mercedes','SPRINTER','anything','2143','delphi',NULL,NULL,2023,'1','sf64cju',NULL,'1576055061.','1576058020.cod',NULL,NULL,'C',374,'2019-12-11 09:53:46','2019-12-11 09:53:46',NULL),(1050,19,15,'merc','sprinter','906','2.1','edc16',NULL,'110',2019,'2','yd09atv',NULL,'1576063278.','1576065291.cod',NULL,NULL,'C',614,'2019-12-11 11:54:54','2019-12-11 11:54:54',NULL),(1051,28,14,'land rover','discovery','3','2.7','eu4',NULL,NULL,2000,'1','du10',NULL,'1576082381.','1576086402.cod',NULL,NULL,'C',615,'2019-12-11 17:46:46','2019-12-11 17:46:46',NULL),(1052,100,20,'ford','custom','2019','1995','sid211',NULL,'130',2000,'2','kf68knr',NULL,'1576088780.','1576095319.cod',NULL,NULL,'C',375,'2019-12-11 20:15:23','2019-12-11 20:15:23',NULL),(1053,100,20,'ford','custom','2018','1995','sid211',NULL,'130',2000,'2','hy68ubp',NULL,'1576088865.','1576093883.cod',NULL,NULL,'C',376,'2019-12-11 19:51:28','2019-12-11 19:51:28',NULL),(1054,100,20,'ford','transit','2016','2200','sid209',NULL,'125',2000,'2','m10lgs',NULL,'1576159230.','1576162583.cod',NULL,NULL,'C',377,'2019-12-12 14:56:29','2019-12-12 14:56:29',NULL),(1056,43,11,'Jaguar','XF','X351','3.0 V6D','EDC17CP11',NULL,'241',2021,'3','JP06HYP',NULL,'1576234556.0D V6 241Bhp _JP06 HYP_ Lee Ktag Read SM EDC17CP11','1576237024.unq',NULL,'unplug sensors','C',616,'2019-12-13 12:29:51','2019-12-13 12:29:51',NULL),(1057,43,11,'Ford','Transit','TTF','2.2','SID208',NULL,'100',2024,'2','YS64 HGY','80,244','1576319823.2 1Bhp _YS64 HGY_ Zack Kess Read SID208','1576322963.cod','P042E:00-AE P2463',NULL,'C',617,'2019-12-14 11:29:35','2019-12-14 11:29:35',NULL),(1058,100,20,'ford','custom','2015','2198','sid209',NULL,'125',2000,'2','lj65xez',NULL,'1576322646.','1576324399.cod','speed limiter removal',NULL,'C',378,'2019-12-14 11:53:24','2019-12-14 11:53:24',NULL),(1059,100,20,'ford','transit','2005','1998','delphi mpc555',NULL,'86',2000,'1','pv55cxn',NULL,'1576495969.','1576502701.cod',NULL,NULL,'C',379,'2019-12-16 13:25:07','2019-12-16 13:25:07',NULL),(1060,19,11,'vaux','vivaro','2nd','2.0cdti m9r','edc16',NULL,'90',2021,'2','fe11wpu',NULL,'1576496499.','1576497866.cod',NULL,'modded before. Corrected','C',618,'2019-12-16 12:04:41','2019-12-16 12:04:41',NULL),(1061,100,20,'vw','golf','2005','1896','edc16u1',NULL,'105',2000,'1','yb55xpt',NULL,'1576498076.','1576511253.cod',NULL,NULL,'C',380,'2019-12-16 15:47:36','2019-12-16 15:47:36',NULL),(1062,100,33,'skoda','octavia','2008','1896','edc16+ u31/u34',NULL,'105',2000,'4','ak58eew',NULL,'1576501174.','1576504092.cod',NULL,NULL,'C',381,'2019-12-16 13:48:18','2019-12-16 13:48:18',NULL),(1063,19,15,'ford','custom','1','2.2tdci','sid208',NULL,NULL,2024,'2','x',NULL,'1576502872.','1576504419.cod',NULL,NULL,'C',619,'2019-12-16 13:53:43','2019-12-16 13:53:43',NULL),(1064,19,14,'subaru','forester','3','2.0','denso sh705x',NULL,NULL,2020,'2','yt60nxb',NULL,'1576507731.','1576508946.cod',NULL,'UNPLUG ACTUATOR','C',620,'2019-12-16 15:09:12','2019-12-16 15:09:12',NULL),(1065,30,11,'audi','a4','2009','2.0 tdi','EDC17CP14',NULL,'170',2019,'2','R14BBW',NULL,'1576512305.','1576513712.cod',NULL,NULL,'C',621,'2019-12-16 16:29:11','2019-12-16 16:29:11',NULL),(1066,102,21,'scoda','superb','ANY','2l','bosch',NULL,NULL,2020,'3','mkb420',NULL,'1576568906.','1576572701.cod','dpf off / tuning',NULL,'C',382,'2019-12-17 08:51:51','2019-12-17 08:51:51',NULL),(1067,76,20,'BMW','316','f30','2000','dme dde701a',NULL,'115',2024,'3','yd64sye',NULL,'1576575253.','1576577722.cod','not silly old man',NULL,'C',383,'2019-12-17 10:15:33','2019-12-17 10:15:33',NULL),(1068,100,33,'mercedes','sprinter','2014','2143','delphi crd3.x can',NULL,'129',2000,'2','ll64lhp',NULL,'1576575645.','1576578594.cod','DPF DELETE',NULL,'C',384,'2019-12-17 10:29:58','2019-12-17 10:29:58',NULL),(1069,19,14,'vw','golk','6','cayc','pcr2.1',NULL,NULL,2022,'1','yp62fvc',NULL,'1576578836.','1576581456.cod',NULL,NULL,'C',622,'2019-12-17 11:17:38','2019-12-17 11:17:38',NULL),(1070,45,34,'BMW','2 series','F45','2000','MG1S201',NULL,'190',2028,'3','FP68 CLO',NULL,'1576581419.','1576582885.unq',NULL,NULL,'C',623,'2019-12-17 11:41:28','2019-12-17 11:41:28',NULL),(1071,76,20,'ford','custom','2017','2000','sid209',NULL,'125',2000,'2','vx16haz',NULL,'1576592867.','1576594677.cod','good not silly tune pls','TEST THAT','C',385,'2019-12-17 14:58:14','2019-12-17 14:58:14',NULL),(1072,76,20,'JaguAR','X TYPE','2005','2000','MPC555 DENSO',NULL,'130',2000,'1','LW05DDX',NULL,'1576596024.','1576597843.cod',NULL,NULL,'C',386,'2019-12-17 15:50:49','2019-12-17 15:50:49',NULL),(1073,100,32,'bmw','x5','2010','2993','edc16cp35',NULL,'235',2000,'3','r15mpj',NULL,'1576600382.','1576601724.cod',NULL,NULL,'C',387,'2019-12-17 16:55:30','2019-12-17 16:55:30',NULL),(1074,100,20,'volvo','s40','2009','2000','SID206',NULL,'136',2000,'2','rj58twn',NULL,'1576618452.','1576678662.cod','DPF DELETE',NULL,'C',388,'2019-12-18 14:17:49','2019-12-18 14:17:49',NULL),(1075,102,21,'citroen','BERLINGO','anything','1.6','bosch',NULL,NULL,2024,'1','nht766',NULL,'1576658025.txt','1576662259.cod','id read\\',NULL,'C',389,'2019-12-18 09:44:29','2019-12-18 09:44:29',NULL),(1076,43,11,'Peugeot','407','D2','2.0HDi','SID803A',NULL,'136',2016,'3','EN55NCJ','146,000','1576682812.0HDi 136Bhp _EN55 NCJ_ Jay Kess Read File SID803A','1576688186.unq',NULL,NULL,'C',624,'2019-12-18 16:56:30','2019-12-18 16:56:30',NULL),(1077,100,20,'audi','a3 tfsi','2009','1798','med17.5',NULL,'160',2000,'2','l66jsn',NULL,'1576696932.','1576762669.cod',NULL,NULL,'C',390,'2019-12-19 13:37:56','2019-12-19 13:37:56',NULL),(1078,19,11,'skoda','octavia vrs','3','2.0tdi cuna','edc17c74',NULL,NULL,2026,'6','pl16xlm',NULL,'1576753766.txt','1576755284.cod',NULL,NULL,'C',625,'2019-12-19 11:34:48','2019-12-19 11:34:48',NULL),(1079,45,11,'VW','Scirocco','P23 KER','1.4TSI','MED 17.5.5',NULL,NULL,2022,'4','P23 KER',NULL,'1576761481.','1576763801.cod',NULL,NULL,'C',626,'2019-12-19 13:56:42','2019-12-19 13:56:42',NULL),(1080,102,20,'vw','GOLF7','anything','1984','NOT KNOWN',NULL,NULL,2027,'3','nma573',NULL,'1576827254.','1576836133.cod',NULL,NULL,'C',391,'2019-12-20 10:02:18','2019-12-20 10:02:18',NULL),(1081,102,21,'mercedes','e class w207','anything','2l','delphi',NULL,NULL,2022,'3','nnn 889',NULL,'1576833978.','1576836999.cod',NULL,NULL,'C',392,'2019-12-20 10:16:48','2019-12-20 10:16:48',NULL),(1082,19,11,'landrover','defender','1','2.2tdci','sid208',NULL,'122',2023,'2','db10hmb',NULL,'1576838247.','1576840851.cod',NULL,NULL,'C',627,'2019-12-20 11:20:56','2019-12-20 11:20:56',NULL),(1083,19,11,'vw','golf','6','2.0 cffb','edc17c46',NULL,'140',2022,'4','x',NULL,'1576839151.txt','1576841727.cod',NULL,NULL,'C',628,'2019-12-20 11:35:29','2019-12-20 11:35:29',NULL),(1084,43,11,'Vauxhall','Insignia','MK2','2.0CDTi','EDC17C59',NULL,'163',2024,'3','WP64DLE','87,124','1576845505.0CDTi 163Bhp _WP64 DLE_ Phil Ktag SM EDC17C59','1576848616.unq',NULL,NULL,'C',629,'2019-12-20 13:30:17','2019-12-20 13:30:17',NULL),(1085,100,20,'ford','fiesta','2009','1400','SID206',NULL,'68',2000,'1','sj09gjx',NULL,'1576852314.','1576854079.cod',NULL,NULL,'C',393,'2019-12-20 15:01:22','2019-12-20 15:01:22',NULL),(1086,19,11,'vauxhal','afira','b','1.7 a17dtj','denso dece01',NULL,NULL,2021,'2','x',NULL,'1576853313.','1576855155.cod',NULL,NULL,'C',630,'2019-12-20 15:19:16','2019-12-20 15:19:16',NULL),(1087,30,11,'mefcedes','GLE250','2018','2.0D','EDC17CP60',NULL,'201',2028,'3','SK52ELY',NULL,'1576925037.','1576928906.cod',NULL,NULL,'C',631,'2019-12-21 11:48:54','2019-12-21 11:48:54',NULL),(1089,43,11,'Ford','Transit','MK7','2.0','SID211',NULL,'130',2027,'2','FX11YJJ',NULL,'1576938906.0 130Bhp _FX17 YJJ_ Ronnie Kess Read SID211','1576940557.cod',NULL,NULL,'C',632,'2019-12-21 15:02:42','2019-12-21 15:02:42',NULL),(1090,27,11,'AUDI','A5','MK2','2.0','BOSCH EDC17',NULL,'150',2025,'2','HG15SXD',NULL,'1577093413.','1577094557.cod',NULL,NULL,'C',633,'2019-12-23 09:49:23','2019-12-23 09:49:23',NULL),(1091,76,32,'isuzu','dmax','2014','2500','transtron',NULL,'163',2024,'2','bu63vcx',NULL,'1577094771.','1577095331.cod',NULL,NULL,'C',394,'2019-12-23 10:02:55','2019-12-23 10:02:55',NULL),(1092,102,21,'bmw','5series','anything','2l','bosch',NULL,NULL,2016,'3','kvv027',NULL,'1577098058.','1577099875.cod',NULL,NULL,'C',395,'2019-12-23 11:18:00','2019-12-23 11:18:00',NULL),(1093,100,20,'audi','a4','2006','2000','ppd1.xx',NULL,'170',2000,'2','sk56hbx',NULL,'1577107745.','1577108570.cod',NULL,NULL,'C',396,'2019-12-23 13:42:57','2019-12-23 13:42:57',NULL),(1094,30,11,'volkswagen','golf','2014','1.6 tdi','EDC17C64',NULL,'103',2024,'1','J12HGN',NULL,'1577109524.6 TDI _ORIGINAL FILE_ ryan toye','1577112238.cod',NULL,NULL,'C',634,'2019-12-23 14:44:04','2019-12-23 14:44:04',NULL),(1095,100,21,'ford','transit','2015','2200','SID209',NULL,'100',2000,'2','YG15UPW',NULL,'1577115976.','1577116732.cod',NULL,NULL,'C',397,'2019-12-23 15:58:55','2019-12-23 15:58:55',NULL),(1096,43,11,'VW','Polo','6R','1.2TDi CFWA','DCM3.7',NULL,'75',2021,'1','R1 NXR','96,119','1577450143.7','1577453060.cod','P245800-P246300-P245200-P245600-P45300','egr must be unplugged. dpf sensors can be unplugged but not essential','C',635,'2019-12-27 13:24:26','2019-12-27 13:24:26',NULL),(1097,100,20,'ford','focus st2 tdci','2015','2000','delphi dcm6.1',NULL,'185',2000,'2','s22lae',NULL,'1577454366.','1577456212.cod',NULL,NULL,'C',398,'2019-12-27 14:26:46','2019-12-27 14:26:46',NULL),(1098,100,20,'vw','golf gti','2006','2000','bosch med9.1',NULL,'200',2000,'2','y99jjj',NULL,'1577457229.','1577459174.cod',NULL,NULL,'C',399,'2019-12-27 15:06:20','2019-12-27 15:06:20',NULL),(1099,43,11,'Rnage Rover','Sport','L322','3.6 TDV8','SID201',NULL,'272',2018,'3','N3 BBv','72,172','1577459336.6 TDV8 _N3 BBV_ Mark Kess Read','1577462560.cod',NULL,NULL,'C',636,'2019-12-27 16:02:43','2019-12-27 16:02:43',NULL),(1100,100,20,'land rover','evoque','2013','2200','edc17cp42',NULL,'190',2000,'2','p8nlm',NULL,'1577467229.','1577471146.cod',NULL,NULL,'C',400,'2019-12-27 18:25:51','2019-12-27 18:25:51',NULL),(1101,100,20,'bmw','320d','2012','2000','edc17c41',NULL,'184',2000,'2','sy62nzx',NULL,'1577538100.','1577541365.cod',NULL,NULL,'C',401,'2019-12-28 13:56:09','2019-12-28 13:56:09',NULL),(1102,43,11,'Mercedes','A200D','W176','2.1','CRD3.X',NULL,'136',2025,'2','YD65CXC','44,498','1577701604.X','1577704048.cod',NULL,NULL,'C',637,'2019-12-30 11:07:36','2019-12-30 11:07:36',NULL),(1103,102,21,'vw','touareg','anything','3l','bosch',NULL,NULL,2018,'3','kua780',NULL,'1577947624.','1577956158.cod','p242f diesel part filter/ p2002 diesel part filter',NULL,'C',402,'2020-01-02 09:09:24','2020-01-02 09:09:24',NULL),(1104,19,14,'landrover','freelander','2nd','2.2','edc16',NULL,'161',2019,'3','l900stl',NULL,'1577954343.','1577959283.cod',NULL,NULL,'C',638,'2020-01-02 10:01:34','2020-01-02 10:01:34',NULL),(1105,45,11,'Audi','A8 (D4)','RE15 LYA','3000','EDC17 CP44',NULL,'255',2025,'3','RE15 LYA',NULL,'1577962255.','1577965453.unq',NULL,NULL,'C',639,'2020-01-02 11:44:27','2020-01-02 11:44:27',NULL),(1106,43,11,'VW','Amarok','MK1','CDCA','EDC17CP20',NULL,'163',2022,'2','J90 WOL','61,825','1577978924.','1577982090.cod',NULL,NULL,'C',640,'2020-01-02 16:21:32','2020-01-02 16:21:32',NULL),(1107,19,11,'vw','crafter','1','cktb','edc17c54',NULL,'109',2024,'2','dk64ubg',NULL,'1577979285.txt','1577981021.cod',NULL,NULL,'C',641,'2020-01-02 16:03:44','2020-01-02 16:03:44',NULL),(1108,102,21,'hyunfai','santafe','anything','2.2l','bosch',NULL,NULL,2017,'3','krh061',NULL,'1578042163.','1578055679.unq',NULL,NULL,'C',403,'2020-01-03 12:48:04','2020-01-03 12:48:04',NULL),(1109,102,20,'vw','GOLF7','anything','2l','bosch',NULL,NULL,2023,'2','b16fnl',NULL,'1578047257.','1578053049.cod',NULL,NULL,'C',404,'2020-01-03 12:04:13','2020-01-03 12:04:13',NULL),(1111,74,20,'FORD','transit','MK7','2.2','SID208',NULL,NULL,2023,'2','J400 SRP',NULL,'1578224761.','1578227641.cod','EGR & DPF OFF PLS & TUNE (2013 ECU)',NULL,'C',405,'2020-01-05 12:34:04','2020-01-05 12:34:04',NULL),(1112,74,20,'FORD','TRANSIT','MK7','2.2','SID208',NULL,NULL,2000,'2','NA63 XDT',NULL,'1578233699.','1578235970.cod','DPF OFF EGR OFF TUNE PLS','ok there was no driver for tune but i found one that looks good','C',406,'2020-01-05 14:53:32','2020-01-05 14:53:32',NULL),(1113,19,14,'audi','a4','2','2.0 bre','edc16u31/34',NULL,'140',2017,'3','kv57nke',NULL,'1578305127.','1578305961.cod',NULL,NULL,'C',642,'2020-01-06 10:19:24','2020-01-06 10:19:24',NULL),(1114,19,14,'landrover','freelander','2nd','2.2','edc16',NULL,NULL,2018,'3','l222',NULL,'1578305263.','1578307046.cod','p0234-00 turbo overboost condition',NULL,'C',643,'2020-01-06 10:37:32','2020-01-06 10:37:32',NULL),(1115,45,11,'Toyota','Avensis','T250 (GN08 DZZ)','2.2','Denso',NULL,'175',2018,'2','GN08 DZZ',NULL,'1578305858.','1578308595.cod',NULL,NULL,'C',644,'2020-01-06 11:03:19','2020-01-06 11:03:19',NULL),(1116,70,11,'fdfb','dfbdfb','dfbd','fbdf','fbdfb',NULL,NULL,2000,'1','rgerge',NULL,'1578310839.exe','1578310954.txt',NULL,NULL,'C',645,'2020-01-06 11:42:37','2020-01-06 11:42:37',NULL),(1117,100,20,'ford','custom','2018','1995','sid211',NULL,'130',2000,'2','sn68uhr',NULL,'1578313551.','1587209861.cod',NULL,'FIXED','C',407,'2020-04-18 11:37:49','2020-04-18 10:37:49',NULL),(1118,43,11,'BMW','2 Series 220D','F23','2.0D','EDC17C50',NULL,'190',2025,'3','YE65GRX','29,765','1578323307.','1578324209.cod',NULL,NULL,'C',646,'2020-01-06 15:23:32','2020-01-06 15:23:32',NULL),(1119,100,21,'ford','galaxy','2012','1997','dcm3.5can',NULL,'138',2000,'2','hy12ztr',NULL,'1578323649.','1578324272.cod',NULL,NULL,'C',408,'2020-01-06 15:24:35','2020-01-06 15:24:35',NULL),(1120,100,21,'ford','galaxy','2013','1997','dcm3.5can',NULL,'138',2000,'2','wp13env',NULL,'1578324699.','1578325195.cod',NULL,NULL,'C',409,'2020-01-06 15:40:02','2020-01-06 15:40:02',NULL),(1121,100,21,'ford','galaxy','2012','1997','dcm3.5can',NULL,'138',2000,'2','ce12kvp',NULL,'1578325620.','1578326059.cod',NULL,NULL,'C',410,'2020-01-06 16:02:39','2020-01-06 16:02:39',NULL),(1122,100,21,'ford','galaxy','2012','1997','dcm3.5can',NULL,'138',2000,'2','nl12gvc',NULL,'1578326360.','1578326722.cod',NULL,NULL,'C',411,'2020-01-06 16:12:18','2020-01-06 16:12:18',NULL),(1123,27,11,'VAUXHALL','ASTRA','J','1.4','DELCO',NULL,'120',2024,'2','GX64HWZ',NULL,'1578399228.','1578399671.cod',NULL,NULL,'C',647,'2020-01-07 12:21:14','2020-01-07 12:21:14',NULL),(1124,100,20,'vauxhall','insignia','2014','1956','edc17c59',NULL,'163',2000,'2','vx64zhp',NULL,'1578399638.','1578403692.unq',NULL,NULL,'C',412,'2020-01-07 13:28:17','2020-01-07 13:28:17',NULL),(1125,100,20,'vauxhall','astra','2005','1910','edc16c9',NULL,'120',2000,'2','vo05vzh',NULL,'1578406994.txt','1578407130.cod',NULL,NULL,'C',413,'2020-01-07 14:25:36','2020-01-07 14:25:36',NULL),(1127,19,11,'vw','golf','5','1.9pd','edc16u31',NULL,'105',2019,'1','am58kwv',NULL,'1578473030.','1578478228.cod',NULL,NULL,'C',648,'2020-01-08 10:10:29','2020-01-08 10:10:29',NULL),(1128,43,11,'Audi','TTRS','8J£','2.5TFSi','MED9.1.2',NULL,'360',2023,'6','LC13KOD',NULL,'1578493606.2','1578498794.unq',NULL,NULL,'C',649,'2020-01-08 15:53:17','2020-01-08 15:53:17',NULL),(1129,19,14,'skoda','octavia','2','cayc 1.6tdi','pcr2.1',NULL,NULL,2021,'1','vw11xxl',NULL,'1578559481.','1578560888.cod',NULL,NULL,'C',650,'2020-01-09 09:08:12','2020-01-09 09:08:12',NULL),(1130,100,20,'bmw','520d','2008','1995','edc17cp02',NULL,'177',2000,'2','pk58ozw',NULL,'1578565205.','1578569784.cod','DPF DELETE',NULL,'C',415,'2020-01-09 11:36:31','2020-01-09 11:36:31',NULL),(1131,102,36,'bmw','5series','anything','2l','NOT KNOWN',NULL,NULL,2020,'3','cp10ylx',NULL,'1578572479.','1578580579.cod','dtc: check whats up please','V2','C',416,'2020-01-09 14:36:27','2020-01-09 14:36:27',NULL),(1132,100,20,'ford','fiesta','20012','1560','edc17c10',NULL,'95',2000,'1','px12spu',NULL,'1578577535.','1578579144.cod',NULL,NULL,'C',417,'2020-01-09 14:12:29','2020-01-09 14:12:29',NULL),(1133,100,20,'seat','leon fr','2009','2000','siemens ppd1.2',NULL,'170',2000,'2','AV09XRD',NULL,'1578585795.','1578588986.cod','DPF & EGR DELETE - LAMBA DELETE',NULL,'C',418,'2020-01-09 16:56:36','2020-01-09 16:56:36',NULL),(1134,19,14,'fiat','doblo','233','1.9jtd','edc16c39',NULL,NULL,2000,'1','x',NULL,'1578586314.','1578587265.unq','p0601 eprom error, p0683 glow plugs',NULL,'C',651,'2020-01-09 16:27:47','2020-01-09 16:27:47',NULL),(1135,45,11,'Mercedes','Sprinter','314 (KS66 HFT)','2200','Delph CRD 3.E.1',NULL,'140',2026,'2','KS66 HFT',NULL,'1578649431.','1578650965.unq',NULL,NULL,'C',652,'2020-01-10 10:09:37','2020-01-10 10:09:37',NULL),(1136,24,14,'ford','transit','e5','cvra 2.2','ww',NULL,'1',2023,'2','hh','gg','1578653284.','1578656329.cod',NULL,NULL,'C',653,'2020-01-10 11:38:52','2020-01-10 11:38:52',NULL),(1137,136,32,'landrover','sort','1','1','1',NULL,NULL,2000,'1','gold',NULL,'1578672013.','1578672934.cod',NULL,NULL,'C',419,'2020-01-10 16:15:41','2020-01-10 16:15:41',NULL),(1138,100,20,'vw','passat','2007','2000','siemens ppd1.2',NULL,'170',2000,'2','yf56bfm',NULL,'1578822220.','1578823997.cod','DPF & EGR DELETE - SWIRL FLAP DELETE IF POSS',NULL,'C',420,'2020-01-12 10:13:22','2020-01-12 10:13:22',NULL),(1139,76,20,'audi','a4','b6','1800','med7.5',NULL,'148',2014,'1','wg04atx',NULL,'1578824902.','1578835673.cod',NULL,NULL,'C',421,'2020-01-12 13:27:58','2020-01-12 13:27:58',NULL),(1140,76,20,'vw','PASSAT','b6','<PASSWORD>','ppd1.2',NULL,'140',2016,'2','na55svw',NULL,'1578835907.','1578836101.cod',NULL,NULL,'C',422,'2020-01-12 13:35:05','2020-01-12 13:35:05',NULL),(1141,102,21,'honda','crv','anything','2.2l','bosch',NULL,NULL,2024,'2','nhz346',NULL,'1578902501.','1578914847.unq',NULL,NULL,'C',423,'2020-01-13 11:27:34','2020-01-13 11:27:34',NULL),(1142,100,20,'mercedes','vito','2016','2143','edc17cp57',NULL,'163',2000,'2','ye16cnn',NULL,'1578914913.','1578923591.cod',NULL,NULL,'C',424,'2020-01-13 13:53:17','2020-01-13 13:53:17',NULL),(1143,121,32,'audi','a3','x','1600','simos 2.1',NULL,NULL,2023,'1','fx13 pyg',NULL,'1578931029.6tdi-hw-cayc-sw-upgsw-03l906023pp-9978-','1578933951.cod','tune & egr plz',NULL,'C',425,'2020-01-13 16:45:55','2020-01-13 16:45:55',NULL),(1144,102,21,'toyota','auris','anything','1.6','bosch',NULL,NULL,2026,'2','neb101',NULL,'1578992939.','1578994699.unq',NULL,NULL,'C',426,'2020-01-14 09:38:23','2020-01-14 09:38:23',NULL),(1145,45,11,'Skoda','Yeti','2012 (SK04 YET)','2000','EDC17 C46',NULL,'140',2022,'6','SK04 YET',NULL,'1578996684.','1579002193.cod',NULL,NULL,'C',654,'2020-01-14 11:43:16','2020-01-14 11:43:16',NULL),(1146,76,21,'FORD','TRANSIT','Custom','2200','sid208',NULL,NULL,2025,'2','sk65fpf',NULL,'1579002569.','1579003436.cod','DPF and egr off pls',NULL,'C',427,'2020-01-14 12:04:01','2020-01-14 12:04:01',NULL),(1147,100,20,'vw','golf','2010','1600','simos pcr 2.1',NULL,'105',2000,'1','ls10jyn',NULL,'1579003469.','1579004547.cod',NULL,NULL,'C',428,'2020-01-14 12:22:32','2020-01-14 12:22:32',NULL),(1148,43,11,'Vauxhall','Antara','MK1','2.2CDTi','DCM3.7',NULL,'163',2000,'2','HV13OHW','74,22','1579006430.7 _Remapped_','1579009235.cod','car has stage 1 + DPF + EGR deletion','I put it back to stock best i could and did it properly, if its still smoking its the car,','C',655,'2020-01-14 14:17:28','2020-01-14 14:17:28',NULL),(1149,43,11,'BMW','200D','F22/23','N47','EDC17C50',NULL,'184',2024,'3','HV14XAS','107,201','1579011966.','1579015561.cod',NULL,NULL,'C',656,'2020-01-14 15:26:13','2020-01-14 15:26:13',NULL),(1150,45,11,'BMW','X5','E70 (G6 GJO)','3000','EDC16',NULL,NULL,2019,'3','G6 GJO',NULL,'1579021315.','1579025451.unq',NULL,NULL,'C',657,'2020-01-14 18:10:54','2020-01-14 18:10:54',NULL),(1151,45,14,'Audi','A6','2010 (T22 ARH)','3000','EDC17 cP14',NULL,NULL,2020,'3','T22 ARH',NULL,'1579024411.unq','1579026608.unq','Swirl flap delete please, cant find it in the option lis','actuator has to be unplugged','C',658,'2020-01-14 18:55:47','2020-01-14 18:55:47',NULL),(1152,76,21,'audi','a3','8p','2000','cp14',NULL,'140',2018,'2','sh58nlg',NULL,'1579080942.','1579118203.cod','already tuned egr off and dpf pls',NULL,'C',429,'2020-01-15 19:56:56','2020-01-15 19:56:56',NULL),(1153,76,21,'FORD','smax','2012','2000','dcm3.5',NULL,'162',2022,'2','ek12hwe',NULL,'1579081742.','1579083943.cod','DPF and egr off pls','HA HA FUCKER','C',430,'2020-01-15 10:25:56','2020-01-15 10:25:56',NULL),(1154,100,20,'ford','custom','2018','2000','sid211',NULL,'130',2000,'2','sk68nym',NULL,'1579084927.','1579087328.cod',NULL,NULL,'C',431,'2020-01-15 11:22:15','2020-01-15 11:22:15',NULL),(1155,76,20,'Mercedes','SPRINTER','2009','2200','crd2',NULL,'130',2019,'1','cn59aey',NULL,'1579090158.','1579092165.cod',NULL,NULL,'C',432,'2020-01-15 12:42:48','2020-01-15 12:42:48',NULL),(1156,100,21,'seat','leon','2009','2000','edc17cp14',NULL,'170',2000,'2','dg59dpn',NULL,'1579096361.pth','1579096484.unq',NULL,NULL,'C',433,'2020-01-15 13:54:49','2020-01-15 13:54:49',NULL),(1157,76,20,'TOYOTA','HILUX','2012','3000','DENSO',NULL,'169',2022,'2','FY62VZC',NULL,'1579112166.txt','1579112508.cod',NULL,NULL,'C',434,'2020-01-15 18:21:55','2020-01-15 18:21:55',NULL),(1158,27,11,'FORD','TRANSIT','MKMK8','2.2','CONTINENTAL',NULL,'100',2026,'2','FG16UVC',NULL,'1579166791.','1579169627.cod','doesnt want it mapped up to 180bhp wants an eco map, bit more power and more mpg',NULL,'C',659,'2020-01-16 11:38:02','2020-01-16 11:38:02',NULL),(1159,100,20,'landrover','freelander td4','2009','2200','edc16cp39',NULL,'161',2000,'2','yd59bku',NULL,'1579168539.','1579171430.cod',NULL,NULL,'C',435,'2020-01-16 10:43:54','2020-01-16 10:43:54',NULL),(1160,45,15,'Ford','Transit','2015 (YT65 ELJ)','2.2','SID208',NULL,NULL,2025,'2','YT65 ELJ',NULL,'1579175806.','1579177435.cod',NULL,NULL,'C',660,'2020-01-16 12:24:01','2020-01-16 12:24:01',NULL),(1161,121,32,'skoda','superb','x','1600','simos pcr2.1',NULL,NULL,2023,'1','andy1',NULL,'1579179398.txt','1579180497.cod','egr & tune',NULL,'C',436,'2020-01-16 13:15:03','2020-01-16 13:15:03',NULL),(1162,19,17,'ford','transit','mk7','2.2','sid208',NULL,NULL,2022,'1','mk12fj',NULL,'1579186078.','1579189669.cod','mild tune with dpf & egr off','detuned and egr dpf','C',661,'2020-01-16 15:47:59','2020-01-16 15:47:59',NULL),(1164,100,20,'mercedes','e350','2010','2987','edc17cp10',NULL,'231',2000,'3','y7kcd',NULL,'1579202582.','1579204610.unq',NULL,'270hp & 620nm','C',438,'2020-01-16 19:56:54','2020-01-16 19:56:54',NULL),(1165,29,11,'volkswagen','caddy','3','1.6','semos',NULL,'100',2020,'1','sfz 3222',NULL,'1579203795.txt','1579205943.cod',NULL,'job updated. eg and dpf added','C',662,'2020-01-16 20:20:55','2020-01-16 20:20:55',NULL),(1166,100,20,'vauxhall','corsa sri','2015','1364','ac delco e78',NULL,'100',2000,'2','bu65uzm',NULL,'1579267723.','1579273624.cod',NULL,NULL,'C',439,'2020-01-17 15:07:10','2020-01-17 15:07:10',NULL),(1167,102,51,'skoda','superb','anything','2l','bosch',NULL,NULL,2020,'3','myy038',NULL,'1579267868.','1579276071.unq',NULL,'immo off and p1570','C',440,'2020-01-17 15:47:55','2020-01-17 15:47:55',NULL),(1168,102,20,'land rover','range rover','anything','3l','bosch',NULL,NULL,2023,'3','mkp002',NULL,'1579269303.','1579274968.unq',NULL,NULL,'C',441,'2020-01-17 15:29:30','2020-01-17 15:29:30',NULL),(1170,121,32,'vw','golf','6','1600','simos pcr2.1',NULL,NULL,2020,'6','nu60zpe',NULL,'1579273285.6tdi-hw-cayc-sw-03l906023dr-9978','1579277610.cod','tune & egr',NULL,'C',443,'2020-01-17 16:13:34','2020-01-17 16:13:34',NULL),(1171,24,11,'ford','transit','5','2200','un',NULL,'1',2022,'2','12',NULL,'1579274032.','1579275783.cod',NULL,NULL,'C',663,'2020-01-17 15:43:07','2020-01-17 15:43:07',NULL),(1172,76,20,'bmw','e60','2004','3000','c31',NULL,'215',2014,'3','px04lfl',NULL,'1579338797.','1579340795.cod','dpf and tune pls',NULL,'C',444,'2020-01-18 09:46:41','2020-01-18 09:46:41',NULL),(1173,45,11,'VW','Caddy','2016 (FH66 ZGA)','2000','EDC17 C64',NULL,'101',2026,'1','FH66 ZGA',NULL,'1579341594.','1579343921.cod',NULL,NULL,'C',664,'2020-01-18 10:38:51','2020-01-18 10:38:51',NULL),(1174,136,32,'landrover','RANGE','1','3.6','SID',NULL,NULL,2000,'1','JOE',NULL,'1579346491.6','1579346518.cod',NULL,NULL,'C',445,'2020-01-18 11:22:03','2020-01-18 11:22:03',NULL),(1175,100,20,'vw','golf','2008','2000','edc16+ u31/u34',NULL,'140',2000,'2','sa08uuk',NULL,'1579365470.','1579365893.cod',NULL,NULL,'C',446,'2020-01-18 16:45:00','2020-01-18 16:45:00',NULL),(1176,100,20,'ford','focus st2 tdci','2015','2000','delphi dcm6.x',NULL,'185',2000,'2','x16dcm',NULL,'1579366837.','1579367696.cod',NULL,NULL,'C',447,'2020-01-18 17:15:04','2020-01-18 17:15:04',NULL),(1177,30,11,'AUDI','A5','2014','2.0 tdi','EDC17C46',NULL,'177',2024,'2','WR14ZPC',NULL,'1579513390.','1579514936.cod',NULL,NULL,'C',665,'2020-01-20 10:08:57','2020-01-20 10:08:57',NULL),(1178,45,15,'Ford','Transit','2012 DN62 KXP)','2200','SID208',NULL,NULL,2022,'2','DN62 KXP',NULL,'1579515109.','1579520381.cod',NULL,NULL,'C',666,'2020-01-20 11:39:44','2020-01-20 11:39:44',NULL),(1179,19,11,'vw','caddy','2k','1.6 cayd','pcr2.1',NULL,'102',2021,'1','na61cv',NULL,'1579516422.','1579519067.cod',NULL,NULL,'C',667,'2020-01-20 11:17:49','2020-01-20 11:17:49',NULL),(1180,45,11,'Vauxhall9','Movano','2014 Bit Turbo (VK64 KZP)','2300','SID 309',NULL,'135',2024,'2','VK64 KZP',NULL,'1579600034.','1579603808.cod',NULL,NULL,'C',668,'2020-01-21 10:50:10','2020-01-21 10:50:10',NULL),(1181,19,15,'ford','transit','mk7','2.2','sid208',NULL,NULL,2022,'2','tj7532',NULL,'1579603892.','1579606425.cod',NULL,NULL,'C',669,'2020-01-21 11:33:49','2020-01-21 11:33:49',NULL),(1182,29,14,'renault','trafic','3','1.6','bosch',NULL,'115',2027,'2','ngz 9627',NULL,'1579607864.','1579609859.cod',NULL,NULL,'C',670,'2020-01-21 12:31:10','2020-01-21 12:31:10',NULL),(1183,45,14,'Audi','A8','D3 (N12CTY)','3000','EDC16',NULL,NULL,2019,'1','N12 CTY',NULL,'1579617377.','1579620045.cod','Swiirl flap delete',NULL,'C',671,'2020-01-21 15:20:50','2020-01-21 15:20:50',NULL),(1184,28,11,'land rover','sport','first','3.6','eu4',NULL,NULL,2018,'3','b432occ',NULL,'1579622133.','1579625684.cod',NULL,NULL,'C',672,'2020-01-21 16:54:50','2020-01-21 16:54:50',NULL),(1185,45,11,'VW','Amarok','2019 (DE69 JXV)','3000','EDC17CP54',NULL,'254',2029,'3','DE69 JXV',NULL,'1579693252.','1579696836.UNI',NULL,'they had a server issue, all sorted','C',673,'2020-01-22 12:40:49','2020-01-22 12:40:49',NULL),(1186,136,32,'landrover','dicovery','3','2.7','sid',NULL,NULL,2000,'3','JOE',NULL,'1579695916.','1579696449.cod','p045d-00 egr b control circuit - high',NULL,'C',448,'2020-01-22 12:34:14','2020-01-22 12:34:14',NULL),(1187,19,39,'citroen','berlingo','b9','1.6hdi bhy','edc17c60',NULL,NULL,2026,'1','kp',NULL,'1579704806.','1579771500.unq',NULL,'adblue ecu and pump must be unplugged','C',674,'2020-01-23 09:25:45','2020-01-23 09:25:45',NULL),(1188,19,14,'fiat','ducato','2nd','3.0jtd','edc16c39',NULL,'160',2017,'2','fj07llp',NULL,'1579707628.','1579770629.unq','p0638 throttle valve control circuit',NULL,'C',675,'2020-01-23 09:10:36','2020-01-23 09:10:36',NULL),(1189,102,21,'mercedes','e class','anything','2.2l','delphi',NULL,NULL,2020,'3','kxy900',NULL,'1579764090.','1579769387.cod','w212 e220',NULL,'C',449,'2020-01-23 08:49:52','2020-01-23 08:49:52',NULL),(1190,19,11,'renault','master','2nd','2.5','edc16c3',NULL,'120',2015,'2','wx05mva',NULL,'1579775061.','1579778647.cod',NULL,NULL,'C',676,'2020-01-23 11:24:10','2020-01-23 11:24:10',NULL),(1191,100,20,'bmw','320d','2009','2000','edc17cp02',NULL,'177',2000,'2','yr59xta',NULL,'1579789893.','1579798698.cod',NULL,NULL,'C',450,'2020-01-23 16:58:22','2020-01-23 16:58:22',NULL),(1192,121,32,'vauxhall','insignia','2','2000','edc17',NULL,NULL,2019,'2','ijz',NULL,'1579792890.0cdti-insignia-sw-1037529583-upgsw-p564-ob8','1579801150.unq','dpf & egr plz J',NULL,'C',451,'2020-01-23 17:39:17','2020-01-23 17:39:17',NULL),(1193,28,11,'land rover','disco','3','2.7','yes',NULL,NULL,2016,'3','bt06 ujx',NULL,'1579865499.','1579868264.cod',NULL,NULL,'C',677,'2020-01-24 12:17:48','2020-01-24 12:17:48',NULL),(1194,100,33,'renault','master','2012','2298','edc17c11',NULL,'146',2000,'2','wu62lck',NULL,'1579868105.','1579869742.cod',NULL,NULL,'C',452,'2020-01-24 12:42:24','2020-01-24 12:42:24',NULL),(1195,100,20,'audi','a4 1.8t','2007','1800','me7.5.5',NULL,'163',2000,'2','j100cal',NULL,'1579869782.','1579870963.cod',NULL,NULL,'C',453,'2020-01-24 13:02:52','2020-01-24 13:02:52',NULL),(1196,30,11,'volkswagen','GOLF R','2016','2.0 TSI','Simos 18.1',NULL,NULL,2026,'2','D3EDX',NULL,'1579874928.','1579875679.cod',NULL,NULL,'C',678,'2020-01-24 14:21:23','2020-01-24 14:21:23',NULL),(1197,19,14,'landrover','discovery','3','2.7tdi','sid204',NULL,NULL,2018,'3','mwo8avy',NULL,'1579877681.','1579878322.cod',NULL,NULL,'C',679,'2020-01-24 15:05:26','2020-01-24 15:05:26',NULL),(1198,30,11,'AUDI','A3','2015','2.0TDI','EDC17C64',NULL,NULL,2025,'3','YX15FRF',NULL,'1579881746.txt','1579881861.cod',NULL,NULL,'C',680,'2020-01-24 16:05:50','2020-01-24 16:05:50',NULL),(1199,100,20,'vw','caddy','2005','2000','edc16+ u31/u34',NULL,'140',2000,'2','sd54kfy',NULL,'1579881799.','1579883026.cod',NULL,'198hp and 450Nm','C',454,'2020-01-24 16:24:16','2020-01-24 16:24:16',NULL),(1200,45,11,'Ford','Transit MK8','2016 (HY16 XLB)','2200','SID209',NULL,'123',2000,'2','HY16 XLB',NULL,'1579883002.','1579887541.unq',NULL,NULL,'C',681,'2020-01-24 19:05:21','2020-01-24 19:05:21',NULL),(1201,27,11,'land rover','sport','mk1','2.7','siemens',NULL,'190',2016,'3','R77 MUD',NULL,'1579948417.','1579953753.cod',NULL,'tuned already. taken back to stock and retuned','C',682,'2020-01-25 12:02:47','2020-01-25 12:02:47',NULL),(1202,43,34,'Vauxhall','Corsa','D','Z16LER','ME7.6.2',NULL,'190',2017,'2','EF57GNX','76,264','1579955366.2','1579957772.cod','possibly mapped already...?','no it was stock','C',683,'2020-01-25 13:10:11','2020-01-25 13:10:11',NULL),(1203,100,20,'vw','passat','2007','2000','ppd1.xx',NULL,'140',2000,'2','kx07yov',NULL,'1579955649.','1579956260.cod',NULL,NULL,'C',455,'2020-01-25 12:44:27','2020-01-25 12:44:27',NULL),(1204,30,11,'FORD','TRANSIT','2016','2.2 TDCI','SID209',NULL,'123',2026,'2','CX16YJS',NULL,'1579957995.','1579961268.cod',NULL,NULL,'C',684,'2020-01-25 14:08:10','2020-01-25 14:08:10',NULL),(1205,100,20,'vw','caddy','2005','1900','edc16+ u31/u34',NULL,'105',2000,'1','L17VWW',NULL,'1579964811.','1579968456.cod','EGR DELETE',NULL,'C',456,'2020-01-25 16:07:40','2020-01-25 16:07:40',NULL),(1206,100,20,'audi','a4','2011','1968','edc17c46',NULL,'135',2000,'2','c6wtn',NULL,'1580124689.','1580128039.cod',NULL,NULL,'C',457,'2020-01-27 12:27:29','2020-01-27 12:27:29',NULL),(1207,100,20,'vw','transporter','2012','1968','edc17cp20',NULL,'84',2000,'1','pf12dxu',NULL,'1580130227.txt','1580131582.cod','speed limiter removal','tune and speed limiter off','C',458,'2020-01-27 13:26:44','2020-01-27 13:26:44',NULL),(1208,100,20,'ford','custom','2018','2000','sid211',NULL,'130',2000,'2','mw18vgg',NULL,'1580132528.','1584357228.cod',NULL,'OK THIS SHOULD SORT IT','C',459,'2020-03-16 11:14:04','2020-03-16 11:14:04',NULL),(1209,100,20,'ford','custom','2019','2000','sid211',NULL,'130',2000,'2','ym19hwb',NULL,'1580132939.','1587142185.cod',NULL,NULL,'C',460,'2020-04-17 16:49:57','2020-04-17 15:49:57',NULL),(1210,102,20,'bmw','X3','anything','2l','NOT KNOWN',NULL,NULL,2015,'2','kuh241',NULL,'1580206554.','1580212660.cod','tuning fuel economy petrol',NULL,'C',461,'2020-01-28 11:57:49','2020-01-28 11:57:49',NULL),(1211,100,20,'AUDI','A3','2009','1968','edc17cp14',NULL,'170',2000,'2','FV59SUX',NULL,'1580218840.','1580229903.cod',NULL,NULL,'C',462,'2020-01-28 16:45:08','2020-01-28 16:45:08',NULL),(1212,100,20,'bmw','320d','2015','1995','edc17c50',NULL,'184',2000,'2','px15tcu',NULL,'1580221309.','1580225153.cod',NULL,NULL,'C',463,'2020-01-28 15:25:56','2020-01-28 15:25:56',NULL),(1213,76,32,'LANDROVER','range rover sport','2007','2700','SIEMENS NNN',NULL,NULL,2016,'3','sg56zfh',NULL,'1580228243.','1580229513.cod',NULL,NULL,'C',464,'2020-01-28 16:38:37','2020-01-28 16:38:37',NULL),(1214,45,15,'Ford','Transit','MK7 (ND62 HYN)','2200','Sid 208',NULL,NULL,2022,'2','ND62 HYN',NULL,'1580230370.','1580295736.cod',NULL,NULL,'C',685,'2020-01-29 11:02:23','2020-01-29 11:02:23',NULL),(1215,100,20,'mini','cooper d','2010','1600','edc17c41',NULL,'113',2000,'1','wp60ylr',NULL,'1580230966.','1580562695.cod','DPF DELETE',NULL,'C',465,'2020-02-01 13:11:43','2020-02-01 13:11:43',NULL),(1216,100,21,'ford','transit','2012','2200','sid208',NULL,'125',2000,'2','bd12vgm',NULL,'1580289233.','1580291218.cod','DPF DELETE',NULL,'C',466,'2020-01-29 09:47:04','2020-01-29 09:47:04',NULL),(1218,100,20,'mercedes','a45','2015','1991','med17.7.2',NULL,'360',2000,'3','hj65hrd',NULL,'1580375219.','1580381992.cod',NULL,NULL,'C',467,'2020-01-30 10:59:59','2020-01-30 10:59:59',NULL),(1219,100,20,'merc','e220','212','2.2','crd3',NULL,'170',2022,'1','ss12was',NULL,'1580401313.','1580401358.cod','ALSO DPF',NULL,'C',468,'2020-01-30 16:22:42','2020-01-30 16:22:42',NULL),(1220,35,15,'zafira','zafira','b','1900','edc',NULL,NULL,2000,'1','ky57vax',NULL,'1580403367.','1580403932.cod',NULL,NULL,'C',686,'2020-01-30 17:05:39','2020-01-30 17:05:39',NULL),(1221,19,11,'renault','clio rs','3','2.0','sagem s3000',NULL,'192',2017,'1','af04',NULL,'1580469247.','1580471446.cod',NULL,NULL,'C',687,'2020-01-31 11:50:51','2020-01-31 11:50:51',NULL),(1222,100,20,'skoda','octavia vrs','2015','1968','edc17c74',NULL,'184',2000,'4','j800jja',NULL,'1580472262.','1580473909.cod',NULL,NULL,'C',469,'2020-01-31 12:31:56','2020-01-31 12:31:56',NULL),(1223,30,11,'FIAT','DOBLO','2017','1.3D','MJ9DF',NULL,'95',2027,'1','WP17VDN',NULL,'1580473309.','1580476860.cod',NULL,'this is a new development. try it and tell us wht it is like','C',688,'2020-01-31 13:21:19','2020-01-31 13:21:19',NULL),(1224,121,20,'vw','golf','7','1600','simos pcr 2.1',NULL,NULL,2020,'6','na10 vdn',NULL,'1580475855.6tdi-hw-cayc-sw-03l906023h-upgsw-03l906023h-5864-virtual','1580478134.cod','dpf egr & tune plz J',NULL,'C',470,'2020-01-31 13:42:18','2020-01-31 13:42:18',NULL),(1225,100,20,'mercedes','ml350','2011','2987','edc17cp10',NULL,'231',2000,'3','s6tko',NULL,'1580497384.','1580500105.unq','EGR DELETE',NULL,'C',471,'2020-01-31 19:48:31','2020-01-31 19:48:31',NULL),(1226,100,20,'ford','custom','2014','2200','sid208',NULL,'125',2000,'2','nu64ayw',NULL,'1580544889.','1580548288.cod',NULL,NULL,'C',472,'2020-02-01 09:11:32','2020-02-01 09:11:32',NULL),(1227,100,20,'ford','fiesta','2016','998','med17.0.1',NULL,'140',2000,'1','l700lgb',NULL,'1580545787.','1580552094.cod',NULL,NULL,'C',473,'2020-02-01 10:15:03','2020-02-01 10:15:03',NULL),(1228,29,14,'volkswagen','polo','3','1.9','bosch',NULL,'60',2018,'1','ojz 5512',NULL,'1580555127.','1580556362.cod','19558 inlet flap motor',NULL,'C',689,'2020-02-01 11:26:06','2020-02-01 11:26:06',NULL),(1229,100,20,'mercedes','a200','2014','2143','delphi crd3.x can',NULL,'136',2000,'2','EJ64FUP',NULL,'1580559161.','1582380925.cod','DPF DELETE',NULL,'C',474,'2020-02-22 14:15:29','2020-02-22 14:15:29',NULL),(1230,29,11,'audi','a4','3','2.0','vag bosch',NULL,'140',2018,'2','hg08 olp',NULL,'1580567807.txt','1580569771.cod',NULL,NULL,'C',690,'2020-02-01 15:09:33','2020-02-01 15:09:33',NULL),(1231,100,20,'ford','custom','2015','2198','SID209',NULL,'125',2000,'2','wn15hhd',NULL,'1580569775.','1580571923.cod',NULL,NULL,'C',475,'2020-02-01 15:45:44','2020-02-01 15:45:44',NULL),(1232,121,32,'FORD','TRANSHIT','7','2200','SID208',NULL,NULL,2022,'2','YP62 MWL',NULL,'1580666488.2-tdci-hw-cc11-12b684-ab-sw-cc11-12a650-ab-upgsw-cc11-14c204-cgt-ver-ds-cc11-12650-cak','1580667361.cod','DPF & EGR PLZ J',NULL,'C',476,'2020-02-02 18:16:07','2020-02-02 18:16:07',NULL),(1233,121,33,'kia','ceed','1','1600','edc17',NULL,NULL,2020,'1','<NAME>',NULL,'1580683632.6tdi-sw-1037514150-bdm','1580746535.unq','tune for economy if poss plz J','ok new v','C',477,'2020-02-03 16:15:45','2020-02-03 16:15:45',NULL),(1234,100,20,'ford','fiesta st2','2014','1596','med17.0.1',NULL,'182',2000,'2','PF63YEE',NULL,'1580724642.','1580725817.cod','DE CAT',NULL,'C',478,'2020-02-03 10:30:23','2020-02-03 10:30:23',NULL),(1235,100,20,'audi','a3','2010','2000','EDC17C46',NULL,'170',2000,'2','r16ynx',NULL,'1580749420.','1580751861.cod','EGR DELETE',NULL,'C',479,'2020-02-03 17:44:29','2020-02-03 17:44:29',NULL),(1237,19,15,'susuki','vitara','2nd','1.9 diss','edc16c0/c3',NULL,NULL,2019,'1','yd59bhp',NULL,'1580810019.','1580811739.cod',NULL,'back up injectors','C',691,'2020-02-04 10:23:23','2020-02-04 10:23:23',NULL),(1238,102,21,'toyota','auris','3','2.2','denso',NULL,'177',2019,'2','nhk189',NULL,'1580812925.','1580815143.unq','also stage 1','bdm','C',480,'2020-02-04 11:19:14','2020-02-04 11:19:14',NULL),(1239,102,20,'vw','GOLF7','anything','1.4','NOT KNOWN',NULL,NULL,2026,'2','mmn223',NULL,'1580895087.','1580899458.cod','dtc delete p0420 catalyst system bank 1 and stage 2 id read',NULL,'C',481,'2020-02-05 10:44:21','2020-02-05 10:44:21',NULL),(1240,102,21,'opel','insignia','anything','2l','bosch',NULL,NULL,2024,'3','npp263',NULL,'1580900153.','1580907467.unq','yes i do!!!',NULL,'C',482,'2020-02-05 12:57:52','2020-02-05 12:57:52',NULL),(1241,74,20,'FORD','TRANSIT','MK7','2.2','SID208',NULL,'98',2022,'2','RE12XNV',NULL,'1580900495.BIN','1580906192.cod','EGR AND DPF OFF PLS',NULL,'C',483,'2020-02-05 12:36:37','2020-02-05 12:36:37',NULL),(1242,100,20,'saab','93','2009','1910','edc16c39',NULL,'150',2000,'2','sc09umz',NULL,'1580902887.','1580909018.cod',NULL,NULL,'C',484,'2020-02-05 13:23:45','2020-02-05 13:23:45',NULL),(1243,121,20,'vauxhall','vivaro','2','2000','edc16+',NULL,NULL,2021,'2','ny11 dbz',NULL,'1580913255.0dci-hw-8200935115-sw-1037511431-upgsw-8201149906','1580914722.cod','speed limiter remove plz , eco tune',NULL,'C',485,'2020-02-05 14:58:47','2020-02-05 14:58:47',NULL),(1244,100,20,'vauxhall','astra sri','2012','1686','delco e87',NULL,'130',2000,'2','yb12wwj',NULL,'1580913925.','1580916742.cod',NULL,NULL,'C',486,'2020-02-05 15:34:51','2020-02-05 15:34:51',NULL),(1245,100,20,'vauxhall','vivaro','2013','1995','edc17c42',NULL,'114',2000,'1','dx13wpn',NULL,'1580917693.','1580918732.cod','DPF DELETE',NULL,'C',487,'2020-02-05 16:05:41','2020-02-05 16:05:41',NULL),(1246,45,11,'Ford','Fiesta','YH66 NRV (MK6)','1.0 Ecoboost','MED 17.0.1',NULL,NULL,2026,'1','YYH66 NRV',NULL,'1580981698.','1580983313.cod',NULL,NULL,'C',692,'2020-02-06 10:01:57','2020-02-06 10:01:57',NULL),(1247,100,20,'vauxhall','movanno','2011','2299','edc17c11',NULL,'125',2000,'2','y4ean',NULL,'1580996043.','1581000553.cod',NULL,NULL,'C',488,'2020-02-06 14:49:17','2020-02-06 14:49:17',NULL),(1248,35,14,'ford','transit','3','2400','lr',NULL,NULL,2000,'1','yh09lvf',NULL,'1580999406.','1581002594.cod',NULL,NULL,'C',693,'2020-02-06 15:23:36','2020-02-06 15:23:36',NULL),(1249,100,33,'seat','ibiza','2012','1199','delphi dcm3.7',NULL,'75',2000,'1','ky12lba',NULL,'1580999650.',NULL,'EGR DELETE',NULL,'C',489,'2020-02-06 16:55:55','2020-02-06 16:55:55',NULL),(1250,100,20,'ford','custom','2017','2000','sid211',NULL,'170',2000,'2','mj67dxv',NULL,'1581000503.','1581011106.cod',NULL,NULL,'C',490,'2020-02-06 17:45:28','2020-02-06 17:45:28',NULL),(1251,45,11,'BMw','635','YE57 CVS (E64)','3000','EDC16',NULL,NULL,2017,'3','YE57 CVS',NULL,'1581008603.','1581013766.cod',NULL,NULL,'C',694,'2020-02-06 18:29:31','2020-02-06 18:29:31',NULL),(1252,100,20,'mercedes','sprinter','2014','2143','delphi crd3',NULL,'129',2000,'2','kn64jfo',NULL,'1581021418.','1581066135.cod',NULL,NULL,'C',491,'2020-02-07 09:02:20','2020-02-07 09:02:20',NULL),(1253,121,20,'ford','transhit','8','2200','sid208',NULL,'125',2024,'2','e6 vnn',NULL,'1581074865.2tdci-hw-bk2a-12b684-ac-sw-bk31-12a650-bb-upgsw-ek31-14c204-ajs-versw-dspek12a650-aaa','1581094369.cod','dpf egr & tune plz master J',NULL,'C',492,'2020-02-07 16:52:54','2020-02-07 16:52:54',NULL),(1254,19,11,'ford','transit custom','2nd','2.0tdci ecoblue','sid211',NULL,NULL,2029,'2','cx19goj',NULL,'1581081692.','1581085473.cod',NULL,NULL,'C',695,'2020-02-07 14:24:38','2020-02-07 14:24:38',NULL),(1255,19,15,'volvo','xc70','2nd','2.4d5','edc16u31',NULL,'185',2015,'3','b2cag',NULL,'1581084616.','1581087498.cod',NULL,NULL,'C',696,'2020-02-07 14:58:22','2020-02-07 14:58:22',NULL),(1256,19,14,'audi','a6','3','2.0tdi bre','edc16u31/34',NULL,NULL,2015,'2','ov55kc',NULL,'1581091088.','1581094046.cod',NULL,NULL,'C',697,'2020-02-07 16:47:47','2020-02-07 16:47:47',NULL),(1257,100,20,'ford','focus st2 tdci','2015','1997','delphi dcm6.x',NULL,'185',2000,'2','m600dve',NULL,'1581095270.','1581099578.cod',NULL,NULL,'C',493,'2020-02-07 18:19:47','2020-02-07 18:19:47',NULL),(1258,45,11,'VW','Transporter','T5 (GU65 KRN)','2000','EDC17CP20',NULL,'102',2025,'1','GU65 KRN',NULL,'1581152705.','1581153480.cod',NULL,NULL,'C',698,'2020-02-08 09:18:03','2020-02-08 09:18:03',NULL),(1259,102,21,'bmw','x5','anything','3l','bosch',NULL,NULL,2018,'3','kud539',NULL,'1581154956.','1581157868.cod',NULL,NULL,'C',494,'2020-02-08 10:31:11','2020-02-08 10:31:11',NULL),(1260,100,20,'skoda','octavia vrs','2013','1968','edc17c64',NULL,'184',2000,'2','sk63cyv',NULL,'1581171455.','1581327426.cod',NULL,NULL,'C',495,'2020-02-10 09:37:12','2020-02-10 09:37:12',NULL),(1261,100,20,'audi','a3 tfsi','2016','1395','med17.5.25',NULL,'125',2000,'2','x21awg',NULL,'1581172362.','1581265849.cod',NULL,NULL,'C',496,'2020-02-09 16:30:54','2020-02-09 16:30:54',NULL),(1262,100,20,'audi','a3 tdi','2004','1968','edc16u1',NULL,'140',2000,'2','bd54bgf',NULL,'1581176982.','1581266285.cod',NULL,NULL,'C',497,'2020-02-09 16:38:11','2020-02-09 16:38:11',NULL),(1263,45,14,'BMW','428','2013 (FG63 TDV)','2000','MEVD 17.2.9',NULL,NULL,2023,'3','FG63 TDV',NULL,'1581338654.txt','1581338846.cod',NULL,NULL,'C',699,'2020-02-10 12:47:31','2020-02-10 12:47:31',NULL),(1264,102,21,'fiat','ducato','anything','2.3','NOT KNOWN',NULL,NULL,2023,'2','npk067',NULL,'1581342266.','1581342936.cod',NULL,NULL,'C',498,'2020-02-10 13:55:39','2020-02-10 13:55:39',NULL),(1265,102,36,'vw','golf','anything','1.4','bosch',NULL,NULL,2015,'1','klt423',NULL,'1581344162.','1581344909.cod',NULL,NULL,'C',499,'2020-02-10 14:28:35','2020-02-10 14:28:35',NULL),(1266,100,20,'audi','a3','2013','1598','simos pcr 2.1',NULL,'105',2000,'1','ml13tpv',NULL,'1581353816.','1581358790.cod','DPF DELETE',NULL,'C',500,'2020-02-10 18:19:55','2020-02-10 18:19:55',NULL),(1267,102,21,'bmw','7series','anything','3l','NOT KNOWN',NULL,NULL,2022,'3','mtn012',NULL,'1581414304.','1581416024.cod',NULL,NULL,'C',501,'2020-02-11 10:13:55','2020-02-11 10:13:55',NULL),(1269,76,20,'Landrover','defender','puma','2400','dcu',NULL,NULL,2019,'2','wj59njy',NULL,'1581500604.','1581502485.cod','as much power as possible pls',NULL,'C',503,'2020-02-12 10:14:51','2020-02-12 10:14:51',NULL),(1270,121,20,'vw','transporter','t6','2000','delphidcm6.2',NULL,'102',2027,'1','gk67 cav',NULL,'1581514923.0tdi-102bhp-hw-cxgb-sw-04l906056ka-upgsw-04l906056ka-4047','1581522736.cod',NULL,NULL,'C',504,'2020-02-12 15:52:21','2020-02-12 15:52:21',NULL),(1271,100,20,'volvo','v50 d5','2008','2400','edc16c31',NULL,'180',2000,'2','yg58lfk',NULL,'1581515458.','1581518000.cod',NULL,NULL,'C',505,'2020-02-12 14:33:26','2020-02-12 14:33:26',NULL),(1272,19,11,'ford','transit','mk7','2.2tdci sfra','visteon',NULL,NULL,2022,'2','t3xcs',NULL,'1581518446.','1581522224.cod',NULL,NULL,'C',700,'2020-02-12 15:44:22','2020-02-12 15:44:22',NULL),(1273,100,20,'seat','leon','2010','2000','edc',NULL,'170',2000,'2','lc10jys',NULL,'1581521399.txt','1581522759.cod','DPF & EGR DELETE',NULL,'C',506,'2020-02-12 15:52:42','2020-02-12 15:52:42',NULL),(1275,24,11,'audi','a3','8v','crlb 2000','edc17c74tc1793can',NULL,'150',2027,'2','j77pke',NULL,'1581526871.','1581528740.cod',NULL,NULL,'C',701,'2020-02-12 17:33:57','2020-02-12 17:33:57',NULL),(1276,19,14,'landrover','freelander','2nd','2.2','edc16',NULL,NULL,2017,'2','l66stl',NULL,'1581585358.','1581587304.cod','p0234-00 overboost condition',NULL,'C',702,'2020-02-13 09:48:28','2020-02-13 09:48:28',NULL),(1277,100,20,'seat','leon','2007','2000','siemens ppd1.2',NULL,'170',2000,'2','sv07uho',NULL,'1581592379.','1581595405.cod','DPF & EGR DELETE',NULL,'C',507,'2020-02-13 12:03:33','2020-02-13 12:03:33',NULL),(1278,19,14,'nissan','navara','d40','2.5dci','denso',NULL,NULL,2020,'2','bl60kxt',NULL,'1581595690.','1581597170.cod',NULL,NULL,'C',703,'2020-02-13 12:32:56','2020-02-13 12:32:56',NULL),(1279,121,20,'skoda','fabia','x','1600','simos pcr2.1',NULL,NULL,2024,'1','nv14 zzw',NULL,'1581596125.6tdi-hw-cayc-sw-03l906023ln-upgsw-03l906023ln-9978','1581596607.cod',NULL,NULL,'C',508,'2020-02-13 12:23:32','2020-02-13 12:23:32',NULL),(1280,45,15,'Ford','Transit','2013 (NA13 RMO)','2200','SID208',NULL,NULL,2023,'2','NA13 RMO',NULL,'1581599993.','1581602796.cod',NULL,NULL,'C',704,'2020-02-13 14:06:44','2020-02-13 14:06:44',NULL),(1281,45,11,'Isuzu','Dmax','2016 (Vx65 pxl)','2500','transtron',NULL,NULL,2025,'3','VX65 PXL',NULL,'1581608403.5 read','1581610872.cod',NULL,'sorry for the dealy got stuck in traffic','C',705,'2020-02-13 16:21:20','2020-02-13 16:21:20',NULL),(1282,27,11,'AUDI','SQ5','MK1','3.0','BOSCH',NULL,'326',2026,'4','R28 PMS',NULL,'1581608435.txt','1581613143.cod',NULL,NULL,'C',706,'2020-02-13 16:59:07','2020-02-13 16:59:07',NULL),(1283,100,20,'mercedes','vito 109','2008','2148','edc16cp31',NULL,'95',2000,'2','kr08jdk',NULL,'1581618620.','1581620622.cod',NULL,NULL,'C',509,'2020-02-13 19:03:46','2020-02-13 19:03:46',NULL),(1284,100,21,'skoda','fabia','2013','1598','simos pcr 2.1',NULL,'105',2000,'1','de13wcp',NULL,'1581671083.','1581673710.cod',NULL,NULL,'C',510,'2020-02-14 09:48:38','2020-02-14 09:48:38',NULL),(1285,100,20,'vauxhall','insignia','2013','1956','edc17c59',NULL,'163',2000,'2','dv63onm',NULL,'1581672264.','1581678530.unq',NULL,NULL,'C',511,'2020-02-14 11:08:55','2020-02-14 11:08:55',NULL),(1286,121,20,'mercedes','c220d','2','2200','edc16',NULL,NULL,2017,'2','bx07 pyo',NULL,'1581692992.','1581950683.cod','egr delete & tune plz J','ok please try this','C',512,'2020-02-17 14:44:59','2020-02-17 14:44:59',NULL),(1287,29,11,'toyota','avensis','3','2.0','denso',NULL,'125',2018,'2','bsz 8448',NULL,'1581776293.txt','1581778211.cod',NULL,NULL,'C',707,'2020-02-15 14:50:14','2020-02-15 14:50:14',NULL),(1288,102,36,'vw','golf','anything','1.6','bosch',NULL,NULL,2015,'1','kpd301',NULL,'1581926776.','1581946077.cod','p0401 exhaust gas recirculation flow insufficient detected',NULL,'C',513,'2020-02-17 13:28:05','2020-02-17 13:28:05',NULL),(1289,102,32,'toyota','hilux','anything','2.5','NOT KNOWN',NULL,NULL,2015,'3','kqq694',NULL,'1581927058.txt','1581948820.cod','EGR OFF TUNING STAGE 1 ID READ',NULL,'C',514,'2020-02-17 14:13:45','2020-02-17 14:13:45',NULL),(1290,102,21,'MERCEDES','SPRINTER','anything','2499','NOT KNOWN',NULL,NULL,2017,'2','MHA946',NULL,'1581927231.','1581946877.cod',NULL,NULL,'C',515,'2020-02-17 13:41:23','2020-02-17 13:41:23',NULL),(1292,100,20,'mercedes','c250','2009','2143','delphi crd2',NULL,'204',2000,'3','nx59uxv',NULL,'1581942205.','1581969527.cod',NULL,NULL,'C',517,'2020-02-17 19:58:55','2020-02-17 19:58:55',NULL),(1293,100,20,'mazda','3','2010','2183','denso r2ab',NULL,'150',2000,'2','c4kdf',NULL,'1581947691.','1581957295.cod',NULL,NULL,'C',518,'2020-02-17 16:34:59','2020-02-17 16:34:59',NULL),(1294,100,20,'bmw','320d','2010','2000','edc17c41',NULL,'181',2000,'2','axz3717',NULL,'1581949594.','1581958968.cod',NULL,NULL,'C',519,'2020-02-17 17:02:51','2020-02-17 17:02:51',NULL),(1295,100,20,'ford','custom','2018','1995','sid211',NULL,'130',2000,'1','hg18twv',NULL,'1581953662.','1581965951.cod',NULL,NULL,'C',520,'2020-02-17 18:59:17','2020-02-17 18:59:17',NULL),(1296,19,14,'volvo','v50','2','1.6','edc16c34',NULL,NULL,2019,'2','bv59bwu',NULL,'1582026745.','1582028198.cod',NULL,'unplug it','C',708,'2020-02-18 13:17:34','2020-02-18 13:17:34',NULL),(1297,102,21,'citroen','c4 cactus','anything','1.6','bosch',NULL,NULL,2027,'3','mxx597',NULL,'1582027439.','1582028613.unq','dpf / add blue',NULL,'C',521,'2020-02-18 12:23:37','2020-02-18 12:23:37',NULL),(1298,100,21,'honda','accord','2008','2200','edc17cp06',NULL,'150',2000,'2','lg58pzn',NULL,'1582028559.','1582104532.unq',NULL,NULL,'C',522,'2020-02-19 09:28:59','2020-02-19 09:28:59',NULL),(1299,74,20,'FORD','TRANSIT','MK7','2.2','SID208',NULL,'123',2000,'2','YT14XHC',NULL,'1582028736.','1582030603.cod','DPF OFF EGR OFF TUNE PLS',NULL,'C',523,'2020-02-18 12:56:46','2020-02-18 12:56:46',NULL),(1300,100,20,'vw','golf','2005','1900','edc16u1',NULL,'105',2000,'1','ak55fzd',NULL,'1582031889.','1582036521.cod','EGR DELETE',NULL,'C',524,'2020-02-18 14:35:25','2020-02-18 14:35:25',NULL),(1301,100,21,'ford','galaxy','2011','1997','dcm3.5can',NULL,'140',2000,'1','fd11odh',NULL,'1582042933.','1582043596.cod',NULL,NULL,'C',525,'2020-02-18 16:34:38','2020-02-18 16:34:38',NULL),(1302,102,21,'mercedes','SPRINTER','anything','2.2l','NOT KNOWN',NULL,NULL,2021,'2','mtb927',NULL,'1582102234.','1582104266.cod',NULL,NULL,'C',526,'2020-02-19 09:24:32','2020-02-19 09:24:32',NULL),(1303,100,21,'skoda','octavia vrs','2007','1968','siemens ppd1.2',NULL,'170',2000,'2','c514ter',NULL,'1582106767.','1582107625.cod',NULL,NULL,'C',527,'2020-02-19 10:20:29','2020-02-19 10:20:29',NULL),(1304,100,20,'audi','a3 tdi','2008','2000','edc16+ u31/u34',NULL,'140',2000,'2','fy08nhh',NULL,'1582110448.','1582111209.cod',NULL,NULL,'C',528,'2020-02-19 11:20:12','2020-02-19 11:20:12',NULL),(1305,102,21,'toyota','auris','anything','1.4','bosch',NULL,NULL,2020,'2','af62 pdk',NULL,'1582122487.','1582127682.unq','tuning stage 1 dpf',NULL,'C',529,'2020-02-19 15:54:46','2020-02-19 15:54:46',NULL),(1306,102,21,'honda','crv','anything','1.6','bosch',NULL,NULL,2023,'2','nnm112',NULL,'1582124133.','1582126079.unq','DPF OFF',NULL,'C',530,'2020-02-19 15:28:05','2020-02-19 15:28:05',NULL),(1307,102,36,'porsche','cayenne','anything','3.0 v6','bosch',NULL,NULL,2021,'3','KZV210',NULL,'1582129256.','1582130699.unq','p0420/ p0430 / p0492 please check whats up',NULL,'C',531,'2020-02-19 16:45:10','2020-02-19 16:45:10',NULL),(1308,43,11,'Ford','Ranger','T6','2.2','SID208',NULL,'150',2023,'2','OY13 ZJZ','70,092','1582133618.2TDi 150Bhp _OY13 ZJZ_ Joe Kess Read SID208','1582136664.cod',NULL,'was shite','C',709,'2020-02-19 18:24:27','2020-02-19 18:24:27',NULL),(1309,100,20,'mini','roadster JCW','2015','1600','MEVD17.2.2',NULL,'211',2000,'2','JU11ALU',NULL,'1582134961.','1582141415.cod',NULL,NULL,'C',532,'2020-02-19 19:43:38','2020-02-19 19:43:38',NULL),(1310,43,11,'Mercedes','ML270','W163','2.7','EDC15',NULL,'163',2014,'3','OU54TLN','105,301','1582140695.','1582142818.cod',NULL,NULL,'C',710,'2020-02-19 20:07:04','2020-02-19 20:07:04',NULL),(1311,76,20,'audi','q3','2017','2000','edc17 c64',NULL,NULL,2000,'6','pl16lfw',NULL,'1582140722.','1583245924.cod','exhaust valve off and tune plsx',NULL,'C',533,'2020-03-03 14:33:32','2020-03-03 14:33:32',NULL),(1312,100,20,'jaguar','xfr d','2015','2179','edc17cp42',NULL,'200',2000,'3','wk65sdz',NULL,'1582194863.','1582199189.cod',NULL,NULL,'C',534,'2020-02-20 11:46:33','2020-02-20 11:46:33',NULL),(1313,19,15,'vauxhall','corsa','d','1.7dtr','denso',NULL,NULL,2017,'1','x',NULL,'1582203929.','1582205110.cod',NULL,NULL,'C',711,'2020-02-20 13:25:13','2020-02-20 13:25:13',NULL),(1314,19,11,'vw','tiguan','2nd','2.0tdi cffb','edc17c46',NULL,'140',2020,'2','m14uty',NULL,'1582205203.txt','1582211661.cod',NULL,NULL,'C',712,'2020-02-20 15:14:43','2020-02-20 15:14:43',NULL),(1315,76,32,'Audi','a6','2015','3000','cp44',NULL,'245',2025,'4','h20jse',NULL,'1582209646.','1582210350.cod','PO40300 egr fault',NULL,'C',535,'2020-02-20 14:52:34','2020-02-20 14:52:34',NULL),(1316,121,20,'seat','ibiza','6j','1600','simos pcr2.1',NULL,'105',2020,'1','de10 hln',NULL,'1582227423.6tdi-105bhp-hw-cayc-sw-03l906023bf-upgsw-03l906023bf-9971','1582232183.cod','dpf egr & tune plz J','refreash your page','C',536,'2020-02-20 20:56:33','2020-02-20 20:56:33',NULL),(1317,100,20,'vauxhall','corsa d','2014','1300','edc17c59',NULL,'75',2000,'1','sg14yxy',NULL,'1582278842.','1582312689.unq','DPF & EGR DELETE','ok new dpf egr only','C',537,'2020-02-21 19:18:13','2020-02-21 19:18:13',NULL),(1318,19,14,'landrover','evoque','1','2.2','edc17cp42',NULL,NULL,2000,'3','br08eng',NULL,'1582278951.','1582292320.unq',NULL,NULL,'C',713,'2020-02-21 13:38:42','2020-02-21 13:38:42',NULL),(1319,100,20,'vw','transporter','2011','1968','edc17cp20',NULL,'84',2000,'1','fn11ggj',NULL,'1582282214.','1582286181.cod',NULL,NULL,'C',538,'2020-02-21 11:58:57','2020-02-21 11:58:57',NULL),(1320,100,20,'audi','q5','2012','2000','EDC17C46',NULL,'177',2000,'2','sm62hkd',NULL,'1582285172.','1582287535.',NULL,NULL,'C',539,'2020-02-21 12:19:00','2020-02-21 12:19:00',NULL),(1321,29,14,'peugeout','expert','3','2.0','bosch',NULL,NULL,2019,'2','wjz4675',NULL,'1582299526.','1582300317.cod',NULL,NULL,'C',714,'2020-02-21 15:55:15','2020-02-21 15:55:15',NULL),(1322,76,20,'Mercedes','sprinter','2014','2200','crd3',NULL,'130',2024,'2','fj66tly',NULL,'1582299551.','1582303180.cod','DPF and egr off pls',NULL,'C',540,'2020-02-21 16:39:47','2020-02-21 16:39:47',NULL),(1323,100,20,'audi','a4','2009','1968','edc17cp20',NULL,'120',2000,'2','sw59htu',NULL,'1582303901.','1582305315.cod',NULL,NULL,'C',541,'2020-02-21 17:15:18','2020-02-21 17:15:18',NULL),(1324,100,20,'landrover','freelander','2005','1951','edc15c4',NULL,'111',2000,'1','hg55fmk',NULL,'1582310902.','1582312178.cod',NULL,NULL,'C',542,'2020-02-21 19:09:43','2020-02-21 19:09:43',NULL),(1325,43,11,'VW','Golk','7th','2.0TDi','EDC17C64',NULL,'184',2023,'2','DN63XBZ','72,158','1582373241.0TDi 184Bhp _DN63 XBZ_ Curt Kess VR File EDC17C64','1582374816.cod',NULL,NULL,'C',715,'2020-02-22 12:33:41','2020-02-22 12:33:41',NULL),(1326,100,20,'vw','transporter','2017','1968','dcm6.2v',NULL,'150',2000,'2','sj17pry',NULL,'1582376132.','1582377155.cod',NULL,NULL,'C',543,'2020-02-22 13:12:41','2020-02-22 13:12:41',NULL),(1327,70,11,'dfgdf','dfgdfg','dfgdfgdf','dfgdf','dfgfd',NULL,NULL,2023,'4','dfgdf',NULL,'1582382365.','1582382453.dll',NULL,NULL,'C',716,'2020-02-22 14:40:56','2020-02-22 14:40:56',NULL),(1328,29,11,'renault','trafic','1','1.9','bosch',NULL,'80',2012,'2','hh04 sty',NULL,'1582386514.','1582391370.cod',NULL,NULL,'C',717,'2020-02-22 17:09:33','2020-02-22 17:09:33',NULL),(1329,102,21,'isuzu','DMAX','anything','2.5','NOT KNOWN',NULL,NULL,2023,'1','mxk430',NULL,'1582532854.','1582542772.cod',NULL,NULL,'C',544,'2020-02-24 11:12:57','2020-02-24 11:12:57',NULL),(1330,45,11,'VW','Caddy','2018 (CU18 YWS)','2000','EDC17 C64',NULL,'74',2028,'1','CU18 YWS',NULL,'1582537711.','1582541635.cod',NULL,NULL,'C',718,'2020-02-24 10:53:56','2020-02-24 10:53:56',NULL),(1331,100,32,'vw','tiguan 4motion','2013','1968','EDC17C46',NULL,'140',2000,'2','nd13zra',NULL,'1582547257.','1582567432.cod',NULL,NULL,'C',545,'2020-02-24 18:03:58','2020-02-24 18:03:58',NULL),(1332,100,21,'ford','transit','2015','2198','SID209',NULL,'155',2000,'2','sh64azx',NULL,'1582551280.','1582568862.cod',NULL,NULL,'C',546,'2020-02-24 18:27:48','2020-02-24 18:27:48',NULL),(1333,19,11,'audi','a5','1','3.0tdi ccwa','edc17cp14',NULL,'238',2020,'3','bes122',NULL,'1582552246.','1582561354.cod',NULL,'OBD WRITE P501','C',719,'2020-02-24 16:22:53','2020-02-24 16:22:53',NULL),(1334,102,21,'isuzu','DMAX','anything','2.5','NOT KNOWN',NULL,NULL,2024,'2','men360',NULL,'1582561809.','1582568229.cod',NULL,NULL,'C',547,'2020-02-24 18:17:15','2020-02-24 18:17:15',NULL),(1335,100,20,'meredes','a200','2013','1796','delphi crd3.x can',NULL,'136',2000,'2','ma13fsd',NULL,'1582562576.','1582569353.cod','EGR DELETE','DELPHI CRD3 (EGR Actuator plug must be disconnected)','C',548,'2020-02-24 18:35:56','2020-02-24 18:35:56',NULL),(1336,45,15,'Ford','SMAX','2013 (AK13 KLL)','2000','Delphi DCM 3.5',NULL,NULL,2023,'3','AK13 KLL',NULL,'1582563641.','1582565271.cod',NULL,NULL,'C',720,'2020-02-24 17:27:55','2020-02-24 17:27:55',NULL),(1337,100,20,'ford','custom','2016','2198','SID209',NULL,'125',2000,'2','d8aev',NULL,'1582631302.','1582633296.cod',NULL,NULL,'C',549,'2020-02-25 12:21:41','2020-02-25 12:21:41',NULL),(1338,100,21,'mercedes','sprinter','2013','2143','delphi crd3.x can',NULL,'129',2000,'2','wn63bko',NULL,'1582646382.','1582647629.cod','EGR DELETE',NULL,'C',550,'2020-02-25 16:20:34','2020-02-25 16:20:34',NULL),(1339,102,53,'TOYOTA','HILUX','2','2.5','DENSO',NULL,'148',2018,'1','wn63bko',NULL,'1582650450.5org','1582650836.cod','120 KM',NULL,'C',551,'2020-02-25 17:13:59','2020-02-25 17:13:59',NULL),(1340,29,14,'renault','master','3','2.3','bosch',NULL,'130',2023,'2','lv13 lxg',NULL,'1582651206.','1582717587.cod','p0135 removal please',NULL,'C',721,'2020-02-26 11:46:31','2020-02-26 11:46:31',NULL),(1341,100,20,'bmw','m235i','2014','2979','MEVD17.2.G',NULL,'326',2000,'2','MW64DOH',NULL,'1582651371.','1582712999.cod','speed limiter removal',NULL,'C',552,'2020-02-26 10:30:07','2020-02-26 10:30:07',NULL),(1342,27,11,'MERCEDES','C250','MK1','2.1','DELPHI CRD3',NULL,'201',2024,'3','M888 DOW',NULL,'1582717453.','1582725091.cod',NULL,NULL,'C',722,'2020-02-26 13:51:45','2020-02-26 13:51:45',NULL),(1343,100,20,'vw','scirocco','2009','1968','edc17cp14',NULL,'140',2000,'4','bn09pjo',NULL,'1582719484.','1582724176.cod',NULL,NULL,'C',553,'2020-02-26 13:36:20','2020-02-26 13:36:20',NULL),(1344,43,11,'Mercedes','311','W906','2.1','EDC16CP31',NULL,'109',2018,'2','DK58XSU','372,331','1582724355.','1582725737.cod',NULL,NULL,'C',723,'2020-02-26 14:02:27','2020-02-26 14:02:27',NULL),(1346,19,11,'bmw','320i','f30','2.o','mevd17.2.8',NULL,'183',2024,'2','ly64eem',NULL,'1582812519.','1582813630.unq','ktag service mode',NULL,'C',724,'2020-02-27 14:27:14','2020-02-27 14:27:14',NULL),(1347,19,11,'saab','93','1','1.9tid','edc16',NULL,NULL,2018,'3','s1wcn',NULL,'1582816189.','1582818472.cod',NULL,NULL,'C',725,'2020-02-27 15:47:56','2020-02-27 15:47:56',NULL),(1348,102,21,'mercedes','vito','anything','2143','NOT KNOWN',NULL,NULL,2024,'2','nhe521',NULL,'1582874624.','1582881174.cod',NULL,NULL,'C',554,'2020-02-28 09:13:00','2020-02-28 09:13:00',NULL),(1349,100,20,'vw','t5','2013','1968','edc17cp20',NULL,'140',2000,'2','gk13wtp',NULL,'1582880473.','1582884926.cod',NULL,NULL,'C',555,'2020-02-28 10:15:30','2020-02-28 10:15:30',NULL),(1350,74,20,'VAUX','COMBO','MK4','1.3','MM',NULL,NULL,2024,'1','WR64AMX',NULL,'1582887407.','1583068043.cod','EGR & DPF OFF PLS & ECO TUNE',NULL,'C',556,'2020-03-01 13:07:27','2020-03-01 13:07:27',NULL),(1352,100,20,'citroen','ds3','2011','1560','edc17c10',NULL,'91',2000,'1','mk11syu',NULL,'1582906793.','1582925396.unq',NULL,NULL,'C',558,'2020-02-28 21:30:01','2020-02-28 21:30:01',NULL),(1353,102,20,'mercedes','e class','anything','2143','delphi',NULL,NULL,2023,'3','mtt862',NULL,'1582962200.','1582964873.cod',NULL,NULL,'C',559,'2020-02-29 08:27:57','2020-02-29 08:27:57',NULL),(1354,102,20,'porsche','maccan','3.0 v6s','2967','bosch',NULL,NULL,2025,'3','mkh214',NULL,'1582970185.','1582974760.unq','lack from 0',NULL,'C',560,'2020-02-29 11:12:44','2020-02-29 11:12:44',NULL),(1356,100,20,'vw','caddy','2013','1598','simos pcr 2.1',NULL,'102',2000,'4','ln13oab',NULL,'1582975567.','1582976688.cod','EGR DELETE',NULL,'C',562,'2020-02-29 11:44:55','2020-02-29 11:44:55',NULL),(1357,100,20,'range rover','evoque','2013','2179','edc17cp42',NULL,'190',2000,'3','lig6706',NULL,'1582984046.','1583158539.cod','EGR DELETE',NULL,'C',563,'2020-03-02 14:15:45','2020-03-02 14:15:45',NULL),(1358,19,14,'peugeot','308','7n','2.0hdi','dcm3.4',NULL,NULL,2018,'2','t21eap',NULL,'1583140444.','1583141345.cod',NULL,NULL,'C',726,'2020-03-02 09:29:19','2020-03-02 09:29:19',NULL),(1359,45,15,'Ford','Mondeo','Mk4 (MV11 YNE)','2000','Delphi DCM 3.5',NULL,NULL,2021,'2','MV11 YNE',NULL,'1583163192.','1583165820.cod',NULL,NULL,'C',727,'2020-03-02 16:17:04','2020-03-02 16:17:04',NULL),(1360,100,20,'vw','transporter','2007','1896','edc16+ u31/u34',NULL,'102',2000,'1','hd07bxp',NULL,'1583234125.','1583241644.cod',NULL,NULL,'C',564,'2020-03-03 13:20:47','2020-03-03 13:20:47',NULL),(1361,29,39,'audi','q5','3','2.0','bosch',NULL,'170',2024,'3','sb14 mlk',NULL,'1583236175.','1583236775.cod','add blue delete',NULL,'C',728,'2020-03-03 11:59:39','2020-03-03 11:59:39',NULL),(1362,100,20,'audi','a5','2007','2967','edc17cp04',NULL,'239',2000,'2','k30mhr',NULL,'1583247595.','1583250360.cod','SWIRL FLAP DELETE AND EGR DELETE',NULL,'C',565,'2020-03-03 15:46:07','2020-03-03 15:46:07',NULL),(1363,121,20,'mercedes','e350','x','350','edc17cp46',NULL,NULL,2027,'6','p5 eah',NULL,'1583247818.','1583255122.cod',NULL,NULL,'C',566,'2020-03-03 17:05:28','2020-03-03 17:05:28',NULL),(1364,29,11,'vauxhall','movano','3','2.3','bosch',NULL,'100',2024,'2','fl13 ods',NULL,'1583259633.','1583262921.cod',NULL,NULL,'C',729,'2020-03-03 19:15:28','2020-03-03 19:15:28',NULL),(1365,19,39,'NISSAN','navara','d321','2.3dci','sid310',NULL,NULL,2026,'3','ya66hnd',NULL,'1583317834.','1583321789.unq','ktag','didnt allow it as a navarra but wne t through as a master. suck it and see this one','C',730,'2020-03-04 11:38:49','2020-03-04 11:38:49',NULL),(1366,19,14,'ford','connect','1 fl','1.8tdci','sid202/sid803a',NULL,NULL,2022,'1','bx11upl',NULL,'1583318606.','1583324178.cod','kess',NULL,'C',731,'2020-03-04 12:16:20','2020-03-04 12:16:20',NULL),(1367,19,14,'skoda','yeti','2nd','2.0 cfha','edc17c46',NULL,NULL,2024,'1','ea63ns',NULL,'1583336676.txt','1583337948.cod',NULL,NULL,'C',732,'2020-03-04 16:05:51','2020-03-04 16:05:51',NULL),(1368,19,14,'audi','a1','1','1.6 cayc','pcr2.1',NULL,NULL,2022,'1','x',NULL,'1583339019.','1583342092.unq','this is the patched one, ktag service mode',NULL,'C',733,'2020-03-04 17:14:54','2020-03-04 17:14:54',NULL),(1369,76,20,'vw','caddy','2016','2000','edc17 c64',NULL,'102',2026,'1','fg16ywx',NULL,'1583354095.','1583357076.cod','VMAX 75MPH OFF PLS',NULL,'C',567,'2020-03-04 21:24:45','2020-03-04 21:24:45',NULL),(1370,29,14,'mercedes','sprinter','3','2.2','crd 3',NULL,'130',2025,'2','kw15 szc',NULL,'1583355746.',NULL,NULL,'FILE IS STANDARD','C',734,'2020-03-04 22:21:50','2020-03-04 22:21:50',NULL),(1371,45,15,'BMW','320D','E93 (CK08 RDX)','2000','EDC17 CP02',NULL,'174',2018,'3','CK08 RDX',NULL,'1583399367.','1583401439.cod',NULL,NULL,'C',735,'2020-03-05 09:44:10','2020-03-05 09:44:10',NULL),(1372,100,20,'vw','caravelle t4','2000','2461','edc15vm+',NULL,'102',2000,'1','x187eap',NULL,'1583403271.','1583406617.cod',NULL,NULL,'C',568,'2020-03-05 11:10:20','2020-03-05 11:10:20',NULL),(1373,19,14,'landrover','evoque','1st','2.2','edc17cp42',NULL,NULL,2024,'2','v2gnj',NULL,'1583416518.','1583417627.unq',NULL,NULL,'C',736,'2020-03-05 14:13:50','2020-03-05 14:13:50',NULL),(1374,100,20,'ford','connect','2014','1560','sid807evo',NULL,'75',2000,'1','py14hnx',NULL,'1583419246.','1583420420.cod',NULL,NULL,'C',569,'2020-03-05 15:00:27','2020-03-05 15:00:27',NULL),(1375,45,11,'BMW','330','E91 (YH06 YFK)','3000','EDC16',NULL,NULL,2016,'3','YH06 YFK',NULL,'1583424496.','1583427829.cod',NULL,NULL,'C',737,'2020-03-05 17:03:55','2020-03-05 17:03:55',NULL),(1376,98,34,'AUDI','RS4','B7','4200 V8','MED9.1',NULL,'420',2015,'5','J19779',NULL,'1583430046.','1583433332.dec','FULL EXHAUST DCAT , RAMAIR PANEL FILTER , P2004 , P2015, P2020','this engine is not much tunable without extensive mods. Pulley is a good upgrade :)\r\nI have removed the flaps properly not just codes>\r\nDecat Mod comlpeted.\r\nrev limit up\r\nVmax UP\r\nTuned best we can do','C',738,'2020-03-13 05:51:03','2020-03-13 05:51:03',NULL),(1377,100,20,'vw','tiguan 4motion','2011','1968','EDC17C46 CAN',NULL,'170',2000,'2','ku11cdn',NULL,'1583486236.','1583488736.cod',NULL,NULL,'C',570,'2020-03-06 09:58:59','2020-03-06 09:58:59',NULL),(1379,100,20,'vw','golf r','2015','1984','simos 18.1',NULL,'300',2000,'2','p90rkn',NULL,'1583501311.','1583504044.cod',NULL,NULL,'C',571,'2020-03-06 14:14:07','2020-03-06 14:14:07',NULL),(1380,45,15,'VW','Caddy','2013 GU62 YBO','1.6','simos pcr2.1 can',NULL,NULL,2023,'1','GU62 YBO',NULL,'1583510348.','1583511395.cod',NULL,NULL,'C',739,'2020-03-06 16:16:39','2020-03-06 16:16:39',NULL),(1381,27,11,'VW','T5','MK1','1.9','BOSCH EDC16',NULL,'84',2017,'1','LR07 HUY',NULL,'1583512065.','1583513630.cod',NULL,NULL,'C',740,'2020-03-06 16:53:55','2020-03-06 16:53:55',NULL),(1382,100,20,'ford','custom','2014','2200','sid208',NULL,'125',2000,'1','sf64jyy',NULL,'1583514643.','1583517080.cod',NULL,NULL,'C',572,'2020-03-06 17:51:24','2020-03-06 17:51:24',NULL),(1383,100,20,'volvo','v50','2006','1998','sid803a',NULL,'136',2000,'1','vx06xxa',NULL,'1583515199.','1583517882.cod',NULL,NULL,'C',573,'2020-03-06 18:04:49','2020-03-06 18:04:49',NULL),(1384,29,11,'volkswagen','golf','3','2.0','bosch',NULL,'181',2025,'4','m700 gtd',NULL,'1583698675.','1583701235.cod',NULL,NULL,'C',741,'2020-03-08 21:00:38','2020-03-08 21:00:38',NULL),(1385,100,20,'bmw','320d','2014','1995','edc7c50',NULL,'184',2000,'2','yd14wso',NULL,'1583752908.','1583757957.cod',NULL,NULL,'C',574,'2020-03-09 12:46:00','2020-03-09 12:46:00',NULL),(1386,121,20,'vw','golf','6','1600','simospcr2.1',NULL,NULL,2020,'1','mk10 ujs',NULL,'1583758964.6tdi-hw-cayc-sw-03l906023dq-upgsw-03l906023dq-8800','1583762051.cod','small tune & egr plz J',NULL,'C',575,'2020-03-09 13:54:13','2020-03-09 13:54:13',NULL),(1387,94,14,'toyota','dyna','4','350','denso',NULL,NULL,2000,'1','snz2774',NULL,'1583771084.','1583776742.cod','fault code delete p2463','disconnect the 5th injector if it has one\r\n\r\nim pretty sure it might need a special K line toyota cable to write this one.\r\n A lad in Comber has mine. if you need it give him a shout','C',742,'2020-03-09 17:59:12','2020-03-09 17:59:12',NULL),(1388,102,21,'mercedes','e class','220','2.2l','delphi',NULL,NULL,2020,'3','mbb943',NULL,'1583828923.','1583835470.cod',NULL,NULL,'C',576,'2020-03-10 10:18:02','2020-03-10 10:18:02',NULL),(1389,100,20,'audi','a3','2011','1598','simos pcr 2.1',NULL,'105',2000,'1','re11exx',NULL,'1583832603.','1583834607.cod','DPF & EGR DELETE',NULL,'C',577,'2020-03-10 10:03:29','2020-03-10 10:03:29',NULL),(1390,102,21,'isuzu','grafter','euroiv','3l','TRANSTRON',NULL,NULL,2018,'1','nk58 hcy',NULL,'1583834012.','1583837685.cod','please check whats up',NULL,'C',578,'2020-03-10 10:54:51','2020-03-10 10:54:51',NULL),(1391,100,20,'ford','custom','2019','2000','sid211',NULL,'130',2000,'2','wm19dyd',NULL,'1583837817.','1583840982.cod',NULL,NULL,'C',579,'2020-03-10 11:49:46','2020-03-10 11:49:46',NULL),(1392,19,11,'vw','transporter','t5','2.5','edc16u31/34',NULL,'130',2018,'2','re58vuk',NULL,'1583841010.','1583843253.cod',NULL,NULL,'C',743,'2020-03-10 12:27:37','2020-03-10 12:27:37',NULL),(1393,100,20,'nissan','navara','2009','2488','DENSO H1',NULL,'171',2000,'3','LL58YWM',NULL,'1583859227.','1584003547.cod',NULL,NULL,'C',580,'2020-03-12 08:59:10','2020-03-12 08:59:10',NULL),(1394,100,20,'vw','caddy','2011','1600','simos pcr 2.1',NULL,'102',2000,'1','yf11luj',NULL,'1583868587.','1583869552.cod','EGR DELETE',NULL,'C',581,'2020-03-10 19:45:55','2020-03-10 19:45:55',NULL),(1395,100,20,'mercedes','sprinter','319','2987','edc17cp46',NULL,'190',2000,'2','bd19owr',NULL,'1583919342.','1583928502.cod',NULL,NULL,'C',582,'2020-03-11 12:08:32','2020-03-11 12:08:32',NULL),(1396,102,32,'mitsubishi','cunter','anything','3l','bosch',NULL,NULL,2022,'3','nmn424',NULL,'1583921018.','1584360776.unq','please check whats up for fault codes','BOSCH EDC17CP52 (EGR Actuator plug must be disconnected)','C',583,'2020-03-16 12:13:07','2020-03-16 12:13:07',NULL),(1397,30,11,'FIAT','DOBLO','2017','1.3D','MJ9DF',NULL,'94',2027,'1','SM17UBN',NULL,'1583931974.','1583933012.cod',NULL,NULL,'C',744,'2020-03-11 13:23:36','2020-03-11 13:23:36',NULL),(1398,19,15,'volvo','v70','2nd','2.5 d5','edc16c31',NULL,NULL,2016,'2','sm06lsd',NULL,'1583932257.','1583933573.cod',NULL,NULL,'C',745,'2020-03-11 13:32:56','2020-03-11 13:32:56',NULL),(1399,100,20,'vauxhall','insignia','2013','1956','edc17c59',NULL,'163',2000,'2','vk63vdo',NULL,'1583935876.','1583939734.unq','EGR DELETE',NULL,'C',584,'2020-03-11 15:15:38','2020-03-11 15:15:38',NULL),(1400,121,20,'citroen','c5','2','2000','delphi dcm3.4',NULL,NULL,2018,'2','ujr 549',NULL,'1583936374.0hdi-hw-9663548180-sw-9967098780-upgsw-9667098780','1583941413.cod','dpf egr & tune plz J',NULL,'C',585,'2020-03-11 15:43:39','2020-03-11 15:43:39',NULL),(1401,94,14,'toyota','dyna','4','d4d','denso',NULL,NULL,2000,'1','snz2774',NULL,'1583941082.cod','1583946334.cod','p0031 code delete please',NULL,'C',746,'2020-03-11 17:05:40','2020-03-11 17:05:40',NULL),(1402,27,11,'FORD','TRANSIT','MK7','2.2','CONTI SID208',NULL,NULL,2022,'2','A14LTC',NULL,'1583944804.','1583948301.cod',NULL,'added vmax','C',747,'2020-03-11 17:38:25','2020-03-11 17:38:25',NULL),(1403,94,39,'iveco','eurocargo','4','75e16','bosch',NULL,NULL,2000,'1','yx09axu',NULL,'1583945201.','1583949129.cod',NULL,'ADBLUE UNIT AND PUMP MUST BE DISCONNECTED. NOx SENSORS CAN BE DISCONNECTED!','C',748,'2020-03-11 17:52:17','2020-03-11 17:52:17',NULL),(1404,76,20,'FORD','RANGER','2017','3200','sid209',NULL,NULL,2000,'2','br14nda',NULL,'1584008414.','1584011805.cod','purely for towing',NULL,'C',586,'2020-03-12 11:16:52','2020-03-12 11:16:52',NULL),(1405,121,20,'audi','a6','2','2000','edc17 cb 02 05 01 c16.00 p531',NULL,NULL,2018,'2','j60 snd',NULL,'1584012505.0tdi-hwver-03l906022fg-upgsw-03l906019ag-5423','1584014671.cod',NULL,NULL,'C',587,'2020-03-12 12:04:34','2020-03-12 12:04:34',NULL),(1406,24,11,'land rover','rangerover evoque','1','2.2','bocsh',NULL,NULL,2023,'3','mb52bag',NULL,'1584018665.','1584021568.cod',NULL,NULL,'C',749,'2020-03-12 14:00:09','2020-03-12 14:00:09',NULL),(1407,100,32,'vw','beetle','2013','2000','EDC17C46',NULL,'140',2000,'2','pf63kvp',NULL,'1584026418.txt','1584026713.cod',NULL,NULL,'C',588,'2020-03-12 15:26:32','2020-03-12 15:26:32',NULL),(1408,100,20,'ford','custom','2018','2000','sid211',NULL,'130',2000,'2','sn68ufl',NULL,'1584031247.','1587209299.cod',NULL,'FIXED','C',589,'2020-04-18 11:28:22','2020-04-18 10:28:22',NULL),(1409,100,20,'ford','custom','2019','2000','sid211',NULL,'130',2000,'2','pv19nyn',NULL,'1584031701.','1587207452.cod',NULL,'NEW FILE FIXED','C',590,'2020-04-18 10:57:45','2020-04-18 09:57:45',NULL),(1410,100,20,'ford','custom','2019','2000','sid211',NULL,'130',2000,'2','lm19ccj',NULL,'1584032697.','1587208792.cod',NULL,'FIXED','C',591,'2020-04-18 11:19:54','2020-04-18 10:19:54',NULL),(1411,100,20,'ford','custom','2018','2000','sid211',NULL,'130',2000,'2','wn68eta',NULL,'1584037707.','1587208333.cod',NULL,'FIXED','C',592,'2020-04-18 11:13:17','2020-04-18 10:13:17',NULL),(1412,121,21,'ford','transit','custom','2200','sid209',NULL,'125',2025,'2','cr15 cuz (private plate)',NULL,'1584049470.2tdci-hw-bk2a-12b684-bc-sw-bk21-12a650-ac-upgsw-bk21-14c204-bmp-swver-ds-pbk21-12a650-bab','1584099139.cod','already tuned & egr off this file',NULL,'C',593,'2020-03-13 11:32:54','2020-03-13 11:32:54',NULL),(1413,43,14,'VW','Tiguan','MK 1 (5N1)','2.0','EDC17CP14','Diesel','140',2019,'5','LC59VVD','103,452','1584120308.0TDi 140Bhp _LC59 VVD_ Ben Kess VR File EDC17CP14','1584122014.cod','P0403','needs unplugging lol','C',750,'2020-03-13 17:55:41','2020-03-13 17:55:41',NULL),(1414,81,20,'ford','transit','2010','2.2tdci','ECM','Diesel','85',2020,'1','ND60MXC',NULL,'1584177629.','1584180105.cod','STAGE 1',NULL,'C',594,'2020-03-14 10:01:50','2020-03-14 10:01:50',NULL),(1415,45,11,'Ford','Transit','Custom (HN65 XOW)','2.2','SID 208','Diesel',NULL,2025,'2','HN65 XOW',NULL,'1584178583.','1584181835.cod',NULL,NULL,'C',751,'2020-03-14 10:30:38','2020-03-14 10:30:38',NULL),(1416,45,11,'Ford','Transit','custom (KV16 ZNL)','2.2','SID208','Diesel',NULL,2026,'2','KV16 ZNL',NULL,'1584179150.','1584181037.cod',NULL,NULL,'C',752,'2020-03-14 10:23:05','2020-03-14 10:23:05',NULL),(1417,100,33,'ford','galaxy','2017','2000','delphi dcm6.x','Diesel','150',2000,'3','c15atg',NULL,'1584180778.','1584191061.cod',NULL,NULL,'C',595,'2020-03-14 13:04:28','2020-03-14 13:04:28',NULL),(1418,100,20,'vauxhall','astra','2007','1700','edc','Diesel','100',2000,'2','sb07cwp',NULL,'1584184593.txt','1584184764.cod',NULL,NULL,'C',596,'2020-03-14 11:19:31','2020-03-14 11:19:31',NULL),(1419,100,20,'vauxhall','mokka turbo','2014','1400','delco E78','Diesel','140',2000,'2','v14 alt',NULL,'1584353023.','1584357037.cod',NULL,NULL,'C',597,'2020-03-16 11:10:42','2020-03-16 11:10:42',NULL),(1420,121,32,'mitsubishi','l200','2','2500','denso','Diesel',NULL,2022,'1','nx12yjo',NULL,'1584370359.','1584371571.cod','dpf & egr',NULL,'C',598,'2020-03-16 15:12:53','2020-03-16 15:12:53',NULL),(1421,100,20,'mercedes','clc220 cdi','2008','2148','edc16c2','Diesel','150',2000,'3','mm03ell',NULL,'1584373332.','1584375208.cod',NULL,NULL,'C',599,'2020-03-16 16:13:30','2020-03-16 16:13:30',NULL),(1422,76,20,'ford','transit','custom','2200','SID208','Diesel',NULL,2026,'2','ys16pnx',NULL,'1584375282.','1584379216.cod',NULL,NULL,'C',600,'2020-03-16 17:20:25','2020-03-16 17:20:25',NULL),(1423,100,20,'vw','passat','2006','1900','edc16+ u31/u34','Diesel','105',2000,'1','ld56bpo',NULL,'1584379711.','1584380108.cod',NULL,NULL,'C',601,'2020-03-16 17:35:12','2020-03-16 17:35:12',NULL),(1424,100,20,'ford','transit','2012','2200','sid208','Diesel','100',2000,'2','sk12rvt',NULL,'1584383262.','1584385400.cod','DPF & EGR DELETE',NULL,'C',602,'2020-03-16 19:03:23','2020-03-16 19:03:23',NULL),(1425,76,20,'ford','transit','mk7','2200','SID208','Diesel','125',2000,'1','gx13mzd',NULL,'1584436133.','1584443001.cod','Tune DPF off and EGR off pls',NULL,'C',603,'2020-03-17 11:03:29','2020-03-17 11:03:29',NULL),(1426,19,14,'landrover','range rover l322','l322','3.8tdv8','sid201','Diesel',NULL,2017,'3','au07lnd',NULL,'1584438625.','1584439968.cod',NULL,NULL,'C',753,'2020-03-17 10:12:50','2020-03-17 10:12:50',NULL),(1427,43,11,'Saab','9-3','MK1','1.9','EDC16+CAN','Diesel','180',2020,'2','AF10 YXK','160,456','1584441432.9TTDi 180Bhp _AF10 YXK_ Darren Kess Read EDC16_CAN P106','1584442554.cod','No fault codes in Engine ECU','messed with already. dpf egr and map with \r\n\r\nall DTC Tables removed previously, \r\n\r\nBTW these thing smoke like a bitch on a good day lol :D','C',754,'2020-03-17 12:30:41','2020-03-17 12:30:41',NULL),(1428,76,36,'OPEL','CORSA','D','12XEP','DELCPO E83','Petrol',NULL,2000,'1','DE61MOF',NULL,'1584445770.','1584445916.cod',NULL,NULL,'C',604,'2020-03-17 11:51:59','2020-03-17 11:51:59',NULL),(1429,76,36,'RENAULT','TRAFIC','2','2000','CC17C42','Diesel',NULL,2024,'2','SC14ZNR',NULL,'1584446074.','1584447421.cod','DF056',NULL,'C',605,'2020-03-17 12:17:05','2020-03-17 12:17:05',NULL),(1430,100,20,'audi','a4','2006','2000','edc16+ u31/u34','Diesel','140',2000,'2','ca56osp',NULL,'1584470540.','1584474745.cod','EGR DELETE',NULL,'C',606,'2020-03-17 19:52:32','2020-03-17 19:52:32',NULL),(1431,19,14,'ford','transit connect','mk2','1.6tdci','sid807 evo','Diesel',NULL,2024,'1','va64dgu',NULL,'1584526394.','1584527125.cod',NULL,NULL,'C',755,'2020-03-18 10:25:31','2020-03-18 10:25:31',NULL),(1432,100,20,'audi','a6','2008','2000','edc16+ u31/u34','Diesel','140',2000,'2','hn08',NULL,'1584526998.','1584531740.cod','EGR DELETE',NULL,'C',607,'2020-03-18 11:42:26','2020-03-18 11:42:26',NULL),(1433,100,20,'vw','caddy','2014','1600','simos pcr 2.1','Diesel','102',2000,'1','de64pjv',NULL,'1584538224.','1584540284.cod','EGR DELETE',NULL,'C',608,'2020-03-18 14:04:47','2020-03-18 14:04:47',NULL),(1434,19,14,'bmw','116i','e81','1.6 n46b16','mev17.4.6 xrom','Petrol',NULL,2017,'5','lf5248',NULL,'1584546633.','1584609100.unq','2842 & 2845 off','BETA solution. Please test and feed back','C',756,'2020-03-19 09:12:07','2020-03-19 09:12:07',NULL),(1435,100,20,'ford','custom','2015','2200','sid209','Diesel','125',2000,'2','ym15zmx',NULL,'1584552245.','1584553652.cod','EGR DELETE',NULL,'C',609,'2020-03-18 17:47:50','2020-03-18 17:47:50',NULL),(1436,121,21,'ford','transit','7','2200','sid208','Diesel',NULL,2022,'2','mv12 yyu',NULL,'1584610668.2tdci-hw-cc11-12b684-ab-sw-cc11-12a650-ab-upgsw-cc11-14c204-elr-swver-ds-cc1-12a650-cak','1584611741.cod','dpf & egr plz J',NULL,'C',610,'2020-03-19 09:55:44','2020-03-19 09:55:44',NULL),(1437,76,20,'RENAULT','trafic','2','2000','edc16+','Diesel','90',2000,'1','ma60lcp',NULL,'1584614643.','1584617293.cod','egr and tune pls',NULL,'C',611,'2020-03-19 11:28:17','2020-03-19 11:28:17',NULL),(1438,35,14,'audi','a4','b7','2000','edc16','Diesel',NULL,2016,'1','yy06kua',NULL,'1584617225.0','1584617970.cod',NULL,NULL,'C',757,'2020-03-19 11:39:37','2020-03-19 11:39:37',NULL),(1439,102,21,'mercedes','SPRINTER','906','2.2l','delphi','Diesel',NULL,2023,'3','nem130',NULL,'1584621828.','1584624045.cod','651 engine',NULL,'C',612,'2020-03-19 13:20:49','2020-03-19 13:20:49',NULL),(1440,102,21,'isuzu','grafter','anything','3l','TRANSTRON','Diesel',NULL,2022,'1','npp687',NULL,'1584630152.','1584632074.cod','dpf egr dtc check whats up 110kw',NULL,'C',613,'2020-03-19 15:34:44','2020-03-19 15:34:44',NULL),(1441,19,14,'landrover','freelander','2nd','2.2','edc16','Diesel',NULL,2017,'3','gf57ymv',NULL,'1584631432.','1584632154.cod',NULL,NULL,'C',758,'2020-03-19 15:35:59','2020-03-19 15:35:59',NULL),(1442,100,20,'ford','custom','2014','2200','sid208','Diesel','100',2000,'2','gk05gaz',NULL,'1584646765.','1584712956.cod','DPF & EGR DELETE',NULL,'C',614,'2020-03-20 14:02:40','2020-03-20 14:02:40',NULL),(1443,100,33,'ford','custom','2015','2200','sid209','Diesel','100',2000,'2','bn65xrc',NULL,'1584647634.','1584712756.cod','EGR DELETE - SPEED LIMITER REMOVAL',NULL,'C',615,'2020-03-20 14:02:05','2020-03-20 14:02:05',NULL),(1444,102,21,'totota','yaris','d4d','1.4','bosch','Diesel',NULL,2024,'2','mem509',NULL,'1584694254.','1584698831.unq','covid19 pro',NULL,'C',616,'2020-03-20 10:07:16','2020-03-20 10:07:16',NULL),(1445,19,11,'bmw','325d','f31','n47','edc17cp45 xrom','Diesel','218',2015,'Automatic Transmission','aas16',NULL,'1584696607.','1584700310.unq',NULL,NULL,'C',759,'2020-03-20 10:32:00','2020-03-20 10:32:00',NULL),(1446,100,20,'seat','ibiza fr','2005','1896','edc15p+','Diesel','130',2000,'2','af05kjx',NULL,'1584714108.','1584716448.cod','de-cat - egr delete - popcorn - hardcut limiter - launch control - brake boost',NULL,'C',617,'2020-03-20 15:00:54','2020-03-20 15:00:54',NULL),(1448,100,20,'ford','focus','2012','998','med17.0.1','Diesel','100',2000,'1','nv62hbk',NULL,'1584716024.','1584719251.cod',NULL,NULL,'C',619,'2020-03-20 15:47:41','2020-03-20 15:47:41',NULL),(1449,100,20,'vuxhall','mokka','2013','1686','ac delco e87','Diesel','130',2000,'2','px63rxs',NULL,'1584717921.','1584723678.cod',NULL,NULL,'C',620,'2020-03-20 17:02:43','2020-03-20 17:02:43',NULL),(1450,19,14,'renault','master','3','2.3','edc17c11','Diesel','150',2021,'2','spa274n',NULL,'1584718257.','1584719680.cod','p1650 egr cooler fault',NULL,'C',760,'2020-03-20 15:54:45','2020-03-20 15:54:45',NULL),(1451,121,21,'seat','leon','2','2000','siemens ppd1.2','Diesel','170',2017,'2','bn57 yaj',NULL,'1584725432.0tdi-sw-6576286135-upgsw-03g906018dt-0431','1584782142.cod','this is previously tuned apparently... dpf egr & check / improve tune plz J',NULL,'C',621,'2020-03-21 09:15:46','2020-03-21 09:15:46',NULL),(1452,100,20,'ford','custom','2018','2000','sid211','Diesel','130',2000,'2','ct68gzl',NULL,'1584781761.','1584785579.cod','EGR DELETE','TEST THAT PLEASE','C',622,'2020-03-21 10:13:10','2020-03-21 10:13:10',NULL),(1453,100,20,'ford','transit','2017','2000','sid211','Diesel','130',2000,'2','sf17elg',NULL,'1584783181.','1584790587.cod',NULL,NULL,'C',623,'2020-03-21 11:36:39','2020-03-21 11:36:39',NULL),(1454,100,20,'ford','focus st2 tdci','2016','2000','delphi dcm6.x','Diesel','185',2000,'2','n300ele',NULL,'1584784248.','1584787847.cod','EGR DELETE',NULL,'C',624,'2020-03-21 10:50:49','2020-03-21 10:50:49',NULL),(1455,100,20,'vw','t6','2015','1968','edc17cp20','Diesel','102',2000,'1','yb65nxa',NULL,'1584785358.','1584791047.cod','EGR DELETE',NULL,'C',625,'2020-03-21 11:44:18','2020-03-21 11:44:18',NULL),(1456,100,20,'land rover','discovery 4','2010','2993','edc17cp11','Diesel','245',2000,'3','yd10czb',NULL,'1584787259.','1584790063.unq','EGR DELETE',NULL,'C',626,'2020-03-21 11:27:50','2020-03-21 11:27:50',NULL),(1457,76,20,'ford','mondeo','2012','2000','dcm3.5','Diesel',NULL,2022,'2','ek12nby',NULL,'1584794196.','1584795377.cod','dpf and tune pls',NULL,'C',627,'2020-03-21 12:56:21','2020-03-21 12:56:21',NULL),(1458,76,20,'TOYOTA','HILUX','2015','3000','>>>','Diesel',NULL,2025,'3','cv15agx',NULL,'1584913798.txt','1584958685.cod',NULL,NULL,'C',628,'2020-03-23 10:18:13','2020-03-23 10:18:13',NULL),(1459,45,15,'Ford','Transit','Custom (DX15 XKD)','2200','SID 208','Diesel',NULL,2025,'2','DX15 XKD',NULL,'1584960585.','1584966649.cod',NULL,NULL,'C',761,'2020-03-23 12:33:34','2020-03-23 12:33:34',NULL),(1460,121,20,'ford','transit','7','2400','vistion dcu102','Diesel',NULL,2020,'1','nj10tzz',NULL,'1584962755.4tdci-hw-8c11-12a650-jj-hwver-6c11-12b684-ac-sw-6c11-12k532-vh-upgsw-8c11-12a650-jj','1584965434.cod','egr & tune plz',NULL,'C',629,'2020-03-23 12:10:38','2020-03-23 12:10:38',NULL),(1461,81,20,'bmw','118i','2018','1.5','MEVD17','Diesel','134',2028,'2','YB18EPD',NULL,'1585051195.txt','1585056149.cod','STAGE 1PERFORMANCE',NULL,'C',630,'2020-03-24 13:22:34','2020-03-24 13:22:34',NULL),(1462,100,33,'izuzu','rodeo','2009','2499','transtron 4jxx','Diesel','136',2000,'1','sy59lme',NULL,'1585052339.','1585065127.cod',NULL,NULL,'C',631,'2020-03-24 15:52:11','2020-03-24 15:52:11',NULL),(1463,121,20,'ford','mondildo','4','2000','dcm 3.5 can','Diesel',NULL,2021,'2','k900 awt',NULL,'1585127887.0tdci-hw-bg91-12a650-fge-ver-bg91-12a650-nf-sw-bg91-14c204-fge-swver-3828sa40800152','1585131335.cod',NULL,NULL,'C',632,'2020-03-25 10:15:45','2020-03-25 10:15:45',NULL),(1464,45,34,'Mini','Cooper Works','R56 (FY58 CZG)','1600','MED17','Diesel',NULL,2018,'2','FY58 CZG',NULL,'1585129052.','1585131795.cod',NULL,NULL,'C',762,'2020-03-25 10:23:18','2020-03-25 10:23:18',NULL),(1465,102,21,'toyota','proace','van','1560','bosch','Diesel',NULL,2025,'1','nnt 752',NULL,'1585210455.','1585212066.unq','p242f diesel part filter restriction ash accumulation',NULL,'C',633,'2020-03-26 08:41:13','2020-03-26 08:41:13',NULL),(1466,30,11,'BMW','2 SERIES','2016','220D','EDC17C50','Diesel','188',2026,'3','HIG97',NULL,'1585314718.','1585316556.cod',NULL,NULL,'C',763,'2020-03-27 13:42:40','2020-03-27 13:42:40',NULL),(1467,100,20,'ford','fiesta st','2014','1596','med17.0.1','Diesel','182',2000,'2','ey14gbf',NULL,'1585316321.','1585402585.cod',NULL,NULL,'C',634,'2020-03-28 13:36:33','2020-03-28 13:36:33',NULL),(1468,100,20,'audi','a3','2014','1968','edc17c64 can','Diesel','150',2000,'2','re14hzn',NULL,'1585319436.','1585321047.cod',NULL,NULL,'C',635,'2020-03-27 14:57:33','2020-03-27 14:57:33',NULL),(1469,100,20,'nissan','qashqai','2015','1598','edc17c84','Diesel','130',2000,'2','vn65yrm',NULL,'1585404475.','1585408077.cod',NULL,NULL,'C',636,'2020-03-28 15:08:07','2020-03-28 15:08:07',NULL),(1470,100,20,'skoda','fabia vrs','2004','1896','edc15p+','Diesel','130',2000,'2','sj54hna',NULL,'1585405841.','1585409012.cod','EGR DELETE - hardcut limiter - smoke limitation removed',NULL,'C',637,'2020-03-28 15:23:36','2020-03-28 15:23:36',NULL),(1471,100,20,'mercedes','slk200','2010','1796','SIM4LKE','Petrol','184',2000,'3','ek10ykz',NULL,'1585497499.','1586956712.cod',NULL,NULL,'C',638,'2020-04-15 13:18:37','2020-04-15 12:18:37',NULL),(1472,45,11,'Seat','<NAME>','2014 (NV64 CSZ)','2000','Simos18','Petrol','280',2024,'4','NV64 CSZ',NULL,'1585567590.','1585569644.cod',NULL,'stage 2 with P&B on sport. Can decat if he wishes','C',764,'2020-03-30 12:01:07','2020-03-30 11:01:07',NULL),(1473,94,15,'toyota','dyna','4','d4d','denso','Diesel',NULL,2000,'1','snz7932',NULL,'1585569549.','1585647055.cod','as discussed a balls of a job or as we say cowboy reversal','here is your mod file. DPF off','C',765,'2020-03-31 09:32:03','2020-03-31 08:32:03',NULL),(1474,45,15,'vw','crafter','YY61 LSK','2000 CR','EDC17 CP54','Diesel',NULL,2021,'2','YY61 LSK',NULL,'1585589645.','1585590583.unq',NULL,'EGR Actuator plug must be disconnected','C',766,'2020-03-30 17:50:38','2020-03-30 16:50:38',NULL),(1475,24,14,'jag','s type','2','2.7','siemans','Diesel',NULL,2018,'3','s999grg',NULL,'1585588341.','1585590330.cod',NULL,'need unplugging','C',767,'2020-03-30 17:45:43','2020-03-30 16:45:43',NULL),(1476,45,15,'VW','Crafter','2011 (YD61 VKU)','2000','EDC17 CP54','Diesel',NULL,2021,'2','YD61 VKU',NULL,'1585667458.','1585670990.cod',NULL,'full file , no problems','C',768,'2020-03-31 16:10:14','2020-03-31 15:10:14',NULL),(1477,100,20,'mercades','c350','w204','3.0l','edc17','Diesel','2',2022,'3','km61uuh',NULL,'1585907284.','1586430414.cod',NULL,'ok with dpf delete tune','C',639,'2020-04-09 11:07:20','2020-04-09 10:07:20',NULL),(1478,100,20,'bmw','f30','320d','2.0l','edc17','Diesel','2',2022,'3','ef15xnj',NULL,'1585914322.','1585914368.cod',NULL,NULL,'C',640,'2020-04-03 11:46:12','2020-04-03 10:46:12',NULL),(1479,35,14,'vw','tiguan','1','2.0','edc17','Diesel',NULL,2018,'1','rf08vmz',NULL,'1585922797.','1585923827.cod','01027 code listed',NULL,'C',769,'2020-04-03 14:23:50','2020-04-03 13:23:50',NULL),(1481,100,20,'seat','ibiza fr','2016','1200','med 17.5.25','Petrol','110',2000,'2','sm16mvw',NULL,'1586167254.','1586169059.cod',NULL,NULL,'C',641,'2020-04-06 10:31:02','2020-04-06 09:31:02',NULL),(1482,100,20,'vauxhall','insignia','2013','2000','edc17c59','Diesel','140',2000,'2','fp63tnx',NULL,'1586167421.','1586168224.unq','DPF DELETE',NULL,'C',642,'2020-04-06 10:17:07','2020-04-06 09:17:07',NULL),(1483,19,15,'lexus','is220d','2nd','2.2','denso','Diesel',NULL,2017,'1','x',NULL,'1586168332.cod','1586170142.cod','already had a egr off, original file is 544','unplug 5th injector','C',770,'2020-04-06 10:50:24','2020-04-06 09:50:24',NULL),(1484,100,32,'ford','focus','2012','1560','sid807evo','Diesel','95',2000,'2','rj61ulf',NULL,'1586174024.','1586174839.cod',NULL,NULL,'C',643,'2020-04-06 12:07:22','2020-04-06 11:07:22',NULL),(1485,29,11,'renault','terafic','3','1.9','bosch','Diesel','80',2014,'1','fez 9980',NULL,'1586177431.','1586179660.cod',NULL,NULL,'C',771,'2020-04-06 13:27:43','2020-04-06 12:27:43',NULL),(1486,100,20,'ford','fiesta','2009','1399','SID206','Diesel','68',2000,'1','mw09ffk',NULL,'1586254147.','1586256607.cod',NULL,NULL,'C',644,'2020-04-07 10:50:18','2020-04-07 09:50:18',NULL),(1487,100,20,'ford','fiesta st','2017','1600','med17.0.1','Diesel','182',2000,'2','py17fmd',NULL,'1586258210.','1586259716.cod',NULL,NULL,'C',645,'2020-04-07 11:44:26','2020-04-07 10:44:26',NULL),(1488,100,20,'ford','focus st','2012','2000','medg17.0','Petrol','250',2000,'2','gn62fug',NULL,'1586264567.','1586267718.cod',NULL,NULL,'C',646,'2020-04-07 16:05:48','2020-04-07 15:05:48',NULL),(1489,100,20,'vw','crafter','2013','2000','edc17c54','Diesel','109',2000,'2','ro13shj',NULL,'1586348494.','1586350417.cod',NULL,NULL,'C',647,'2020-04-08 12:54:05','2020-04-08 11:54:05',NULL),(1490,45,15,'Mercedes','Sprinter','2014 (KN14 VGG','2100','CRD3','Diesel',NULL,2024,'2','KN14 VGG',NULL,'1586420444.','1586425707.cod',NULL,NULL,'C',772,'2020-04-09 09:48:30','2020-04-09 08:48:30',NULL),(1491,45,15,'VW','Polo','2010 (OW10 KWG)','1600','simos pcr2.1 can','Diesel',NULL,2020,'1','OW10 KWG',NULL,'1586425707.','1586426471.cod',NULL,NULL,'C',773,'2020-04-09 10:01:17','2020-04-09 09:01:17',NULL),(1492,35,14,'vw','golf','6','1600','siemens','Diesel',NULL,2000,'1','lg11pve',NULL,'1586434268.','1586435080.cod',NULL,NULL,'C',774,'2020-04-09 12:24:43','2020-04-09 11:24:43',NULL),(1493,100,20,'bmw','335i','2012','2979','mevd17.2.x','Petrol','306',2000,'3','fl62jrz',NULL,'1586511303.','1586522500.unq',NULL,NULL,'C',648,'2020-04-10 12:41:46','2020-04-10 11:41:46',NULL),(1494,100,33,'vw','tiguan 4motion','2016','2000','edc17c64 can','Diesel','150',2000,'2','gb54ort',NULL,'1586516422.','1586518429.cod',NULL,NULL,'C',649,'2020-04-10 11:33:53','2020-04-10 10:33:53',NULL),(1495,100,20,'citroen','picasso','2016','1600','edc17c60','Diesel','100',2000,'1','px66tly',NULL,'1586533704.','1586535704.unq',NULL,NULL,'C',650,'2020-04-10 16:21:50','2020-04-10 15:21:50',NULL),(1496,76,20,'bmw','520d','e60','2000','cp02','Diesel','177',2018,'1','ls57gnv',NULL,'1586598038.','1586600252.cod','Tune DPF off and EGR off pls',NULL,'C',651,'2020-04-11 10:17:35','2020-04-11 09:17:35',NULL),(1497,100,20,'seat','leon fr','2010','1968','edc17cp14','Diesel','170',2000,'2','yr60awa',NULL,'1586600174.','1586601190.cod','EGR DELETE',NULL,'C',652,'2020-04-11 10:33:14','2020-04-11 09:33:14',NULL),(1498,100,20,'vw','caddy','2011','1600','simos pcr 2.1','Diesel','102',2000,'1','gf61xpe',NULL,'1586608992.','1586610154.cod','EGR DELETE',NULL,'C',653,'2020-04-11 13:02:38','2020-04-11 12:02:38',NULL),(1499,100,20,'peugeot','207','2006','1600','edc16c34','Diesel','110',2000,'1','fv06uhj',NULL,'1586610246.','1586611677.cod',NULL,NULL,'C',654,'2020-04-11 13:28:02','2020-04-11 12:28:02',NULL),(1500,100,20,'skoda','karoq','2020','999','med17.1.27','Petrol','115',2000,'2','py69gfa',NULL,'1586781260.','1586956672.unq',NULL,NULL,'C',655,'2020-04-15 13:17:55','2020-04-15 12:17:55',NULL),(1501,19,11,'merc','sprinter','906','2.1','edc16','Diesel','110',2019,'2','eo59wdc',NULL,'1586854928.','1586857279.cod','already had dpf off by someone',NULL,'C',775,'2020-04-14 09:41:22','2020-04-14 08:41:22',NULL),(1502,121,21,'citroen','c5','2','1600','edc16c34','Diesel',NULL,2019,'1','bv59 yvb',NULL,'1586864065.6hdi-upgsw-1039398244','1586869291.cod','egr & dpf plz J',NULL,'C',656,'2020-04-14 13:01:37','2020-04-14 12:01:37',NULL),(1503,35,11,'merc','e250','w212','2.2','n','Diesel',NULL,2000,'1','lo11vuf',NULL,'1586943182.','1586943807.cod',NULL,NULL,'C',776,'2020-04-15 09:56:29','2020-04-15 08:56:29',NULL),(1504,121,20,'peugeot','308','x','1600','edc17c60','Diesel',NULL,2025,'1','af15 guc',NULL,'1586944031.6hdi-hw-9806460480-sw-9806460480-upgsw-9693310880','1586947174.cod',NULL,NULL,'C',657,'2020-04-15 10:39:36','2020-04-15 09:39:36',NULL),(1505,45,15,'Mercedes','Sprinter','2014 (KN14VNC)','2100','CRD3','Diesel',NULL,2024,'2','KN14 VNC',NULL,'1586944639.','1586946753.cod',NULL,NULL,'C',777,'2020-04-15 10:32:45','2020-04-15 09:32:45',NULL),(1506,19,11,'vauxhall','combo','c','1.7dth','denso','Diesel','100',2017,'1','mj57rfz',NULL,'1586954467.','1586955426.cod',NULL,NULL,'C',778,'2020-04-15 12:57:19','2020-04-15 11:57:19',NULL),(1507,19,11,'renault','traffic','2nd','2.0cdti','edc16','Diesel',NULL,2020,'2','ea60uxf',NULL,'1586955479.','1586958803.cod',NULL,NULL,'C',779,'2020-04-15 13:53:28','2020-04-15 12:53:28',NULL),(1508,121,20,'fiat','ducato','2','2300','marelli','Diesel',NULL,2024,'1','ys64dvc',NULL,'1587027992.3multijet-hw-mj8f3hw10w-ver-hw00-sw-3042bn04-ver-sw-0004-spare-55261982','1587043909.cod',NULL,NULL,'C',658,'2020-04-16 13:31:55','2020-04-16 12:31:55',NULL),(1509,19,14,'audi','s3','8v','2.otfsi','cdla','Petrol',NULL,2019,'2','ad58weu',NULL,'1587040704.',NULL,'failing test on lamda, need to know if stock','no its not stock. its been messed with','C',780,'2020-04-16 13:17:09','2020-04-16 12:17:09',NULL),(1510,100,20,'mercedes','sprinter','2014','2143','delphi crd3.x can','Diesel','163',2000,'2','de06ere',NULL,'1587044045.','1587047091.cod','DPF & EGR DELETE',NULL,'C',659,'2020-04-16 14:24:55','2020-04-16 13:24:55',NULL),(1511,19,11,'bmw','320d','f31','2.0','edc17c50','Diesel','181',2023,'3','ye13ywg',NULL,'1587050013.','1587051204.unq',NULL,NULL,'C',781,'2020-04-16 15:33:30','2020-04-16 14:33:30',NULL),(1512,100,20,'mitsubishi','pajero','2008','3200','denso ra6','Diesel','161',2000,'1','y88mes',NULL,'1587051638.','1587052519.cod',NULL,NULL,'C',660,'2020-04-16 15:55:27','2020-04-16 14:55:27',NULL),(1513,100,20,'ford','galaxy','2009','1800','SID206','Diesel','125',2000,'2','px09wpl',NULL,'1587052192.','1587052924.cod',NULL,NULL,'C',661,'2020-04-16 16:02:12','2020-04-16 15:02:12',NULL),(1514,100,20,'ford','ranger','2011','2953','edc16c7','Diesel','156',2000,'1','f18jlb',NULL,'1587053038.','1587054721.cod',NULL,NULL,'C',662,'2020-04-16 16:32:05','2020-04-16 15:32:05',NULL),(1515,100,20,'ford','ranger','2015','3198','sid208','Diesel','200',2000,'2','sn65dsd',NULL,'1587114149.','1587115765.cod',NULL,NULL,'C',663,'2020-04-17 09:29:29','2020-04-17 08:29:29',NULL),(1516,100,20,'vauxhall','astra','2012','1686','delco e87','Diesel','130',2000,'2','px62wku',NULL,'1587126717.','1587127266.cod',NULL,NULL,'C',664,'2020-04-17 12:41:09','2020-04-17 11:41:09',NULL),(1517,100,20,'skoda','octavia vrs','2012','1968','edc17cp14','Diesel','170',2000,'4','lj12kpx',NULL,'1587213073.','1588690586.cod','EGR DELETE',NULL,'C',665,'2020-05-05 14:56:32','2020-05-05 13:56:32',NULL),(1518,100,20,'range rover','evoque','2012','2179','edc17cp42','Diesel','190',2000,'2','k60dgh',NULL,'1587381271.','1587382437.cod','EGR DELETE',NULL,'C',666,'2020-04-20 11:34:00','2020-04-20 10:34:00',NULL),(1519,100,21,'mercedes','sprinter','2014','2143','delphi crd3.x can','Diesel','129',2000,'2','pn14bxu',NULL,'1587382596.','1587383536.cod',NULL,NULL,'C',667,'2020-04-20 11:52:18','2020-04-20 10:52:18',NULL),(1520,100,21,'seat','leon','2010','1598','simos pcr 2.1','Diesel','105',2000,'1','mw10pxk',NULL,'1587383167.','1587384124.cod','EGR DELETE',NULL,'C',668,'2020-04-20 12:02:07','2020-04-20 11:02:07',NULL),(1521,100,20,'audi','a3','2013','1968','edc17c64','Diesel','184',2000,'2','de11aud',NULL,'1587456804.','1587458864.cod','EGR DELETE',NULL,'C',669,'2020-04-21 08:47:47','2020-04-21 07:47:47',NULL),(1522,45,11,'Range','sport','2012 (RU55 YJR)','3000 v6','edc17 cp11','Diesel','255',2022,'3','RU55 YJR',NULL,'1587458212.','1587460478.unq',NULL,NULL,'C',782,'2020-04-21 09:51:43','2020-04-21 08:51:43',NULL),(1523,19,11,'audi','s3','8p','cdla','med9.1','Diesel',NULL,2019,'2','ad58weu',NULL,'1587459225.','1587462194.cod','back to stock',NULL,'C',783,'2020-04-21 09:44:26','2020-04-21 08:44:26',NULL),(1524,100,20,'ford','transit','2002','2400','delphi j1850','Diesel','90',2000,'1','mw51udt',NULL,'1587466510.','1587467270.cod',NULL,NULL,'C',670,'2020-04-21 11:07:53','2020-04-21 10:07:53',NULL),(1525,100,20,'bmw','120d','2009','2000','edc17cp02','Diesel','177',2000,'2','jd07dxn',NULL,'1587471995.','1587551689.cod',NULL,'fixed','C',671,'2020-04-22 10:34:57','2020-04-22 09:34:57',NULL),(1526,100,20,'vw','caddy','2013','1600','simos pcr 2.1','Diesel','75',2000,'1','pk13cvo',NULL,'1587479689.','1588062842.cod','EGR DELETE',NULL,'C',672,'2020-04-28 08:34:11','2020-04-28 07:34:11',NULL),(1527,102,21,'mercedes','e class','w207 e250','2143','delphi','Diesel',NULL,2021,'3','myn146',NULL,'1587539037.','1587539796.cod',NULL,NULL,'C',673,'2020-04-22 07:16:50','2020-04-22 06:16:50',NULL),(1528,19,14,'vw','polo','6r','1.2 cfwa','dcm3.7','Diesel',NULL,2020,'1','ch60tee',NULL,'1587543332.','1587545970.cod',NULL,NULL,'C',784,'2020-04-22 08:59:37','2020-04-22 07:59:37',NULL),(1529,100,20,'vw','scirocco tsi','2017','1984','simos 18.2','Petrol','180',2000,'2','c7lob',NULL,'1587545009.','1587550072.cod',NULL,NULL,'C',674,'2020-04-22 10:07:58','2020-04-22 09:07:58',NULL),(1530,76,20,'mazda','mx5','3','2000','DENSO sh7058','Diesel',NULL,2016,'2','RK55NKD',NULL,'1587563987.','1587567690.cod','O2 SENSOR OFF AND TUNE PLS',NULL,'C',675,'2020-04-22 15:01:35','2020-04-22 14:01:35',NULL),(1531,100,20,'skoda','fabia vrs','2005','1896','edc15','Diesel','130',2000,'2','px54urw',NULL,'1587631594.','1587634961.cod','EGR DELETE',NULL,'C',676,'2020-04-23 09:42:48','2020-04-23 08:42:48',NULL),(1532,100,20,'bmw','730d','2006','2993','edc16+c35','Diesel','231',2000,'3','ye06oyo',NULL,'1587638179.','1587644815.cod','DPF DELETE',NULL,'C',677,'2020-04-23 12:26:58','2020-04-23 11:26:58',NULL),(1533,94,11,'TOYOTA','DYNA','4','D4D','DENZO','Diesel',NULL,2021,'1','SNZ4932',NULL,'1587641065.','1587645994.cod',NULL,'dpf re added \r\necu vin \r\nTW1AT34Y109004948','C',785,'2020-04-23 12:49:21','2020-04-23 11:49:21',NULL),(1534,94,11,'TOYOTA','DYNA','4','D4D','DENZO','Diesel',NULL,2021,'1','SNZ7932 SPARE',NULL,'1587641293.','1587646138.cod',NULL,'ecu vin TW1AT34Y809005496','C',786,'2020-04-23 12:49:33','2020-04-23 11:49:33',NULL),(1535,100,20,'bmw','x5','2008','3000','edc16c35','Diesel','285',2000,'3','pl08zgo',NULL,'1587719226.','1587724939.cod','DPF & EGR DELETE',NULL,'C',678,'2020-04-24 10:42:25','2020-04-24 09:42:25',NULL),(1536,100,53,'iveco','daily','2013','2287','edc17c49','Diesel','106',2000,'3','bl13fzj',NULL,'1587721439.','1587722297.cod',NULL,NULL,'C',679,'2020-04-24 09:58:20','2020-04-24 08:58:20',NULL),(1537,76,20,'FORD','TRANSIT','2004','2000','DELHI','Diesel','99',2000,'1','PE04EXX',NULL,'1587725647.','1587727182.cod',NULL,NULL,'C',680,'2020-04-24 11:19:47','2020-04-24 10:19:47',NULL),(1538,100,20,'land rover','freelander','2011','2179','edc17cp42','Diesel','190',2000,'3','jh54srs',NULL,'1587729670.','1587731710.cod',NULL,'try this','C',681,'2020-04-24 12:35:19','2020-04-24 11:35:19',NULL),(1539,100,20,'volvo','v50','2008','2400','edc16c31','Diesel','180',2000,'2','bt08xfc',NULL,'1587742518.','1587744002.cod','DPF DELETE',NULL,'C',682,'2020-04-24 16:00:08','2020-04-24 15:00:08',NULL),(1541,76,20,'vw','t5','2010','2000','cp20','Diesel','101',2020,'1','dl60kwk',NULL,'1587896649.','1587898639.cod',NULL,NULL,'C',683,'2020-04-26 10:57:25','2020-04-26 09:57:25',NULL),(1542,100,20,'citroen','berlingo','2010','1600','edc17c10','Diesel','75',2000,'1','nd61nhz',NULL,'1587981148.','1587984439.unq','DPF DELETE',NULL,'C',684,'2020-04-27 10:47:26','2020-04-27 09:47:26',NULL),(1544,45,11,'Ford','Focus','2014 (BN14 EKJ)','2000','Delphi DCM 3.5','Diesel','140',2024,'2','BN14 EKJ',NULL,'1587983320.','1587984684.cod',NULL,NULL,'C',787,'2020-04-27 10:51:28','2020-04-27 09:51:28',NULL),(1545,100,20,'vw','golf','2010','2000','EDC17C46','Diesel','140',2000,'2','re10ctv',NULL,'1587986782.','1587988655.cod','EGR DELETE',NULL,'C',685,'2020-04-27 11:57:52','2020-04-27 10:57:52',NULL),(1546,102,20,'mercedes','e class','220','2143','delphi','Diesel',NULL,2025,'3','npe 039',NULL,'1588062534.','1588067189.cod','p229f62 nox sensoris implausible 130kw',NULL,'C',686,'2020-04-28 09:46:33','2020-04-28 08:46:33',NULL),(1547,121,20,'ford','transit','7','2200','sid208','Diesel',NULL,2022,'2','bd62 xne',NULL,'1588062604.2tdci-hw-cc11-12b684-ab-sw-cc11-12a650-ab-upgsw-cc11-14c204-cbt-swver-ds-cc11-12a650-cak','1588067048.cod','dpf, egr, tune & speed limiter remove plz J',NULL,'C',687,'2020-04-28 09:44:14','2020-04-28 08:44:14',NULL),(1548,100,20,'bmw','320d','2009','2000','edc17cp02','Diesel','177',2000,'2','oy59zkr',NULL,'1588066040.','1588085812.cod',NULL,NULL,'C',688,'2020-04-28 14:56:55','2020-04-28 13:56:55',NULL),(1549,121,20,'vauxhall','astra','j','2000','edc17c59','Diesel',NULL,2022,'2','bn62fvh',NULL,'1588067774.0cdti-sw1037529681-upgsw-p946-oe3','1588085774.unq',NULL,NULL,'C',689,'2020-04-28 14:56:17','2020-04-28 13:56:17',NULL),(1550,100,33,'VW','transporter','2016','1968','edc17cp20','Diesel','140',2000,'2','RA65VHY',NULL,'1588073833.txt','1588085743.cod','DPF & EGR DELETE',NULL,'C',690,'2020-04-28 14:55:48','2020-04-28 13:55:48',NULL),(1551,45,11,'Ford','Focus','ST (BG17 DWP)','2000','Dephi DCM6.X','Diesel','185',2027,'3','BG17 DWP',NULL,'1588079566.',NULL,NULL,NULL,'C',788,'2020-04-28 14:19:28','2020-04-28 13:19:28',NULL),(1552,76,20,'Ford','tRANSIT','2015','2200','sid208','Diesel','125',2025,'1','ys15jmo',NULL,'1588081603.','1588083602.cod','Tune DPF off pls',NULL,'C',691,'2020-04-28 14:20:26','2020-04-28 13:20:26',NULL),(1553,100,20,'ford','custom','2018','2000','sid211','Diesel','130',2000,'2','sk68nyh',NULL,'1588086543.','1588091157.cod',NULL,'test please','C',692,'2020-04-28 16:26:06','2020-04-28 15:26:06',NULL),(1554,45,39,'Mercedes','ML','350 (2012)','3000','EDC17 CP46','Diesel',NULL,2022,'3','AJM 568',NULL,'1588089233.','1588090364.unq',NULL,'disconnect adblue module','C',789,'2020-04-28 16:12:49','2020-04-28 15:12:49',NULL),(1555,100,20,'vw','caddy','2016','2000','edc17c64','Diesel','102',2000,'1','gf16nrn',NULL,'1588092992.txt','1588095163.cod','adblue delete',NULL,'C',693,'2020-04-28 17:32:47','2020-04-28 16:32:47',NULL),(1556,102,21,'chevrolet','captiva','anything','2l','bosch','Diesel',NULL,2017,'1','kzm 458',NULL,'1588150769.','1588151500.unq',NULL,NULL,'C',694,'2020-04-29 09:11:48','2020-04-29 08:11:48',NULL),(1557,100,20,'mercedes','e220','2016','2200','crd3','Diesel','177',2000,'3','yj16trx',NULL,'1588151560.','1588153717.cod','DPF DELETE',NULL,'C',695,'2020-04-29 09:48:41','2020-04-29 08:48:41',NULL),(1558,29,11,'vw','toureg','3','v6','bosch','Diesel','130',2021,'3','acz 88',NULL,'1588171498.','1588171824.cod',NULL,NULL,'C',790,'2020-04-29 14:50:28','2020-04-29 13:50:28',NULL),(1559,100,20,'vauxhall','astra','2013','2000','edc17c59','Diesel','165',2000,'2','lk63pfa',NULL,'1588241310.','1588243863.unq',NULL,NULL,'C',696,'2020-04-30 10:51:16','2020-04-30 09:51:16',NULL),(1560,100,20,'bmw','330d','2010','2993','edc17cp09','Diesel','245',2000,'2','rv10gpo',NULL,'1588330853.txt','1588340660.cod','EGR DELETE',NULL,'C',697,'2020-05-01 13:44:23','2020-05-01 12:44:23',NULL),(1561,100,33,'audi','a7','2011','2967','edc17cp44','Diesel','245',2000,'3','ef11akv',NULL,'1588336878.','1588344884.cod',NULL,NULL,'C',698,'2020-05-01 14:54:47','2020-05-01 13:54:47',NULL),(1562,29,11,'citroen','berlingo','3','1.5','bosch','Diesel','75',2029,'2','ngz 9819',NULL,'1588419117.','1588424650.unq',NULL,'think it was 100','C',791,'2020-05-02 13:40:23','2020-05-02 12:40:23',NULL),(1563,100,20,'landrover','freelander','2010','2200','edc16cp39','Diesel','161',2000,'2','ef09vyl',NULL,'1588583022.','1588585240.cod',NULL,NULL,'C',699,'2020-05-04 09:40:44','2020-05-04 08:40:44',NULL),(1564,45,15,'VW','Passat','B7 (OY12 LFJ)','1600','PCR 2.1','Diesel',NULL,2022,'2','OY12 LFJ',NULL,'1588589638.','1588591832.cod',NULL,NULL,'C',792,'2020-05-04 11:30:35','2020-05-04 10:30:35',NULL),(1565,94,39,'SCANIA','P420','5','SCANIA','SCANIA','Diesel',NULL,2018,'1','AY58BFA',NULL,'1588592929.','1588593951.cod',NULL,'SCR FUSE / PUMP / TANK MUST BE DISCONNECTED','C',793,'2020-05-04 12:05:55','2020-05-04 11:05:55',NULL),(1566,100,20,'citroen','dispatch','2004','1997','edc15c2','Diesel','110',2000,'1','px04tgy',NULL,'1588599057.','1588599832.cod',NULL,NULL,'C',700,'2020-05-04 13:44:09','2020-05-04 12:44:09',NULL),(1567,100,21,'mercedes','sprinter','2015','2143','delphi crd3','Diesel','129',2000,'2','pn15djx',NULL,'1588607589.','1588609083.cod',NULL,NULL,'C',701,'2020-05-04 16:18:09','2020-05-04 15:18:09',NULL),(1568,102,21,'bmw','3 series','anything','2l','bosch','Diesel',NULL,2015,'1','lag913',NULL,'1588663051.','1588666290.cod',NULL,NULL,'C',702,'2020-05-05 08:11:36','2020-05-05 07:11:36',NULL),(1569,121,32,'ford','mondildo','2','2000','dcm3.5','Diesel',NULL,2022,'2','fp12 uve',NULL,'1588670025.0tdci-hw-bg91-12659-rj-verhw-bg91-12a650-ne-sw-bg91-14c204-dl-swver-4095sa20560071-spr-bg91-12a650-rl','1588676405.cod',NULL,NULL,'C',703,'2020-05-05 11:00:11','2020-05-05 10:00:11',NULL),(1570,100,20,'vw','scirocco','2010','2000','edc17cp14','Diesel','140',2000,'2','wj60zgh',NULL,'1588677359.','1588679475.cod','EGR DELETE',NULL,'C',704,'2020-05-05 11:51:20','2020-05-05 10:51:20',NULL),(1571,19,11,'ford','transit','connect mk2','1.6tdci','sid907evo','Diesel','75',2024,'1','yb64oco',NULL,'1588681713.','1588683475.cod',NULL,NULL,'C',794,'2020-05-05 12:58:02','2020-05-05 11:58:02',NULL),(1572,100,20,'ford','custom','2017','2000','sid211','Diesel','130',2000,'2','cv17ucr',NULL,'1588691007.','1588691825.cod',NULL,NULL,'C',705,'2020-05-05 15:17:07','2020-05-05 14:17:07',NULL),(1573,19,15,'seat','altea','1','2.0 PPD','BMN','Diesel','170',2018,'2','KR08XNS',NULL,'1588692537.','1588693577.cod',NULL,NULL,'C',795,'2020-05-05 15:46:22','2020-05-05 14:46:22',NULL),(1574,100,20,'bmw','320d','2018','1995','edc17c50','Diesel','190',2000,'3','ao18hvp',NULL,'1588756685.','1588762651.cod',NULL,NULL,'C',706,'2020-05-06 10:57:34','2020-05-06 09:57:34',NULL),(1575,102,32,'isuzu','forward','easy shift','5,2l','NOT KNOWN','Diesel',NULL,2019,'3','mne446',NULL,'1588763512.','1588764445.cod','p0409 egr valve position faulty oper/ p0401 egr amount insufficient','TRANSTRON (EGR Actuator plug must be disconnected)','C',707,'2020-05-06 11:27:32','2020-05-06 10:27:32',NULL),(1576,100,20,'bmw','525d','2005','2497','edc16c31','Diesel','177',2000,'3','hj55wko',NULL,'1588769544.','1588773228.cod',NULL,NULL,'C',708,'2020-05-06 13:53:54','2020-05-06 12:53:54',NULL),(1577,100,20,'ford','custom','2019','2000','sid211','Diesel','130',2000,'2','lm19ewf',NULL,'1588783410.','1588792806.cod',NULL,NULL,'C',709,'2020-05-06 19:20:10','2020-05-06 18:20:10',NULL),(1578,100,20,'mercedes','cla45','2015','1991','med17.7.2','Diesel','381',2000,'3','op60wen',NULL,'1588838195.','1588842608.cod',NULL,NULL,'C',710,'2020-05-07 09:10:12','2020-05-07 08:10:12',NULL),(1579,19,14,'LANDROVER','DISCOVERY','3','2.7TDV6','SID204','Diesel',NULL,2017,'3','YR07RXW',NULL,'1588851635.','1588854105.cod',NULL,NULL,'C',796,'2020-05-07 12:22:04','2020-05-07 11:22:04',NULL),(1580,100,20,'landrover','freelander','2010','2200','edc16cp39','Diesel','161',2000,'2','px60wrf',NULL,'1588852838.','1588856854.cod',NULL,NULL,'C',711,'2020-05-07 13:07:39','2020-05-07 12:07:39',NULL),(1581,100,20,'bme','x3','2006','2000','edc16c35','Diesel','150',2000,'2','ve56gjf',NULL,'1588867580.','1588867994.cod',NULL,NULL,'C',712,'2020-05-07 16:13:20','2020-05-07 15:13:20',NULL),(1582,102,21,'isuzu','n75.190','anything','5.2l','NOT KNOWN','Diesel',NULL,2019,'3','mpe274',NULL,'1588949741.','1588951943.cod','dpf egr please check whats up for fault codes and more info','egr TRANSTRON (EGR Actuator plug must be disconnected)','C',713,'2020-05-08 15:32:27','2020-05-08 14:32:27',NULL),(1583,81,20,'ford','ST','2017','2.0 st','med17','Petrol','250',2027,'2','m11wkj',NULL,'1588953685.','1588968521.cod','max power as its had exhaust intercooler and cold air induction',NULL,'C',714,'2020-05-08 20:08:47','2020-05-08 19:08:47',NULL),(1584,81,20,'VOLKSWAGEN','GOLF GTI','2008','2.0 TFSI','MED9.1','Petrol','200',2018,'5','WJ08FBZ',NULL,'1588963970.','1589019410.cod','MAX TUNE AS THE CAR HAS BEEN MODIFIED',NULL,'C',715,'2020-05-09 10:16:54','2020-05-09 09:16:54',NULL),(1585,19,14,'iveco','daily','2','2.3','edc17','Diesel','120',2022,'1','x',NULL,'1589190739.',NULL,NULL,NULL,'C',797,'2020-05-11 12:08:56','2020-05-11 11:08:56',NULL),(1586,19,15,'bmw','320d','e90','n47','edc17cp02/06','Diesel',NULL,2019,'2','vu09euk',NULL,'1589198867.','1589199478.unq',NULL,NULL,'C',798,'2020-05-11 12:18:02','2020-05-11 11:18:02',NULL),(1587,43,11,'Ford','Transit','TTF','2.2','SID209','Diesel','125',2026,'2','WU66 TYA','76,209','1589199562.2TDCi 125Bhp _WU66 TYA_ Darren Kess Read SID209','1589200112.cod',NULL,NULL,'C',799,'2020-05-11 12:28:35','2020-05-11 11:28:35',NULL),(1588,29,14,'vauxhall','vivaro','3','2.0','edc 17 c','Diesel','115',2022,'1','dv12 zwp',NULL,'1589225583.','1589640184.unq',NULL,NULL,'C',800,'2020-05-16 14:43:11','2020-05-16 13:43:11',NULL),(1589,100,20,'mazda','5','2008','1998','denso rf8k','Diesel','143',2000,'2','mj08ulr',NULL,'1589283561.','1589286571.cod','DPF DELETE',NULL,'C',716,'2020-05-12 12:29:37','2020-05-12 11:29:37',NULL),(1590,45,11,'Skoda','Octavia','VRS (KU11PMO)','2000','EDC17CP14','Diesel',NULL,2021,'2','KU11 PMO',NULL,'1589289721.','1589292007.cod',NULL,NULL,'C',801,'2020-05-12 14:00:11','2020-05-12 13:00:11',NULL),(1591,76,20,'mitsubishi','l200','2017','2442','denso sh7059','Diesel','172',2027,'2','en8566',NULL,'1589363996.','1589366894.cod',NULL,NULL,'C',717,'2020-05-13 10:48:18','2020-05-13 09:48:18',NULL),(1592,76,20,'audi','a1','2016','1600','c64','Diesel','115',2025,'1','bl65ysx',NULL,'1589365859.','1589369634.cod',NULL,NULL,'C',718,'2020-05-13 11:33:58','2020-05-13 10:33:58',NULL),(1593,100,20,'vw','tiguan','2015','2000','EDC17C46','Diesel','140',2000,'2','ku15vel',NULL,'1589370084.','1589371913.cod','EGR DELETE',NULL,'C',719,'2020-05-13 12:11:56','2020-05-13 11:11:56',NULL),(1594,76,20,'TOYOTA','hilux','2013','3000','DENSO','Diesel',NULL,2023,'2','M5EHV',NULL,'1589373238.txt','1589373419.cod',NULL,NULL,'C',720,'2020-05-13 12:37:02','2020-05-13 11:37:02',NULL),(1595,100,20,'mercedes','e320','2005','3222','edc16c2','Diesel','204',2000,'3','yj05nef',NULL,'1589378314.','1589381860.cod',NULL,NULL,'C',721,'2020-05-13 14:57:43','2020-05-13 13:57:43',NULL),(1596,102,21,'opel','astra h','z19dth','1.9','NOT KNOWN','Diesel',NULL,2019,'1','mnb262',NULL,'1589379958.','1589381572.cod',NULL,NULL,'C',722,'2020-05-13 14:52:58','2020-05-13 13:52:58',NULL),(1597,143,59,'Audi','A3','EA888','2.0','MED17','Petrol','200',2021,'1','AUP1881',NULL,'1589396190.','1589397122.cod','Stg2 a gasolina comum - fortezimmmm','SEGUE STAGE 2.','C',1,'2020-05-13 20:57:18','2020-05-13 19:57:18',NULL),(1598,100,20,'vauxhall','astra','2012','1700','delco e87','Diesel','130',2000,'2','px12xxn',NULL,'1589451474.','1589460861.cod','DPF DELETE',NULL,'C',723,'2020-05-14 12:54:28','2020-05-14 11:54:28',NULL),(1599,76,20,'mini','jcw r56','2010','1600','MED17X','Petrol','211',2020,'2','PX60YGY',NULL,'1589454383.','1589462185.cod','STAGE 2 PLS','stage 2','C',724,'2020-05-14 13:16:30','2020-05-14 12:16:30',NULL),(1600,76,20,'MINI','COOPER S','R53','1600','EMS2','Petrol','161',2014,'2','EY04SZX',NULL,'1589454908.','1589458057.cod','17% SMALLER CHARGE PULLEY DECAT AND HIGH FLOW FILTER STAGE 2 PLS','stage 2 and dcat','C',725,'2020-05-14 12:08:06','2020-05-14 11:08:06',NULL),(1601,19,39,'mercedes','ml250','w166','2.2','edc17cp57','Diesel',NULL,2023,'3','yy13fcc',NULL,'1589456652.','1589458758.unq','ktag sm','ADBLUE ECU AND NOx SENSORS MUST BE DISCONNECTED!','C',802,'2020-05-14 12:19:22','2020-05-14 11:19:22',NULL),(1602,76,20,'SEAT','CUPRA','2010','2000','med9.1','Petrol','237',2020,'2','SM59XPP',NULL,'1589456839.','1589460033.cod','has air filter',NULL,'C',726,'2020-05-14 12:40:38','2020-05-14 11:40:38',NULL),(1603,143,58,'VW','Up','Tsi','1.0','nao sei kkk','Petrol','105',2027,'1','IXT4E26','71.000','1589482555.','1589484386.cod','STG2 - DOWNPIPE - INBOX E ABERTURA FRONTAL GRADE com HARDCUT','SEGUE STAGE 2.','C',2,'2020-05-14 21:22:22','2020-05-14 20:22:22',NULL),(1604,143,73,'AUDI','S3','N SEI','2.0','MQB','Petrol',NULL,2025,'1','PCM4632','23000','1589488619.','1589494748.cod','CAMBIO TOP, TE PUXA','SEGUE STG2 TCU para DRAG V2 KICKDOWN OFF','C',3,'2020-05-18 14:56:58','2020-05-18 13:56:58',NULL),(1605,45,14,'VW','Passat','2012','1600','PCR 2.1','Diesel',NULL,2022,'2','OY12 LFJ',NULL,'1589535156.','1589536192.cod',NULL,NULL,'C',803,'2020-05-15 09:50:05','2020-05-15 08:50:05',NULL),(1606,45,14,'Audi','A5','`2011 (FE11TVZ)','2000','EDC17 CP20','Diesel',NULL,2021,'2','FE11 TVZ',NULL,'1589538135.','1589541163.cod','Swirl flap delete please, cant find it in the option list',NULL,'C',804,'2020-05-15 11:12:54','2020-05-15 10:12:54',NULL),(1607,19,15,'volvo','v70','2','2.4d5','edc16c31','Diesel',NULL,2017,'2','nm07ubo',NULL,'1589541890.','1589543279.cod','has had a tune before',NULL,'C',805,'2020-05-15 11:48:25','2020-05-15 10:48:25',NULL),(1608,100,20,'citroen','ds3','2015','1600','med17.4.4','Diesel','165',2000,'2','so15vby',NULL,'1589543278.','1589554135.unq',NULL,NULL,'C',727,'2020-05-15 14:51:41','2020-05-15 13:51:41',NULL),(1609,30,11,'audi','rs7','2017','4.0l','MED17.1.1','Petrol',NULL,2027,'3','BM17NLL',NULL,'1589546117.','1589549331.cod',NULL,NULL,'C',806,'2020-05-15 13:28:56','2020-05-15 12:28:56',NULL),(1610,19,14,'landrover','freelander','2','2.2','edc17cp42','Diesel',NULL,2022,'2','ye62hvw',NULL,'1589619367.','1589620125.unq',NULL,NULL,'C',807,'2020-05-16 09:08:51','2020-05-16 08:08:51',NULL),(1611,76,20,'VW','transporter','2014','2000','cp20','Diesel','180',2024,'6','gj14vlm',NULL,'1589710705.','1589713077.cod',NULL,NULL,'C',728,'2020-05-17 10:58:06','2020-05-17 09:58:06',NULL),(1612,100,31,'ford','fiesta st 2','2014','1600','med17.0.1','Petrol','182',2000,'2','s18btg',NULL,'1589793497.','1589794901.cod',NULL,NULL,'C',729,'2020-05-18 09:41:46','2020-05-18 08:41:46',NULL),(1613,100,20,'audi','a5','2009','2000','edc17cp14','Diesel','170',2000,'2','ak09wuw',NULL,'1589812617.txt','1589814205.cod','EGR DELETE',NULL,'C',730,'2020-05-18 15:03:29','2020-05-18 14:03:29',NULL),(1614,100,20,'vw','golf','2005','2000','edc16u1','Diesel','140',2000,'2','nv05tzp',NULL,'1589877427.','1589879928.cod','SWIRL FLAP DELETE AND EGR DELETE',NULL,'C',731,'2020-05-19 09:18:51','2020-05-19 08:18:51',NULL),(1615,100,20,'toyota','hi lux','2015','2982','?','Diesel','171',2000,'3','ro15zxw',NULL,'1589879138.txt','1589891515.cod','DPF DELETE',NULL,'C',732,'2020-05-19 12:31:59','2020-05-19 11:31:59',NULL),(1616,100,20,'fiat','multipla','2003','1910','edc15c7','Diesel','117',2000,'1','fe53eja',NULL,'1589891269.','1589893703.cod','AS MUCH POWER AS POSS WITHOUT BLOWING',NULL,'C',733,'2020-05-19 13:08:27','2020-05-19 12:08:27',NULL),(1617,81,20,'mercedes','E220','20012','2.2CDI BLUE','DELPHI CRD2','Diesel','167',2022,'3','WCM 5M',NULL,'1589900862.','1589903473.cod','STAGE 1 PERFORMANCE',NULL,'C',734,'2020-05-19 15:51:21','2020-05-19 14:51:21',NULL),(1618,24,14,'vw','transporter','t5','2.0','bosh','Diesel',NULL,2024,'1','mf14ykt',NULL,'1589908565.txt','1589910199.cod',NULL,'BOSCH EDC17_CP20 (EGR Actuator plug must be disconnected)','C',808,'2020-05-19 17:44:21','2020-05-19 16:44:21',NULL),(1619,24,14,'isuzu','dmax','2','2.5','m','Diesel',NULL,2022,'3','wv62fhl',NULL,'1589916124.','1589978437.cod',NULL,'TRANSTRON (EGR Actuator plug must be disconnected)','C',809,'2020-05-20 12:40:41','2020-05-20 11:40:41',NULL),(1620,102,21,'citroen','dispatch 100','anything','1560','bosch','Diesel',NULL,2025,'2','nay785',NULL,'1589949589.','1589951861.unq',NULL,NULL,'C',735,'2020-05-20 05:17:46','2020-05-20 04:17:46',NULL),(1621,102,21,'chevrolet','captiva','anything','2l','bosch','Diesel',NULL,2019,'3','kvl802',NULL,'1589959360.','1589967250.unq',NULL,NULL,'C',736,'2020-05-20 09:34:16','2020-05-20 08:34:16',NULL),(1622,19,14,'ford','transit','mk7','2.4tdci jxfa','visteon','Diesel',NULL,2017,'2','B055CPM',NULL,'1589967479.','1589969066.cod',NULL,NULL,'C',810,'2020-05-20 10:04:28','2020-05-20 09:04:28',NULL),(1623,100,20,'land rover','discovery','2006','2700','sid204','Diesel','190',2000,'3','fy05xgk',NULL,'1589973016.','1589982253.cod','EGR DELETE',NULL,'C',737,'2020-05-20 13:44:18','2020-05-20 12:44:18',NULL),(1624,43,11,'Porsche','Cayenne','958','3.0','EDC17CP44','Diesel','245',2023,'3','JU54 HEN','63,812','1589975797.0D 245Bhp _JU54 HEN_ <NAME>DC17CP44_VR','1589977140.cod',NULL,NULL,'C',811,'2020-05-20 12:19:03','2020-05-20 11:19:03',NULL),(1625,76,20,'AUDI','A3','8P','1600','SIMOSPCR2.1','Diesel','105',2020,'1','CL04EDS',NULL,'1589978864.','1589981800.cod',NULL,NULL,'C',738,'2020-05-20 13:36:43','2020-05-20 12:36:43',NULL),(1626,100,20,'bmw','320d','2006','2000','edc16c35','Diesel',NULL,2000,'2','lr56jnv',NULL,'1589981609.','1589984877.cod',NULL,NULL,'C',739,'2020-05-20 14:28:00','2020-05-20 13:28:00',NULL),(1627,143,56,'MERCEDES','CLA45','AMG','2.0','MED17.7.2','Petrol','360',2025,'1','IXG7H05',NULL,'1590009122.',NULL,'STG1 COMUM',NULL,'C',4,'2020-05-20 23:01:21','2020-05-20 22:01:21',NULL),(1629,29,11,'vw','transporter','3','2.0','bosch','Diesel','130',2025,'1','acz 888',NULL,'1590061397.','1590063165.cod',NULL,NULL,'C',812,'2020-05-21 12:13:18','2020-05-21 11:13:18',NULL),(1630,82,15,'peugeot','3008','2','1.6hdi','1','Diesel',NULL,2026,'3','bk66evw',NULL,'1590066103.','1590067495.cod',NULL,'DPF PRESSURE AND TEMPERATURE SENSORS MUST BE DISCONNECTED!','C',813,'2020-05-21 13:24:58','2020-05-21 12:24:58',NULL),(1631,35,11,'mini','cooper s','1','1600','siemens','Diesel',NULL,2000,'1','j88ruf',NULL,'1590066757.','1590068015.cod',NULL,NULL,'C',814,'2020-05-21 13:33:40','2020-05-21 12:33:40',NULL),(1632,19,15,'fiat','ducatto','3','2.3mjet','mjd8 marelli','Diesel',NULL,2026,'2','wr66eja',NULL,'1590070407.','1590071648.cod',NULL,NULL,'C',815,'2020-05-21 14:34:21','2020-05-21 13:34:21',NULL),(1633,100,20,'volvo','s40','2009','2000','SID206','Diesel','136',2000,'2','kp09zvt',NULL,'1590074762.','1590143813.cod',NULL,NULL,'C',740,'2020-05-22 10:36:59','2020-05-22 09:36:59',NULL),(1634,100,20,'vw','caddy','2017','2000','edc17c64 can','Diesel','102',2000,'1','gk67sxf',NULL,'1590078451.txt','1590087716.cod','EGR DELETE',NULL,'C',741,'2020-05-21 19:02:05','2020-05-21 18:02:05',NULL),(1635,143,64,'vw','AMAROK','V6','V6','EDC17CP54','Diesel','224',2028,'1','IZZ0925','46632','1590087326.','1590088095.cod','STG1','SEGUE STAGE 1.','C',5,'2020-05-21 19:08:20','2020-05-21 18:08:20',NULL),(1636,76,32,'Landrover','discovery','3','2700','landrover siemens','Diesel',NULL,2017,'3','yl07krd',NULL,'1590136793.','1590138112.cod',NULL,NULL,'C',742,'2020-05-22 09:01:58','2020-05-22 08:01:58',NULL),(1637,45,11,'VW','Transporter','6 (WH04TUB)','2000','DCM 6.2','Diesel','150',2026,'2','WH04 TUB',NULL,'1590137307.','1590139495.cod',NULL,NULL,'C',816,'2020-05-22 09:25:01','2020-05-22 08:25:01',NULL),(1638,45,15,'Fiat','Ducato','3 (LF66 hDU)','2.3','MJD8F3','Diesel','130',2026,'2','LF66 HDU',NULL,'1590140797.','1590145905.unq',NULL,NULL,'C',817,'2020-05-22 11:11:49','2020-05-22 10:11:49',NULL),(1639,102,21,'iveco','xxxxx','anything','2300','bosch','Diesel',NULL,2022,'1','nax587',NULL,'1590141518.','1590142468.unq',NULL,NULL,'C',743,'2020-05-22 10:14:33','2020-05-22 09:14:33',NULL),(1640,100,20,'bmw','116d','2015','1496','edc17c50','Diesel','116',2000,'2','ye65kxh',NULL,'1590142356.','1590145036.cod',NULL,NULL,'C',744,'2020-05-22 10:57:19','2020-05-22 09:57:19',NULL),(1642,19,11,'fiat','ducato','2nd 250','3.0','edc16','Diesel','125',2017,'2','nk57dzd',NULL,'1590152663.','1590154971.cod',NULL,NULL,'C',818,'2020-05-22 13:42:54','2020-05-22 12:42:54',NULL),(1643,180,15,'MITSUBISHI','SHOGUN','4','3.0','DENSO','Diesel',NULL,2025,'1','F251L',NULL,'1590155766.','1590156840.cod',NULL,NULL,'C',819,'2020-05-22 14:14:08','2020-05-22 13:14:08',NULL),(1644,100,20,'vw','golf gtd','2011','2000','EDC17C46','Diesel','170',2000,'2','wj61',NULL,'1590223572.','1590225851.cod',NULL,NULL,'C',745,'2020-05-23 09:24:15','2020-05-23 08:24:15',NULL),(1645,100,20,'mercedes','e280','2007','2987','edc16cp31','Diesel','190',2000,'3','ln07yao',NULL,'1590225940.','1590226985.cod',NULL,'TEST THIS','C',746,'2020-05-23 09:43:15','2020-05-23 08:43:15',NULL),(1646,100,20,'bmw','420d','2016','2000','edc17c50','Diesel','190',2000,'3','ro11yar',NULL,'1590227997.txt','1590228833.cod',NULL,NULL,'C',747,'2020-05-23 10:13:55','2020-05-23 09:13:55',NULL),(1647,100,20,'seat','altea','2006','1900','edc16u1','Diesel','105',2000,'1','sj06zsy',NULL,'1590235256.','1590236669.cod',NULL,NULL,'C',748,'2020-05-23 12:24:33','2020-05-23 11:24:33',NULL),(1648,81,20,'FORD','FOCUS ST DIESEL','2016','2.0 TDCI ST','DELPHI DCM6.1','Diesel','182',2026,'2','YL16CUX',NULL,'1590239114.','1590240373.cod','MAXIMUM POWER HAS UPRATED EXHAUST AND CUSTOM INTAKE',NULL,'C',749,'2020-05-23 13:26:17','2020-05-23 12:26:17',NULL),(1649,102,20,'mercedes','c class','220','2143','delphi','Diesel',NULL,2024,'3','ntb136',NULL,'1590394800.','1590403103.unq','p220162 the sigmal of the nox is implausible/ p229f62 the signal of the nox is implausible',NULL,'C',750,'2020-05-25 10:38:26','2020-05-25 09:38:26',NULL),(1650,100,20,'vauxhall','vivaro','2015','1598','edc17c42','Diesel','115',2000,'2','fg64uox',NULL,'1590396376.','1590403200.cod',NULL,NULL,'C',751,'2020-05-25 10:40:04','2020-05-25 09:40:04',NULL),(1651,100,20,'vw','golf r','2014','1984','simos 18.1','Diesel','300',2000,'2','sj64gvn',NULL,'1590398004.','1590404751.cod',NULL,NULL,'C',752,'2020-05-25 11:05:56','2020-05-25 10:05:56',NULL),(1652,81,20,'mercedes','e220','w207','2.1','crd2 delphi','Diesel','170',2021,'11','SG11DCV',NULL,'1590405225.','1590406766.cod',NULL,NULL,'C',753,'2020-05-25 11:39:29','2020-05-25 10:39:29',NULL),(1653,102,51,'vw','passat','anything','2l','bosch','Diesel',NULL,2020,'1','nhz720',NULL,'1590485889.pth','1590487558.unq',NULL,'do not seal ecu yet try fist then see if any fault codes','C',754,'2020-05-26 10:06:26','2020-05-26 09:06:26',NULL),(1654,100,21,'skoda','fabia','2010','1600','simos pcr 2.1','Diesel','90',2000,'1','ft10uub',NULL,'1590488357.','1590490995.cod','EGR DELETE',NULL,'C',755,'2020-05-26 11:03:20','2020-05-26 10:03:20',NULL),(1655,76,20,'opel','astra','h','1.9','edc16c39','Diesel','150',2018,'1','kh57kro',NULL,'1590491095.txt','1590491130.cod','egr also',NULL,'C',756,'2020-05-26 11:05:36','2020-05-26 10:05:36',NULL),(1656,43,11,'BMW','M235i','F22','3.0','MEVD17.2.6','Petrol','326',1990,'5','GV14 FBN','45,908','1590504067.bin','1590510097.','make it fast! AUTOTUNER FILE',NULL,'C',820,'2020-05-26 16:21:43','2020-05-26 15:21:43',NULL),(1657,143,66,'VW','AMAROK','<NAME>','V6','EDC17CP54','Diesel','225',2029,'2','JAA 0B97','2900','1590504307.','1590507258.cod','STG2- DOWNPIPE-FILTRO','SEGUE STAGE 2.','C',6,'2020-05-26 16:01:19','2020-05-26 15:01:19',NULL),(1658,100,20,'ford','fiesta','2015','998','med17.0.1','Diesel','125',2000,'1','g19sbw',NULL,'1590568179.','1590570175.cod',NULL,NULL,'C',757,'2020-05-27 09:02:58','2020-05-27 08:02:58',NULL),(1659,121,20,'skoda','octavia','vrs','2000','edc17c64','Diesel',NULL,2026,'2','j400hsn',NULL,'1590572979.0tdi-verhw-04l907309d-upgsw-04l906021el-7542','1590575079.cod',NULL,NULL,'C',758,'2020-05-27 10:24:43','2020-05-27 09:24:43',NULL),(1660,43,11,'Ford','Transit','TT9','2.2','visteon','Diesel','115',2018,'2','GV58EKN','152,589','1590574364.2TDCi 115Bhp _GV58 EKN_ <NAME> Read Visteon P113','1590662496.cod','If file no good proceed to tune',NULL,'C',821,'2020-05-28 10:41:39','2020-05-28 09:41:39',NULL),(1661,121,20,'rangerover','sport','1','2700','sid204','Diesel',NULL,2017,'3','wv57 zxc',NULL,'1590574804.7tdv6-hw-nnn501090-sw-nns507560','1590576849.cod','egr & tune plz J',NULL,'C',759,'2020-05-27 10:54:13','2020-05-27 09:54:13',NULL),(1662,121,20,'rangerover','sport','tdv8','3600','sid204','Diesel',NULL,2018,'3','730 ttg / bn08 ahx',NULL,'1590580297.6tdv8-hw-nnn501010-sw-8h42-12k532-cd','1590580587.cod',NULL,NULL,'C',760,'2020-05-27 11:56:32','2020-05-27 10:56:32',NULL),(1663,45,11,'Mercedes','SLK','2011 (MW07 SLK)','1800 Turbo','continental SIM271DE','Petrol',NULL,2021,'3','MW07 SLK',NULL,'1590584279.','1590585554.unq',NULL,NULL,'C',822,'2020-05-27 13:19:18','2020-05-27 12:19:18',NULL),(1664,45,15,'BMW','320','2007 (OV57 TLO','2000','EDC17 CP02','Diesel',NULL,2017,'2','OV57 TLO',NULL,'1590596465.','1590597448.unq',NULL,NULL,'C',823,'2020-05-27 16:37:33','2020-05-27 15:37:33',NULL),(1665,100,21,'audi','q7','2008','4200','edc16cp34','Diesel','326',2000,'3','ww08wrw',NULL,'1590601722.','1590607561.cod',NULL,NULL,'C',761,'2020-05-27 19:26:05','2020-05-27 18:26:05',NULL),(1666,76,21,'ford','connect','2015','1600','c10','Diesel','94',2025,'1','yp65mjk',NULL,'1590652508.','1590654036.cod',NULL,NULL,'C',762,'2020-05-28 08:20:46','2020-05-28 07:20:46',NULL),(1667,19,14,'landrover','diuscovery','3','2.7tdi','sid204','Diesel',NULL,2019,'3','ad09ddz',NULL,'1590653518.','1590655162.cod',NULL,NULL,'C',824,'2020-05-28 08:39:27','2020-05-28 07:39:27',NULL),(1668,100,20,'vw','polo','2010','1199','dcm3.7','Diesel','75',2000,'1','yy60dwm',NULL,'1590654371.','1590657963.cod',NULL,NULL,'C',763,'2020-05-28 09:26:06','2020-05-28 08:26:06',NULL),(1669,100,21,'ford','kuga','2009','1997','sid202','Diesel','136',2000,'2','ef59rxd',NULL,'1590654975.','1590657022.cod',NULL,NULL,'C',764,'2020-05-28 09:10:27','2020-05-28 08:10:27',NULL),(1670,100,20,'land rover','range rover sport','2008','2720','sid204','Diesel','190',2000,'3','p26nas',NULL,'1590655699.','1590660016.cod',NULL,NULL,'C',765,'2020-05-28 10:00:19','2020-05-28 09:00:19',NULL),(1671,81,20,'FORD','FOCUS ST','2006','2.5 T','BOSCH ME9','Petrol','225',2016,'2','BG07FUE',NULL,'1590659595.','1590660540.cod','MAX POWER UPRATED TURBO EXHAUST AND INTAKE',NULL,'C',766,'2020-05-28 10:09:06','2020-05-28 09:09:06',NULL),(1672,100,32,'audi','a6','2014','1968','edc17c64','Diesel','190',2000,'2','d14dnd',NULL,'1590664182.','1590666264.cod',NULL,NULL,'C',767,'2020-05-28 11:44:27','2020-05-28 10:44:27',NULL),(1673,19,14,'toyota','proace','1','2.0hdi ahz','dcm3.5','Diesel',NULL,2026,'2','yx16czn',NULL,'1590672574.','1590673845.cod',NULL,NULL,'C',825,'2020-05-28 13:50:48','2020-05-28 12:50:48',NULL),(1674,43,11,'Ford','Fiesta','MK7','1.0','MED17.0.1','Petrol','100',2024,'1','LJ64VJO','70,100','1590681598.bin','1590682132.dec','AUtotuner file','please use kess for future files unless its a vehicle kess wont do, thanks.','C',826,'2020-05-28 16:10:28','2020-05-28 15:10:28',NULL),(1675,143,76,'VW','Up','TSI','1.0','0','Petrol',NULL,2026,'1','IXC-9D46',NULL,'1590693404.bmp','1590694093.cod','stg3 com turbo audi Q3 + downpipe + inbox - mapa flex','SEGUE STAGE 3 GASOLINA.','C',7,'2020-06-01 20:31:48','2020-06-01 19:31:48',NULL),(1676,19,11,'vauxhall','insignia','2','1.9','edc17c59','Diesel','140',2000,'2','k22',NULL,'1590739407.','1590742404.unq',NULL,NULL,'C',827,'2020-05-29 08:53:31','2020-05-29 07:53:31',NULL),(1677,100,20,'audi','a3','2014','2000','edc17c64','Diesel','150',2000,'2','sl14wbp',NULL,'1590740251.','1590746121.cod','EGR DELETE',NULL,'C',768,'2020-05-29 09:55:26','2020-05-29 08:55:26',NULL),(1678,100,20,'mercedes','a200','2013','1796','delphi crd3.x can','Diesel','136',2000,'2','r111wby',NULL,'1590741499.','1590758955.cod','DPF & EGR DELETE',NULL,'C',769,'2020-05-29 13:29:19','2020-05-29 12:29:19',NULL),(1679,30,11,'volkswagen','TRANSPORTER','T6','2.0 tdi','EDC17CP20','Diesel','101',2026,'1','S10ASL',NULL,'1590748659.','1590749490.cod',NULL,NULL,'C',828,'2020-05-29 10:51:33','2020-05-29 09:51:33',NULL),(1680,100,20,'seat','leon','2012','2000','EDC17C46','Diesel','170',2000,'2','yd12txo',NULL,'1590750874.txt','1590761158.cod',NULL,NULL,'C',770,'2020-05-29 14:06:01','2020-05-29 13:06:01',NULL),(1681,143,76,'Fiat','Punto','Tjet','1.4','-','Petrol',NULL,2023,'1','ITY8595','81.000','1590758679.bmp','1590758786.cod','stg2 a etanol, com bico green bosch, downpipe e intake','STAGE 2 E100 BICO 42LBS','C',8,'2020-05-29 13:26:32','2020-05-29 12:26:32',NULL),(1682,143,55,'VW','Golf','TSI','1.4t','-','Petrol',NULL,2024,'1','IVN-7J33','132+400','1590764170.txt','1590765500.cod','Stg1 na Gasolina Comum','SEGUE STAGE 1 V1','C',9,'2020-05-29 15:21:07','2020-05-29 14:21:07',NULL),(1683,143,56,'BMW','320','N20','2.0','MEVD17.2.9','Petrol',NULL,2026,'3','IXK2A68','35240','1590767065.','1590768533.cod','STG1-GASOLINA COMUM','SEGUE STAGE 1.','C',10,'2020-05-29 16:09:00','2020-05-29 15:09:00',NULL),(1684,100,20,'audi','a3','2016','2000','edc17c74','Diesel','150',2000,'2','nk16nfd',NULL,'1590826438.txt','1590829916.cod',NULL,NULL,'C',771,'2020-05-30 09:12:00','2020-05-30 08:12:00',NULL),(1685,100,20,'vw','golf gtd','2014','2000','edc17c64','Diesel','184',2000,'2','bu64hkw',NULL,'1590828004.txt','1590830994.cod',NULL,NULL,'C',772,'2020-05-30 09:29:59','2020-05-30 08:29:59',NULL),(1686,100,20,'nissan','x trail','2016','1598','edc17c84','Diesel','130',2000,'2','bl16llc',NULL,'1591003433.','1591005059.cod',NULL,NULL,'C',773,'2020-06-01 09:51:04','2020-06-01 08:51:04',NULL),(1687,100,20,'bmw','116d','2013','1995','edc17c50','Diesel','117',2000,'2','mf63fpu',NULL,'1591004053.txt','1591009791.cod',NULL,NULL,'C',774,'2020-06-01 11:09:58','2020-06-01 10:09:58',NULL),(1688,43,11,'Ford','Transit','T9','2.2','SID208','Diesel','100',2023,'2','NA13 RXD',NULL,'1591004595.2D 100Bhp _NA13 RXD_ Brent Kess Read SID 208','1591005911.cod','P0403- P0405- P1303- P2033',NULL,'C',829,'2020-06-01 10:05:14','2020-06-01 09:05:14',NULL),(1689,121,20,'vw','caddy','2','1600','pcr2.1','Diesel',NULL,2025,'1','pf65 hgo','46000','1591006624.6tdi-hw-cayd-sw-03l906023pc-upgsw-03l906023pc-8013','1591008620.cod','speed limiter remove & tune plz J',NULL,'C',775,'2020-06-01 10:50:24','2020-06-01 09:50:24',NULL),(1690,81,20,'PORCHE','911 carrera 2','2002','3.6','bosch me7.8','Petrol','320',2012,'2','DH51SHH',NULL,'1591014689.','1591017820.cod','MAX POWER AS THE CAR HAS UPRATED THROTTLE BODIES AND PERFORMANCE EXHAUST',NULL,'C',776,'2020-06-01 13:23:43','2020-06-01 12:23:43',NULL),(1691,43,11,'Range Rover','Freelander','1st','2.0','EDC15C4','Diesel','111',2016,'3','BO51AXE','192,633','1591017214.0TD4 111Bhp _BO51 AXE_ Mindaugas Kess Read EDC15','1591019536.cod',NULL,NULL,'C',830,'2020-06-01 13:52:20','2020-06-01 12:52:20',NULL),(1692,100,20,'mercedes','a200','2014','2143','delphi crd3','Diesel','136',2000,'3','ke14xkz',NULL,'1591017759.','1591018313.cod',NULL,NULL,'C',777,'2020-06-01 13:31:56','2020-06-01 12:31:56',NULL),(1693,102,20,'bmw','1 series','anything','1496','bosch','Diesel',NULL,2025,'3','nmx089',NULL,'1591020149.txt','1591022116.cod','id read',NULL,'C',778,'2020-06-01 14:35:21','2020-06-01 13:35:21',NULL),(1694,100,21,'mercedes','sprinter','2024','2143','delphi crd3','Diesel','129',2000,'2','hx14xkg',NULL,'1591024304.','1591025008.cod',NULL,NULL,'C',779,'2020-06-01 15:23:33','2020-06-01 14:23:33',NULL),(1695,102,21,'iveco','daily','anything','3l','bosch','Diesel',NULL,2023,'1','nkk281',NULL,'1591086541.','1591088516.unq','egr dpf',NULL,'C',780,'2020-06-02 09:02:02','2020-06-02 08:02:02',NULL),(1696,143,55,'VW','UP','TSI','1.0','0','Petrol',NULL,2030,'1','IZW2F69','7000','1591097991.','1591100699.cod','STG1 CONSERVADOR FLEX - ESTÁ ABASTECIDO COM COMUM NO MOMENTO.','SEGUE STAGE 1.','C',11,'2020-06-02 12:25:04','2020-06-02 11:25:04',NULL),(1697,100,20,'ford','connect','2016','1560','sid807evo','Diesel','95',2000,'1','t18pot',NULL,'1591106128.','1591109186.cod',NULL,NULL,'C',781,'2020-06-02 14:46:31','2020-06-02 13:46:31',NULL),(1698,100,20,'bmw','318d','2009','1995','edc17c06','Diesel','143',2000,'2','db09esb',NULL,'1591115496.','1591120131.cod','DPF & EGR DELETE',NULL,'C',782,'2020-06-02 17:49:38','2020-06-02 16:49:38',NULL),(1699,100,20,'vw','golf tdi','2013','1600','edc17c64','Diesel','105',2000,'1','nk63bkf',NULL,'1591118940.','1591120387.cod',NULL,NULL,'C',783,'2020-06-02 17:53:11','2020-06-02 16:53:11',NULL),(1700,143,55,'FIAT','BRAVO','TJET','1.4','0','Petrol',NULL,2023,'1','FIK3G15','91000','1591119764.txt','1591123433.cod','STG2 COM DOWNPIPE E INBOX - GASOLINA COMUM - MESMA PRESSAO COM OU SEM OVERBOOST','SEGUE STAGE 2 COMUM','C',12,'2020-06-02 18:43:55','2020-06-02 17:43:55',NULL),(1701,121,20,'mercedes','sprinter','906','2200','crd3.e1','Diesel',NULL,2027,'2','k-tag',NULL,'1591129061.pth','1591194533.unq',NULL,NULL,'C',784,'2020-06-03 14:28:55','2020-06-03 13:28:55',NULL),(1702,100,20,'skoda','octavia vrs','2012','2000','edc17cp14','Diesel','170',2000,'2','py62bof',NULL,'1591169354.','1591174581.cod','EGR DELETE, DPF DELETE, SWIRL FLAP DELETE',NULL,'C',785,'2020-06-03 08:56:25','2020-06-03 07:56:25',NULL),(1704,100,53,'IVECO','daily','2010','2287','edc16c39','Diesel','106',2000,'3','bd60fhw',NULL,'1591171249.','1591175088.cod',NULL,NULL,'C',787,'2020-06-03 09:04:51','2020-06-03 08:04:51',NULL),(1705,102,20,'toyota','hilux','anything','2.5','NOT KNOWN','Diesel',NULL,2016,'1','knw906',NULL,'1591176775.txt','1591182396.cod','id read',NULL,'C',788,'2020-06-03 11:06:44','2020-06-03 10:06:44',NULL),(1706,100,33,'ford','transit','2014','2200','sid208','Diesel','125',2000,'2','cr58rap',NULL,'1591177540.','1591185684.cod','speed limiter removal',NULL,'C',789,'2020-06-03 12:01:27','2020-06-03 11:01:27',NULL),(1707,100,20,'ford','custom','2015','2200','sid209','Diesel','125',2000,'2','fp65sxe',NULL,'1591180897.','1591183921.cod',NULL,NULL,'C',790,'2020-06-03 11:32:07','2020-06-03 10:32:07',NULL),(1708,100,20,'ford','focus st2 tdci','2015','2000','delphi dcm6.x','Diesel','185',2000,'2','px15xvl',NULL,'1591188073.','1591189915.cod',NULL,NULL,'C',791,'2020-06-03 13:11:58','2020-06-03 12:11:58',NULL),(1709,136,32,'landrover','dicovery 3','3','2.7','sid204','Diesel',NULL,2019,'1','2020','0','1591190475.','1591190505.cod',NULL,NULL,'C',792,'2020-06-03 13:21:48','2020-06-03 12:21:48',NULL),(1710,100,20,'bmw','640d','2011','2993','edc17cp45','Diesel','313',2000,'3','b7jwo',NULL,'1591195751.','1591198479.cod','EGR DELETE',NULL,'C',793,'2020-06-03 15:34:42','2020-06-03 14:34:42',NULL),(1711,144,59,'VOLKS','GOLF','MK7','2.0','SIMOS18.1','Petrol','0',2027,'5','IYW-5671','10776','1591200102.','1591200810.cod',NULL,'SEGUE STAGE 2 V1.','C',13,'2020-06-03 16:13:37','2020-06-03 15:13:37',NULL),(1712,144,59,'AUDI','A3','8V','TSFI','SIMOS18.1','Petrol',NULL,2026,'5','GIU-2085','35200','1591200964.','1591202030.cod','GASOLINA PODIUM','SEGUE STAGE 2 V1.','C',14,'2020-06-04 21:03:08','2020-06-04 20:03:08',NULL),(1713,143,66,'Amarok','V6','0','V6','0','Diesel',NULL,2029,'1','Qjt5d19','18.660','1591204948.','1591205724.cod','Stg2 - Downpipe + inbox + difusor de escape','SEGUE STAGE 2 V1.','C',15,'2020-06-03 17:35:26','2020-06-03 16:35:26',NULL),(1714,102,20,'mercedes','e class','anything','2.2l','bosch','Diesel',NULL,2013,'3','kqg918',NULL,'1591257137.','1591261124.cod',NULL,NULL,'C',794,'2020-06-04 08:59:07','2020-06-04 07:59:07',NULL),(1715,102,21,'isuzu','crafter','anything','3l','NOT KNOWN','Diesel',NULL,2023,'2','sf13 dly',NULL,'1591257253.txt','1591260844.cod','dpf egr check whats up id read',NULL,'C',795,'2020-06-04 08:54:27','2020-06-04 07:54:27',NULL),(1716,76,32,'vw','goilf','6','2000','c46','Diesel',NULL,2021,'2','nj11bbu',NULL,'1591259323.','1591261980.cod',NULL,NULL,'C',796,'2020-06-04 09:13:05','2020-06-04 08:13:05',NULL),(1717,100,33,'mercedes','citan','2016','1461','edc17c84','Diesel','90',2000,'1','na66dxp',NULL,'1591271566.','1591278616.cod',NULL,NULL,'C',797,'2020-06-04 13:50:22','2020-06-04 12:50:22',NULL),(1718,100,20,'vw','bora','2003','1896','edc15p','Diesel','150',2000,'2','ls03ffp',NULL,'1591274058.','1591279243.cod',NULL,NULL,'C',798,'2020-06-04 14:00:46','2020-06-04 13:00:46',NULL),(1719,19,11,'fiat','qubo','1','1.3','mjd8','Diesel',NULL,2020,'1','wj11poh',NULL,'1591274269.','1591276145.cod',NULL,NULL,'C',831,'2020-06-04 13:09:09','2020-06-04 12:09:09',NULL),(1720,144,59,'volks','gti','mk7','ea888','simos18.1','Petrol',NULL,2025,'5','PVY-1212','45016','1591278661.','1591282252.cod','GASOLINA COMUM','SEGUE STAGE 2 V1.','C',16,'2020-06-04 21:03:21','2020-06-04 20:03:21',NULL),(1721,144,62,'VOLKS','GTI','MK7.5','TSI','SIMOS18.1','Petrol',NULL,2029,'4','GHL-4163',NULL,'1591304757.','1591370605.cod','IS38 E85','SEGUE STAGE 3 V3','C',0,'2020-06-08 20:04:15','2020-06-08 19:04:15',NULL),(1722,76,20,'ford','RANGER','2018','3200','sid209','Diesel','200',2028,'3','v24hll',NULL,'1591348262.','1591349208.cod',NULL,NULL,'C',799,'2020-06-05 09:26:55','2020-06-05 08:26:55',NULL),(1723,82,15,'seat','leon','2','2000','ecu','Diesel',NULL,2018,'1','vn58 yhb',NULL,'1591348380.','1591351157.cod',NULL,NULL,'C',832,'2020-06-05 09:59:23','2020-06-05 08:59:23',NULL),(1724,100,20,'vauxhall','zafira','2009','1910','edc16c39','Diesel','120',2000,'2','yf08gud',NULL,'1591350765.','1591351668.cod',NULL,NULL,'C',800,'2020-06-05 10:07:51','2020-06-05 09:07:51',NULL),(1725,76,20,'Mercedes','c','w203','2700','edc15','Diesel',NULL,2017,'3','kv54vux',NULL,'1591353285.','1591354810.cod','swirl flap delete','BOSCH EDC15C6. ACTUATOR PLUG MUST BE DISCONNECTED!','C',801,'2020-06-05 11:00:13','2020-06-05 10:00:13',NULL),(1726,27,14,'FORD','TRANSIT','MK7','2.4TDCI','VISTEON DCU102','Diesel','116',2018,'1','HY58 XXG',NULL,'1591354624.','1591356321.cod',NULL,NULL,'C',833,'2020-06-05 11:25:24','2020-06-05 10:25:24',NULL),(1727,100,20,'vw','golf','2009','1400','med17.5.20','Diesel','160',2000,'2','nx09vjz',NULL,'1591362450.','1591372308.cod',NULL,NULL,'C',802,'2020-06-05 15:51:52','2020-06-05 14:51:52',NULL),(1728,100,20,'mercedes','glc220','2016','2143','edc17cp57','Diesel','170',2000,'3','nj66gvx',NULL,'1591363741.','1591375635.cod',NULL,NULL,'C',803,'2020-06-05 16:47:21','2020-06-05 15:47:21',NULL),(1729,183,78,'Test','Test','Test','456','456','Diesel','444',2000,'1','56456','456456','1591366150.jpg',NULL,'6456456',NULL,'O',1,'2020-06-05 14:09:13','2020-06-05 13:09:13',NULL),(1730,183,78,'Test','Test','Test','456','456','Diesel','43545',2000,'5','5345','435345','1591366381.',NULL,'45345','vhfghn ghjg','O',2,'2020-06-05 14:13:55','2020-06-05 13:13:55',NULL),(1731,173,59,'VW','POLO GTS 1.4','2020','1.4','MED17.5.25','Petrol','150',2030,'2','QXM6666','3903','1591367580.txt','1591369668.cod','Alcool/Pipoco','SEGUE STAGE 2 V1','W',17,'2020-06-05 15:07:49','2020-06-05 14:07:49',NULL),(1732,183,78,'Test','Test','Test','456','456','Diesel','45455',2000,'1','54656','5546','1591368931.',NULL,'456546',NULL,'O',3,'2020-06-05 14:55:34','2020-06-05 13:55:34',NULL),(1733,76,20,'vw','golf','7','2.0l','simos18','Petrol','310',2027,'6','DA17XWP',NULL,'1591368986.txt','1591369363.cod',NULL,NULL,'C',804,'2020-06-05 15:02:46','2020-06-05 14:02:46',NULL),(1734,100,20,'mercedes','a220','2013','2143','delphi crd3.x can','Diesel','170',2000,'3','sl63ngz',NULL,'1591370387.','1591377516.cod','DPF & EGR DELETE',NULL,'C',805,'2020-06-05 17:18:40','2020-06-05 16:18:40',NULL),(1735,143,56,'FORD','FUSION','ECOBOOST','2.0','MEDG17.0','Petrol',NULL,2027,'1','IYB9E56','40744','1591378380.txt','1591383580.cod','STG1 COM INBOXNNA COMUM','SEGUE STAGE 1 V1.','C',18,'2020-06-05 20:02:32','2020-06-05 19:02:32',NULL),(1736,100,20,'vw','golf','2010','2000','EDC17C46','Diesel','140',2000,'2','sl60nkx',NULL,'1591433454.','1591434253.cod','EGR DELETE',NULL,'C',806,'2020-06-06 09:04:21','2020-06-06 08:04:21',NULL),(1737,100,20,'renault','clio gt','2010','1500','sid305','Diesel','106',2000,'2','m9eyy',NULL,'1591434633.','1591441770.cod',NULL,'stage 1 and egr','C',807,'2020-06-06 11:09:34','2020-06-06 10:09:34',NULL),(1738,100,20,'audi','a3','2003','2000','edc16u1','Diesel','140',2000,'2','sl53mhk',NULL,'1591436331.','1591438017.cod','EGR DELETE',NULL,'C',808,'2020-06-06 10:07:00','2020-06-06 09:07:00',NULL),(1739,30,11,'volkswagen','Arteon','1st','2.0 tdi','EDC17C74','Diesel',NULL,2028,'3','HU63AWR',NULL,'1591439153.','1591442473.cod',NULL,NULL,'C',834,'2020-06-06 11:21:17','2020-06-06 10:21:17',NULL),(1740,24,11,'merc','c200','w204','2100','dddd','Diesel','1',2022,'3','m300dyp',NULL,'1591441898.','1591443763.cod',NULL,NULL,'C',835,'2020-06-06 11:42:47','2020-06-06 10:42:47',NULL),(1741,100,20,'volvo','v40 t2','2015','1969','denso','Petrol','122',2000,'2','px65rze',NULL,'1591448233.','1591452449.unq',NULL,NULL,'C',809,'2020-06-06 14:07:44','2020-06-06 13:07:44',NULL),(1742,81,20,'audi','Q5','2015','2.0 TDI 170','EDC17CP14/C46','Diesel','170',2025,'2','FJ02FEE',NULL,'1591448778.txt','1591449818.cod','MAX POWER',NULL,'C',810,'2020-06-06 13:23:41','2020-06-06 12:23:41',NULL),(1743,100,20,'vw','golf r','2016','2000','simos 18.1','Petrol','300',2000,'3','yh16xtd',NULL,'1591454083.','1591454663.cod',NULL,NULL,'C',811,'2020-06-06 14:44:28','2020-06-06 13:44:28',NULL),(1744,19,11,'vauxhall','insignia','2','2.0cdti','edc17c59','Diesel','140',2025,'2','rk15sou',NULL,'1591607622.','1591608217.unq',NULL,NULL,'C',836,'2020-06-08 09:23:39','2020-06-08 08:23:39',NULL),(1745,19,11,'merc','c220cdi','w204','2.1','crd3.1','Diesel','170',2022,'3','nj12ktu',NULL,'1591612101.','1591612345.cod',NULL,NULL,'C',837,'2020-06-08 10:32:27','2020-06-08 09:32:27',NULL),(1746,100,20,'vw','t5','2007','2500','edc16+ u31/u34','Diesel','130',2000,'2','t50lwr',NULL,'1591612227.','1591613840.cod',NULL,NULL,'C',812,'2020-06-08 10:57:25','2020-06-08 09:57:25',NULL),(1747,100,20,'mercedes','sprinter','2013','2143','crd2','Diesel','129',2000,'2','nj63yuk',NULL,'1591614484.','1591615979.cod','speed limiter removal',NULL,'C',813,'2020-06-08 11:33:02','2020-06-08 10:33:02',NULL),(1748,100,20,'mercedes','c200','2011','2143','delphi crd3','Diesel','136',2000,'3','l55rdg',NULL,'1591627916.','1591632018.cod','DPF DELETE',NULL,'C',814,'2020-06-08 16:00:20','2020-06-08 15:00:20',NULL),(1749,143,62,'VW','JETTA','GLI','EA888 3GEN','SIMOS 18.1','Petrol','220',2029,'1','IZJ3B46','14.178','1591647607.','1591648229.cod','STG3 IS38 INLET MUFFLER INTAKE DP','SEGUE STAGE 3 IS38 V1.','W',19,'2020-06-08 20:30:31','2020-06-08 19:30:31',NULL),(1750,102,32,'ford','transit','t230','1.8','siemens','Diesel',NULL,2020,'1','kxf686',NULL,'1591687642.','1591689156.cod','see whats up for fault codes',NULL,'C',815,'2020-06-09 07:52:40','2020-06-09 06:52:40',NULL),(1751,100,20,'ford','fiesta','2013','998','med17.0.1','Diesel','125',2000,'1','py13ecd',NULL,'1591691966.','1591694663.cod',NULL,NULL,'C',816,'2020-06-09 09:24:27','2020-06-09 08:24:27',NULL),(1752,43,34,'BMW','330D','E60','3.0','EDC16CP35','Diesel','231',2015,'3','OY55 XAB','112,995','1591696264.','1591698353.unq','Customer states car has been tuned before',NULL,'C',838,'2020-06-09 10:25:57','2020-06-09 09:25:57',NULL),(1753,45,11,'Vauxhall','Vivaro','FL07 PDX','1900','EDC15','Diesel','100',2017,'2','FL07 PDX',NULL,'1591697766.','1591699102.cod',NULL,'wasnt stock','C',839,'2020-06-09 10:38:34','2020-06-09 09:38:34',NULL),(1754,43,11,'Ford','Galaxy','MK2','QXXX','SID206','Diesel','140',2018,'3','LP08 EVK','93,382','1591696853.0TDi 140Bhp _LP08 EVK_ Lee Kess Read SID_206','1591700490.cod',NULL,NULL,'C',840,'2020-06-09 11:01:35','2020-06-09 10:01:35',NULL),(1755,100,32,'vw','golf','2012','1600','simos pcr 2.1','Diesel','105',2000,'1','ft12ksu',NULL,'1591699662.','1591701980.cod',NULL,NULL,'C',817,'2020-06-09 11:26:25','2020-06-09 10:26:25',NULL),(1756,144,59,'MERCEDES','C250','W205','2.0','MED17.7.2','Petrol',NULL,2026,'1','GES-6066','26000','1591704548.',NULL,'GASOLINA COMUM','SEGUE STAGE 2 V1.','C',20,'2020-06-10 16:39:16','2020-06-10 15:39:16',NULL),(1757,19,14,'ford','CMAX','3RD','2.0TDCI','DCM6.1','Diesel',NULL,2026,'2','WG16SCV',NULL,'1591709517.','1591710488.cod',NULL,NULL,'C',841,'2020-06-09 13:48:24','2020-06-09 12:48:24',NULL),(1758,100,20,'audi','a3','2007','2000','ppd1.2','Diesel','170',2000,'2','pk57gzy',NULL,'1591709960.','1591712655.cod','EGR DELETE, DPF DELETE, SWIRL FLAP DELETE - AGGRESSIVE MAP',NULL,'C',818,'2020-06-09 14:24:20','2020-06-09 13:24:20',NULL),(1759,45,39,'Mercedes','ML250','2015 (LR15 CMx)','2500','EDC17 CP57','Diesel','204',2025,'3','LR15 CMX',NULL,'1591719405.','1591720126.unq',NULL,NULL,'C',842,'2020-06-09 16:28:49','2020-06-09 15:28:49',NULL),(1760,149,55,'FIAT','PUNTO TJET','1','1.4','coloca ai bosch e manda : )','Petrol',NULL,2024,'1','PGR8880','80000','1591722092.cod','1591722222.cod','TURBO K14/ BICOS BOSCH 65/ SOFTWARE E100','SEGUE STAGE 3 V1.','C',21,'2020-06-09 17:03:44','2020-06-09 16:03:44',NULL),(1761,143,56,'AUDI','Q3','TFSI','1,4T','MED17.5.21','Petrol',NULL,2029,'1','IZR8A32','6804','1591727155.txt','1591731449.cod','STG1 COMUM','SEGUE STAGE 1 V1.','C',22,'2020-06-09 19:37:31','2020-06-09 18:37:31',NULL),(1762,100,20,'vw','t6','2017','1968','dcm6.2v','Diesel','150',2000,'2','wn67yuk',NULL,'1591777022.','1591778993.cod',NULL,NULL,'C',819,'2020-06-10 08:50:03','2020-06-10 07:50:03',NULL),(1763,100,20,'ford','custom','2016','2200','sid208','Diesel','155',2000,'2','pe16nzt',NULL,'1591783641.','1591787356.cod',NULL,'v2 now with egr','C',820,'2020-06-10 11:09:29','2020-06-10 10:09:29',NULL),(1764,19,15,'FORD TRANSIT','TRANSIT','MK7','2.2','SID208','Diesel',NULL,2022,'2','YD12ZZS',NULL,'1591798658.','1591800158.cod',NULL,NULL,'C',843,'2020-06-10 14:42:42','2020-06-10 13:42:42',NULL),(1765,144,72,'VOLKS','FUSCA','TSI','EA888','MED17.5.2','Petrol',NULL,2023,'4','FHF3461',NULL,'1591805194.','1591807115.cod','TCU','SEGUE STAGE 2 TCU V1.','C',23,'2020-06-10 16:38:38','2020-06-10 15:38:38',NULL),(1766,143,58,'VW','UP','TSI','1.0','0','Petrol',NULL,2030,'1','IZI9A98','28.000','1591818723.','1591821014.cod','STG2 COM DOWNPIPE E INBOX - FLEX','SEGUE STAGE 2 V1.','C',24,'2020-06-10 20:30:16','2020-06-10 19:30:16',NULL),(1767,27,11,'JAGUAR','XKR SUPERCHARGED','MK1','4.2','DENSO','Petrol','416',2019,'3','AG09 UYV',NULL,'1591865088.',NULL,NULL,NULL,'O',844,'2020-06-11 08:45:29','2020-06-11 07:45:29',NULL); /*!40000 ALTER TABLE `file_services` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `migrations` -- DROP TABLE IF EXISTS `migrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `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=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `migrations` -- LOCK TABLES `migrations` WRITE; /*!40000 ALTER TABLE `migrations` DISABLE KEYS */; INSERT INTO `migrations` VALUES (1,'2014_10_12_000000_create_users_table',1),(2,'2014_10_12_100000_create_password_resets_table',1),(3,'2016_05_10_130540_create_permission_tables',2); /*!40000 ALTER TABLE `migrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `orders` -- DROP TABLE IF EXISTS `orders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `orders` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) unsigned NOT NULL, `transaction_id` varchar(191) NOT NULL, `invoice_id` varchar(191) NOT NULL, `vat_number` varchar(191) DEFAULT NULL, `vat_percentage` float DEFAULT NULL, `tax_amount` float(8,2) NOT NULL, `amount` float(8,2) NOT NULL, `description` varchar(191) DEFAULT NULL, `status` varchar(191) NOT NULL, `displayable_id` bigint(20) unsigned NOT NULL DEFAULT 0, `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`), CONSTRAINT `orders_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=732 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `orders` -- LOCK TABLES `orders` WRITE; /*!40000 ALTER TABLE `orders` DISABLE KEYS */; INSERT INTO `orders` VALUES (13,24,'PAYID-LOWOUPI3TA56940EM806660A','91462816',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',1,'2018-12-11 05:28:33','2018-09-27 13:36:08',NULL),(14,19,'PAYID-LO2I6EI2FB47894AR104323A','98473105',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',2,'2018-12-11 05:28:37','2018-10-03 08:43:06',NULL),(16,29,'PAYID-LO3EALQ1NT52582NA659325X','93139194',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',3,'2018-12-11 05:28:40','2018-10-04 17:31:25',NULL),(17,19,'PAYID-LO3RV6Q8W2697503B4340417','91809717',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',4,'2018-12-11 05:28:43','2018-10-05 09:05:22',NULL),(18,19,'PAYID-LO3SODY9LA0536149553884N','93180313',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',5,'2018-12-11 05:28:46','2018-10-05 09:56:05',NULL),(19,24,'PAYID-LO5YBLI23X6928333770491E','97988719',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',6,'2018-12-11 05:28:49','2018-10-08 17:07:37',NULL),(20,24,'PAYID-LO5YC3Q2C62147733388101R','98758298',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',7,'2018-12-11 05:28:52','2018-10-08 17:10:43',NULL),(21,19,'PAYID-LO6HN6Q4CJ724901P9072025','95589845',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',8,'2018-12-11 05:28:55','2018-10-09 10:38:27',NULL),(23,36,'PAYID-LO7RXHQ70F60103T70313645','95638490',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',10,'2018-12-11 05:29:02','2018-10-11 10:46:29',NULL),(24,19,'PAYID-LO7SFJY6NN3359935539730V','89239005',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',11,'2018-12-11 05:29:04','2018-10-11 11:15:24',NULL),(25,36,'PAYID-LPAY53I4TB51537E3436994R','95003988',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',12,'2018-12-11 05:29:08','2018-10-13 07:22:12',NULL),(26,19,'PAYID-LPC3FEI7CS60100S0727063V','99952964',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',13,'2018-12-11 05:29:11','2018-10-16 10:43:04',NULL),(27,24,'PAYID-LPC7H5A2VG71564JF238864V','89536166',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',14,'2018-12-11 05:29:14','2018-10-16 15:22:42',NULL),(28,19,'PAYID-LPGYSHY97L14919BF3605006','98209433',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',15,'2018-12-11 05:29:17','2018-10-22 09:24:22',NULL),(29,19,'PAYID-LPHN5ZQ8CR81771GG747600B','98497957',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',16,'2018-12-11 05:29:20','2018-10-23 09:42:33',NULL),(30,21,'PAYID-LPICSIQ3GU47747PW922740H','95378541',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',17,'2018-12-11 05:29:23','2018-10-24 09:15:12',NULL),(31,19,'PAYID-LPMHKFI0D570937T47513720','96234216',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',18,'2018-12-11 05:29:26','2018-10-30 16:13:48',NULL),(32,24,'PAYID-LPMZBFA9VG343994U2731818','94540104',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',19,'2018-12-11 05:29:32','2018-10-31 12:23:58',NULL),(33,19,'PAYID-LPM424Y9SC5206414660225A','97430271',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',20,'2018-12-11 05:29:35','2018-10-31 16:43:02',NULL),(34,19,'PAYID-LPNRTVY27D79146DR494732C','97285014',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',21,'2018-12-11 05:29:39','2018-11-01 16:21:16',NULL),(35,27,'PAYID-LPNSAFQ8CU08188D1149274S','98405065',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',22,'2018-12-11 05:29:42','2018-11-01 16:48:25',NULL),(36,19,'PAYID-LPODDCA74815571TT870591C','94482944',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',23,'2018-12-11 05:29:44','2018-11-02 12:14:36',NULL),(37,19,'PAYID-LPQD5ZY3TD58495JN574432U','97246863',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',24,'2018-12-11 05:29:48','2018-11-05 14:00:47',NULL),(38,24,'PAYID-LPQHQUI97Y809609P663341Y','95718104',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',25,'2018-12-11 05:29:52','2018-11-05 18:05:46',NULL),(39,19,'PAYID-LPSXTCQ17Y632302S478222A','89921612',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',26,'2018-12-11 05:29:55','2018-11-09 13:12:13',NULL),(40,19,'PAYID-LPS2ZPY4YP09719C67713155','94479178',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',27,'2018-12-11 05:30:00','2018-11-09 16:50:43',NULL),(41,23,'PAYID-LPWAO7A35T79028AE751035C','89988498',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',28,'2018-12-11 05:30:03','2018-11-14 12:38:02',NULL),(42,19,'PAYID-LPWVOHA6CB512883M846783B','93686105',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',29,'2018-12-11 05:30:07','2018-11-15 12:23:32',NULL),(43,19,'PAYID-LPXKHPI5N425283N0848430X','94872890',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',30,'2018-12-11 05:30:12','2018-11-16 12:02:46',NULL),(44,46,'PAYID-LPXSIII4NK26912DX644191S','90506959',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',31,'2018-12-11 05:30:16','2018-11-16 21:13:14',NULL),(45,24,'PAYID-LPX6DPQ4P893020JP438834U','99355568',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',32,'2018-12-11 05:30:20','2018-11-17 10:39:55',NULL),(46,46,'PAYID-LP3LQNA8GG57128GT4906352','95221533',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',33,'2018-12-11 05:30:23','2018-11-22 14:09:52',NULL),(48,19,'PAYID-LP7FN5Q70053692R6228853P','97268924',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',35,'2018-12-11 05:30:29','2018-11-28 08:51:28',NULL),(49,27,'PAYID-LP7IMNI24G72997T5645584N','95437412',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',36,'2018-12-11 05:30:33','2018-11-28 12:13:45',NULL),(50,19,'PAYID-LQCTUXI9EU08278ST100953F','94510516',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',37,'2018-12-11 05:30:37','2018-12-03 14:15:23',NULL),(51,39,'PAYID-LQD2FUI0J9891744U0794542','94915222',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',38,'2018-12-11 05:30:40','2018-12-05 10:06:43',NULL),(52,21,'PAYID-LQEQF5Q9F141563U2468290J','90383337',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',39,'2018-12-11 05:30:46','2018-12-06 11:08:30',NULL),(53,76,'PAYID-LQFHJXA89Y99873RV943301P','99847296',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',1,'2018-12-11 05:31:28','2018-12-07 13:26:51',NULL),(54,27,'PAYID-LQFHLAQ3W499852XM0923031','95833489',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',40,'2018-12-11 05:30:51','2018-12-07 13:29:23',NULL),(55,74,'PAYID-LQFH24I16M491274N306300A','94013432',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',3,'2018-12-11 05:31:37','2018-12-07 14:03:19',NULL),(56,74,'PAYID-LQGA3GQ5W772063FK8674153','93463121',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',2,'2018-12-11 05:31:33','2018-12-08 18:30:08',NULL),(57,19,'PAYID-LQHHK2Y3X523621PP129653H','92619660',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',41,'2018-12-11 05:30:55','2018-12-10 14:17:44',NULL),(58,82,'PAYID-LQHXTMI58P14699S8871451J','95069152',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',42,'2018-12-11 08:49:15','2018-12-11 08:49:15',NULL),(59,82,'PAYID-LQHXVAQ306553657E975724N','96802557',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',43,'2018-12-11 08:51:43','2018-12-11 08:51:43',NULL),(60,23,'PAYID-LQIQH2I3KW88226AC907941K','89618021',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',44,'2018-12-12 12:51:01','2018-12-12 12:51:01',NULL),(61,29,'PAYID-LQIQ5WY2MT09287LU558193Y','97373496',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',45,'2018-12-12 13:37:17','2018-12-12 13:37:17',NULL),(62,84,'PAYID-LQJIQLQ6MP3178228687194S','96168173',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',46,'2018-12-13 16:27:32','2018-12-13 16:27:32',NULL),(63,19,'PAYID-LQLYAPQ9U045479UE857553V','92291184',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',47,'2018-12-17 10:54:20','2018-12-17 10:54:20',NULL),(64,74,'PAYID-LQL2OTA2DK36752M5895170P','92335863',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',4,'2018-12-17 13:41:07','2018-12-17 13:41:07',NULL),(65,74,'PAYID-LQMOCPQ1JD6811825321593U','99581553',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',5,'2018-12-18 12:00:38','2018-12-18 12:00:38',NULL),(66,19,'PAYID-LQNVRTA5A957014VA462741J','94375714',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',48,'2018-12-20 08:55:22','2018-12-20 08:55:22',NULL),(67,19,'PAYID-LQNXL6Q8HJ17446G3431535K','91513445',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',49,'2018-12-20 11:00:36','2018-12-20 11:00:36',NULL),(68,19,'PAYID-LQNY3YY49P14392C8250343H','96285877',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',50,'2018-12-20 12:41:28','2018-12-20 12:41:28',NULL),(69,19,'PAYID-LQN2WJQ3YJ26330C6745084L','90532206',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',51,'2018-12-20 14:46:25','2018-12-20 14:46:25',NULL),(70,36,'PAYID-LQOKC4Q2SE83412AL8608437','90269816',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',52,'2018-12-21 08:18:40','2018-12-21 08:18:40',NULL),(71,19,'PAYID-LQS7KFQ0Y784574LC170803N','95870123',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',53,'2018-12-28 10:04:31','2018-12-28 10:04:31',NULL),(72,19,'PAYID-LQWJMII1D8320392N3031342','94499751',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',54,'2019-01-02 10:45:15','2019-01-02 10:45:15',NULL),(73,19,'PAYID-LQWK4GY00T07569GX6228514','90138746',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',55,'2019-01-02 12:27:29','2019-01-02 12:27:29',NULL),(74,76,'PAYID-LQWMI2Y3CX95139PM888252U','93568546',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',6,'2019-01-02 14:03:24','2019-01-02 14:03:24',NULL),(75,74,'PAYID-LQWOYSA1A03161978606122W','99612933',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',7,'2019-01-02 17:00:31','2019-01-02 17:00:31',NULL),(76,39,'PAYID-LQWO5LA7FW15473KC673390J','95857559',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',56,'2019-01-02 17:03:06','2019-01-02 17:03:06',NULL),(77,19,'PAYID-LQXAFHA12M57002FA226470X','98258513',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',57,'2019-01-03 12:40:24','2019-01-03 12:40:24',NULL),(78,19,'PAYID-LQXAXFQ1RU05349F3970545C','93138599',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',58,'2019-01-03 13:18:37','2019-01-03 13:18:37',NULL),(79,84,'PAYID-LQXDV5Y5S359321G4534510Y','92000554',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',59,'2019-01-03 16:41:10','2019-01-03 16:41:10',NULL),(80,19,'PAYID-LQZQ3PY9SB37819SE388371S','92800339',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',60,'2019-01-07 08:29:10','2019-01-07 08:29:10',NULL),(81,19,'PAYID-LQZSYFA80B46204M5767170B','92834417',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',61,'2019-01-07 10:38:33','2019-01-07 10:38:33',NULL),(82,74,'PAYID-LQZUHUQ2ER07498NY171104G','96429816',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',8,'2019-01-07 12:20:07','2019-01-07 12:20:07',NULL),(83,76,'PAYID-LQ2GUBQ9V412530GD072535J','96942256',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',9,'2019-01-08 09:15:13','2019-01-08 09:15:13',NULL),(84,76,'PAYID-LQ24X5Q6NU56583UJ048522N','91362558',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',10,'2019-01-09 10:25:19','2019-01-09 10:25:19',NULL),(85,19,'PAYID-LQ255HI35J00138AB5083000','91904881',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',62,'2019-01-09 11:44:50','2019-01-09 11:44:50',NULL),(86,84,'PAYID-LQ3RUVI36S038838N841012F','99335151',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',63,'2019-01-10 10:12:06','2019-01-10 10:12:06',NULL),(87,27,'PAYID-LQ3VQHQ2EC4594203089111U','92477386',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',64,'2019-01-10 14:35:46','2019-01-10 14:35:46',NULL),(88,85,'PAYID-LQ4H7GQ6YW636374F927812F','99675788',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',11,'2019-01-11 11:36:59','2019-01-11 11:36:59',NULL),(89,19,'PAYID-LQ6EUFY08D41377X4792874C','98112077',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',65,'2019-01-14 08:37:03','2019-01-14 08:37:03',NULL),(90,21,'PAYID-LQ67ZLY7BA60092F2504862T','89515924',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',66,'2019-01-15 15:31:44','2019-01-15 15:31:44',NULL),(91,21,'PAYID-LQ7A4FA8RJ5704280099715J','93760529',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',67,'2019-01-15 16:45:28','2019-01-15 16:45:28',NULL),(92,19,'PAYID-LRAFEKY6TH15466PV345821N','97965504',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',68,'2019-01-17 10:00:35','2019-01-17 10:00:35',NULL),(93,36,'PAYID-LRAYBZA4MR9044552212444X','96268967',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',69,'2019-01-18 07:32:25','2019-01-18 07:32:25',NULL),(94,27,'PAYID-LRA4QGQ9H938479WF499344B','95541217',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',70,'2019-01-18 12:36:24','2019-01-18 12:36:24',NULL),(95,74,'PAYID-LRA6TLY32K083367J460271X','90881376',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',12,'2019-01-18 14:59:30','2019-01-18 14:59:30',NULL),(96,84,'PAYID-LRC4NJY94E65168FD308040G','94947183',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',71,'2019-01-21 13:19:18','2019-01-21 13:19:18',NULL),(97,84,'PAYID-LRC4NYA1P007995SP1199307','90013804',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',72,'2019-01-21 13:19:49','2019-01-21 13:19:49',NULL),(98,76,'PAYID-LREYRXI3J289597865403206','92915426',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',13,'2019-01-24 09:44:29','2019-01-24 09:44:29',NULL),(99,76,'PAYID-LREZR5A6CY2193724281925J','98121774',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',14,'2019-01-24 10:53:25','2019-01-24 10:53:25',NULL),(100,85,'PAYID-LRFTFCY41S04251E9015872T','96356197',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',15,'2019-01-25 16:00:49','2019-01-25 16:00:49',NULL),(101,28,'PAYID-LRHOWGI22G91674PA2007405','93248015',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',73,'2019-01-28 12:02:33','2019-01-28 12:02:33',NULL),(102,76,'PAYID-LRHTTNQ39H07891LG981661U','95662940',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',16,'2019-01-28 17:20:20','2019-01-28 17:20:20',NULL),(103,76,'PAYID-LRICAYQ05585305H1953135V','96287170',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',17,'2019-01-29 09:44:31','2019-01-29 09:44:31',NULL),(104,76,'PAYID-LRIX2UA6WH07757D82203011','91160328',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',18,'2019-01-30 10:33:14','2019-01-30 10:33:14',NULL),(105,74,'PAYID-LRI3BLQ8G352089JB460572W','93397625',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',19,'2019-01-30 14:12:31','2019-01-30 14:12:31',NULL),(106,19,'PAYID-LRJP5DQ0T9045945A9356357','93228797',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',74,'2019-01-31 13:56:51','2019-01-31 13:56:51',NULL),(107,19,'PAYID-LRMCR4Y00R55802GW3502348','93424070',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',75,'2019-02-04 11:59:16','2019-02-04 11:59:16',NULL),(108,27,'PAYID-LRMVXVA0SA04980689565355','97285237',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',76,'2019-02-05 09:48:41','2019-02-05 09:48:41',NULL),(109,27,'PAYID-LRMWBUA082107436P5520635','94105739',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',77,'2019-02-05 10:10:17','2019-02-05 10:10:17',NULL),(110,19,'PAYID-LRMX6DY2DA15783S1302180H','93969811',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',78,'2019-02-05 12:18:45','2019-02-05 12:18:45',NULL),(111,19,'PAYID-LRNJS7Y6D1943289G872110M','91558211',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',79,'2019-02-06 08:23:57','2019-02-06 08:23:57',NULL),(112,19,'PAYID-LRNKFJI1VA80545M0785540B','89266456',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',80,'2019-02-06 09:02:51','2019-02-06 09:02:51',NULL),(113,19,'PAYID-LRNPZGY2ME84482MU392053P','96131984',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',81,'2019-02-06 15:26:52','2019-02-06 15:26:52',NULL),(114,27,'PAYID-LRN7YSI71P89855VJ9807628','90246573',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',82,'2019-02-07 09:37:44','2019-02-07 09:37:44',NULL),(115,27,'PAYID-LROY6KA0N838992TR3277910','89196988',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',83,'2019-02-08 14:18:16','2019-02-08 14:18:16',NULL),(116,81,'PAYID-LRSBAFQ55042512NB7223103','94184019',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',20,'2019-02-13 12:41:40','2019-02-13 12:41:40',NULL),(117,76,'PAYID-LRVIPJQ5V093117JA2838723','89522384',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',21,'2019-02-18 10:24:00','2019-02-18 10:24:00',NULL),(118,19,'PAYID-LRVL6GA8MF386886P4518635','98385783',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',84,'2019-02-18 14:20:28','2019-02-18 14:20:28',NULL),(119,19,'PAYID-LRV6AFY1E283170US873724M','97481659',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',85,'2019-02-19 10:53:34','2019-02-19 10:53:34',NULL),(120,76,'PAYID-LRWZGOA57C26198TE0926318','94814620',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',22,'2019-02-20 17:50:11','2019-02-20 17:50:11',NULL),(121,24,'PAYID-LRXLVAQ6SP52019GV8967445','90237216',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',86,'2019-02-21 14:50:23','2019-02-21 14:50:23',NULL),(122,76,'PAYID-LRYCHXQ3YB358574F717372C','94736950',NULL,NULL,0.00,100.00,'purchase 2 tuning credit','Completed',23,'2019-02-22 16:31:50','2019-02-22 16:31:50',NULL),(123,21,'PAYID-LR3334Q02R72416XJ3939331','89864206',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',87,'2019-02-28 10:55:01','2019-02-28 10:55:01',NULL),(124,74,'PAYID-LR35X4Q48W927812X831531T','93731799',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',24,'2019-02-28 13:04:21','2019-02-28 13:04:21',NULL),(125,19,'PAYID-LR4T2YA5GY67274LW409901M','99577270',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',88,'2019-03-01 14:11:12','2019-03-01 14:11:12',NULL),(126,74,'PAYID-LR4UAYQ51W252311D582463B','93004034',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',25,'2019-03-01 14:23:58','2019-03-01 14:23:58',NULL),(127,19,'PAYID-LR6TAMQ73A374733S908220T','89845198',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',89,'2019-03-04 14:03:57','2019-03-04 14:03:57',NULL),(128,74,'PAYID-LR6UZUQ6KN28835WY3386311','91248952',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',26,'2019-03-04 16:06:07','2019-03-04 16:06:07',NULL),(129,81,'PAYID-LR6Y2HA499796372M098731N','93607253',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',27,'2019-03-04 20:40:41','2019-03-04 20:40:41',NULL),(130,74,'PAYID-LR77FNQ31H22529FW227462J','90889345',NULL,NULL,0.00,100.00,'purchase 2 tuning credit','Completed',28,'2019-03-06 16:18:19','2019-03-06 16:18:19',NULL),(131,19,'PAYID-LSBHD3A70K9836687040064D','94860924',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',90,'2019-03-08 13:45:37','2019-03-08 13:45:37',NULL),(132,76,'PAYID-LSETUMY7G972939FH3446405','99803500',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',29,'2019-03-13 17:13:52','2019-03-13 17:13:52',NULL),(133,19,'PAYID-LSFFBTI1WU84408J1096325G','98331725',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',91,'2019-03-14 13:02:29','2019-03-14 13:02:29',NULL),(134,19,'PAYID-LSFHMFI05J877832G082140L','93793701',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',92,'2019-03-14 15:41:32','2019-03-14 15:41:32',NULL),(135,19,'PAYID-LSFXDAI1LG28964FR961304D','97793028',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',93,'2019-03-15 09:34:15','2019-03-15 09:34:15',NULL),(136,74,'PAYID-LSH7ODI2KC10861R0658810S','95167729',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',30,'2019-03-18 19:53:45','2019-03-18 19:53:45',NULL),(137,76,'PAYID-LSIMUYY2FD433179U215411R','97809611',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',31,'2019-03-19 10:54:56','2019-03-19 10:54:56',NULL),(138,76,'PAYID-LSINWIA9U09231976726542U','93035187',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',32,'2019-03-19 12:06:21','2019-03-19 12:06:21',NULL),(139,81,'PAYID-LSIRKZA9EL99472Y8045363P','88908869',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',33,'2019-03-19 16:15:29','2019-03-19 16:15:29',NULL),(140,74,'PAYID-LSITWGI7HY753834U916103X','95775188',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',34,'2019-03-19 18:57:12','2019-03-19 18:57:12',NULL),(141,35,'PAYID-LSJBMHY02H9232119693031M','99123767',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',94,'2019-03-20 10:30:31','2019-03-20 10:30:31',NULL),(142,74,'PAYID-LSJGAMI7FK15643BH752741C','95768707',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',35,'2019-03-20 15:46:13','2019-03-20 15:46:13',NULL),(143,76,'PAYID-LSJVYHA92G346528R9580734','99100504',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',36,'2019-03-21 09:41:16','2019-03-21 09:41:16',NULL),(144,76,'PAYID-LSJWBZI3R6258429S266373E','96410695',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',37,'2019-03-21 10:01:43','2019-03-21 10:01:43',NULL),(145,74,'PAYID-LSMKLOI87138460N7924631C','89800262',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',38,'2019-03-25 09:56:41','2019-03-25 09:56:41',NULL),(146,76,'PAYID-LSMMUIQ3LB73364M4169573F','92189326',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',39,'2019-03-25 12:31:55','2019-03-25 12:31:55',NULL),(147,35,'PAYID-LSMNN7Y9NP24355F2009880A','93356927',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',95,'2019-03-25 13:27:31','2019-03-25 13:27:31',NULL),(148,85,'PAYID-LSN2UXI7JM70745XM851183P','94580524',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',40,'2019-03-27 16:53:50','2019-03-27 16:53:50',NULL),(149,35,'PAYID-LSOIUXA60M88347JS6614125','97673834',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',96,'2019-03-28 08:48:54','2019-03-28 08:48:54',NULL),(150,19,'PAYID-LSOMBYY33M31761523316631','94487766',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',97,'2019-03-28 12:41:36','2019-03-28 12:41:36',NULL),(151,19,'PAYID-LSOO4JA4NA813690Y363123P','90786120',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',98,'2019-03-28 15:54:33','2019-03-28 15:54:33',NULL),(152,36,'PAYID-LSO4OMQ78K842281G1733415','91530913',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',99,'2019-03-29 07:20:58','2019-03-29 07:20:58',NULL),(153,74,'PAYID-LSPDKBA8KL48378SV0213106','91910669',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',41,'2019-03-29 15:09:30','2019-03-29 15:09:30',NULL),(155,76,'PAYID-LSSHHYY65064613G4295883C','95178777',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',42,'2019-04-03 07:51:20','2019-04-03 07:51:20',NULL),(156,19,'PAYID-LSSKQ3A1JC78501WA861521L','93939396',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',101,'2019-04-03 11:35:18','2019-04-03 11:35:18',NULL),(157,35,'PAYID-LSSLDWQ54T87792JJ842160T','97943953',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',102,'2019-04-03 12:15:38','2019-04-03 12:15:38',NULL),(158,76,'PAYID-LSSL5CY90D75576VJ428851L','93828801',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',43,'2019-04-03 13:09:53','2019-04-03 13:09:53',NULL),(159,35,'PAYID-LSSMVWY76S72490T27141814','93882517',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',103,'2019-04-03 14:02:14','2019-04-03 14:02:14',NULL),(160,76,'PAYID-LSS5CYY35215769L7400570P','96836464',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',44,'2019-04-04 08:43:24','2019-04-04 08:43:24',NULL),(161,19,'PAYID-LSTT5MY2LD0142396600371X','92428624',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',104,'2019-04-05 10:40:59','2019-04-05 10:40:59',NULL),(162,35,'PAYID-LSTV3QI16H15433HV739502K','99189965',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',105,'2019-04-05 12:53:31','2019-04-05 12:53:31',NULL),(163,85,'PAYID-LSVR2TA62C75901YL4490254','94899505',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',45,'2019-04-08 09:08:11','2019-04-08 09:08:11',NULL),(164,19,'PAYID-LSVR7GQ9BE17710ET078990H','99658913',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',106,'2019-04-08 09:17:27','2019-04-08 09:17:27',NULL),(165,76,'PAYID-LSWGUUQ77P816353U720481L','90195040',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',46,'2019-04-09 08:48:45','2019-04-09 08:48:45',NULL),(166,76,'PAYID-LSWHDBI89F5859718880562V','96682709',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',47,'2019-04-09 09:19:22','2019-04-09 09:19:22',NULL),(167,85,'PAYID-LSWONNY29M9982513829040A','89637604',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',48,'2019-04-09 17:39:19','2019-04-09 17:39:19',NULL),(168,35,'PAYID-LSW6EVA3FB01478J6002033L','92753938',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',107,'2019-04-10 11:33:00','2019-04-10 11:33:00',NULL),(169,35,'PAYID-LSW6FCI93S80465VS384263A','93216531',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',108,'2019-04-10 11:33:34','2019-04-10 11:33:34',NULL),(170,74,'PAYID-LSXR6AA9G5624201G8279901','93548647',NULL,NULL,0.00,100.00,'purchase 2 tuning credit','Completed',49,'2019-04-11 10:04:07','2019-04-11 10:04:07',NULL),(171,29,'PAYID-LSXTNBA8W077415F77223828','89326978',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',109,'2019-04-11 11:44:22','2019-04-11 11:44:22',NULL),(172,21,'PAYID-LS22API95J6107142856191W','89511880',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',110,'2019-04-16 08:28:54','2019-04-16 08:28:54',NULL),(173,19,'PAYID-LS3SF3Y0K935699E2687484W','95742172',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',111,'2019-04-17 11:59:07','2019-04-17 11:59:07',NULL),(174,19,'PAYID-LS3SO4A7VE65364H5037133N','91052422',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',112,'2019-04-17 12:18:01','2019-04-17 12:18:01',NULL),(175,27,'PAYID-LS4EVGY89530327VH6640419','90157247',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',113,'2019-04-18 09:00:43','2019-04-18 09:00:43',NULL),(176,74,'PAYID-LS5PVUY87H52197PV486743T','93697022',NULL,NULL,0.00,100.00,'purchase 2 tuning credit','Completed',50,'2019-04-20 09:56:49','2019-04-20 09:56:49',NULL),(177,21,'PAYID-LTABWJI0TK53163KE235721N','92774442',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',114,'2019-04-24 07:16:02','2019-04-24 07:16:02',NULL),(178,21,'PAYID-LTAXYZI8N8132501K0559545','97262300',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',115,'2019-04-25 08:23:05','2019-04-25 08:23:05',NULL),(179,19,'PAYID-LTAX65I91J227098W8647219','92105853',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',116,'2019-04-25 08:36:21','2019-04-25 08:36:21',NULL),(180,35,'PAYID-LTA25ZI31V20649T26544720','96533742',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',117,'2019-04-25 11:58:46','2019-04-25 11:58:46',NULL),(181,36,'PAYID-LTBSKFQ071025444R787702X','96353849',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',118,'2019-04-26 14:36:47','2019-04-26 14:36:47',NULL),(182,81,'PAYID-LTCW5OA9J221246AX318663V','97378067',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',51,'2019-04-28 08:14:15','2019-04-28 08:14:15',NULL),(183,21,'PAYID-LTDLFNQ7HA73614F8283792R','89380504',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',119,'2019-04-29 07:16:38','2019-04-29 07:16:38',NULL),(184,74,'PAYID-LTDNO4A5EM85806AA1557601','97154163',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',52,'2019-04-29 09:53:12','2019-04-29 09:53:12',NULL),(185,19,'PAYID-LTDQBQY515120790F301173U','96208784',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',120,'2019-04-29 12:49:24','2019-04-29 12:49:24',NULL),(186,35,'PAYID-LTDTJ5Y88F16830JD4293828','97533937',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',121,'2019-04-29 16:32:04','2019-04-29 16:32:04',NULL),(187,76,'PAYID-LTFLCBA0DL82517R7424281E','93292644',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',53,'2019-05-02 07:58:05','2019-05-02 07:58:05',NULL),(188,27,'PAYID-LTFLSNY76U8814096342510B','99213759',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',122,'2019-05-02 08:33:14','2019-05-02 08:33:14',NULL),(189,19,'PAYID-LTFQR6A9KR28560LM405850X','97303851',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',123,'2019-05-02 14:13:30','2019-05-02 14:13:30',NULL),(190,23,'PAYID-LTGAJHA077317194T266861T','99121396',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',124,'2019-05-03 08:08:58','2019-05-03 08:08:58',NULL),(191,74,'PAYID-LTGBKHQ2UG524966C430952M','98579425',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',54,'2019-05-03 09:17:27','2019-05-03 09:17:27',NULL),(192,19,'PAYID-LTGE7DY22861813WN902444X','91920917',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',125,'2019-05-03 13:26:47','2019-05-03 13:26:47',NULL),(193,81,'PAYID-LTIHZWA3311235768281645E','96867598',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',55,'2019-05-06 17:30:00','2019-05-06 17:30:00',NULL),(194,19,'PAYID-LTJIRCQ3B927532DB819872M','89846136',NULL,NULL,0.00,360.00,'purchase 5 tuning credit','Completed',126,'2019-05-08 06:43:26','2019-05-08 06:43:26',NULL),(195,23,'PAYID-LTJJ6XI8D797252VJ824505X','99804763',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',127,'2019-05-08 08:24:34','2019-05-08 08:24:34',NULL),(196,21,'PAYID-LTKANTY50V24857CA106533X','99204401',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',128,'2019-05-09 09:54:29','2019-05-09 09:54:29',NULL),(197,21,'PAYID-LTKAO3Y3WC886118X803212B','91120704',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',129,'2019-05-09 09:57:09','2019-05-09 09:57:09',NULL),(198,76,'PAYID-LTKBE5A6V279570V7383651H','99117475',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',56,'2019-05-09 10:44:16','2019-05-09 10:44:16',NULL),(199,27,'PAYID-LTKBPRA5TN077577W833293T','91401601',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',130,'2019-05-09 11:07:03','2019-05-09 11:07:03',NULL),(200,76,'PAYID-LTKS7VI636230532F9306706','97945725',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',57,'2019-05-10 07:02:00','2019-05-10 07:02:00',NULL),(201,81,'PAYID-LTLJHXI86S42109XR1840002','91137800',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',58,'2019-05-11 08:21:16','2019-05-11 08:21:16',NULL),(202,19,'PAYID-LTMUNKQ7GF01869NV0386741','91953869',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',131,'2019-05-13 09:29:56','2019-05-13 09:29:56',NULL),(203,19,'PAYID-LTOCAZY86D06707SM7648301','96786990',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',132,'2019-05-15 13:21:48','2019-05-15 13:21:48',NULL),(204,76,'PAYID-LTORYZQ2V322352YJ198861Y','98103745',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',59,'2019-05-16 07:17:07','2019-05-16 07:17:07',NULL),(205,19,'PAYID-LTOS2VY4SU966537P151181C','96447556',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',133,'2019-05-16 08:29:18','2019-05-16 08:29:18',NULL),(206,19,'PAYID-LTOTJTA1K870432MW8687147','98564280',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',134,'2019-05-16 09:01:17','2019-05-16 09:01:17',NULL),(207,19,'PAYID-LTOTJ6Q2CJ05817US707273E','95671959',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',135,'2019-05-16 09:02:32','2019-05-16 09:02:32',NULL),(208,85,'PAYID-LTOYABQ19260815SX2162804','99415649',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',60,'2019-05-16 14:22:19','2019-05-16 14:22:19',NULL),(209,35,'PAYID-LTPN6QY10J81962GT134700R','97367416',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',136,'2019-05-17 15:20:46','2019-05-17 15:20:46',NULL),(210,76,'PAYID-LTQXFRY4C73996741722940B','92666743',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',61,'2019-05-19 14:14:43','2019-05-19 14:14:43',NULL),(211,35,'PAYID-LTRK7SI9YE736401K853641V','89514185',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',137,'2019-05-20 12:47:16','2019-05-20 12:47:16',NULL),(212,81,'PAYID-LTRMPFY5DY83287V4014474H','89816630',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',62,'2019-05-20 14:29:16','2019-05-20 14:29:16',NULL),(213,46,'PAYID-LTRNKQQ87M6268764965062N','97857738',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',138,'2019-05-20 15:32:34','2019-05-20 15:32:34',NULL),(214,85,'PAYID-LTR6CBY3L738366PH1467525','98297413',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',63,'2019-05-21 10:30:17','2019-05-21 10:30:17',NULL),(215,19,'PAYID-LTSUTGI4LU80145F3112111C','89147310',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',139,'2019-05-22 12:08:03','2019-05-22 12:08:03',NULL),(216,24,'PAYID-LTSX44Y2LT24192WK229061X','89343328',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',140,'2019-05-22 15:53:32','2019-05-22 15:53:32',NULL),(217,76,'PAYID-LTTGD5I9YY01787CV140935A','94852194',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',64,'2019-05-23 08:04:17','2019-05-23 08:04:17',NULL),(218,24,'PAYID-LTTIYKI30N22657L1032563Y','92653589',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',141,'2019-05-23 11:04:38','2019-05-23 11:04:38',NULL),(219,19,'PAYID-LTT54EI6T06478538365420W','97365685',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',142,'2019-05-24 11:06:04','2019-05-24 11:06:04',NULL),(220,76,'PAYID-LTXEY2Q4JM904637M7961749','95396073',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',65,'2019-05-29 08:10:40','2019-05-29 08:10:40',NULL),(221,19,'PAYID-LTXJWNQ2UB02433WP586924N','94572240',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',143,'2019-05-29 13:46:36','2019-05-29 13:46:36',NULL),(222,35,'PAYID-LTX2CUY6DN756752U0794521','92242548',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',144,'2019-05-30 08:25:02','2019-05-30 08:25:02',NULL),(223,19,'PAYID-LTX3MII7NG3671090057643S','93904354',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',145,'2019-05-30 09:53:43','2019-05-30 09:53:43',NULL),(224,21,'PAYID-LTX4MYA3KX2132140708551U','93115986',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',146,'2019-05-30 11:03:06','2019-05-30 11:03:06',NULL),(225,85,'PAYID-LTYAPEI7F5554185P8320325','92359539',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',66,'2019-05-30 15:41:53','2019-05-30 15:41:53',NULL),(226,21,'PAYID-LTYORBA2C831499P2267363H','98058773',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',147,'2019-05-31 07:41:07','2019-05-31 07:41:07',NULL),(227,19,'PAYID-LT2SCDY0GC07081D25449105','99220528',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',148,'2019-06-03 12:31:17','2019-06-03 12:31:17',NULL),(228,76,'PAYID-LT3E6JQ2WV497859H803934C','92509094',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',67,'2019-06-04 10:00:20','2019-06-04 10:00:20',NULL),(229,19,'PAYID-LT3W3DI6JM25560HP631964M','97252091',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',149,'2019-06-05 06:22:10','2019-06-05 06:22:10',NULL),(230,76,'PAYID-LT4MV6Y3UX04674UD7880328','96556533',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',68,'2019-06-06 07:13:10','2019-06-06 07:13:10',NULL),(231,24,'PAYID-LT4QOBI048921918Y8144451','99791933',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',150,'2019-06-06 11:29:14','2019-06-06 11:29:14',NULL),(232,24,'PAYID-LT4QSMY1YS599026D156163X','92230807',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',151,'2019-06-06 11:38:29','2019-06-06 11:38:29',NULL),(233,19,'PAYID-LT4SGKA01D4317905959431B','98056008',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',152,'2019-06-06 13:29:58','2019-06-06 13:29:58',NULL),(234,76,'PAYID-LT5CFVQ36901710BM8264039','95404475',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',69,'2019-06-07 07:40:53','2019-06-07 07:40:53',NULL),(235,94,'PAYID-LT5FWUQ68H251766S0827418','91476945',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',153,'2019-06-07 11:44:17','2019-06-07 11:44:17',NULL),(236,19,'PAYID-LT5F55Q45M55112KA507634U','90553348',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',154,'2019-06-07 11:56:44','2019-06-07 11:56:44',NULL),(237,19,'PAYID-LT7DIDA7RV423484Y113771D','91490769',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',155,'2019-06-10 09:42:47','2019-06-10 09:42:47',NULL),(238,19,'PAYID-LT7FFYI6D402624PD3484053','90137633',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',156,'2019-06-10 11:54:14','2019-06-10 11:54:14',NULL),(239,19,'PAYID-LUBA6WI3RP27373R6692540R','95482111',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',157,'2019-06-13 07:55:09','2019-06-13 07:55:09',NULL),(240,76,'PAYID-LUBBAVI7LE17472E35319308','91380105',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',70,'2019-06-13 07:59:26','2019-06-13 07:59:26',NULL),(241,76,'PAYID-LUBBVEY15834250CJ8537301','95195739',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',71,'2019-06-13 08:44:01','2019-06-13 08:44:01',NULL),(242,23,'PAYID-LUBEOCI9WF3781217887342M','98502466',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',158,'2019-06-13 11:54:13','2019-06-13 11:54:13',NULL),(243,19,'PAYID-LUBZTCY77127005KS8877344','89923686',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',159,'2019-06-14 11:57:07','2019-06-14 11:57:07',NULL),(244,76,'PAYID-LUBZWCA1UW52465EN207401P','97456657',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',72,'2019-06-14 12:03:37','2019-06-14 12:03:37',NULL),(245,19,'PAYID-LUB2BAY2PF55493VR606494V','88953529',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',160,'2019-06-14 12:26:45','2019-06-14 12:26:45',NULL),(246,39,'PAYID-LUB3FLY85D680348G799793L','94347747',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',161,'2019-06-14 13:44:32','2019-06-14 13:44:32',NULL),(247,74,'PAYID-LUFA3TI6F4124217Y9700513','89340296',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',73,'2019-06-19 09:26:46','2019-06-19 09:26:46',NULL),(248,85,'PAYID-LUFD3AA85M78928W47284303','95289430',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',74,'2019-06-19 12:51:37','2019-06-19 12:51:37',NULL),(249,76,'PAYID-LUFFYVQ2B050373G56848348','98451099',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',75,'2019-06-19 15:01:54','2019-06-19 15:01:54',NULL),(250,27,'PAYID-LUFWXLY3H010007LC169993P','89148195',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',162,'2019-06-20 10:20:10','2019-06-20 10:20:10',NULL),(251,19,'PAYID-LUGLCPQ67T12231L17550918','90159222',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',163,'2019-06-21 09:28:36','2019-06-21 09:28:36',NULL),(252,27,'PAYID-LUGLXLA91246160D0361514N','99970881',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',164,'2019-06-21 10:13:14','2019-06-21 10:13:14',NULL),(253,21,'PAYID-LUGL3TQ7TW67308BM1848749','99801139',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',165,'2019-06-21 10:22:10','2019-06-21 10:22:10',NULL),(254,19,'PAYID-LUI5BEA9JN49711S58606933','89869441',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',166,'2019-06-25 06:43:56','2019-06-25 06:43:56',NULL),(255,76,'PAYID-LUI6FBQ6LA09344TG500803K','91797469',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',76,'2019-06-25 08:00:20','2019-06-25 08:00:20',NULL),(256,19,'PAYID-LUJXZNA9XG51158AV810591S','98500775',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',167,'2019-06-26 13:10:16','2019-06-26 13:10:16',NULL),(257,19,'PAYID-LUJX34Q99V27697NR007423Y','96506098',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',168,'2019-06-26 13:15:33','2019-06-26 13:15:33',NULL),(258,19,'PAYID-LUKKPHY9727535796958254G','96408202',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',169,'2019-06-27 10:25:37','2019-06-27 10:25:37',NULL),(259,76,'PAYID-LUKLOUA7MP80516MG037231L','92871113',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',77,'2019-06-27 11:33:27','2019-06-27 11:33:27',NULL),(260,23,'PAYID-LUKL4QI46326175H7032430M','91002817',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',170,'2019-06-27 12:03:44','2019-06-27 12:03:44',NULL),(261,35,'PAYID-LUK6JGA84483393KY2752546','99459970',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',171,'2019-06-28 08:58:27','2019-06-28 08:58:27',NULL),(262,19,'PAYID-LUK7FEQ2MX47694PJ290861Y','92304346',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',172,'2019-06-28 09:57:45','2019-06-28 09:57:45',NULL),(263,76,'PAYID-LULAA5I54995442893822843','89456446',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',78,'2019-06-28 10:57:19','2019-06-28 10:57:19',NULL),(264,27,'PAYID-LULCLPY86814314622007358','99439125',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',173,'2019-06-28 13:36:43','2019-06-28 13:36:43',NULL),(265,23,'PAYID-LUO7PWY02M29283WC9926730','95183681',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',174,'2019-07-04 11:59:14','2019-07-04 11:59:14',NULL),(266,76,'PAYID-LUPAQFI27206316AY127782E','89652144',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',79,'2019-07-04 13:07:42','2019-07-04 13:07:42',NULL),(267,19,'PAYID-LUPAU4I7WA126205G2835225','89912434',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',175,'2019-07-04 13:18:15','2019-07-04 13:18:15',NULL),(268,85,'PAYID-LURTVZY4346298798543840X','92259224',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',80,'2019-07-08 11:45:57','2019-07-08 11:45:57',NULL),(269,19,'PAYID-LUSLDNI4W351652FD4087328','97069777',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',176,'2019-07-09 14:25:11','2019-07-09 14:25:11',NULL),(270,19,'PAYID-LUS5UDI8CL596229V256845K','93934947',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',177,'2019-07-10 11:29:41','2019-07-10 11:29:41',NULL),(271,19,'PAYID-LUTOWEA2Y503183Y29976351','94953761',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',178,'2019-07-11 06:54:20','2019-07-11 06:54:20',NULL),(272,76,'PAYID-LUTRTDQ55W81404RY281381F','96366278',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',81,'2019-07-11 10:13:17','2019-07-11 10:13:17',NULL),(273,85,'PAYID-LUTSGRY5J255011RG114572P','99208858',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',82,'2019-07-11 10:54:18','2019-07-11 10:54:18',NULL),(274,98,'PAYID-LUTS3SA71M59137FR1468431','94910067',NULL,NULL,0.00,220.00,'purchase 2 tuning credit','Completed',179,'2019-07-11 11:39:46','2019-07-11 11:39:46',NULL),(275,27,'PAYID-LUUF75Q5DG16065ES5249834','92161441',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',180,'2019-07-12 09:26:37','2019-07-12 09:26:37',NULL),(276,19,'PAYID-LUWGEQA8B058495SV770364D','91581222',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',181,'2019-07-15 10:24:05','2019-07-15 10:24:05',NULL),(277,19,'PAYID-LUWIAJY3BS94442MA890550E','98139624',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',182,'2019-07-15 12:31:50','2019-07-15 12:31:50',NULL),(278,76,'PAYID-LUWYLMQ2KV08182V2777301J','93704541',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',83,'2019-07-16 07:07:40','2019-07-16 07:07:40',NULL),(279,19,'PAYID-LUWZKUY8NM93185KB351463T','94990846',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',183,'2019-07-16 08:14:15','2019-07-16 08:14:15',NULL),(280,76,'PAYID-LUW3URQ1TB12898X75542052','91729235',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',84,'2019-07-16 10:52:01','2019-07-16 10:52:01',NULL),(281,27,'PAYID-LUW4YQY01526881252721150','97280517',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',184,'2019-07-16 12:08:55','2019-07-16 12:08:55',NULL),(282,24,'PAYID-LUW5Z2I4AF90275WJ764845Y','88892265',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',185,'2019-07-16 13:19:55','2019-07-16 13:19:55',NULL),(283,76,'PAYID-LUYCPJI27Y62049V9464344N','96208363',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',85,'2019-07-18 07:03:14','2019-07-18 07:03:14',NULL),(284,76,'PAYID-LUYF7VA6Y257272UP547654A','95949439',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',86,'2019-07-18 11:02:52','2019-07-18 11:02:52',NULL),(285,74,'PAYID-LUYY5KY3RF02217HS746400W','99526735',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',87,'2019-07-19 08:35:18','2019-07-19 08:35:18',NULL),(286,76,'PAYID-LUY7S2Y9RG95274KB829850G','94263852',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',88,'2019-07-19 16:10:26','2019-07-19 16:10:26',NULL),(287,76,'PAYID-LU3MCVI6CM88480LS3964626','89137972',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',89,'2019-07-23 07:12:33','2019-07-23 07:12:33',NULL),(288,19,'PAYID-LU3ML3I8UL69496CA264531K','90274841',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',186,'2019-07-23 07:32:05','2019-07-23 07:32:05',NULL),(289,76,'PAYID-LU3PJMQ1A987292AE5401721','92288674',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',90,'2019-07-23 10:52:03','2019-07-23 10:52:03',NULL),(290,19,'PAYID-LU3P4WY7WD85755DC568530E','95112944',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',187,'2019-07-23 11:32:52','2019-07-23 11:32:52',NULL),(291,39,'PAYID-LU3SQ2Q2XR51169WA825381B','89379796',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',188,'2019-07-23 14:32:24','2019-07-23 14:32:24',NULL),(292,19,'PAYID-LU4ATIQ79G58455UY3852138','92234398',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',189,'2019-07-24 06:33:10','2019-07-24 06:33:10',NULL),(293,27,'PAYID-LU4FDCI9WE55253TG049363N','93664124',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',190,'2019-07-24 11:40:29','2019-07-24 11:40:29',NULL),(294,19,'PAYID-LU4FUTA7G779079X0604502D','91939344',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',191,'2019-07-24 12:17:53','2019-07-24 12:17:53',NULL),(295,19,'PAYID-LU4HHDQ6FT84698KY470044X','94669939',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',192,'2019-07-24 14:05:07','2019-07-24 14:05:07',NULL),(296,19,'PAYID-LU4YJLY8C649306TC330620F','92461410',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',193,'2019-07-25 09:30:28','2019-07-25 09:30:28',NULL),(297,19,'PAYID-LU4YQCI02Y939925D5375805','96796774',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',194,'2019-07-25 09:44:42','2019-07-25 09:44:42',NULL),(298,19,'PAYID-LU4YZVI4SD08663NF135822U','97283695',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',195,'2019-07-25 10:05:12','2019-07-25 10:05:12',NULL),(299,19,'PAYID-LU5LAYA1HE54873BY401730A','94363651',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',196,'2019-07-26 06:49:10','2019-07-26 06:49:10',NULL),(300,19,'PAYID-LU5N27I4H373963EW829542W','91231183',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',197,'2019-07-26 10:01:39','2019-07-26 10:01:39',NULL),(301,30,'PAYID-LU7PSRY7N688502NT665761D','93421205',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',198,'2019-07-29 12:49:43','2019-07-29 12:49:43',NULL),(302,19,'PAYID-LVAD4BY9K6020455R7826802','96838261',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',199,'2019-07-30 11:54:51','2019-07-30 11:54:51',NULL),(303,102,'PAYID-LVAVELI07837785XN852373H','94030640',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',91,'2019-07-31 07:33:16','2019-07-31 07:33:16',NULL),(304,23,'PAYID-LVBNCNI9F28391327362163C','90432982',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',200,'2019-08-01 10:48:08','2019-08-01 10:48:08',NULL),(305,19,'PAYID-LVBPEWY8W534304R77637145','95682782',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',201,'2019-08-01 13:09:18','2019-08-01 13:09:18',NULL),(306,102,'PAYID-LVB5PIY5L4102143R641062K','93697294',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',92,'2019-08-02 05:27:05','2019-08-02 05:27:05',NULL),(307,36,'PAYID-LVD566Q39C10761M39136805','91879914',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',202,'2019-08-05 06:50:19','2019-08-05 06:50:19',NULL),(308,19,'PAYID-LVECBXQ71V00942B5277394P','95106775',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',203,'2019-08-05 11:28:35','2019-08-05 11:28:35',NULL),(309,102,'PAYID-LVEFEJY7TW65370EL664070P','93707964',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',93,'2019-08-05 14:58:51','2019-08-05 14:58:51',NULL),(310,30,'PAYID-LVEUGLY0DG78151V2201043H','90077145',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',204,'2019-08-06 08:07:46','2019-08-06 08:07:46',NULL),(311,27,'PAYID-LVEVPJQ8YU49115MG680991H','98057631',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',205,'2019-08-06 09:35:12','2019-08-06 09:35:12',NULL),(312,19,'PAYID-LVEXBNI4YB748855H859374X','89857785',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',206,'2019-08-06 11:21:32','2019-08-06 11:21:32',NULL),(313,29,'PAYID-LVFMMTY2FW77855GN9719542','94158711',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',207,'2019-08-07 11:40:00','2019-08-07 11:40:00',NULL),(314,76,'PAYID-LVFNPRA110387461P861022V','95953605',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',94,'2019-08-07 12:53:40','2019-08-07 12:53:40',NULL),(315,19,'PAYID-LVGS2UQ3S2601005J715550P','95201712',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',208,'2019-08-09 07:23:06','2019-08-09 07:23:06',NULL),(316,76,'PAYID-LVJ4U4A0DW90275NC4514007','96191660',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',95,'2019-08-14 07:47:09','2019-08-14 07:47:09',NULL),(317,76,'PAYID-LVJ7GGQ75B96667PY1084846','99179027',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',96,'2019-08-14 10:40:34','2019-08-14 10:40:34',NULL),(318,76,'PAYID-LVKXSBA8E43107241856873D','96302310',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',97,'2019-08-15 14:24:20','2019-08-15 14:24:20',NULL),(319,23,'PAYID-LVLGY5A0B028053VR170291G','95314175',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',209,'2019-08-16 07:44:47','2019-08-16 07:44:47',NULL),(320,76,'PAYID-LVNGXNA0CS18051M0362580K','97296743',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',98,'2019-08-19 08:29:02','2019-08-19 08:29:02',NULL),(321,19,'PAYID-LVNHIFQ7BN45847KA370805T','89778793',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',210,'2019-08-19 09:04:30','2019-08-19 09:04:30',NULL),(322,76,'PAYID-LVNHOKA10F76064HF460980P','96495536',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',99,'2019-08-19 09:17:38','2019-08-19 09:17:38',NULL),(323,19,'PAYID-LVNH44Q2A247925Y6421225P','91380850',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',211,'2019-08-19 09:48:41','2019-08-19 09:48:41',NULL),(324,19,'PAYID-LVNIK6I2BH58519767201150','98110004',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',212,'2019-08-19 10:18:38','2019-08-19 10:18:38',NULL),(325,98,'PAYID-LVN4LTI7NW93391HL351505T','89207397',NULL,NULL,0.00,220.00,'purchase 2 tuning credit','Completed',213,'2019-08-20 09:06:41','2019-08-20 09:06:41',NULL),(326,19,'PAYID-LVN5GZQ5PN03000HK225062E','89451699',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',214,'2019-08-20 10:03:43','2019-08-20 10:03:43',NULL),(327,46,'PAYID-LVN73XA6HY915849T069524F','97633358',NULL,NULL,0.00,100.00,'purchase 1 tuning credit','Completed',215,'2019-08-20 13:06:05','2019-08-20 13:06:05',NULL),(328,19,'PAYID-LVOUTVI0UK23676MF699360D','98081228',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',216,'2019-08-21 12:40:56','2019-08-21 12:40:56',NULL),(329,76,'PAYID-LVPIAXI55B04416F49774048','89068128',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',100,'2019-08-22 10:46:04','2019-08-22 10:46:04',NULL),(330,19,'PAYID-LVPIPDQ6X87933473816124W','99545597',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',217,'2019-08-22 11:16:34','2019-08-22 11:16:34',NULL),(331,102,'PAYID-LVR5JVY8LE87568R2207280V','93912983',NULL,NULL,0.00,350.00,'purchase 5 tuning credit','Completed',101,'2019-08-26 11:48:30','2019-08-26 11:48:30',NULL),(332,76,'PAYID-LVSRHZI6NL06528JM8579939','97488383',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',102,'2019-08-27 10:29:31','2019-08-27 10:29:31',NULL),(333,76,'PAYID-LVT3ISQ64G455546H508894H','94077306',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',103,'2019-08-29 10:18:06','2019-08-29 10:18:06',NULL),(334,19,'PAYID-LVT32TY2A78062165765043W','97178867',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',218,'2019-08-29 10:56:33','2019-08-29 10:56:33',NULL),(335,76,'PAYID-LVVCQEY6SL77168TB0741725','96576936',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',104,'2019-08-31 06:57:38','2019-08-31 06:57:38',NULL),(336,76,'PAYID-LVWOO7A4LC15248YE1748811','89238829',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',105,'2019-09-02 08:57:43','2019-09-02 08:57:43',NULL),(337,23,'PAYID-LVXDILQ6C860990GD971181S','98247084',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',219,'2019-09-03 08:38:33','2019-09-03 08:38:33',NULL),(338,21,'PAYID-LVXEWEI2DU80482YY627431D','99371416',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',220,'2019-09-03 10:14:54','2019-09-03 10:14:54',NULL),(339,35,'PAYID-LVXYWHI7M2742974N396924T','94190841',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',221,'2019-09-04 09:00:26','2019-09-04 09:00:26',NULL),(340,94,'PAYID-LVXZFLA2TU49282FM449415D','91973211',NULL,NULL,0.00,100.00,'purchase 1 tuning credit','Completed',222,'2019-09-04 09:45:57','2019-09-04 09:45:57',NULL),(341,19,'PAYID-LVX3IHQ0GR25171A3581764G','92958093',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',223,'2019-09-04 11:55:20','2019-09-04 11:55:20',NULL),(342,76,'PAYID-LVYMD3Y7MH48909D7396114M','92389642',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',106,'2019-09-05 07:06:33','2019-09-05 07:06:33',NULL),(343,76,'PAYID-LVZBL4I2TJ87449Y27728904','97035591',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',107,'2019-09-06 07:17:13','2019-09-06 07:17:13',NULL),(344,74,'PAYID-LVZ273I39X45205L2912412H','96323532',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',108,'2019-09-07 12:26:44','2019-09-07 12:26:44',NULL),(345,76,'PAYID-LVZ4VGI6EY975049D301790U','96711885',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',109,'2019-09-07 14:23:52','2019-09-07 14:23:52',NULL),(346,30,'PAYID-LV3EEOI8MA88099PJ491461L','96888309',NULL,NULL,0.00,100.00,'purchase 1 tuning credit','Completed',224,'2019-09-09 11:15:40','2019-09-09 11:15:40',NULL),(347,76,'PAYID-LV4MKKY09R41157N00526708','95029262',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',110,'2019-09-11 08:58:31','2019-09-11 08:58:31',NULL),(348,21,'PAYID-LV4OODQ57A5606668102870V','91519514',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',225,'2019-09-11 11:27:52','2019-09-11 11:27:52',NULL),(349,76,'PAYID-LV4PBSQ83D36113SA083401J','89476223',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',111,'2019-09-11 12:04:41','2019-09-11 12:04:41',NULL),(350,76,'PAYID-LV5A7OI8VG79040GF162433P','93208862',NULL,NULL,0.00,100.00,'purchase 2 tuning credit','Completed',112,'2019-09-12 08:28:50','2019-09-12 08:28:50',NULL),(351,74,'PAYID-LV5KREI2MS257560J605841N','89045606',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',113,'2019-09-12 19:20:57','2019-09-12 19:20:57',NULL),(352,19,'PAYID-LV5WLJI9C6711743F906782P','96756891',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',226,'2019-09-13 08:47:37','2019-09-13 08:47:37',NULL),(353,111,'PAYID-LV5WS2Q1TV54397VM423223D','90945013',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',114,'2019-09-13 09:04:06','2019-09-13 09:04:06',NULL),(354,76,'PAYID-LV5X55I4DP12343W0400333B','94021130',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',115,'2019-09-13 10:35:42','2019-09-13 10:35:42',NULL),(355,76,'PAYID-LV6KENQ1DY716964Y788001D','98581722',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',116,'2019-09-14 07:18:22','2019-09-14 07:18:22',NULL),(356,81,'PAYID-LV6MXKQ8VA79702WV795972W','91232084',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',117,'2019-09-14 10:15:48','2019-09-14 10:15:48',NULL),(357,102,'PAYID-LV7TGEY7T660466V5338703A','97970108',NULL,NULL,0.00,350.00,'purchase 5 tuning credit','Completed',118,'2019-09-16 06:01:02','2019-09-16 06:01:02',NULL),(358,21,'PAYID-LV7XAQI91X45881CF353022J','90620545',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',227,'2019-09-16 10:21:57','2019-09-16 10:21:57',NULL),(359,19,'PAYID-LV7XHEA9AT483329R839425J','91854608',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',228,'2019-09-16 10:36:18','2019-09-16 10:36:18',NULL),(360,19,'PAYID-LWAJ3CY3R442979AJ758541J','90451244',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',229,'2019-09-17 07:47:30','2019-09-17 07:47:30',NULL),(361,19,'PAYID-LWBA2MA3TB60770L2859120R','98085989',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',230,'2019-09-18 09:56:04','2019-09-18 09:56:04',NULL),(362,19,'PAYID-LWBEBOA5YD83727KS789174E','94516736',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',231,'2019-09-18 13:35:58','2019-09-18 13:35:58',NULL),(363,19,'PAYID-LWBZ2SY5WT650430L005470F','92962565',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',232,'2019-09-19 14:23:32','2019-09-19 14:23:32',NULL),(364,24,'PAYID-LWB3UMI2A193798981969057','90134516',NULL,NULL,0.00,100.00,'purchase 1 tuning credit','Completed',233,'2019-09-19 16:26:50','2019-09-19 16:26:50',NULL),(365,111,'PAYID-LWCKI5Y12160449R1186314L','89805961',NULL,NULL,0.00,100.00,'purchase 2 tuning credit','Completed',119,'2019-09-20 09:06:24','2019-09-20 09:06:24',NULL),(366,76,'PAYID-LWCMEJA80F40184J8340152F','89039392',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',120,'2019-09-20 11:12:42','2019-09-20 11:12:42',NULL),(367,29,'PAYID-LWDCT3I11C95725W9938115L','91547736',NULL,NULL,0.00,100.00,'purchase 1 tuning credit','Completed',234,'2019-09-21 12:47:59','2019-09-21 12:47:59',NULL),(368,76,'PAYID-LWEI2MQ3Y174489CJ837912G','97644212',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',121,'2019-09-23 08:15:56','2019-09-23 08:15:56',NULL),(369,19,'PAYID-LWEJW4Q7S7563289R4781107','90022624',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',235,'2019-09-23 09:16:48','2019-09-23 09:16:48',NULL),(370,76,'PAYID-LWFBDCQ3BW89402EG302134M','96776025',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',122,'2019-09-24 11:52:48','2019-09-24 11:52:48',NULL),(371,76,'PAYID-LWFCA2A2HC935485K498962Y','96472814',NULL,NULL,0.00,100.00,'purchase 2 tuning credit','Completed',123,'2019-09-24 12:56:15','2019-09-24 12:56:15',NULL),(372,19,'PAYID-LWFTWUI07452289LL954470F','94874406',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',236,'2019-09-25 09:03:51','2019-09-25 09:03:51',NULL),(373,76,'PAYID-LWFT6MI4WA904800F260221D','94260185',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',124,'2019-09-25 09:19:53','2019-09-25 09:19:53',NULL),(374,81,'PAYID-LWF2XWA7DE863248U367152D','95275149',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',125,'2019-09-25 17:03:50','2019-09-25 17:03:50',NULL),(375,76,'PAYID-LWGH4FI89P44723JD013542R','99320439',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',126,'2019-09-26 08:01:05','2019-09-26 08:01:05',NULL),(376,111,'PAYID-LWGJEJQ0EN10278AR9815318','88937789',NULL,NULL,0.00,100.00,'purchase 2 tuning credit','Completed',127,'2019-09-26 09:26:18','2019-09-26 09:26:18',NULL),(377,19,'PAYID-LWGMHAQ74F02622332855745','99836300',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',237,'2019-09-26 12:57:35','2019-09-26 12:57:35',NULL),(378,19,'PAYID-LWHB5UY5JY96968S5442384A','90106570',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',238,'2019-09-27 13:40:09','2019-09-27 13:40:09',NULL),(379,24,'PAYID-LWIL4UY5DK220227U1977808','97122885',NULL,NULL,0.00,480.00,'purchase 5 tuning credit','Completed',239,'2019-09-29 13:24:07','2019-09-29 13:24:07',NULL),(380,76,'PAYID-LWI7MRA44J5214908527250F','97856229',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',128,'2019-09-30 11:34:35','2019-09-30 11:34:35',NULL),(381,76,'PAYID-LWI73AQ9C508359DP604891V','94317095',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',129,'2019-09-30 12:05:35','2019-09-30 12:05:35',NULL),(382,76,'PAYID-LWJQ6EY1FX76930A51286641','99546673',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',130,'2019-10-01 07:33:39','2019-10-01 07:33:39',NULL),(383,19,'PAYID-LWJRA7Y6T115489SD1943520','97250991',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',240,'2019-10-01 07:40:16','2019-10-01 07:40:16',NULL),(384,19,'PAYID-LWJULGY2YL496190T090773W','93605353',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',241,'2019-10-01 11:25:14','2019-10-01 11:25:14',NULL),(385,23,'PAYID-LWJXFZA0887024333981784V','91288522',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',242,'2019-10-01 14:38:53','2019-10-01 14:38:53',NULL),(386,76,'PAYID-LWK7Q5Y2G275171TB0668617','98159796',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',131,'2019-10-03 12:33:01','2019-10-03 12:33:01',NULL),(387,85,'PAYID-LWLCAWQ1SR67255T14116010','90463504',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',132,'2019-10-03 15:23:20','2019-10-03 15:23:20',NULL),(388,102,'PAYID-LWLPOVI06R458415N1596549','97700462',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',133,'2019-10-04 06:40:38','2019-10-04 06:40:38',NULL),(389,19,'PAYID-LWNPGPQ9FW93205C8442402P','96992509',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',243,'2019-10-07 07:12:09','2019-10-07 07:12:09',NULL),(390,102,'PAYID-LWOEBSA22V32488XU425191D','89422947',NULL,NULL,0.00,350.00,'purchase 5 tuning credit','Completed',134,'2019-10-08 06:57:16','2019-10-08 06:57:16',NULL),(391,76,'PAYID-LWOEU3Q2T883492H4348415Y','96000731',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',135,'2019-10-08 07:36:22','2019-10-08 07:36:22',NULL),(392,76,'PAYID-LWOGRSY75C94605G63381319','91762894',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',136,'2019-10-08 09:46:03','2019-10-08 09:46:03',NULL),(393,27,'PAYID-LWOG2HA6M750186FX166271R','90802937',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',244,'2019-10-08 10:04:47','2019-10-08 10:04:47',NULL),(394,19,'PAYID-LWOZTHA6CH62784DF3028805','94808165',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',245,'2019-10-09 07:28:24','2019-10-09 07:28:24',NULL),(395,30,'PAYID-LWOZYUY8UE10170Y8149944A','94233098',NULL,NULL,0.00,100.00,'purchase 1 tuning credit','Completed',246,'2019-10-09 07:38:02','2019-10-09 07:38:02',NULL),(396,19,'PAYID-LWO3ALA6Y5359954L171153F','90083181',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',247,'2019-10-09 09:02:38','2019-10-09 09:02:38',NULL),(397,27,'PAYID-LWO4YOQ0TX83740FK7642148','89129234',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',248,'2019-10-09 11:03:09','2019-10-09 11:03:09',NULL),(398,76,'PAYID-LWPPN7A5N34185108740671W','98037041',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',137,'2019-10-10 08:17:05','2019-10-10 08:17:05',NULL),(399,23,'PAYID-LWPPQ6I66420053YR518023T','98393048',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',249,'2019-10-10 08:23:56','2019-10-10 08:23:56',NULL),(400,76,'PAYID-LWQGBZQ4WP72514SB619601S','90587739',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',138,'2019-10-11 10:01:17','2019-10-11 10:01:17',NULL),(401,29,'PAYID-LWQ2BQI48B83164JB7374142','95230472',NULL,NULL,0.00,200.00,'purchase 2 tuning credit','Completed',250,'2019-10-12 08:46:06','2019-10-12 08:46:06',NULL),(402,23,'PAYID-LWSEOPY23X55346S6326752X','89185715',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',251,'2019-10-14 09:01:15','2019-10-14 09:01:15',NULL),(403,19,'PAYID-LWSGIKI6S772264LT4479213','98222986',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',252,'2019-10-14 11:04:10','2019-10-14 11:04:10',NULL),(404,76,'PAYID-LWSZLPY2XX23204LR194954E','92487439',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',139,'2019-10-15 08:48:06','2019-10-15 08:48:06',NULL),(405,102,'PAYID-LWTL4YQ00T30308V1692220L','92069927',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',140,'2019-10-16 05:53:42','2019-10-16 05:53:42',NULL),(406,76,'PAYID-LWUHRMI0KD61226X37858050','95473537',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',141,'2019-10-17 13:21:12','2019-10-17 13:21:12',NULL),(407,21,'PAYID-LWUXV7Y2JG96700M94836246','93266528',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',253,'2019-10-18 07:42:56','2019-10-18 07:42:56',NULL),(408,102,'PAYID-LWUYDAI94790979UT1917337','95538667',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',142,'2019-10-18 08:10:45','2019-10-18 08:10:45',NULL),(409,19,'PAYID-LWU3HYQ74L26058XP1887638','97958275',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',254,'2019-10-18 11:49:08','2019-10-18 11:49:08',NULL),(410,21,'PAYID-LWU3MCQ2LU52148TV156142A','90330495',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',255,'2019-10-18 11:54:49','2019-10-18 11:54:49',NULL),(411,19,'PAYID-LWU4R6Y5FG063916R634214B','93251378',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',256,'2019-10-18 13:15:40','2019-10-18 13:15:40',NULL),(412,111,'PAYID-LWVLQFI1EV14654T3618880A','92678109',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',143,'2019-10-19 06:17:19','2019-10-19 06:17:19',NULL),(413,24,'PAYID-LWWZIAY9F5296979C5461649','90333047',NULL,NULL,0.00,100.00,'purchase 1 tuning credit','Completed',257,'2019-10-21 10:18:52','2019-10-21 10:18:52',NULL),(414,102,'PAYID-LWWZIVY10X91515C81113308','94126894',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',144,'2019-10-21 10:20:11','2019-10-21 10:20:11',NULL),(415,19,'PAYID-LWWZPZQ84V59703AU262322M','90059092',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',258,'2019-10-21 10:35:28','2019-10-21 10:35:28',NULL),(416,76,'PAYID-LWXNZCI7FD517032D112892Y','95795384',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',145,'2019-10-22 09:40:32','2019-10-22 09:40:32',NULL),(417,21,'PAYID-LWYAOFA4UV79788GV4504030','99026000',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',259,'2019-10-23 06:54:20','2019-10-23 06:54:20',NULL),(418,19,'PAYID-LWYV4HY0LJ77002EB325310F','89986662',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',260,'2019-10-24 07:17:53','2019-10-24 07:17:53',NULL),(419,19,'PAYID-LWYXQBA44W678953R598583F','98720881',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',261,'2019-10-24 09:08:25','2019-10-24 09:08:25',NULL),(420,76,'PAYID-LWZLSWI3CW314516X794844F','89925976',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',146,'2019-10-25 07:59:29','2019-10-25 07:59:29',NULL),(421,19,'PAYID-LW4AF3Y632700256L958034W','96993433',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',262,'2019-10-29 09:14:40','2019-10-29 09:14:40',NULL),(422,19,'PAYID-LW4VGGI52K87422GP467582W','99224979',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',263,'2019-10-30 09:09:05','2019-10-30 09:09:05',NULL),(423,19,'PAYID-LW42ZFQ1AS67322MB1886903','96189469',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',264,'2019-10-30 15:30:47','2019-10-30 15:30:47',NULL),(424,76,'PAYID-LW6CCIY0EV41151B76168915','91457536',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',147,'2019-11-01 12:12:41','2019-11-01 12:12:41',NULL),(425,76,'PAYID-LW6TZJA54829890113370008','95336251',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',148,'2019-11-02 08:22:20','2019-11-02 08:22:20',NULL),(426,21,'PAYID-LW76TCA6N435143PF668492V','91189333',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',265,'2019-11-04 09:04:24','2019-11-04 09:04:24',NULL),(427,76,'PAYID-LXAGFFQ07S67548SJ931520P','90479584',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',149,'2019-11-04 17:41:02','2019-11-04 17:41:02',NULL),(428,19,'PAYID-LXBNAFY3LN12029WU327915W','95955516',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',266,'2019-11-06 13:52:47','2019-11-06 13:52:47',NULL),(429,19,'PAYID-LXBPG5Y61A474221Y4288511','98232298',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',267,'2019-11-06 16:23:39','2019-11-06 16:23:39',NULL),(430,21,'PAYID-LXCVGRI8J04242919552983R','95733218',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',268,'2019-11-08 11:36:56','2019-11-08 11:36:56',NULL),(431,19,'PAYID-LXCVMCY1YB07117U9021994A','92954714',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',269,'2019-11-08 11:48:46','2019-11-08 11:48:46',NULL),(432,19,'PAYID-LXCW7AQ1CN79749JV716481Y','94587815',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',270,'2019-11-08 13:37:20','2019-11-08 13:37:20',NULL),(433,19,'PAYID-LXCW7LI2U944063W2790563A','89656532',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',271,'2019-11-08 13:38:04','2019-11-08 13:38:04',NULL),(434,111,'PAYID-LXDLLYQ2J827556XU759172D','97888118',NULL,NULL,0.00,100.00,'purchase 2 tuning credit','Completed',150,'2019-11-09 12:50:13','2019-11-09 12:50:13',NULL),(435,111,'PAYID-LXEZO3A2SK13667LD632915P','96643878',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',151,'2019-11-11 17:16:44','2019-11-11 17:16:44',NULL),(436,111,'PAYID-LXFJUVQ2H806635DK844074J','89611578',NULL,NULL,0.00,100.00,'purchase 2 tuning credit','Completed',152,'2019-11-12 11:41:48','2019-11-12 11:41:48',NULL),(437,19,'PAYID-LXFNRYY8EN49831VC423392D','99707003',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',272,'2019-11-12 16:08:23','2019-11-12 16:08:23',NULL),(438,19,'PAYID-LXF56JY451221058U120523F','91156136',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',273,'2019-11-13 10:47:21','2019-11-13 10:47:21',NULL),(439,19,'PAYID-LXF7ALY7XB012911U094833R','95354275',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',274,'2019-11-13 11:59:57','2019-11-13 11:59:57',NULL),(440,19,'PAYID-LXGRDQY3R76546578802772W','96957250',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',275,'2019-11-14 08:35:33','2019-11-14 08:35:33',NULL),(441,102,'PAYID-LXGRKKA6FN223482V097035N','97069121',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',153,'2019-11-14 08:50:33','2019-11-14 08:50:33',NULL),(442,19,'PAYID-LXJHF7Q9HG91883F8884362A','96585926',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',276,'2019-11-18 10:31:51','2019-11-18 10:31:51',NULL),(443,24,'PAYID-LXJHOHY8K6826264F4706619','90862682',NULL,NULL,0.00,100.00,'purchase 1 tuning credit','Completed',277,'2019-11-18 10:49:30','2019-11-18 10:49:30',NULL),(444,76,'PAYID-LXJII6I1ME51607ML444333C','97652601',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',154,'2019-11-18 11:46:28','2019-11-18 11:46:28',NULL),(445,76,'PAYID-LXJ4BNA57466926X15638716','95164471',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',155,'2019-11-19 10:15:38','2019-11-19 10:15:38',NULL),(446,19,'PAYID-LXJ43RI5MU424684K6410515','95124567',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',278,'2019-11-19 11:11:47','2019-11-19 11:11:47',NULL),(447,19,'PAYID-LXKTI5I8RN081180K9302615','89286403',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',279,'2019-11-20 12:41:42','2019-11-20 12:41:42',NULL),(448,102,'PAYID-LXKWP7Y7XJ21914W6968012J','92893228',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',156,'2019-11-20 16:21:40','2019-11-20 16:21:40',NULL),(449,19,'PAYID-LXLHYXI0H668530B1534272F','92359373',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',280,'2019-11-21 12:00:48','2019-11-21 12:00:48',NULL),(450,85,'PAYID-LXLIGLQ6AW95025MF5927639','98328205',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',157,'2019-11-21 12:33:53','2019-11-21 12:33:53',NULL),(451,94,'PAYID-LXLJ4EQ83Y29559B59715312','95515883',NULL,NULL,0.00,200.00,'purchase 2 tuning credit','Completed',281,'2019-11-21 14:29:23','2019-11-21 14:29:23',NULL),(452,19,'PAYID-LXLLCKQ4H937034XF6492718','89585531',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',282,'2019-11-21 15:46:03','2019-11-21 15:46:03',NULL),(453,23,'PAYID-LXLL3BY1JD80377BM963472K','90391401',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',283,'2019-11-21 16:39:11','2019-11-21 16:39:11',NULL),(454,102,'PAYID-LXL2B6I9VV85405NL208601A','95635512',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',158,'2019-11-22 08:49:18','2019-11-22 08:49:18',NULL),(455,102,'PAYID-LXOPQ3I6PF36035306828632','92000343',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',159,'2019-11-26 10:03:39','2019-11-26 10:03:39',NULL),(456,27,'PAYID-LXOR4LQ1UG631001Y960761R','93165434',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',284,'2019-11-26 12:44:58','2019-11-26 12:44:58',NULL),(457,102,'PAYID-LXPYF5Y2PC78681DG523133N','92943130',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',160,'2019-11-28 08:19:16','2019-11-28 08:19:16',NULL),(458,19,'PAYID-LXPZDRY4VF64367UX269205C','91108120',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',285,'2019-11-28 09:22:31','2019-11-28 09:22:31',NULL),(459,76,'PAYID-LXPZI7Y0PM5976538507131J','89889391',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',161,'2019-11-28 09:34:18','2019-11-28 09:34:18',NULL),(460,76,'PAYID-LXP4RPI5NB224660P866735B','98470379',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',162,'2019-11-28 13:17:06','2019-11-28 13:17:06',NULL),(461,29,'PAYID-LXP4R4Q7R20477806695984H','99862597',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',286,'2019-11-28 13:18:57','2019-11-28 13:18:57',NULL),(462,30,'PAYID-LXP5MSI140289674L2010118','92422951',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',287,'2019-11-28 14:16:07','2019-11-28 14:16:07',NULL),(463,23,'PAYID-LXP5VVI0CV30661LC673672P','92464639',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',288,'2019-11-28 14:34:31','2019-11-28 14:34:31',NULL),(464,76,'PAYID-LXQRJ6Q49S50637SW727114B','94508483',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',163,'2019-11-29 12:54:40','2019-11-29 12:54:40',NULL),(465,76,'PAYID-LXQWHXA4JX409114D6635634','96176485',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',164,'2019-11-29 18:31:13','2019-11-29 18:31:13',NULL),(466,74,'PAYID-LXQXX2I3KD96207KR961152T','91535283',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',165,'2019-11-29 20:14:03','2019-11-29 20:14:03',NULL),(467,76,'PAYID-LXRGOMI3CJ87477NG881690N','99469075',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',166,'2019-11-30 12:57:37','2019-11-30 12:57:37',NULL),(468,19,'PAYID-LXSNENI2SC44998WS339994A','95505076',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',289,'2019-12-02 08:58:57','2019-12-02 08:58:57',NULL),(469,29,'PAYID-LXSSGCI6R631132VE386803P','90134376',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',290,'2019-12-02 14:43:51','2019-12-02 14:43:51',NULL),(470,102,'PAYID-LXTC2JI1XG70088YS2780003','92996232',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',167,'2019-12-03 09:42:36','2019-12-03 09:42:36',NULL),(471,35,'PAYID-LXTDF6Y9RY864507F633245B','99254635',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',291,'2019-12-03 10:04:06','2019-12-03 10:04:06',NULL),(472,76,'PAYID-LXTGT7I1PL12225KP5005847','91934846',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',168,'2019-12-03 13:59:04','2019-12-03 13:59:04',NULL),(473,76,'PAYID-LXTYHQI2N653916J8116825L','93087314',NULL,NULL,0.00,100.00,'purchase 2 tuning credit','Completed',169,'2019-12-04 10:00:55','2019-12-04 10:00:55',NULL),(474,76,'PAYID-LXUNFSA6HJ3589558126825E','98646299',NULL,NULL,0.00,100.00,'purchase 2 tuning credit','Completed',170,'2019-12-05 09:51:25','2019-12-05 09:51:25',NULL),(475,76,'PAYID-LXUSIXQ9KJ8675223399125Y','91182970',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',171,'2019-12-05 15:38:27','2019-12-05 15:38:27',NULL),(476,30,'PAYID-LXVDWQQ32N147912C036405J','90921169',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',292,'2019-12-06 11:30:02','2019-12-06 11:30:02',NULL),(477,27,'PAYID-LXVYTQA59M78624X4871311X','96019159',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',293,'2019-12-07 11:16:00','2019-12-07 11:16:00',NULL),(478,19,'PAYID-LXXAZYA9M831598JX379433S','95766504',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',294,'2019-12-09 08:59:28','2019-12-09 08:59:28',NULL),(479,19,'PAYID-LXXDIXI3B9756745J813040G','97314233',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',295,'2019-12-09 11:48:04','2019-12-09 11:48:04',NULL),(480,102,'PAYID-LXXVTFA93768618JX6366200','93412385',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',172,'2019-12-10 08:39:02','2019-12-10 08:39:02',NULL),(481,19,'PAYID-LXXZBEI2SR30658LT3323604','89394698',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',296,'2019-12-10 12:33:37','2019-12-10 12:33:37',NULL),(482,102,'PAYID-LXX2FLQ11P19097W1173430L','95635297',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',173,'2019-12-10 13:52:11','2019-12-10 13:52:11',NULL),(483,102,'PAYID-LXYLAPQ78U38881918209842','96786933',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',174,'2019-12-11 09:01:40','2019-12-11 09:01:40',NULL),(484,19,'PAYID-LXYNAPA6AY035452M8693202','97065323',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',297,'2019-12-11 11:18:10','2019-12-11 11:18:10',NULL),(485,28,'PAYID-LXYRVAQ4RT44486WY711264P','96614463',NULL,NULL,0.00,100.00,'purchase 1 tuning credit','Completed',298,'2019-12-11 16:35:40','2019-12-11 16:35:40',NULL),(486,102,'PAYID-LXZUJAI7VY32230AG488781B','99923711',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',175,'2019-12-13 07:58:13','2019-12-13 07:58:13',NULL),(487,19,'PAYID-LX3WUYY49997426Y2683872N','90696791',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',299,'2019-12-16 11:28:59','2019-12-16 11:28:59',NULL),(488,19,'PAYID-LX3YLAQ35A79148VJ3243926','89349651',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',300,'2019-12-16 13:25:15','2019-12-16 13:25:15',NULL),(489,19,'PAYID-LX3ZQNY88F17224DP742601N','99213937',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',301,'2019-12-16 14:44:22','2019-12-16 14:44:22',NULL),(490,30,'PAYID-LX32P2A33J48393XN0755714','91034753',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',302,'2019-12-16 15:51:37','2019-12-16 15:51:37',NULL),(491,76,'PAYID-LX4KBOI9NN92362WM347215X','91990632',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',176,'2019-12-17 09:33:03','2019-12-17 09:33:03',NULL),(492,19,'PAYID-LX4K5PA3AH98472U61692433','94465862',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',303,'2019-12-17 10:32:43','2019-12-17 10:32:43',NULL),(493,76,'PAYID-LX4OKAI0W436183A83497449','90450814',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',177,'2019-12-17 14:24:25','2019-12-17 14:24:25',NULL),(494,76,'PAYID-LX4PD3Y8LY57587PN013890V','91592191',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',178,'2019-12-17 15:19:33','2019-12-17 15:19:33',NULL),(495,102,'PAYID-LX46IHI0E1007629D022905M','96437396',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',179,'2019-12-18 08:32:49','2019-12-18 08:32:49',NULL),(496,19,'PAYID-LX5VRPA9D2304625Y567790K','88944111',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',304,'2019-12-19 11:07:37','2019-12-19 11:07:37',NULL),(497,102,'PAYID-LX6HR4I2J926293R3677704R','94231260',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',180,'2019-12-20 07:32:20','2019-12-20 07:32:20',NULL),(498,19,'PAYID-LX6KDGA8WA86745WB466140V','93932558',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',305,'2019-12-20 10:25:46','2019-12-20 10:25:46',NULL),(499,19,'PAYID-LX6N46Y0K748569HD7117347','94593335',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',306,'2019-12-20 14:45:36','2019-12-20 14:45:36',NULL),(500,30,'PAYID-LX67J7A4087849345413843C','97112511',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',307,'2019-12-21 10:36:14','2019-12-21 10:36:14',NULL),(501,27,'PAYID-LYAIQQA71X757543X546015M','93368524',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',308,'2019-12-23 09:26:50','2019-12-23 09:26:50',NULL),(502,27,'PAYID-LYAIQYI4UN35314C4043794G','92381972',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',309,'2019-12-23 09:27:25','2019-12-23 09:27:25',NULL),(503,76,'PAYID-LYAIVRY39N78444YK6047535','89998405',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',181,'2019-12-23 09:37:32','2019-12-23 09:37:32',NULL),(504,102,'PAYID-LYAJVNY6SA509441T386044T','96745219',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',182,'2019-12-23 10:45:31','2019-12-23 10:45:31',NULL),(505,30,'PAYID-LYAMNIA1GY61918PK304421P','95149982',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',310,'2019-12-23 13:55:17','2019-12-23 13:55:17',NULL),(506,102,'PAYID-LYGZCQY34Y0947179639683D','95017228',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',183,'2020-01-02 06:44:50','2020-01-02 06:44:50',NULL),(507,19,'PAYID-LYG2XCQ59E98619SP6864514','94239233',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',311,'2020-01-02 08:36:42','2020-01-02 08:36:42',NULL),(508,19,'PAYID-LYHA2KA1CX60541HC8999924','92132236',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',312,'2020-01-02 15:33:10','2020-01-02 15:33:10',NULL),(509,102,'PAYID-LYHQDSA4L3911869Y652480H','94864226',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',184,'2020-01-03 08:57:07','2020-01-03 08:57:07',NULL),(510,102,'PAYID-LYHRMZI4EC41647PJ683023D','93984843',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',185,'2020-01-03 10:25:34','2020-01-03 10:25:34',NULL),(511,74,'PAYID-LYI4WXQ16R43576GL564611E','97043215',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',186,'2020-01-05 11:41:47','2020-01-05 11:41:47',NULL),(512,74,'PAYID-LYI643A17C79819EX3534113','92866402',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',187,'2020-01-05 14:11:08','2020-01-05 14:11:08',NULL),(513,19,'PAYID-LYJQLTY2AP85010G1760964U','90131894',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',313,'2020-01-06 10:03:14','2020-01-06 10:03:14',NULL),(514,19,'PAYID-LYKZLWY1P5102464W019215J','94735945',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',314,'2020-01-08 08:42:19','2020-01-08 08:42:19',NULL),(515,19,'PAYID-LYLOORQ60K52202BM047015J','89054251',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',315,'2020-01-09 08:41:59','2020-01-09 08:41:59',NULL),(516,102,'PAYID-LYLRMPY1G855118KS4408800','89011342',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',188,'2020-01-09 12:02:45','2020-01-09 12:02:45',NULL),(517,19,'PAYID-LYLVAMY7YN75289SE977462S','93765782',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',316,'2020-01-09 16:09:39','2020-01-09 16:09:39',NULL),(518,24,'PAYID-LYMFLMA9TP73187N3775224M','98415106',NULL,NULL,0.00,100.00,'purchase 1 tuning credit','Completed',317,'2020-01-10 10:45:29','2020-01-10 10:45:29',NULL),(519,76,'PAYID-LYNPEWI3Y20540487218653B','94635666',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',189,'2020-01-12 10:18:23','2020-01-12 10:18:23',NULL),(520,76,'PAYID-LYNR6VY4WX06465YG192931S','94548229',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',190,'2020-01-12 13:30:21','2020-01-12 13:30:21',NULL),(521,102,'PAYID-LYOCG7A7KK39982EL9638844','98201522',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',191,'2020-01-13 08:00:42','2020-01-13 08:00:42',NULL),(522,102,'PAYID-LYOYJFA144137750B747135N','89262909',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',192,'2020-01-14 09:06:46','2020-01-14 09:06:46',NULL),(523,102,'PAYID-LYOYJSA8UP708233G632640L','92898522',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',193,'2020-01-14 09:07:54','2020-01-14 09:07:54',NULL),(524,76,'PAYID-LYO2QOQ4HV66854X9941111S','98686688',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',194,'2020-01-14 11:39:02','2020-01-14 11:39:02',NULL),(525,76,'PAYID-LYPNXVA10P11902V16617110','97539849',NULL,NULL,0.00,100.00,'purchase 2 tuning credit','Completed',195,'2020-01-15 09:31:29','2020-01-15 09:31:29',NULL),(526,76,'PAYID-LYPPZZY0A761328HT4364502','94001114',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',196,'2020-01-15 11:52:43','2020-01-15 11:52:43',NULL),(527,76,'PAYID-LYPVLBI49H46410EG106551X','97436101',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',197,'2020-01-15 18:10:54','2020-01-15 18:10:54',NULL),(528,27,'PAYID-LYQCVBA4CD33729AY882681E','89856133',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',318,'2020-01-16 09:20:55','2020-01-16 09:20:55',NULL),(529,19,'PAYID-LYQHOEQ7BW81055F13948111','98440518',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',319,'2020-01-16 14:45:55','2020-01-16 14:45:55',NULL),(530,29,'PAYID-LYQLYAQ0UN35564FF1323252','90431888',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',320,'2020-01-16 19:40:50','2020-01-16 19:40:50',NULL),(531,102,'PAYID-LYQ3M4I91H06730C7983694N','94572275',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',198,'2020-01-17 13:29:34','2020-01-17 13:29:34',NULL),(532,102,'PAYID-LYQ4POI44U862758V135484C','94921406',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',199,'2020-01-17 14:42:22','2020-01-17 14:42:22',NULL),(533,24,'PAYID-LYQ443I3N2641601P831433B','94843219',NULL,NULL,0.00,100.00,'purchase 1 tuning credit','Completed',321,'2020-01-17 15:11:13','2020-01-17 15:11:13',NULL),(534,76,'PAYID-LYRMVZI6S016772S0085684D','99813479',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',200,'2020-01-18 09:08:16','2020-01-18 09:08:16',NULL),(535,30,'PAYID-LYSXJUA46M56078J3522702M','89649908',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',322,'2020-01-20 09:37:37','2020-01-20 09:37:37',NULL),(536,19,'PAYID-LYSYCXA3U207870DD426513W','89365163',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',323,'2020-01-20 10:31:12','2020-01-20 10:31:12',NULL),(537,29,'PAYID-LYTM4OI5GA04541KH610415K','90498553',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',324,'2020-01-21 10:12:02','2020-01-21 10:12:02',NULL),(538,19,'PAYID-LYTNMHQ1AF11395J18323016','99433679',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',325,'2020-01-21 10:45:03','2020-01-21 10:45:03',NULL),(539,28,'PAYID-LYTRN6Y12Y104960H731892R','89845250',NULL,NULL,0.00,200.00,'purchase 2 tuning credit','Completed',326,'2020-01-21 15:23:19','2020-01-21 15:23:19',NULL),(540,19,'PAYID-LYUF52Q7E6717019H006900T','98548224',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',327,'2020-01-22 14:40:59','2020-01-22 14:40:59',NULL),(541,19,'PAYID-LYUGWIA7BT90529MH981643L','96059376',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',328,'2020-01-22 15:33:03','2020-01-22 15:33:03',NULL),(542,19,'PAYID-LYUXDJQ8HS080122Y840490V','99256699',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',329,'2020-01-23 10:13:12','2020-01-23 10:13:12',NULL),(543,30,'PAYID-LYVPPEI41E44423V0920940Y','93819923',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',330,'2020-01-24 13:56:57','2020-01-24 13:56:57',NULL),(544,19,'PAYID-LYVQJEI1HS2673369162194Y','93570129',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',331,'2020-01-24 14:52:17','2020-01-24 14:52:17',NULL),(545,30,'PAYID-LYVRIJA77K34619JN8928733','90991583',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',332,'2020-01-24 15:58:51','2020-01-24 15:58:51',NULL),(546,27,'PAYID-LYWBQYI0SM27521V46331114','95282747',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',333,'2020-01-25 10:30:13','2020-01-25 10:30:13',NULL),(547,30,'PAYID-LYWD3FI6N324766W22960240','93884861',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',334,'2020-01-25 13:07:58','2020-01-25 13:07:58',NULL),(548,102,'PAYID-LYYAS3A32957678RM074272M','95423333',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',201,'2020-01-28 10:14:24','2020-01-28 10:14:24',NULL),(549,76,'PAYID-LYYF37Y9HE05337N01251712','88915953',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',202,'2020-01-28 16:15:18','2020-01-28 16:15:18',NULL),(550,35,'PAYID-LYZQURQ74919181GY9347131','98352313',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',335,'2020-01-30 16:54:56','2020-01-30 16:54:56',NULL),(551,19,'PAYID-LY2AWUA3DP49890M9848252S','88914874',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',336,'2020-01-31 11:11:33','2020-01-31 11:11:33',NULL),(552,30,'PAYID-LY2BVFI2HW00591TK8237122','98168196',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',337,'2020-01-31 12:16:46','2020-01-31 12:16:46',NULL),(553,29,'PAYID-LY2VU6A93P915955V5155356','89912994',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',338,'2020-02-01 11:02:01','2020-02-01 11:02:01',NULL),(554,29,'PAYID-LY2YXWI2T8310575N403604U','99672328',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',339,'2020-02-01 14:32:25','2020-02-01 14:32:25',NULL),(555,102,'PAYID-LY4SVUA7UK560847F9434254','97403380',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',203,'2020-02-04 08:27:18','2020-02-04 08:27:18',NULL),(556,19,'PAYID-LY4T2QA40646995L2728640W','94370298',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',340,'2020-02-04 09:45:54','2020-02-04 09:45:54',NULL),(557,102,'PAYID-LY5IR5A5VB04973PP1860230','99861241',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',204,'2020-02-05 09:21:19','2020-02-05 09:21:19',NULL),(558,102,'PAYID-LY5JUXQ4Y397770TC068713N','90763934',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',205,'2020-02-05 10:35:28','2020-02-05 10:35:28',NULL),(559,74,'PAYID-LY5J7KA1RG58953C02313417','93045077',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',206,'2020-02-05 10:58:25','2020-02-05 10:58:25',NULL),(560,35,'PAYID-LY6CE3Q331433198S719882R','94413712',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',341,'2020-02-06 14:28:24','2020-02-06 14:28:24',NULL),(561,19,'PAYID-LY6WEYQ1KC24472EC664324P','94019020',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',342,'2020-02-07 13:14:51','2020-02-07 13:14:51',NULL),(562,19,'PAYID-LY6YJOA8HB7874651063911E','93839853',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',343,'2020-02-07 15:39:52','2020-02-07 15:39:52',NULL),(563,19,'PAYID-LY6YLJQ3X753872D5499781E','98402653',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',344,'2020-02-07 15:43:49','2020-02-07 15:43:49',NULL),(564,102,'PAYID-LY7IELY4UC60216PG036874D','99421250',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',207,'2020-02-08 09:41:24','2020-02-08 09:41:24',NULL),(565,102,'PAYID-LZAWKAY4T181752W6385493L','94046745',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',208,'2020-02-10 14:14:40','2020-02-10 14:14:40',NULL),(566,24,'PAYID-LZCCWGI4YD819318G587463J','89902527',NULL,NULL,0.00,100.00,'purchase 1 tuning credit','Completed',345,'2020-02-12 16:43:35','2020-02-12 16:43:35',NULL),(567,19,'PAYID-LZCREOA98L725709U8156708','90550142',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',346,'2020-02-13 09:09:28','2020-02-13 09:09:28',NULL),(568,19,'PAYID-LZCTXMY9FR10808AR4841543','90704915',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',347,'2020-02-13 12:06:35','2020-02-13 12:06:35',NULL),(569,27,'PAYID-LZCW2OQ7XT73388KM843064N','99846381',NULL,NULL,0.00,100.00,'purchase 1 tuning credit','Completed',348,'2020-02-13 15:38:28','2020-02-13 15:38:28',NULL),(570,29,'PAYID-LZD72GI5SJ395202Y2530846','91635859',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',349,'2020-02-15 14:16:36','2020-02-15 14:16:36',NULL),(571,102,'PAYID-LZFERUQ67U056215X936864W','99717425',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',209,'2020-02-17 08:03:59','2020-02-17 08:03:59',NULL),(572,102,'PAYID-LZFEVVA4YN31066P0959550C','93182863',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',210,'2020-02-17 08:12:16','2020-02-17 08:12:16',NULL),(573,19,'PAYID-LZF36CI8WV06645MD719002T','91966922',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',350,'2020-02-18 10:40:30','2020-02-18 10:40:30',NULL),(574,74,'PAYID-LZF5NZQ2XV14630RA8534144','89174605',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',211,'2020-02-18 12:23:18','2020-02-18 12:23:18',NULL),(575,102,'PAYID-LZGPM4Q8S19738642596352X','90844898',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',212,'2020-02-19 08:49:02','2020-02-19 08:49:02',NULL),(576,102,'PAYID-LZGUEWQ8LY69454P63676003','94024203',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',213,'2020-02-19 14:13:05','2020-02-19 14:13:05',NULL),(577,102,'PAYID-LZGVFZA4TM4447087124740F','97402898',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',214,'2020-02-19 15:23:34','2020-02-19 15:23:34',NULL),(578,76,'PAYID-LZGYLZQ36S587554P765411J','90511123',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',215,'2020-02-19 19:01:16','2020-02-19 19:01:16',NULL),(579,19,'PAYID-LZHH5IY2RC28109L3309633G','98715399',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',351,'2020-02-20 12:42:29','2020-02-20 12:42:29',NULL),(580,19,'PAYID-LZHIREQ4DD184744P611225V','98686170',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',352,'2020-02-20 13:24:54','2020-02-20 13:24:54',NULL),(581,76,'PAYID-LZHJUFA6C503921VK340364R','90263852',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',216,'2020-02-20 14:39:39','2020-02-20 14:39:39',NULL),(582,19,'PAYID-LZH2K4Q49P67249AH5044051','90260565',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',353,'2020-02-21 09:40:19','2020-02-21 09:40:19',NULL),(583,29,'PAYID-LZH7QDQ3V047071PV980220M','92861674',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',354,'2020-02-21 15:33:15','2020-02-21 15:33:15',NULL),(584,76,'PAYID-LZH7R7A8YC23655E7128911G','91365383',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',217,'2020-02-21 15:36:46','2020-02-21 15:36:46',NULL),(585,29,'PAYID-LZIUUOI35M30101606545251','90096798',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',355,'2020-02-22 15:36:08','2020-02-22 15:36:08',NULL),(586,102,'PAYID-LZJYRHQ70302900UT805981K','91030184',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',218,'2020-02-24 08:26:21','2020-02-24 08:26:21',NULL),(587,19,'PAYID-LZJ5HJQ3B029703KD381735U','96601386',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',356,'2020-02-24 13:46:29','2020-02-24 13:46:29',NULL),(588,102,'PAYID-LZKSOUI8E2240606E8413050','95994663',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',219,'2020-02-25 13:55:48','2020-02-25 13:55:48',NULL),(589,29,'PAYID-LZKVMDQ7TM06212CW873703C','89541941',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',357,'2020-02-25 17:15:25','2020-02-25 17:15:25',NULL),(590,27,'PAYID-LZLECKQ5TF073046A721914L','93197914',NULL,NULL,0.00,100.00,'purchase 1 tuning credit','Completed',358,'2020-02-26 09:58:37','2020-02-26 09:58:37',NULL),(591,19,'PAYID-LZL4ZWI5CJ871697D4741538','92116530',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',359,'2020-02-27 14:06:35','2020-02-27 14:06:35',NULL),(592,19,'PAYID-LZL5TQY0KV14546V1470115A','90139607',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',360,'2020-02-27 15:01:39','2020-02-27 15:01:39',NULL),(593,74,'PAYID-LZMPBAQ7WW60951A4290325U','98970499',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',220,'2020-02-28 10:52:05','2020-02-28 10:52:05',NULL),(594,102,'PAYID-LZNBLAY0L7674727Y428570H','90650459',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',221,'2020-02-29 07:41:12','2020-02-29 07:41:12',NULL),(595,19,'PAYID-LZOM3EY9NV623259N641331F','92841678',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',361,'2020-03-02 09:11:07','2020-03-02 09:11:07',NULL),(596,29,'PAYID-LZPEETA75V97871J41100146','97900145',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',362,'2020-03-03 11:41:28','2020-03-03 11:41:28',NULL),(597,29,'PAYID-LZPJ6UA0BT04455UW435314G','89857385',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',363,'2020-03-03 18:18:22','2020-03-03 18:18:22',NULL),(598,19,'PAYID-LZPYCQI6JM90658SV4074818','92666654',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',364,'2020-03-04 10:22:10','2020-03-04 10:22:10',NULL),(599,19,'PAYID-LZPYHSI68468540746074927','93233285',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',365,'2020-03-04 10:32:54','2020-03-04 10:32:54',NULL),(600,19,'PAYID-LZP4Y4Y90Y39771BU043921R','97991705',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',366,'2020-03-04 15:43:01','2020-03-04 15:43:01',NULL),(601,19,'PAYID-LZP5JUA3V951252H3171572Y','89040147',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',367,'2020-03-04 16:18:38','2020-03-04 16:18:38',NULL),(602,76,'PAYID-LZQBA5Y9RT99418PH0621709','91986864',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',222,'2020-03-04 20:33:18','2020-03-04 20:33:18',NULL),(603,19,'PAYID-LZQQIPY10560362WC146764G','96324075',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',368,'2020-03-05 13:53:20','2020-03-05 13:53:20',NULL),(604,98,'PAYID-LZQTQZA27D9767831551835C','89893163',NULL,NULL,0.00,220.00,'purchase 2 tuning credit','Completed',369,'2020-03-05 17:36:43','2020-03-05 17:36:43',NULL),(605,27,'PAYID-LZRHTCA61G96938BC208063G','89499213',NULL,NULL,0.00,100.00,'purchase 1 tuning credit','Completed',370,'2020-03-06 16:26:14','2020-03-06 16:26:14',NULL),(606,29,'PAYID-LZSVADY2T332401W2038915M','92037850',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',371,'2020-03-08 20:06:12','2020-03-08 20:06:12',NULL),(607,102,'PAYID-LZTU6VA1KC45281R1237471E','91092554',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',223,'2020-03-10 08:27:19','2020-03-10 08:27:19',NULL),(608,19,'PAYID-LZTXYWQ5A204916CW792831J','94039565',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',372,'2020-03-10 11:40:02','2020-03-10 11:40:02',NULL),(609,102,'PAYID-LZULN2Y6NA037081F851261F','90385358',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',224,'2020-03-11 10:01:32','2020-03-11 10:01:32',NULL),(610,30,'PAYID-LZUMXMA35X97845348705102','90597273',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',373,'2020-03-11 11:30:23','2020-03-11 11:30:23',NULL),(611,19,'PAYID-LZUOFXQ87M4069089583664A','91514220',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',374,'2020-03-11 13:09:04','2020-03-11 13:09:04',NULL),(612,94,'PAYID-LZUQ7NA71G66161BS810620G','96767785',NULL,NULL,0.00,200.00,'purchase 2 tuning credit','Completed',375,'2020-03-11 16:21:54','2020-03-11 16:21:54',NULL),(613,27,'PAYID-LZURHHQ07B18162171257153','95026901',NULL,NULL,0.00,100.00,'purchase 1 tuning credit','Completed',376,'2020-03-11 16:37:14','2020-03-11 16:37:14',NULL),(614,76,'PAYID-LZVAG3A24S10078R1188905E','98783636',NULL,NULL,0.00,100.00,'purchase 2 tuning credit','Completed',225,'2020-03-12 09:40:27','2020-03-12 09:40:27',NULL),(615,24,'PAYID-LZVDHDI6PL354401M6911538','94922142',NULL,NULL,0.00,100.00,'purchase 1 tuning credit','Completed',377,'2020-03-12 13:05:45','2020-03-12 13:05:45',NULL),(616,81,'PAYID-LZWJYRQ7J459833N2826492A','90080223',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',226,'2020-03-14 08:57:13','2020-03-14 08:57:13',NULL),(617,76,'PAYID-LZYJGMI35806741N86403357','89885584',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',227,'2020-03-17 09:07:21','2020-03-17 09:07:21',NULL),(618,19,'PAYID-LZYJZSA07562511XG210044T','96737960',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',378,'2020-03-17 09:48:14','2020-03-17 09:48:14',NULL),(619,76,'PAYID-LZYLR4I3U288220M6882221X','93615048',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',228,'2020-03-17 11:48:24','2020-03-17 11:48:24',NULL),(620,76,'PAYID-LZYLUGY9KV6670630278550R','93949698',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',229,'2020-03-17 11:53:12','2020-03-17 11:53:12',NULL),(621,19,'PAYID-LZY7HQQ12986960C2589963P','94447705',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',379,'2020-03-18 10:11:29','2020-03-18 10:11:29',NULL),(622,19,'PAYID-LZZEFCI8TN45939CW742480P','93805442',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',380,'2020-03-18 15:47:41','2020-03-18 15:47:41',NULL),(623,76,'PAYID-LZZUZAA8CV83598FC9968410','94759630',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',230,'2020-03-19 10:42:37','2020-03-19 10:42:37',NULL),(624,35,'PAYID-LZZVDEA5YW40081UW6714707','94256873',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',381,'2020-03-19 11:04:19','2020-03-19 11:04:19',NULL),(625,102,'PAYID-LZZWQ7I39642528BA874431V','97345126',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',231,'2020-03-19 12:42:30','2020-03-19 12:42:30',NULL),(626,19,'PAYID-LZZY36A463997658R8058330','90204774',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',382,'2020-03-19 15:21:53','2020-03-19 15:21:53',NULL),(627,102,'PAYID-LZ2IHKI4JJ817192C3358134','95818481',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',232,'2020-03-20 08:49:57','2020-03-20 08:49:57',NULL),(628,19,'PAYID-LZ2IYMQ2BD123240R6129626','89939587',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',383,'2020-03-20 09:26:26','2020-03-20 09:26:26',NULL),(629,19,'PAYID-LZ2N33Q9CF44982SE725081B','93040161',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',384,'2020-03-20 15:15:10','2020-03-20 15:15:10',NULL),(630,76,'PAYID-LZ3ARXQ33920903LF9906042','94288260',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',233,'2020-03-21 12:30:47','2020-03-21 12:30:47',NULL),(631,76,'PAYID-LZ3ARXQ33920903LF9906042','94288260',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',234,'2020-03-21 12:30:48','2020-03-21 12:30:48',NULL),(632,76,'PAYID-LZ352KI8FB409092E683322Y','94343964',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',235,'2020-03-22 21:48:44','2020-03-22 21:48:44',NULL),(633,81,'PAYID-LZ47JKA4LJ24507JX447150G','99712119',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',236,'2020-03-24 11:53:54','2020-03-24 11:53:54',NULL),(634,102,'PAYID-LZ6GH2I0SA90127T5519422S','97597102',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',237,'2020-03-26 08:12:45','2020-03-26 08:12:45',NULL),(635,30,'PAYID-LZ67UCA8W373608GD738392T','96588991',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',385,'2020-03-27 13:05:36','2020-03-27 13:05:36',NULL),(636,45,'PAYID-L2A4ZGQ7TD07297LR8590246','93222155',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',386,'2020-03-30 09:42:12','2020-03-30 09:42:12',NULL),(637,45,'PAYID-L2BBJEA0RU84699P8284541K','90758915',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',387,'2020-03-30 16:31:41','2020-03-30 16:31:41',NULL),(638,24,'PAYID-L2BCOKA1KE66711DB233504J','95215020',NULL,NULL,0.00,200.00,'purchase 2 tuning credit','Completed',388,'2020-03-30 16:07:17','2020-03-30 16:07:17',NULL),(639,45,'PAYID-L2BVZ6A4E959418D4543064H','98571648',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',389,'2020-03-31 14:09:13','2020-03-31 14:09:13',NULL),(640,35,'PAYID-L2DSURI6WS43952FF5703246','94515443',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',390,'2020-04-03 13:05:02','2020-04-03 13:05:02',NULL),(641,27,'PAYID-L2DVBHQ0RV4212931755581X','97637760',NULL,NULL,0.00,200.00,'purchase 2 tuning credit','Completed',391,'2020-04-03 15:50:47','2020-04-03 15:50:47',NULL),(642,19,'PAYID-L2FQCEQ1148948994270922X','92479940',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',392,'2020-04-06 09:15:01','2020-04-06 09:15:01',NULL),(643,29,'PAYID-L2FSJ3Y8NB26523WE173320N','96587381',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',393,'2020-04-06 11:48:39','2020-04-06 11:48:39',NULL),(644,45,'PAYID-L2HNVAQ2191754470153221G','92085015',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',394,'2020-04-09 07:19:55','2020-04-09 07:19:55',NULL),(645,45,'PAYID-L2HO6AY73C11100C0503903M','95462596',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',395,'2020-04-09 08:47:31','2020-04-09 08:47:31',NULL),(646,35,'PAYID-L2HRBCI20794956U2680052K','98795646',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',396,'2020-04-09 11:10:11','2020-04-09 11:10:11',NULL),(647,76,'PAYID-L2IY7KQ7T1718809D753864S','90940085',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',238,'2020-04-11 08:39:32','2020-04-11 08:39:32',NULL),(648,19,'PAYID-L2KXVVQ1WW82963PP127812Y','98487638',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',397,'2020-04-14 07:57:19','2020-04-14 07:57:19',NULL),(649,45,'PAYID-L2LNBWI4PT21471LG099980L','99112872',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',398,'2020-04-15 08:20:17','2020-04-15 08:20:17',NULL),(650,35,'PAYID-L2LNIEY32P10176NY302710C','95060025',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',399,'2020-04-15 08:30:47','2020-04-15 08:30:47',NULL),(651,19,'PAYID-L2LP6WA6CA82384NY416903T','95508006',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',400,'2020-04-15 11:35:35','2020-04-15 11:35:35',NULL),(652,19,'PAYID-L2MHEDI6NN58481MD7810021','93201920',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',401,'2020-04-16 13:56:47','2020-04-16 13:56:47',NULL),(653,45,'PAYID-L2PLAFA7ET18140CD839491R','98736148',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',402,'2020-04-21 07:35:16','2020-04-21 07:35:16',NULL),(654,19,'PAYID-L2PLGPA82D93923C51247301','90859674',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',403,'2020-04-21 07:48:32','2020-04-21 07:48:32',NULL),(655,102,'PAYID-L2P6HOQ5U019853S2907591F','91234903',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',239,'2020-04-22 05:39:44','2020-04-22 05:39:44',NULL),(656,19,'PAYID-L2P7W3A5J1171010N807601V','91400437',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',404,'2020-04-22 07:08:58','2020-04-22 07:08:58',NULL),(657,76,'PAYID-L2QE2JI32H78775JB678941E','93145934',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',240,'2020-04-22 12:57:49','2020-04-22 12:57:49',NULL),(658,94,'PAYID-L2QXTQQ8FN39996S6063560J','92295806',NULL,NULL,0.00,360.00,'purchase 5 tuning credit','Completed',405,'2020-04-23 10:20:44','2020-04-23 10:20:44',NULL),(659,76,'PAYID-L2RMBKA4D42700789352654J','96022278',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',241,'2020-04-24 09:34:41','2020-04-24 09:34:41',NULL),(660,81,'PAYID-L2SCTLA66S55329NK233290P','89743486',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',242,'2020-04-25 11:15:10','2020-04-25 11:15:10',NULL),(661,76,'PAYID-L2SV6ZQ0VN43323NH6079816','92591839',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',243,'2020-04-26 09:17:05','2020-04-26 09:17:05',NULL),(662,76,'PAYID-L2TK4PA7L892233AV125423J','89577250',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',244,'2020-04-27 09:05:17','2020-04-27 09:05:17',NULL),(663,45,'PAYID-L2TLFLA1U226798DN042751D','94101789',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',406,'2020-04-27 09:26:48','2020-04-27 09:26:48',NULL),(664,102,'PAYID-L2T6RHQ5P546182CN455154F','90593957',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',245,'2020-04-28 07:26:26','2020-04-28 07:26:26',NULL),(665,45,'PAYID-L2UCXFA3YX76358FV3725325','92936372',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',407,'2020-04-28 12:12:21','2020-04-28 12:12:21',NULL),(666,45,'PAYID-L2UE4FA7NJ97162L25530454','90620249',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',408,'2020-04-28 14:39:33','2020-04-28 14:39:33',NULL),(667,102,'PAYID-L2UUDDY27U65446J5813870G','96608921',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',246,'2020-04-29 07:58:19','2020-04-29 07:58:19',NULL),(668,29,'PAYID-L2UZDZQ89A78922L92092901','89367995',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',409,'2020-04-29 13:41:14','2020-04-29 13:41:14',NULL),(669,81,'PAYID-L2VKPDA6D61354719134521P','92993899',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',247,'2020-04-30 09:26:30','2020-04-30 09:26:30',NULL),(670,29,'PAYID-L2WVTII4K22650737940733R','91383331',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',410,'2020-05-02 10:30:17','2020-05-02 10:30:17',NULL),(671,45,'PAYID-L2X7HUQ2DU82444E19627459','98433039',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',411,'2020-05-04 09:52:31','2020-05-04 09:52:31',NULL),(672,102,'PAYID-L2YRFDQ0H34234917622792V','97625219',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',248,'2020-05-05 06:15:52','2020-05-05 06:15:52',NULL),(673,19,'PAYID-L2YVWMA0LF67399KG338783Y','99396915',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',412,'2020-05-05 11:25:39','2020-05-05 11:25:39',NULL),(674,19,'PAYID-L2YYFIY2W528815E3410670S','96931590',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',413,'2020-05-05 14:13:57','2020-05-05 14:13:57',NULL),(675,102,'PAYID-L2ZJWIQ4YR29116BE1953517','98985942',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',249,'2020-05-06 10:10:48','2020-05-06 10:10:48',NULL),(676,19,'PAYID-L2Z7FJI9SD492597N582861J','94720815',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',414,'2020-05-07 10:36:43','2020-05-07 10:36:43',NULL),(677,102,'PAYID-L22XESA5DP13366XA874620G','90378682',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',250,'2020-05-08 13:53:54','2020-05-08 13:53:54',NULL),(678,81,'PAYID-L22XVZA42S5845879938201P','97692446',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',251,'2020-05-08 14:30:12','2020-05-08 14:30:12',NULL),(679,19,'PAYID-L24T64A3V0255621H001084M','89626336',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',415,'2020-05-11 11:05:20','2020-05-11 11:05:20',NULL),(680,29,'PAYID-L242PQA84U572808J6976815','90262011',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',416,'2020-05-11 18:31:05','2020-05-11 18:31:05',NULL),(681,45,'PAYID-L25KFBI8B912301KD590643V','94611163',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',417,'2020-05-12 12:20:31','2020-05-12 12:20:31',NULL),(682,76,'PAYID-L254JHQ5GC5631554873584B','98600995',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',252,'2020-05-13 08:58:19','2020-05-13 08:58:19',NULL),(683,76,'PAYID-L254X6Q7SV712305A426501K','93033786',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',253,'2020-05-13 09:29:41','2020-05-13 09:29:41',NULL),(684,76,'PAYID-L256RFQ37X77982V4178020S','98266402',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',254,'2020-05-13 11:31:42','2020-05-13 11:31:42',NULL),(685,102,'PAYID-L26AGBA34S286640T1883825','92753626',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',255,'2020-05-13 13:24:27','2020-05-13 13:24:27',NULL),(686,19,'PAYID-L26S2BQ8RC98834GG325412D','98385177',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',418,'2020-05-14 10:35:52','2020-05-14 10:35:52',NULL),(687,45,'PAYID-L27GCNI35W596721P511492A','94242731',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',419,'2020-05-15 08:30:55','2020-05-15 08:30:55',NULL),(688,19,'PAYID-L27HUCI1ML122663Y0725739','95119486',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',420,'2020-05-15 10:16:48','2020-05-15 10:16:48',NULL),(689,30,'PAYID-L27ITTY3XM06391MC560074C','98528278',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',421,'2020-05-15 11:24:09','2020-05-15 11:24:09',NULL),(690,19,'PAYID-L272T5A255310300A485864J','99570801',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',422,'2020-05-16 07:53:23','2020-05-16 07:53:23',NULL),(691,81,'PAYID-L3B7HQY0EV44906PX993634Y','93790876',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',256,'2020-05-19 13:58:08','2020-05-19 13:58:08',NULL),(692,24,'PAYID-L3CBH4Y6H4652909L8107257','94848515',NULL,NULL,0.00,200.00,'purchase 2 tuning credit','Completed',423,'2020-05-19 16:14:48','2020-05-19 16:14:48',NULL),(693,102,'PAYID-L3CLHVQ0UP38363D18362605','94156055',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',257,'2020-05-20 03:38:22','2020-05-20 03:38:22',NULL),(694,102,'PAYID-L3CNU7A8E804963G8896235S','96526583',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',258,'2020-05-20 06:21:52','2020-05-20 06:21:52',NULL),(695,19,'PAYID-L3CPSQA6JL36430R3027231A','96548717',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',424,'2020-05-20 08:33:03','2020-05-20 08:33:03',NULL),(696,29,'PAYID-L3DGRNI67K14070TB673800W','93764474',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',425,'2020-05-21 10:41:22','2020-05-21 10:41:22',NULL),(697,82,'PAYID-L3DHU5A54D093332U553983U','92839405',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',426,'2020-05-21 11:57:57','2020-05-21 11:57:57',NULL),(698,35,'PAYID-L3DHYVQ36K95286ED8979948','93200727',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',427,'2020-05-21 12:04:53','2020-05-21 12:04:53',NULL),(699,19,'PAYID-L3DIV2Y7H521876S5413533M','97843011',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',428,'2020-05-21 13:06:56','2020-05-21 13:06:56',NULL),(700,74,'PAYID-L3DKTJQ7UC604042D007435J','89962845',NULL,NULL,0.00,50.00,'purchase 1 tuning credit','Completed',259,'2020-05-21 15:18:04','2020-05-21 15:18:04',NULL),(701,45,'PAYID-L3DZBTQ8DF28108F04931608','96324065',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',429,'2020-05-22 07:44:31','2020-05-22 07:44:31',NULL),(702,102,'PAYID-L3D2DYA26R2519382572673A','90878604',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',260,'2020-05-22 08:57:09','2020-05-22 08:57:09',NULL),(703,19,'PAYID-L3D4RKQ1KG38348JN593664X','99721365',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',430,'2020-05-22 11:42:35','2020-05-22 11:42:35',NULL),(704,81,'PAYID-L3ER22Y24B38031PL030900X','93098499',NULL,NULL,0.00,140.00,'purchase 2 tuning credit','Completed',261,'2020-05-23 11:57:35','2020-05-23 11:57:35',NULL),(705,102,'PAYID-L3FX6ZI77Y30173VJ951264N','88985128',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',262,'2020-05-25 07:19:06','2020-05-25 07:19:06',NULL),(706,102,'PAYID-L3GOGQQ1B18440330419620F','92645570',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',263,'2020-05-26 08:37:26','2020-05-26 08:37:26',NULL),(707,45,'PAYID-L3HGGPA6MM18525LF6898457','96033874',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',431,'2020-05-27 11:55:52','2020-05-27 11:55:52',NULL),(708,45,'PAYID-L3HJF6I40408944975337158','91114163',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',432,'2020-05-27 15:19:35','2020-05-27 15:19:35',NULL),(709,19,'PAYID-L3HXA6Y77712084NV426892E','99033647',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',433,'2020-05-28 07:04:41','2020-05-28 07:04:41',NULL),(710,19,'PAYID-L3HXBJY45M62756WE284640D','97204130',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',434,'2020-05-28 07:05:07','2020-05-28 07:05:07',NULL),(711,81,'PAYID-L3HYRPY9MC91211E62261942','97898987',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',264,'2020-05-28 08:48:29','2020-05-28 08:48:29',NULL),(712,19,'PAYID-L3H3NWI7B1938650G330825E','98095889',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',435,'2020-05-28 12:04:40','2020-05-28 12:04:40',NULL),(713,19,'PAYID-L3IMCLI7EB71828XG8649725','96172179',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',436,'2020-05-29 07:01:01','2020-05-29 07:01:01',NULL),(714,102,'PAYID-L3INB7I2VU38261J3287200H','94746388',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',265,'2020-05-29 08:08:37','2020-05-29 08:08:37',NULL),(715,30,'PAYID-L3IOJGA3LL74369ED387300V','93050414',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',437,'2020-05-29 09:32:14','2020-05-29 09:32:14',NULL),(716,81,'PAYID-L3KPD6Y27Y86998G3191760H','96469607',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',266,'2020-06-01 11:18:56','2020-06-01 11:18:56',NULL),(717,102,'PAYID-L3KQUFQ7CJ07886F9629182D','90089247',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',267,'2020-06-01 13:01:17','2020-06-01 13:01:17',NULL),(718,102,'PAYID-L3LATIA6KK36385H51577815','93521750',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',268,'2020-06-02 07:11:32','2020-06-02 07:11:32',NULL),(719,102,'PAYID-L3LVHQA0RR63745CS076772D','96049296',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',269,'2020-06-03 06:40:06','2020-06-03 06:40:06',NULL),(720,19,'PAYID-L3MOUFA3BW65000LU185672P','89249327',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',438,'2020-06-04 11:33:52','2020-06-04 11:33:52',NULL),(721,82,'PAYID-L3NAUSA3SS39003RW563690V','93828025',NULL,NULL,0.00,150.00,'purchase 2 tuning credit','Completed',439,'2020-06-05 08:04:32','2020-06-05 08:04:32',NULL),(722,30,'PAYID-L3NW33I5HW52804DV2804712','96618892',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',440,'2020-06-06 09:20:59','2020-06-06 09:20:59',NULL),(723,24,'PAYID-L3NXSSI3A639959CE4247446','97034239',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',441,'2020-06-06 10:09:42','2020-06-06 10:09:42',NULL),(724,81,'PAYID-L3NZHFI15637094E51725303','96324679',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',270,'2020-06-06 12:01:46','2020-06-06 12:01:46',NULL),(725,19,'PAYID-L3O72UI3127506095468941T','92744408',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',442,'2020-06-08 07:57:06','2020-06-08 07:57:06',NULL),(726,19,'PAYID-L3PA5XY6F785022XF230190L','97924950',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',443,'2020-06-08 09:11:58','2020-06-08 09:11:58',NULL),(727,102,'PAYID-L3PTSPY4EY043221W590600S','98821409',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',271,'2020-06-09 06:25:58','2020-06-09 06:25:58',NULL),(728,45,'PAYID-L3PWB6Q62F23024AN757174R','94130048',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',444,'2020-06-09 09:14:39','2020-06-09 09:14:39',NULL),(729,19,'PAYID-L3PY3OI6GX04814J7497411R','94384269',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',445,'2020-06-09 12:25:29','2020-06-09 12:25:29',NULL),(730,45,'PAYID-L3P3KEI6FE38099W75406639','96933457',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',446,'2020-06-09 15:13:32','2020-06-09 15:13:32',NULL),(731,19,'PAYID-L3QOUKY2LM7346887665832S','97328672',NULL,NULL,0.00,75.00,'purchase 1 tuning credit','Completed',447,'2020-06-10 13:12:10','2020-06-10 13:12:10',NULL); /*!40000 ALTER TABLE `orders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `packages` -- DROP TABLE IF EXISTS `packages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `packages` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `pay_plan_id` varchar(100) NOT NULL, `name` varchar(100) NOT NULL, `billing_interval` varchar(50) NOT NULL, `amount` float(8,2) NOT NULL, `description` text DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `packages` -- LOCK TABLES `packages` WRITE; /*!40000 ALTER TABLE `packages` DISABLE KEYS */; INSERT INTO `packages` VALUES (7,'P-1U585546DM78683124IVUSOI','Fixed Monthly Price','Month',35.00,'<ul>\r\n <li>Pay us NO commision per file processed</li>\r\n <li>Full&nbsp;featured Remapping File&nbsp;Shop</li>\r\n <li>Makes Job Mangement Simple</li>\r\n <li>Designed by tuners for tuners</li>\r\n <li>Encrypted Secure File&nbsp;Storage</li>\r\n <li>PayPal Credit Handling</li>\r\n <li>Integrated support ticket system</li>\r\n <li>Instant messaging to customers</li>\r\n <li>Email notifications when file is ready</li>\r\n <li>Automatic invoicing to customers</li>\r\n <li>Multiple Currencies, Euro, GBP and more</li>\r\n <li>FREE LISTING ON&nbsp; MARKETPLACE</li>\r\n</ul>',0,'2019-08-30 09:56:24','2020-03-10 21:18:51'),(8,'P-1CN80068GG90491414IW4BQA','Fixed Yearly Price','Year',300.00,'<ul>\r\n <li>Pay us NO commision per file processed</li>\r\n <li>Full&nbsp;featured Remapping File&nbsp;Shop</li>\r\n <li>Makes Job Mangement Simple</li>\r\n <li>Designed by tuners for tuners</li>\r\n <li>Encrypted Secure File&nbsp;Storage</li>\r\n <li>PayPal Credit Handling</li>\r\n <li>Integrated support ticket system</li>\r\n <li>Instant messaging to customers</li>\r\n <li>Email notifications when file is ready</li>\r\n <li>Automatic invoicing to customers</li>\r\n <li>Multiple Currencies, Euro, GBP and more</li>\r\n <li>FREE LISTING ON&nbsp; MARKETPLACE</li>\r\n</ul>',0,'2019-08-30 09:59:06','2020-01-10 12:43:53'); /*!40000 ALTER TABLE `packages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `password_resets` -- DROP TABLE IF EXISTS `password_resets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; 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, KEY `password_resets_email_index` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `password_resets` -- LOCK TABLES `password_resets` WRITE; /*!40000 ALTER TABLE `password_resets` DISABLE KEYS */; INSERT INTO `password_resets` VALUES ('<EMAIL>','$2y$10$m/RL0cIyTwzEPNOMOedZ8.zNx2iZpNN.irdscFOFOX0ym99BARNqa','2018-09-25 13:20:05'),('<EMAIL>','$2y$10$7iuoPS2gLKv3tEmbxZDppeKfeltVdp31jSC4UBjAYBVk.QhXZTBXy','2018-09-25 14:06:23'),('<EMAIL>','$2y$10$HRinQnk8z2vCp1UJqhSbFeDVWIhTVtNJT6hmqpwzkfHdBM38nVIDO','2018-09-27 07:23:34'),('<EMAIL>','$2y$10$XKaSqIpQ4tTZ87QensiHoulN4aGVMsNY/vAxBDW6jiNahFcWdWeQW','2018-09-27 09:41:25'),('<EMAIL>','$2y$10$Kcsb6vJxo4XjCpq0dDMmJOfyC6cLyBB/EoQfRJMOOuDKKuDR9y5oy','2018-09-27 10:29:40'),('<EMAIL>','$2y$10$FDja8I55wa8OHOgNpjmg4.DNx/WZJDIYkehRi9SVVAUYGqAo6XvKG','2018-09-27 12:41:07'),('<EMAIL>','$2y$10$H93nJAk6DWim0ZbkKy6cqeMr1unLXbO4qOtVvEwHq77/JBQpM0BZO','2018-10-05 11:52:46'),('<EMAIL>','$2y$10$y64BAXrb7apaAWY2kytLoe.FLr48RmL3c3T9GCCbIufenj6fKLcTq','2018-10-09 09:45:07'),('<EMAIL>','$2y$10$1QyXnBuZk3coPzp.EUywmehrZkNwvKavyM.DGNsdPqLE2rkSCUG9y','2018-11-01 11:52:57'),('<EMAIL>','$2y$10$WGsptWM6tXn2mMswQexWzevLIRYeq3v7s2L8Yk.ffS5kcdWCc.LKa','2018-11-19 10:53:44'),('<EMAIL>','$2y$10$Cb0YzJD9KhC1NYauFDe7W.PAZmFqFvOIjIM5TUx9ch2k8tfy0WIZe','2018-11-19 11:03:22'),('<EMAIL>','$2y$10$/iUyQJf.be.I/wFlK/PWRe9ljxKhHiVMzEbRLWJM8waPrA7fMkQjC','2018-11-19 12:36:45'),('<EMAIL>','$2y$10$42I8MBnJFb1HizTC6q6O6Oi5Yt2DOA.hkPTmtGc6bzzDeLe1UdFjS','2018-11-19 13:13:56'),('<EMAIL>','$2y$10$TtIrUOxA8J21H40Zz4a3ZeJbwDwKc1k.W9MhhM3ZFsk8tI4UDyaiK','2018-11-20 05:40:59'),('<EMAIL>','$2y$10$qI/v.tYTxPqBVUFicVf7DuDNsK72IzJRATTaUw0A1g2vVxrtDIUom','2018-11-20 06:42:11'),('<EMAIL>','$2y$10$dCKzn.P4ur5/SmLpz/oTiuGSpabS7JRFUTRCRzLGYHqydaTEDlj7S','2018-11-20 07:06:23'),('<EMAIL>','$2y$10$Sf4D46FFiYyX6twaS4rbyOSarCDNR5aN/AZGZlptdxzCvf2cRIh7.','2018-11-21 14:09:25'),('<EMAIL>','$2y$10$7fC.nOKOEbynr7V7C4QT9OGnxVHBg47emLoJPb7UKsREm9ey8.t82','2018-11-23 14:16:36'),('<EMAIL>','$2y$10$QhizJYtXfE3S.l8LTBObe.crt19dVSMJ0orsWJMZolCcTVVKI1vUu','2018-11-26 11:57:07'),('<EMAIL>','$2y$10$VsDfTB4TMhS1okHgQBbSvOUSTsFORBcuCwtg5I4L2jZ2wwVwRqMJe','2018-11-26 11:59:09'),('<EMAIL>','$2y$10$mqI8LQmOSV2uRVus0p2rhO63krOqWGcHHeMWzkzJWYujUIinlSZoO','2018-11-27 12:49:22'),('<EMAIL>','$2y$10$yhvuwiuaxykZy1.v5KPwV.KFoYFnGheB8.WbZsRzl0JE8W2ljp4Ui','2018-12-05 10:03:30'),('<EMAIL>','$2y$10$vs5tpjuQDV3QBgXKxF1hbuakwLLttxBAAzMqt/ne9SXK71IHJJ1Qi','2018-12-05 13:09:18'),('<EMAIL>','$2y$10$4URM0oGoVWICilX2xy1u6OgZRy0PippwFqMMJz/r1g9nThBZ/7Nhi','2018-12-05 13:47:34'),('<EMAIL>','$2y$10$yUfEL5V5QxCaxk2SD4t66.COpE7OSsu7ZHB48Gw3Oo/Wzp331R35W','2018-12-06 15:38:43'),('<EMAIL>','$2y$10$n/aoeTpnYuY8iGwOK5ClJekVCQLCLqrtMpmZ9O0PLYTXMaKYy9wYO','2018-12-07 11:00:34'),('<EMAIL>','$2y$10$t1sHDRjFqlLwmfReA2wsZOjgmkzbhg/8zpG60yo8rgN0F4gd17GNK','2018-12-08 12:32:23'),('<EMAIL>','$2y$10$cAsyppR66OauBKd4pHxuNO04L0cGjUm3Xrpknw8Cipvn.iRtnDXwi','2018-12-08 12:32:28'),('<EMAIL>','$2y$10$cbQ2uTgif97OXC6oem/8V.e98xGHx87SlPgAdwwJMqWDbS4lJ4aXe','2018-12-10 14:24:07'),('<EMAIL>','$2y$10$SAc0Av5Z.fumYhc4y0kIJua9NFkSRppLsMZiYGZ43gSnC/EUrIwzq','2019-01-21 05:41:04'),('<EMAIL>','$2y$10$kNpnYeDf1BA1sAMcc92kZOFxud7qBX2VfZ1kUA5tP4H5qtBEg9S2S','2019-01-21 05:44:05'),('<EMAIL>','$2y$10$LFXueSL8VP3tELEDAVV5NeAveWFeyZ6TMfz8Qx/d70.qEn5iCq1tm','2019-01-21 08:13:11'),('<EMAIL>','$2y$10$jo9UAmZLltFske7RwOdSs.G5r9a0d4KxAlF2Y25TsIvhPz/7Q4ZWG','2019-01-23 09:14:20'),('<EMAIL>','$2y$10$Sapw3mIML2SXZ1h1v26ul.cN3AujWtos5ArdScWAnx66CSSIWgjim','2019-01-31 11:28:17'),('<EMAIL>','$2y$10$AEgS9nheIEu52Qwk8lRYHe04cSMxhwmXqPW..bEDleWnX6Hzw2BmG','2019-03-02 11:38:34'),('<EMAIL>','$2y$10$hMj0zR.yGqgwCAiccP36LOVzPsJ4l/Tkp1NbLPsl8fkxkyP6GLXYS','2019-03-14 17:12:02'),('<EMAIL>','$2y$10$lteIHbjy.tXcwTCDxJtqWOpUURpY6pFhHjTdbJWhizD.3KSoOiDfq','2019-04-09 08:14:50'),('<EMAIL>','$2y$10$nwIpEv72pYcdfJOSUaQwtuSSLzmVSiFL2QH2D659M3vBtlMaV4Eqy','2019-04-10 07:28:33'),('<EMAIL>','$2y$10$bYaLCBn1wfXm7FIfR7knkeJBNgnhYrztGB888E2rUGZqf1gE4qMVC','2019-04-23 13:29:27'),('<EMAIL>','$2y$10$ilOry6DpKUk.jjD31P6zyOFXiYaM/JP8bHrxdsZQ.qne5mo7s6tLe','2019-04-23 13:33:14'),('<EMAIL>','$2y$10$XzAO9La7oJd19rc7orlmOuVAG9aBG9gaf/FjQ5k9BdnM.tSz04DbK','2019-04-24 07:41:30'),('<EMAIL>','$2y$10$Ued/0NxEhfCSr4gRlQsbcecX9m5ke8W2lfkN485vvyz0b3fTE5oTi','2019-04-24 08:13:20'),('<EMAIL>','$2y$10$dPPlWFkEv5rpd/ZzPzGUS.IWPm8DbotGswqAEhajntgQezQneG5B.','2019-05-24 04:15:04'),('<EMAIL>','$2y$10$jemcc88ICWksssIk6n5pxOEHMONnyS4kwBbnOGB2OxQJo2fhSXcqG','2019-05-28 03:54:44'),('<EMAIL>','$2y$10$eflLWJeCzyq4m/V..wh8kOtbrC1KFrc3Oo5nSFAMw3qLGVSZ3J1wG','2019-07-01 12:53:00'),('<EMAIL>','$2y$10$H6hx7d93AwLh.2sc/UuZjOz5wmO0TuOJ4kc33x1lt9NgeKVcuBL5y','2019-07-05 12:37:24'),('<EMAIL>','$2y$10$Bmnkev4dfP6q4o6pQ.HqDObXKohTuiYv2ri/T/RMpbMswEKk5TXx6','2019-07-11 08:42:05'),('<EMAIL>','$2y$10$7d21YglRFbLLrvmem72koO5gsp4fOX2hXuMJJGVE5GtolQrnL8rIa','2019-07-31 10:51:24'),('<EMAIL>','$2y$10$k7Pj/iQT9okWM24vlFtSN.ya8z59IqGI66WbJhUaqPdTOeg2Pfgzq','2019-09-12 08:54:24'),('<EMAIL>','$2y$10$kE.gUmdPOxb6iuqOoQkh9uxtjutC2u5VdqPaU7PuOuwtBZzpCLqru','2019-09-16 09:25:20'),('<EMAIL>','$2y$10$cSSjd/pxe47U4Wz/UvANFeP5H7.OMdXhjb0OITnHp/4YUQMaTffCG','2019-09-17 08:11:41'),('<EMAIL>','$2y$10$.2IvvxHDg2HdLIvzrda64OUJ0vGQTJdSzV5NV3BkwTx2CR4q5d5We','2019-09-18 08:49:01'),('<EMAIL>','$2y$10$/WFdoHslALnrp54WuNRmAehFvmLzsU5cAHQ3r4N0BIGsMsdgpR3eC','2019-09-23 08:44:51'),('<EMAIL>','$2y$10$iKAPCSTvSc2p1aAQqcDq4u3moaOTZKkyf/4B1wbax912zgRoj52zC','2019-09-23 10:49:54'),('<EMAIL>','$2y$10$UwdROO.CuRgOG03Rf2rEkOM2YyiknagWjx9fMN.MYiXpFGmKYFCW2','2019-09-23 12:31:57'),('<EMAIL>','$2y$10$FjNt0K6NfTVFfQC/PKfsC.ZnFHDeIUzidtKq1k/mw47WYnEwaE7Ie','2019-09-23 12:36:31'),('<EMAIL>','$2y$10$eHdEYd0AiaE8ayiF4sCn4uEgqO0Y6Y/pl5BcdtdT2bfvxOnvbiD7q','2019-09-23 12:39:34'),('<EMAIL>','$2y$10$imCJURMcGeVHiVWnrQoVn.MH4ZEzN0wJQ44wNpfUvpYV8CKkEb38e','2019-09-24 04:36:19'),('<EMAIL>','$2y$10$7gs4IVw90UQeWYxSNPqFt.HX.KExNAcOkrpqNHC2V7GqWjTOhxNRK','2019-09-25 09:54:22'),('<EMAIL>','$2y$10$k4IHsHshSpCwrY3ipSmzKeMJ.iS0/qMmGlfhCM5LI0VQVqBHRWqDG','2019-09-26 21:33:07'),('<EMAIL>','$2y$10$p61Jr/qnG2xShCX08mt2QeNSNlhEz7fslaTwY3HfmxE.t3NtCbLMm','2019-09-27 03:55:37'),('<EMAIL>','$2y$10$yE40akD2qo89O659PnrJCe6TUzAGxJ8ihOJRqcYU9XbFdLy1g0EOK','2019-09-27 11:54:47'),('<EMAIL>','$2y$10$feMlg7AljsXwCP1Eg4Ham.9xgTl2yu0i/xOn/y5Dh/0ueLS3xDj12','2019-09-27 12:44:53'),('<EMAIL>','$2y$10$ZwM66GdrqEGNLNCe7F4ZNecjxu87lXRMu5gSjWYe/eXnZOpoGOj5C','2019-09-27 12:50:45'),('<EMAIL>','$2y$10$XtQ5Ufh049upsNGQo8YBXOH1dxn0qYIJOwZDGDSkoDflE7Gq.KJZW','2019-09-30 11:20:37'),('<EMAIL>','$2y$10$b/g7NB92saSEq.hvG8ezpO09gO9lMnBewStyKEcUZBjjvwhZsGtlC','2019-10-02 16:21:12'),('<EMAIL>','$2y$10$0gQtvPMNg/1bZ2E4F4lkW..cZgAS4LfBU9UC2WNSt3YCKGn2Rm5sG','2019-10-03 07:59:24'),('<EMAIL>','$2y$10$gd/zec3025uAb.QHiyEwsu7gUn8PHnyYkynJHBp5mx.GTM.7fL896','2019-10-03 10:44:26'),('<EMAIL>','$2y$10$Y7OuqEw09QTWy.TqOyFXtu8bpX2ZoK5tjQzyC1UHMs.KPHnlS4DX.','2019-12-18 13:40:08'),('<EMAIL>','$2y$10$g0XCPTNVBIAez.ueeb0oiOMx/jE.ykRlNOk8DefzZKGdMJYN6Uh42','2020-01-08 19:14:05'),('<EMAIL>','$2y$10$vQSMXoVQn3uHIDOlOcP/IOL3.syNzaS.nMG/YXN1HnKB.Wy3/ZrpW','2020-03-12 00:26:46'),('<EMAIL>','$2y$10$Lhypp/Twy1z5gXMGNsRrBOybHiG39oYgiuVvEufkEoNuTbBzZk1di','2020-03-12 01:00:07'),('<EMAIL>','$2y$10$HwK/Fr7uWEP5tKiW9m1c8.Ooqpk8jhD5/gdPR5On1UkghCumEyi4e','2020-03-12 01:38:36'),('<EMAIL>','$2y$10$1fEdxTM/811myU8rL8bULuaMp9tHW.8MHEZU6e7zkjCVgcgephM.y','2020-03-12 13:55:41'),('<EMAIL>','$2y$10$9oYTOjxdREB2J85kgqLskOYOUt3tNdYvbiJTPch3KuA45ZWO9FLdy','2020-03-13 13:45:51'),('<EMAIL>','$2y$10$Psj8/ylwdKPGdrR4gjTxtuCBQbFK9RM.ajSMpXaUXR/CqQkucy2Ae','2020-03-13 13:47:26'),('<EMAIL>','$2y$10$VjUULZMC6TF68L/vgYe4mey5a9I4wothUELqOXqW99gLVYQ36WbBO','2020-03-13 13:49:06'),('<EMAIL>','$2y$10$eBZmL5h8EV.9XMkqCR7RZuNpqIzAfBugQfbN.Il/wdlT3us5FUi/G','2020-03-13 13:49:30'),('<EMAIL>','$2y$10$Nb1wLUeWbwBvYDVIZq5/Q.dP0U8cogyOD5tK0O/rCEY6kcoZET1qS','2020-03-13 13:50:04'),('<EMAIL>','$2y$10$nO6KBUfH09CyUlkr7UGzP.xgi8FXVRhrjFAWmcoXJCHvXoNJo1t8G','2020-03-13 13:54:06'),('<EMAIL>','$2y$10$6.6zDtIxtVI.JCDNLxy6oOqD5pnhpQHHjAgEDbJ6MwTIgXUS6U9Ne','2020-03-13 13:55:18'),('<EMAIL>','$2y$10$WzfFujybp0AmrwJQGy2vJOCWCPK24PZqw6ktXHkAhPF5iPT65nBKS','2020-03-13 13:57:30'),('<EMAIL>','$2y$10$crGnCgGdxDzwt9BhCJH0yuS192Y4wGgz8viwDXxdiClDSdF8b0PT6','2020-03-15 21:22:32'),('<EMAIL>','$2y$10$WctZvRyE2fHx3RiC9mYLG.ddvdb1JAKk4m2cTBgPLRXlWLoU1dJpu','2020-03-16 10:15:15'),('<EMAIL>','$2y$10$35Szte69MejuOo7LhhpMYODHE2O7M9iYaW2caF2HlkKgOX6Rq.J1m','2020-03-16 10:16:18'),('<EMAIL>','$2y$10$cjXlbRlBaFALK2I34.wjIekWlV/g1fdHYBKc1ZruPr8f1qLjzoaQS','2020-03-16 10:39:33'),('<EMAIL>','$2y$10$KFzwIyOC55.oKVccoLUayeGLkFdDylX2DrEBxCA.2GgMTG7O5hCoe','2020-03-16 11:16:47'),('<EMAIL>','$2y$10$onU/4E4CKeRj2noMzU2V8ulQu9bPUgikqSRQfwGW2JR3GNaSgq/CG','2020-03-17 09:48:26'),('<EMAIL>','$2y$10$MtHT.x6lqzH1Yrzznuuwy.d8heg7ifXSi6VmG3MO2vPT4xzbaGFBO','2020-04-27 11:27:03'),('<EMAIL>','$2y$10$0358MOYD7Tu78FpcBLUR/ejY3G1n0ryouwgsc3KQxt5Dzxa/7aZGe','2020-04-27 11:27:11'),('<EMAIL>','$2y$10$FFA3p3RFfIOtoIoi6lRWJ.HbmrTB1xhNMZO6LmCiT0suoKSifvzMu','2020-04-27 11:27:19'),('<EMAIL>','$2y$10$UnXZnPJ6xK0pf6w7YuU4reSaBuJ0DY//gq35x/ey2qkA2EQ.D3Ps.','2020-04-27 11:27:31'),('<EMAIL>','$2y$10$GqukHt57EyfcpU7nrWcJ5Ol2jLj2vw2mBNFj1EQcelcn5Py0ehDcS','2020-04-28 13:41:26'),('<EMAIL>','$2y$10$8vVIHZ4fCTNj7n1DSQtkzuS4Qk9OjzQRWkmhKClw2FM6VgAgI1WuK','2020-04-28 13:41:29'),('<EMAIL>','$2y$10$RKJqYX2lYowkpAtF/RuOU.xX.WkKCmuNH18EfeweGdVhE7MyoR5VW','2020-05-04 16:51:42'),('<EMAIL>','$2y$10$X.8HL2ssWF4znVzXmIZGDuN5eR5G28RYiqGtQMs.4sQllTrTE.oFe','2020-05-13 17:29:41'),('<EMAIL>','$2y$10$gUK6tkMLDNCwirbixSdM7O9xU5CzVmku.0s3Rc6cDNr0SEJW6UyWu','2020-05-18 13:57:08'),('<EMAIL>','$2y$10$d8wkPg6UBKNpmHk5HbO.VO4yi2ztzrlV6.FKblQy7R22fscgQkic.','2020-05-25 20:23:06'),('<EMAIL>','$2y$10$CHLMHhWENOVHJspbVIyL..494HTBlKc/eEwZVoqYgjHLtXC4d5Nza','2020-05-28 16:14:21'),('<EMAIL>','$2y$10$0E5Cvfh1gw9/vdcG4mLlD.2ZduHE2QFiQIVu4dFZvtqk1urMC2yfK','2020-06-02 18:30:01'),('<EMAIL>','$2y$10$dDtTriYGGyK.7JXMULBbDeJAcTGlBZvny0nwhFB9/tj6wZ/mo9jNK','2020-06-05 12:56:09'),('<EMAIL>','$2y$10$5jPHLhE38WgETS5sUr7iAONJvJqQFZcz5P3BNmmDn0X2/hiRtHXvS','2020-06-05 13:00:40'),('<EMAIL>','$2y$10$KLoyeo88iwKKmBMsMRcR8e8IzF0pQ7VwpdPltmwNhF.4uws1f5bVK','2020-06-05 13:05:42'); /*!40000 ALTER TABLE `password_resets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `slider_managers` -- DROP TABLE IF EXISTS `slider_managers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `slider_managers` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) NOT NULL, `description` text NOT NULL, `image` text DEFAULT NULL, `button_text` varchar(150) DEFAULT NULL, `button_link` varchar(150) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `slider_managers` -- LOCK TABLES `slider_managers` WRITE; /*!40000 ALTER TABLE `slider_managers` DISABLE KEYS */; INSERT INTO `slider_managers` VALUES (1,'ECU Remapping File Portal Service.','If you are a file producer who needs a centralised cloud based portal for your clients you are in the right place','1562667539.PNG','Interested ?','mailto:<EMAIL>?subject=I\'m Interested in a MyRemaps File Portal','2019-06-23 23:00:00','2019-07-11 08:22:18'),(2,'Customise in seconds','Change the colour scheme - add your own logo and you are up and running in seconds','1562665527.PNG','Want a Demo ?','mailto:<EMAIL>?subject=I\'m Interested in a MyRemaps Demo','2019-06-23 23:00:00','2019-07-11 08:22:58'),(3,'Saves time and Money','Designed by tuners for tuners to make your file service a pleasure, not a chore. Simple intuitive interface. Built in file storage, ticket support system and automated invoicing to your clients. Designed to save you time in the day','1562667485.jpg','Contact us','mailto:<EMAIL>?subject=I\'m Interested in a MyRemaps File Portal','2019-07-02 18:48:56','2019-07-11 08:23:14'),(4,'1 Fixed fee - no hidden costs','Unlike similar file portals, you pay ponly 1 fixed monthly or yearly fee. We do not charge you for each file processed through the server and all updates are free!','1562669191.jpg',NULL,NULL,'2019-07-09 09:07:28','2019-07-09 09:46:31'),(5,'Client Uploads the original File','Uploads direct to your portal. All Originals and Mod files are stored safe in the cloud. You are in full control','1572876311.PNG',NULL,NULL,'2019-11-04 13:49:23','2019-11-04 14:05:11'),(6,'Credits','Set Multiple Different Credit Prices','1572875644.PNG',NULL,NULL,'2019-11-04 13:54:04','2019-11-04 13:54:04'),(7,'Customise Email Notifications','Your portal takes care of all the email notifications to your customer automatically','1572875837.PNG',NULL,NULL,'2019-11-04 13:57:17','2019-11-04 13:57:17'),(8,'Master download the original file','The Master Tuner downloads the original for modification. All the information he needs is displayed','1572876632.PNG',NULL,NULL,'2019-11-04 14:10:32','2019-11-04 14:10:32'),(9,'After Modification','The master uploads the MOD file and changes status to completed, click save and job done ! the client receives an email notification','1572876716.PNG',NULL,NULL,'2019-11-04 14:11:56','2019-11-04 14:11:56'),(10,'Original and Mod Files Stored in the Cloud,','Available to download anytime in the future, making it simple to get the full job details if you need to go back to it','1572876835.PNG',NULL,NULL,'2019-11-04 14:13:55','2019-11-04 14:13:55'),(11,'Automatic or Manual Credit Handling','You can add and remove credits for a client quick and easy Manually or they can buy with PayPal linked to your own account','1572877085.PNG',NULL,NULL,'2019-11-04 14:18:05','2019-11-04 14:18:05'); /*!40000 ALTER TABLE `slider_managers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `subscription_payments` -- DROP TABLE IF EXISTS `subscription_payments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `subscription_payments` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `subscription_id` int(11) unsigned NOT NULL, `pay_txn_id` varchar(100) DEFAULT NULL, `next_billing_date` timestamp NULL DEFAULT NULL, `last_payment_date` timestamp NULL DEFAULT NULL, `last_payment_amount` float(8,2) DEFAULT NULL, `failed_payment_count` int(10) NOT NULL DEFAULT 0, `status` varchar(50) DEFAULT 'pending', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `subscription_payments_ibfk_1` (`subscription_id`), CONSTRAINT `subscription_payments_ibfk_1` FOREIGN KEY (`subscription_id`) REFERENCES `subscriptions` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `subscription_payments` -- LOCK TABLES `subscription_payments` WRITE; /*!40000 ALTER TABLE `subscription_payments` DISABLE KEYS */; INSERT INTO `subscription_payments` VALUES (10,37,'8LA26420N9080270W','2020-03-09 10:00:00','2020-02-09 16:30:53',150.00,0,'completed','2020-02-09 16:31:21','2020-02-09 16:31:21'),(11,37,'6C6837849V381835Y','2020-04-09 09:00:00','2020-03-09 11:34:56',150.00,0,'completed','2020-03-09 11:35:28','2020-03-09 11:35:28'); /*!40000 ALTER TABLE `subscription_payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `subscriptions` -- DROP TABLE IF EXISTS `subscriptions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `subscriptions` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) unsigned NOT NULL, `pay_agreement_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` timestamp NULL DEFAULT NULL, `trial_days` int(11) NOT NULL DEFAULT 0, `is_trial` tinyint(4) NOT NULL DEFAULT 0, `is_immediate` tinyint(1) NOT NULL DEFAULT 0, `status` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`), CONSTRAINT `subscriptions_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `subscriptions` -- LOCK TABLES `subscriptions` WRITE; /*!40000 ALTER TABLE `subscriptions` DISABLE KEYS */; INSERT INTO `subscriptions` VALUES (1,48,'I-85SRXA9GXNLG','Demo','2019-11-21 08:00:00',0,0,0,'Cancelled','2018-11-21 09:55:31','2018-11-27 14:36:07'),(4,48,'TRIAL20180135','2 months free','2018-12-05 08:08:53',60,1,0,'Cancelled','2018-12-05 20:08:53','2019-08-08 10:25:52'),(6,48,'TRIAL71361547','Trial','2019-02-05 04:51:01',30,1,0,'Cancelled','2019-02-05 16:51:01','2019-08-08 10:25:50'),(7,48,'TRIAL96961510',NULL,'2019-03-07 10:39:20',60,1,0,'Cancelled','2019-03-07 22:39:20','2019-08-08 10:25:49'),(9,48,'TRIAL37020204','30','2019-05-06 05:46:35',30,1,0,'Cancelled','2019-05-06 17:46:35','2019-08-08 10:25:47'),(11,48,'TRIAL98636346',NULL,'2019-06-06 05:47:11',60,1,0,'Cancelled','2019-06-06 17:47:11','2019-08-08 10:25:44'),(13,48,'TRIAL14139988','4 days','2019-08-08 10:32:34',4,1,0,'Cancelled','2019-08-08 10:32:34','2019-08-08 13:48:54'),(19,48,'TRIAL68106222','paid credit £100','2019-08-13 09:59:17',90,1,0,'Cancelled','2019-08-13 09:59:17','2019-11-10 11:11:08'),(34,120,'TRIAL58263419','Free Credit','2019-09-23 09:38:24',365,1,0,'Cancelled','2019-09-23 21:38:24','2020-03-09 11:57:27'),(35,48,'TRIAL42998078','30days nov 19','2019-11-10 11:12:02',31,1,0,'Cancelled','2019-11-10 11:12:02','2019-11-10 12:55:45'),(36,48,'TRIAL75725114','90 days','2019-11-10 12:56:08',91,1,0,'Active','2019-11-10 12:56:08','2019-11-10 12:56:08'),(37,48,'I-XVDMWA0KYWVH','Amount: £30','2020-03-09 07:00:00',0,0,1,'Cancelled','2020-02-09 16:30:34','2020-03-09 12:02:00'),(39,48,'TRIAL58659400','trial 5 months','2020-03-09 12:17:39',121,1,0,'Active','2020-03-09 12:17:39','2020-03-09 12:17:39'),(40,139,'TRIAL63415252','Trial','2020-03-11 08:31:08',31,1,0,'Active','2020-03-11 20:31:08','2020-03-11 20:31:08'),(41,139,'TRIAL19051275','Covid 19 Extension','2020-04-13 02:56:24',60,1,0,'Active','2020-04-13 14:56:24','2020-04-13 14:56:24'),(42,182,'TRIAL34666810','Test Trial','2020-06-05 01:06:31',15,1,0,'Active','2020-06-05 13:06:31','2020-06-05 13:06:31'); /*!40000 ALTER TABLE `subscriptions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tickets` -- DROP TABLE IF EXISTS `tickets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tickets` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent_chat_id` int(11) DEFAULT 0, `sender_id` int(11) unsigned NOT NULL, `receiver_id` int(11) unsigned NOT NULL, `file_servcie_id` int(11) unsigned DEFAULT 0, `subject` varchar(200) DEFAULT NULL, `message` text DEFAULT NULL, `document` varchar(250) DEFAULT NULL, `is_closed` tinyint(1) NOT NULL DEFAULT 0, `is_read` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `receiver_id` (`receiver_id`), KEY `tickets_ibfk_2` (`sender_id`), CONSTRAINT `tickets_ibfk_1` FOREIGN KEY (`receiver_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, CONSTRAINT `tickets_ibfk_2` FOREIGN KEY (`sender_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=647 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tickets` -- LOCK TABLES `tickets` WRITE; /*!40000 ALTER TABLE `tickets` DISABLE KEYS */; INSERT INTO `tickets` VALUES (17,16,48,76,0,NULL,'OK YOU HAVE FILE',NULL,0,1,'2018-12-07 14:31:01','2018-12-07 14:31:01'),(57,0,46,46,80,NULL,'Need original',NULL,0,0,'2019-01-15 09:35:45','2019-01-15 09:35:45'),(82,0,70,70,198,NULL,'problem',NULL,1,1,'2019-01-22 23:35:10','2019-07-01 07:42:39'),(455,0,43,11,1102,NULL,'P061B85 The Torque calculation control module is faulty. A signal is above the permissible limit value\r\nP061B04 The Torque calculation control module is faulty. An internal fault exists.',NULL,1,1,'2020-01-13 13:00:46','2020-01-16 12:55:50'),(456,455,11,43,0,NULL,'should do the trick','Angel Performance _MB A200 _stage1 _ TM_ - _-1578921595.cod',0,1,'2020-01-13 13:19:59','2020-01-13 13:31:02'),(457,0,11,43,1148,NULL,'try this, let me know','v2 _Opel Antara _tune dpf and egr_ - DCM3-1579017005.cod',1,1,'2020-01-14 15:50:13','2020-01-16 12:55:55'),(458,455,11,43,0,NULL,'original','655-orginal-1579019457.cod',0,0,'2020-01-14 16:31:00','2020-01-14 16:31:00'),(459,457,11,43,0,NULL,'ori','655-orginal-1579020206.cod',0,1,'2020-01-14 16:43:30','2020-01-14 19:21:20'),(460,457,11,43,0,NULL,'see if it starts',NULL,0,1,'2020-01-14 16:45:19','2020-01-14 19:21:20'),(461,457,11,43,0,NULL,'test this','_Opel Antara _v3_ - DCM3-1579021843.cod',0,1,'2020-01-14 17:10:46','2020-01-14 19:21:20'),(462,457,11,43,0,NULL,'reduced fuel by 11% static,','_Opel Antara _v3 reduced fuel_ - DCM3-1579025757.cod',0,1,'2020-01-14 18:15:58','2020-01-14 19:21:20'),(463,457,11,43,0,NULL,'bet it drives like shit lol','_Opel Antara _v5 reduced fuel added boost_ - DCM3-1579028168.cod',0,1,'2020-01-14 18:56:17','2020-01-14 19:21:20'),(464,457,11,43,0,NULL,'this is stock with static fuel reduced and egr and dpf','_Opel Antara _v5 reduced fuel egr and dpf only_ - DCM3-1579029626.cod',0,1,'2020-01-14 19:20:28','2020-01-14 19:21:20'),(465,0,11,45,1150,NULL,'452A removed','657-orginal_-1579081233.unq',1,1,'2020-01-15 09:40:36','2020-01-15 10:28:11'),(466,0,11,45,1151,NULL,'the file format has been changed. its what is known as TUN file now, essentially a full file, writtten like it or not, flash, micro, serial eeprom data. Ive seen them on auti TTRS, RS6 etc, petrols but not diesels\r\n\r\nNormally ktag just writes back the map data area (flash or Micro) depending on the ECU type UNLESS I select all areas when packing the file\r\n\r\nI dont know why, ive had no issued with this car','T22ARHJan2020-1579083362.unq',1,1,'2020-01-15 10:16:06','2020-01-16 12:56:01'),(467,466,11,45,0,NULL,'try this one mate','V2_T22ARHJan2020-1579088695.unq',0,1,'2020-01-15 11:45:00','2020-01-15 12:05:35'),(470,0,11,27,1158,NULL,'try this, ive quickly wrote a vmax patch on the belief this could be a hard coded one, im seeing more of these lately','MOTION WERKS _Ford Transit _stage 1 Perfect vmax _ - FRQ61C4000000_-1579179039.cod',0,1,'2020-01-16 12:50:54','2020-01-16 15:13:54'),(472,0,11,45,1180,NULL,'test this','v2 Mobile Garage _Opel Movano _wune and vmax_ - R876471000000_-1579611857.cod',0,1,'2020-01-21 13:04:20','2020-01-21 13:06:11'),(476,0,11,45,1200,NULL,'adblue only map removed due to map inconsistencies','681-orginal_-1579944810.unq',0,1,'2020-01-25 09:33:35','2020-01-25 10:20:51'),(477,0,11,43,1202,NULL,'sorry these can be fineky cars especially when decatted. if he has a lambda cheater on its best to remove it\r\n\r\nIve this one but it has pops & Bangs as well i can remove it if he wants',NULL,0,1,'2020-01-25 15:07:07','2020-03-17 11:39:28'),(478,477,11,43,0,NULL,'give this a whirl mate','683-orginal-1579964947.cod',0,1,'2020-01-25 15:09:16','2020-03-17 11:39:28'),(479,477,11,43,0,NULL,'try this one, encoded through kess','Angel Performance _Opel Corsa _stage 2 decat pops_ - 384260_-1579966761.cod',0,1,'2020-01-25 15:39:45','2020-03-17 11:39:28'),(480,477,43,11,0,NULL,'Can you send me the mod without the PnB please customer said its too loud',NULL,0,1,'2020-01-27 13:11:20','2020-01-27 13:39:17'),(481,477,11,43,0,NULL,'what a pussy lol, yes but it will be later',NULL,0,1,'2020-01-27 13:14:01','2020-03-17 11:39:28'),(482,477,11,43,0,NULL,'can win sometimes lol','Angel Performance _Opel Corsa _stage 2 decat_ - 384260_-1580131071.cod',0,1,'2020-01-27 13:18:01','2020-03-17 11:39:28'),(483,477,43,11,0,NULL,'I know I tried to get him to keep it as I normally charge extra for it but he said he loves it but its too much lol',NULL,0,1,'2020-01-27 13:37:36','2020-01-27 13:39:17'),(484,0,23,11,948,NULL,'car running fine after dpf delete, eml on returning codes 2471 and 2453','581-modified-1580226855.cod',0,1,'2020-01-28 15:54:20','2020-01-28 16:54:42'),(485,484,11,23,0,NULL,'done','Swiftec _Land_Rover Evoque 2-1580230479.cod',0,1,'2020-01-28 16:54:42','2020-01-29 09:10:43'),(486,0,48,100,1217,NULL,'look here with a few other modes he may get this stage 2','PE67XRU-1580296944.pdf',0,0,'2020-01-29 11:22:28','2020-01-29 11:22:28'),(487,0,121,48,0,'kia ceed virtual ?','Howdy cowboy','sg11hys-kia-ceed-1-1580485563.txt',1,1,'2020-01-31 15:46:05','2020-01-31 16:02:31'),(488,487,48,121,0,'kia ceed virtual ?','only BDM SORRY',NULL,0,1,'2020-01-31 16:02:23','2020-02-01 07:12:31'),(489,0,11,45,1246,NULL,'attatched. if anything this one is a big stronger','Mobile Garage _Ford Fiesta _stage 1v2_ - 009554_-1580991016.cod',1,1,'2020-02-06 12:10:18','2020-02-10 14:15:25'),(490,489,11,45,0,NULL,'original file','692-orginal_-1581332815.cod',0,1,'2020-02-10 11:07:00','2020-02-10 14:15:22'),(491,0,11,45,1263,NULL,'extra code','code _BMW Version__02 SW_1037537945_-1581347934.cod',1,1,'2020-02-10 15:18:56','2020-02-13 13:17:13'),(492,0,11,27,1282,NULL,'try this one please, sorry','MW-Fixed _Audi Q5 _Stage 1_ - 037126_-1581615166.cod',0,1,'2020-02-13 17:32:50','2020-02-13 17:33:45'),(493,0,43,11,282,NULL,'Hi Mate, Keep getting this code P042628 (042628) I\'ve even changed the sensor on the turbo as this is the only one in front of the catalytic converter.\r\n\r\nCan you see if you can delete this one for me please car has come back more times then I can count.',NULL,0,1,'2020-02-19 13:04:15','2020-02-19 16:39:23'),(494,493,11,43,0,NULL,'need a P code not a merc code',NULL,0,1,'2020-02-19 13:34:36','2020-02-20 14:17:01'),(495,493,11,43,0,NULL,'there you go','Angel Performance _MB E _stage 1 and dpf-v2_ - _-1582126574.cod',0,1,'2020-02-19 15:36:19','2020-02-20 14:17:01'),(496,493,43,11,0,NULL,'Didnt get an email notification ....',NULL,0,1,'2020-02-19 16:23:49','2020-02-19 16:39:23'),(497,0,121,48,0,'seat ibiza 1600 tdi','read out of ecu','de10hln-ibiza-read-1-1582227545.6tdi-105bhp-hw-cayc-sw-03l906023bf-upgsw-03l906023bf-9971-read',0,1,'2020-02-20 19:39:09','2020-02-20 20:02:57'),(498,0,121,48,0,'ibiza id','id','gary-ibiza-id-1582228889.txt',0,1,'2020-02-20 20:01:40','2020-02-20 20:16:54'),(499,0,45,11,1019,NULL,'Should be stage one, EGR and DPF','W10 ACH Passat FEB2020-1582276728.',0,1,'2020-02-21 09:19:07','2020-02-21 11:54:09'),(500,499,11,45,0,NULL,'tune, dpf, egr','Mobile Garage _VW Passat _stage 1 dpf egr_ - SN100L6000000 SN1L60_-1582286036.cod',0,1,'2020-02-21 11:54:07','2020-02-21 11:58:52'),(501,0,43,11,1057,NULL,'Fitted EGR Blanking Plate and still gutless. Can you check the read out file and let me know if it still has the mod please.',NULL,0,1,'2020-02-22 14:14:52','2020-02-22 17:31:28'),(502,501,11,43,0,NULL,'upload it mate, i ant got it',NULL,0,1,'2020-02-22 14:17:34','2020-03-07 11:18:49'),(503,501,43,11,0,NULL,'file','Ford Transit 2-1582382648.2 1Bhp _YS64 HGY_ Zack Kess Read SID208 NEW READ INSPECTION',0,1,'2020-02-22 14:44:12','2020-02-22 17:31:28'),(504,501,11,43,0,NULL,'try this','Angel Performance _Ford Transit _stage1 _ EGR extra code_ - FRQ61C8000000_-1582385306.cod',0,1,'2020-02-22 15:28:31','2020-03-07 11:18:49'),(505,501,11,43,0,NULL,'extra code 042e','Angel Performance _Ford Transit _stage1 _ EGR extra code2_ - FRQ61C8000000_-1582387589.cod',0,1,'2020-02-22 16:06:39','2020-03-07 11:18:49'),(506,501,11,43,0,NULL,'original file','617-orginal-1582392681.cod',0,1,'2020-02-22 17:31:27','2020-03-07 11:18:49'),(507,0,11,21,660,NULL,'dyno map','Partner_stg1-1582889035.cod',1,1,'2020-02-28 11:23:58','2020-06-10 20:23:20'),(508,0,11,29,1340,NULL,'Patch attached P0135.','Swiftec _Renault Master 2-1582903995.cod',1,1,'2020-02-28 15:33:23','2020-06-10 20:22:33'),(509,0,43,11,1325,NULL,'stock file please',NULL,1,1,'2020-02-28 15:44:17','2020-06-10 20:22:27'),(510,509,11,43,0,NULL,'here you go...\r\n\r\nbefore putting it on measure advanced measuring values for actual torque and rpm\r\n\r\npeak torq on these is around 2200 rpm 470nm ish\r\npeak bhp 220hp at 4000rpm\r\n\r\n\r\n\r\nuse','715-orginal-1582907090.cod',0,1,'2020-02-28 16:24:51','2020-02-28 18:07:53'),(511,0,19,11,1358,NULL,'getting fault code p0489 egr mixer position (too open)','726-modified-1583244500.cod',1,1,'2020-03-03 14:08:22','2020-03-11 14:28:44'),(512,511,11,19,0,NULL,'489 removed','489_Peugeot 308 2-1583245854.cod',0,1,'2020-03-03 14:30:56','2020-03-04 17:04:26'),(513,0,11,19,1365,NULL,'try this one','730-orginal__1_-1583334702.unq',1,1,'2020-03-04 15:11:44','2020-03-11 19:06:24'),(514,0,11,43,1128,NULL,'this is the updated file i sent.','649-modified_1_-1583578230.unq',1,1,'2020-03-07 10:50:34','2020-06-04 08:28:01'),(515,514,11,43,0,NULL,'packed againt ori','649-orginal-1583587644.unq',0,1,'2020-03-07 13:27:28','2020-03-07 15:07:31'),(516,514,11,43,0,NULL,'dont worry about \"original\" thats just how databank delivers them',NULL,0,1,'2020-03-07 13:28:08','2020-03-07 15:07:31'),(517,514,43,11,0,NULL,'error in writing',NULL,0,1,'2020-03-07 13:35:11','2020-06-04 08:27:59'),(518,514,43,11,0,NULL,'new read with mod','Audi TTRS CEPB 360Bhp _LC13 KOD_ <NAME> Read MED9-1583590605.2 READ WITH MOD',0,1,'2020-03-07 14:16:54','2020-06-04 08:27:59'),(519,514,11,43,0,NULL,'added crackle','518-document-1583590991.unq',0,1,'2020-03-07 14:23:26','2020-03-07 15:07:31'),(520,514,11,43,0,NULL,'thats basically your readback and ive made a 1 bit change','518-document-1583591866.unq',0,1,'2020-03-07 14:37:50','2020-03-07 15:07:31'),(521,0,11,98,1376,NULL,'try this p2019 removed','TIAGO _Audi RS4 4-1583598039.bin',1,1,'2020-03-07 16:20:48','2020-06-04 08:28:06'),(522,0,11,29,1384,NULL,'v2','FOULRIDGE _VW Golf _STAGE 1_ - 551302_-1583703108.cod',1,1,'2020-03-08 21:32:55','2020-06-04 08:28:10'),(523,0,19,11,818,NULL,'nv200 ori','nv200-1583938861.',1,1,'2020-03-11 15:01:05','2020-03-20 11:01:47'),(524,523,11,19,0,NULL,'thats a ktag file',NULL,0,1,'2020-03-11 15:32:32','2020-03-20 11:01:43'),(525,0,11,19,819,NULL,'speed limiter v2','<NAME> _AVS_ _MB Sprinter211-311-411-511 _stage 1 _ Vmax_ - 6519029800_-1583944657.cod',1,1,'2020-03-11 16:37:38','2020-06-04 08:28:14'),(526,0,43,11,856,NULL,'Can you pack the original please customer part ex\'ing the car and wants it back to stock',NULL,1,1,'2020-03-17 11:03:16','2020-06-04 08:28:19'),(527,526,43,11,0,NULL,'Dont worry about the .ori i just flashed it with autotuner',NULL,0,1,'2020-03-17 11:28:53','2020-06-04 08:28:17'),(528,0,19,11,1445,NULL,'wont rev','759-modified-1584701645.unq',1,1,'2020-03-20 10:54:09','2020-06-04 08:28:26'),(529,528,11,19,0,NULL,'fixed','759-orginal_1_-1584702183.unq',0,1,'2020-03-20 11:03:05','2020-03-20 11:03:09'),(530,0,11,24,1171,NULL,'Original file attached','663-orginal_-1585999387.cod',1,1,'2020-04-04 10:23:13','2020-06-04 08:28:31'),(540,0,11,45,1490,NULL,'added vmax and egr','Mobile Garage _MB Sprinter _egr and dpf vmax_ - _-1586860614.cod',1,1,'2020-04-14 09:37:28','2020-06-04 08:28:36'),(541,0,121,48,0,'c5 1.6 hdi 2009 sid807','Is there any files available for this J? nothing came on virtual.','c5-id-1586862225.txt',0,1,'2020-04-14 10:04:14','2020-04-18 16:46:26'),(542,540,11,45,0,NULL,'try this, the numbers in the map dont relate to kph or mph. 1ts 1-5000\r\n\r\nive set it to 2500 assuming a factor of 2 in kph','Mobile Garage _MB Sprinter _egr and dpf vmax_ - _-1586863312.dec',0,1,'2020-04-14 10:21:58','2020-04-15 08:35:27'),(543,540,11,45,0,NULL,'.','Mobile Garage _MB Sprinter _egr and dpf vmax_ - _-1586863777.cod',0,1,'2020-04-14 10:29:41','2020-04-15 08:35:27'),(544,540,11,45,0,NULL,'70 ish','Mobile Garage _MB Sprinter _dpf egr vmax 74_ - _-1586940357.cod',0,1,'2020-04-15 07:46:06','2020-04-15 08:35:27'),(545,540,11,45,0,NULL,'AS IT WAS BUT WITH EGR AND DPF','Mobile Garage _MB Sprinter _egr and dpf vmax_ - 1 _-1586943318.cod',0,1,'2020-04-15 08:35:24','2020-04-15 08:35:27'),(546,0,11,29,1364,NULL,'i coldnt see anything wrong. its the same as all the others I have on file.\r\n\r\nIve raised the boost limit a bit see how it goes','SWAIN _Renault Master III _stage 1 _ vMAX_ - 532254_-1588418996.cod',1,1,'2020-05-02 10:30:00','2020-06-04 08:28:40'),(547,0,11,19,1571,NULL,'there was 1 bit different, worth a try','<NAME> _AVS_ _Ford Transit _tune and vmax only v2_ - FRD50D5000000_-1589190427.cod',1,1,'2020-05-11 08:47:11','2020-06-10 20:21:59'),(548,0,29,11,1588,NULL,'p0340 dtc code removal',NULL,1,1,'2020-05-11 18:34:44','2020-06-10 20:21:53'),(549,548,11,29,0,NULL,'please read this with your ktag. Om pretty usre this can me done in service mode without opening',NULL,0,0,'2020-05-12 13:02:28','2020-05-12 13:02:28'),(550,0,19,11,1064,NULL,'getting fault code P2413 egr sticks. tried plugged & unplugged',NULL,1,1,'2020-05-13 11:45:15','2020-06-10 20:21:47'),(551,550,11,19,0,NULL,'try this update with the dtc removed','<NAME> _AVS_ _Subaru Forester _egr with dtc_s_ - K504PE4ET200JP4A100A_-1589377827.cod',0,1,'2020-05-13 12:50:30','2020-05-13 12:59:46'),(552,0,139,143,1597,NULL,'SEGUE ORIGINAL.','ORIGINAL_AUDIA3_AUP1881 _ROCKET POA_-1589397036.cod',1,1,'2020-05-13 18:10:40','2020-05-14 21:28:07'),(553,552,139,143,0,NULL,'SEGUE STAGE 2 V1','STAGE2_V1_AUDIA3_AUP1881 _ROCKET POA_-1589397065.cod',0,1,'2020-05-13 18:11:11','2020-05-14 21:28:07'),(554,0,11,19,1601,NULL,'they said with the origial on do adblue resets. \r\n\r\nthen put this file in and discontect the adblue ecu','802-orginal_ _1_-1589477001.unq',1,1,'2020-05-14 16:23:43','2020-05-15 10:16:10'),(555,0,139,143,1603,NULL,'ORIGINAL','ORIGINAL_UPTSI_IXT4E26 _ROCKET POA_-1589484575.cod',0,1,'2020-05-14 18:29:40','2020-05-14 21:27:57'),(556,555,139,143,0,NULL,'STAGE 2 V1','STAGE2_V1_UPTSI_IXT4E26 _ROCKET POA_-1589484593.cod',0,1,'2020-05-14 18:29:56','2020-05-14 21:27:57'),(557,0,139,143,1604,NULL,'LEITURA S3 TCU ORIGINAL','LEITURA_TCU_AUDIS3_PCM4632 _ROCKET POA_-1589493963.cod',0,1,'2020-05-14 21:06:12','2020-06-04 17:53:54'),(558,557,139,143,0,NULL,'STAGE 2 V1 TCU S3','STAGE2__TCU_AUDIS3_PCM4632 _ROCKET POA_-1589493981.cod',0,1,'2020-05-14 21:06:30','2020-06-04 17:53:54'),(559,557,139,143,0,NULL,'STAGE 2 V2 TCU S3 KICKDOWN OFF no M','STAGE2__V2_KICKDOWN_TCU_AUDIS3_PCM4632 _ROCKET POA_-1589494734.cod',0,1,'2020-05-14 21:18:58','2020-06-04 17:53:54'),(560,557,139,143,0,NULL,'v2','STAGE2__V2_KICKDOWN_TCU_AUDIS3_PCM4632 _ROCKET POA_-1589495333.cod',0,1,'2020-05-14 21:28:55','2020-06-04 17:53:54'),(561,0,139,143,1627,NULL,'SEGUE STAGE 1','STAGE1_V1_CLA45AMG_IXG7H05 _ROCKET POA_-1590015612.unq',0,1,'2020-05-20 22:00:18','2020-05-20 22:01:04'),(562,561,139,143,0,NULL,'SEGUE ORIGINAL.','ORIGINAL_CLA45AMG_IXG7H05 _ROCKET POA_-1590015637.unq',0,1,'2020-05-20 22:00:41','2020-05-20 22:01:04'),(563,0,139,143,1635,NULL,'ORIGINAL','ORIGINAL_AMAROKV6_IZZ0925 _ROCKET POA_-1590088117.cod',0,1,'2020-05-21 18:08:39','2020-05-25 17:14:38'),(564,563,139,143,0,NULL,'STAGE 1','STAGE1_V1_AMAROKV6_IZZ0925 _ROCKET POA_-1590088132.cod',0,1,'2020-05-21 18:08:54','2020-05-25 17:14:38'),(565,0,139,143,1657,NULL,'STAGE 2 V1.','STAGE2_V1_AMAROKV6_JAA0B97 _ROCKET POA_-1590508550.cod',0,1,'2020-05-26 14:55:51','2020-05-27 12:20:23'),(566,565,139,143,0,NULL,'ORIGINAL','ORIGINAL_AMAROKV6_JAA0B97 _ROCKET POA_-1590508566.cod',0,1,'2020-05-26 14:56:17','2020-05-27 12:20:23'),(567,0,43,11,1660,NULL,'SW updated','Ford Transit 2-1590658275.2TDCi 115Bhp _GV58 EKN_ <NAME> Read Visteon P113 NEW SW',1,1,'2020-05-28 08:31:26','2020-06-10 20:23:23'),(568,0,139,143,1675,NULL,'SEGUE STAGE 3','STAGE3_Q3_V1_UPTSI_IXC9D46-1590694270.cod',0,1,'2020-05-28 18:31:12','2020-06-02 19:34:49'),(569,0,139,143,1681,NULL,'STAGE E100',NULL,0,1,'2020-05-29 12:26:52','2020-05-29 14:11:55'),(570,569,139,143,0,NULL,'STG2 E100 42LBS','STAGE2_E100_BICO42LBS_PUNTOTJET_ITY8595-1590758827.cod',0,1,'2020-05-29 12:27:11','2020-05-29 14:11:55'),(571,569,139,143,0,NULL,'ORIGINAL','ORIGINAL_PUNTOTJET_ITY8595-1590758841.cod',0,1,'2020-05-29 12:27:23','2020-05-29 14:11:55'),(572,0,139,143,1682,NULL,'SEGUE STAGE 1 V1.','STAGE1_V1_GOLFTSI_IVN7J33 _ROCKET POA_-1590765521.cod',0,1,'2020-05-29 14:19:12','2020-06-02 19:35:02'),(573,572,139,143,0,NULL,'SEGUE ORIGINAL.','ORIGINAL_GOLFTSI_IVN7J33 _ROCKET POA_-1590765630.cod',0,1,'2020-05-29 14:20:41','2020-06-02 19:35:02'),(574,0,139,143,1683,NULL,'SEGUE STAGE 1.','STAGE1_V1_BMW320i_IXK2A68 _ROCKET POA_-1590768452.cod',0,1,'2020-05-29 15:07:33','2020-06-02 17:23:29'),(575,574,139,143,0,NULL,'SEGUE STAGE 1.','STAGE1_V1_BMW320i_IXK2A68 _ROCKET POA_-1590768492.cod',0,1,'2020-05-29 15:08:16','2020-06-02 17:23:29'),(576,574,139,143,0,NULL,'SEGUE ORIGINAL','ORIGINAL_BMW320i_IXK2A68 _ROCKET POA_-1590768507.cod',0,1,'2020-05-29 15:08:29','2020-06-02 17:23:29'),(577,568,139,143,0,NULL,'SEGUE V2.','STAGE3_Q3_V2_UPTSI_IXC9D46-1590776048.cod',0,1,'2020-05-29 17:14:12','2020-06-02 19:34:49'),(578,568,139,143,0,NULL,'SEGUE V3.','STAGE3_Q3_V3_UPTSI_IXC9D46-1590783365.cod',0,1,'2020-05-29 19:16:19','2020-06-02 19:34:49'),(581,0,139,143,1696,NULL,'SEGUE STAGE 1',NULL,0,1,'2020-06-02 11:25:47','2020-06-02 19:35:13'),(582,581,139,143,0,NULL,'SEGUE STAGE 1.','STAGE1_V1_UPTSI_IZW2F69 _ROCKET POA_-1591100785.cod',0,1,'2020-06-02 11:26:28','2020-06-02 19:35:13'),(583,581,139,143,0,NULL,'SEGUE ORIGINAL','ORIGINAL_UPTSI_IZW2F69 _ROCKET POA_-1591100800.cod',0,1,'2020-06-02 11:26:42','2020-06-02 19:35:13'),(584,0,27,11,164,NULL,'smoking issue','vw t5 smoking issue-1591101002.',1,1,'2020-06-02 11:30:04','2020-06-10 20:22:17'),(585,584,11,27,0,NULL,'18 months later hmmm....there was nothing wrong with it but i have and updated version with a few more switches done.\r\n\r\ntry this and report','_VW Transporter _stage 1 and DPfv2_ - 518073_-1591108651.cod',0,1,'2020-06-02 13:38:08','2020-06-08 17:42:56'),(586,584,27,11,0,NULL,'Yes its been a while, Its one of my brother customers and I know hes been playing round with it for a while trying to work out the fault and then decided to contact me. Thanks, I\'ll get over to the car in the next few days and reoprt back',NULL,0,1,'2020-06-02 14:04:34','2020-06-10 20:22:12'),(587,0,139,143,1700,NULL,'ORIGINAL','ORIGINAL_BRAVOTJET_FIK3G15 _ROCKET POA_-1591120457.cod',0,1,'2020-06-02 16:54:18','2020-06-02 20:08:56'),(588,587,139,143,0,NULL,'STAGE 2 COMUM V1.','STAGE2_COMUM_BRAVOTJET_FIK3G15 _ROCKET POA_-1591120467.cod',0,1,'2020-06-02 16:54:31','2020-06-02 20:08:56'),(589,574,143,139,0,NULL,'SEGUE ID','ID BMW-1591120830.txt',0,1,'2020-06-02 17:00:40','2020-06-02 17:23:14'),(590,574,143,139,0,NULL,'SEGUE LEITURA BANCADA COM VERSAO ATUALIZADA DE SW','LEITURA BMW-1591120860.',0,1,'2020-06-02 17:01:10','2020-06-02 17:23:14'),(591,574,139,143,0,NULL,'SEGUE ORIGINAL BANCADA.','ORIGINAL_BMW320i_IXK2A68 _ROCKET POA_-1591122028.unq',0,1,'2020-06-02 17:20:35','2020-06-02 17:23:29'),(592,574,139,143,0,NULL,'SEGUE STAGE 1 BANCADA.','STAGE1_V1_BMW320i_IXK2A68 _ROCKET POA_-1591122184.unq',0,1,'2020-06-02 17:23:13','2020-06-02 17:23:29'),(593,587,139,143,0,NULL,'SEGUE V2.','STAGE2_V2_COMUM_BRAVOTJET_FIK3G15 _ROCKET POA_-1591124629.cod',0,1,'2020-06-02 18:03:52','2020-06-02 20:08:56'),(594,587,139,143,0,NULL,'SEGUE V3.','STAGE2_V3_COMUM_BRAVOTJET_FIK3G15 _ROCKET POA_-1591131958.cod',0,1,'2020-06-02 20:06:01','2020-06-02 20:08:56'),(595,0,139,144,1711,NULL,'SEGUE ORIGINAL.','ORIGINAL_GOLFGTIMK7_IYW5671 _ROCKET CAMPINAS_-1591200833.cod',0,1,'2020-06-03 15:13:58','2020-06-03 15:23:52'),(596,595,139,144,0,NULL,'SEGUE STAGE 2 V1.',NULL,0,1,'2020-06-03 15:14:11','2020-06-03 15:23:52'),(597,595,139,144,0,NULL,'SEGUE STAGE 2 V1.','STAGE2_V1_GOLFGTIMK7_IYW5671 _ROCKET CAMPINAS_-1591200866.cod',0,1,'2020-06-03 15:14:40','2020-06-03 15:23:52'),(598,0,139,144,1712,NULL,'ORIGINAL','ORIGINAL_AUDIA3_GIU2085 _ROCKET CAMPNAS_-1591202051.cod',0,1,'2020-06-03 15:34:13','2020-06-03 18:05:12'),(599,598,139,144,0,NULL,'SEGUE STAGE 2 V1.','STAGE2_V1_AUDIA3_GIU2085 _ROCKET CAMPNAS_-1591202065.cod',0,1,'2020-06-03 15:34:28','2020-06-03 18:05:12'),(600,0,139,143,1713,NULL,'ORIGINAL','ORIGINAL_AMAROKV6_QJT5D19 _ROCKET POA_-1591205748.cod',0,1,'2020-06-03 16:35:50','2020-06-05 16:36:37'),(601,600,139,143,0,NULL,'STAGE 2 V1.','STAGE2_V1_AMAROKV6_QJT5D19 _ROCKET POA_-1591205769.cod',0,1,'2020-06-03 16:36:14','2020-06-05 16:36:37'),(602,598,144,139,0,NULL,'AUDI','LOG-01 TIMING AUDI GIU2085-1591210172.CSV',0,1,'2020-06-03 17:49:44','2020-06-03 18:05:03'),(603,598,144,139,0,NULL,'BOOST','LOG-01-BOOST AUDI GIU2085-1591210196.CSV',0,1,'2020-06-03 17:50:03','2020-06-03 18:05:03'),(604,598,139,144,0,NULL,'SEGUE STAGE 2 V2.','STAGE2_V2_AUDIA3_GIU2085 _ROCKET CAMPNAS_-1591211100.cod',0,1,'2020-06-03 18:05:02','2020-06-03 18:05:12'),(605,557,139,143,0,NULL,'STAGE 2 V3 TCU','STAGE2__V3_KICKDOWN_TCU_AUDIS3_PCM4632 _ROCKET POA_-1591212909.cod',0,1,'2020-06-03 18:35:11','2020-06-04 17:53:54'),(608,0,139,144,1720,NULL,'ORIGINAL','ORIGINAL_GOLFGTIMK7_PVY1212 _ROCKET CAMPINAS_-1591282273.cod',0,1,'2020-06-04 13:51:44','2020-06-04 15:02:39'),(609,608,139,144,0,NULL,'STAGE 2 V1.','STAGE2_V1_GOLFGTIMK7_PVY1212 _ROCKET CAMPINAS_-1591282327.cod',0,1,'2020-06-04 13:52:11','2020-06-04 15:02:39'),(610,608,139,144,0,NULL,'SEGUE V2.','STAGE2_V2_GOLFGTIMK7_PVY1212 _ROCKET CAMPINAS_-1591286048.cod',0,1,'2020-06-04 14:54:41','2020-06-04 15:02:39'),(611,0,139,173,1731,NULL,'SEGUE ORIGINAL','ORIGINAL_POLOGTS_QXM6666 _ROCKET PATOS_-1591369691.cod',0,1,'2020-06-05 14:08:15','2020-06-09 16:54:02'),(612,611,139,173,0,NULL,'SEGUE STAGE 2 V1.','STAGE2_V1_POLOGTS_QXM6666 _ROCKET PATOS_-1591369714.cod',0,1,'2020-06-05 14:08:38','2020-06-09 16:54:02'),(613,0,139,144,1721,NULL,'SEGUE STAGE 3 IS38 V3.','STAGE3_V3_IS38_E85_GOLFGTI75_GHL4163 _ROCKET CAMPINAS_-1591370556.cod',0,1,'2020-06-05 14:22:41','2020-06-05 20:36:06'),(614,613,139,144,0,NULL,'SEGUE V4.','STAGE3_V4_IS38_E85_GOLFGTI75_GHL4163 _ROCKET CAMPINAS_-1591376606.cod',0,1,'2020-06-05 16:03:29','2020-06-05 20:36:06'),(615,611,173,139,0,NULL,'Arquivo oem','611-document-1591378601.cod',0,1,'2020-06-05 16:36:57','2020-06-09 16:14:23'),(616,0,143,139,1735,NULL,'LEITURA ORIGINAL',NULL,0,1,'2020-06-05 16:41:14','2020-06-05 17:59:58'),(617,616,143,139,0,NULL,'.','leitura fusion-1591379009.',0,1,'2020-06-05 16:43:44','2020-06-05 17:59:58'),(618,616,139,143,0,NULL,'SEGUE ORIGINAL','ORIGINAL_FUSIONECOBOOST_IYB9E56 _ROCKET POA_-1591379566.cod',0,1,'2020-06-05 16:52:49','2020-06-05 18:07:45'),(619,611,139,173,0,NULL,'SEGUE STAGE 2 V2.','STAGE2_V2_POLOGTS_QXM6666 _ROCKET PATOS_-1591380743.cod',0,1,'2020-06-05 17:12:33','2020-06-09 16:54:02'),(620,616,139,143,0,NULL,'SEGUE STAGE 1 V1.','STAGE1_V1_FUSIONECOBOOST_IYB9E56 _ROCKET POA_-1591383591.cod',0,1,'2020-06-05 17:59:57','2020-06-05 18:07:45'),(621,611,139,173,0,NULL,'SEGUE STAGE 2 V3.','STAGE2_V3_POLOGTS_QXM6666 _ROCKET PATOS_-1591384888.cod',0,1,'2020-06-05 18:21:30','2020-06-09 16:54:02'),(622,613,139,144,0,NULL,'SEGUE V5.','STAGE3_V5_IS38_E85_GOLFGTI75_GHL4163 _ROCKET CAMPINAS_-1591388104.cod',0,1,'2020-06-05 19:15:23','2020-06-05 20:36:06'),(623,611,139,173,0,NULL,'SEGUE STAGE 2 V4.','STAGE2_V4_POLOGTS_QXM6666 _ROCKET PATOS_-1591392037.cod',0,1,'2020-06-05 20:21:13','2020-06-09 16:54:02'),(624,613,139,144,0,NULL,'SEGUE V6.','STAGE3_V6_IS38_E85_GOLFGTI75_GHL4163 _ROCKET CAMPINAS_-1591392951.cod',0,1,'2020-06-05 20:35:57','2020-06-05 20:36:06'),(625,611,139,173,0,NULL,'SEGUE STAGE 2 V5.','STAGE2_V5_POLOGTS_QXM6666 _ROCKET PATOS_-1591452855.cod',0,1,'2020-06-06 13:14:17','2020-06-09 16:54:02'),(626,611,139,173,0,NULL,'SEGUE STAGE 2 V6.','STAGE2_V6_POLOGTS_QXM6666 _ROCKET PATOS_-1591458503.cod',0,1,'2020-06-06 14:48:24','2020-06-09 16:54:02'),(627,584,11,27,0,NULL,'try this please','MOTION WERKS _VW Transporter _try this_ - 518073_-1591641084.cod',0,1,'2020-06-08 17:31:31','2020-06-08 17:42:56'),(628,0,139,143,1749,NULL,'ORIGINAL',NULL,0,1,'2020-06-08 19:30:44','2020-06-09 15:32:49'),(629,628,139,143,0,NULL,'ORIGINAL','ORIGINAL_JETTAGLI_IZJ3B46 _ROCKET POA_-1591648277.cod',0,1,'2020-06-08 19:31:43','2020-06-09 15:32:49'),(630,628,139,143,0,NULL,'SEGUE STAGE 3 IS38 V1.','STAGE3_IS38_V1_JETTAGLI_IZJ3B46 _ROCKET POA_-1591648314.cod',0,1,'2020-06-08 19:31:55','2020-06-09 15:32:49'),(631,628,139,143,0,NULL,'segue v2 original','v2_ORIGINAL_JETTAGLI_IZJ3B46 _ROCKET POA_-1591653222.cod',0,1,'2020-06-08 20:53:43','2020-06-09 15:32:49'),(632,0,139,144,1756,NULL,'SEGUE ORIGINAL','ORIGINAL_MERCEDESC250_GES6066 _ROCKET CAMPINAS_-1591705997.cod',0,1,'2020-06-09 11:34:27','2020-06-09 13:15:09'),(633,632,139,144,0,NULL,'STAGE 2 V1.','STAGE2_V1_MERCEDESC250_GES6066 _ROCKET CAMPINAS_-1591706097.cod',0,1,'2020-06-09 11:34:59','2020-06-09 13:15:09'),(634,632,139,144,0,NULL,'SEGUE V2.','STAGE2_V2_MERCEDESC250_GES6066 _ROCKET CAMPINAS_-1591711970.cod',0,1,'2020-06-09 13:13:02','2020-06-09 13:15:09'),(635,628,139,143,0,NULL,'v3 original','v3_ORIGINAL_JETTAGLI_IZJ3B46 _ROCKET POA_-1591720361.cod',0,1,'2020-06-09 15:32:43','2020-06-09 15:32:49'),(636,628,139,143,0,NULL,'v4 original','v4_ORIGINAL_JETTAGLI_IZJ3B46 _ROCKET POA_-1591720881.cod',0,0,'2020-06-09 15:41:33','2020-06-09 15:41:33'),(637,611,139,173,0,NULL,'SEGUE STAGE 2 V7.','STAGE2_V7_POLOGTS_QXM6666 _ROCKET PATOS_-1591722137.cod',0,1,'2020-06-09 16:02:19','2020-06-09 16:54:02'),(638,0,139,149,1760,NULL,'STAGE 3 V1.','STAGE3_V1_k14_PUNTO_TJET_ALCOOL_PGR0880-1591722232.cod',0,0,'2020-06-09 16:03:59','2020-06-09 16:03:59'),(639,638,139,149,0,NULL,'SEGUE ORIGINAL','ORIGINAL_PUNTO_TJET_ALCOOL_PGR0880-1591722248.cod',0,0,'2020-06-09 16:04:10','2020-06-09 16:04:10'),(640,0,139,143,1761,NULL,'SEGUE STAGE 1 V1.','STAGE1_V1_AUDIQ3_IZR8A32 _ROCKET POA_-1591731463.cod',0,1,'2020-06-09 18:37:45','2020-06-09 18:42:53'),(641,0,121,48,0,'transhit connect','Hi J, can you put the tune back on my connect file plz its covered 2000 miles since the new engine was fitted.\r\nThis is current read and this has dpf and egr off \r\nspank you','wf65yoj-transitconnect-hw-dv61-12b684-ca-sw-dv61-12a650-cec-upg-1591801557.txt',0,1,'2020-06-10 14:07:50','2020-06-10 14:34:51'),(642,0,139,144,1765,NULL,'ORIGINAL','ORIGINAL_TCU_FUSCA200_FHF3461 _ROCKET CAMPINAS_-1591807127.cod',0,1,'2020-06-10 15:38:50','2020-06-10 17:30:30'),(643,642,139,144,0,NULL,'STAGE 2 TCU V1.','STAGE2_V1_TCU_FUSCA200_FHF3461 _ROCKET CAMPINAS_-1591807138.cod',0,1,'2020-06-10 15:39:02','2020-06-10 17:30:30'),(644,642,144,139,0,NULL,'LOG DO FUSCA','LOG-01-10-06-2020 11-1591809262.CSV',0,0,'2020-06-10 16:14:30','2020-06-10 16:14:30'),(645,0,139,143,1766,NULL,'ORIGINAL','ORIGINAL_UPTSI_IZI9A98 _ROCKET POA_-1591821027.cod',0,1,'2020-06-10 19:30:30','2020-06-10 19:30:54'),(646,645,139,143,0,NULL,'SEGUE STAGE 2 V1.','STAGE2_V1_UPTSI_IZI9A98 _ROCKET POA_-1591821039.cod',0,1,'2020-06-10 19:30:40','2020-06-10 19:30:54'); /*!40000 ALTER TABLE `tickets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `transactions` -- DROP TABLE IF EXISTS `transactions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `transactions` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) unsigned NOT NULL, `credits` float(8,2) NOT NULL, `type` enum('A','S') NOT NULL DEFAULT 'A' COMMENT '''A''=>''Give'',''S''=>''Take''', `description` varchar(191) DEFAULT NULL, `status` varchar(191) NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`), CONSTRAINT `transactions_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2809 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `transactions` -- LOCK TABLES `transactions` WRITE; /*!40000 ALTER TABLE `transactions` DISABLE KEYS */; INSERT INTO `transactions` VALUES (68,27,0.69,'A','carried onver','Completed','2018-09-27 08:59:03','2018-09-27 08:59:03',NULL),(69,29,0.70,'A','carried over','Completed','2018-09-27 09:12:30','2018-09-27 09:12:30',NULL),(70,30,0.67,'A','carried over','Completed','2018-09-27 09:15:26','2018-09-27 09:15:26',NULL),(73,28,3.35,'A','carried over','Completed','2018-09-27 10:02:09','2018-09-27 10:02:09',NULL),(83,24,1.00,'A','Tuning credits purchase','Completed','2018-09-27 13:36:08','2018-09-27 13:36:08',NULL),(84,24,1.00,'S','File Service: ford and focus 3rd','Completed','2018-09-27 15:02:21','2018-09-27 15:02:21',NULL),(95,19,1.00,'A','Tuning credits purchase','Completed','2018-10-03 08:43:06','2018-10-03 08:43:06',NULL),(96,19,0.00,'S','File Service: nissan and x trail 31','Completed','2018-10-03 08:47:26','2018-10-03 08:47:26',NULL),(97,19,1.00,'S','File Service: NISSAN and XTRAIL T30','Completed','2018-10-03 10:02:38','2018-10-03 10:02:38',NULL),(98,19,0.33,'S','egr option','Completed','2018-10-03 10:08:39','2018-10-03 10:08:39',NULL),(104,29,1.00,'A','Tuning credits purchase','Completed','2018-10-04 17:31:25','2018-10-04 17:31:25',NULL),(105,29,1.00,'S','File Service: VW and TRANSPORTER 5','Completed','2018-10-04 18:12:08','2018-10-04 18:12:08',NULL),(106,19,2.00,'A','Tuning credits purchase','Completed','2018-10-05 09:05:22','2018-10-05 09:05:22',NULL),(107,19,1.00,'S','File Service: ford and transit 14 on','Completed','2018-10-05 09:20:27','2018-10-05 09:20:27',NULL),(108,19,1.00,'A','Tuning credits purchase','Completed','2018-10-05 09:56:05','2018-10-05 09:56:05',NULL),(109,19,1.00,'S','File Service: landrover and rr sport 1st','Completed','2018-10-05 10:01:19','2018-10-05 10:01:19',NULL),(110,24,1.00,'A','Tuning credits purchase','Completed','2018-10-08 17:07:37','2018-10-08 17:07:37',NULL),(111,24,1.00,'A','Tuning credits purchase','Completed','2018-10-08 17:10:43','2018-10-08 17:10:43',NULL),(112,24,1.33,'S','File Service: vw and touran 6at','Completed','2018-10-08 17:11:59','2018-10-08 17:11:59',NULL),(113,19,1.00,'A','Tuning credits purchase','Completed','2018-10-09 10:38:27','2018-10-09 10:38:27',NULL),(114,19,1.00,'S','File Service: mercedes and 906 sprinter 2nd','Completed','2018-10-09 10:40:52','2018-10-09 10:40:52',NULL),(116,36,1.00,'A','Tuning credits purchase','Completed','2018-10-11 10:46:29','2018-10-11 10:46:29',NULL),(117,36,1.00,'S','File Service: vw and golf r mark 7','Completed','2018-10-11 10:49:36','2018-10-11 10:49:36',NULL),(118,19,2.00,'A','Tuning credits purchase','Completed','2018-10-11 11:15:24','2018-10-11 11:15:24',NULL),(119,19,1.00,'S','File Service: vauxhall and astra j j','Completed','2018-10-11 11:18:01','2018-10-11 11:18:01',NULL),(120,19,1.00,'S','File Service: ford and transit connect 2nd','Completed','2018-10-12 10:06:24','2018-10-12 10:06:24',NULL),(121,36,1.00,'A','Tuning credits purchase','Completed','2018-10-13 07:22:12','2018-10-13 07:22:12',NULL),(122,36,1.00,'A','bank','Completed','2018-10-13 10:00:29','2018-10-13 10:00:29',NULL),(123,36,1.00,'S','File Service: Vauxhall and Vivaro B','Completed','2018-10-13 12:03:48','2018-10-13 12:03:48',NULL),(124,36,1.00,'A','add','Completed','2018-10-13 12:10:33','2018-10-13 12:10:33',NULL),(125,36,1.33,'S','File Service: Vauahall and <NAME>','Completed','2018-10-13 12:14:34','2018-10-13 12:14:34',NULL),(126,43,10.00,'A','credit add','Completed','2018-10-13 13:10:37','2018-10-13 13:10:37',NULL),(127,36,0.33,'A','CORRECTION','Completed','2018-10-13 15:45:02','2018-10-13 15:45:02',NULL),(131,45,5.00,'A','invoiced for 5 credits','Completed','2018-10-15 10:32:17','2018-10-15 10:32:17',NULL),(132,19,1.00,'A','Tuning credits purchase','Completed','2018-10-16 10:43:04','2018-10-16 10:43:04',NULL),(133,19,1.00,'S','File Service: ford and connect 2nd','Completed','2018-10-16 11:06:03','2018-10-16 11:06:03',NULL),(134,45,1.33,'S','File Service: FORD and FOCUS 2','Completed','2018-10-16 12:18:40','2018-10-16 12:18:40',NULL),(135,45,1.00,'S','File Service: VW Tiguan 2018','Completed','2018-10-16 14:39:53','2018-10-16 14:39:53',NULL),(136,24,2.00,'A','Tuning credits purchase','Completed','2018-10-16 15:22:42','2018-10-16 15:22:42',NULL),(137,24,1.33,'S','File Service: nissan xtrail h','Completed','2018-10-16 15:29:04','2018-10-16 15:29:04',NULL),(138,28,1.33,'S','File Service: range rover vouge l322','Completed','2018-10-18 15:49:53','2018-10-18 15:49:53',NULL),(139,43,1.33,'S','File Service: BMW M3 E92','Completed','2018-10-19 19:13:27','2018-10-19 19:13:27',NULL),(140,43,1.33,'S','File Service: Renault Traffic MK2','Completed','2018-10-19 19:48:23','2018-10-19 19:48:23',NULL),(141,43,1.00,'S','File Service: Toyota Hilux Euro 6','Completed','2018-10-20 11:21:59','2018-10-20 11:21:59',NULL),(142,19,1.00,'A','Tuning credits purchase','Completed','2018-10-22 09:24:22','2018-10-22 09:24:22',NULL),(143,19,1.00,'S','File Service: landrover rr sport 1st','Completed','2018-10-22 09:27:26','2018-10-22 09:27:26',NULL),(144,43,1.00,'S','File Service: Range Rover Evogue MK2','Completed','2018-10-22 15:11:51','2018-10-22 15:11:51',NULL),(145,43,1.00,'S','File Service: Mercedes E250 A207','Completed','2018-10-22 16:19:11','2018-10-22 16:19:11',NULL),(146,19,1.00,'A','Tuning credits purchase','Completed','2018-10-23 09:42:33','2018-10-23 09:42:33',NULL),(147,19,1.00,'S','File Service: ford transit ty','Completed','2018-10-23 09:57:04','2018-10-23 09:57:04',NULL),(148,21,1.00,'A','Tuning credits purchase','Completed','2018-10-24 09:15:12','2018-10-24 09:15:12',NULL),(149,21,1.00,'S','File Service: ford fiesta 5','Completed','2018-10-24 09:19:09','2018-10-24 09:19:09',NULL),(150,43,1.66,'S','File Service: BMW 5 series F10','Completed','2018-10-24 18:40:21','2018-10-24 18:40:21',NULL),(151,43,1.00,'S','File Service: Ford Kuga TDCi','Completed','2018-10-25 18:32:51','2018-10-25 18:32:51',NULL),(152,36,1.00,'S','File Service: BMW 5 Series ?','Completed','2018-10-27 11:34:58','2018-10-27 11:34:58',NULL),(153,19,1.00,'A','Tuning credits purchase','Completed','2018-10-30 16:13:48','2018-10-30 16:13:48',NULL),(154,19,1.00,'S','File Service: audi a6 c6','Completed','2018-10-30 16:15:25','2018-10-30 16:15:25',NULL),(155,24,1.00,'S','File Service: fiat ducato 2002','Completed','2018-10-31 11:31:30','2018-10-31 11:31:30',NULL),(156,24,1.00,'A','Tuning credits purchase','Completed','2018-10-31 12:23:58','2018-10-31 12:23:58',NULL),(157,24,1.00,'S','File Service: kia karens 3','Completed','2018-10-31 12:28:27','2018-10-31 12:28:27',NULL),(158,43,1.33,'S','File Service: Ford Transit MK7','Completed','2018-10-31 16:03:36','2018-10-31 16:03:36',NULL),(159,19,1.00,'A','Tuning credits purchase','Completed','2018-10-31 16:43:02','2018-10-31 16:43:02',NULL),(160,19,1.00,'S','File Service: merc ml350 w164','Completed','2018-10-31 16:45:52','2018-10-31 16:45:52',NULL),(161,43,10.00,'A','10 add invoiceed 1/11/18','Completed','2018-10-31 18:31:57','2018-10-31 18:31:57',NULL),(162,23,1.00,'A','Add manually','Completed','2018-11-01 12:05:19','2018-11-01 12:05:19',NULL),(163,23,1.00,'S','File Service: mercedes sprinter 2009','Completed','2018-11-01 12:11:12','2018-11-01 12:11:12',NULL),(164,43,1.33,'S','File Service: Ford Transit MK8','Completed','2018-11-01 12:45:56','2018-11-01 12:45:56',NULL),(165,43,1.00,'S','File Service: VW POLO 6C1','Completed','2018-11-01 15:09:49','2018-11-01 15:09:49',NULL),(166,19,1.00,'A','Tuning credits purchase','Completed','2018-11-01 16:21:16','2018-11-01 16:21:16',NULL),(167,19,1.00,'S','File Service: hyundai tucon 1st','Completed','2018-11-01 16:23:51','2018-11-01 16:23:51',NULL),(168,27,1.00,'A','Tuning credits purchase','Completed','2018-11-01 16:48:25','2018-11-01 16:48:25',NULL),(169,27,1.00,'S','File Service: FORD transit MK8','Completed','2018-11-01 16:59:44','2018-11-01 16:59:44',NULL),(170,19,1.00,'A','Tuning credits purchase','Completed','2018-11-02 12:14:36','2018-11-02 12:14:36',NULL),(171,19,1.00,'S','File Service: merc ml280cdi w164','Completed','2018-11-02 12:16:46','2018-11-02 12:16:46',NULL),(172,23,1.00,'A','add','Completed','2018-11-05 12:53:47','2018-11-05 12:53:47',NULL),(173,23,1.00,'S','File Service: mercedes sprinter 311','Completed','2018-11-05 13:18:28','2018-11-05 13:18:28',NULL),(174,19,1.00,'A','Tuning credits purchase','Completed','2018-11-05 14:00:47','2018-11-05 14:00:47',NULL),(175,19,1.00,'S','File Service: landrover discovery 3','Completed','2018-11-05 14:03:33','2018-11-05 14:03:33',NULL),(176,24,1.00,'A','Tuning credits purchase','Completed','2018-11-05 18:05:46','2018-11-05 18:05:46',NULL),(177,24,1.33,'S','File Service: nissan pathfinder 1','Completed','2018-11-05 18:07:15','2018-11-05 18:07:15',NULL),(178,45,1.66,'S','File Service: Audi A1 2010','Completed','2018-11-07 09:56:56','2018-11-07 09:56:56',NULL),(179,45,1.00,'S','File Service: Audi TT 8j3','Completed','2018-11-07 10:34:21','2018-11-07 10:34:21',NULL),(180,45,10.00,'A','invoiced','Completed','2018-11-07 11:14:25','2018-11-07 11:14:25',NULL),(181,43,1.33,'S','File Service: 2015Ford Connect MK3','Completed','2018-11-08 21:40:47','2018-11-08 21:40:47',NULL),(182,19,1.00,'A','Tuning credits purchase','Completed','2018-11-09 13:12:13','2018-11-09 13:12:13',NULL),(183,19,1.00,'S','File Service: ford mondeo 5th','Completed','2018-11-09 13:14:36','2018-11-09 13:14:36',NULL),(184,19,1.00,'A','Tuning credits purchase','Completed','2018-11-09 16:50:43','2018-11-09 16:50:43',NULL),(185,19,1.00,'S','File Service: landrover disco3 3rd','Completed','2018-11-09 16:52:19','2018-11-09 16:52:19',NULL),(186,23,1.00,'A','Tuning credits purchase','Completed','2018-11-14 12:38:02','2018-11-14 12:38:02',NULL),(187,23,1.00,'S','Volvo','Completed','2018-11-15 09:59:13','2018-11-15 09:59:13',NULL),(188,19,1.00,'A','Tuning credits purchase','Completed','2018-11-15 12:23:32','2018-11-15 12:23:32',NULL),(189,19,1.00,'S','File Service: audi a6 c6','Completed','2018-11-15 12:25:00','2018-11-15 12:25:00',NULL),(190,19,1.00,'A','Tuning credits purchase','Completed','2018-11-16 12:02:46','2018-11-16 12:02:46',NULL),(191,19,1.33,'S','File Service: vw crafter 2nd','Completed','2018-11-16 12:29:27','2018-11-16 12:29:27',NULL),(192,36,1.00,'A','add','Completed','2018-11-16 12:34:13','2018-11-16 12:34:13',NULL),(193,46,1.00,'A','Tuning credits purchase','Completed','2018-11-16 21:13:14','2018-11-16 21:13:14',NULL),(194,24,2.00,'A','Tuning credits purchase','Completed','2018-11-17 10:39:55','2018-11-17 10:39:55',NULL),(195,24,1.00,'S','File Service: ford transit 6','Completed','2018-11-17 10:41:47','2018-11-17 10:41:47',NULL),(196,36,1.00,'S','File Service: Range Rover 3L Tdi 3','Completed','2018-11-17 12:50:48','2018-11-17 12:50:48',NULL),(197,43,1.00,'S','File Service: Mercedes 313 ?','Completed','2018-11-17 12:54:37','2018-11-17 12:54:37',NULL),(198,46,1.00,'S','File Service: ford transit 5','Completed','2018-11-17 14:11:32','2018-11-17 14:11:32',NULL),(199,24,1.00,'S','File Service: vw caddy 3','Completed','2018-11-19 17:39:23','2018-11-19 17:39:23',NULL),(200,45,1.00,'S','File Service: mazda 3 2007','Completed','2018-11-21 11:27:05','2018-11-21 11:27:05',NULL),(201,43,1.00,'S','File Service: Mitsubishi Outlander MK2','Completed','2018-11-21 12:00:26','2018-11-21 12:00:26',NULL),(202,19,1.00,'A','add','Completed','2018-11-21 13:24:24','2018-11-21 13:24:24',NULL),(203,19,1.00,'S','File Service: ford transit tty','Completed','2018-11-21 13:29:52','2018-11-21 13:29:52',NULL),(204,19,1.00,'A','add','Completed','2018-11-22 12:43:17','2018-11-22 12:43:17',NULL),(205,19,1.00,'S','File Service: landrover discovery 3rd','Completed','2018-11-22 12:44:52','2018-11-22 12:44:52',NULL),(206,46,2.00,'A','Tuning credits purchase','Completed','2018-11-22 14:09:52','2018-11-22 14:09:52',NULL),(207,46,1.00,'S','File Service: bmw 530d e60','Completed','2018-11-22 14:12:22','2018-11-22 14:12:22',NULL),(208,45,1.00,'S','File Service: VW Transporter T5','Completed','2018-11-22 16:51:15','2018-11-22 16:51:15',NULL),(209,43,1.33,'S','File Service: BMW M5 F10','Completed','2018-11-23 11:17:44','2018-11-23 11:17:44',NULL),(212,46,1.00,'S','File Service: ford transit 4th','Completed','2018-11-24 12:14:04','2018-11-24 12:14:04',NULL),(213,19,1.00,'A','Tuning credits purchase','Completed','2018-11-28 08:51:28','2018-11-28 08:51:28',NULL),(214,19,1.00,'S','File Service: vw passat 6b','Completed','2018-11-28 08:57:46','2018-11-28 08:57:46',NULL),(215,27,1.00,'A','Tuning credits purchase','Completed','2018-11-28 12:13:45','2018-11-28 12:13:45',NULL),(216,27,1.00,'S','File Service: AUDI A5 MK8','Completed','2018-11-28 12:18:59','2018-11-28 12:18:59',NULL),(217,29,1.00,'A','add','Completed','2018-11-29 16:26:41','2018-11-29 16:26:41',NULL),(218,29,1.00,'S','File Service: bmw 335 3','Completed','2018-11-29 16:43:11','2018-11-29 16:43:11',NULL),(219,28,1.33,'S','File Service: land rover disco3 3','Completed','2018-11-30 15:35:28','2018-11-30 15:35:28',NULL),(220,45,1.90,'A','add 2 for BF deal','Completed','2018-11-30 19:00:24','2018-11-30 19:00:24',NULL),(221,45,0.09,'A','CORRECTION','Completed','2018-11-30 19:00:56','2018-11-30 19:00:56',NULL),(222,45,1.00,'S','File Service: BMW 325 E90','Completed','2018-12-03 10:16:15','2018-12-03 10:16:15',NULL),(223,19,1.00,'A','Tuning credits purchase','Completed','2018-12-03 14:15:23','2018-12-03 14:15:23',NULL),(224,19,1.33,'S','File Service: audi a6 2015','Completed','2018-12-03 14:17:41','2018-12-03 14:17:41',NULL),(225,45,1.33,'S','File Service: Land rover discovery 3','Completed','2018-12-04 09:20:01','2018-12-04 09:20:01',NULL),(227,39,1.00,'A','Tuning credits purchase','Completed','2018-12-05 10:06:43','2018-12-05 10:06:43',NULL),(228,39,1.00,'S','File Service: AUDI A3 3','Completed','2018-12-05 10:08:57','2018-12-05 10:08:57',NULL),(231,19,1.00,'A','add','Completed','2018-12-06 10:03:44','2018-12-06 10:03:44',NULL),(232,19,1.00,'S','File Service: vw amorak 1st','Completed','2018-12-06 10:05:31','2018-12-06 10:05:31',NULL),(235,21,1.00,'A','Tuning credits purchase','Completed','2018-12-06 11:08:30','2018-12-06 11:08:30',NULL),(236,21,1.00,'S','File Service: audi s5 2008','Completed','2018-12-06 11:11:07','2018-12-06 11:11:07',NULL),(240,45,1.00,'S','File Service: BMW 320d E90','Completed','2018-12-07 10:23:52','2018-12-07 10:23:52',NULL),(241,45,1.00,'S','File Service: VW Caddy 2k','Completed','2018-12-07 11:14:49','2018-12-07 11:14:49',NULL),(242,76,1.00,'A','Tuning credits purchase','Completed','2018-12-07 13:26:51','2018-12-07 13:26:51',NULL),(243,27,1.00,'A','Tuning credits purchase','Completed','2018-12-07 13:29:23','2018-12-07 13:29:23',NULL),(244,76,1.00,'S','File Service: Ford Ranger T6','Completed','2018-12-07 13:31:07','2018-12-07 13:31:07',NULL),(245,27,1.00,'S','File Service: BMW cooper S R52','Completed','2018-12-07 13:35:07','2018-12-07 13:35:07',NULL),(246,74,1.00,'A','Tuning credits purchase','Completed','2018-12-07 14:03:19','2018-12-07 14:03:19',NULL),(247,74,1.00,'S','File Service: BMW 318D E90','Completed','2018-12-07 14:51:07','2018-12-07 14:51:07',NULL),(248,74,1.00,'A','Tuning credits purchase','Completed','2018-12-08 18:30:08','2018-12-08 18:30:08',NULL),(249,45,1.00,'S','File Service: Ford Transit custom','Completed','2018-12-10 08:53:45','2018-12-10 08:53:45',NULL),(250,74,1.00,'S','TAKE AWAY','Completed','2018-12-10 11:28:34','2018-12-10 11:28:34',NULL),(251,19,1.00,'A','Tuning credits purchase','Completed','2018-12-10 14:17:44','2018-12-10 14:17:44',NULL),(252,19,0.33,'S','egr','Completed','2018-12-10 14:46:38','2018-12-10 14:46:38',NULL),(253,45,1.00,'S','File Service: honda accord i-dtec','Completed','2018-12-10 15:52:33','2018-12-10 15:52:33',NULL),(254,45,1.00,'S','File Service: VW Transporter T5','Completed','2018-12-10 16:20:39','2018-12-10 16:20:39',NULL),(257,82,1.00,'A','Tuning credits purchase','Completed','2018-12-11 08:49:15','2018-12-11 08:49:15',NULL),(258,82,1.00,'A','Tuning credits purchase','Completed','2018-12-11 08:51:43','2018-12-11 08:51:43',NULL),(259,82,1.33,'S','File Service: volkswagon passat mk6','Completed','2018-12-11 08:53:04','2018-12-11 08:53:04',NULL),(260,43,1.33,'S','File Service: Ford Galaxy MK2','Completed','2018-12-11 15:17:57','2018-12-11 15:17:57',NULL),(261,43,1.00,'S','File Service: BMW 525D E60','Completed','2018-12-11 15:50:11','2018-12-11 15:50:11',NULL),(262,43,1.00,'S','File Service: Ford S-MAx MK2','Completed','2018-12-12 12:21:33','2018-12-12 12:21:33',NULL),(264,23,1.00,'A','Tuning credits purchase','Completed','2018-12-12 12:51:01','2018-12-12 12:51:01',NULL),(265,29,1.00,'A','Tuning credits purchase','Completed','2018-12-12 13:37:17','2018-12-12 13:37:17',NULL),(266,23,1.00,'S','File Service: ford kuga 2','Completed','2018-12-12 15:01:34','2018-12-12 15:01:34',NULL),(267,43,1.00,'A','refund','Completed','2018-12-12 23:19:48','2018-12-12 23:19:48',NULL),(268,23,1.00,'S','File Service: ford kuga 1','Completed','2018-12-13 12:08:30','2018-12-13 12:08:30',NULL),(269,84,1.00,'A','Tuning credits purchase','Completed','2018-12-13 16:27:32','2018-12-13 16:27:32',NULL),(270,84,1.00,'S','File Service: VAUXHALL ZAFIRA B','Completed','2018-12-13 16:29:14','2018-12-13 16:29:14',NULL),(271,45,10.00,'A','invoiced 14/12/18','Completed','2018-12-14 13:31:00','2018-12-14 13:31:00',NULL),(272,43,1.00,'S','File Service: Ford Fiesta MK7','Completed','2018-12-14 13:40:09','2018-12-14 13:40:09',NULL),(273,45,10.00,'S','CORRECTION','Completed','2018-12-14 15:50:35','2018-12-14 15:50:35',NULL),(274,43,10.00,'A','invoiced 14/12/18','Completed','2018-12-14 15:51:14','2018-12-14 15:51:14',NULL),(275,43,1.00,'S','File Service: Audi SQ5 MK1','Completed','2018-12-14 15:51:54','2018-12-14 15:51:54',NULL),(276,19,1.00,'A','Tuning credits purchase','Completed','2018-12-17 10:54:20','2018-12-17 10:54:20',NULL),(277,19,1.00,'S','File Service: mitsubishi l200 2nd','Completed','2018-12-17 11:02:03','2018-12-17 11:02:03',NULL),(278,74,1.00,'A','Tuning credits purchase','Completed','2018-12-17 13:41:07','2018-12-17 13:41:07',NULL),(279,74,1.00,'S','File Service: BMW 325d E90','Completed','2018-12-17 14:00:51','2018-12-17 14:00:51',NULL),(280,74,1.00,'A','Tuning credits purchase','Completed','2018-12-18 12:00:38','2018-12-18 12:00:38',NULL),(281,74,1.00,'S','File Service: VW GOLF BLUEMOTION TDI','Completed','2018-12-18 12:02:54','2018-12-18 12:02:54',NULL),(282,45,1.00,'S','File Service: VW Transporter T5','Completed','2018-12-18 14:04:21','2018-12-18 14:04:21',NULL),(284,43,1.00,'S','File Service: Mercedes E250 C207','Completed','2018-12-19 11:38:30','2018-12-19 11:38:30',NULL),(285,19,1.00,'A','Tuning credits purchase','Completed','2018-12-20 08:55:22','2018-12-20 08:55:22',NULL),(286,19,1.00,'S','File Service: vw golf mk6','Completed','2018-12-20 08:58:22','2018-12-20 08:58:22',NULL),(287,19,1.00,'A','Tuning credits purchase','Completed','2018-12-20 11:00:36','2018-12-20 11:00:36',NULL),(288,19,1.00,'S','File Service: ford transit mk6','Completed','2018-12-20 11:02:45','2018-12-20 11:02:45',NULL),(289,19,1.00,'A','Tuning credits purchase','Completed','2018-12-20 12:41:28','2018-12-20 12:41:28',NULL),(290,19,1.00,'S','File Service: landrover freelander 2nd','Completed','2018-12-20 12:46:02','2018-12-20 12:46:02',NULL),(291,19,1.00,'A','Tuning credits purchase','Completed','2018-12-20 14:46:25','2018-12-20 14:46:25',NULL),(292,19,1.00,'S','File Service: audi q7 2nd','Completed','2018-12-20 14:51:16','2018-12-20 14:51:16',NULL),(294,36,2.00,'A','Tuning credits purchase','Completed','2018-12-21 08:18:40','2018-12-21 08:18:40',NULL),(295,36,1.00,'S','File Service: Audi TT Quattro','Completed','2018-12-22 11:53:28','2018-12-22 11:53:28',NULL),(296,36,1.00,'S','File Service: VW Toureg SE BMT 3L TDi','Completed','2018-12-22 14:38:48','2018-12-22 14:38:48',NULL),(297,19,1.00,'A','Tuning credits purchase','Completed','2018-12-28 10:04:31','2018-12-28 10:04:31',NULL),(298,19,1.00,'S','File Service: citroen berlingo 2nd','Completed','2018-12-28 10:06:28','2018-12-28 10:06:28',NULL),(299,43,1.33,'A','Passat Refund','Completed','2018-12-28 14:09:59','2018-12-28 14:09:59',NULL),(301,19,2.00,'A','Tuning credits purchase','Completed','2019-01-02 10:45:15','2019-01-02 10:45:15',NULL),(302,19,1.00,'S','File Service: ford transit mk7','Completed','2019-01-02 11:00:19','2019-01-02 11:00:19',NULL),(303,43,1.00,'S','File Service: BMW 325D E92','Completed','2019-01-02 11:23:49','2019-01-02 11:23:49',NULL),(304,19,1.00,'S','File Service: citroen dispatch 2nd','Completed','2019-01-02 11:28:49','2019-01-02 11:28:49',NULL),(305,43,1.00,'S','File Service: Ford Galaxy MK2','Completed','2019-01-02 11:45:20','2019-01-02 11:45:20',NULL),(306,19,1.00,'A','Tuning credits purchase','Completed','2019-01-02 12:27:29','2019-01-02 12:27:29',NULL),(307,19,1.00,'S','File Service: AUDI a3 8p','Completed','2019-01-02 12:31:26','2019-01-02 12:31:26',NULL),(309,76,1.00,'A','Tuning credits purchase','Completed','2019-01-02 14:03:24','2019-01-02 14:03:24',NULL),(310,76,1.00,'S','File Service: mercedes vito 2012','Completed','2019-01-02 14:09:12','2019-01-02 14:09:12',NULL),(311,43,1.33,'S','File Service: Mercedes E250 W212','Completed','2019-01-02 16:57:34','2019-01-02 16:57:34',NULL),(312,74,1.00,'A','Tuning credits purchase','Completed','2019-01-02 17:00:31','2019-01-02 17:00:31',NULL),(313,39,1.00,'A','Tuning credits purchase','Completed','2019-01-02 17:03:06','2019-01-02 17:03:06',NULL),(314,74,1.00,'S','File Service: BMW 525D E60','Completed','2019-01-02 17:04:36','2019-01-02 17:04:36',NULL),(315,39,1.00,'S','File Service: vw golf 6','Completed','2019-01-02 17:07:37','2019-01-02 17:07:37',NULL),(316,19,2.00,'A','Tuning credits purchase','Completed','2019-01-03 12:40:24','2019-01-03 12:40:24',NULL),(317,19,1.66,'S','File Service: ford transit mk7','Completed','2019-01-03 12:43:15','2019-01-03 12:43:15',NULL),(318,19,1.00,'A','Tuning credits purchase','Completed','2019-01-03 13:18:37','2019-01-03 13:18:37',NULL),(319,19,1.33,'S','File Service: vw t5.1 5.1','Completed','2019-01-03 13:22:58','2019-01-03 13:22:58',NULL),(320,84,1.00,'A','Tuning credits purchase','Completed','2019-01-03 16:41:10','2019-01-03 16:41:10',NULL),(321,84,1.00,'S','File Service: ford mondeo mk3','Completed','2019-01-03 16:42:50','2019-01-03 16:42:50',NULL),(323,45,1.00,'S','File Service: VW Caddy 2011','Completed','2019-01-05 11:54:40','2019-01-05 11:54:40',NULL),(324,43,1.00,'S','File Service: Renault Traffic II','Completed','2019-01-05 12:08:54','2019-01-05 12:08:54',NULL),(325,43,1.00,'S','File Service: Dacia Logan MK2','Completed','2019-01-05 12:25:13','2019-01-05 12:25:13',NULL),(326,43,1.66,'S','File Service: Ford Transit MK2','Completed','2019-01-05 14:14:58','2019-01-05 14:14:58',NULL),(327,19,1.00,'A','Tuning credits purchase','Completed','2019-01-07 08:29:10','2019-01-07 08:29:10',NULL),(328,19,1.00,'S','File Service: audi tt 1st','Completed','2019-01-07 08:45:52','2019-01-07 08:45:52',NULL),(329,19,1.00,'A','Tuning credits purchase','Completed','2019-01-07 10:38:33','2019-01-07 10:38:33',NULL),(330,19,1.00,'S','File Service: vw golf mk6','Completed','2019-01-07 10:43:13','2019-01-07 10:43:13',NULL),(331,74,1.00,'A','Tuning credits purchase','Completed','2019-01-07 12:20:07','2019-01-07 12:20:07',NULL),(332,74,1.00,'S','File Service: MERCEDES E350 E CLASS','Completed','2019-01-07 12:29:07','2019-01-07 12:29:07',NULL),(333,76,1.00,'A','Tuning credits purchase','Completed','2019-01-08 09:15:13','2019-01-08 09:15:13',NULL),(334,76,1.00,'S','File Service: ford transit custom','Completed','2019-01-08 09:17:08','2019-01-08 09:17:08',NULL),(335,43,10.00,'A','added 08/01/19','Completed','2019-01-08 13:05:40','2019-01-08 13:05:40',NULL),(336,43,1.00,'S','File Service: Audi S3 8V','Completed','2019-01-08 13:16:28','2019-01-08 13:16:28',NULL),(337,43,2.00,'S','File Service: Audi S3 8V','Completed','2019-01-08 13:21:38','2019-01-08 13:21:38',NULL),(338,76,1.00,'A','Tuning credits purchase','Completed','2019-01-09 10:25:19','2019-01-09 10:25:19',NULL),(339,76,1.00,'S','File Service: landrover disco 3','Completed','2019-01-09 10:28:30','2019-01-09 10:28:30',NULL),(340,19,1.00,'A','Tuning credits purchase','Completed','2019-01-09 11:44:50','2019-01-09 11:44:50',NULL),(341,19,1.00,'S','File Service: citroen c4 1st','Completed','2019-01-09 11:48:37','2019-01-09 11:48:37',NULL),(342,84,1.00,'A','Tuning credits purchase','Completed','2019-01-10 10:12:06','2019-01-10 10:12:06',NULL),(343,84,1.00,'S','File Service: range rover 2','Completed','2019-01-10 10:24:48','2019-01-10 10:24:48',NULL),(344,27,1.00,'A','Tuning credits purchase','Completed','2019-01-10 14:35:46','2019-01-10 14:35:46',NULL),(345,27,1.33,'S','File Service: VW T5 T5','Completed','2019-01-10 14:39:13','2019-01-10 14:39:13',NULL),(346,85,1.00,'A','Tuning credits purchase','Completed','2019-01-11 11:36:59','2019-01-11 11:36:59',NULL),(347,85,1.00,'S','File Service: vw transporter t5.1','Completed','2019-01-11 11:38:44','2019-01-11 11:38:44',NULL),(348,45,5.00,'A','add','Completed','2019-01-12 10:38:25','2019-01-12 10:38:25',NULL),(349,45,1.00,'S','File Service: VW T5 T5','Completed','2019-01-12 10:55:41','2019-01-12 10:55:41',NULL),(350,19,2.00,'A','Tuning credits purchase','Completed','2019-01-14 08:37:03','2019-01-14 08:37:03',NULL),(351,19,1.00,'S','File Service: ford transit connect 2nd','Completed','2019-01-14 08:42:13','2019-01-14 08:42:13',NULL),(352,19,1.00,'S','File Service: ford transit connect 2nd','Completed','2019-01-14 08:55:16','2019-01-14 08:55:16',NULL),(353,45,1.00,'S','File Service: Audi A4 B7','Completed','2019-01-15 09:19:31','2019-01-15 09:19:31',NULL),(354,21,1.00,'A','Tuning credits purchase','Completed','2019-01-15 15:31:44','2019-01-15 15:31:44',NULL),(355,21,1.00,'S','File Service: honda crv 2007','Completed','2019-01-15 15:34:12','2019-01-15 15:34:12',NULL),(356,21,1.00,'A','Tuning credits purchase','Completed','2019-01-15 16:45:28','2019-01-15 16:45:28',NULL),(357,21,1.00,'S','File Service: vw caddy 2014','Completed','2019-01-15 16:49:02','2019-01-15 16:49:02',NULL),(358,45,1.00,'S','Manual deduction. Transit delimit','Completed','2019-01-15 19:35:00','2019-01-15 19:35:00',NULL),(359,43,1.00,'S','File Service: Renault Kangoo Gen II','Completed','2019-01-16 18:43:28','2019-01-16 18:43:28',NULL),(360,19,1.00,'A','Tuning credits purchase','Completed','2019-01-17 10:00:35','2019-01-17 10:00:35',NULL),(361,19,1.00,'S','File Service: landrover discovery 3rd','Completed','2019-01-17 10:02:11','2019-01-17 10:02:11',NULL),(364,45,1.00,'S','File Service: Skoda octavia VRS','Completed','2019-01-17 11:25:04','2019-01-17 11:25:04',NULL),(365,36,2.00,'A','Tuning credits purchase','Completed','2019-01-18 07:32:25','2019-01-18 07:32:25',NULL),(366,27,1.00,'A','Tuning credits purchase','Completed','2019-01-18 12:36:24','2019-01-18 12:36:24',NULL),(367,27,1.33,'S','File Service: VAUXHALL VIVARO A','Completed','2019-01-18 12:39:03','2019-01-18 12:39:03',NULL),(369,74,1.00,'A','Tuning credits purchase','Completed','2019-01-18 14:59:30','2019-01-18 14:59:30',NULL),(370,74,1.00,'S','File Service: FORD TRANSIT OLD SHAPE T350','Completed','2019-01-18 15:01:38','2019-01-18 15:01:38',NULL),(372,70,5.00,'A','rrrr','Completed','2019-01-18 15:21:37','2019-01-18 15:21:37',NULL),(373,70,1.00,'S','File Service: sdasd dadsasddasdas dadsa','Completed','2019-01-18 15:22:24','2019-01-18 15:22:24',NULL),(374,70,1.00,'S','File Service: fwfw fwefw fee','Completed','2019-01-18 15:24:48','2019-01-18 15:24:48',NULL),(375,70,1.00,'S','File Service: cc cccc cccc','Completed','2019-01-18 15:26:44','2019-01-18 15:26:44',NULL),(376,70,1.00,'S','File Service: 3333 3333 33333','Completed','2019-01-18 15:33:08','2019-01-18 15:33:08',NULL),(377,70,1.00,'S','File Service: 111 1111 111','Completed','2019-01-18 15:36:25','2019-01-18 15:36:25',NULL),(383,45,1.00,'S','File Service: Ford Transit Custom','Completed','2019-01-18 16:11:08','2019-01-18 16:11:08',NULL),(385,45,5.00,'A','Credits added 18th','Completed','2019-01-18 18:53:23','2019-01-18 18:53:23',NULL),(386,36,0.00,'S','File Service: Vauxhall Vivaro A','Completed','2019-01-19 12:48:42','2019-01-19 12:48:42',NULL),(387,36,1.00,'S','File Service: Vauxhall Vivaro A`','Completed','2019-01-19 12:51:58','2019-01-19 12:51:58',NULL),(388,36,1.00,'S','File Service: Vauxhall Astra H','Completed','2019-01-19 13:19:19','2019-01-19 13:19:19',NULL),(389,43,1.00,'S','File Service: Audi A4 B8','Completed','2019-01-19 14:51:23','2019-01-19 14:51:23',NULL),(390,43,1.00,'S','File Service: Audi A4 B8','Completed','2019-01-19 15:12:38','2019-01-19 15:12:38',NULL),(391,45,1.00,'S','File Service: Vauxhall Astra GTC','Completed','2019-01-21 10:07:54','2019-01-21 10:07:54',NULL),(392,84,1.00,'A','Tuning credits purchase','Completed','2019-01-21 13:19:18','2019-01-21 13:19:18',NULL),(393,84,1.00,'A','Tuning credits purchase','Completed','2019-01-21 13:19:49','2019-01-21 13:19:49',NULL),(394,84,1.00,'S','File Service: audi q7 mk1','Completed','2019-01-21 13:21:37','2019-01-21 13:21:37',NULL),(395,70,1.00,'A','add','Completed','2019-01-22 23:31:12','2019-01-22 23:31:12',NULL),(396,70,1.00,'S','File Service: new new new','Completed','2019-01-22 23:32:01','2019-01-22 23:32:01',NULL),(397,76,1.00,'A','Tuning credits purchase','Completed','2019-01-24 09:44:29','2019-01-24 09:44:29',NULL),(398,76,1.00,'S','File Service: JEEP CHEROKEE CRD OLD SHAPE','Completed','2019-01-24 09:49:15','2019-01-24 09:49:15',NULL),(399,76,1.00,'A','Tuning credits purchase','Completed','2019-01-24 10:53:25','2019-01-24 10:53:25',NULL),(400,76,1.00,'S','File Service: landrover evoque 2','Completed','2019-01-24 13:14:46','2019-01-24 13:14:46',NULL),(401,45,1.00,'S','File Service: BMW 335d e91','Completed','2019-01-24 13:43:09','2019-01-24 13:43:09',NULL),(402,45,1.00,'S','File Service: VW Golf 6','Completed','2019-01-25 08:52:59','2019-01-25 08:52:59',NULL),(403,70,1.00,'A','qqqq','Completed','2019-01-25 15:09:51','2019-01-25 15:09:51',NULL),(404,70,1.00,'S','File Service: sxaxa sxasxasxa dsad','Completed','2019-01-25 15:13:42','2019-01-25 15:13:42',NULL),(405,85,1.00,'A','Tuning credits purchase','Completed','2019-01-25 16:00:49','2019-01-25 16:00:49',NULL),(406,85,1.00,'S','File Service: mazda 6 dont know','Completed','2019-01-25 16:02:47','2019-01-25 16:02:47',NULL),(407,45,1.00,'S','File Service: range rover l322','Completed','2019-01-26 10:13:59','2019-01-26 10:13:59',NULL),(408,28,2.00,'A','Tuning credits purchase','Completed','2019-01-28 12:02:33','2019-01-28 12:02:33',NULL),(409,28,1.33,'S','File Service: landrover disco 4','Completed','2019-01-28 12:07:30','2019-01-28 12:07:30',NULL),(410,70,10.00,'A','sdcsd','Completed','2019-01-28 12:53:35','2019-01-28 12:53:35',NULL),(411,70,1.00,'S','File Service: vfvfvfvf vfvfvfvf vfvfvfvf','Completed','2019-01-28 12:54:54','2019-01-28 12:54:54',NULL),(414,76,1.00,'A','Tuning credits purchase','Completed','2019-01-28 17:20:20','2019-01-28 17:20:20',NULL),(415,76,1.00,'S','File Service: Seat Ibiza 2010','Completed','2019-01-28 17:31:30','2019-01-28 17:31:30',NULL),(416,76,1.00,'A','Tuning credits purchase','Completed','2019-01-29 09:44:31','2019-01-29 09:44:31',NULL),(417,76,1.00,'S','File Service: Skoda YETI 2012','Completed','2019-01-29 09:45:52','2019-01-29 09:45:52',NULL),(418,76,1.00,'A','Tuning credits purchase','Completed','2019-01-30 10:33:14','2019-01-30 10:33:14',NULL),(419,76,1.00,'S','File Service: PEUGEOT BOXER EARLY','Completed','2019-01-30 10:40:14','2019-01-30 10:40:14',NULL),(420,74,1.00,'A','Tuning credits purchase','Completed','2019-01-30 14:12:31','2019-01-30 14:12:31',NULL),(421,74,1.00,'S','File Service: FORD TRANSIT OLD SHAPE T100','Completed','2019-01-30 14:21:03','2019-01-30 14:21:03',NULL),(422,19,1.00,'A','Tuning credits purchase','Completed','2019-01-31 13:56:51','2019-01-31 13:56:51',NULL),(423,19,1.00,'S','File Service: ford transit mk7','Completed','2019-01-31 14:00:42','2019-01-31 14:00:42',NULL),(424,45,5.00,'A','5 added 04/02/19','Completed','2019-02-04 10:24:20','2019-02-04 10:24:20',NULL),(425,45,1.00,'S','File Service: audi a4 B7','Completed','2019-02-04 11:08:32','2019-02-04 11:08:32',NULL),(426,19,1.00,'A','Tuning credits purchase','Completed','2019-02-04 11:59:16','2019-02-04 11:59:16',NULL),(427,19,1.00,'S','File Service: jeep grand cherokee 3rd','Completed','2019-02-04 12:07:14','2019-02-04 12:07:14',NULL),(428,45,1.66,'S','File Service: VW Transporter t5','Completed','2019-02-04 15:03:44','2019-02-04 15:03:44',NULL),(429,45,1.00,'S','File Service: Audi TT Coupe','Completed','2019-02-04 15:05:13','2019-02-04 15:05:13',NULL),(430,43,1.66,'S','Vectra V6 tune egr and dpf','Completed','2019-02-04 18:07:18','2019-02-04 18:07:18',NULL),(431,43,1.00,'S','Merc Sprinter DPF','Completed','2019-02-04 18:07:57','2019-02-04 18:07:57',NULL),(432,43,1.33,'S','Audi A3 8P tune and egr','Completed','2019-02-04 18:10:18','2019-02-04 18:10:18',NULL),(433,43,1.00,'S','SAAB 95 2.0 Diesel tune','Completed','2019-02-04 18:11:19','2019-02-04 18:11:19',NULL),(434,43,10.00,'A','added 02/02/19','Completed','2019-02-04 18:11:56','2019-02-04 18:11:56',NULL),(435,36,1.00,'A','add','Completed','2019-02-04 18:12:40','2019-02-04 18:12:40',NULL),(436,36,1.00,'S','Merc A200','Completed','2019-02-04 18:12:53','2019-02-04 18:12:53',NULL),(437,27,1.00,'A','Tuning credits purchase','Completed','2019-02-05 09:48:41','2019-02-05 09:48:41',NULL),(438,27,1.00,'A','Tuning credits purchase','Completed','2019-02-05 10:10:17','2019-02-05 10:10:17',NULL),(439,27,1.50,'S','File Service: VW GOLF MK4','Completed','2019-02-05 10:12:19','2019-02-05 10:12:19',NULL),(440,19,1.00,'A','Tuning credits purchase','Completed','2019-02-05 12:18:45','2019-02-05 12:18:45',NULL),(441,19,1.00,'S','File Service: merc s350cdi w221','Completed','2019-02-05 13:21:53','2019-02-05 13:21:53',NULL),(442,19,1.00,'A','Tuning credits purchase','Completed','2019-02-06 08:23:57','2019-02-06 08:23:57',NULL),(443,19,1.00,'S','File Service: skoda fabia 3RD','Completed','2019-02-06 08:27:20','2019-02-06 08:27:20',NULL),(444,19,1.00,'A','Tuning credits purchase','Completed','2019-02-06 09:02:51','2019-02-06 09:02:51',NULL),(445,19,1.00,'S','File Service: vw polo 6r','Completed','2019-02-06 09:05:41','2019-02-06 09:05:41',NULL),(446,19,1.00,'A','Tuning credits purchase','Completed','2019-02-06 15:26:52','2019-02-06 15:26:52',NULL),(447,43,1.00,'S','File Service: Mercedes A180D W176','Completed','2019-02-06 15:39:55','2019-02-06 15:39:55',NULL),(448,19,1.00,'S','File Service: seat leon 3','Completed','2019-02-06 16:40:15','2019-02-06 16:40:15',NULL),(449,27,1.00,'A','Tuning credits purchase','Completed','2019-02-07 09:37:44','2019-02-07 09:37:44',NULL),(450,27,1.00,'S','File Service: Land Rover Range Rover Sport MK1','Completed','2019-02-07 09:39:58','2019-02-07 09:39:58',NULL),(451,70,1.00,'S','File Service: lkjjnjok klnlk lkn','Completed','2019-02-07 13:04:36','2019-02-07 13:04:36',NULL),(452,45,1.00,'S','File Service: Skoda Octavia 2011','Completed','2019-02-08 09:33:26','2019-02-08 09:33:26',NULL),(453,27,1.00,'A','Tuning credits purchase','Completed','2019-02-08 14:18:16','2019-02-08 14:18:16',NULL),(454,27,1.00,'S','File Service: BMW 318D F30','Completed','2019-02-08 14:20:55','2019-02-08 14:20:55',NULL),(455,43,1.33,'S','File Service: Vauxhall Vivaro MK2','Completed','2019-02-09 12:31:39','2019-02-09 12:31:39',NULL),(456,90,1.00,'A','free','Completed','2019-02-09 18:50:45','2019-02-09 18:50:45',NULL),(457,45,1.00,'S','File Service: ford kuga mk1','Completed','2019-02-11 09:23:49','2019-02-11 09:23:49',NULL),(458,45,1.00,'S','File Service: Audi A3 8p','Completed','2019-02-12 09:58:35','2019-02-12 09:58:35',NULL),(459,45,5.00,'A','add 13/02/2019','Completed','2019-02-13 09:50:19','2019-02-13 09:50:19',NULL),(460,81,1.00,'A','Tuning credits purchase','Completed','2019-02-13 12:41:40','2019-02-13 12:41:40',NULL),(461,81,1.00,'S','File Service: audi Q7 NA','Completed','2019-02-13 12:48:27','2019-02-13 12:48:27',NULL),(462,76,1.00,'A','Tuning credits purchase','Completed','2019-02-18 10:24:00','2019-02-18 10:24:00',NULL),(463,76,1.00,'S','File Service: Fiat Grande Punto 2009','Completed','2019-02-18 10:37:37','2019-02-18 10:37:37',NULL),(464,19,1.00,'A','Tuning credits purchase','Completed','2019-02-18 14:20:28','2019-02-18 14:20:28',NULL),(465,19,1.00,'S','File Service: vw passat 7b','Completed','2019-02-18 14:23:04','2019-02-18 14:23:04',NULL),(466,19,0.00,'S','File Service: seat leon x','Completed','2019-02-19 10:28:57','2019-02-19 10:28:57',NULL),(467,19,1.00,'A','Tuning credits purchase','Completed','2019-02-19 10:53:34','2019-02-19 10:53:34',NULL),(468,19,1.33,'S','File Service: seat leon x','Completed','2019-02-19 10:59:51','2019-02-19 10:59:51',NULL),(469,76,1.00,'A','Tuning credits purchase','Completed','2019-02-20 17:50:11','2019-02-20 17:50:11',NULL),(470,76,1.00,'S','File Service: ISUZU DENVER DMAX 2010','Completed','2019-02-20 17:52:03','2019-02-20 17:52:03',NULL),(471,24,1.00,'A','Tuning credits purchase','Completed','2019-02-21 14:50:23','2019-02-21 14:50:23',NULL),(472,24,1.33,'S','File Service: vauxhall astra j gen','Completed','2019-02-21 14:55:28','2019-02-21 14:55:28',NULL),(473,45,1.00,'S','File Service: Ford Focus 2','Completed','2019-02-22 10:09:55','2019-02-22 10:09:55',NULL),(474,76,2.00,'A','Tuning credits purchase','Completed','2019-02-22 16:31:50','2019-02-22 16:31:50',NULL),(475,76,1.00,'S','File Service: Audi A6 4f','Completed','2019-02-22 16:38:52','2019-02-22 16:38:52',NULL),(476,76,1.00,'S','take away','Completed','2019-02-22 17:46:33','2019-02-22 17:46:33',NULL),(477,90,1.00,'S','take away','Completed','2019-02-22 17:49:06','2019-02-22 17:49:06',NULL),(478,43,1.66,'S','File Service: BMW 335D F30','Completed','2019-02-23 10:34:46','2019-02-23 10:34:46',NULL),(479,43,1.00,'S','File Service: Audi A3 8P','Completed','2019-02-25 14:59:51','2019-02-25 14:59:51',NULL),(480,43,1.00,'S','File Service: Seat Lean FR','Completed','2019-02-25 17:43:16','2019-02-25 17:43:16',NULL),(481,43,1.00,'S','File Service: Ford Transit MK7','Completed','2019-02-26 14:01:28','2019-02-26 14:01:28',NULL),(482,43,1.33,'S','File Service: Vauxhall Vectra C C','Completed','2019-02-27 12:01:49','2019-02-27 12:01:49',NULL),(483,45,1.00,'S','File Service: VW Transporter T6','Completed','2019-02-27 15:06:08','2019-02-27 15:06:08',NULL),(484,21,1.00,'A','Tuning credits purchase','Completed','2019-02-28 10:55:01','2019-02-28 10:55:01',NULL),(485,21,1.00,'S','File Service: VW CADDY 2012','Completed','2019-02-28 10:56:42','2019-02-28 10:56:42',NULL),(487,74,1.00,'A','Tuning credits purchase','Completed','2019-02-28 13:04:21','2019-02-28 13:04:21',NULL),(488,74,1.00,'S','File Service: VW golf 5k mk6','Completed','2019-02-28 13:07:06','2019-02-28 13:07:06',NULL),(489,45,1.00,'S','File Service: VW Transporter T6','Completed','2019-03-01 10:20:58','2019-03-01 10:20:58',NULL),(490,19,2.00,'A','Tuning credits purchase','Completed','2019-03-01 14:11:12','2019-03-01 14:11:12',NULL),(491,19,1.00,'S','File Service: citroen c6 x','Completed','2019-03-01 14:16:49','2019-03-01 14:16:49',NULL),(492,74,1.00,'A','Tuning credits purchase','Completed','2019-03-01 14:23:58','2019-03-01 14:23:58',NULL),(493,74,1.00,'S','File Service: AUDI A1 8X','Completed','2019-03-01 14:26:36','2019-03-01 14:26:36',NULL),(494,19,1.00,'S','File Service: vw t5.1 5.1','Completed','2019-03-01 15:26:24','2019-03-01 15:26:24',NULL),(495,43,0.50,'A','Goodwill Gesture Transit','Completed','2019-03-01 17:45:38','2019-03-01 17:45:38',NULL),(496,29,1.00,'S','File Service: vauxhall vivaro 1','Completed','2019-03-02 11:40:01','2019-03-02 11:40:01',NULL),(497,29,0.50,'S','delimit vivaro','Completed','2019-03-02 12:28:16','2019-03-02 12:28:16',NULL),(498,43,1.00,'S','File Service: Audi Q5 MK2','Completed','2019-03-02 13:04:37','2019-03-02 13:04:37',NULL),(499,43,10.00,'A','added 02/03/19','Completed','2019-03-02 13:27:45','2019-03-02 13:27:45',NULL),(500,28,1.00,'S','File Service: ford transit custom 2015','Completed','2019-03-02 13:39:50','2019-03-02 13:39:50',NULL),(501,43,1.00,'S','File Service: Vaxuxhall Astra H','Completed','2019-03-02 14:00:06','2019-03-02 14:00:06',NULL),(502,19,1.00,'A','Tuning credits purchase','Completed','2019-03-04 14:03:57','2019-03-04 14:03:57',NULL),(503,19,1.00,'S','File Service: fiat scudo 2nd','Completed','2019-03-04 14:09:04','2019-03-04 14:09:04',NULL),(504,74,1.00,'A','Tuning credits purchase','Completed','2019-03-04 16:06:07','2019-03-04 16:06:07',NULL),(505,74,1.00,'S','File Service: seat leon cupra mk1','Completed','2019-03-04 16:07:43','2019-03-04 16:07:43',NULL),(506,81,1.00,'A','Tuning credits purchase','Completed','2019-03-04 20:40:41','2019-03-04 20:40:41',NULL),(507,81,1.00,'S','File Service: ford fiesta NEEDS STAGE 2 ST 2015','Completed','2019-03-04 21:24:37','2019-03-04 21:24:37',NULL),(508,43,1.33,'S','File Service: Mercrcedes E220D C207','Completed','2019-03-05 12:38:59','2019-03-05 12:38:59',NULL),(509,19,1.00,'A','add','Completed','2019-03-05 13:18:19','2019-03-05 13:18:19',NULL),(510,19,1.33,'S','File Service: volvo c30 2nd','Completed','2019-03-05 13:32:22','2019-03-05 13:32:22',NULL),(511,43,0.33,'S','Manual deduction. MB Adblue','Completed','2019-03-05 13:35:36','2019-03-05 13:35:36',NULL),(512,19,2.00,'A','add','Completed','2019-03-06 09:26:07','2019-03-06 09:26:07',NULL),(513,19,1.00,'S','File Service: ford connect 2nd','Completed','2019-03-06 10:06:50','2019-03-06 10:06:50',NULL),(514,19,1.00,'S','File Service: nissan x trail t31','Completed','2019-03-06 12:58:05','2019-03-06 12:58:05',NULL),(515,74,2.00,'A','Tuning credits purchase','Completed','2019-03-06 16:18:19','2019-03-06 16:18:19',NULL),(516,74,1.00,'S','File Service: FORD TRANSIT custom mk7','Completed','2019-03-06 16:26:02','2019-03-06 16:26:02',NULL),(517,74,1.00,'S','take away','Completed','2019-03-07 11:30:08','2019-03-07 11:30:08',NULL),(518,43,1.00,'S','File Service: Mazda 6 RF MK1','Completed','2019-03-07 11:38:41','2019-03-07 11:38:41',NULL),(519,19,1.00,'A','Tuning credits purchase','Completed','2019-03-08 13:45:37','2019-03-08 13:45:37',NULL),(520,19,1.00,'S','File Service: ford connect 1st','Completed','2019-03-08 13:48:50','2019-03-08 13:48:50',NULL),(521,43,1.00,'S','File Service: Seat Sport Tourer 5F8','Completed','2019-03-09 10:36:10','2019-03-09 10:36:10',NULL),(522,43,1.00,'S','File Service: Land Rover Range Rover L322','Completed','2019-03-11 12:13:05','2019-03-11 12:13:05',NULL),(523,43,1.33,'S','File Service: Peugeot 308 T9','Completed','2019-03-12 11:54:13','2019-03-12 11:54:13',NULL),(524,43,1.00,'S','File Service: Audi Q7 4L','Completed','2019-03-12 12:47:15','2019-03-12 12:47:15',NULL),(525,45,1.33,'S','File Service: VW Crafrer 2','Completed','2019-03-12 20:53:18','2019-03-12 20:53:18',NULL),(526,45,5.00,'A','add 13/03/19','Completed','2019-03-13 08:49:19','2019-03-13 08:49:19',NULL),(527,45,1.00,'S','File Service: VW Golf 7','Completed','2019-03-13 09:40:26','2019-03-13 09:40:26',NULL),(528,76,1.00,'A','Tuning credits purchase','Completed','2019-03-13 17:13:52','2019-03-13 17:13:52',NULL),(529,76,1.00,'S','File Service: transit connect 2011','Completed','2019-03-13 17:17:46','2019-03-13 17:17:46',NULL),(530,19,2.00,'A','Tuning credits purchase','Completed','2019-03-14 13:02:29','2019-03-14 13:02:29',NULL),(531,19,1.33,'S','File Service: audi a6 c6','Completed','2019-03-14 13:04:20','2019-03-14 13:04:20',NULL),(532,19,1.00,'A','Tuning credits purchase','Completed','2019-03-14 15:41:32','2019-03-14 15:41:32',NULL),(533,19,1.33,'S','File Service: skoda octavia 2nd','Completed','2019-03-14 15:43:02','2019-03-14 15:43:02',NULL),(534,19,1.00,'A','Tuning credits purchase','Completed','2019-03-15 09:34:15','2019-03-15 09:34:15',NULL),(535,19,1.00,'S','File Service: ford connect 2nd','Completed','2019-03-15 09:36:14','2019-03-15 09:36:14',NULL),(536,43,1.00,'S','File Service: Mercedes C350 W204','Completed','2019-03-16 10:50:34','2019-03-16 10:50:34',NULL),(537,43,1.00,'S','File Service: Smart Fortwo W451','Completed','2019-03-16 12:59:34','2019-03-16 12:59:34',NULL),(538,43,10.00,'A','added 16/03/19','Completed','2019-03-16 13:48:44','2019-03-16 13:48:44',NULL),(539,43,1.33,'S','File Service: Ford Kuga MK1','Completed','2019-03-16 13:54:08','2019-03-16 13:54:08',NULL),(540,45,1.00,'S','File Service: VW Transporter T5','Completed','2019-03-18 18:25:33','2019-03-18 18:25:33',NULL),(541,74,1.00,'A','Tuning credits purchase','Completed','2019-03-18 19:53:45','2019-03-18 19:53:45',NULL),(542,74,1.00,'S','File Service: vw golf mk6','Completed','2019-03-18 19:55:28','2019-03-18 19:55:28',NULL),(543,76,1.00,'A','Tuning credits purchase','Completed','2019-03-19 10:54:56','2019-03-19 10:54:56',NULL),(544,76,1.00,'S','File Service: ford focus 2012','Completed','2019-03-19 10:56:38','2019-03-19 10:56:38',NULL),(545,43,1.33,'S','File Service: Mercedes E250 W212','Completed','2019-03-19 11:54:13','2019-03-19 11:54:13',NULL),(546,76,1.00,'A','Tuning credits purchase','Completed','2019-03-19 12:06:21','2019-03-19 12:06:21',NULL),(547,45,1.00,'S','File Service: Merc E350 W212','Completed','2019-03-19 12:06:22','2019-03-19 12:06:22',NULL),(548,76,1.00,'S','File Service: renault Master 2013','Completed','2019-03-19 12:08:48','2019-03-19 12:08:48',NULL),(549,43,1.00,'S','File Service: Ford Mustang GT500','Completed','2019-03-19 13:59:54','2019-03-19 13:59:54',NULL),(550,81,1.00,'A','Tuning credits purchase','Completed','2019-03-19 16:15:29','2019-03-19 16:15:29',NULL),(551,74,1.00,'A','Tuning credits purchase','Completed','2019-03-19 18:57:12','2019-03-19 18:57:12',NULL),(552,74,1.00,'S','File Service: seat toledo na','Completed','2019-03-19 19:00:11','2019-03-19 19:00:11',NULL),(553,81,1.00,'S','File Service: audi a6 2012','Completed','2019-03-19 20:59:03','2019-03-19 20:59:03',NULL),(554,35,1.00,'A','Tuning credits purchase','Completed','2019-03-20 10:30:31','2019-03-20 10:30:31',NULL),(555,45,1.00,'S','File Service: VW Amarok 2018','Completed','2019-03-20 10:56:13','2019-03-20 10:56:13',NULL),(556,45,1.00,'S','File Service: vw Transporter t6','Completed','2019-03-20 11:04:21','2019-03-20 11:04:21',NULL),(557,45,5.00,'A','add 20/03/2019','Completed','2019-03-20 11:34:31','2019-03-20 11:34:31',NULL),(558,35,1.00,'S','File Service: ford transit df','Completed','2019-03-20 13:50:10','2019-03-20 13:50:10',NULL),(559,45,1.00,'S','File Service: Nissan Navara D23','Completed','2019-03-20 15:40:23','2019-03-20 15:40:23',NULL),(560,74,1.00,'A','Tuning credits purchase','Completed','2019-03-20 15:46:13','2019-03-20 15:46:13',NULL),(561,74,1.00,'S','File Service: BMW 325d E91','Completed','2019-03-20 15:50:56','2019-03-20 15:50:56',NULL),(562,76,1.00,'A','Tuning credits purchase','Completed','2019-03-21 09:41:16','2019-03-21 09:41:16',NULL),(563,76,1.00,'S','File Service: audi A7 2015','Completed','2019-03-21 09:43:35','2019-03-21 09:43:35',NULL),(564,76,1.00,'A','Tuning credits purchase','Completed','2019-03-21 10:01:43','2019-03-21 10:01:43',NULL),(565,76,1.00,'S','File Service: mercedes ML280 2009','Completed','2019-03-21 10:05:00','2019-03-21 10:05:00',NULL),(566,45,1.33,'S','File Service: VW Passat B6','Completed','2019-03-21 16:00:05','2019-03-21 16:00:05',NULL),(567,43,1.33,'S','File Service: Jaguar X-Type -','Completed','2019-03-21 17:29:13','2019-03-21 17:29:13',NULL),(568,43,1.00,'S','File Service: VW Passat B6','Completed','2019-03-22 16:26:44','2019-03-22 16:26:44',NULL),(569,43,1.00,'S','File Service: Mercedes E350 A207','Completed','2019-03-23 13:10:31','2019-03-23 13:10:31',NULL),(570,74,1.00,'A','Tuning credits purchase','Completed','2019-03-25 09:56:41','2019-03-25 09:56:41',NULL),(571,76,1.00,'A','Tuning credits purchase','Completed','2019-03-25 12:31:55','2019-03-25 12:31:55',NULL),(572,76,1.00,'S','File Service: citroen c4 2007','Completed','2019-03-25 12:36:06','2019-03-25 12:36:06',NULL),(573,35,2.00,'A','Tuning credits purchase','Completed','2019-03-25 13:27:31','2019-03-25 13:27:31',NULL),(574,35,1.33,'S','File Service: bmw 325 e90','Completed','2019-03-25 13:29:37','2019-03-25 13:29:37',NULL),(575,85,1.00,'A','Tuning credits purchase','Completed','2019-03-27 16:53:50','2019-03-27 16:53:50',NULL),(576,85,1.00,'S','File Service: range rover big one no idea','Completed','2019-03-27 16:56:09','2019-03-27 16:56:09',NULL),(577,35,1.00,'A','Tuning credits purchase','Completed','2019-03-28 08:48:54','2019-03-28 08:48:54',NULL),(578,35,1.00,'S','File Service: ford focus 2010','Completed','2019-03-28 08:50:23','2019-03-28 08:50:23',NULL),(579,19,1.00,'A','Tuning credits purchase','Completed','2019-03-28 12:41:36','2019-03-28 12:41:36',NULL),(580,19,1.00,'S','File Service: merc c220 cdi w204','Completed','2019-03-28 12:54:11','2019-03-28 12:54:11',NULL),(581,19,2.00,'A','Tuning credits purchase','Completed','2019-03-28 15:54:33','2019-03-28 15:54:33',NULL),(582,19,1.33,'S','File Service: vw passat b5','Completed','2019-03-28 16:02:35','2019-03-28 16:02:35',NULL),(583,36,1.00,'A','Tuning credits purchase','Completed','2019-03-29 07:20:58','2019-03-29 07:20:58',NULL),(584,19,1.00,'S','File Service: merc c63 w204','Completed','2019-03-29 09:57:35','2019-03-29 09:57:35',NULL),(585,74,1.00,'S','take away','Completed','2019-03-29 15:02:14','2019-03-29 15:02:14',NULL),(586,74,1.00,'A','Tuning credits purchase','Completed','2019-03-29 15:09:30','2019-03-29 15:09:30',NULL),(587,74,1.00,'S','File Service: BMW 1 SERIES E87','Completed','2019-03-29 15:11:43','2019-03-29 15:11:43',NULL),(588,45,1.33,'S','File Service: Ford Transit Mk7','Completed','2019-03-30 11:29:24','2019-03-30 11:29:24',NULL),(589,36,1.00,'S','File Service: Mercedes CLS 250 BLUEEFFICIENCY AMG SPORT CDI C218','Completed','2019-03-30 12:40:31','2019-03-30 12:40:31',NULL),(590,19,1.00,'S','File Service: landrover discovery 3rd','Completed','2019-04-01 08:46:47','2019-04-01 08:46:47',NULL),(591,45,1.00,'S','File Service: Audi A3 8V','Completed','2019-04-02 08:10:47','2019-04-02 08:10:47',NULL),(592,43,1.00,'S','File Service: Ford Kuga MKII','Completed','2019-04-02 08:46:35','2019-04-02 08:46:35',NULL),(594,76,1.00,'A','Tuning credits purchase','Completed','2019-04-03 07:51:20','2019-04-03 07:51:20',NULL),(595,76,1.00,'S','File Service: LANDROVER Defender td5','Completed','2019-04-03 07:54:23','2019-04-03 07:54:23',NULL),(596,19,1.00,'A','Tuning credits purchase','Completed','2019-04-03 11:35:18','2019-04-03 11:35:18',NULL),(597,19,1.00,'S','File Service: vw caddy 2k','Completed','2019-04-03 11:38:38','2019-04-03 11:38:38',NULL),(598,35,1.00,'A','Tuning credits purchase','Completed','2019-04-03 12:15:38','2019-04-03 12:15:38',NULL),(599,35,1.00,'S','File Service: volvo s60 1','Completed','2019-04-03 12:17:47','2019-04-03 12:17:47',NULL),(600,43,1.33,'S','File Service: Audi A3 Cabrio 8P','Completed','2019-04-03 12:52:01','2019-04-03 12:52:01',NULL),(601,76,1.00,'A','Tuning credits purchase','Completed','2019-04-03 13:09:53','2019-04-03 13:09:53',NULL),(602,76,1.00,'S','File Service: ford Connect 2013','Completed','2019-04-03 13:11:43','2019-04-03 13:11:43',NULL),(603,43,0.33,'S','- 0.33 for egr delete on mates audi a3','Completed','2019-04-03 13:23:15','2019-04-03 13:23:15',NULL),(604,35,1.00,'A','Tuning credits purchase','Completed','2019-04-03 14:02:14','2019-04-03 14:02:14',NULL),(605,35,1.00,'S','File Service: toyota hilux 7','Completed','2019-04-03 14:03:24','2019-04-03 14:03:24',NULL),(606,76,1.00,'A','Tuning credits purchase','Completed','2019-04-04 08:43:24','2019-04-04 08:43:24',NULL),(607,76,1.00,'S','File Service: Volkswagen transporter 2013','Completed','2019-04-04 08:46:06','2019-04-04 08:46:06',NULL),(608,19,1.00,'A','Tuning credits purchase','Completed','2019-04-05 10:40:59','2019-04-05 10:40:59',NULL),(609,19,1.00,'S','File Service: vw tiguan 1st','Completed','2019-04-05 10:47:26','2019-04-05 10:47:26',NULL),(610,35,2.00,'A','Tuning credits purchase','Completed','2019-04-05 12:53:31','2019-04-05 12:53:31',NULL),(611,35,1.00,'S','File Service: bmw 330d e46','Completed','2019-04-05 12:54:40','2019-04-05 12:54:40',NULL),(614,76,1.00,'A','free','Completed','2019-04-06 10:27:48','2019-04-06 10:27:48',NULL),(615,76,1.00,'S','File Service: eee goy 3','Completed','2019-04-06 10:28:39','2019-04-06 10:28:39',NULL),(620,70,1.00,'S','File Service: fgvdf fdvdfv dfvdf','Completed','2019-04-06 11:05:26','2019-04-06 11:05:26',NULL),(628,76,1.00,'S','take away','Completed','2019-04-06 13:40:10','2019-04-06 13:40:10',NULL),(629,85,1.00,'A','Tuning credits purchase','Completed','2019-04-08 09:08:11','2019-04-08 09:08:11',NULL),(630,85,1.00,'S','File Service: ford mondeo mk4','Completed','2019-04-08 09:09:53','2019-04-08 09:09:53',NULL),(631,19,2.00,'A','Tuning credits purchase','Completed','2019-04-08 09:17:27','2019-04-08 09:17:27',NULL),(632,19,1.00,'S','File Service: landrover freelander 2nd','Completed','2019-04-08 09:23:39','2019-04-08 09:23:39',NULL),(633,45,5.00,'A','add 08/04/19','Completed','2019-04-08 09:57:02','2019-04-08 09:57:02',NULL),(634,45,1.00,'S','File Service: Seat Leon 2012','Completed','2019-04-08 09:57:41','2019-04-08 09:57:41',NULL),(635,19,1.00,'S','File Service: toyota hilux 3.0','Completed','2019-04-08 12:30:40','2019-04-08 12:30:40',NULL),(637,76,1.00,'A','Tuning credits purchase','Completed','2019-04-09 08:48:45','2019-04-09 08:48:45',NULL),(638,76,1.00,'S','File Service: Volkswagen Transporter 2014','Completed','2019-04-09 08:51:09','2019-04-09 08:51:09',NULL),(639,76,1.00,'A','Tuning credits purchase','Completed','2019-04-09 09:19:22','2019-04-09 09:19:22',NULL),(640,76,1.00,'S','File Service: mercedes sprinter 2005','Completed','2019-04-09 09:22:03','2019-04-09 09:22:03',NULL),(641,43,10.00,'A','add 09/04/2019','Completed','2019-04-09 12:17:34','2019-04-09 12:17:34',NULL),(642,76,1.00,'S','take away','Completed','2019-04-09 12:19:10','2019-04-09 12:19:10',NULL),(643,43,1.00,'S','File Service: Peugeot 308 MKII','Completed','2019-04-09 13:17:10','2019-04-09 13:17:10',NULL),(644,85,1.00,'A','Tuning credits purchase','Completed','2019-04-09 17:39:19','2019-04-09 17:39:19',NULL),(645,85,1.00,'S','File Service: opel zaf no idea','Completed','2019-04-09 17:40:33','2019-04-09 17:40:33',NULL),(648,35,0.50,'S','File Service: audi a4 b7','Completed','2019-04-10 10:06:12','2019-04-10 10:06:12',NULL),(649,35,1.00,'A','Tuning credits purchase','Completed','2019-04-10 11:33:00','2019-04-10 11:33:00',NULL),(650,35,1.00,'A','Tuning credits purchase','Completed','2019-04-10 11:33:34','2019-04-10 11:33:34',NULL),(651,35,1.33,'S','File Service: vw golf 6','Completed','2019-04-10 11:34:59','2019-04-10 11:34:59',NULL),(652,35,1.00,'S','File Service: ford focus 2','Completed','2019-04-10 13:28:49','2019-04-10 13:28:49',NULL),(653,74,2.00,'A','Tuning credits purchase','Completed','2019-04-11 10:04:07','2019-04-11 10:04:07',NULL),(654,74,1.00,'S','File Service: FORD TRANSIT mk7','Completed','2019-04-11 10:06:51','2019-04-11 10:06:51',NULL),(655,74,1.00,'S','File Service: FORD TRANSIT CUSTOM','Completed','2019-04-11 10:20:41','2019-04-11 10:20:41',NULL),(656,29,1.00,'A','Tuning credits purchase','Completed','2019-04-11 11:44:22','2019-04-11 11:44:22',NULL),(657,29,1.00,'S','File Service: renault trafic 1','Completed','2019-04-11 11:46:52','2019-04-11 11:46:52',NULL),(658,43,1.00,'S','File Service: VW Passat B8','Completed','2019-04-12 09:15:23','2019-04-12 09:15:23',NULL),(659,43,1.00,'S','File Service: Mercedes SLK200 R171','Completed','2019-04-13 11:40:10','2019-04-13 11:40:10',NULL),(660,21,1.00,'A','Tuning credits purchase','Completed','2019-04-16 08:28:54','2019-04-16 08:28:54',NULL),(661,21,1.00,'S','File Service: audi a3 2012','Completed','2019-04-16 08:30:27','2019-04-16 08:30:27',NULL),(662,45,1.00,'S','File Service: Ford Ranger 2013','Completed','2019-04-16 12:49:30','2019-04-16 12:49:30',NULL),(663,19,1.00,'A','Tuning credits purchase','Completed','2019-04-17 11:59:07','2019-04-17 11:59:07',NULL),(664,19,1.00,'S','File Service: suuki sx4 1st','Completed','2019-04-17 12:00:46','2019-04-17 12:00:46',NULL),(665,19,1.00,'A','Tuning credits purchase','Completed','2019-04-17 12:18:01','2019-04-17 12:18:01',NULL),(666,19,1.00,'S','File Service: vw amorak 1st','Completed','2019-04-17 12:20:22','2019-04-17 12:20:22',NULL),(667,74,1.00,'S','take away','Completed','2019-04-17 19:44:04','2019-04-17 19:44:04',NULL),(668,27,1.00,'A','Tuning credits purchase','Completed','2019-04-18 09:00:43','2019-04-18 09:00:43',NULL),(669,27,1.00,'S','File Service: VW T5 5','Completed','2019-04-18 09:02:15','2019-04-18 09:02:15',NULL),(670,74,2.00,'A','Tuning credits purchase','Completed','2019-04-20 09:56:49','2019-04-20 09:56:49',NULL),(671,74,1.00,'S','File Service: vw caddy mk5','Completed','2019-04-20 10:00:21','2019-04-20 10:00:21',NULL),(672,21,1.00,'A','Tuning credits purchase','Completed','2019-04-24 07:16:02','2019-04-24 07:16:02',NULL),(673,21,1.00,'S','File Service: VOLKSWAGON CADDY 2K','Completed','2019-04-24 07:18:07','2019-04-24 07:18:07',NULL),(674,74,2.00,'A','For eis','Completed','2019-04-24 14:31:42','2019-04-24 14:31:42',NULL),(675,45,1.33,'S','File Service: VW T6 T6','Completed','2019-04-24 16:05:26','2019-04-24 16:05:26',NULL),(676,21,1.00,'A','Tuning credits purchase','Completed','2019-04-25 08:23:05','2019-04-25 08:23:05',NULL),(677,21,1.00,'S','File Service: VW POLO 6R','Completed','2019-04-25 08:24:58','2019-04-25 08:24:58',NULL),(678,19,1.00,'A','Tuning credits purchase','Completed','2019-04-25 08:36:21','2019-04-25 08:36:21',NULL),(679,19,1.00,'S','File Service: fiat ducatto 2nd','Completed','2019-04-25 08:38:26','2019-04-25 08:38:26',NULL),(680,35,1.00,'A','Tuning credits purchase','Completed','2019-04-25 11:58:46','2019-04-25 11:58:46',NULL),(681,35,1.00,'S','File Service: ford ranger 2','Completed','2019-04-25 12:01:03','2019-04-25 12:01:03',NULL),(682,74,1.00,'S','take away','Completed','2019-04-26 12:43:53','2019-04-26 12:43:53',NULL),(683,36,2.00,'A','Tuning credits purchase','Completed','2019-04-26 14:36:48','2019-04-26 14:36:48',NULL),(684,36,1.00,'S','File Service: Audi Q5 Quattro 1','Completed','2019-04-27 09:21:30','2019-04-27 09:21:30',NULL),(685,36,1.00,'S','File Service: Skoda Fabia ??','Completed','2019-04-27 09:54:09','2019-04-27 09:54:09',NULL),(686,81,1.00,'A','Tuning credits purchase','Completed','2019-04-28 08:14:15','2019-04-28 08:14:15',NULL),(687,74,1.00,'S','take away','Completed','2019-04-28 09:41:26','2019-04-28 09:41:26',NULL),(688,81,1.00,'S','File Service: renault megane 2012','Completed','2019-04-28 12:28:12','2019-04-28 12:28:12',NULL),(689,21,1.00,'A','Tuning credits purchase','Completed','2019-04-29 07:16:38','2019-04-29 07:16:38',NULL),(690,21,1.00,'S','File Service: AUDI Q7 4L','Completed','2019-04-29 07:19:22','2019-04-29 07:19:22',NULL),(691,74,1.00,'A','Tuning credits purchase','Completed','2019-04-29 09:53:12','2019-04-29 09:53:12',NULL),(692,74,1.00,'S','File Service: FORD TRANSIT OLD SHAPE T280','Completed','2019-04-29 09:57:05','2019-04-29 09:57:05',NULL),(693,19,1.00,'A','Tuning credits purchase','Completed','2019-04-29 12:49:24','2019-04-29 12:49:24',NULL),(694,19,1.00,'S','File Service: audi a3 8v','Completed','2019-04-29 12:51:01','2019-04-29 12:51:01',NULL),(695,35,1.00,'A','Tuning credits purchase','Completed','2019-04-29 16:32:04','2019-04-29 16:32:04',NULL),(696,35,1.00,'S','File Service: vauxhall corsa d','Completed','2019-04-29 16:33:40','2019-04-29 16:33:40',NULL),(697,45,1.66,'S','File Service: Seat Leon FR','Completed','2019-05-01 12:35:32','2019-05-01 12:35:32',NULL),(698,43,1.00,'S','File Service: Renault Traffic MK2','Completed','2019-05-01 13:26:47','2019-05-01 13:26:47',NULL),(699,76,1.00,'A','Tuning credits purchase','Completed','2019-05-02 07:58:05','2019-05-02 07:58:05',NULL),(700,76,1.00,'S','File Service: nissan quashqai 2012','Completed','2019-05-02 07:59:35','2019-05-02 07:59:35',NULL),(701,27,1.00,'A','Tuning credits purchase','Completed','2019-05-02 08:33:14','2019-05-02 08:33:14',NULL),(702,27,1.00,'S','File Service: ford transit mk6','Completed','2019-05-02 08:37:11','2019-05-02 08:37:11',NULL),(703,43,1.66,'S','File Service: VW Golf MKV','Completed','2019-05-02 14:00:12','2019-05-02 14:00:12',NULL),(704,19,1.00,'A','Tuning credits purchase','Completed','2019-05-02 14:13:30','2019-05-02 14:13:30',NULL),(705,19,1.00,'S','File Service: ford transit mk7','Completed','2019-05-02 14:18:53','2019-05-02 14:18:53',NULL),(706,23,1.00,'A','Tuning credits purchase','Completed','2019-05-03 08:08:58','2019-05-03 08:08:58',NULL),(707,23,1.00,'S','File Service: audi a5 2','Completed','2019-05-03 08:13:29','2019-05-03 08:13:29',NULL),(708,74,1.00,'A','Tuning credits purchase','Completed','2019-05-03 09:17:27','2019-05-03 09:17:27',NULL),(709,74,1.00,'S','File Service: land rover range rover sport dunno','Completed','2019-05-03 09:21:13','2019-05-03 09:21:13',NULL),(710,43,1.33,'S','File Service: Citroen Relay MK2','Completed','2019-05-03 10:06:56','2019-05-03 10:06:56',NULL),(711,19,1.00,'A','Tuning credits purchase','Completed','2019-05-03 13:26:47','2019-05-03 13:26:47',NULL),(712,19,1.00,'S','File Service: vw passat b7','Completed','2019-05-03 14:01:15','2019-05-03 14:01:15',NULL),(713,21,0.20,'S','Postage','Completed','2019-05-06 11:05:27','2019-05-06 11:05:27',NULL),(714,19,1.00,'S','Transporter retune','Completed','2019-05-06 11:06:44','2019-05-06 11:06:44',NULL),(715,81,1.00,'A','Tuning credits purchase','Completed','2019-05-06 17:30:00','2019-05-06 17:30:00',NULL),(716,81,1.00,'S','File Service: audi a4 2013','Completed','2019-05-06 17:55:47','2019-05-06 17:55:47',NULL),(717,19,5.00,'A','Tuning credits purchase','Completed','2019-05-08 06:43:26','2019-05-08 06:43:26',NULL),(718,19,1.00,'S','File Service: renault master 3rd','Completed','2019-05-08 06:51:08','2019-05-08 06:51:08',NULL),(719,19,1.00,'S','File Service: peugeot rc 1st','Completed','2019-05-08 07:48:32','2019-05-08 07:48:32',NULL),(720,23,1.00,'A','Tuning credits purchase','Completed','2019-05-08 08:24:34','2019-05-08 08:24:34',NULL),(721,23,1.00,'S','File Service: BMW X5 1','Completed','2019-05-08 08:29:13','2019-05-08 08:29:13',NULL),(722,19,1.00,'S','File Service: audi a3 8v','Completed','2019-05-08 11:06:21','2019-05-08 11:06:21',NULL),(723,43,1.00,'S','File Service: Mercedes E220 W212','Completed','2019-05-08 14:09:18','2019-05-08 14:09:18',NULL),(724,21,1.00,'A','Tuning credits purchase','Completed','2019-05-09 09:54:29','2019-05-09 09:54:29',NULL),(725,21,1.00,'A','Tuning credits purchase','Completed','2019-05-09 09:57:09','2019-05-09 09:57:09',NULL),(726,21,1.00,'S','File Service: AUDI Q5 2012','Completed','2019-05-09 09:58:57','2019-05-09 09:58:57',NULL),(727,45,1.00,'S','File Service: Ford Focus 3','Completed','2019-05-09 10:27:05','2019-05-09 10:27:05',NULL),(728,76,1.00,'A','Tuning credits purchase','Completed','2019-05-09 10:44:16','2019-05-09 10:44:16',NULL),(729,76,1.00,'S','File Service: vw Transporter 2011','Completed','2019-05-09 10:45:51','2019-05-09 10:45:51',NULL),(730,27,1.00,'A','Tuning credits purchase','Completed','2019-05-09 11:07:03','2019-05-09 11:07:03',NULL),(731,27,1.00,'S','File Service: VW GOLF MK5','Completed','2019-05-09 11:08:40','2019-05-09 11:08:40',NULL),(732,76,1.00,'A','Tuning credits purchase','Completed','2019-05-10 07:02:00','2019-05-10 07:02:00',NULL),(733,76,1.00,'S','File Service: vw Transporter 2011','Completed','2019-05-10 07:03:13','2019-05-10 07:03:13',NULL),(734,45,5.00,'A','10/5/19','Completed','2019-05-11 06:34:09','2019-05-11 06:34:09',NULL),(735,19,1.00,'S','File Service: landrover rr sport 1st','Completed','2019-05-11 07:40:56','2019-05-11 07:40:56',NULL),(736,45,1.00,'S','File Service: Mercedes Sprinter 906','Completed','2019-05-11 07:42:21','2019-05-11 07:42:21',NULL),(737,81,1.00,'A','Tuning credits purchase','Completed','2019-05-11 08:21:16','2019-05-11 08:21:16',NULL),(738,81,1.00,'S','File Service: sabb 93ttid 2008','Completed','2019-05-11 08:29:31','2019-05-11 08:29:31',NULL),(739,45,1.00,'S','File Service: Mercedes Sprinter 906','Completed','2019-05-11 08:53:50','2019-05-11 08:53:50',NULL),(740,19,2.00,'A','Tuning credits purchase','Completed','2019-05-13 09:29:56','2019-05-13 09:29:56',NULL),(741,19,1.00,'S','File Service: ford moneo 4th','Completed','2019-05-13 09:31:09','2019-05-13 09:31:09',NULL),(742,45,1.00,'S','File Service: Seat Leon 2011','Completed','2019-05-13 09:49:02','2019-05-13 09:49:02',NULL),(743,45,1.00,'S','File Service: Mercedes vito 113','Completed','2019-05-13 14:10:59','2019-05-13 14:10:59',NULL),(744,19,1.00,'S','File Service: land rover disco 3','Completed','2019-05-14 10:25:17','2019-05-14 10:25:17',NULL),(745,43,1.33,'S','File Service: vauxhall Vivaro MK3','Completed','2019-05-14 12:07:20','2019-05-14 12:07:20',NULL),(746,19,1.00,'A','Tuning credits purchase','Completed','2019-05-15 13:21:48','2019-05-15 13:21:48',NULL),(747,19,1.00,'S','File Service: merc c63 1st','Completed','2019-05-15 13:24:09','2019-05-15 13:24:09',NULL),(748,43,1.00,'S','File Service: Fiat Ducato MK3','Completed','2019-05-15 13:32:43','2019-05-15 13:32:43',NULL),(749,43,10.00,'A','add 15/05/2019','Completed','2019-05-15 15:57:50','2019-05-15 15:57:50',NULL),(750,43,1.33,'S','File Service: RangeRover Evogue MK1','Completed','2019-05-15 16:00:30','2019-05-15 16:00:30',NULL),(751,76,1.00,'A','Tuning credits purchase','Completed','2019-05-16 07:17:07','2019-05-16 07:17:07',NULL),(752,76,1.00,'S','File Service: vw Transporter 2012','Completed','2019-05-16 07:19:09','2019-05-16 07:19:09',NULL),(753,19,2.00,'A','Tuning credits purchase','Completed','2019-05-16 08:29:18','2019-05-16 08:29:18',NULL),(754,19,1.33,'S','File Service: landrover sport 1st','Completed','2019-05-16 08:34:27','2019-05-16 08:34:27',NULL),(755,19,1.00,'A','Tuning credits purchase','Completed','2019-05-16 09:01:17','2019-05-16 09:01:17',NULL),(756,19,1.00,'A','Tuning credits purchase','Completed','2019-05-16 09:02:32','2019-05-16 09:02:32',NULL),(757,45,1.33,'S','File Service: Audi A3 8P','Completed','2019-05-16 09:17:20','2019-05-16 09:17:20',NULL),(758,19,1.33,'S','File Service: ford cmax 1st','Completed','2019-05-16 09:22:15','2019-05-16 09:22:15',NULL),(759,43,1.00,'S','File Service: Peugeot Boxer MK2','Completed','2019-05-16 12:09:37','2019-05-16 12:09:37',NULL),(760,85,1.00,'A','Tuning credits purchase','Completed','2019-05-16 14:22:19','2019-05-16 14:22:19',NULL),(761,85,1.00,'S','File Service: bmw 7 series DONT KNOW','Completed','2019-05-16 14:23:54','2019-05-16 14:23:54',NULL),(762,45,5.00,'A','add 17/05/2019','Completed','2019-05-17 11:56:03','2019-05-17 11:56:03',NULL),(763,35,1.00,'A','Tuning credits purchase','Completed','2019-05-17 15:20:47','2019-05-17 15:20:47',NULL),(764,35,1.33,'S','File Service: bmw 320d e93','Completed','2019-05-17 15:23:07','2019-05-17 15:23:07',NULL),(765,76,1.00,'A','Tuning credits purchase','Completed','2019-05-19 14:14:43','2019-05-19 14:14:43',NULL),(766,76,1.00,'S','File Service: iveco daily 2013','Completed','2019-05-19 14:28:34','2019-05-19 14:28:34',NULL),(767,35,2.00,'A','Tuning credits purchase','Completed','2019-05-20 12:47:16','2019-05-20 12:47:16',NULL),(768,35,1.66,'S','File Service: mini mini r56','Completed','2019-05-20 12:48:49','2019-05-20 12:48:49',NULL),(769,81,1.00,'A','Tuning credits purchase','Completed','2019-05-20 14:29:16','2019-05-20 14:29:16',NULL),(770,46,1.00,'A','Tuning credits purchase','Completed','2019-05-20 15:32:34','2019-05-20 15:32:34',NULL),(771,46,1.00,'S','File Service: CITROEN C4 1ST','Completed','2019-05-20 15:37:36','2019-05-20 15:37:36',NULL),(772,81,1.00,'S','File Service: AUDI S3 2012','Completed','2019-05-20 16:09:49','2019-05-20 16:09:49',NULL),(773,45,1.33,'S','File Service: Izusu DMAX 2','Completed','2019-05-21 07:14:06','2019-05-21 07:14:06',NULL),(774,85,1.00,'A','Tuning credits purchase','Completed','2019-05-21 10:30:17','2019-05-21 10:30:17',NULL),(775,43,1.33,'S','File Service: VW PASSAT 3C','Completed','2019-05-21 10:30:54','2019-05-21 10:30:54',NULL),(776,85,1.00,'S','File Service: jag xe dont know','Completed','2019-05-21 10:31:51','2019-05-21 10:31:51',NULL),(777,19,1.00,'S','File Service: ford transit mk7','Completed','2019-05-21 14:46:46','2019-05-21 14:46:46',NULL),(778,19,1.00,'A','Tuning credits purchase','Completed','2019-05-22 12:08:03','2019-05-22 12:08:03',NULL),(779,19,1.00,'S','File Service: ford ranger 2nd','Completed','2019-05-22 12:21:03','2019-05-22 12:21:03',NULL),(780,24,1.00,'A','Tuning credits purchase','Completed','2019-05-22 15:53:32','2019-05-22 15:53:32',NULL),(781,24,1.33,'S','File Service: MERC SPRINTER 313','Completed','2019-05-22 15:57:48','2019-05-22 15:57:48',NULL),(782,76,1.00,'A','Tuning credits purchase','Completed','2019-05-23 08:04:17','2019-05-23 08:04:17',NULL),(783,76,1.00,'S','File Service: VW T6 2017','Completed','2019-05-23 08:06:50','2019-05-23 08:06:50',NULL),(784,24,1.00,'A','Tuning credits purchase','Completed','2019-05-23 11:04:38','2019-05-23 11:04:38',NULL),(785,24,1.33,'S','File Service: Merc e class 212','Completed','2019-05-23 11:08:08','2019-05-23 11:08:08',NULL),(786,19,1.00,'A','Tuning credits purchase','Completed','2019-05-24 11:06:05','2019-05-24 11:06:05',NULL),(787,19,1.00,'S','File Service: landrover range rover l322','Completed','2019-05-24 11:15:21','2019-05-24 11:15:21',NULL),(788,19,0.33,'S','DTC TDV8','Completed','2019-05-24 12:07:36','2019-05-24 12:07:36',NULL),(789,43,1.33,'S','File Service: Ford Transit TT9','Completed','2019-05-25 08:32:40','2019-05-25 08:32:40',NULL),(790,43,1.50,'S','File Service: MINI JCW R58','Completed','2019-05-25 11:10:52','2019-05-25 11:10:52',NULL),(794,76,1.00,'A','Tuning credits purchase','Completed','2019-05-29 08:10:40','2019-05-29 08:10:40',NULL),(795,76,1.00,'S','File Service: landrover discovery td5','Completed','2019-05-29 08:14:33','2019-05-29 08:14:33',NULL),(797,19,1.00,'A','Tuning credits purchase','Completed','2019-05-29 13:46:36','2019-05-29 13:46:36',NULL),(798,19,1.00,'S','File Service: citroen cactus 1st','Completed','2019-05-29 13:55:35','2019-05-29 13:55:35',NULL),(799,84,1.00,'S','File Service: vauxhall vivaro p2','Completed','2019-05-29 16:02:30','2019-05-29 16:02:30',NULL),(800,35,1.00,'A','Tuning credits purchase','Completed','2019-05-30 08:25:02','2019-05-30 08:25:02',NULL),(801,19,1.00,'A','Tuning credits purchase','Completed','2019-05-30 09:53:43','2019-05-30 09:53:43',NULL),(802,19,1.00,'S','File Service: merc c220d w205','Completed','2019-05-30 10:07:09','2019-05-30 10:07:09',NULL),(803,21,1.00,'A','Tuning credits purchase','Completed','2019-05-30 11:03:06','2019-05-30 11:03:06',NULL),(804,21,1.00,'S','File Service: SEAT LEON FR 2010','Completed','2019-05-30 11:05:11','2019-05-30 11:05:11',NULL),(805,35,1.00,'S','File Service: vw Caddy 6th','Completed','2019-05-30 12:21:47','2019-05-30 12:21:47',NULL),(806,35,1.66,'S','File Service: vw caddy 5','Completed','2019-05-30 12:24:52','2019-05-30 12:24:52',NULL),(807,85,1.00,'A','Tuning credits purchase','Completed','2019-05-30 15:41:53','2019-05-30 15:41:53',NULL),(808,85,1.00,'S','File Service: ford ranger dont know','Completed','2019-05-30 15:43:35','2019-05-30 15:43:35',NULL),(809,21,1.00,'A','Tuning credits purchase','Completed','2019-05-31 07:41:07','2019-05-31 07:41:07',NULL),(810,21,1.00,'S','File Service: AUDI TT 2010','Completed','2019-05-31 07:43:32','2019-05-31 07:43:32',NULL),(811,43,1.00,'S','File Service: VW Golf MK6','Completed','2019-06-01 09:34:08','2019-06-01 09:34:08',NULL),(812,19,1.00,'A','Tuning credits purchase','Completed','2019-06-03 12:31:18','2019-06-03 12:31:18',NULL),(813,19,1.00,'S','File Service: citroen berlingo 1st','Completed','2019-06-03 12:37:03','2019-06-03 12:37:03',NULL),(814,45,1.00,'S','File Service: VW Caddy 2017','Completed','2019-06-03 15:04:42','2019-06-03 15:04:42',NULL),(815,76,1.00,'A','Tuning credits purchase','Completed','2019-06-04 10:00:20','2019-06-04 10:00:20',NULL),(816,76,1.00,'S','File Service: bmw 535 2006','Completed','2019-06-04 10:03:39','2019-06-04 10:03:39',NULL),(817,19,2.00,'A','Tuning credits purchase','Completed','2019-06-05 06:22:10','2019-06-05 06:22:10',NULL),(818,19,1.66,'S','File Service: vw t5.1 5.1','Completed','2019-06-05 06:27:24','2019-06-05 06:27:24',NULL),(819,45,1.00,'S','File Service: Vauxhall Astra J','Completed','2019-06-05 08:13:48','2019-06-05 08:13:48',NULL),(820,76,1.00,'A','Tuning credits purchase','Completed','2019-06-06 07:13:10','2019-06-06 07:13:10',NULL),(821,45,1.33,'S','File Service: renault kangoo 2','Completed','2019-06-06 10:22:53','2019-06-06 10:22:53',NULL),(822,24,2.00,'A','Tuning credits purchase','Completed','2019-06-06 11:29:14','2019-06-06 11:29:14',NULL),(823,24,1.33,'S','File Service: ford focus st 2','Completed','2019-06-06 11:38:01','2019-06-06 11:38:01',NULL),(824,24,1.00,'A','Tuning credits purchase','Completed','2019-06-06 11:38:29','2019-06-06 11:38:29',NULL),(825,24,1.00,'S','File Service: tiguan vw q','Completed','2019-06-06 11:40:17','2019-06-06 11:40:17',NULL),(826,19,1.00,'A','Tuning credits purchase','Completed','2019-06-06 13:29:58','2019-06-06 13:29:58',NULL),(827,19,1.33,'S','File Service: ford connect 2nd','Completed','2019-06-06 13:34:43','2019-06-06 13:34:43',NULL),(828,76,1.00,'S','File Service: vw crafter 2011','Completed','2019-06-07 07:36:24','2019-06-07 07:36:24',NULL),(829,76,1.00,'A','Tuning credits purchase','Completed','2019-06-07 07:40:53','2019-06-07 07:40:53',NULL),(830,76,1.00,'S','take away','Completed','2019-06-07 08:27:54','2019-06-07 08:27:54',NULL),(831,94,2.00,'A','Tuning credits purchase','Completed','2019-06-07 11:44:17','2019-06-07 11:44:17',NULL),(832,19,1.00,'A','Tuning credits purchase','Completed','2019-06-07 11:56:44','2019-06-07 11:56:44',NULL),(833,19,1.00,'S','File Service: citroen ds4 2nd','Completed','2019-06-07 11:59:11','2019-06-07 11:59:11',NULL),(834,19,1.00,'A','Tuning credits purchase','Completed','2019-06-10 09:42:47','2019-06-10 09:42:47',NULL),(835,19,1.00,'S','File Service: audi a4 b7','Completed','2019-06-10 09:45:22','2019-06-10 09:45:22',NULL),(836,19,1.00,'A','Tuning credits purchase','Completed','2019-06-10 11:54:14','2019-06-10 11:54:14',NULL),(837,94,1.00,'S','File Service: ford ranger t6','Completed','2019-06-10 12:07:48','2019-06-10 12:07:48',NULL),(838,19,1.33,'S','File Service: bmw 118 e82','Completed','2019-06-10 12:16:25','2019-06-10 12:16:25',NULL),(839,45,5.00,'A','add 12/06/19','Completed','2019-06-12 08:49:26','2019-06-12 08:49:26',NULL),(840,45,1.33,'S','File Service: VW Scirocco 2009','Completed','2019-06-12 08:52:48','2019-06-12 08:52:48',NULL),(841,19,1.00,'A','Tuning credits purchase','Completed','2019-06-13 07:55:09','2019-06-13 07:55:09',NULL),(842,76,1.00,'A','Tuning credits purchase','Completed','2019-06-13 07:59:26','2019-06-13 07:59:26',NULL),(843,76,1.00,'S','File Service: ford ranger 2012','Completed','2019-06-13 08:01:07','2019-06-13 08:01:07',NULL),(844,19,1.00,'S','File Service: vauxhall corsa d d','Completed','2019-06-13 08:07:46','2019-06-13 08:07:46',NULL),(845,76,1.00,'A','Tuning credits purchase','Completed','2019-06-13 08:44:01','2019-06-13 08:44:01',NULL),(846,76,1.00,'S','File Service: vw Transporter t5','Completed','2019-06-13 08:45:37','2019-06-13 08:45:37',NULL),(847,23,1.00,'A','Tuning credits purchase','Completed','2019-06-13 11:54:13','2019-06-13 11:54:13',NULL),(848,23,1.00,'S','File Service: ford transit mk7','Completed','2019-06-13 11:59:14','2019-06-13 11:59:14',NULL),(849,19,1.00,'A','Tuning credits purchase','Completed','2019-06-14 11:57:07','2019-06-14 11:57:07',NULL),(850,19,1.00,'S','File Service: skoda fabia vrs 2nd','Completed','2019-06-14 11:58:45','2019-06-14 11:58:45',NULL),(851,76,1.00,'A','Tuning credits purchase','Completed','2019-06-14 12:03:37','2019-06-14 12:03:37',NULL),(852,76,1.00,'S','File Service: bmw 320 f31 2012','Completed','2019-06-14 12:05:20','2019-06-14 12:05:20',NULL),(853,19,1.00,'A','Tuning credits purchase','Completed','2019-06-14 12:26:45','2019-06-14 12:26:45',NULL),(854,19,1.00,'S','File Service: fiat doblo 263','Completed','2019-06-14 12:37:30','2019-06-14 12:37:30',NULL),(855,43,1.66,'S','File Service: Ford Focus MKII','Completed','2019-06-14 12:46:46','2019-06-14 12:46:46',NULL),(856,39,1.00,'A','Tuning credits purchase','Completed','2019-06-14 13:44:32','2019-06-14 13:44:32',NULL),(857,39,1.00,'S','File Service: volvo v50 1','Completed','2019-06-14 14:01:10','2019-06-14 14:01:10',NULL),(858,74,1.00,'A','Tuning credits purchase','Completed','2019-06-19 09:26:46','2019-06-19 09:26:46',NULL),(859,74,1.00,'S','File Service: BMW 1 SERIES E87','Completed','2019-06-19 09:28:25','2019-06-19 09:28:25',NULL),(860,85,1.00,'A','Tuning credits purchase','Completed','2019-06-19 12:51:37','2019-06-19 12:51:37',NULL),(861,85,1.00,'S','File Service: ford kuga dont know','Completed','2019-06-19 12:53:02','2019-06-19 12:53:02',NULL),(862,81,1.00,'S','File Service: bmw 330d 2013','Completed','2019-06-19 14:06:06','2019-06-19 14:06:06',NULL),(863,76,1.00,'A','Tuning credits purchase','Completed','2019-06-19 15:01:54','2019-06-19 15:01:54',NULL),(864,76,1.00,'S','File Service: fiat ducato 1','Completed','2019-06-19 15:05:34','2019-06-19 15:05:34',NULL),(865,27,1.00,'A','Tuning credits purchase','Completed','2019-06-20 10:20:10','2019-06-20 10:20:10',NULL),(866,27,1.00,'S','File Service: AUDI A6 MK2','Completed','2019-06-20 10:22:26','2019-06-20 10:22:26',NULL),(868,19,1.00,'A','Tuning credits purchase','Completed','2019-06-21 09:28:36','2019-06-21 09:28:36',NULL),(869,19,1.33,'S','File Service: vw polo 6','Completed','2019-06-21 09:30:30','2019-06-21 09:30:30',NULL),(870,27,1.00,'A','Tuning credits purchase','Completed','2019-06-21 10:13:14','2019-06-21 10:13:14',NULL),(871,21,1.00,'A','Tuning credits purchase','Completed','2019-06-21 10:22:10','2019-06-21 10:22:10',NULL),(872,21,1.50,'S','File Service: RENAULT SCENIC 2005','Completed','2019-06-21 10:24:59','2019-06-21 10:24:59',NULL),(873,27,1.00,'S','File Service: MERCEDES SPRINTER 651.955','Completed','2019-06-21 10:48:39','2019-06-21 10:48:39',NULL),(874,19,1.00,'A','Tuning credits purchase','Completed','2019-06-25 06:43:56','2019-06-25 06:43:56',NULL),(875,19,1.00,'S','File Service: landrover freelander 2nd','Completed','2019-06-25 06:49:30','2019-06-25 06:49:30',NULL),(876,76,1.00,'A','Tuning credits purchase','Completed','2019-06-25 08:00:20','2019-06-25 08:00:20',NULL),(877,76,1.00,'S','File Service: kia sportage 2007','Completed','2019-06-25 08:01:55','2019-06-25 08:01:55',NULL),(878,45,1.00,'S','File Service: vw Caddy 2016','Completed','2019-06-26 07:09:53','2019-06-26 07:09:53',NULL),(879,19,1.00,'A','Tuning credits purchase','Completed','2019-06-26 13:10:16','2019-06-26 13:10:16',NULL),(880,19,1.00,'A','Tuning credits purchase','Completed','2019-06-26 13:15:33','2019-06-26 13:15:33',NULL),(881,19,1.50,'S','File Service: mini jcw r56','Completed','2019-06-26 13:17:12','2019-06-26 13:17:12',NULL),(882,43,1.00,'S','File Service: Vauxhall Insignia MK1','Completed','2019-06-26 15:41:57','2019-06-26 15:41:57',NULL),(883,19,1.00,'A','Tuning credits purchase','Completed','2019-06-27 10:25:37','2019-06-27 10:25:37',NULL),(884,19,1.00,'S','File Service: fiat doblo 263','Completed','2019-06-27 10:33:15','2019-06-27 10:33:15',NULL),(885,76,1.00,'A','Tuning credits purchase','Completed','2019-06-27 11:33:27','2019-06-27 11:33:27',NULL),(886,76,1.00,'S','File Service: ford Connect 2012','Completed','2019-06-27 11:36:12','2019-06-27 11:36:12',NULL),(887,23,1.00,'A','Tuning credits purchase','Completed','2019-06-27 12:03:44','2019-06-27 12:03:44',NULL),(888,23,1.00,'S','File Service: skoda octavia 2','Completed','2019-06-27 12:06:29','2019-06-27 12:06:29',NULL),(889,35,1.00,'A','Tuning credits purchase','Completed','2019-06-28 08:58:27','2019-06-28 08:58:27',NULL),(890,35,1.00,'S','File Service: ford focus 2','Completed','2019-06-28 08:59:45','2019-06-28 08:59:45',NULL),(891,19,1.00,'A','Tuning credits purchase','Completed','2019-06-28 09:57:45','2019-06-28 09:57:45',NULL),(892,19,1.00,'S','File Service: citroen relay u9 euro5','Completed','2019-06-28 10:00:04','2019-06-28 10:00:04',NULL),(893,76,1.00,'A','Tuning credits purchase','Completed','2019-06-28 10:57:19','2019-06-28 10:57:19',NULL),(894,35,1.00,'A','gesture, focus st','Completed','2019-06-28 12:17:03','2019-06-28 12:17:03',NULL),(895,27,1.00,'A','Tuning credits purchase','Completed','2019-06-28 13:36:43','2019-06-28 13:36:43',NULL),(896,27,1.33,'S','File Service: VW GOLF MK5','Completed','2019-06-28 13:45:00','2019-06-28 13:45:00',NULL),(897,45,1.00,'S','File Service: Audi TT 2012','Completed','2019-06-29 08:23:50','2019-06-29 08:23:50',NULL),(900,76,1.00,'S','take away','Completed','2019-07-01 12:53:37','2019-07-01 12:53:37',NULL),(901,43,10.00,'A','Add 01/07/19','Completed','2019-07-01 18:04:46','2019-07-01 18:04:46',NULL),(902,43,1.66,'S','File Service: Vauxhall Vivaro MK1','Completed','2019-07-01 18:19:25','2019-07-01 18:19:25',NULL),(903,45,1.00,'S','File Service: Mini Cooper S R53','Completed','2019-07-03 07:38:19','2019-07-03 07:38:19',NULL),(904,43,1.66,'S','File Service: Peugeot 308 T9','Completed','2019-07-03 08:55:55','2019-07-03 08:55:55',NULL),(905,43,1.00,'S','File Service: BMW 1 series F21','Completed','2019-07-03 09:12:15','2019-07-03 09:12:15',NULL),(906,45,1.33,'S','File Service: Lexus IS220 2007','Completed','2019-07-03 12:00:59','2019-07-03 12:00:59',NULL),(907,23,1.00,'A','Tuning credits purchase','Completed','2019-07-04 11:59:14','2019-07-04 11:59:14',NULL),(908,23,1.00,'S','File Service: VW BEETLE 3','Completed','2019-07-04 12:02:53','2019-07-04 12:02:53',NULL),(909,76,1.00,'A','Tuning credits purchase','Completed','2019-07-04 13:07:42','2019-07-04 13:07:42',NULL),(910,76,1.00,'S','File Service: vw golf 5','Completed','2019-07-04 13:13:33','2019-07-04 13:13:33',NULL),(911,19,1.00,'A','Tuning credits purchase','Completed','2019-07-04 13:18:15','2019-07-04 13:18:15',NULL),(912,19,1.00,'S','File Service: vw passat 3b','Completed','2019-07-04 13:32:44','2019-07-04 13:32:44',NULL),(914,100,5.00,'A','5 free files','Completed','2019-07-05 13:00:03','2019-07-05 13:00:03',NULL),(915,100,1.00,'S','File Service: Ford Custom 2014','Completed','2019-07-05 13:51:27','2019-07-05 13:51:27',NULL),(917,85,1.00,'A','Tuning credits purchase','Completed','2019-07-08 11:45:57','2019-07-08 11:45:57',NULL),(918,85,1.00,'S','File Service: ford focus dont know','Completed','2019-07-08 11:47:39','2019-07-08 11:47:39',NULL),(919,43,1.33,'S','File Service: Test test test','Completed','2019-07-08 11:58:10','2019-07-08 11:58:10',NULL),(920,100,1.00,'S','File Service: vw transporter 2011','Completed','2019-07-09 13:33:18','2019-07-09 13:33:18',NULL),(921,19,1.00,'A','Tuning credits purchase','Completed','2019-07-09 14:25:11','2019-07-09 14:25:11',NULL),(922,100,1.00,'S','File Service: ford transit 2010','Completed','2019-07-09 17:15:25','2019-07-09 17:15:25',NULL),(923,19,1.00,'S','File Service: ford kuga 1st','Completed','2019-07-10 07:07:26','2019-07-10 07:07:26',NULL),(924,19,1.00,'A','Tuning credits purchase','Completed','2019-07-10 11:29:41','2019-07-10 11:29:41',NULL),(925,19,1.00,'S','File Service: audi a6 c6','Completed','2019-07-10 11:32:33','2019-07-10 11:32:33',NULL),(926,100,1.00,'S','File Service: Audi a4 2008','Completed','2019-07-10 17:28:07','2019-07-10 17:28:07',NULL),(927,100,1.00,'S','File Service: mercedes c220cla 2014','Completed','2019-07-10 19:14:45','2019-07-10 19:14:45',NULL),(928,19,1.00,'A','Tuning credits purchase','Completed','2019-07-11 06:54:20','2019-07-11 06:54:20',NULL),(929,19,1.00,'S','File Service: audi a4 b9','Completed','2019-07-11 06:57:00','2019-07-11 06:57:00',NULL),(930,76,1.00,'A','Tuning credits purchase','Completed','2019-07-11 10:13:17','2019-07-11 10:13:17',NULL),(931,76,1.00,'S','File Service: jag xfr 2015','Completed','2019-07-11 10:14:42','2019-07-11 10:14:42',NULL),(932,43,1.00,'S','File Service: Mercedes A200D AMG 7G-DCT W176','Completed','2019-07-11 10:21:46','2019-07-11 10:21:46',NULL),(933,85,1.00,'A','Tuning credits purchase','Completed','2019-07-11 10:54:18','2019-07-11 10:54:18',NULL),(934,85,1.00,'S','File Service: vw tiguan dont know','Completed','2019-07-11 10:55:49','2019-07-11 10:55:49',NULL),(935,98,2.00,'A','Tuning credits purchase','Completed','2019-07-11 11:39:46','2019-07-11 11:39:46',NULL),(936,98,1.66,'S','File Service: Audi Q7 2006','Completed','2019-07-11 11:56:22','2019-07-11 11:56:22',NULL),(937,100,10.00,'A','10 files','Completed','2019-07-11 12:41:04','2019-07-11 12:41:04',NULL),(938,43,2.00,'S','File Service: BMW M4 F82','Completed','2019-07-11 16:13:51','2019-07-11 16:13:51',NULL),(939,100,1.00,'S','File Service: ford transit 2010','Completed','2019-07-11 17:07:30','2019-07-11 17:07:30',NULL),(940,27,2.00,'A','Tuning credits purchase','Completed','2019-07-12 09:26:37','2019-07-12 09:26:37',NULL),(941,27,1.33,'S','File Service: AUDI A3 8P','Completed','2019-07-12 09:37:44','2019-07-12 09:37:44',NULL),(942,43,1.00,'S','File Service: Mercedes GLC C253','Completed','2019-07-12 14:26:54','2019-07-12 14:26:54',NULL),(943,43,1.00,'S','File Service: Ford Transit Connect MK2','Completed','2019-07-12 16:02:03','2019-07-12 16:02:03',NULL),(944,100,1.00,'S','File Service: mercedes vito 2012','Completed','2019-07-13 17:56:32','2019-07-13 17:56:32',NULL),(945,100,1.00,'S','File Service: vw transporter 2014','Completed','2019-07-14 17:03:32','2019-07-14 17:03:32',NULL),(947,19,1.00,'A','Tuning credits purchase','Completed','2019-07-15 10:24:05','2019-07-15 10:24:05',NULL),(948,19,1.00,'S','File Service: vw golf 6','Completed','2019-07-15 10:26:19','2019-07-15 10:26:19',NULL),(949,19,1.00,'A','Tuning credits purchase','Completed','2019-07-15 12:31:50','2019-07-15 12:31:50',NULL),(950,19,1.00,'S','File Service: landrover freelander 2nd','Completed','2019-07-15 12:34:11','2019-07-15 12:34:11',NULL),(951,19,0.33,'S','File Service: skoda yet 1','Completed','2019-07-15 14:38:23','2019-07-15 14:38:23',NULL),(952,43,1.33,'S','File Service: VW Scirocco MKII','Completed','2019-07-15 16:08:03','2019-07-15 16:08:03',NULL),(953,100,1.00,'S','File Service: ford ranger 2018','Completed','2019-07-15 17:53:54','2019-07-15 17:53:54',NULL),(954,43,1.33,'S','EXTRA FOR SCIROCCO POPS','Completed','2019-07-15 18:04:16','2019-07-15 18:04:16',NULL),(955,76,1.00,'A','Tuning credits purchase','Completed','2019-07-16 07:07:40','2019-07-16 07:07:40',NULL),(956,76,1.00,'S','File Service: ford cuastom 2014','Completed','2019-07-16 07:08:59','2019-07-16 07:08:59',NULL),(957,19,1.00,'A','Tuning credits purchase','Completed','2019-07-16 08:14:15','2019-07-16 08:14:15',NULL),(958,19,1.00,'S','File Service: bmw 320d e90','Completed','2019-07-16 08:18:28','2019-07-16 08:18:28',NULL),(959,100,1.00,'S','File Service: ford Custom 2014','Completed','2019-07-16 10:14:13','2019-07-16 10:14:13',NULL),(960,100,1.00,'S','File Service: ford Custom 2015','Completed','2019-07-16 10:27:31','2019-07-16 10:27:31',NULL),(961,76,1.00,'A','Tuning credits purchase','Completed','2019-07-16 10:52:01','2019-07-16 10:52:01',NULL),(962,76,1.00,'S','File Service: audi tt mk1 225','Completed','2019-07-16 10:54:39','2019-07-16 10:54:39',NULL),(963,27,1.00,'A','Tuning credits purchase','Completed','2019-07-16 12:08:55','2019-07-16 12:08:55',NULL),(964,27,1.00,'S','File Service: SKODA SUPERB MK2','Completed','2019-07-16 12:10:47','2019-07-16 12:10:47',NULL),(965,24,1.00,'A','Tuning credits purchase','Completed','2019-07-16 13:19:55','2019-07-16 13:19:55',NULL),(966,24,1.00,'S','File Service: merc gla 1','Completed','2019-07-16 13:21:19','2019-07-16 13:21:19',NULL),(967,43,10.00,'A','add 17/07/2019','Completed','2019-07-17 09:26:48','2019-07-17 09:26:48',NULL),(968,100,1.00,'S','File Service: vw golf 2011','Completed','2019-07-17 09:42:22','2019-07-17 09:42:22',NULL),(969,43,1.33,'S','File Service: Mercedes Sprinter 313','Completed','2019-07-17 12:28:46','2019-07-17 12:28:46',NULL),(970,43,1.00,'S','File Service: Audi A6 C7','Completed','2019-07-17 15:27:54','2019-07-17 15:27:54',NULL),(971,76,1.00,'A','Tuning credits purchase','Completed','2019-07-18 07:03:14','2019-07-18 07:03:14',NULL),(972,76,1.00,'S','File Service: FORD TRANSIT 2012','Completed','2019-07-18 07:05:37','2019-07-18 07:05:37',NULL),(973,76,1.00,'A','Tuning credits purchase','Completed','2019-07-18 11:02:52','2019-07-18 11:02:52',NULL),(974,76,1.00,'S','File Service: FORD cuastom 2014','Completed','2019-07-18 11:05:39','2019-07-18 11:05:39',NULL),(975,74,1.00,'A','Tuning credits purchase','Completed','2019-07-19 08:35:18','2019-07-19 08:35:18',NULL),(976,74,1.00,'S','File Service: FORD TRANSIT custom CUSTOM','Completed','2019-07-19 08:37:47','2019-07-19 08:37:47',NULL),(977,100,1.00,'S','File Service: vw golf 2017','Completed','2019-07-19 09:09:49','2019-07-19 09:09:49',NULL),(978,43,1.00,'S','File Service: VW Crafter MKII','Completed','2019-07-19 11:11:50','2019-07-19 11:11:50',NULL),(979,76,1.00,'A','Tuning credits purchase','Completed','2019-07-19 16:10:26','2019-07-19 16:10:26',NULL),(980,76,1.00,'S','File Service: Ford Fiesta ST 6','Completed','2019-07-19 16:12:27','2019-07-19 16:12:27',NULL),(981,100,1.00,'S','File Service: ford fiesta 2012','Completed','2019-07-21 08:42:21','2019-07-21 08:42:21',NULL),(982,100,1.00,'S','File Service: audi a4 2011','Completed','2019-07-21 13:27:04','2019-07-21 13:27:04',NULL),(983,100,10.00,'A','10 files','Completed','2019-07-22 07:39:15','2019-07-22 07:39:15',NULL),(984,100,1.00,'S','File Service: skoda OCTAVIA VRS 2009','Completed','2019-07-22 13:57:41','2019-07-22 13:57:41',NULL),(985,76,1.00,'A','Tuning credits purchase','Completed','2019-07-23 07:12:33','2019-07-23 07:12:33',NULL),(986,76,1.00,'S','File Service: FORD Mondeo 2010','Completed','2019-07-23 07:15:06','2019-07-23 07:15:06',NULL),(987,19,1.00,'A','Tuning credits purchase','Completed','2019-07-23 07:32:05','2019-07-23 07:32:05',NULL),(988,19,1.00,'S','File Service: INFINITY q30 1st','Completed','2019-07-23 07:46:26','2019-07-23 07:46:26',NULL),(989,76,1.00,'A','Tuning credits purchase','Completed','2019-07-23 10:52:03','2019-07-23 10:52:03',NULL),(990,76,1.00,'S','File Service: VW PASSAT 2008','Completed','2019-07-23 10:55:14','2019-07-23 10:55:14',NULL),(991,100,1.00,'S','File Service: seat leon 2007','Completed','2019-07-23 11:17:32','2019-07-23 11:17:32',NULL),(992,19,1.00,'A','Tuning credits purchase','Completed','2019-07-23 11:32:52','2019-07-23 11:32:52',NULL),(993,19,1.00,'S','File Service: ford transit mk7 euro5','Completed','2019-07-23 11:35:10','2019-07-23 11:35:10',NULL),(994,100,1.00,'S','File Service: ford transit 2009','Completed','2019-07-23 12:19:15','2019-07-23 12:19:15',NULL),(995,39,1.00,'A','Tuning credits purchase','Completed','2019-07-23 14:32:24','2019-07-23 14:32:24',NULL),(996,39,1.00,'S','File Service: vw tiguan 1','Completed','2019-07-23 14:34:52','2019-07-23 14:34:52',NULL),(997,19,1.00,'A','Tuning credits purchase','Completed','2019-07-24 06:33:10','2019-07-24 06:33:10',NULL),(998,19,1.00,'S','File Service: ford connect 2nd','Completed','2019-07-24 06:36:40','2019-07-24 06:36:40',NULL),(999,43,1.00,'S','File Service: Vauxhall Astra K','Completed','2019-07-24 10:29:01','2019-07-24 10:29:01',NULL),(1000,27,2.00,'A','Tuning credits purchase','Completed','2019-07-24 11:40:29','2019-07-24 11:40:29',NULL),(1001,27,1.93,'S','LDV postal','Completed','2019-07-24 11:44:13','2019-07-24 11:44:13',NULL),(1002,19,1.00,'A','Tuning credits purchase','Completed','2019-07-24 12:17:53','2019-07-24 12:17:53',NULL),(1003,19,1.00,'S','File Service: mitsubishi l200 4th','Completed','2019-07-24 12:21:32','2019-07-24 12:21:32',NULL),(1004,19,1.00,'A','Tuning credits purchase','Completed','2019-07-24 14:05:07','2019-07-24 14:05:07',NULL),(1005,19,1.00,'S','File Service: renault scenic 3rd','Completed','2019-07-24 14:12:00','2019-07-24 14:12:00',NULL),(1006,19,1.00,'A','Tuning credits purchase','Completed','2019-07-25 09:30:28','2019-07-25 09:30:28',NULL),(1007,19,1.00,'S','File Service: landrover freelander 2nd','Completed','2019-07-25 09:36:51','2019-07-25 09:36:51',NULL),(1008,19,1.00,'A','Tuning credits purchase','Completed','2019-07-25 09:44:42','2019-07-25 09:44:42',NULL),(1009,19,1.33,'S','File Service: skoda fabia vrs','Completed','2019-07-25 09:52:54','2019-07-25 09:52:54',NULL),(1010,19,1.00,'A','Tuning credits purchase','Completed','2019-07-25 10:05:12','2019-07-25 10:05:12',NULL),(1011,19,1.00,'S','File Service: rover 75 1st','Completed','2019-07-25 10:08:16','2019-07-25 10:08:16',NULL),(1012,19,2.00,'A','Tuning credits purchase','Completed','2019-07-26 06:49:10','2019-07-26 06:49:10',NULL),(1013,19,1.50,'S','File Service: vw crafter 2nd','Completed','2019-07-26 06:51:38','2019-07-26 06:51:38',NULL),(1014,19,1.00,'A','Tuning credits purchase','Completed','2019-07-26 10:01:39','2019-07-26 10:01:39',NULL),(1015,100,1.00,'S','File Service: mitsubishi l200 2015','Completed','2019-07-26 10:04:29','2019-07-26 10:04:29',NULL),(1016,19,1.00,'S','File Service: skoda octavia 2nd','Completed','2019-07-26 10:05:25','2019-07-26 10:05:25',NULL),(1017,100,1.00,'S','File Service: ford connect 2014','Completed','2019-07-26 11:06:21','2019-07-26 11:06:21',NULL),(1018,100,1.00,'S','File Service: vw crafter 2015','Completed','2019-07-26 11:10:03','2019-07-26 11:10:03',NULL),(1019,100,1.00,'S','File Service: nissan navara 2013','Completed','2019-07-26 11:12:02','2019-07-26 11:12:02',NULL),(1020,100,1.00,'A','refund leon','Completed','2019-07-26 11:49:20','2019-07-26 11:49:20',NULL),(1021,43,1.00,'S','File Service: Ford Transit2.4 TT9','Completed','2019-07-26 12:29:13','2019-07-26 12:29:13',NULL),(1022,45,5.00,'A','Add 27/7/19','Completed','2019-07-27 06:53:14','2019-07-27 06:53:14',NULL),(1023,45,1.50,'S','File Service: Honda Civic 2013','Completed','2019-07-27 08:28:05','2019-07-27 08:28:05',NULL),(1024,45,0.50,'A','credit back 0.5 for civic','Completed','2019-07-27 18:02:26','2019-07-27 18:02:26',NULL),(1025,30,1.00,'A','Tuning credits purchase','Completed','2019-07-29 12:49:43','2019-07-29 12:49:43',NULL),(1026,30,1.00,'S','File Service: ford transit connect 2014','Completed','2019-07-29 13:24:15','2019-07-29 13:24:15',NULL),(1027,100,1.00,'S','File Service: bmw 320d 2016','Completed','2019-07-29 17:52:29','2019-07-29 17:52:29',NULL),(1028,100,1.00,'S','File Service: vw transporter 2016','Completed','2019-07-29 17:55:17','2019-07-29 17:55:17',NULL),(1029,19,1.00,'A','Tuning credits purchase','Completed','2019-07-30 11:54:51','2019-07-30 11:54:51',NULL),(1030,19,1.00,'S','File Service: landrover discovery 3rd','Completed','2019-07-30 11:57:16','2019-07-30 11:57:16',NULL),(1031,102,1.00,'A','Tuning credits purchase','Completed','2019-07-31 07:33:17','2019-07-31 07:33:17',NULL),(1032,102,1.00,'S','File Service: toyota auris any','Completed','2019-07-31 07:34:11','2019-07-31 07:34:11',NULL),(1033,100,1.00,'S','File Service: bmw 116d 2009','Completed','2019-07-31 14:45:00','2019-07-31 14:45:00',NULL),(1034,43,1.00,'S','File Service: VW Transporter T5','Completed','2019-07-31 15:12:35','2019-07-31 15:12:35',NULL),(1035,100,1.00,'S','File Service: mercedes a200 2013','Completed','2019-07-31 16:26:39','2019-07-31 16:26:39',NULL),(1036,23,1.00,'A','Tuning credits purchase','Completed','2019-08-01 10:48:08','2019-08-01 10:48:08',NULL),(1037,23,1.00,'S','File Service: ford transit custom','Completed','2019-08-01 10:50:23','2019-08-01 10:50:23',NULL),(1038,45,1.33,'S','File Service: ford smax 2009','Completed','2019-08-01 12:34:29','2019-08-01 12:34:29',NULL),(1039,19,1.00,'A','Tuning credits purchase','Completed','2019-08-01 13:09:18','2019-08-01 13:09:18',NULL),(1040,19,1.00,'S','File Service: ford transit 7','Completed','2019-08-01 13:16:47','2019-08-01 13:16:47',NULL),(1041,102,2.00,'A','Tuning credits purchase','Completed','2019-08-02 05:27:05','2019-08-02 05:27:05',NULL),(1042,102,1.00,'S','File Service: vw touareg any','Completed','2019-08-02 05:28:56','2019-08-02 05:28:56',NULL),(1043,100,10.00,'A','10 files','Completed','2019-08-02 06:15:26','2019-08-02 06:15:26',NULL),(1044,43,1.00,'S','File Service: Seat Exeo 3R2','Completed','2019-08-03 09:16:52','2019-08-03 09:16:52',NULL),(1045,43,1.33,'S','File Service: Ford Mondeo MKII','Completed','2019-08-03 14:07:32','2019-08-03 14:07:32',NULL),(1046,43,1.00,'S','File Service: Mercedes 314 906','Completed','2019-08-03 20:27:15','2019-08-03 20:27:15',NULL),(1047,36,1.00,'A','Tuning credits purchase','Completed','2019-08-05 06:50:19','2019-08-05 06:50:19',NULL),(1048,19,1.00,'A','Tuning credits purchase','Completed','2019-08-05 11:28:35','2019-08-05 11:28:35',NULL),(1049,19,1.00,'S','File Service: ford transit MK7','Completed','2019-08-05 11:30:36','2019-08-05 11:30:36',NULL),(1050,43,10.00,'A','add 05/08/19','Completed','2019-08-05 11:35:09','2019-08-05 11:35:09',NULL),(1051,43,1.33,'S','File Service: Mercedes 313 906','Completed','2019-08-05 11:40:06','2019-08-05 11:40:06',NULL),(1052,45,1.00,'S','File Service: Izusu Dmax 2','Completed','2019-08-05 12:39:22','2019-08-05 12:39:22',NULL),(1053,102,2.00,'A','Tuning credits purchase','Completed','2019-08-05 14:58:51','2019-08-05 14:58:51',NULL),(1054,30,1.00,'A','Tuning credits purchase','Completed','2019-08-06 08:07:46','2019-08-06 08:07:46',NULL),(1055,30,1.00,'S','File Service: audi a7 2017','Completed','2019-08-06 08:14:20','2019-08-06 08:14:20',NULL),(1056,27,1.00,'A','Tuning credits purchase','Completed','2019-08-06 09:35:12','2019-08-06 09:35:12',NULL),(1057,27,1.00,'S','File Service: VW PASSAT B6','Completed','2019-08-06 09:37:27','2019-08-06 09:37:27',NULL),(1058,19,2.00,'A','Tuning credits purchase','Completed','2019-08-06 11:21:32','2019-08-06 11:21:32',NULL),(1059,19,1.00,'S','File Service: vw transporter t5','Completed','2019-08-06 11:23:07','2019-08-06 11:23:07',NULL),(1060,36,1.00,'S','refunded','Completed','2019-08-06 15:54:58','2019-08-06 15:54:58',NULL),(1061,102,3.00,'S','take away','Completed','2019-08-06 20:38:10','2019-08-06 20:38:10',NULL),(1062,19,1.00,'S','File Service: audi a4 8e','Completed','2019-08-07 11:27:57','2019-08-07 11:27:57',NULL),(1063,100,1.00,'S','take away','Completed','2019-08-07 11:37:21','2019-08-07 11:37:21',NULL),(1064,29,1.00,'A','Tuning credits purchase','Completed','2019-08-07 11:40:00','2019-08-07 11:40:00',NULL),(1065,29,1.00,'S','File Service: audi a4 diesel','Completed','2019-08-07 11:44:21','2019-08-07 11:44:21',NULL),(1066,76,1.00,'A','Tuning credits purchase','Completed','2019-08-07 12:53:40','2019-08-07 12:53:40',NULL),(1067,76,1.00,'S','File Service: vw crafter 2011','Completed','2019-08-07 12:55:19','2019-08-07 12:55:19',NULL),(1068,100,1.00,'S','File Service: mercedes benz c220 2013','Completed','2019-08-08 08:49:09','2019-08-08 08:49:09',NULL),(1069,100,1.00,'S','File Service: ford Custom 2016','Completed','2019-08-08 08:51:02','2019-08-08 08:51:02',NULL),(1070,27,0.50,'S','Ghost Dongle and Postage','Completed','2019-08-08 16:46:30','2019-08-08 16:46:30',NULL),(1071,100,1.00,'S','File Service: Ford focus st 1 2015','Completed','2019-08-09 07:03:38','2019-08-09 07:03:38',NULL),(1072,19,1.00,'A','Tuning credits purchase','Completed','2019-08-09 07:23:07','2019-08-09 07:23:07',NULL),(1073,19,1.00,'S','File Service: seat leon 1p1','Completed','2019-08-09 07:45:11','2019-08-09 07:45:11',NULL),(1074,45,1.00,'S','File Service: Audi R8 2011','Completed','2019-08-10 08:18:58','2019-08-10 08:18:58',NULL),(1076,45,0.50,'A','corr','Completed','2019-08-10 09:56:13','2019-08-10 09:56:13',NULL),(1077,43,0.50,'S','Ghost Dongle and Postage','Completed','2019-08-10 09:56:51','2019-08-10 09:56:51',NULL),(1078,43,1.00,'S','File Service: Mercedes A200CDi W176','Completed','2019-08-10 11:54:39','2019-08-10 11:54:39',NULL),(1079,100,1.00,'S','File Service: Audi TT 2009','Completed','2019-08-11 07:57:32','2019-08-11 07:57:32',NULL),(1080,45,1.00,'S','File Service: VW Caddy 2018','Completed','2019-08-12 14:26:52','2019-08-12 14:26:52',NULL),(1081,43,1.00,'S','File Service: Mercedes A200 W176','Completed','2019-08-13 11:38:57','2019-08-13 11:38:57',NULL),(1082,76,1.00,'A','Tuning credits purchase','Completed','2019-08-14 07:47:09','2019-08-14 07:47:09',NULL),(1083,76,1.00,'S','File Service: BMW 1er 2015','Completed','2019-08-14 07:50:32','2019-08-14 07:50:32',NULL),(1084,76,1.00,'A','Tuning credits purchase','Completed','2019-08-14 10:40:34','2019-08-14 10:40:34',NULL),(1085,76,1.00,'S','File Service: audi a3 2010','Completed','2019-08-14 10:41:41','2019-08-14 10:41:41',NULL),(1086,100,1.00,'S','File Service: Ford ranger 2014','Completed','2019-08-15 08:46:47','2019-08-15 08:46:47',NULL),(1087,76,1.00,'A','Tuning credits purchase','Completed','2019-08-15 14:24:20','2019-08-15 14:24:20',NULL),(1088,76,1.00,'S','File Service: mercedes sprinter 2008','Completed','2019-08-15 14:30:01','2019-08-15 14:30:01',NULL),(1089,23,1.00,'A','Tuning credits purchase','Completed','2019-08-16 07:44:47','2019-08-16 07:44:47',NULL),(1090,23,1.00,'S','File Service: FORD TRANSIT MK7','Completed','2019-08-16 07:47:17','2019-08-16 07:47:17',NULL),(1091,100,1.00,'S','File Service: seat leon 2010','Completed','2019-08-16 08:38:43','2019-08-16 08:38:43',NULL),(1092,100,1.00,'S','File Service: land rover RR evoque 2013','Completed','2019-08-17 08:51:45','2019-08-17 08:51:45',NULL),(1093,76,1.00,'A','Tuning credits purchase','Completed','2019-08-19 08:29:02','2019-08-19 08:29:02',NULL),(1094,76,1.00,'S','File Service: vw golf 6 2012','Completed','2019-08-19 08:30:57','2019-08-19 08:30:57',NULL),(1095,19,2.00,'A','Tuning credits purchase','Completed','2019-08-19 09:04:30','2019-08-19 09:04:30',NULL),(1096,19,1.00,'S','File Service: ford transit custom','Completed','2019-08-19 09:07:35','2019-08-19 09:07:35',NULL),(1097,19,1.00,'S','File Service: seat ibisa 5','Completed','2019-08-19 09:11:59','2019-08-19 09:11:59',NULL),(1098,76,1.00,'A','Tuning credits purchase','Completed','2019-08-19 09:17:38','2019-08-19 09:17:38',NULL),(1099,76,1.00,'S','File Service: mercedes vito 2013','Completed','2019-08-19 09:19:06','2019-08-19 09:19:06',NULL),(1100,19,1.00,'A','Tuning credits purchase','Completed','2019-08-19 09:48:41','2019-08-19 09:48:41',NULL),(1101,19,1.00,'S','File Service: vauxhall astra j','Completed','2019-08-19 09:51:25','2019-08-19 09:51:25',NULL),(1102,19,1.00,'A','Tuning credits purchase','Completed','2019-08-19 10:18:38','2019-08-19 10:18:38',NULL),(1103,19,1.00,'S','File Service: vw golf 6','Completed','2019-08-19 10:22:34','2019-08-19 10:22:34',NULL),(1104,100,1.33,'S','File Service: bmw 535d 2005','Completed','2019-08-19 10:53:02','2019-08-19 10:53:02',NULL),(1105,100,11.00,'A','10 files','Completed','2019-08-19 11:13:37','2019-08-19 11:13:37',NULL),(1106,100,1.00,'S','File Service: vauxhall corsa 2015','Completed','2019-08-19 13:13:19','2019-08-19 13:13:19',NULL),(1107,100,1.00,'S','File Service: bmw 318d 2012','Completed','2019-08-20 07:18:54','2019-08-20 07:18:54',NULL),(1108,27,2.66,'A','£200 of credits','Completed','2019-08-20 08:48:46','2019-08-20 08:48:46',NULL),(1109,98,2.00,'A','Tuning credits purchase','Completed','2019-08-20 09:06:41','2019-08-20 09:06:41',NULL),(1110,98,1.33,'S','File Service: BMW M4 F82','Completed','2019-08-20 09:14:18','2019-08-20 09:14:18',NULL),(1111,19,1.00,'A','Tuning credits purchase','Completed','2019-08-20 10:03:43','2019-08-20 10:03:43',NULL),(1112,19,1.00,'S','File Service: jaguar s type 2nd','Completed','2019-08-20 10:20:00','2019-08-20 10:20:00',NULL),(1113,46,1.00,'A','Tuning credits purchase','Completed','2019-08-20 13:06:05','2019-08-20 13:06:05',NULL),(1114,46,1.00,'S','File Service: vauxhall vectra vectra c','Completed','2019-08-20 13:22:26','2019-08-20 13:22:26',NULL),(1115,27,1.00,'S','File Service: AUDI A6 C7/4G','Completed','2019-08-21 08:42:06','2019-08-21 08:42:06',NULL),(1116,100,1.00,'S','File Service: bmw 320d 2017','Completed','2019-08-21 10:09:00','2019-08-21 10:09:00',NULL),(1117,19,2.00,'A','Tuning credits purchase','Completed','2019-08-21 12:40:56','2019-08-21 12:40:56',NULL),(1118,19,1.00,'S','File Service: ford transit mk6','Completed','2019-08-21 12:47:46','2019-08-21 12:47:46',NULL),(1119,19,1.00,'S','File Service: vw tiguan 1','Completed','2019-08-21 12:50:29','2019-08-21 12:50:29',NULL),(1120,100,1.00,'S','File Service: mercedes a200 2014','Completed','2019-08-21 14:48:59','2019-08-21 14:48:59',NULL),(1121,100,1.00,'S','File Service: bmw 318d 2007','Completed','2019-08-22 09:30:54','2019-08-22 09:30:54',NULL),(1122,76,1.00,'A','Tuning credits purchase','Completed','2019-08-22 10:46:04','2019-08-22 10:46:04',NULL),(1123,76,1.00,'S','File Service: subaru forrester 2010','Completed','2019-08-22 10:47:25','2019-08-22 10:47:25',NULL),(1124,19,1.00,'A','Tuning credits purchase','Completed','2019-08-22 11:16:34','2019-08-22 11:16:34',NULL),(1125,100,1.00,'S','File Service: AUDI a4 2010','Completed','2019-08-22 11:17:01','2019-08-22 11:17:01',NULL),(1126,19,1.00,'S','File Service: landrover discovery 3','Completed','2019-08-22 11:23:18','2019-08-22 11:23:18',NULL),(1127,43,1.00,'S','File Service: Vauxhall Zafira MK II','Completed','2019-08-22 15:37:54','2019-08-22 15:37:54',NULL),(1128,45,5.00,'A','Add 23/08/19','Completed','2019-08-23 07:35:16','2019-08-23 07:35:16',NULL),(1129,45,1.00,'S','File Service: VW Amarok 2016','Completed','2019-08-23 07:43:43','2019-08-23 07:43:43',NULL),(1130,102,5.00,'A','Tuning credits purchase','Completed','2019-08-26 11:48:30','2019-08-26 11:48:30',NULL),(1131,102,1.00,'S','File Service: mitsubishi l200 any','Completed','2019-08-26 11:50:12','2019-08-26 11:50:12',NULL),(1132,76,1.00,'A','Tuning credits purchase','Completed','2019-08-27 10:29:31','2019-08-27 10:29:31',NULL),(1133,76,1.00,'S','File Service: VW Golf 4','Completed','2019-08-27 10:33:07','2019-08-27 10:33:07',NULL),(1134,100,1.00,'S','File Service: vw golf 2013','Completed','2019-08-27 11:56:28','2019-08-27 11:56:28',NULL),(1135,100,1.00,'S','File Service: Ford Custom 2017','Completed','2019-08-27 15:58:32','2019-08-27 15:58:32',NULL),(1136,100,1.00,'S','File Service: Renault Trafic 2017','Completed','2019-08-27 16:22:45','2019-08-27 16:22:45',NULL),(1137,45,1.33,'S','File Service: VW T6 T6','Completed','2019-08-28 10:06:46','2019-08-28 10:06:46',NULL),(1138,35,1.00,'S','File Service: LANDROVER evoque 1','Completed','2019-08-28 10:24:50','2019-08-28 10:24:50',NULL),(1139,43,1.00,'S','File Service: BMW 320D F31','Completed','2019-08-28 12:42:38','2019-08-28 12:42:38',NULL),(1140,45,1.99,'S','File Service: audi a3 8P','Completed','2019-08-29 08:41:46','2019-08-29 08:41:46',NULL),(1141,45,0.33,'A','refund flap delete Audi a3 8p ppd 170','Completed','2019-08-29 09:14:28','2019-08-29 09:14:28',NULL),(1142,76,1.00,'A','Tuning credits purchase','Completed','2019-08-29 10:18:06','2019-08-29 10:18:06',NULL),(1143,76,1.00,'S','File Service: Vw Crafter 2016','Completed','2019-08-29 10:22:06','2019-08-29 10:22:06',NULL),(1144,19,1.00,'A','Tuning credits purchase','Completed','2019-08-29 10:56:33','2019-08-29 10:56:33',NULL),(1145,19,1.00,'S','File Service: vw eos 1st','Completed','2019-08-29 11:06:11','2019-08-29 11:06:11',NULL),(1146,100,1.00,'S','File Service: BMW x5 2005','Completed','2019-08-29 11:56:34','2019-08-29 11:56:34',NULL),(1147,102,1.00,'S','File Service: bmw x6 any','Completed','2019-08-30 06:53:26','2019-08-30 06:53:26',NULL),(1148,100,25.00,'A','add','Completed','2019-08-30 10:18:28','2019-08-30 10:18:28',NULL),(1149,100,0.67,'S','take away','Completed','2019-08-30 10:19:12','2019-08-30 10:19:12',NULL),(1150,100,1.00,'A','add','Completed','2019-08-30 10:19:29','2019-08-30 10:19:29',NULL),(1151,100,1.00,'S','File Service: mercedes sprinter 2012','Completed','2019-08-30 13:02:04','2019-08-30 13:02:04',NULL),(1152,76,1.00,'A','Tuning credits purchase','Completed','2019-08-31 06:57:38','2019-08-31 06:57:38',NULL),(1153,76,1.00,'S','File Service: mercedes sprinter 906','Completed','2019-08-31 07:07:42','2019-08-31 07:07:42',NULL),(1154,100,1.00,'S','File Service: vw golf 2009','Completed','2019-08-31 09:30:29','2019-08-31 09:30:29',NULL),(1155,100,1.00,'S','File Service: vw golf 2007','Completed','2019-08-31 09:55:40','2019-08-31 09:55:40',NULL),(1156,100,1.33,'S','File Service: ford focus st 3 2006','Completed','2019-08-31 14:47:25','2019-08-31 14:47:25',NULL),(1157,102,1.00,'S','File Service: ford kuga any','Completed','2019-09-02 05:30:55','2019-09-02 05:30:55',NULL),(1158,100,1.00,'S','take away audi a6','Completed','2019-09-02 07:27:25','2019-09-02 07:27:25',NULL),(1159,100,1.00,'S','File Service: bmw 320d 2008','Completed','2019-09-02 08:02:29','2019-09-02 08:02:29',NULL),(1160,76,1.00,'A','Tuning credits purchase','Completed','2019-09-02 08:57:43','2019-09-02 08:57:43',NULL),(1161,76,1.00,'S','File Service: nissan np300 navarra 2016','Completed','2019-09-02 09:00:10','2019-09-02 09:00:10',NULL),(1162,100,1.00,'S','File Service: bmw 430d 2014','Completed','2019-09-02 09:12:33','2019-09-02 09:12:33',NULL),(1163,43,1.33,'S','File Service: Renault Traffic MK3','Completed','2019-09-02 09:24:12','2019-09-02 09:24:12',NULL),(1164,23,1.00,'A','Tuning credits purchase','Completed','2019-09-03 08:38:33','2019-09-03 08:38:33',NULL),(1165,23,1.00,'S','File Service: Ford Transit 8','Completed','2019-09-03 08:43:51','2019-09-03 08:43:51',NULL),(1166,21,1.00,'A','Tuning credits purchase','Completed','2019-09-03 10:14:54','2019-09-03 10:14:54',NULL),(1167,21,1.00,'S','File Service: AUDI TT 2011','Completed','2019-09-03 10:16:50','2019-09-03 10:16:50',NULL),(1168,35,1.00,'A','Tuning credits purchase','Completed','2019-09-04 09:00:26','2019-09-04 09:00:26',NULL),(1169,35,1.00,'S','File Service: peugeot expert 2 2','Completed','2019-09-04 09:01:43','2019-09-04 09:01:43',NULL),(1170,94,1.00,'A','Tuning credits purchase','Completed','2019-09-04 09:45:57','2019-09-04 09:45:57',NULL),(1171,94,1.50,'S','File Service: ford transit 6','Completed','2019-09-04 09:51:29','2019-09-04 09:51:29',NULL),(1172,100,1.00,'S','File Service: ford ranger 2015','Completed','2019-09-04 11:18:14','2019-09-04 11:18:14',NULL),(1173,19,1.00,'A','Tuning credits purchase','Completed','2019-09-04 11:55:20','2019-09-04 11:55:20',NULL),(1174,19,1.00,'S','File Service: citroen c4 3','Completed','2019-09-04 12:12:48','2019-09-04 12:12:48',NULL),(1175,76,1.00,'S','File Service: LANDROVER discovery 2004','Completed','2019-09-04 17:23:47','2019-09-04 17:23:47',NULL),(1176,76,1.00,'A','Tuning credits purchase','Completed','2019-09-05 07:06:33','2019-09-05 07:06:33',NULL),(1177,76,1.00,'S','File Service: AUDI SQ5 2014','Completed','2019-09-05 07:09:04','2019-09-05 07:09:04',NULL),(1178,19,0.00,'S','File Service: landrover range rover sport 2nd','Completed','2019-09-05 08:58:13','2019-09-05 08:58:13',NULL),(1179,43,1.00,'S','File Service: Ford Kuga MKII','Completed','2019-09-05 11:06:55','2019-09-05 11:06:55',NULL),(1180,19,0.50,'S','file check','Completed','2019-09-05 11:48:21','2019-09-05 11:48:21',NULL),(1181,100,1.00,'S','File Service: ford tourneo connect 2015','Completed','2019-09-05 14:14:37','2019-09-05 14:14:37',NULL),(1182,45,1.00,'S','File Service: Vauxhall Insignia 2009','Completed','2019-09-06 06:32:57','2019-09-06 06:32:57',NULL),(1183,76,1.00,'A','Tuning credits purchase','Completed','2019-09-06 07:17:13','2019-09-06 07:17:13',NULL),(1184,76,1.00,'S','File Service: FORD CMAX 2009/10','Completed','2019-09-06 07:21:27','2019-09-06 07:21:27',NULL),(1185,74,1.00,'A','Tuning credits purchase','Completed','2019-09-07 12:26:44','2019-09-07 12:26:44',NULL),(1186,74,1.00,'S','File Service: VAUX CORSA C C','Completed','2019-09-07 12:28:36','2019-09-07 12:28:36',NULL),(1187,76,1.00,'A','Tuning credits purchase','Completed','2019-09-07 14:23:52','2019-09-07 14:23:52',NULL),(1188,76,1.00,'S','File Service: Volkswagen Golf R 7','Completed','2019-09-07 14:29:14','2019-09-07 14:29:14',NULL),(1189,45,5.00,'A','Credits','Completed','2019-09-07 14:43:41','2019-09-07 14:43:41',NULL),(1190,30,1.00,'A','Tuning credits purchase','Completed','2019-09-09 11:15:40','2019-09-09 11:15:40',NULL),(1191,30,1.00,'S','File Service: vw golf 2015','Completed','2019-09-09 11:19:51','2019-09-09 11:19:51',NULL),(1192,45,0.33,'S','File Service: VW T5 2008','Completed','2019-09-09 13:54:57','2019-09-09 13:54:57',NULL),(1193,27,1.00,'S','File Service: JAGUAR XFR MK1','Completed','2019-09-10 07:34:27','2019-09-10 07:34:27',NULL),(1194,45,1.33,'S','File Service: BMW X5 E70','Completed','2019-09-10 07:50:08','2019-09-10 07:50:08',NULL),(1196,45,1.00,'S','File Service: Mercedes GLA 2000','Completed','2019-09-10 10:16:03','2019-09-10 10:16:03',NULL),(1197,74,1.00,'S','File Service: AUDI A1 8X','Completed','2019-09-10 11:55:05','2019-09-10 11:55:05',NULL),(1198,45,1.00,'S','File Service: BMW 320d E92','Completed','2019-09-10 12:34:13','2019-09-10 12:34:13',NULL),(1199,45,1.00,'S','File Service: Seat Exeo 2010','Completed','2019-09-10 12:37:26','2019-09-10 12:37:26',NULL),(1200,45,5.00,'A','Add credits 10/09/19','Completed','2019-09-10 19:47:07','2019-09-10 19:47:07',NULL),(1201,100,1.00,'S','File Service: bmw 525d 2005','Completed','2019-09-11 07:55:37','2019-09-11 07:55:37',NULL),(1202,76,1.00,'A','Tuning credits purchase','Completed','2019-09-11 08:58:31','2019-09-11 08:58:31',NULL),(1203,76,1.00,'S','File Service: audi a4 b6','Completed','2019-09-11 09:00:35','2019-09-11 09:00:35',NULL),(1204,21,1.00,'A','Tuning credits purchase','Completed','2019-09-11 11:27:52','2019-09-11 11:27:52',NULL),(1205,21,1.00,'S','File Service: PEUGEOT EXPERT 3','Completed','2019-09-11 11:30:14','2019-09-11 11:30:14',NULL),(1206,76,1.00,'A','Tuning credits purchase','Completed','2019-09-11 12:04:41','2019-09-11 12:04:41',NULL),(1207,76,1.00,'S','File Service: peugeot 3008 1','Completed','2019-09-11 12:07:19','2019-09-11 12:07:19',NULL),(1208,102,1.00,'S','File Service: mercedes e class any','Completed','2019-09-12 06:50:00','2019-09-12 06:50:00',NULL),(1209,76,2.00,'A','Tuning credits purchase','Completed','2019-09-12 08:28:50','2019-09-12 08:28:50',NULL),(1210,76,1.00,'S','File Service: mini cooper s r56','Completed','2019-09-12 08:31:10','2019-09-12 08:31:10',NULL),(1211,76,1.00,'S','File Service: mercedes sprinter 905','Completed','2019-09-12 08:32:42','2019-09-12 08:32:42',NULL),(1214,100,1.00,'S','File Service: izuzu d max 2014','Completed','2019-09-12 13:00:31','2019-09-12 13:00:31',NULL),(1215,100,1.00,'S','File Service: bmw 320d 2008','Completed','2019-09-12 13:50:33','2019-09-12 13:50:33',NULL),(1216,74,1.00,'A','Tuning credits purchase','Completed','2019-09-12 19:20:57','2019-09-12 19:20:57',NULL),(1217,74,1.00,'S','take away','Completed','2019-09-12 19:22:07','2019-09-12 19:22:07',NULL),(1218,102,1.00,'S','File Service: mitsubishi l200 any','Completed','2019-09-13 05:05:53','2019-09-13 05:05:53',NULL),(1219,19,1.00,'A','Tuning credits purchase','Completed','2019-09-13 08:47:37','2019-09-13 08:47:37',NULL),(1220,19,1.00,'S','File Service: ford connect 2nd','Completed','2019-09-13 08:50:21','2019-09-13 08:50:21',NULL),(1221,111,1.00,'A','Tuning credits purchase','Completed','2019-09-13 09:04:06','2019-09-13 09:04:06',NULL),(1222,100,1.00,'S','File Service: vw crafter 2014','Completed','2019-09-13 09:30:30','2019-09-13 09:30:30',NULL),(1223,76,1.00,'A','Tuning credits purchase','Completed','2019-09-13 10:35:42','2019-09-13 10:35:42',NULL),(1224,111,1.00,'S','take away','Completed','2019-09-13 10:36:29','2019-09-13 10:36:29',NULL),(1225,76,1.00,'S','File Service: ford custom 2015','Completed','2019-09-13 10:38:54','2019-09-13 10:38:54',NULL),(1226,100,1.00,'S','File Service: vw GOLF GTD 2015','Completed','2019-09-13 13:32:16','2019-09-13 13:32:16',NULL),(1227,76,1.00,'A','Tuning credits purchase','Completed','2019-09-14 07:18:22','2019-09-14 07:18:22',NULL),(1228,76,1.00,'S','File Service: ford connect 2009','Completed','2019-09-14 07:20:34','2019-09-14 07:20:34',NULL),(1229,81,1.00,'A','Tuning credits purchase','Completed','2019-09-14 10:15:48','2019-09-14 10:15:48',NULL),(1230,81,1.00,'S','File Service: BMW 330D 2013','Completed','2019-09-14 11:27:15','2019-09-14 11:27:15',NULL),(1231,102,5.00,'A','Tuning credits purchase','Completed','2019-09-16 06:01:02','2019-09-16 06:01:02',NULL),(1232,102,1.00,'S','File Service: bmw x5 any','Completed','2019-09-16 06:02:42','2019-09-16 06:02:42',NULL),(1233,45,1.00,'S','File Service: Mercedes A200 2013','Completed','2019-09-16 08:12:51','2019-09-16 08:12:51',NULL),(1234,45,1.00,'S','File Service: BMW 5 Series F10','Completed','2019-09-16 09:28:34','2019-09-16 09:28:34',NULL),(1235,21,1.00,'A','Tuning credits purchase','Completed','2019-09-16 10:21:57','2019-09-16 10:21:57',NULL),(1236,21,1.00,'S','File Service: AUDI RS5 2012','Completed','2019-09-16 10:23:34','2019-09-16 10:23:34',NULL),(1237,19,1.00,'A','Tuning credits purchase','Completed','2019-09-16 10:36:18','2019-09-16 10:36:18',NULL),(1238,19,1.00,'S','File Service: audi s3 8p','Completed','2019-09-16 10:58:59','2019-09-16 10:58:59',NULL),(1239,100,1.00,'S','File Service: vw GOLF GTD 2014','Completed','2019-09-16 15:59:55','2019-09-16 15:59:55',NULL),(1240,19,1.00,'A','Tuning credits purchase','Completed','2019-09-17 07:47:30','2019-09-17 07:47:30',NULL),(1241,19,1.00,'S','File Service: vw transporter t6 t6','Completed','2019-09-17 07:50:02','2019-09-17 07:50:02',NULL),(1242,43,1.33,'S','VOIP PHONE','Completed','2019-09-17 11:27:35','2019-09-17 11:27:35',NULL),(1243,100,1.00,'S','File Service: vw transporter 2004','Completed','2019-09-17 16:21:20','2019-09-17 16:21:20',NULL),(1244,19,1.00,'A','Tuning credits purchase','Completed','2019-09-18 09:56:04','2019-09-18 09:56:04',NULL),(1245,19,1.00,'S','File Service: vw jetta mk5','Completed','2019-09-18 09:57:51','2019-09-18 09:57:51',NULL),(1246,74,2.00,'A','add','Completed','2019-09-18 10:08:14','2019-09-18 10:08:14',NULL),(1247,45,1.00,'S','File Service: Ford Transit Custom','Completed','2019-09-18 10:17:04','2019-09-18 10:17:04',NULL),(1248,19,2.00,'A','Tuning credits purchase','Completed','2019-09-18 13:35:58','2019-09-18 13:35:58',NULL),(1249,19,1.33,'S','File Service: volvo v50 2','Completed','2019-09-18 13:38:03','2019-09-18 13:38:03',NULL),(1250,43,1.00,'S','File Service: Mercedes E350 S204','Completed','2019-09-18 15:41:16','2019-09-18 15:41:16',NULL),(1251,27,1.00,'S','File Service: VAUXHALL VIVARO MK1','Completed','2019-09-19 07:39:58','2019-09-19 07:39:58',NULL),(1252,45,1.00,'S','File Service: BMW 3 Series E93','Completed','2019-09-19 09:42:52','2019-09-19 09:42:52',NULL),(1253,19,1.00,'A','Tuning credits purchase','Completed','2019-09-19 14:23:32','2019-09-19 14:23:32',NULL),(1254,19,1.33,'S','File Service: seat leon 8p','Completed','2019-09-19 14:26:54','2019-09-19 14:26:54',NULL),(1255,24,1.00,'A','Tuning credits purchase','Completed','2019-09-19 16:26:50','2019-09-19 16:26:50',NULL),(1256,74,1.00,'S','take away','Completed','2019-09-19 17:50:33','2019-09-19 17:50:33',NULL),(1257,45,1.00,'S','File Service: Infinty Q50 Q50','Completed','2019-09-20 08:18:45','2019-09-20 08:18:45',NULL),(1258,100,1.00,'S','File Service: vw GOLF GTD 2016','Completed','2019-09-20 08:27:59','2019-09-20 08:27:59',NULL),(1259,111,2.00,'A','Tuning credits purchase','Completed','2019-09-20 09:06:24','2019-09-20 09:06:24',NULL),(1260,45,5.00,'A','add 20/09/19','Completed','2019-09-20 09:57:26','2019-09-20 09:57:26',NULL),(1261,76,1.00,'A','Tuning credits purchase','Completed','2019-09-20 11:12:42','2019-09-20 11:12:42',NULL),(1262,76,1.00,'S','File Service: LANDROVER evoque SD4','Completed','2019-09-20 11:15:22','2019-09-20 11:15:22',NULL),(1263,111,2.00,'S','take away','Completed','2019-09-20 12:24:28','2019-09-20 12:24:28',NULL),(1264,45,1.00,'S','File Service: VW Transporter T6','Completed','2019-09-20 12:57:49','2019-09-20 12:57:49',NULL),(1265,45,1.00,'S','File Service: Mazda 3 2016','Completed','2019-09-21 07:41:46','2019-09-21 07:41:46',NULL),(1266,45,1.00,'S','File Service: Landrover freelander TD4','Completed','2019-09-21 08:20:44','2019-09-21 08:20:44',NULL),(1267,29,1.00,'A','Tuning credits purchase','Completed','2019-09-21 12:47:59','2019-09-21 12:47:59',NULL),(1268,29,1.00,'S','File Service: audi a4 bosch','Completed','2019-09-21 12:50:03','2019-09-21 12:50:03',NULL),(1269,102,1.00,'S','File Service: FORD GALAXY any','Completed','2019-09-23 05:26:16','2019-09-23 05:26:16',NULL),(1270,100,1.00,'S','File Service: vw golf 2010','Completed','2019-09-23 08:00:24','2019-09-23 08:00:24',NULL),(1271,76,1.00,'A','Tuning credits purchase','Completed','2019-09-23 08:15:56','2019-09-23 08:15:56',NULL),(1272,76,1.00,'S','File Service: FORD ranger t6','Completed','2019-09-23 08:19:06','2019-09-23 08:19:06',NULL),(1273,19,1.00,'A','Tuning credits purchase','Completed','2019-09-23 09:16:48','2019-09-23 09:16:48',NULL),(1274,19,1.00,'S','File Service: skoda octavia 2nd','Completed','2019-09-23 09:19:40','2019-09-23 09:19:40',NULL),(1275,100,1.00,'A','add','Completed','2019-09-23 10:08:30','2019-09-23 10:08:30',NULL),(1276,121,20.00,'A','add','Completed','2019-09-23 10:46:29','2019-09-23 10:46:29',NULL),(1277,102,1.00,'S','File Service: RENAULT CLIO any','Completed','2019-09-24 08:28:24','2019-09-24 08:28:24',NULL),(1278,43,1.00,'S','File Service: VW Golf MK5','Completed','2019-09-24 09:15:12','2019-09-24 09:15:12',NULL),(1279,121,1.00,'S','File Service: vauxhall antara ?','Completed','2019-09-24 09:44:17','2019-09-24 09:44:17',NULL),(1280,100,1.00,'S','File Service: skoda fabia 2011','Completed','2019-09-24 11:40:17','2019-09-24 11:40:17',NULL),(1281,76,1.00,'A','Tuning credits purchase','Completed','2019-09-24 11:52:48','2019-09-24 11:52:48',NULL),(1282,76,1.00,'S','File Service: citroen xsara` 2007','Completed','2019-09-24 11:54:36','2019-09-24 11:54:36',NULL),(1283,43,1.00,'S','File Service: Ford Mondeo 4th','Completed','2019-09-24 12:00:07','2019-09-24 12:00:07',NULL),(1284,43,10.00,'A','24/09/19','Completed','2019-09-24 12:04:16','2019-09-24 12:04:16',NULL),(1285,43,1.66,'S','File Service: Ford Mondeo 4th','Completed','2019-09-24 12:06:37','2019-09-24 12:06:37',NULL),(1286,76,2.00,'A','Tuning credits purchase','Completed','2019-09-24 12:56:15','2019-09-24 12:56:15',NULL),(1287,121,1.00,'S','File Service: mitsubishi l200 x','Completed','2019-09-24 13:22:35','2019-09-24 13:22:35',NULL),(1288,76,1.00,'S','File Service: fiay sedice 2007','Completed','2019-09-24 13:41:21','2019-09-24 13:41:21',NULL),(1289,76,1.00,'S','File Service: LANDROVER discovery 3','Completed','2019-09-24 13:47:48','2019-09-24 13:47:48',NULL),(1291,121,1.00,'S','File Service: vauxhall combo D','Completed','2019-09-25 08:50:09','2019-09-25 08:50:09',NULL),(1294,19,1.00,'A','Tuning credits purchase','Completed','2019-09-25 09:03:51','2019-09-25 09:03:51',NULL),(1295,19,1.00,'S','File Service: vw passat b6','Completed','2019-09-25 09:11:22','2019-09-25 09:11:22',NULL),(1296,76,1.00,'A','Tuning credits purchase','Completed','2019-09-25 09:19:53','2019-09-25 09:19:53',NULL),(1297,76,1.00,'S','File Service: audi a4 b8','Completed','2019-09-25 09:35:53','2019-09-25 09:35:53',NULL),(1298,81,1.00,'A','Tuning credits purchase','Completed','2019-09-25 17:03:50','2019-09-25 17:03:50',NULL),(1299,81,0.70,'S','File Service: audi a3 tdi 2007','Completed','2019-09-25 17:12:57','2019-09-25 17:12:57',NULL),(1300,81,0.30,'S','take away','Completed','2019-09-25 17:16:43','2019-09-25 17:16:43',NULL),(1301,45,1.00,'S','File Service: AUDI A4 B9','Completed','2019-09-26 05:53:05','2019-09-26 05:53:05',NULL),(1302,43,1.33,'S','File Service: Mercedes Vito 116CDi','Completed','2019-09-26 07:35:21','2019-09-26 07:35:21',NULL),(1303,76,1.00,'A','Tuning credits purchase','Completed','2019-09-26 08:01:05','2019-09-26 08:01:05',NULL),(1304,111,2.00,'A','Tuning credits purchase','Completed','2019-09-26 09:26:18','2019-09-26 09:26:18',NULL),(1305,43,1.66,'S','File Service: Citroen C5 III','Completed','2019-09-26 09:34:48','2019-09-26 09:34:48',NULL),(1306,100,1.00,'S','File Service: mitsubishi l200 trojan 2011','Completed','2019-09-26 11:21:31','2019-09-26 11:21:31',NULL),(1307,81,0.70,'S','take away','Completed','2019-09-26 12:48:49','2019-09-26 12:48:49',NULL),(1308,19,1.00,'A','Tuning credits purchase','Completed','2019-09-26 12:57:35','2019-09-26 12:57:35',NULL),(1309,19,1.00,'S','File Service: audi a3 8p','Completed','2019-09-26 12:59:47','2019-09-26 12:59:47',NULL),(1310,45,5.00,'A','add 26/09/19','Completed','2019-09-26 13:26:41','2019-09-26 13:26:41',NULL),(1311,45,1.66,'S','File Service: Ford Fiesta 2010','Completed','2019-09-26 13:28:06','2019-09-26 13:28:06',NULL),(1312,111,2.00,'S','take away','Completed','2019-09-26 13:38:07','2019-09-26 13:38:07',NULL),(1313,76,1.00,'S','File Service: nissan navarra 2012','Completed','2019-09-26 15:39:13','2019-09-26 15:39:13',NULL),(1314,121,1.00,'S','File Service: ford transit mk7','Completed','2019-09-27 07:10:28','2019-09-27 07:10:28',NULL),(1315,45,0.33,'S','File Service: VW Transporter T6','Completed','2019-09-27 07:39:45','2019-09-27 07:39:45',NULL),(1316,100,1.00,'S','File Service: ford transit connect 2012','Completed','2019-09-27 10:14:30','2019-09-27 10:14:30',NULL),(1317,45,1.33,'S','File Service: Ford Focus MK2','Completed','2019-09-27 10:48:44','2019-09-27 10:48:44',NULL),(1318,19,1.00,'A','Tuning credits purchase','Completed','2019-09-27 13:40:09','2019-09-27 13:40:09',NULL),(1319,19,1.00,'S','File Service: audi a3 8p','Completed','2019-09-27 13:41:58','2019-09-27 13:41:58',NULL),(1320,43,1.00,'S','File Service: Mercedes 313CDi 906','Completed','2019-09-28 08:46:34','2019-09-28 08:46:34',NULL),(1321,100,1.00,'S','File Service: bmw 320d 2006','Completed','2019-09-28 10:05:40','2019-09-28 10:05:40',NULL),(1322,24,1.00,'S','File Service: audi A5 coupe','Completed','2019-09-29 13:20:26','2019-09-29 13:20:26',NULL),(1323,24,5.00,'A','Tuning credits purchase','Completed','2019-09-29 13:24:07','2019-09-29 13:24:07',NULL),(1324,43,1.00,'S','File Service: Audi A3 8P','Completed','2019-09-30 08:37:57','2019-09-30 08:37:57',NULL),(1325,121,1.00,'S','File Service: vw caddy ?','Completed','2019-09-30 11:22:02','2019-09-30 11:22:02',NULL),(1326,76,1.00,'A','Tuning credits purchase','Completed','2019-09-30 11:34:35','2019-09-30 11:34:35',NULL),(1327,76,1.00,'S','File Service: ford transit custom','Completed','2019-09-30 11:36:10','2019-09-30 11:36:10',NULL),(1328,76,1.00,'A','Tuning credits purchase','Completed','2019-09-30 12:05:35','2019-09-30 12:05:35',NULL),(1329,76,1.00,'S','File Service: VW Golf 5','Completed','2019-09-30 12:07:11','2019-09-30 12:07:11',NULL),(1330,45,1.00,'S','File Service: Ford Kuga MK1','Completed','2019-09-30 13:25:31','2019-09-30 13:25:31',NULL),(1331,76,1.00,'A','Tuning credits purchase','Completed','2019-10-01 07:33:39','2019-10-01 07:33:39',NULL),(1332,76,1.00,'S','File Service: subaru outback 3','Completed','2019-10-01 07:36:35','2019-10-01 07:36:35',NULL),(1333,19,1.00,'A','Tuning credits purchase','Completed','2019-10-01 07:40:16','2019-10-01 07:40:16',NULL),(1334,19,1.33,'S','File Service: ford transit mk7','Completed','2019-10-01 07:42:34','2019-10-01 07:42:34',NULL),(1335,100,1.00,'S','File Service: VW caddy 2013','Completed','2019-10-01 08:40:18','2019-10-01 08:40:18',NULL),(1336,45,1.00,'S','File Service: Volvo V60 D3','Completed','2019-10-01 08:47:48','2019-10-01 08:47:48',NULL),(1337,19,1.00,'A','Tuning credits purchase','Completed','2019-10-01 11:25:14','2019-10-01 11:25:14',NULL),(1338,19,1.00,'S','File Service: audi a1 1','Completed','2019-10-01 11:27:32','2019-10-01 11:27:32',NULL),(1339,23,1.00,'A','Tuning credits purchase','Completed','2019-10-01 14:38:53','2019-10-01 14:38:53',NULL),(1340,23,1.00,'S','File Service: FORD TRANSIT 8','Completed','2019-10-01 14:41:49','2019-10-01 14:41:49',NULL),(1341,24,1.33,'S','File Service: ford focus 2','Completed','2019-10-02 10:18:52','2019-10-02 10:18:52',NULL),(1342,102,0.70,'S','File Service: mini coopers any','Completed','2019-10-02 10:55:14','2019-10-02 10:55:14',NULL),(1343,45,1.00,'S','File Service: Nissan Xtrail 2008','Completed','2019-10-02 14:53:14','2019-10-02 14:53:14',NULL),(1344,100,1.00,'S','File Service: mercedes c250 coupe 2012','Completed','2019-10-02 15:42:24','2019-10-02 15:42:24',NULL),(1345,76,1.00,'A','Tuning credits purchase','Completed','2019-10-03 12:33:01','2019-10-03 12:33:01',NULL),(1346,76,1.00,'S','File Service: LANDROVER range rover sport 1','Completed','2019-10-03 12:35:24','2019-10-03 12:35:24',NULL),(1347,24,1.66,'S','File Service: audi a3 2','Completed','2019-10-03 15:01:11','2019-10-03 15:01:11',NULL),(1348,85,1.00,'A','Tuning credits purchase','Completed','2019-10-03 15:23:20','2019-10-03 15:23:20',NULL),(1349,85,1.00,'S','File Service: ford focus mk3','Completed','2019-10-03 15:24:39','2019-10-03 15:24:39',NULL),(1350,102,1.00,'S','File Service: BMW Z4 any','Completed','2019-10-04 05:39:13','2019-10-04 05:39:13',NULL),(1351,102,2.00,'A','Tuning credits purchase','Completed','2019-10-04 06:40:38','2019-10-04 06:40:38',NULL),(1352,102,1.00,'S','File Service: MERCEDES CLS any','Completed','2019-10-04 07:05:05','2019-10-04 07:05:05',NULL),(1353,45,10.00,'A','add credit 04/10/19','Completed','2019-10-04 11:19:27','2019-10-04 11:19:27',NULL),(1354,45,1.00,'S','File Service: VW Golf 7','Completed','2019-10-04 11:23:30','2019-10-04 11:23:30',NULL),(1355,102,1.00,'S','File Service: SMART FOURTWO PULSE ANY','Completed','2019-10-04 12:28:43','2019-10-04 12:28:43',NULL),(1356,19,1.00,'A','Tuning credits purchase','Completed','2019-10-07 07:12:09','2019-10-07 07:12:09',NULL),(1357,19,1.00,'S','File Service: skoda yeti 1','Completed','2019-10-07 07:14:05','2019-10-07 07:14:05',NULL),(1358,102,5.00,'A','Tuning credits purchase','Completed','2019-10-08 06:57:16','2019-10-08 06:57:16',NULL),(1359,102,1.00,'S','File Service: VW GOLF7 ANY','Completed','2019-10-08 07:08:54','2019-10-08 07:08:54',NULL),(1360,102,1.00,'S','File Service: CITROEN BERLINGO ANY','Completed','2019-10-08 07:16:51','2019-10-08 07:16:51',NULL),(1361,76,1.00,'A','Tuning credits purchase','Completed','2019-10-08 07:36:22','2019-10-08 07:36:22',NULL),(1362,76,1.00,'S','File Service: vw golf 6','Completed','2019-10-08 07:37:56','2019-10-08 07:37:56',NULL),(1363,100,1.00,'S','File Service: ford transit 2016','Completed','2019-10-08 08:01:06','2019-10-08 08:01:06',NULL),(1364,76,1.00,'A','Tuning credits purchase','Completed','2019-10-08 09:46:03','2019-10-08 09:46:03',NULL),(1365,76,1.00,'S','File Service: FORD TRANSIT 7','Completed','2019-10-08 09:48:03','2019-10-08 09:48:03',NULL),(1366,27,1.00,'A','Tuning credits purchase','Completed','2019-10-08 10:04:47','2019-10-08 10:04:47',NULL),(1367,27,1.00,'S','File Service: mercedes c200 mk1','Completed','2019-10-08 10:10:24','2019-10-08 10:10:24',NULL),(1368,100,1.00,'S','File Service: mercedes sprinter 313 2010','Completed','2019-10-08 10:58:43','2019-10-08 10:58:43',NULL),(1369,45,1.00,'S','File Service: Ford Galaxy mk2','Completed','2019-10-09 07:14:23','2019-10-09 07:14:23',NULL),(1370,19,1.00,'A','Tuning credits purchase','Completed','2019-10-09 07:28:24','2019-10-09 07:28:24',NULL),(1371,121,1.00,'S','File Service: vw golf 6','Completed','2019-10-09 07:29:44','2019-10-09 07:29:44',NULL),(1372,19,1.00,'S','File Service: vw golf 6','Completed','2019-10-09 07:31:29','2019-10-09 07:31:29',NULL),(1373,30,1.00,'A','Tuning credits purchase','Completed','2019-10-09 07:38:02','2019-10-09 07:38:02',NULL),(1374,102,1.00,'S','File Service: Mercedes SPRINTER ANY','Completed','2019-10-09 08:08:53','2019-10-09 08:08:53',NULL),(1375,100,1.00,'S','File Service: VW caddy 2013','Completed','2019-10-09 08:40:40','2019-10-09 08:40:40',NULL),(1376,19,2.00,'A','Tuning credits purchase','Completed','2019-10-09 09:02:38','2019-10-09 09:02:38',NULL),(1377,19,1.33,'S','File Service: ford transit MK7','Completed','2019-10-09 09:05:03','2019-10-09 09:05:03',NULL),(1378,30,1.00,'S','File Service: Volkswagen Passat 2017','Completed','2019-10-09 09:39:58','2019-10-09 09:39:58',NULL),(1379,102,1.00,'S','File Service: NISSAN NAVARA ANY','Completed','2019-10-09 10:50:59','2019-10-09 10:50:59',NULL),(1380,27,1.00,'A','Tuning credits purchase','Completed','2019-10-09 11:03:09','2019-10-09 11:03:09',NULL),(1381,27,1.00,'S','File Service: VW GOLF MK5','Completed','2019-10-09 11:05:27','2019-10-09 11:05:27',NULL),(1382,100,1.00,'S','File Service: vauxhall vivaro 2015','Completed','2019-10-09 11:09:58','2019-10-09 11:09:58',NULL),(1383,76,1.00,'A','Tuning credits purchase','Completed','2019-10-10 08:17:05','2019-10-10 08:17:05',NULL),(1384,76,1.00,'S','File Service: mercedes a 176 2104','Completed','2019-10-10 08:20:06','2019-10-10 08:20:06',NULL),(1385,23,1.00,'A','Tuning credits purchase','Completed','2019-10-10 08:23:56','2019-10-10 08:23:56',NULL),(1386,23,1.00,'S','File Service: FORD TRANSIT MK7','Completed','2019-10-10 08:26:19','2019-10-10 08:26:19',NULL),(1387,45,1.50,'S','File Service: Jaguar Xtype x800','Completed','2019-10-10 08:37:50','2019-10-10 08:37:50',NULL),(1388,19,0.08,'A','Free Credit','Completed','2019-10-10 08:41:18','2019-10-10 08:41:18',NULL),(1389,19,1.00,'S','File Service: vw sirroco 1st','Completed','2019-10-10 08:52:26','2019-10-10 08:52:26',NULL),(1390,45,1.00,'S','File Service: Jaguar Xtype X800``','Completed','2019-10-10 09:10:15','2019-10-10 09:10:15',NULL),(1391,45,1.00,'S','File Service: Peugeot Partner 2','Completed','2019-10-10 09:12:23','2019-10-10 09:12:23',NULL),(1392,100,1.00,'S','File Service: vw golf 2008','Completed','2019-10-10 10:32:59','2019-10-10 10:32:59',NULL),(1393,43,1.66,'S','File Service: VW Golf 1K','Completed','2019-10-10 12:49:27','2019-10-10 12:49:27',NULL),(1394,43,1.33,'S','File Service: Mercedes Sprinter 906','Completed','2019-10-10 16:11:45','2019-10-10 16:11:45',NULL),(1395,121,1.00,'S','File Service: suzuki grand vitara x','Completed','2019-10-10 17:35:05','2019-10-10 17:35:05',NULL),(1396,121,1.00,'S','File Service: vauxhall combo c','Completed','2019-10-10 20:46:43','2019-10-10 20:46:43',NULL),(1397,102,0.70,'S','File Service: MERCEDES SL350 ANY','Completed','2019-10-11 05:08:55','2019-10-11 05:08:55',NULL),(1398,45,1.00,'S','File Service: BMW 520 F11','Completed','2019-10-11 07:55:14','2019-10-11 07:55:14',NULL),(1399,24,1.66,'S','File Service: FIAT DUCATO 2','Completed','2019-10-11 08:47:53','2019-10-11 08:47:53',NULL),(1400,43,1.33,'S','File Service: VW Golf 1K1','Completed','2019-10-11 09:16:54','2019-10-11 09:16:54',NULL),(1401,76,1.00,'A','Tuning credits purchase','Completed','2019-10-11 10:01:17','2019-10-11 10:01:17',NULL),(1402,76,1.00,'S','File Service: opel vivaro a','Completed','2019-10-11 10:02:12','2019-10-11 10:02:12',NULL),(1403,100,1.00,'S','File Service: vw crafter 2015','Completed','2019-10-11 13:17:41','2019-10-11 13:17:41',NULL),(1404,45,1.00,'S','File Service: VW Caddy 2019','Completed','2019-10-11 13:38:08','2019-10-11 13:38:08',NULL),(1405,100,25.00,'A','add','Completed','2019-10-11 14:13:28','2019-10-11 14:13:28',NULL),(1406,29,2.00,'A','Tuning credits purchase','Completed','2019-10-12 08:46:06','2019-10-12 08:46:06',NULL),(1407,29,1.33,'S','File Service: ford transit kess v2','Completed','2019-10-12 09:03:23','2019-10-12 09:03:23',NULL),(1408,43,10.00,'A','add 12/10/19','Completed','2019-10-12 15:15:01','2019-10-12 15:15:01',NULL),(1409,43,1.00,'S','File Service: Ford Transit MK6','Completed','2019-10-12 15:40:40','2019-10-12 15:40:40',NULL),(1410,43,1.33,'S','File Service: Vauxhall Vivaro MK2','Completed','2019-10-14 08:01:53','2019-10-14 08:01:53',NULL),(1411,23,1.00,'A','Tuning credits purchase','Completed','2019-10-14 09:01:15','2019-10-14 09:01:15',NULL),(1412,23,1.00,'S','File Service: ford transit mk7','Completed','2019-10-14 09:03:58','2019-10-14 09:03:58',NULL),(1413,19,2.00,'A','Tuning credits purchase','Completed','2019-10-14 11:04:10','2019-10-14 11:04:10',NULL),(1414,19,1.33,'S','File Service: citroen berlingo b9','Completed','2019-10-14 11:06:49','2019-10-14 11:06:49',NULL),(1415,100,1.00,'S','File Service: ford custom 2018','Completed','2019-10-15 07:49:46','2019-10-15 07:49:46',NULL),(1416,102,1.00,'S','File Service: CITROEN C4 ANY','Completed','2019-10-15 08:08:44','2019-10-15 08:08:44',NULL),(1417,76,1.00,'A','Tuning credits purchase','Completed','2019-10-15 08:48:06','2019-10-15 08:48:06',NULL),(1418,76,1.00,'S','File Service: ford courier 2016','Completed','2019-10-15 08:50:01','2019-10-15 08:50:01',NULL),(1419,100,1.00,'S','File Service: vauxhall vivaro 2015','Completed','2019-10-15 11:15:56','2019-10-15 11:15:56',NULL),(1420,76,1.00,'S','File Service: opel ASTRA 2011','Completed','2019-10-15 13:11:20','2019-10-15 13:11:20',NULL),(1421,43,1.33,'S','File Service: Peugeot Partner MK2','Completed','2019-10-15 13:13:17','2019-10-15 13:13:17',NULL),(1422,43,1.00,'S','File Service: Skoda Octavia MK2','Completed','2019-10-15 16:11:44','2019-10-15 16:11:44',NULL),(1423,102,2.00,'A','Tuning credits purchase','Completed','2019-10-16 05:53:42','2019-10-16 05:53:42',NULL),(1424,102,1.00,'S','File Service: Mitsubishi l200 ANY','Completed','2019-10-16 05:56:32','2019-10-16 05:56:32',NULL),(1425,100,1.00,'S','File Service: NISSAN navara 2011','Completed','2019-10-16 09:42:15','2019-10-16 09:42:15',NULL),(1426,121,0.70,'S','File Service: ford transit mk8','Completed','2019-10-16 11:44:47','2019-10-16 11:44:47',NULL),(1427,43,1.33,'A','Yealink Phone Refund','Completed','2019-10-16 13:42:58','2019-10-16 13:42:58',NULL),(1428,100,1.00,'S','File Service: AUDI a6 2014','Completed','2019-10-16 13:48:48','2019-10-16 13:48:48',NULL),(1429,43,1.66,'S','File Service: Ford S-MAx MK1','Completed','2019-10-17 09:02:12','2019-10-17 09:02:12',NULL),(1430,100,1.00,'S','File Service: ford transit 2015','Completed','2019-10-17 10:00:04','2019-10-17 10:00:04',NULL),(1431,100,1.00,'S','File Service: audi a3 2006','Completed','2019-10-17 10:23:01','2019-10-17 10:23:01',NULL),(1432,76,1.00,'A','Tuning credits purchase','Completed','2019-10-17 13:21:12','2019-10-17 13:21:12',NULL),(1433,76,1.00,'S','File Service: fprd ranger 2012','Completed','2019-10-17 13:24:05','2019-10-17 13:24:05',NULL),(1434,100,1.00,'S','File Service: ford ranger 2016','Completed','2019-10-17 14:37:58','2019-10-17 14:37:58',NULL),(1435,21,1.00,'A','Tuning credits purchase','Completed','2019-10-18 07:42:56','2019-10-18 07:42:56',NULL),(1436,21,1.00,'S','File Service: FORD TRANSIT 2013','Completed','2019-10-18 07:45:05','2019-10-18 07:45:05',NULL),(1437,102,1.00,'S','File Service: ISUZU DMAX ANY','Completed','2019-10-18 07:52:22','2019-10-18 07:52:22',NULL),(1438,102,1.00,'A','Tuning credits purchase','Completed','2019-10-18 08:10:45','2019-10-18 08:10:45',NULL),(1439,102,1.00,'S','File Service: MITSUBISHI FUSO ANY','Completed','2019-10-18 08:13:32','2019-10-18 08:13:32',NULL),(1440,100,1.00,'S','File Service: vw caddy 2014','Completed','2019-10-18 10:00:45','2019-10-18 10:00:45',NULL),(1441,19,2.00,'A','Tuning credits purchase','Completed','2019-10-18 11:49:08','2019-10-18 11:49:08',NULL),(1442,21,1.00,'A','Tuning credits purchase','Completed','2019-10-18 11:54:49','2019-10-18 11:54:49',NULL),(1443,21,1.00,'S','File Service: VW TRANSPORTER T5','Completed','2019-10-18 11:56:09','2019-10-18 11:56:09',NULL),(1444,19,1.00,'S','File Service: landrover defender 110','Completed','2019-10-18 11:58:18','2019-10-18 11:58:18',NULL),(1445,19,1.00,'S','File Service: NISSAN nv200 2nd','Completed','2019-10-18 12:38:54','2019-10-18 12:38:54',NULL),(1446,19,1.00,'A','Tuning credits purchase','Completed','2019-10-18 13:15:40','2019-10-18 13:15:40',NULL),(1447,19,1.33,'S','File Service: mercedes sprinter 906','Completed','2019-10-18 13:17:30','2019-10-18 13:17:30',NULL),(1448,102,1.00,'S','File Service: ISUZU DMAX ANY','Completed','2019-10-18 15:27:42','2019-10-18 15:27:42',NULL),(1449,111,1.00,'A','Tuning credits purchase','Completed','2019-10-19 06:17:19','2019-10-19 06:17:19',NULL),(1450,43,1.33,'S','File Service: Ford Mondeo 4th','Completed','2019-10-19 08:14:09','2019-10-19 08:14:09',NULL),(1451,121,1.00,'S','File Service: vw passat 6','Completed','2019-10-19 08:40:26','2019-10-19 08:40:26',NULL),(1452,111,1.00,'S','take away','Completed','2019-10-19 18:35:46','2019-10-19 18:35:46',NULL),(1453,24,1.00,'A','Tuning credits purchase','Completed','2019-10-21 10:18:52','2019-10-21 10:18:52',NULL),(1454,24,1.33,'S','File Service: audi a4 3','Completed','2019-10-21 10:20:00','2019-10-21 10:20:00',NULL),(1455,102,2.00,'A','Tuning credits purchase','Completed','2019-10-21 10:20:11','2019-10-21 10:20:11',NULL),(1456,102,1.00,'S','File Service: MITSUBISHI l200 ANY','Completed','2019-10-21 10:21:52','2019-10-21 10:21:52',NULL),(1457,19,1.00,'A','Tuning credits purchase','Completed','2019-10-21 10:35:28','2019-10-21 10:35:28',NULL),(1458,19,1.33,'S','File Service: vw golf mk7 r 7','Completed','2019-10-21 10:37:28','2019-10-21 10:37:28',NULL),(1459,100,1.00,'S','File Service: ford custom 2016','Completed','2019-10-21 12:52:38','2019-10-21 12:52:38',NULL),(1460,45,1.00,'S','File Service: Ford Transit MK7','Completed','2019-10-21 14:44:11','2019-10-21 14:44:11',NULL),(1461,76,1.00,'A','Tuning credits purchase','Completed','2019-10-22 09:40:32','2019-10-22 09:40:32',NULL),(1462,76,1.00,'S','File Service: bmw 535 e60','Completed','2019-10-22 10:16:48','2019-10-22 10:16:48',NULL),(1463,100,1.00,'S','File Service: ford connect 2015','Completed','2019-10-22 13:49:13','2019-10-22 13:49:13',NULL),(1464,21,1.00,'A','Tuning credits purchase','Completed','2019-10-23 06:54:20','2019-10-23 06:54:20',NULL),(1465,21,1.00,'S','File Service: VW TRANSPORTER T5','Completed','2019-10-23 06:56:16','2019-10-23 06:56:16',NULL),(1466,100,1.00,'S','File Service: vauxhall vivaro 2014','Completed','2019-10-23 08:36:47','2019-10-23 08:36:47',NULL),(1467,100,1.00,'S','File Service: citroen berlingo 2013','Completed','2019-10-23 12:26:15','2019-10-23 12:26:15',NULL),(1468,100,1.00,'S','File Service: ford custom 2015','Completed','2019-10-23 12:28:21','2019-10-23 12:28:21',NULL),(1469,43,1.00,'S','File Service: VW Touran MK2','Completed','2019-10-23 13:18:34','2019-10-23 13:18:34',NULL),(1470,100,1.00,'S','File Service: vw golf 2006','Completed','2019-10-23 15:16:22','2019-10-23 15:16:22',NULL),(1471,19,1.00,'A','Tuning credits purchase','Completed','2019-10-24 07:17:53','2019-10-24 07:17:53',NULL),(1472,19,1.00,'S','File Service: landrover discovery 3','Completed','2019-10-24 07:19:29','2019-10-24 07:19:29',NULL),(1473,19,2.00,'A','Tuning credits purchase','Completed','2019-10-24 09:08:25','2019-10-24 09:08:25',NULL),(1474,19,1.66,'S','File Service: vw golf 5','Completed','2019-10-24 09:19:28','2019-10-24 09:19:28',NULL),(1475,100,1.00,'S','File Service: audi a6 2006','Completed','2019-10-24 10:40:24','2019-10-24 10:40:24',NULL),(1476,100,1.00,'S','File Service: audi a3 2007','Completed','2019-10-24 16:02:04','2019-10-24 16:02:04',NULL),(1477,100,1.00,'S','File Service: vw golf 2007','Completed','2019-10-24 16:22:12','2019-10-24 16:22:12',NULL),(1478,76,1.00,'A','Tuning credits purchase','Completed','2019-10-25 07:59:29','2019-10-25 07:59:29',NULL),(1479,76,1.00,'S','File Service: vw tiguan 2009','Completed','2019-10-25 08:01:01','2019-10-25 08:01:01',NULL),(1480,100,1.00,'S','File Service: vw caddy 2010','Completed','2019-10-25 09:40:24','2019-10-25 09:40:24',NULL),(1481,43,1.00,'S','File Service: Mercedes E300 Hybrid W212','Completed','2019-10-25 10:43:53','2019-10-25 10:43:53',NULL),(1482,43,1.33,'S','File Service: BMW 325D E90','Completed','2019-10-25 13:00:10','2019-10-25 13:00:10',NULL),(1483,45,1.00,'S','File Service: BMW 640 F06','Completed','2019-10-26 08:08:05','2019-10-26 08:08:05',NULL),(1484,43,10.00,'A','add 26/10/19','Completed','2019-10-26 09:02:45','2019-10-26 09:02:45',NULL),(1485,43,1.66,'S','File Service: Ford S-max MK1','Completed','2019-10-26 09:51:29','2019-10-26 09:51:29',NULL),(1486,74,1.00,'S','File Service: FORD TRANSIT custom MK7','Completed','2019-10-26 13:13:07','2019-10-26 13:13:07',NULL),(1487,100,1.00,'S','File Service: audi a3 2006','Completed','2019-10-28 11:30:38','2019-10-28 11:30:38',NULL),(1488,121,1.00,'S','File Service: ford ranger 2','Completed','2019-10-28 13:26:42','2019-10-28 13:26:42',NULL),(1489,45,1.00,'S','File Service: BMW 530D F10','Completed','2019-10-28 16:24:01','2019-10-28 16:24:01',NULL),(1490,100,1.00,'S','File Service: bmw 530d 2007','Completed','2019-10-28 17:57:52','2019-10-28 17:57:52',NULL),(1491,19,1.00,'A','Tuning credits purchase','Completed','2019-10-29 09:14:40','2019-10-29 09:14:40',NULL),(1492,19,1.00,'S','File Service: ford connect 1st','Completed','2019-10-29 09:16:30','2019-10-29 09:16:30',NULL),(1493,43,1.00,'S','File Service: Ford Transit TTF','Completed','2019-10-29 10:17:29','2019-10-29 10:17:29',NULL),(1494,121,1.00,'S','File Service: vauxhall zafira 2','Completed','2019-10-29 10:30:49','2019-10-29 10:30:49',NULL),(1495,100,1.00,'S','File Service: bmw 33d 2006','Completed','2019-10-29 10:51:35','2019-10-29 10:51:35',NULL),(1496,43,2.00,'S','File Service: mercedes ML63 W166','Completed','2019-10-29 13:04:15','2019-10-29 13:04:15',NULL),(1497,19,2.00,'A','Tuning credits purchase','Completed','2019-10-30 09:09:05','2019-10-30 09:09:05',NULL),(1498,19,1.00,'S','File Service: vauxhall vivaro 3','Completed','2019-10-30 09:21:40','2019-10-30 09:21:40',NULL),(1499,19,1.00,'S','File Service: merc sprinter 316','Completed','2019-10-30 10:23:07','2019-10-30 10:23:07',NULL),(1500,100,1.00,'S','File Service: mercedes s320 2003','Completed','2019-10-30 14:10:55','2019-10-30 14:10:55',NULL),(1501,100,1.00,'S','File Service: izuzu d max 2012','Completed','2019-10-30 14:49:27','2019-10-30 14:49:27',NULL),(1502,19,1.00,'A','Tuning credits purchase','Completed','2019-10-30 15:30:47','2019-10-30 15:30:47',NULL),(1503,19,1.33,'S','File Service: vauxhall combo 3','Completed','2019-10-30 15:33:18','2019-10-30 15:33:18',NULL),(1504,102,1.00,'S','File Service: toyota urban cruise ANY','Completed','2019-10-31 10:48:20','2019-10-31 10:48:20',NULL),(1505,102,1.00,'S','File Service: toyota urban cruise ANY','Completed','2019-10-31 13:30:14','2019-10-31 13:30:14',NULL),(1506,45,1.00,'S','File Service: Vauxhall Astra J','Completed','2019-10-31 16:00:33','2019-10-31 16:00:33',NULL),(1507,76,1.00,'A','Tuning credits purchase','Completed','2019-11-01 12:12:41','2019-11-01 12:12:41',NULL),(1508,76,1.00,'S','File Service: LANDROVER defender 2011','Completed','2019-11-01 12:15:36','2019-11-01 12:15:36',NULL),(1510,76,1.00,'A','Tuning credits purchase','Completed','2019-11-02 08:22:20','2019-11-02 08:22:20',NULL),(1511,76,1.00,'S','File Service: ford cuatom 2016','Completed','2019-11-02 08:23:24','2019-11-02 08:23:24',NULL),(1512,43,6.00,'A','Add','Completed','2019-11-02 09:25:36','2019-11-02 09:25:36',NULL),(1513,100,1.00,'S','File Service: ford custom 2015','Completed','2019-11-02 11:37:42','2019-11-02 11:37:42',NULL),(1514,100,25.00,'A','add','Completed','2019-11-02 12:03:55','2019-11-02 12:03:55',NULL),(1515,43,1.00,'S','File Service: Audi A3 8V','Completed','2019-11-02 13:29:32','2019-11-02 13:29:32',NULL),(1516,100,1.00,'S','File Service: BMW 116D 2009','Completed','2019-11-02 15:57:46','2019-11-02 15:57:46',NULL),(1517,45,10.00,'A','4/11/19','Completed','2019-11-04 08:59:42','2019-11-04 08:59:42',NULL),(1518,21,1.00,'A','Tuning credits purchase','Completed','2019-11-04 09:04:24','2019-11-04 09:04:24',NULL),(1519,21,1.00,'S','File Service: audi a4 2010','Completed','2019-11-04 09:05:58','2019-11-04 09:05:58',NULL),(1520,45,1.00,'S','File Service: Mercedes Sprinter 313','Completed','2019-11-04 09:08:00','2019-11-04 09:08:00',NULL),(1523,29,0.13,'A','add','Completed','2019-11-04 14:43:19','2019-11-04 14:43:19',NULL),(1524,76,1.00,'A','Tuning credits purchase','Completed','2019-11-04 17:41:02','2019-11-04 17:41:02',NULL),(1525,76,1.00,'S','File Service: FORD ranger 2008','Completed','2019-11-04 17:42:19','2019-11-04 17:42:19',NULL),(1526,121,1.00,'S','File Service: ford connect 7','Completed','2019-11-06 11:41:13','2019-11-06 11:41:13',NULL),(1527,19,1.00,'A','Tuning credits purchase','Completed','2019-11-06 13:52:47','2019-11-06 13:52:47',NULL),(1528,19,1.00,'S','File Service: lexus is220d x','Completed','2019-11-06 13:54:33','2019-11-06 13:54:33',NULL),(1529,100,1.00,'S','File Service: VW transporter 2017','Completed','2019-11-06 15:40:14','2019-11-06 15:40:14',NULL),(1530,19,1.00,'A','Tuning credits purchase','Completed','2019-11-06 16:23:39','2019-11-06 16:23:39',NULL),(1531,19,1.00,'S','File Service: ford connect 3rd','Completed','2019-11-06 16:26:52','2019-11-06 16:26:52',NULL),(1532,45,1.33,'S','File Service: Citreon DS5 2013','Completed','2019-11-07 09:47:31','2019-11-07 09:47:31',NULL),(1533,100,1.00,'S','File Service: volvo c30 2010','Completed','2019-11-07 11:02:13','2019-11-07 11:02:13',NULL),(1534,43,1.00,'S','File Service: VW Golf MK5','Completed','2019-11-07 11:21:19','2019-11-07 11:21:19',NULL),(1535,100,1.00,'S','File Service: ford connect 2007','Completed','2019-11-08 11:25:01','2019-11-08 11:25:01',NULL),(1536,100,1.00,'S','File Service: FORD ranger 2013','Completed','2019-11-08 11:34:17','2019-11-08 11:34:17',NULL),(1537,21,1.00,'A','Tuning credits purchase','Completed','2019-11-08 11:36:56','2019-11-08 11:36:56',NULL),(1538,21,1.00,'S','File Service: VW TRANSPORTER T6 T6','Completed','2019-11-08 11:38:48','2019-11-08 11:38:48',NULL),(1539,100,1.00,'S','File Service: bmw 330d 2011','Completed','2019-11-08 11:41:45','2019-11-08 11:41:45',NULL),(1540,19,2.00,'A','Tuning credits purchase','Completed','2019-11-08 11:48:46','2019-11-08 11:48:46',NULL),(1541,19,2.00,'S','File Service: ford fiesta 6','Completed','2019-11-08 11:51:30','2019-11-08 11:51:30',NULL),(1542,100,1.00,'S','File Service: seat leon fr 2013','Completed','2019-11-08 12:14:50','2019-11-08 12:14:50',NULL),(1543,19,1.00,'A','Tuning credits purchase','Completed','2019-11-08 13:37:20','2019-11-08 13:37:20',NULL),(1544,19,1.00,'A','Tuning credits purchase','Completed','2019-11-08 13:38:04','2019-11-08 13:38:04',NULL),(1545,19,1.00,'S','File Service: landrover freelander 2nd','Completed','2019-11-08 13:39:53','2019-11-08 13:39:53',NULL),(1546,121,1.00,'S','File Service: audi a3 5','Completed','2019-11-08 15:01:30','2019-11-08 15:01:30',NULL),(1547,45,1.33,'S','File Service: VW Golf 6','Completed','2019-11-08 16:23:44','2019-11-08 16:23:44',NULL),(1548,100,1.00,'S','File Service: AUDI S3 2014','Completed','2019-11-09 10:48:33','2019-11-09 10:48:33',NULL),(1549,111,2.00,'A','Tuning credits purchase','Completed','2019-11-09 12:50:13','2019-11-09 12:50:13',NULL),(1550,111,2.00,'S','take away','Completed','2019-11-09 19:22:51','2019-11-09 19:22:51',NULL),(1551,100,1.00,'S','File Service: vw transporter 2004','Completed','2019-11-10 10:17:18','2019-11-10 10:17:18',NULL),(1552,100,1.00,'S','File Service: VOLVO C30 2008','Completed','2019-11-10 10:29:35','2019-11-10 10:29:35',NULL),(1553,43,1.00,'S','File Service: Renault Master MK3','Completed','2019-11-11 11:15:29','2019-11-11 11:15:29',NULL),(1554,45,1.00,'S','File Service: JeepP Wrangler 2016','Completed','2019-11-11 15:15:12','2019-11-11 15:15:12',NULL),(1555,111,1.00,'A','Tuning credits purchase','Completed','2019-11-11 17:16:44','2019-11-11 17:16:44',NULL),(1556,43,1.33,'S','File Service: VW Transporter T5','Completed','2019-11-11 17:28:34','2019-11-11 17:28:34',NULL),(1557,19,1.00,'S','File Service: skoda octavia 1','Completed','2019-11-12 10:47:13','2019-11-12 10:47:13',NULL),(1558,111,2.00,'S','take away','Completed','2019-11-12 11:28:31','2019-11-12 11:28:31',NULL),(1559,111,2.00,'A','Tuning credits purchase','Completed','2019-11-12 11:41:48','2019-11-12 11:41:48',NULL),(1560,45,1.33,'S','File Service: Mercedes Citan 2015','Completed','2019-11-12 13:12:03','2019-11-12 13:12:03',NULL),(1561,19,1.00,'A','Tuning credits purchase','Completed','2019-11-12 16:08:23','2019-11-12 16:08:23',NULL),(1562,19,1.00,'S','File Service: ford transit mk6','Completed','2019-11-12 16:14:10','2019-11-12 16:14:10',NULL),(1563,45,1.00,'S','File Service: Lexus Is220 2009','Completed','2019-11-12 16:49:51','2019-11-12 16:49:51',NULL),(1564,19,1.00,'A','Tuning credits purchase','Completed','2019-11-13 10:47:21','2019-11-13 10:47:21',NULL),(1565,19,1.00,'S','File Service: landrover rr sport 1st','Completed','2019-11-13 10:49:30','2019-11-13 10:49:30',NULL),(1566,19,1.00,'A','Tuning credits purchase','Completed','2019-11-13 11:59:57','2019-11-13 11:59:57',NULL),(1567,19,1.00,'S','File Service: landrover rr sport 1','Completed','2019-11-13 12:04:19','2019-11-13 12:04:19',NULL),(1568,121,1.33,'S','File Service: land rover defender td5','Completed','2019-11-13 14:50:19','2019-11-13 14:50:19',NULL),(1569,121,0.33,'A','add','Completed','2019-11-13 15:08:28','2019-11-13 15:08:28',NULL),(1570,100,1.00,'S','File Service: audi a3 2008','Completed','2019-11-13 16:36:31','2019-11-13 16:36:31',NULL),(1571,121,1.00,'S','File Service: peugeot partner 2','Completed','2019-11-13 16:50:07','2019-11-13 16:50:07',NULL),(1572,19,2.00,'A','Tuning credits purchase','Completed','2019-11-14 08:35:33','2019-11-14 08:35:33',NULL),(1573,19,1.00,'S','File Service: ford kuga 1','Completed','2019-11-14 08:36:47','2019-11-14 08:36:47',NULL),(1574,19,1.00,'S','File Service: landrover range rover sport 1','Completed','2019-11-14 08:38:41','2019-11-14 08:38:41',NULL),(1575,102,2.00,'A','Tuning credits purchase','Completed','2019-11-14 08:50:33','2019-11-14 08:50:33',NULL),(1576,102,1.00,'S','File Service: mercedes e class ANY','Completed','2019-11-14 08:52:52','2019-11-14 08:52:52',NULL),(1577,43,1.00,'S','File Service: Ford Focus MK3','Completed','2019-11-14 09:44:05','2019-11-14 09:44:05',NULL),(1578,100,1.00,'S','File Service: vw tiguan 2016','Completed','2019-11-14 10:14:33','2019-11-14 10:14:33',NULL),(1579,100,1.00,'S','File Service: AUDI A3 2012','Completed','2019-11-14 10:54:56','2019-11-14 10:54:56',NULL),(1580,100,1.00,'S','File Service: izuzu d max 2012','Completed','2019-11-14 11:58:38','2019-11-14 11:58:38',NULL),(1581,45,1.33,'S','File Service: VW Golf 6','Completed','2019-11-15 08:11:15','2019-11-15 08:11:15',NULL),(1582,45,1.00,'S','File Service: VW Golf 6','Completed','2019-11-15 09:15:02','2019-11-15 09:15:02',NULL),(1583,45,5.00,'A','add 15/11/19','Completed','2019-11-15 12:20:24','2019-11-15 12:20:24',NULL),(1584,100,1.00,'S','File Service: ford c max 2010','Completed','2019-11-15 12:25:33','2019-11-15 12:25:33',NULL),(1585,43,10.00,'A','add 15/11/19','Completed','2019-11-15 14:40:28','2019-11-15 14:40:28',NULL),(1586,45,1.00,'S','File Service: Nissan Juke 2013','Completed','2019-11-15 15:58:01','2019-11-15 15:58:01',NULL),(1587,43,1.00,'S','File Service: Jaguar X-Type X400','Completed','2019-11-15 16:03:28','2019-11-15 16:03:28',NULL),(1588,45,1.00,'S','File Service: Citreon Relay 2014','Completed','2019-11-16 10:10:38','2019-11-16 10:10:38',NULL),(1589,100,1.00,'S','File Service: mercedes c250 coupe 2014','Completed','2019-11-16 11:00:19','2019-11-16 11:00:19',NULL),(1590,100,1.00,'S','File Service: mercedes e200 2010','Completed','2019-11-16 12:00:08','2019-11-16 12:00:08',NULL),(1591,100,1.00,'S','File Service: vw scirocco 2010','Completed','2019-11-16 13:49:03','2019-11-16 13:49:03',NULL),(1592,100,1.00,'S','File Service: bmw 116d 2014','Completed','2019-11-16 14:15:07','2019-11-16 14:15:07',NULL),(1593,19,2.00,'A','Tuning credits purchase','Completed','2019-11-18 10:31:51','2019-11-18 10:31:51',NULL),(1594,19,1.00,'S','File Service: vw crafter 2nd','Completed','2019-11-18 10:33:31','2019-11-18 10:33:31',NULL),(1595,100,1.00,'S','File Service: audi sq5 2015','Completed','2019-11-18 10:35:03','2019-11-18 10:35:03',NULL),(1596,24,1.00,'A','Tuning credits purchase','Completed','2019-11-18 10:49:30','2019-11-18 10:49:30',NULL),(1597,24,1.00,'S','File Service: renault traffic 2','Completed','2019-11-18 10:51:03','2019-11-18 10:51:03',NULL),(1598,111,1.00,'S','take away','Completed','2019-11-18 11:40:43','2019-11-18 11:40:43',NULL),(1599,19,1.00,'S','File Service: ford transit MK7','Completed','2019-11-18 11:44:05','2019-11-18 11:44:05',NULL),(1600,76,1.00,'A','Tuning credits purchase','Completed','2019-11-18 11:46:28','2019-11-18 11:46:28',NULL),(1601,76,1.00,'S','File Service: ford transit 7','Completed','2019-11-18 11:48:49','2019-11-18 11:48:49',NULL),(1602,121,1.00,'S','File Service: audi a3 1','Completed','2019-11-18 14:10:41','2019-11-18 14:10:41',NULL),(1603,102,0.70,'S','File Service: mercedes ml ANY','Completed','2019-11-18 14:50:03','2019-11-18 14:50:03',NULL),(1604,102,0.70,'A','add','Completed','2019-11-18 14:55:24','2019-11-18 14:55:24',NULL),(1605,43,1.00,'S','File Service: VW Transporter T5','Completed','2019-11-18 17:29:55','2019-11-18 17:29:55',NULL),(1606,43,0.33,'S','egr option on T5','Completed','2019-11-18 19:10:20','2019-11-18 19:10:20',NULL),(1607,76,1.00,'A','Tuning credits purchase','Completed','2019-11-19 10:15:38','2019-11-19 10:15:38',NULL),(1608,76,1.00,'S','File Service: ford transit 2014','Completed','2019-11-19 10:16:55','2019-11-19 10:16:55',NULL),(1609,19,1.00,'A','Tuning credits purchase','Completed','2019-11-19 11:11:47','2019-11-19 11:11:47',NULL),(1610,19,1.00,'S','File Service: ford transit custom','Completed','2019-11-19 11:19:47','2019-11-19 11:19:47',NULL),(1611,102,1.00,'S','take away','Completed','2019-11-19 14:59:34','2019-11-19 14:59:34',NULL),(1612,43,1.00,'S','File Service: Ford Kuga MK2','Completed','2019-11-20 10:22:04','2019-11-20 10:22:04',NULL),(1613,43,1.00,'S','File Service: Audi Q5 8RB','Completed','2019-11-20 12:21:14','2019-11-20 12:21:14',NULL),(1614,19,2.00,'A','Tuning credits purchase','Completed','2019-11-20 12:41:42','2019-11-20 12:41:42',NULL),(1615,19,1.33,'S','File Service: skoda octavia 2','Completed','2019-11-20 13:07:56','2019-11-20 13:07:56',NULL),(1616,111,1.00,'S','take away','Completed','2019-11-20 13:14:50','2019-11-20 13:14:50',NULL),(1617,100,1.00,'S','File Service: bmw 330d 2008','Completed','2019-11-20 16:12:34','2019-11-20 16:12:34',NULL),(1618,102,2.00,'A','Tuning credits purchase','Completed','2019-11-20 16:21:40','2019-11-20 16:21:40',NULL),(1619,102,1.00,'S','File Service: mercedes e class ANY','Completed','2019-11-20 16:23:29','2019-11-20 16:23:29',NULL),(1620,102,1.00,'S','File Service: honda crv ANY','Completed','2019-11-21 08:37:25','2019-11-21 08:37:25',NULL),(1621,45,1.00,'S','File Service: Ford Kuga 2','Completed','2019-11-21 09:00:11','2019-11-21 09:00:11',NULL),(1622,100,1.00,'S','File Service: mercedes e250 2014','Completed','2019-11-21 10:11:33','2019-11-21 10:11:33',NULL),(1623,100,1.00,'S','File Service: VW transporter 2017','Completed','2019-11-21 11:30:30','2019-11-21 11:30:30',NULL),(1624,100,1.00,'S','File Service: vw transporter 2011','Completed','2019-11-21 11:39:15','2019-11-21 11:39:15',NULL),(1625,19,1.00,'A','Tuning credits purchase','Completed','2019-11-21 12:00:48','2019-11-21 12:00:48',NULL),(1626,19,1.33,'S','File Service: skoda octavia 2','Completed','2019-11-21 12:02:30','2019-11-21 12:02:30',NULL),(1627,85,1.00,'A','Tuning credits purchase','Completed','2019-11-21 12:33:53','2019-11-21 12:33:53',NULL),(1628,85,1.00,'S','File Service: ford focus not sure','Completed','2019-11-21 12:34:56','2019-11-21 12:34:56',NULL),(1629,94,0.00,'S','File Service: ford transit 6','Completed','2019-11-21 12:52:54','2019-11-21 12:52:54',NULL),(1630,94,2.00,'A','Tuning credits purchase','Completed','2019-11-21 14:29:23','2019-11-21 14:29:23',NULL),(1631,100,1.00,'S','File Service: skoda octavia greenline 2015','Completed','2019-11-21 14:33:50','2019-11-21 14:33:50',NULL),(1632,94,2.00,'S','File Service: ford transit 6','Completed','2019-11-21 14:43:09','2019-11-21 14:43:09',NULL),(1633,94,0.66,'A','refund part Credit','Completed','2019-11-21 15:31:33','2019-11-21 15:31:33',NULL),(1634,19,1.00,'A','Tuning credits purchase','Completed','2019-11-21 15:46:03','2019-11-21 15:46:03',NULL),(1635,19,1.00,'S','File Service: vw golf mk6','Completed','2019-11-21 15:49:40','2019-11-21 15:49:40',NULL),(1636,23,2.00,'A','Tuning credits purchase','Completed','2019-11-21 16:39:11','2019-11-21 16:39:11',NULL),(1637,23,1.33,'S','File Service: range rover evoque 2','Completed','2019-11-21 16:42:02','2019-11-21 16:42:02',NULL),(1638,43,1.00,'S','File Service: Mercedes E350 C207','Completed','2019-11-21 16:55:52','2019-11-21 16:55:52',NULL),(1639,45,1.00,'S','File Service: Nissan Quasquai 2011','Completed','2019-11-21 16:56:08','2019-11-21 16:56:08',NULL),(1640,70,1.00,'S','File Service: cvxxcv xcvxvc xcvxxcvx','Completed','2019-11-21 19:04:10','2019-11-21 19:04:10',NULL),(1641,102,2.00,'A','Tuning credits purchase','Completed','2019-11-22 08:49:18','2019-11-22 08:49:18',NULL),(1642,102,0.70,'S','File Service: mercedes cclass w205 ANY','Completed','2019-11-22 08:51:37','2019-11-22 08:51:37',NULL),(1643,102,1.00,'S','File Service: honda crv ANY','Completed','2019-11-22 09:02:01','2019-11-22 09:02:01',NULL),(1644,121,1.00,'S','File Service: audi a6 2','Completed','2019-11-22 09:59:48','2019-11-22 09:59:48',NULL),(1645,102,0.30,'S','take away','Completed','2019-11-22 10:19:42','2019-11-22 10:19:42',NULL),(1646,100,1.00,'S','File Service: ford mondeo 2008','Completed','2019-11-22 16:32:09','2019-11-22 16:32:09',NULL),(1647,43,1.00,'S','File Service: Ford Ranger MK2','Completed','2019-11-22 19:08:37','2019-11-22 19:08:37',NULL),(1648,43,1.00,'S','File Service: Jaguar XJ_L X351','Completed','2019-11-22 21:09:20','2019-11-22 21:09:20',NULL),(1649,43,1.33,'S','File Service: Iveco Daily 70C','Completed','2019-11-22 21:38:36','2019-11-22 21:38:36',NULL),(1650,100,25.00,'A','add','Completed','2019-11-24 10:41:00','2019-11-24 10:41:00',NULL),(1651,121,20.00,'A','add','Completed','2019-11-24 10:42:01','2019-11-24 10:42:01',NULL),(1652,100,1.00,'S','File Service: seat leon 2007','Completed','2019-11-24 11:01:07','2019-11-24 11:01:07',NULL),(1653,43,1.00,'S','File Service: Jaguar XF X351','Completed','2019-11-25 15:40:47','2019-11-25 15:40:47',NULL),(1654,100,1.00,'S','File Service: skoda superb 2012','Completed','2019-11-25 16:04:36','2019-11-25 16:04:36',NULL),(1655,70,1.00,'S','File Service: dq dwdqd qwdqwdd','Completed','2019-11-25 17:47:22','2019-11-25 17:47:22',NULL),(1656,45,1.00,'S','File Service: VW Caddy 2012','Completed','2019-11-26 08:59:43','2019-11-26 08:59:43',NULL),(1657,102,1.00,'A','Tuning credits purchase','Completed','2019-11-26 10:03:39','2019-11-26 10:03:39',NULL),(1658,102,1.00,'S','File Service: opel zafirab ANY','Completed','2019-11-26 10:05:24','2019-11-26 10:05:24',NULL),(1659,70,1.00,'S','File Service: nnn nnn nn','Completed','2019-11-26 12:23:26','2019-11-26 12:23:26',NULL),(1660,100,1.00,'S','File Service: ford tourneo custom 2014','Completed','2019-11-26 12:41:06','2019-11-26 12:41:06',NULL),(1661,27,2.00,'A','Tuning credits purchase','Completed','2019-11-26 12:44:58','2019-11-26 12:44:58',NULL),(1662,27,1.00,'S','File Service: FORD RANGER MK1','Completed','2019-11-26 12:50:50','2019-11-26 12:50:50',NULL),(1663,27,1.00,'S','File Service: VW GOLF MK4','Completed','2019-11-26 12:54:10','2019-11-26 12:54:10',NULL),(1664,100,17.00,'A','add','Completed','2019-11-26 13:41:23','2019-11-26 13:41:23',NULL),(1665,100,1.00,'S','File Service: toyota hi lux 2009','Completed','2019-11-26 14:16:27','2019-11-26 14:16:27',NULL),(1666,100,1.00,'A','add','Completed','2019-11-26 14:53:17','2019-11-26 14:53:17',NULL),(1667,100,1.00,'S','File Service: range rover evoque 2011','Completed','2019-11-26 16:21:06','2019-11-26 16:21:06',NULL),(1668,100,1.00,'S','File Service: nissan juke 2014','Completed','2019-11-26 16:26:56','2019-11-26 16:26:56',NULL),(1669,100,1.00,'S','File Service: ford custom 2018','Completed','2019-11-27 10:00:49','2019-11-27 10:00:49',NULL),(1670,29,1.00,'S','File Service: renault trafic bosch','Completed','2019-11-27 14:18:00','2019-11-27 14:18:00',NULL),(1671,100,1.00,'S','File Service: vauxhall insignia 2011','Completed','2019-11-27 15:23:57','2019-11-27 15:23:57',NULL),(1672,121,1.00,'S','File Service: vw jetta 2','Completed','2019-11-27 15:59:24','2019-11-27 15:59:24',NULL),(1673,45,10.00,'A','add 27/11/19','Completed','2019-11-27 17:09:15','2019-11-27 17:09:15',NULL),(1674,102,2.00,'A','Tuning credits purchase','Completed','2019-11-28 08:19:16','2019-11-28 08:19:16',NULL),(1675,102,1.00,'S','File Service: mazda cx5 ANY','Completed','2019-11-28 08:21:37','2019-11-28 08:21:37',NULL),(1676,19,1.00,'A','Tuning credits purchase','Completed','2019-11-28 09:22:31','2019-11-28 09:22:31',NULL),(1677,19,1.00,'S','File Service: landrover disco3 3','Completed','2019-11-28 09:25:31','2019-11-28 09:25:31',NULL),(1678,76,1.00,'A','Tuning credits purchase','Completed','2019-11-28 09:34:18','2019-11-28 09:34:18',NULL),(1679,76,1.00,'S','File Service: bmw m5 2012','Completed','2019-11-28 09:38:46','2019-11-28 09:38:46',NULL),(1680,43,10.00,'A','add 28/11/19','Completed','2019-11-28 11:09:02','2019-11-28 11:09:02',NULL),(1681,121,1.00,'S','File Service: audi tt 2','Completed','2019-11-28 11:13:39','2019-11-28 11:13:39',NULL),(1682,100,1.00,'S','File Service: ford custom 2014','Completed','2019-11-28 11:24:38','2019-11-28 11:24:38',NULL),(1683,43,2.32,'S','File Service: Ford Transit TT9','Completed','2019-11-28 11:28:00','2019-11-28 11:28:00',NULL),(1684,100,1.00,'S','File Service: ford custom 2018','Completed','2019-11-28 12:50:15','2019-11-28 12:50:15',NULL),(1685,76,1.00,'A','Tuning credits purchase','Completed','2019-11-28 13:17:06','2019-11-28 13:17:06',NULL),(1686,76,1.00,'S','File Service: VW PASSAT 2008','Completed','2019-11-28 13:18:49','2019-11-28 13:18:49',NULL),(1687,29,1.00,'A','Tuning credits purchase','Completed','2019-11-28 13:18:57','2019-11-28 13:18:57',NULL),(1688,100,1.00,'S','File Service: ford transit 2011','Completed','2019-11-28 13:22:49','2019-11-28 13:22:49',NULL),(1689,29,1.00,'S','File Service: ford transit connect','Completed','2019-11-28 13:26:48','2019-11-28 13:26:48',NULL),(1690,30,1.00,'A','Tuning credits purchase','Completed','2019-11-28 14:16:07','2019-11-28 14:16:07',NULL),(1691,30,1.00,'S','File Service: volvo s40 1st','Completed','2019-11-28 14:23:34','2019-11-28 14:23:34',NULL),(1692,23,1.00,'A','Tuning credits purchase','Completed','2019-11-28 14:34:31','2019-11-28 14:34:31',NULL),(1693,23,1.33,'S','File Service: ford transit custom 7','Completed','2019-11-28 14:36:33','2019-11-28 14:36:33',NULL),(1694,100,1.00,'S','File Service: ford custom 2018','Completed','2019-11-28 21:40:05','2019-11-28 21:40:05',NULL),(1695,100,1.00,'S','File Service: ford ranger 2017','Completed','2019-11-28 21:41:33','2019-11-28 21:41:33',NULL),(1696,100,1.00,'S','File Service: mitsubishi outlander 2018','Completed','2019-11-28 21:43:13','2019-11-28 21:43:13',NULL),(1697,45,1.00,'S','File Service: Ford Transit Custom','Completed','2019-11-29 10:07:45','2019-11-29 10:07:45',NULL),(1698,45,1.00,'S','File Service: Ford Transit Custom BD15 KFO','Completed','2019-11-29 10:24:36','2019-11-29 10:24:36',NULL),(1699,76,1.00,'A','Tuning credits purchase','Completed','2019-11-29 12:54:40','2019-11-29 12:54:40',NULL),(1700,76,1.00,'S','File Service: mitsubishi l200 2017','Completed','2019-11-29 12:55:42','2019-11-29 12:55:42',NULL),(1701,100,1.00,'S','File Service: vw golf 2010','Completed','2019-11-29 14:47:19','2019-11-29 14:47:19',NULL),(1702,100,1.00,'S','File Service: ford custom 2016','Completed','2019-11-29 15:07:38','2019-11-29 15:07:38',NULL),(1703,100,1.00,'S','File Service: 2019 ford transit courier','Completed','2019-11-29 16:04:47','2019-11-29 16:04:47',NULL),(1704,100,1.00,'S','File Service: vw golf 2013','Completed','2019-11-29 16:30:08','2019-11-29 16:30:08',NULL),(1705,100,1.00,'S','File Service: audi a4 2014','Completed','2019-11-29 16:36:33','2019-11-29 16:36:33',NULL),(1706,76,1.00,'A','Tuning credits purchase','Completed','2019-11-29 18:31:13','2019-11-29 18:31:13',NULL),(1707,76,1.00,'S','File Service: CITROEN RELAY 2013','Completed','2019-11-29 18:34:41','2019-11-29 18:34:41',NULL),(1708,74,1.00,'A','Tuning credits purchase','Completed','2019-11-29 20:14:03','2019-11-29 20:14:03',NULL),(1709,74,1.00,'S','File Service: FORD transit MK7','Completed','2019-11-29 20:20:38','2019-11-29 20:20:38',NULL),(1710,111,1.00,'A','add','Completed','2019-11-30 11:16:21','2019-11-30 11:16:21',NULL),(1711,76,1.00,'A','Tuning credits purchase','Completed','2019-11-30 12:57:37','2019-11-30 12:57:37',NULL),(1712,76,1.00,'S','File Service: mERCEDES SPRINTER 2016','Completed','2019-11-30 13:01:33','2019-11-30 13:01:33',NULL),(1713,100,1.00,'S','File Service: vauxhall insignia 2013','Completed','2019-11-30 16:27:21','2019-11-30 16:27:21',NULL),(1714,19,1.00,'A','Tuning credits purchase','Completed','2019-12-02 08:58:57','2019-12-02 08:58:57',NULL),(1715,19,1.00,'S','File Service: landrover freelander 2nd','Completed','2019-12-02 09:03:24','2019-12-02 09:03:24',NULL),(1716,121,10.00,'A','add','Completed','2019-12-02 09:11:44','2019-12-02 09:11:44',NULL),(1717,100,1.00,'S','File Service: mercedes c200 2011','Completed','2019-12-02 12:44:16','2019-12-02 12:44:16',NULL),(1718,29,1.00,'A','Tuning credits purchase','Completed','2019-12-02 14:43:51','2019-12-02 14:43:51',NULL),(1719,29,1.00,'S','File Service: vauxhall vivaro 3','Completed','2019-12-02 14:45:41','2019-12-02 14:45:41',NULL),(1720,102,1.00,'S','File Service: ISUZU nqr ANY','Completed','2019-12-03 06:23:49','2019-12-03 06:23:49',NULL),(1721,45,1.33,'S','File Service: VW Crafter VA57 RCV','Completed','2019-12-03 09:14:21','2019-12-03 09:14:21',NULL),(1722,102,2.00,'A','Tuning credits purchase','Completed','2019-12-03 09:42:36','2019-12-03 09:42:36',NULL),(1723,35,2.00,'A','Tuning credits purchase','Completed','2019-12-03 10:04:06','2019-12-03 10:04:06',NULL),(1724,35,1.33,'S','File Service: vw polo 6','Completed','2019-12-03 10:05:41','2019-12-03 10:05:41',NULL),(1725,102,1.00,'S','File Service: mercedes e class ANY','Completed','2019-12-03 10:05:57','2019-12-03 10:05:57',NULL),(1726,102,1.00,'S','File Service: toyota rave4 ANY','Completed','2019-12-03 10:33:09','2019-12-03 10:33:09',NULL),(1727,100,1.00,'S','File Service: skoda octava vrs 2008','Completed','2019-12-03 10:50:14','2019-12-03 10:50:14',NULL),(1728,100,1.00,'S','File Service: vw transporter 2008','Completed','2019-12-03 13:37:53','2019-12-03 13:37:53',NULL),(1729,76,1.00,'A','Tuning credits purchase','Completed','2019-12-03 13:59:04','2019-12-03 13:59:04',NULL),(1730,76,1.00,'S','File Service: FORD RANGER 2015','Completed','2019-12-03 14:01:28','2019-12-03 14:01:28',NULL),(1731,121,1.00,'S','File Service: citroen ds3 2','Completed','2019-12-03 17:21:24','2019-12-03 17:21:24',NULL),(1732,76,2.00,'A','Tuning credits purchase','Completed','2019-12-04 10:00:55','2019-12-04 10:00:55',NULL),(1733,76,0.70,'S','File Service: skoda octavia 2013','Completed','2019-12-04 10:02:59','2019-12-04 10:02:59',NULL),(1734,76,1.00,'S','File Service: ford transit custom','Completed','2019-12-04 10:06:19','2019-12-04 10:06:19',NULL),(1735,100,1.00,'S','File Service: bmw x5 2006','Completed','2019-12-04 12:14:45','2019-12-04 12:14:45',NULL),(1736,100,1.00,'S','File Service: mercedes sprinter 2008','Completed','2019-12-04 13:00:39','2019-12-04 13:00:39',NULL),(1737,76,0.30,'S','take away','Completed','2019-12-04 13:35:42','2019-12-04 13:35:42',NULL),(1738,45,0.50,'S','added DTC removal to job passat taxi','Completed','2019-12-04 15:03:11','2019-12-04 15:03:11',NULL),(1739,45,1.66,'S','File Service: VW Passat W10 ACH','Completed','2019-12-05 09:14:18','2019-12-05 09:14:18',NULL),(1740,76,2.00,'A','Tuning credits purchase','Completed','2019-12-05 09:51:25','2019-12-05 09:51:25',NULL),(1741,76,1.00,'S','File Service: Volkswagen polo 2011','Completed','2019-12-05 09:59:14','2019-12-05 09:59:14',NULL),(1742,100,1.00,'S','File Service: audi a3 quattro 2009','Completed','2019-12-05 10:10:08','2019-12-05 10:10:08',NULL),(1743,76,1.00,'S','File Service: landrover rr sport 2007','Completed','2019-12-05 10:53:11','2019-12-05 10:53:11',NULL),(1744,100,1.00,'S','File Service: vw golf gttdi 2009','Completed','2019-12-05 11:45:51','2019-12-05 11:45:51',NULL),(1745,100,1.00,'S','File Service: land rover discovery td5 2004','Completed','2019-12-05 13:24:33','2019-12-05 13:24:33',NULL),(1746,76,1.00,'A','Tuning credits purchase','Completed','2019-12-05 15:38:27','2019-12-05 15:38:27',NULL),(1747,76,1.00,'S','File Service: FORD CUSTOM 2014','Completed','2019-12-05 15:39:59','2019-12-05 15:39:59',NULL),(1748,100,1.00,'S','File Service: saab 93 2007','Completed','2019-12-05 16:12:47','2019-12-05 16:12:47',NULL),(1749,100,1.00,'S','File Service: audi a3 2012','Completed','2019-12-05 16:27:35','2019-12-05 16:27:35',NULL),(1750,121,1.00,'S','File Service: mitsubishi outlander 2','Completed','2019-12-06 10:04:01','2019-12-06 10:04:01',NULL),(1751,30,1.00,'A','Tuning credits purchase','Completed','2019-12-06 11:30:02','2019-12-06 11:30:02',NULL),(1752,30,1.00,'S','File Service: vw golf gtd 2013','Completed','2019-12-06 11:35:48','2019-12-06 11:35:48',NULL),(1753,100,1.00,'S','File Service: vw transporter 2011','Completed','2019-12-06 12:53:05','2019-12-06 12:53:05',NULL),(1754,100,1.00,'S','File Service: bmw 320d 2014','Completed','2019-12-06 13:38:25','2019-12-06 13:38:25',NULL),(1755,100,1.00,'S','File Service: audi a3 2008','Completed','2019-12-06 16:53:31','2019-12-06 16:53:31',NULL),(1756,43,1.00,'S','File Service: BMW 116D F21','Completed','2019-12-06 18:56:28','2019-12-06 18:56:28',NULL),(1757,43,1.00,'S','File Service: Skoda Superb MK3','Completed','2019-12-07 10:05:47','2019-12-07 10:05:47',NULL),(1758,45,1.00,'S','File Service: Mercedes A220 GY14 UVS','Completed','2019-12-07 10:31:05','2019-12-07 10:31:05',NULL),(1759,27,1.00,'A','Tuning credits purchase','Completed','2019-12-07 11:16:00','2019-12-07 11:16:00',NULL),(1760,27,1.00,'S','File Service: BMW 325D E90/91','Completed','2019-12-07 12:05:00','2019-12-07 12:05:00',NULL),(1761,100,1.00,'S','File Service: ford fiesta 2014','Completed','2019-12-07 12:10:03','2019-12-07 12:10:03',NULL),(1762,19,1.00,'A','Tuning credits purchase','Completed','2019-12-09 08:59:28','2019-12-09 08:59:28',NULL),(1763,19,1.00,'S','File Service: fiat ducato 3rd','Completed','2019-12-09 09:05:09','2019-12-09 09:05:09',NULL),(1764,100,1.00,'S','File Service: ford transit tipper rwd 2014','Completed','2019-12-09 10:03:50','2019-12-09 10:03:50',NULL),(1765,100,1.00,'S','File Service: vw crafter 2016','Completed','2019-12-09 10:18:16','2019-12-09 10:18:16',NULL),(1766,19,1.00,'A','Tuning credits purchase','Completed','2019-12-09 11:48:04','2019-12-09 11:48:04',NULL),(1767,19,1.00,'S','File Service: seat leon 2nd','Completed','2019-12-09 11:51:11','2019-12-09 11:51:11',NULL),(1768,121,1.00,'S','File Service: vw passat x','Completed','2019-12-09 13:48:08','2019-12-09 13:48:08',NULL),(1769,100,1.00,'S','File Service: vw golf 2012','Completed','2019-12-09 17:14:50','2019-12-09 17:14:50',NULL),(1770,102,1.00,'A','Tuning credits purchase','Completed','2019-12-10 08:39:02','2019-12-10 08:39:02',NULL),(1771,102,1.00,'S','File Service: BMW X3 ANY','Completed','2019-12-10 08:41:57','2019-12-10 08:41:57',NULL),(1772,121,1.00,'S','File Service: vauxhall insignia 2','Completed','2019-12-10 11:39:20','2019-12-10 11:39:20',NULL),(1773,19,1.00,'A','Tuning credits purchase','Completed','2019-12-10 12:33:37','2019-12-10 12:33:37',NULL),(1774,19,1.00,'S','File Service: toyota corolla verso 1','Completed','2019-12-10 12:35:31','2019-12-10 12:35:31',NULL),(1775,100,1.00,'S','File Service: vw golf 2007','Completed','2019-12-10 12:54:48','2019-12-10 12:54:48',NULL),(1776,102,1.00,'A','Tuning credits purchase','Completed','2019-12-10 13:52:11','2019-12-10 13:52:11',NULL),(1777,102,1.00,'S','File Service: isuzu DMAX anything','Completed','2019-12-10 13:53:47','2019-12-10 13:53:47',NULL),(1778,102,1.00,'A','Tuning credits purchase','Completed','2019-12-11 09:01:40','2019-12-11 09:01:40',NULL),(1779,102,1.00,'S','File Service: mercedes SPRINTER anything','Completed','2019-12-11 09:04:36','2019-12-11 09:04:36',NULL),(1780,19,1.00,'A','Tuning credits purchase','Completed','2019-12-11 11:18:10','2019-12-11 11:18:10',NULL),(1781,19,1.00,'S','File Service: merc sprinter 906','Completed','2019-12-11 11:21:22','2019-12-11 11:21:22',NULL),(1782,28,1.00,'A','Tuning credits purchase','Completed','2019-12-11 16:35:40','2019-12-11 16:35:40',NULL),(1783,28,1.00,'S','File Service: land rover discovery 3','Completed','2019-12-11 16:39:47','2019-12-11 16:39:47',NULL),(1784,100,1.00,'S','File Service: ford custom 2019','Completed','2019-12-11 18:26:27','2019-12-11 18:26:27',NULL),(1785,100,1.00,'S','File Service: ford custom 2018','Completed','2019-12-11 18:27:47','2019-12-11 18:27:47',NULL),(1786,100,180.00,'A','add','Completed','2019-12-11 21:02:11','2019-12-11 21:02:11',NULL),(1787,100,1.00,'S','File Service: ford transit 2016','Completed','2019-12-12 14:00:32','2019-12-12 14:00:32',NULL),(1788,102,1.00,'A','Tuning credits purchase','Completed','2019-12-13 07:58:13','2019-12-13 07:58:13',NULL),(1789,102,0.70,'S','File Service: mercedes c class anything','Completed','2019-12-13 08:01:14','2019-12-13 08:01:14',NULL),(1790,43,1.33,'S','File Service: Jaguar XF X351','Completed','2019-12-13 10:56:24','2019-12-13 10:56:24',NULL),(1791,43,1.33,'S','File Service: Ford Transit TTF','Completed','2019-12-14 10:42:36','2019-12-14 10:42:36',NULL),(1792,100,1.00,'S','File Service: ford custom 2015','Completed','2019-12-14 11:24:12','2019-12-14 11:24:12',NULL),(1793,19,1.00,'A','Tuning credits purchase','Completed','2019-12-16 11:28:59','2019-12-16 11:28:59',NULL),(1794,100,1.00,'S','File Service: ford transit 2005','Completed','2019-12-16 11:33:05','2019-12-16 11:33:05',NULL),(1795,19,1.33,'S','File Service: vaux vivaro 2nd','Completed','2019-12-16 11:41:42','2019-12-16 11:41:42',NULL),(1796,100,1.00,'S','File Service: vw golf 2005','Completed','2019-12-16 12:08:00','2019-12-16 12:08:00',NULL),(1797,100,1.00,'S','File Service: skoda octavia 2008','Completed','2019-12-16 12:59:55','2019-12-16 12:59:55',NULL),(1798,19,1.00,'A','Tuning credits purchase','Completed','2019-12-16 13:25:15','2019-12-16 13:25:15',NULL),(1799,19,1.00,'S','File Service: ford custom 1','Completed','2019-12-16 13:27:54','2019-12-16 13:27:54',NULL),(1800,19,1.00,'A','Tuning credits purchase','Completed','2019-12-16 14:44:22','2019-12-16 14:44:22',NULL),(1801,19,1.00,'S','File Service: subaru forester 3','Completed','2019-12-16 14:48:53','2019-12-16 14:48:53',NULL),(1802,30,1.00,'A','Tuning credits purchase','Completed','2019-12-16 15:51:37','2019-12-16 15:51:37',NULL),(1803,30,1.00,'S','File Service: audi a4 2009','Completed','2019-12-16 16:05:11','2019-12-16 16:05:11',NULL),(1804,102,1.00,'S','File Service: scoda superb ANY','Completed','2019-12-17 07:48:43','2019-12-17 07:48:43',NULL),(1805,76,1.00,'A','Tuning credits purchase','Completed','2019-12-17 09:33:03','2019-12-17 09:33:03',NULL),(1806,76,1.00,'S','File Service: BMW 316 f30','Completed','2019-12-17 09:34:24','2019-12-17 09:34:24',NULL),(1807,100,1.00,'S','File Service: mercedes sprinter 2014','Completed','2019-12-17 09:40:47','2019-12-17 09:40:47',NULL),(1808,19,1.00,'A','Tuning credits purchase','Completed','2019-12-17 10:32:43','2019-12-17 10:32:43',NULL),(1809,19,1.00,'S','File Service: vw golk 6','Completed','2019-12-17 10:33:58','2019-12-17 10:33:58',NULL),(1810,45,1.50,'S','File Service: BMW 2 series F45','Completed','2019-12-17 11:17:07','2019-12-17 11:17:07',NULL),(1811,76,1.00,'A','Tuning credits purchase','Completed','2019-12-17 14:24:25','2019-12-17 14:24:25',NULL),(1812,76,1.00,'S','File Service: ford custom 2017','Completed','2019-12-17 14:28:00','2019-12-17 14:28:00',NULL),(1813,76,1.00,'A','Tuning credits purchase','Completed','2019-12-17 15:19:33','2019-12-17 15:19:33',NULL),(1814,76,1.00,'S','File Service: JaguAR X TYPE 2005','Completed','2019-12-17 15:22:11','2019-12-17 15:22:11',NULL),(1815,100,1.00,'S','File Service: bmw x5 2010','Completed','2019-12-17 16:33:10','2019-12-17 16:33:10',NULL),(1816,100,1.00,'S','File Service: volvo s40 2009','Completed','2019-12-17 21:35:16','2019-12-17 21:35:16',NULL),(1817,102,1.00,'A','Tuning credits purchase','Completed','2019-12-18 08:32:49','2019-12-18 08:32:49',NULL),(1818,102,1.00,'S','File Service: citroen BERLINGO anything','Completed','2019-12-18 08:34:02','2019-12-18 08:34:02',NULL),(1819,136,30.00,'A','add','Completed','2019-12-18 13:46:37','2019-12-18 13:46:37',NULL),(1820,43,1.00,'S','File Service: Peugeot 407 D2','Completed','2019-12-18 15:26:57','2019-12-18 15:26:57',NULL),(1821,100,1.00,'S','File Service: audi a3 tfsi 2009','Completed','2019-12-18 19:22:32','2019-12-18 19:22:32',NULL),(1822,19,1.00,'A','Tuning credits purchase','Completed','2019-12-19 11:07:37','2019-12-19 11:07:37',NULL),(1823,19,1.00,'S','File Service: skoda octavia vrs 3','Completed','2019-12-19 11:09:28','2019-12-19 11:09:28',NULL),(1824,45,1.00,'S','File Service: VW Scirocco P23 KER','Completed','2019-12-19 13:18:14','2019-12-19 13:18:14',NULL),(1825,102,2.00,'A','Tuning credits purchase','Completed','2019-12-20 07:32:20','2019-12-20 07:32:20',NULL),(1826,102,1.00,'S','File Service: vw GOLF7 anything','Completed','2019-12-20 07:34:26','2019-12-20 07:34:26',NULL),(1827,102,1.00,'S','File Service: mercedes e class w207 anything','Completed','2019-12-20 09:26:21','2019-12-20 09:26:21',NULL),(1828,19,2.00,'A','Tuning credits purchase','Completed','2019-12-20 10:25:46','2019-12-20 10:25:46',NULL),(1829,19,1.00,'S','File Service: landrover defender 1','Completed','2019-12-20 10:37:33','2019-12-20 10:37:33',NULL),(1830,19,1.00,'S','File Service: vw golf 6','Completed','2019-12-20 10:52:35','2019-12-20 10:52:35',NULL),(1831,43,1.00,'S','File Service: Vauxhall Insignia MK2','Completed','2019-12-20 12:39:20','2019-12-20 12:39:20',NULL),(1832,100,1.00,'S','File Service: ford fiesta 2009','Completed','2019-12-20 14:37:20','2019-12-20 14:37:20',NULL),(1833,19,2.00,'A','Tuning credits purchase','Completed','2019-12-20 14:45:36','2019-12-20 14:45:36',NULL),(1834,19,1.66,'S','File Service: vauxhal afira b','Completed','2019-12-20 14:48:36','2019-12-20 14:48:36',NULL),(1835,30,1.00,'A','Tuning credits purchase','Completed','2019-12-21 10:36:14','2019-12-21 10:36:14',NULL),(1836,30,1.00,'S','File Service: mefcedes GLE250 2018','Completed','2019-12-21 10:44:05','2019-12-21 10:44:05',NULL),(1837,43,1.00,'S','File Service: VW Phaeton MK1','Completed','2019-12-21 12:19:41','2019-12-21 12:19:41',NULL),(1838,43,1.00,'S','File Service: Ford Transit MK7','Completed','2019-12-21 14:35:35','2019-12-21 14:35:35',NULL),(1839,27,1.00,'A','Tuning credits purchase','Completed','2019-12-23 09:26:50','2019-12-23 09:26:50',NULL),(1840,27,1.00,'A','Tuning credits purchase','Completed','2019-12-23 09:27:25','2019-12-23 09:27:25',NULL),(1841,27,1.00,'S','File Service: AUDI A5 MK2','Completed','2019-12-23 09:30:42','2019-12-23 09:30:42',NULL),(1842,76,1.00,'A','Tuning credits purchase','Completed','2019-12-23 09:37:32','2019-12-23 09:37:32',NULL),(1843,76,1.00,'S','File Service: isuzu dmax 2014','Completed','2019-12-23 09:52:54','2019-12-23 09:52:54',NULL),(1844,102,1.00,'A','Tuning credits purchase','Completed','2019-12-23 10:45:31','2019-12-23 10:45:31',NULL),(1845,102,1.00,'S','File Service: bmw 5series anything','Completed','2019-12-23 10:47:41','2019-12-23 10:47:41',NULL),(1846,100,1.00,'S','File Service: audi a4 2006','Completed','2019-12-23 13:29:23','2019-12-23 13:29:23',NULL),(1847,30,1.00,'A','Tuning credits purchase','Completed','2019-12-23 13:55:17','2019-12-23 13:55:17',NULL),(1848,30,1.00,'S','File Service: volkswagen golf 2014','Completed','2019-12-23 13:58:48','2019-12-23 13:58:48',NULL),(1849,100,1.00,'S','File Service: ford transit 2015','Completed','2019-12-23 15:46:27','2019-12-23 15:46:27',NULL),(1850,43,10.00,'A','10 27/12/19','Completed','2019-12-27 12:30:22','2019-12-27 12:30:22',NULL),(1851,43,1.66,'S','File Service: VW Polo 6R','Completed','2019-12-27 12:35:52','2019-12-27 12:35:52',NULL),(1852,100,1.00,'S','File Service: ford focus st2 tdci 2015','Completed','2019-12-27 13:46:52','2019-12-27 13:46:52',NULL),(1853,100,1.00,'S','File Service: vw golf gti 2006','Completed','2019-12-27 14:33:57','2019-12-27 14:33:57',NULL),(1854,43,1.00,'S','File Service: Rnage Rover Sport L322','Completed','2019-12-27 15:09:55','2019-12-27 15:09:55',NULL),(1855,100,1.00,'S','File Service: land rover evoque 2013','Completed','2019-12-27 17:20:33','2019-12-27 17:20:33',NULL),(1856,100,1.00,'S','File Service: bmw 320d 2012','Completed','2019-12-28 13:01:48','2019-12-28 13:01:48',NULL),(1857,43,1.33,'S','File Service: Mercedes A200D W176','Completed','2019-12-30 10:28:29','2019-12-30 10:28:29',NULL),(1858,102,1.00,'A','Tuning credits purchase','Completed','2020-01-02 06:44:50','2020-01-02 06:44:50',NULL),(1859,102,1.00,'S','File Service: vw touareg anything','Completed','2020-01-02 06:47:27','2020-01-02 06:47:27',NULL),(1860,19,1.00,'A','Tuning credits purchase','Completed','2020-01-02 08:36:42','2020-01-02 08:36:42',NULL),(1861,19,1.00,'S','File Service: landrover freelander 2nd','Completed','2020-01-02 08:39:05','2020-01-02 08:39:05',NULL),(1862,45,1.00,'S','File Service: Audi A8 (D4) RE15 LYA','Completed','2020-01-02 10:51:32','2020-01-02 10:51:32',NULL),(1863,43,1.00,'S','File Service: VW Amarok MK1','Completed','2020-01-02 15:28:53','2020-01-02 15:28:53',NULL),(1864,19,1.00,'A','Tuning credits purchase','Completed','2020-01-02 15:33:10','2020-01-02 15:33:10',NULL),(1865,19,1.00,'S','File Service: vw crafter 1','Completed','2020-01-02 15:34:46','2020-01-02 15:34:46',NULL),(1866,102,1.00,'A','Tuning credits purchase','Completed','2020-01-03 08:57:07','2020-01-03 08:57:07',NULL),(1867,102,1.00,'S','File Service: hyunfai santafe anything','Completed','2020-01-03 09:02:57','2020-01-03 09:02:57',NULL),(1868,102,1.00,'A','Tuning credits purchase','Completed','2020-01-03 10:25:34','2020-01-03 10:25:34',NULL),(1869,102,1.00,'S','File Service: vw GOLF7 anything','Completed','2020-01-03 10:27:49','2020-01-03 10:27:49',NULL),(1870,100,1.00,'S','File Service: saab 93 2007','Completed','2020-01-03 13:56:38','2020-01-03 13:56:38',NULL),(1871,74,1.00,'A','Tuning credits purchase','Completed','2020-01-05 11:41:47','2020-01-05 11:41:47',NULL),(1872,74,1.00,'S','File Service: FORD transit MK7','Completed','2020-01-05 11:46:11','2020-01-05 11:46:11',NULL),(1873,74,1.00,'A','Tuning credits purchase','Completed','2020-01-05 14:11:08','2020-01-05 14:11:08',NULL),(1874,74,1.00,'S','File Service: FORD TRANSIT MK7','Completed','2020-01-05 14:15:03','2020-01-05 14:15:03',NULL),(1875,19,2.00,'A','Tuning credits purchase','Completed','2020-01-06 10:03:14','2020-01-06 10:03:14',NULL),(1876,19,1.00,'S','File Service: audi a4 2','Completed','2020-01-06 10:05:29','2020-01-06 10:05:29',NULL),(1877,19,1.00,'S','File Service: landrover freelander 2nd','Completed','2020-01-06 10:07:47','2020-01-06 10:07:47',NULL),(1878,45,10.00,'A','Add 06/01/20','Completed','2020-01-06 10:12:15','2020-01-06 10:12:15',NULL),(1879,45,1.33,'S','File Service: Toyota Avensis T250 (GN08 DZZ)','Completed','2020-01-06 10:18:38','2020-01-06 10:18:38',NULL),(1880,70,1.00,'S','File Service: fdfb dfbdfb dfbd','Completed','2020-01-06 11:40:42','2020-01-06 11:40:42',NULL),(1881,100,1.00,'S','File Service: ford custom 2018','Completed','2020-01-06 12:26:08','2020-01-06 12:26:08',NULL),(1882,43,1.00,'S','File Service: BMW 2 Series 220D F23','Completed','2020-01-06 15:09:00','2020-01-06 15:09:00',NULL),(1883,100,1.00,'S','File Service: ford galaxy 2012','Completed','2020-01-06 15:14:32','2020-01-06 15:14:32',NULL),(1884,100,1.00,'S','File Service: ford galaxy 2013','Completed','2020-01-06 15:31:43','2020-01-06 15:31:43',NULL),(1885,100,1.00,'S','File Service: ford galaxy 2012','Completed','2020-01-06 15:47:03','2020-01-06 15:47:03',NULL),(1886,100,1.00,'S','File Service: ford galaxy 2012','Completed','2020-01-06 15:59:23','2020-01-06 15:59:23',NULL),(1887,27,1.00,'S','File Service: VAUXHALL ASTRA J','Completed','2020-01-07 12:13:52','2020-01-07 12:13:52',NULL),(1888,100,1.00,'S','File Service: vauxhall insignia 2014','Completed','2020-01-07 12:21:00','2020-01-07 12:21:00',NULL),(1889,100,1.00,'S','File Service: vauxhall astra 2005','Completed','2020-01-07 14:23:35','2020-01-07 14:23:35',NULL),(1890,100,1.00,'S','File Service: toyota avensis 2008','Completed','2020-01-07 18:18:27','2020-01-07 18:18:27',NULL),(1891,19,1.00,'A','Tuning credits purchase','Completed','2020-01-08 08:42:19','2020-01-08 08:42:19',NULL),(1892,19,1.00,'S','File Service: vw golf 5','Completed','2020-01-08 08:43:59','2020-01-08 08:43:59',NULL),(1893,43,1.33,'S','File Service: Audi TTRS 8J£','Completed','2020-01-08 14:38:32','2020-01-08 14:38:32',NULL),(1894,43,1.60,'S','Master DSG File','Completed','2020-01-08 16:10:32','2020-01-08 16:10:32',NULL),(1895,19,1.00,'A','Tuning credits purchase','Completed','2020-01-09 08:41:59','2020-01-09 08:41:59',NULL),(1896,19,1.00,'S','File Service: skoda octavia 2','Completed','2020-01-09 08:44:43','2020-01-09 08:44:43',NULL),(1897,100,1.00,'S','File Service: bmw 520d 2008','Completed','2020-01-09 10:20:14','2020-01-09 10:20:14',NULL),(1898,102,1.00,'A','Tuning credits purchase','Completed','2020-01-09 12:02:45','2020-01-09 12:02:45',NULL),(1899,102,1.00,'S','File Service: bmw 5series anything','Completed','2020-01-09 12:21:25','2020-01-09 12:21:25',NULL),(1900,100,1.00,'S','File Service: ford fiesta 20012','Completed','2020-01-09 13:45:51','2020-01-09 13:45:51',NULL),(1901,100,1.00,'S','File Service: seat leon fr 2009','Completed','2020-01-09 16:03:19','2020-01-09 16:03:19',NULL),(1902,19,1.00,'A','Tuning credits purchase','Completed','2020-01-09 16:09:39','2020-01-09 16:09:39',NULL),(1903,19,1.00,'S','File Service: fiat doblo 233','Completed','2020-01-09 16:11:57','2020-01-09 16:11:57',NULL),(1904,45,1.00,'S','File Service: Mercedes Sprinter 314 (KS66 HFT)','Completed','2020-01-10 09:44:01','2020-01-10 09:44:01',NULL),(1905,24,1.00,'A','Tuning credits purchase','Completed','2020-01-10 10:45:29','2020-01-10 10:45:29',NULL),(1906,24,1.33,'S','File Service: ford transit e5','Completed','2020-01-10 10:48:10','2020-01-10 10:48:10',NULL),(1907,136,1.00,'S','File Service: landrover sort 1','Completed','2020-01-10 16:00:14','2020-01-10 16:00:14',NULL),(1908,100,1.00,'S','File Service: vw passat 2007','Completed','2020-01-12 09:43:48','2020-01-12 09:43:48',NULL),(1909,76,1.00,'A','Tuning credits purchase','Completed','2020-01-12 10:18:23','2020-01-12 10:18:23',NULL),(1910,76,1.00,'S','File Service: audi a4 b6','Completed','2020-01-12 10:28:25','2020-01-12 10:28:25',NULL),(1911,76,1.00,'A','Tuning credits purchase','Completed','2020-01-12 13:30:21','2020-01-12 13:30:21',NULL),(1912,76,1.00,'S','File Service: vw PASSAT b6','Completed','2020-01-12 13:31:51','2020-01-12 13:31:51',NULL),(1913,102,1.00,'A','Tuning credits purchase','Completed','2020-01-13 08:00:42','2020-01-13 08:00:42',NULL),(1914,102,1.00,'S','File Service: honda crv anything','Completed','2020-01-13 08:02:59','2020-01-13 08:02:59',NULL),(1915,100,1.00,'S','File Service: mercedes vito 2016','Completed','2020-01-13 11:28:38','2020-01-13 11:28:38',NULL),(1916,102,0.70,'S','take away immo','Completed','2020-01-13 11:28:41','2020-01-13 11:28:41',NULL),(1917,121,1.00,'S','File Service: audi a3 x','Completed','2020-01-13 15:57:20','2020-01-13 15:57:20',NULL),(1918,102,1.00,'A','Tuning credits purchase','Completed','2020-01-14 09:06:46','2020-01-14 09:06:46',NULL),(1919,102,1.00,'A','Tuning credits purchase','Completed','2020-01-14 09:07:54','2020-01-14 09:07:54',NULL),(1920,102,1.00,'S','File Service: toyota auris anything','Completed','2020-01-14 09:10:48','2020-01-14 09:10:48',NULL),(1921,45,1.00,'S','File Service: Skoda Yeti 2012 (SK04 YET)','Completed','2020-01-14 10:11:36','2020-01-14 10:11:36',NULL),(1922,76,1.00,'A','Tuning credits purchase','Completed','2020-01-14 11:39:03','2020-01-14 11:39:03',NULL),(1923,76,1.00,'S','File Service: FORD TRANSIT Custom','Completed','2020-01-14 11:49:39','2020-01-14 11:49:39',NULL),(1924,100,1.00,'S','File Service: vw golf 2010','Completed','2020-01-14 12:04:38','2020-01-14 12:04:38',NULL),(1925,43,1.66,'S','File Service: Vauxhall Antara MK1','Completed','2020-01-14 12:54:01','2020-01-14 12:54:01',NULL),(1926,43,10.00,'A','add 14/01/20','Completed','2020-01-14 14:18:18','2020-01-14 14:18:18',NULL),(1927,43,1.00,'S','File Service: BMW 200D F22/23','Completed','2020-01-14 14:26:09','2020-01-14 14:26:09',NULL),(1928,45,1.33,'S','File Service: BMW X5 E70 (G6 GJO)','Completed','2020-01-14 17:02:14','2020-01-14 17:02:14',NULL),(1929,45,1.00,'S','File Service: Audi A6 2010 (T22 ARH)','Completed','2020-01-14 17:54:12','2020-01-14 17:54:12',NULL),(1930,76,2.00,'A','Tuning credits purchase','Completed','2020-01-15 09:31:29','2020-01-15 09:31:29',NULL),(1931,76,1.00,'S','File Service: audi a3 8p','Completed','2020-01-15 09:35:44','2020-01-15 09:35:44',NULL),(1932,76,1.00,'S','File Service: FORD smax 2012','Completed','2020-01-15 09:49:09','2020-01-15 09:49:09',NULL),(1933,100,1.00,'S','File Service: ford custom 2018','Completed','2020-01-15 10:42:09','2020-01-15 10:42:09',NULL),(1934,76,1.00,'A','Tuning credits purchase','Completed','2020-01-15 11:52:43','2020-01-15 11:52:43',NULL),(1935,76,1.00,'S','File Service: Mercedes SPRINTER 2009','Completed','2020-01-15 12:09:24','2020-01-15 12:09:24',NULL),(1936,100,1.00,'S','File Service: seat leon 2009','Completed','2020-01-15 13:52:51','2020-01-15 13:52:51',NULL),(1937,76,1.00,'A','Tuning credits purchase','Completed','2020-01-15 18:10:54','2020-01-15 18:10:54',NULL),(1938,76,1.00,'S','File Service: TOYOTA HILUX 2012','Completed','2020-01-15 18:16:09','2020-01-15 18:16:09',NULL),(1939,27,2.00,'A','Tuning credits purchase','Completed','2020-01-16 09:20:55','2020-01-16 09:20:55',NULL),(1940,27,1.33,'S','File Service: FORD TRANSIT MKMK8','Completed','2020-01-16 09:26:55','2020-01-16 09:26:55',NULL),(1941,100,1.00,'S','File Service: landrover freelander td4 2009','Completed','2020-01-16 09:56:00','2020-01-16 09:56:00',NULL),(1942,45,1.00,'S','File Service: Ford Transit 2015 (YT65 ELJ)','Completed','2020-01-16 11:57:33','2020-01-16 11:57:33',NULL),(1943,121,1.00,'S','File Service: skoda superb x','Completed','2020-01-16 12:57:06','2020-01-16 12:57:06',NULL),(1944,19,1.00,'A','Tuning credits purchase','Completed','2020-01-16 14:45:55','2020-01-16 14:45:55',NULL),(1945,19,0.33,'S','File Service: ford transit mk7','Completed','2020-01-16 14:48:05','2020-01-16 14:48:05',NULL),(1947,100,1.00,'S','File Service: mercedes e350 2010','Completed','2020-01-16 19:23:07','2020-01-16 19:23:07',NULL),(1948,29,2.00,'A','Tuning credits purchase','Completed','2020-01-16 19:40:50','2020-01-16 19:40:50',NULL),(1949,29,1.00,'S','File Service: volkswagen caddy 3','Completed','2020-01-16 19:43:21','2020-01-16 19:43:21',NULL),(1950,100,1.00,'A','add','Completed','2020-01-16 19:58:03','2020-01-16 19:58:03',NULL),(1951,29,0.66,'S','job 772 manual dpf egr deducted','Completed','2020-01-16 20:21:53','2020-01-16 20:21:53',NULL),(1952,102,2.00,'A','Tuning credits purchase','Completed','2020-01-17 13:29:34','2020-01-17 13:29:34',NULL),(1953,100,1.00,'S','File Service: vauxhall corsa sri 2015','Completed','2020-01-17 13:29:58','2020-01-17 13:29:58',NULL),(1954,102,1.00,'S','File Service: skoda superb anything','Completed','2020-01-17 13:31:40','2020-01-17 13:31:40',NULL),(1955,102,1.00,'S','File Service: land rover range rover anything','Completed','2020-01-17 13:55:44','2020-01-17 13:55:44',NULL),(1956,102,1.00,'A','Tuning credits purchase','Completed','2020-01-17 14:42:22','2020-01-17 14:42:22',NULL),(1957,102,1.00,'S','File Service: bmw 5series anything','Completed','2020-01-17 14:43:55','2020-01-17 14:43:55',NULL),(1958,121,1.00,'S','File Service: vw golf 6','Completed','2020-01-17 15:01:28','2020-01-17 15:01:28',NULL),(1959,24,1.00,'A','Tuning credits purchase','Completed','2020-01-17 15:11:13','2020-01-17 15:11:13',NULL),(1960,24,1.00,'S','File Service: ford transit 5','Completed','2020-01-17 15:13:55','2020-01-17 15:13:55',NULL),(1961,76,1.00,'A','Tuning credits purchase','Completed','2020-01-18 09:08:16','2020-01-18 09:08:16',NULL),(1962,76,1.00,'S','File Service: bmw e60 2004','Completed','2020-01-18 09:13:21','2020-01-18 09:13:21',NULL),(1963,45,1.00,'S','File Service: VW Caddy 2016 (FH66 ZGA)','Completed','2020-01-18 10:00:34','2020-01-18 10:00:34',NULL),(1964,136,1.00,'S','File Service: landrover RANGE 1','Completed','2020-01-18 11:21:35','2020-01-18 11:21:35',NULL),(1965,100,1.00,'S','File Service: vw golf 2008','Completed','2020-01-18 16:37:52','2020-01-18 16:37:52',NULL),(1966,100,1.00,'S','File Service: ford focus st2 tdci 2015','Completed','2020-01-18 17:00:50','2020-01-18 17:00:50',NULL),(1967,30,1.00,'A','Tuning credits purchase','Completed','2020-01-20 09:37:37','2020-01-20 09:37:37',NULL),(1968,30,1.00,'S','File Service: AUDI A5 2014','Completed','2020-01-20 09:43:15','2020-01-20 09:43:15',NULL),(1969,45,1.00,'S','File Service: Ford Transit 2012 DN62 KXP)','Completed','2020-01-20 10:11:51','2020-01-20 10:11:51',NULL),(1970,19,1.00,'A','Tuning credits purchase','Completed','2020-01-20 10:31:12','2020-01-20 10:31:12',NULL),(1971,19,1.33,'S','File Service: vw caddy 2k','Completed','2020-01-20 10:33:45','2020-01-20 10:33:45',NULL),(1972,45,1.33,'S','File Service: Vauxhall9 Movano 2014 Bit Turbo (VK64 KZP)','Completed','2020-01-21 09:48:19','2020-01-21 09:48:19',NULL),(1973,29,1.00,'A','Tuning credits purchase','Completed','2020-01-21 10:12:02','2020-01-21 10:12:02',NULL),(1974,19,1.00,'A','Tuning credits purchase','Completed','2020-01-21 10:45:03','2020-01-21 10:45:03',NULL),(1975,45,10.00,'A','add 21/01/20','Completed','2020-01-21 10:50:51','2020-01-21 10:50:51',NULL),(1976,19,1.00,'S','File Service: ford transit mk7','Completed','2020-01-21 10:51:36','2020-01-21 10:51:36',NULL),(1977,29,0.00,'S','File Service: renault trafic 3','Completed','2020-01-21 11:57:48','2020-01-21 11:57:48',NULL),(1978,29,1.00,'S','egr off on vivaro 1.6 euro 6','Completed','2020-01-21 12:31:41','2020-01-21 12:31:41',NULL),(1979,45,1.00,'S','File Service: Audi A8 D3 (N12CTY)','Completed','2020-01-21 14:37:07','2020-01-21 14:37:07',NULL),(1980,28,2.00,'A','Tuning credits purchase','Completed','2020-01-21 15:23:19','2020-01-21 15:23:19',NULL),(1981,28,1.33,'S','File Service: land rover sport first','Completed','2020-01-21 15:55:47','2020-01-21 15:55:47',NULL),(1982,45,1.00,'S','File Service: VW Amarok 2019 (DE69 JXV)','Completed','2020-01-22 11:40:56','2020-01-22 11:40:56',NULL),(1983,136,1.00,'S','File Service: landrover dicovery 3','Completed','2020-01-22 12:25:20','2020-01-22 12:25:20',NULL),(1984,19,1.00,'A','Tuning credits purchase','Completed','2020-01-22 14:40:59','2020-01-22 14:40:59',NULL),(1985,19,1.00,'S','File Service: citroen berlingo b9','Completed','2020-01-22 14:53:29','2020-01-22 14:53:29',NULL),(1986,19,1.00,'A','Tuning credits purchase','Completed','2020-01-22 15:33:03','2020-01-22 15:33:03',NULL),(1987,19,1.00,'S','File Service: fiat ducato 2nd','Completed','2020-01-22 15:40:30','2020-01-22 15:40:30',NULL),(1988,102,1.00,'S','File Service: mercedes e class anything','Completed','2020-01-23 07:22:25','2020-01-23 07:22:25',NULL),(1989,19,1.00,'A','Tuning credits purchase','Completed','2020-01-23 10:13:12','2020-01-23 10:13:12',NULL),(1990,19,1.33,'S','File Service: renault master 2nd','Completed','2020-01-23 10:24:23','2020-01-23 10:24:23',NULL),(1991,100,1.00,'S','File Service: bmw 320d 2009','Completed','2020-01-23 14:31:39','2020-01-23 14:31:39',NULL),(1992,121,1.00,'S','File Service: vauxhall insignia 2','Completed','2020-01-23 15:21:37','2020-01-23 15:21:37',NULL),(1993,28,1.00,'S','File Service: land rover disco 3','Completed','2020-01-24 11:31:42','2020-01-24 11:31:42',NULL),(1994,100,1.00,'S','File Service: renault master 2012','Completed','2020-01-24 12:15:08','2020-01-24 12:15:08',NULL),(1995,100,1.00,'S','File Service: audi a4 1.8t 2007','Completed','2020-01-24 12:43:56','2020-01-24 12:43:56',NULL),(1996,30,1.00,'A','Tuning credits purchase','Completed','2020-01-24 13:56:57','2020-01-24 13:56:57',NULL),(1997,30,1.00,'S','File Service: volkswagen GOLF R 2016','Completed','2020-01-24 14:09:01','2020-01-24 14:09:01',NULL),(1998,19,1.00,'A','Tuning credits purchase','Completed','2020-01-24 14:52:17','2020-01-24 14:52:17',NULL),(1999,19,1.00,'S','File Service: landrover discovery 3','Completed','2020-01-24 14:54:42','2020-01-24 14:54:42',NULL),(2000,30,1.00,'A','Tuning credits purchase','Completed','2020-01-24 15:58:51','2020-01-24 15:58:51',NULL),(2001,30,1.00,'S','File Service: AUDI A3 2015','Completed','2020-01-24 16:02:36','2020-01-24 16:02:36',NULL),(2002,100,1.00,'S','File Service: vw caddy 2005','Completed','2020-01-24 16:03:23','2020-01-24 16:03:23',NULL),(2003,43,10.00,'S','PAYG Changeover','Completed','2020-01-24 16:18:20','2020-01-24 16:18:20',NULL),(2004,45,1.50,'S','File Service: Ford Transit MK8 2016 (HY16 XLB)','Completed','2020-01-24 16:23:28','2020-01-24 16:23:28',NULL),(2005,27,1.00,'A','Tuning credits purchase','Completed','2020-01-25 10:30:13','2020-01-25 10:30:13',NULL),(2006,27,1.00,'S','File Service: land rover sport mk1','Completed','2020-01-25 10:33:40','2020-01-25 10:33:40',NULL),(2007,43,10.00,'A','add 10 for £650 BACS Paid','Completed','2020-01-25 12:10:34','2020-01-25 12:10:34',NULL),(2008,43,2.00,'S','File Service: Vauxhall Corsa D','Completed','2020-01-25 12:29:39','2020-01-25 12:29:39',NULL),(2009,100,1.00,'S','File Service: vw passat 2007','Completed','2020-01-25 12:34:16','2020-01-25 12:34:16',NULL),(2010,30,1.00,'A','Tuning credits purchase','Completed','2020-01-25 13:07:58','2020-01-25 13:07:58',NULL),(2011,30,1.00,'S','File Service: FORD TRANSIT 2016','Completed','2020-01-25 13:13:30','2020-01-25 13:13:30',NULL),(2012,100,1.00,'S','File Service: vw caddy 2005','Completed','2020-01-25 15:06:57','2020-01-25 15:06:57',NULL),(2013,100,1.00,'S','File Service: audi a4 2011','Completed','2020-01-27 11:32:14','2020-01-27 11:32:14',NULL),(2014,100,1.00,'S','File Service: vw transporter 2012','Completed','2020-01-27 13:03:51','2020-01-27 13:03:51',NULL),(2015,100,1.00,'S','File Service: ford custom 2018','Completed','2020-01-27 13:42:12','2020-01-27 13:42:12',NULL),(2016,100,1.00,'S','File Service: ford custom 2019','Completed','2020-01-27 13:49:04','2020-01-27 13:49:04',NULL),(2017,102,1.00,'A','Tuning credits purchase','Completed','2020-01-28 10:14:24','2020-01-28 10:14:24',NULL),(2018,102,1.00,'S','File Service: bmw X3 anything','Completed','2020-01-28 10:16:07','2020-01-28 10:16:07',NULL),(2019,100,1.00,'S','File Service: AUDI A3 2009','Completed','2020-01-28 13:40:44','2020-01-28 13:40:44',NULL),(2020,100,1.00,'S','File Service: bmw 320d 2015','Completed','2020-01-28 14:21:51','2020-01-28 14:21:51',NULL),(2021,76,1.00,'A','Tuning credits purchase','Completed','2020-01-28 16:15:18','2020-01-28 16:15:18',NULL),(2022,76,1.00,'S','File Service: LANDROVER range rover sport 2007','Completed','2020-01-28 16:18:05','2020-01-28 16:18:05',NULL),(2023,45,1.00,'S','File Service: Ford Transit MK7 (ND62 HYN)','Completed','2020-01-28 16:53:24','2020-01-28 16:53:24',NULL),(2024,100,1.00,'S','File Service: mini cooper d 2010','Completed','2020-01-28 17:03:14','2020-01-28 17:03:14',NULL),(2025,100,1.00,'S','File Service: ford transit 2012','Completed','2020-01-29 09:20:35','2020-01-29 09:20:35',NULL),(2026,100,1.00,'S','File Service: vauxhall meriva 2017','Completed','2020-01-29 10:32:15','2020-01-29 10:32:15',NULL),(2027,100,1.00,'S','File Service: mercedes a45 2015','Completed','2020-01-30 09:07:08','2020-01-30 09:07:08',NULL),(2028,100,1.00,'S','File Service: merc e220 212','Completed','2020-01-30 16:22:10','2020-01-30 16:22:10',NULL),(2029,35,1.00,'A','Tuning credits purchase','Completed','2020-01-30 16:54:56','2020-01-30 16:54:56',NULL),(2030,35,1.00,'S','File Service: zafira zafira b','Completed','2020-01-30 16:56:09','2020-01-30 16:56:09',NULL),(2031,19,1.00,'A','Tuning credits purchase','Completed','2020-01-31 11:11:33','2020-01-31 11:11:33',NULL),(2032,19,1.33,'S','File Service: renault clio rs 3','Completed','2020-01-31 11:15:29','2020-01-31 11:15:29',NULL),(2033,100,1.00,'S','File Service: skoda octavia vrs 2015','Completed','2020-01-31 12:04:30','2020-01-31 12:04:30',NULL),(2034,30,1.00,'A','Tuning credits purchase','Completed','2020-01-31 12:16:46','2020-01-31 12:16:46',NULL),(2035,30,1.00,'S','File Service: FIAT DOBLO 2017','Completed','2020-01-31 12:22:05','2020-01-31 12:22:05',NULL),(2036,121,1.00,'S','File Service: vw golf 7','Completed','2020-01-31 13:04:18','2020-01-31 13:04:18',NULL),(2037,100,1.00,'S','File Service: mercedes ml350 2011','Completed','2020-01-31 19:03:06','2020-01-31 19:03:06',NULL),(2038,100,1.00,'S','File Service: ford custom 2014','Completed','2020-02-01 08:15:07','2020-02-01 08:15:07',NULL),(2039,100,1.00,'S','File Service: ford fiesta 2016','Completed','2020-02-01 08:29:54','2020-02-01 08:29:54',NULL),(2040,29,1.00,'A','Tuning credits purchase','Completed','2020-02-01 11:02:01','2020-02-01 11:02:01',NULL),(2041,29,0.00,'S','File Service: volkswagen polo 3','Completed','2020-02-01 11:05:37','2020-02-01 11:05:37',NULL),(2042,29,1.00,'S','POLO','Completed','2020-02-01 11:26:51','2020-02-01 11:26:51',NULL),(2043,100,1.00,'S','File Service: mercedes a200 2014','Completed','2020-02-01 12:12:47','2020-02-01 12:12:47',NULL),(2044,29,1.00,'A','Tuning credits purchase','Completed','2020-02-01 14:32:25','2020-02-01 14:32:25',NULL),(2045,29,1.00,'S','File Service: audi a4 3','Completed','2020-02-01 14:36:56','2020-02-01 14:36:56',NULL),(2046,100,1.00,'S','File Service: ford custom 2015','Completed','2020-02-01 15:09:41','2020-02-01 15:09:41',NULL),(2047,121,1.00,'S','File Service: FORD TRANSHIT 7','Completed','2020-02-02 18:01:45','2020-02-02 18:01:45',NULL),(2048,121,1.00,'S','File Service: kia ceed 1','Completed','2020-02-02 22:47:14','2020-02-02 22:47:14',NULL),(2049,100,1.00,'S','File Service: ford fiesta st2 2014','Completed','2020-02-03 10:10:45','2020-02-03 10:10:45',NULL),(2050,100,1.00,'S','File Service: audi a3 2010','Completed','2020-02-03 17:03:42','2020-02-03 17:03:42',NULL),(2051,102,1.00,'A','Tuning credits purchase','Completed','2020-02-04 08:27:18','2020-02-04 08:27:18',NULL),(2052,102,1.00,'S','File Service: toyota auris anything','Completed','2020-02-04 08:28:48','2020-02-04 08:28:48',NULL),(2053,19,1.00,'A','Tuning credits purchase','Completed','2020-02-04 09:45:54','2020-02-04 09:45:54',NULL),(2054,19,1.00,'S','File Service: susuki vitara 2nd','Completed','2020-02-04 09:53:41','2020-02-04 09:53:41',NULL),(2055,102,1.33,'S','File Service: toyota auris 3','Completed','2020-02-04 10:42:13','2020-02-04 10:42:13',NULL),(2056,102,1.00,'A','Tuning credits purchase','Completed','2020-02-05 09:21:19','2020-02-05 09:21:19',NULL),(2057,102,1.00,'S','File Service: vw GOLF7 anything','Completed','2020-02-05 09:31:36','2020-02-05 09:31:36',NULL),(2058,102,1.00,'A','Tuning credits purchase','Completed','2020-02-05 10:35:28','2020-02-05 10:35:28',NULL),(2059,102,1.00,'S','File Service: opel insignia anything','Completed','2020-02-05 10:56:08','2020-02-05 10:56:08',NULL),(2060,74,1.00,'A','Tuning credits purchase','Completed','2020-02-05 10:58:25','2020-02-05 10:58:25',NULL),(2061,74,1.00,'S','File Service: FORD TRANSIT MK7','Completed','2020-02-05 11:02:08','2020-02-05 11:02:08',NULL),(2062,100,1.00,'S','File Service: saab 93 2009','Completed','2020-02-05 11:42:16','2020-02-05 11:42:16',NULL),(2063,121,1.00,'S','File Service: vauxhall vivaro 2','Completed','2020-02-05 14:34:19','2020-02-05 14:34:19',NULL),(2064,100,1.00,'S','File Service: vauxhall astra sri 2012','Completed','2020-02-05 14:46:23','2020-02-05 14:46:23',NULL),(2065,100,1.00,'S','File Service: vauxhall vivaro 2013','Completed','2020-02-05 15:48:18','2020-02-05 15:48:18',NULL),(2066,45,1.00,'S','File Service: Ford Fiesta YH66 NRV (MK6)','Completed','2020-02-06 09:35:04','2020-02-06 09:35:04',NULL),(2067,100,1.00,'S','File Service: vauxhall movanno 2011','Completed','2020-02-06 13:34:06','2020-02-06 13:34:06',NULL),(2068,35,1.00,'A','Tuning credits purchase','Completed','2020-02-06 14:28:24','2020-02-06 14:28:24',NULL),(2069,35,1.00,'S','File Service: ford transit 3','Completed','2020-02-06 14:30:11','2020-02-06 14:30:11',NULL),(2070,100,1.00,'S','File Service: seat ibiza 2012','Completed','2020-02-06 14:35:54','2020-02-06 14:35:54',NULL),(2071,100,1.00,'S','File Service: ford custom 2017','Completed','2020-02-06 14:48:27','2020-02-06 14:48:27',NULL),(2072,45,1.33,'S','File Service: BMw 635 YE57 CVS (E64)','Completed','2020-02-06 17:03:36','2020-02-06 17:03:36',NULL),(2073,100,1.00,'S','File Service: mercedes sprinter 2014','Completed','2020-02-06 20:37:08','2020-02-06 20:37:08',NULL),(2074,76,2.00,'A','add','Completed','2020-02-07 08:50:05','2020-02-07 08:50:05',NULL),(2075,121,1.00,'S','File Service: ford transhit 8','Completed','2020-02-07 11:27:52','2020-02-07 11:27:52',NULL),(2076,19,2.00,'A','Tuning credits purchase','Completed','2020-02-07 13:14:51','2020-02-07 13:14:51',NULL),(2077,19,1.00,'S','File Service: ford transit custom 2nd','Completed','2020-02-07 13:21:34','2020-02-07 13:21:34',NULL),(2078,19,1.00,'S','File Service: volvo xc70 2nd','Completed','2020-02-07 14:10:24','2020-02-07 14:10:24',NULL),(2079,19,1.00,'A','Tuning credits purchase','Completed','2020-02-07 15:39:52','2020-02-07 15:39:52',NULL),(2080,19,1.00,'A','Tuning credits purchase','Completed','2020-02-07 15:43:49','2020-02-07 15:43:49',NULL),(2081,19,1.00,'S','File Service: audi a6 3','Completed','2020-02-07 15:58:09','2020-02-07 15:58:09',NULL),(2082,100,1.00,'S','File Service: ford focus st2 tdci 2015','Completed','2020-02-07 17:07:54','2020-02-07 17:07:54',NULL),(2083,45,1.00,'S','File Service: VW Transporter T5 (GU65 KRN)','Completed','2020-02-08 09:05:21','2020-02-08 09:05:21',NULL),(2084,102,2.00,'A','Tuning credits purchase','Completed','2020-02-08 09:41:24','2020-02-08 09:41:24',NULL),(2085,102,1.00,'S','File Service: bmw x5 anything','Completed','2020-02-08 09:43:58','2020-02-08 09:43:58',NULL),(2086,100,1.00,'S','File Service: skoda octavia vrs 2013','Completed','2020-02-08 14:17:39','2020-02-08 14:17:39',NULL),(2087,100,1.00,'S','File Service: audi a3 tfsi 2016','Completed','2020-02-08 14:33:11','2020-02-08 14:33:11',NULL),(2088,100,1.00,'S','File Service: audi a3 tdi 2004','Completed','2020-02-08 15:50:04','2020-02-08 15:50:04',NULL),(2089,45,1.00,'S','File Service: BMW 428 2013 (FG63 TDV)','Completed','2020-02-10 12:45:44','2020-02-10 12:45:44',NULL),(2090,102,1.00,'S','File Service: fiat ducato anything','Completed','2020-02-10 13:44:34','2020-02-10 13:44:34',NULL),(2091,102,2.00,'A','Tuning credits purchase','Completed','2020-02-10 14:14:40','2020-02-10 14:14:40',NULL),(2092,102,1.00,'S','File Service: vw golf anything','Completed','2020-02-10 14:16:11','2020-02-10 14:16:11',NULL),(2093,100,1.00,'S','File Service: audi a3 2013','Completed','2020-02-10 16:57:05','2020-02-10 16:57:05',NULL),(2094,102,1.00,'S','File Service: bmw 7series anything','Completed','2020-02-11 09:45:11','2020-02-11 09:45:11',NULL),(2095,121,1.00,'S','File Service: vauxhall combo D','Completed','2020-02-11 11:02:52','2020-02-11 11:02:52',NULL),(2096,76,1.00,'S','Take away','Completed','2020-02-12 08:35:51','2020-02-12 08:35:51',NULL),(2097,76,1.00,'S','File Service: Landrover defender puma','Completed','2020-02-12 09:43:39','2020-02-12 09:43:39',NULL),(2098,121,1.00,'S','File Service: vw transporter t6','Completed','2020-02-12 13:42:21','2020-02-12 13:42:21',NULL),(2099,100,1.00,'S','File Service: volvo v50 d5 2008','Completed','2020-02-12 13:51:02','2020-02-12 13:51:02',NULL),(2100,19,1.00,'S','File Service: ford transit mk7','Completed','2020-02-12 14:40:48','2020-02-12 14:40:48',NULL),(2101,100,1.00,'S','File Service: seat leon 2010','Completed','2020-02-12 15:30:04','2020-02-12 15:30:04',NULL),(2102,24,1.00,'A','Tuning credits purchase','Completed','2020-02-12 16:43:35','2020-02-12 16:43:35',NULL),(2103,24,1.00,'S','File Service: audi a3 8v','Completed','2020-02-12 16:44:39','2020-02-12 16:44:39',NULL),(2104,24,1.00,'S','File Service: audi a3 8v','Completed','2020-02-12 17:01:16','2020-02-12 17:01:16',NULL),(2105,19,1.00,'A','Tuning credits purchase','Completed','2020-02-13 09:09:28','2020-02-13 09:09:28',NULL),(2106,19,1.00,'S','File Service: landrover freelander 2nd','Completed','2020-02-13 09:16:02','2020-02-13 09:16:02',NULL),(2107,100,1.00,'S','File Service: seat leon 2007','Completed','2020-02-13 11:13:13','2020-02-13 11:13:13',NULL),(2108,19,1.00,'A','Tuning credits purchase','Completed','2020-02-13 12:06:35','2020-02-13 12:06:35',NULL),(2109,19,1.00,'S','File Service: nissan navara d40','Completed','2020-02-13 12:08:12','2020-02-13 12:08:12',NULL),(2110,121,1.00,'S','File Service: skoda fabia x','Completed','2020-02-13 12:15:28','2020-02-13 12:15:28',NULL),(2111,45,1.33,'S','File Service: Ford Transit 2013 (NA13 RMO)','Completed','2020-02-13 13:19:55','2020-02-13 13:19:55',NULL),(2112,45,10.00,'A','add 14/02/20','Completed','2020-02-13 15:35:28','2020-02-13 15:35:28',NULL),(2113,27,1.00,'A','Tuning credits purchase','Completed','2020-02-13 15:38:28','2020-02-13 15:38:28',NULL),(2114,45,1.00,'S','File Service: Isuzu Dmax 2016 (Vx65 pxl)','Completed','2020-02-13 15:40:08','2020-02-13 15:40:08',NULL),(2115,27,1.00,'S','File Service: AUDI SQ5 MK1','Completed','2020-02-13 15:40:42','2020-02-13 15:40:42',NULL),(2116,100,1.00,'S','File Service: mercedes vito 109 2008','Completed','2020-02-13 18:31:03','2020-02-13 18:31:03',NULL),(2117,100,1.00,'S','File Service: skoda fabia 2013','Completed','2020-02-14 09:04:48','2020-02-14 09:04:48',NULL),(2118,100,1.00,'S','File Service: vauxhall insignia 2013','Completed','2020-02-14 09:24:29','2020-02-14 09:24:29',NULL),(2119,121,1.00,'S','File Service: mercedes c220d 2','Completed','2020-02-14 15:10:04','2020-02-14 15:10:04',NULL),(2120,29,1.00,'A','Tuning credits purchase','Completed','2020-02-15 14:16:36','2020-02-15 14:16:36',NULL),(2121,29,1.00,'S','File Service: toyota avensis 3','Completed','2020-02-15 14:18:54','2020-02-15 14:18:54',NULL),(2122,102,2.00,'A','Tuning credits purchase','Completed','2020-02-17 08:03:59','2020-02-17 08:03:59',NULL),(2123,102,1.00,'S','File Service: vw golf anything','Completed','2020-02-17 08:08:53','2020-02-17 08:08:53',NULL),(2124,102,1.00,'S','File Service: toyota hilux anything','Completed','2020-02-17 08:11:00','2020-02-17 08:11:00',NULL),(2125,102,2.00,'A','Tuning credits purchase','Completed','2020-02-17 08:12:16','2020-02-17 08:12:16',NULL),(2126,102,1.00,'S','File Service: MERCEDES SPRINTER anything','Completed','2020-02-17 08:13:59','2020-02-17 08:13:59',NULL),(2127,102,1.00,'S','File Service: PORSCHE CAYENNE S anything','Completed','2020-02-17 09:07:34','2020-02-17 09:07:34',NULL),(2128,100,1.00,'S','File Service: mercedes c250 2009','Completed','2020-02-17 12:25:49','2020-02-17 12:25:49',NULL),(2129,100,1.00,'S','File Service: mazda 3 2010','Completed','2020-02-17 13:56:23','2020-02-17 13:56:23',NULL),(2130,100,1.00,'S','File Service: bmw 320d 2010','Completed','2020-02-17 14:26:42','2020-02-17 14:26:42',NULL),(2131,100,1.00,'S','File Service: ford custom 2018','Completed','2020-02-17 15:34:24','2020-02-17 15:34:24',NULL),(2132,19,1.00,'A','Tuning credits purchase','Completed','2020-02-18 10:40:30','2020-02-18 10:40:30',NULL),(2133,19,1.00,'S','File Service: volvo v50 2','Completed','2020-02-18 11:52:30','2020-02-18 11:52:30',NULL),(2134,102,1.00,'S','File Service: citroen c4 cactus anything','Completed','2020-02-18 12:07:13','2020-02-18 12:07:13',NULL),(2135,100,1.00,'S','File Service: honda accord 2008','Completed','2020-02-18 12:22:57','2020-02-18 12:22:57',NULL),(2136,74,1.00,'A','Tuning credits purchase','Completed','2020-02-18 12:23:18','2020-02-18 12:23:18',NULL),(2137,74,1.00,'S','File Service: FORD TRANSIT MK7','Completed','2020-02-18 12:25:55','2020-02-18 12:25:55',NULL),(2138,100,1.00,'S','File Service: vw golf 2005','Completed','2020-02-18 13:18:11','2020-02-18 13:18:11',NULL),(2139,100,1.00,'S','File Service: ford galaxy 2011','Completed','2020-02-18 16:22:22','2020-02-18 16:22:22',NULL),(2140,102,1.00,'A','Tuning credits purchase','Completed','2020-02-19 08:49:02','2020-02-19 08:49:02',NULL),(2141,102,1.00,'S','File Service: mercedes SPRINTER anything','Completed','2020-02-19 08:50:37','2020-02-19 08:50:37',NULL),(2142,100,1.00,'S','File Service: skoda octavia vrs 2007','Completed','2020-02-19 10:06:55','2020-02-19 10:06:55',NULL),(2143,100,1.00,'S','File Service: audi a3 tdi 2008','Completed','2020-02-19 11:07:33','2020-02-19 11:07:33',NULL),(2144,102,2.00,'A','Tuning credits purchase','Completed','2020-02-19 14:13:06','2020-02-19 14:13:06',NULL),(2145,102,1.00,'S','File Service: toyota auris anything','Completed','2020-02-19 14:28:14','2020-02-19 14:28:14',NULL),(2146,102,1.00,'S','File Service: honda crv anything','Completed','2020-02-19 14:55:39','2020-02-19 14:55:39',NULL),(2147,102,1.00,'A','Tuning credits purchase','Completed','2020-02-19 15:23:34','2020-02-19 15:23:34',NULL),(2148,102,1.00,'S','File Service: porsche cayenne anything','Completed','2020-02-19 16:21:49','2020-02-19 16:21:49',NULL),(2149,43,1.00,'S','File Service: Ford Ranger T6','Completed','2020-02-19 17:34:05','2020-02-19 17:34:05',NULL),(2150,100,1.00,'S','File Service: mini roadster JCW 2015','Completed','2020-02-19 17:56:18','2020-02-19 17:56:18',NULL),(2151,76,1.00,'A','Tuning credits purchase','Completed','2020-02-19 19:01:16','2020-02-19 19:01:16',NULL),(2152,43,1.00,'S','File Service: Mercedes ML270 W163','Completed','2020-02-19 19:31:39','2020-02-19 19:31:39',NULL),(2153,76,1.00,'S','File Service: audi q3 2017','Completed','2020-02-19 19:32:06','2020-02-19 19:32:06',NULL),(2154,100,1.00,'S','File Service: jaguar xfr d 2015','Completed','2020-02-20 10:34:43','2020-02-20 10:34:43',NULL),(2155,19,1.00,'A','Tuning credits purchase','Completed','2020-02-20 12:42:29','2020-02-20 12:42:29',NULL),(2156,19,1.00,'S','File Service: vauxhall corsa d','Completed','2020-02-20 13:05:34','2020-02-20 13:05:34',NULL),(2157,19,1.00,'A','Tuning credits purchase','Completed','2020-02-20 13:24:54','2020-02-20 13:24:54',NULL),(2158,19,1.00,'S','File Service: vw tiguan 2nd','Completed','2020-02-20 13:26:45','2020-02-20 13:26:45',NULL),(2159,76,1.00,'A','Tuning credits purchase','Completed','2020-02-20 14:39:39','2020-02-20 14:39:39',NULL),(2160,76,1.00,'S','File Service: Audi a6 2015','Completed','2020-02-20 14:40:50','2020-02-20 14:40:50',NULL),(2161,121,1.00,'S','File Service: seat ibiza 6j','Completed','2020-02-20 19:37:07','2020-02-20 19:37:07',NULL),(2162,19,1.00,'A','Tuning credits purchase','Completed','2020-02-21 09:40:19','2020-02-21 09:40:19',NULL),(2163,100,1.00,'S','File Service: vauxhall corsa d 2014','Completed','2020-02-21 09:54:24','2020-02-21 09:54:24',NULL),(2164,19,1.00,'S','File Service: landrover evoque 1','Completed','2020-02-21 09:55:58','2020-02-21 09:55:58',NULL),(2165,100,1.00,'S','File Service: vw transporter 2011','Completed','2020-02-21 10:50:19','2020-02-21 10:50:19',NULL),(2166,100,1.00,'S','File Service: audi q5 2012','Completed','2020-02-21 11:55:26','2020-02-21 11:55:26',NULL),(2167,29,1.00,'A','Tuning credits purchase','Completed','2020-02-21 15:33:15','2020-02-21 15:33:15',NULL),(2168,76,1.00,'A','Tuning credits purchase','Completed','2020-02-21 15:36:46','2020-02-21 15:36:46',NULL),(2169,29,1.00,'S','File Service: peugeout expert 3','Completed','2020-02-21 15:39:02','2020-02-21 15:39:02',NULL),(2170,76,1.00,'S','File Service: Mercedes sprinter 2014','Completed','2020-02-21 15:39:16','2020-02-21 15:39:16',NULL),(2171,100,1.00,'S','File Service: audi a4 2009','Completed','2020-02-21 16:51:49','2020-02-21 16:51:49',NULL),(2172,100,1.00,'S','File Service: landrover freelander 2005','Completed','2020-02-21 18:48:30','2020-02-21 18:48:30',NULL),(2173,43,1.00,'S','File Service: VW Golk 7th','Completed','2020-02-22 12:07:27','2020-02-22 12:07:27',NULL),(2174,100,1.00,'S','File Service: vw transporter 2017','Completed','2020-02-22 12:55:34','2020-02-22 12:55:34',NULL),(2175,70,1.00,'S','File Service: dfgdf dfgdfg dfgdfgdf','Completed','2020-02-22 14:39:27','2020-02-22 14:39:27',NULL),(2176,29,1.00,'A','Tuning credits purchase','Completed','2020-02-22 15:36:08','2020-02-22 15:36:08',NULL),(2177,29,1.00,'S','File Service: renault trafic 1','Completed','2020-02-22 15:48:44','2020-02-22 15:48:44',NULL),(2178,102,2.00,'A','Tuning credits purchase','Completed','2020-02-24 08:26:21','2020-02-24 08:26:21',NULL),(2179,102,1.00,'S','File Service: isuzu DMAX anything','Completed','2020-02-24 08:27:54','2020-02-24 08:27:54',NULL),(2180,45,1.00,'S','File Service: VW Caddy 2018 (CU18 YWS)','Completed','2020-02-24 09:48:37','2020-02-24 09:48:37',NULL),(2181,100,1.00,'S','File Service: vw tiguan 4motion 2013','Completed','2020-02-24 12:27:42','2020-02-24 12:27:42',NULL),(2182,100,1.00,'S','File Service: ford transit 2015','Completed','2020-02-24 13:35:25','2020-02-24 13:35:25',NULL),(2183,19,1.00,'A','Tuning credits purchase','Completed','2020-02-24 13:46:29','2020-02-24 13:46:29',NULL),(2184,19,1.00,'S','File Service: audi a5 1','Completed','2020-02-24 13:50:57','2020-02-24 13:50:57',NULL),(2185,102,1.00,'S','File Service: isuzu DMAX anything','Completed','2020-02-24 16:31:40','2020-02-24 16:31:40',NULL),(2186,100,1.00,'S','File Service: meredes a200 2013','Completed','2020-02-24 16:43:07','2020-02-24 16:43:07',NULL),(2187,45,1.00,'S','File Service: Ford SMAX 2013 (AK13 KLL)','Completed','2020-02-24 17:00:47','2020-02-24 17:00:47',NULL),(2188,100,1.00,'S','File Service: ford custom 2016','Completed','2020-02-25 11:48:23','2020-02-25 11:48:23',NULL),(2189,102,2.00,'A','Tuning credits purchase','Completed','2020-02-25 13:55:48','2020-02-25 13:55:48',NULL),(2190,100,1.00,'S','File Service: mercedes sprinter 2013','Completed','2020-02-25 15:59:56','2020-02-25 15:59:56',NULL),(2191,102,1.00,'S','File Service: TOYOTA HILUX 2','Completed','2020-02-25 17:07:32','2020-02-25 17:07:32',NULL),(2192,29,1.00,'A','Tuning credits purchase','Completed','2020-02-25 17:15:25','2020-02-25 17:15:25',NULL),(2193,29,1.00,'S','File Service: renault master 3','Completed','2020-02-25 17:20:09','2020-02-25 17:20:09',NULL),(2194,100,1.00,'S','File Service: bmw m235i 2014','Completed','2020-02-25 17:22:57','2020-02-25 17:22:57',NULL),(2195,27,1.00,'A','Tuning credits purchase','Completed','2020-02-26 09:58:37','2020-02-26 09:58:37',NULL),(2196,27,1.00,'S','File Service: MERCEDES C250 MK1','Completed','2020-02-26 11:44:32','2020-02-26 11:44:32',NULL),(2197,100,1.00,'S','File Service: vw scirocco 2009','Completed','2020-02-26 12:19:37','2020-02-26 12:19:37',NULL),(2198,43,1.00,'S','File Service: Mercedes 311 W906','Completed','2020-02-26 13:39:29','2020-02-26 13:39:29',NULL),(2199,100,1.00,'S','File Service: focus st3 tdci 2015','Completed','2020-02-26 14:05:43','2020-02-26 14:05:43',NULL),(2200,19,1.00,'A','Tuning credits purchase','Completed','2020-02-27 14:06:35','2020-02-27 14:06:35',NULL),(2201,19,1.00,'S','File Service: bmw 320i f30','Completed','2020-02-27 14:08:57','2020-02-27 14:08:57',NULL),(2202,19,2.00,'A','Tuning credits purchase','Completed','2020-02-27 15:01:39','2020-02-27 15:01:39',NULL),(2203,19,1.66,'S','File Service: saab 93 1','Completed','2020-02-27 15:09:51','2020-02-27 15:09:51',NULL),(2204,102,1.00,'S','File Service: mercedes vito anything','Completed','2020-02-28 07:23:50','2020-02-28 07:23:50',NULL),(2205,100,1.00,'S','File Service: vw t5 2013','Completed','2020-02-28 09:01:20','2020-02-28 09:01:20',NULL),(2206,74,1.00,'A','Tuning credits purchase','Completed','2020-02-28 10:52:05','2020-02-28 10:52:05',NULL),(2207,74,1.00,'S','File Service: VAUX COMBO MK4','Completed','2020-02-28 10:57:13','2020-02-28 10:57:13',NULL),(2208,100,1.00,'S','File Service: audi tt 2001','Completed','2020-02-28 15:33:35','2020-02-28 15:33:35',NULL),(2209,100,1.00,'S','File Service: citroen ds3 2011','Completed','2020-02-28 16:19:55','2020-02-28 16:19:55',NULL),(2210,102,2.00,'A','Tuning credits purchase','Completed','2020-02-29 07:41:12','2020-02-29 07:41:12',NULL),(2211,102,1.00,'S','File Service: mercedes e class anything','Completed','2020-02-29 07:43:35','2020-02-29 07:43:35',NULL),(2212,102,1.00,'S','File Service: porsche maccan 3.0 v6s','Completed','2020-02-29 09:57:34','2020-02-29 09:57:34',NULL),(2213,100,1.00,'S','File Service: bmw M50D 2017','Completed','2020-02-29 11:04:54','2020-02-29 11:04:54',NULL),(2214,100,1.00,'S','File Service: vw caddy 2013','Completed','2020-02-29 11:26:25','2020-02-29 11:26:25',NULL),(2215,100,1.00,'S','File Service: range rover evoque 2013','Completed','2020-02-29 13:47:59','2020-02-29 13:47:59',NULL),(2216,19,1.00,'A','Tuning credits purchase','Completed','2020-03-02 09:11:07','2020-03-02 09:11:07',NULL),(2217,19,1.00,'S','File Service: peugeot 308 7n','Completed','2020-03-02 09:14:06','2020-03-02 09:14:06',NULL),(2218,45,1.00,'S','File Service: Ford Mondeo Mk4 (MV11 YNE)','Completed','2020-03-02 15:33:19','2020-03-02 15:33:19',NULL),(2219,100,1.00,'S','File Service: vw transporter 2007','Completed','2020-03-03 11:15:32','2020-03-03 11:15:32',NULL),(2220,29,1.00,'A','Tuning credits purchase','Completed','2020-03-03 11:41:28','2020-03-03 11:41:28',NULL),(2221,29,1.00,'S','File Service: audi q5 3','Completed','2020-03-03 11:49:46','2020-03-03 11:49:46',NULL),(2222,100,1.00,'S','File Service: audi a5 2007','Completed','2020-03-03 14:59:59','2020-03-03 14:59:59',NULL),(2223,121,1.00,'S','File Service: mercedes e350 x','Completed','2020-03-03 15:03:53','2020-03-03 15:03:53',NULL),(2224,29,1.00,'A','Tuning credits purchase','Completed','2020-03-03 18:18:22','2020-03-03 18:18:22',NULL),(2225,29,1.33,'S','File Service: vauxhall movano 3','Completed','2020-03-03 18:20:38','2020-03-03 18:20:38',NULL),(2226,19,1.00,'A','Tuning credits purchase','Completed','2020-03-04 10:22:10','2020-03-04 10:22:10',NULL),(2227,19,1.00,'S','File Service: NISSAN navara d321','Completed','2020-03-04 10:30:45','2020-03-04 10:30:45',NULL),(2228,19,1.00,'A','Tuning credits purchase','Completed','2020-03-04 10:32:54','2020-03-04 10:32:54',NULL),(2229,19,1.00,'S','File Service: ford connect 1 fl','Completed','2020-03-04 10:43:28','2020-03-04 10:43:28',NULL),(2230,19,1.00,'A','Tuning credits purchase','Completed','2020-03-04 15:43:01','2020-03-04 15:43:01',NULL),(2231,19,1.00,'S','File Service: skoda yeti 2nd','Completed','2020-03-04 15:44:38','2020-03-04 15:44:38',NULL),(2232,19,1.00,'A','Tuning credits purchase','Completed','2020-03-04 16:18:38','2020-03-04 16:18:38',NULL),(2233,19,1.00,'S','File Service: audi a1 1','Completed','2020-03-04 16:23:41','2020-03-04 16:23:41',NULL),(2234,76,1.00,'A','Tuning credits purchase','Completed','2020-03-04 20:33:18','2020-03-04 20:33:18',NULL),(2235,76,1.00,'S','File Service: vw caddy 2016','Completed','2020-03-04 20:35:02','2020-03-04 20:35:02',NULL),(2236,29,0.00,'S','File Service: mercedes sprinter 3','Completed','2020-03-04 21:03:02','2020-03-04 21:03:02',NULL),(2237,45,1.00,'S','File Service: BMW 320D E93 (CK08 RDX)','Completed','2020-03-05 09:09:29','2020-03-05 09:09:29',NULL),(2238,100,1.00,'S','File Service: vw caravelle t4 2000','Completed','2020-03-05 10:14:43','2020-03-05 10:14:43',NULL),(2239,19,1.00,'A','Tuning credits purchase','Completed','2020-03-05 13:53:20','2020-03-05 13:53:20',NULL),(2240,19,1.00,'S','File Service: landrover evoque 1st','Completed','2020-03-05 13:55:21','2020-03-05 13:55:21',NULL),(2241,100,1.00,'S','File Service: ford connect 2014','Completed','2020-03-05 14:40:49','2020-03-05 14:40:49',NULL),(2242,45,1.66,'S','File Service: BMW 330 E91 (YH06 YFK)','Completed','2020-03-05 16:08:22','2020-03-05 16:08:22',NULL),(2243,98,2.00,'A','Tuning credits purchase','Completed','2020-03-05 17:36:43','2020-03-05 17:36:43',NULL),(2244,98,2.00,'S','File Service: AUDI RS4 B7','Completed','2020-03-05 17:40:54','2020-03-05 17:40:54',NULL),(2245,98,1.00,'S','extras','Completed','2020-03-05 18:37:49','2020-03-05 18:37:49',NULL),(2246,100,1.00,'S','File Service: vw tiguan 4motion 2011','Completed','2020-03-06 09:17:30','2020-03-06 09:17:30',NULL),(2247,45,1.00,'S','File Service: Mercedes CLS C218 (FL15 ZDH)','Completed','2020-03-06 09:55:01','2020-03-06 09:55:01',NULL),(2248,100,1.00,'S','File Service: vw golf r 2015','Completed','2020-03-06 13:28:34','2020-03-06 13:28:34',NULL),(2249,45,1.33,'S','File Service: VW Caddy 2013 GU62 YBO','Completed','2020-03-06 15:59:10','2020-03-06 15:59:10',NULL),(2250,27,1.00,'A','Tuning credits purchase','Completed','2020-03-06 16:26:14','2020-03-06 16:26:14',NULL),(2251,27,1.00,'S','File Service: VW T5 MK1','Completed','2020-03-06 16:27:47','2020-03-06 16:27:47',NULL),(2252,100,1.00,'S','File Service: ford custom 2014','Completed','2020-03-06 17:10:45','2020-03-06 17:10:45',NULL),(2253,100,1.00,'S','File Service: volvo v50 2006','Completed','2020-03-06 17:20:24','2020-03-06 17:20:24',NULL),(2254,29,1.00,'A','Tuning credits purchase','Completed','2020-03-08 20:06:12','2020-03-08 20:06:12',NULL),(2255,29,1.00,'S','File Service: volkswagen golf 3','Completed','2020-03-08 20:18:02','2020-03-08 20:18:02',NULL),(2256,100,1.00,'S','File Service: bmw 320d 2014','Completed','2020-03-09 11:22:23','2020-03-09 11:22:23',NULL),(2257,121,1.00,'S','File Service: vw golf 6','Completed','2020-03-09 13:02:47','2020-03-09 13:02:47',NULL),(2258,94,1.00,'S','File Service: toyota dyna 4','Completed','2020-03-09 16:24:55','2020-03-09 16:24:55',NULL),(2259,102,2.00,'A','Tuning credits purchase','Completed','2020-03-10 08:27:19','2020-03-10 08:27:19',NULL),(2260,102,1.00,'S','File Service: mercedes e class 220','Completed','2020-03-10 08:51:57','2020-03-10 08:51:57',NULL),(2261,100,1.00,'S','File Service: audi a3 2011','Completed','2020-03-10 09:30:26','2020-03-10 09:30:26',NULL),(2262,102,1.00,'S','File Service: isuzu grafter euroiv','Completed','2020-03-10 09:53:51','2020-03-10 09:53:51',NULL),(2263,100,1.00,'S','File Service: ford custom 2019','Completed','2020-03-10 10:57:11','2020-03-10 10:57:11',NULL),(2264,19,2.00,'A','Tuning credits purchase','Completed','2020-03-10 11:40:02','2020-03-10 11:40:02',NULL),(2265,19,1.66,'S','File Service: vw transporter t5','Completed','2020-03-10 11:50:23','2020-03-10 11:50:23',NULL),(2266,100,1.00,'S','File Service: nissan navara 2009','Completed','2020-03-10 16:53:51','2020-03-10 16:53:51',NULL),(2267,100,1.00,'S','File Service: vw caddy 2011','Completed','2020-03-10 19:29:55','2020-03-10 19:29:55',NULL),(2268,100,1.00,'S','File Service: mercedes sprinter 319','Completed','2020-03-11 09:38:57','2020-03-11 09:38:57',NULL),(2269,102,2.00,'A','Tuning credits purchase','Completed','2020-03-11 10:01:32','2020-03-11 10:01:32',NULL),(2270,102,1.00,'S','File Service: mitsubishi cunter anything','Completed','2020-03-11 10:03:44','2020-03-11 10:03:44',NULL),(2271,30,1.00,'A','Tuning credits purchase','Completed','2020-03-11 11:30:23','2020-03-11 11:30:23',NULL),(2272,102,0.33,'S','take away for canter','Completed','2020-03-11 12:14:04','2020-03-11 12:14:04',NULL),(2273,30,1.00,'S','File Service: FIAT DOBLO 2017','Completed','2020-03-11 13:06:21','2020-03-11 13:06:21',NULL),(2274,19,1.00,'A','Tuning credits purchase','Completed','2020-03-11 13:09:04','2020-03-11 13:09:04',NULL),(2275,19,1.00,'S','File Service: volvo v70 2nd','Completed','2020-03-11 13:11:00','2020-03-11 13:11:00',NULL),(2276,100,1.00,'S','File Service: vauxhall insignia 2013','Completed','2020-03-11 14:11:24','2020-03-11 14:11:24',NULL),(2277,121,1.00,'S','File Service: citroen c5 2','Completed','2020-03-11 14:19:40','2020-03-11 14:19:40',NULL),(2278,19,0.50,'S','DPF EXTRA ON SAAB RE-DO','Completed','2020-03-11 14:42:33','2020-03-11 14:42:33',NULL),(2279,94,0.00,'S','File Service: toyota dyna 4','Completed','2020-03-11 15:38:08','2020-03-11 15:38:08',NULL),(2280,94,2.00,'A','Tuning credits purchase','Completed','2020-03-11 16:21:54','2020-03-11 16:21:54',NULL),(2281,27,1.00,'A','Tuning credits purchase','Completed','2020-03-11 16:37:14','2020-03-11 16:37:14',NULL),(2282,27,1.66,'S','File Service: FORD TRANSIT MK7','Completed','2020-03-11 16:40:33','2020-03-11 16:40:33',NULL),(2283,94,1.00,'S','File Service: iveco eurocargo 4','Completed','2020-03-11 16:46:46','2020-03-11 16:46:46',NULL),(2284,27,0.33,'S','Speed limiter addon on transit','Completed','2020-03-11 21:03:14','2020-03-11 21:03:14',NULL),(2285,76,2.00,'A','Tuning credits purchase','Completed','2020-03-12 09:40:27','2020-03-12 09:40:27',NULL),(2286,76,1.00,'S','File Service: FORD RANGER 2017','Completed','2020-03-12 10:20:19','2020-03-12 10:20:19',NULL),(2287,121,1.00,'S','File Service: audi a6 2','Completed','2020-03-12 11:28:29','2020-03-12 11:28:29',NULL),(2288,24,1.00,'A','Tuning credits purchase','Completed','2020-03-12 13:05:45','2020-03-12 13:05:45',NULL),(2289,24,1.00,'S','File Service: land rover rangerover evoque 1','Completed','2020-03-12 13:11:57','2020-03-12 13:11:57',NULL),(2291,100,1.00,'S','File Service: vw beetle 2013','Completed','2020-03-12 15:20:39','2020-03-12 15:20:39',NULL),(2292,100,1.00,'S','File Service: ford custom 2018','Completed','2020-03-12 16:40:52','2020-03-12 16:40:52',NULL),(2293,100,1.00,'S','File Service: ford custom 2019','Completed','2020-03-12 16:48:27','2020-03-12 16:48:27',NULL),(2294,100,1.00,'S','File Service: ford custom 2019','Completed','2020-03-12 17:05:10','2020-03-12 17:05:10',NULL),(2295,100,1.00,'S','File Service: ford custom 2018','Completed','2020-03-12 18:28:32','2020-03-12 18:28:32',NULL),(2296,121,1.00,'S','File Service: ford transit custom','Completed','2020-03-12 21:44:33','2020-03-12 21:44:33',NULL),(2297,43,1.00,'S','File Service: VW Tiguan MK 1 (5N1)','Completed','2020-03-13 17:25:12','2020-03-13 17:25:12',NULL),(2298,45,10.00,'A','Add 10 13/03/2020','Completed','2020-03-13 21:18:31','2020-03-13 21:18:31',NULL),(2299,81,1.00,'A','Tuning credits purchase','Completed','2020-03-14 08:57:13','2020-03-14 08:57:13',NULL),(2300,81,1.00,'S','File Service: ford transit 2010','Completed','2020-03-14 09:21:15','2020-03-14 09:21:15',NULL),(2301,45,1.00,'S','File Service: Ford Transit Custom (HN65 XOW)','Completed','2020-03-14 09:37:40','2020-03-14 09:37:40',NULL),(2302,45,1.00,'S','File Service: Ford Transit custom (KV16 ZNL)','Completed','2020-03-14 09:45:52','2020-03-14 09:45:52',NULL),(2303,100,1.00,'S','File Service: ford galaxy 2017','Completed','2020-03-14 10:13:01','2020-03-14 10:13:01',NULL),(2304,100,1.00,'S','File Service: vauxhall astra 2007','Completed','2020-03-14 11:16:55','2020-03-14 11:16:55',NULL),(2305,100,1.00,'S','File Service: vauxhall mokka turbo 2014','Completed','2020-03-16 10:06:45','2020-03-16 10:06:45',NULL),(2306,121,1.00,'S','File Service: mitsubishi l200 2','Completed','2020-03-16 14:53:32','2020-03-16 14:53:32',NULL),(2307,100,1.00,'S','File Service: mercedes clc220 cdi 2008','Completed','2020-03-16 15:42:22','2020-03-16 15:42:22',NULL),(2308,76,1.00,'S','File Service: ford transit custom','Completed','2020-03-16 16:14:46','2020-03-16 16:14:46',NULL),(2309,100,1.00,'S','File Service: vw passat 2006','Completed','2020-03-16 17:28:33','2020-03-16 17:28:33',NULL),(2310,100,1.00,'S','File Service: ford transit 2012','Completed','2020-03-16 18:27:48','2020-03-16 18:27:48',NULL),(2311,76,1.00,'A','Tuning credits purchase','Completed','2020-03-17 09:07:21','2020-03-17 09:07:21',NULL),(2312,76,1.00,'S','File Service: ford transit mk7','Completed','2020-03-17 09:09:03','2020-03-17 09:09:03',NULL),(2313,19,1.00,'A','Tuning credits purchase','Completed','2020-03-17 09:48:14','2020-03-17 09:48:14',NULL),(2314,19,1.00,'S','File Service: landrover range rover l322 l322','Completed','2020-03-17 09:50:27','2020-03-17 09:50:27',NULL),(2315,43,1.00,'S','File Service: Saab 9-3 MK1','Completed','2020-03-17 10:37:15','2020-03-17 10:37:15',NULL),(2316,76,1.00,'A','Tuning credits purchase','Completed','2020-03-17 11:48:24','2020-03-17 11:48:24',NULL),(2317,76,1.00,'S','File Service: OPEL CORSA D','Completed','2020-03-17 11:49:32','2020-03-17 11:49:32',NULL),(2318,76,1.00,'A','Tuning credits purchase','Completed','2020-03-17 11:53:12','2020-03-17 11:53:12',NULL),(2319,76,1.00,'S','File Service: RENAULT TRAFIC 2','Completed','2020-03-17 11:54:52','2020-03-17 11:54:52',NULL),(2320,100,1.00,'S','File Service: audi a4 2006','Completed','2020-03-17 18:42:22','2020-03-17 18:42:22',NULL),(2321,19,1.00,'A','Tuning credits purchase','Completed','2020-03-18 10:11:29','2020-03-18 10:11:29',NULL),(2322,19,1.00,'S','File Service: ford transit connect mk2','Completed','2020-03-18 10:13:17','2020-03-18 10:13:17',NULL),(2323,100,1.00,'S','File Service: audi a6 2008','Completed','2020-03-18 10:23:20','2020-03-18 10:23:20',NULL),(2324,100,1.00,'S','File Service: vw caddy 2014','Completed','2020-03-18 13:30:26','2020-03-18 13:30:26',NULL),(2325,19,1.00,'A','Tuning credits purchase','Completed','2020-03-18 15:47:41','2020-03-18 15:47:41',NULL),(2326,19,1.00,'S','File Service: bmw 116i e81','Completed','2020-03-18 15:50:38','2020-03-18 15:50:38',NULL),(2327,100,1.00,'S','File Service: ford custom 2015','Completed','2020-03-18 17:24:11','2020-03-18 17:24:11',NULL),(2328,121,1.00,'S','File Service: ford transit 7','Completed','2020-03-19 09:37:50','2020-03-19 09:37:50',NULL),(2329,76,1.00,'A','Tuning credits purchase','Completed','2020-03-19 10:42:37','2020-03-19 10:42:37',NULL),(2330,76,1.00,'S','File Service: RENAULT trafic 2','Completed','2020-03-19 10:44:24','2020-03-19 10:44:24',NULL),(2331,35,1.00,'A','Tuning credits purchase','Completed','2020-03-19 11:04:19','2020-03-19 11:04:19',NULL),(2332,35,1.00,'S','File Service: audi a4 b7','Completed','2020-03-19 11:27:14','2020-03-19 11:27:14',NULL),(2333,102,2.00,'A','Tuning credits purchase','Completed','2020-03-19 12:42:30','2020-03-19 12:42:30',NULL),(2334,102,1.00,'S','File Service: mercedes SPRINTER 906','Completed','2020-03-19 12:46:51','2020-03-19 12:46:51',NULL),(2335,102,1.00,'S','File Service: isuzu grafter anything','Completed','2020-03-19 15:05:23','2020-03-19 15:05:23',NULL),(2336,19,1.00,'A','Tuning credits purchase','Completed','2020-03-19 15:21:53','2020-03-19 15:21:53',NULL),(2337,19,1.00,'S','File Service: landrover freelander 2nd','Completed','2020-03-19 15:23:59','2020-03-19 15:23:59',NULL),(2338,102,0.33,'S','take away for for add on','Completed','2020-03-19 15:35:26','2020-03-19 15:35:26',NULL),(2339,100,1.00,'S','File Service: ford custom 2014','Completed','2020-03-19 19:39:27','2020-03-19 19:39:27',NULL),(2340,100,1.00,'S','File Service: ford custom 2015','Completed','2020-03-19 19:56:15','2020-03-19 19:56:15',NULL),(2341,102,1.00,'A','Tuning credits purchase','Completed','2020-03-20 08:49:57','2020-03-20 08:49:57',NULL),(2342,102,1.00,'S','File Service: totota yaris d4d','Completed','2020-03-20 08:51:31','2020-03-20 08:51:31',NULL),(2343,19,1.00,'A','Tuning credits purchase','Completed','2020-03-20 09:26:26','2020-03-20 09:26:26',NULL),(2344,19,1.00,'S','File Service: bmw 325d f31','Completed','2020-03-20 09:30:11','2020-03-20 09:30:11',NULL),(2345,100,1.00,'S','File Service: seat ibiza fr 2005','Completed','2020-03-20 14:21:49','2020-03-20 14:21:49',NULL),(2346,100,1.00,'S','File Service: saab 95 2007','Completed','2020-03-20 14:30:12','2020-03-20 14:30:12',NULL),(2347,100,1.00,'S','File Service: ford focus 2012','Completed','2020-03-20 14:53:46','2020-03-20 14:53:46',NULL),(2348,19,1.00,'A','Tuning credits purchase','Completed','2020-03-20 15:15:10','2020-03-20 15:15:10',NULL),(2349,100,1.00,'S','File Service: vuxhall mokka 2013','Completed','2020-03-20 15:25:26','2020-03-20 15:25:26',NULL),(2350,19,1.00,'S','File Service: renault master 3','Completed','2020-03-20 15:31:00','2020-03-20 15:31:00',NULL),(2351,121,1.00,'S','File Service: seat leon 2','Completed','2020-03-20 17:30:35','2020-03-20 17:30:35',NULL),(2352,100,1.00,'S','File Service: ford custom 2018','Completed','2020-03-21 09:09:24','2020-03-21 09:09:24',NULL),(2353,100,1.00,'S','File Service: ford transit 2017','Completed','2020-03-21 09:33:03','2020-03-21 09:33:03',NULL),(2354,100,1.00,'S','File Service: ford focus st2 tdci 2016','Completed','2020-03-21 09:50:59','2020-03-21 09:50:59',NULL),(2355,100,1.00,'S','File Service: vw t6 2015','Completed','2020-03-21 10:09:20','2020-03-21 10:09:20',NULL),(2356,100,1.00,'S','File Service: land rover discovery 4 2010','Completed','2020-03-21 10:41:02','2020-03-21 10:41:02',NULL),(2357,76,1.00,'A','Tuning credits purchase','Completed','2020-03-21 12:30:47','2020-03-21 12:30:47',NULL),(2358,76,1.00,'A','Tuning credits purchase','Completed','2020-03-21 12:30:48','2020-03-21 12:30:48',NULL),(2359,76,1.00,'S','File Service: ford mondeo 2012','Completed','2020-03-21 12:36:40','2020-03-21 12:36:40',NULL),(2360,76,1.00,'A','Tuning credits purchase','Completed','2020-03-22 21:48:44','2020-03-22 21:48:44',NULL),(2361,76,1.00,'S','File Service: TOYOTA HILUX 2015','Completed','2020-03-22 21:50:07','2020-03-22 21:50:07',NULL),(2362,45,1.00,'S','File Service: Ford Transit Custom (DX15 XKD)','Completed','2020-03-23 10:49:47','2020-03-23 10:49:47',NULL),(2363,121,1.00,'S','File Service: ford transit 7','Completed','2020-03-23 11:25:59','2020-03-23 11:25:59',NULL),(2364,81,1.00,'A','Tuning credits purchase','Completed','2020-03-24 11:53:54','2020-03-24 11:53:54',NULL),(2365,81,1.00,'S','File Service: bmw 118i 2018','Completed','2020-03-24 12:00:04','2020-03-24 12:00:04',NULL),(2366,100,1.00,'S','File Service: izuzu rodeo 2009','Completed','2020-03-24 12:19:28','2020-03-24 12:19:28',NULL),(2367,121,1.00,'S','File Service: ford mondildo 4','Completed','2020-03-25 09:18:36','2020-03-25 09:18:36',NULL),(2368,45,2.00,'S','File Service: Mini Cooper Works R56 (FY58 CZG)','Completed','2020-03-25 09:38:31','2020-03-25 09:38:31',NULL),(2369,102,1.00,'A','Tuning credits purchase','Completed','2020-03-26 08:12:45','2020-03-26 08:12:45',NULL),(2370,102,1.00,'S','File Service: toyota proace van','Completed','2020-03-26 08:15:13','2020-03-26 08:15:13',NULL),(2371,30,1.00,'A','Tuning credits purchase','Completed','2020-03-27 13:05:36','2020-03-27 13:05:36',NULL),(2372,30,1.00,'S','File Service: BMW 2 SERIES 2016','Completed','2020-03-27 13:12:03','2020-03-27 13:12:03',NULL),(2373,100,1.00,'S','File Service: ford fiesta st 2014','Completed','2020-03-27 13:39:09','2020-03-27 13:39:09',NULL),(2374,100,1.00,'S','File Service: audi a3 2014','Completed','2020-03-27 14:30:39','2020-03-27 14:30:39',NULL),(2375,100,1.00,'S','File Service: nissan qashqai 2015','Completed','2020-03-28 14:08:19','2020-03-28 14:08:19',NULL),(2376,100,1.00,'S','File Service: skoda fabia vrs 2004','Completed','2020-03-28 14:30:56','2020-03-28 14:30:56',NULL),(2377,45,10.00,'S','credit 10','Completed','2020-03-28 18:37:53','2020-03-28 18:37:53',NULL),(2378,45,3.00,'A','Billed for 3 credits 27th/3/20 correction','Completed','2020-03-28 18:40:03','2020-03-28 18:40:03',NULL),(2379,100,1.00,'S','File Service: mercedes slk200 2010','Completed','2020-03-29 14:59:15','2020-03-29 14:59:15',NULL),(2380,45,1.00,'A','Tuning credits purchase','Completed','2020-03-30 09:42:12','2020-03-30 09:42:12',NULL),(2381,45,1.00,'S','File Service: Seat Leon Cupra 2014 (NV64 CSZ)','Completed','2020-03-30 10:27:29','2020-03-30 10:27:29',NULL),(2382,94,1.00,'S','File Service: toyota dyna 4','Completed','2020-03-30 10:59:15','2020-03-30 10:59:15',NULL),(2383,45,0.33,'S','add p&B to cupra','Completed','2020-03-30 14:25:33','2020-03-30 14:25:33',NULL),(2384,45,2.00,'A','Tuning credits purchase','Completed','2020-03-30 16:31:41','2020-03-30 16:31:41',NULL),(2385,45,1.33,'S','File Service: vw crafter YY61 LSK','Completed','2020-03-30 16:34:12','2020-03-30 16:34:12',NULL),(2386,24,2.00,'A','Tuning credits purchase','Completed','2020-03-30 16:07:17','2020-03-30 16:07:17',NULL),(2387,24,1.00,'S','File Service: jag s type 2','Completed','2020-03-30 16:12:26','2020-03-30 16:12:26',NULL),(2388,45,1.00,'A','Tuning credits purchase','Completed','2020-03-31 14:09:13','2020-03-31 14:09:13',NULL),(2389,45,1.33,'S','File Service: VW Crafter 2011 (YD61 VKU)','Completed','2020-03-31 14:11:00','2020-03-31 14:11:00',NULL),(2390,100,1.00,'S','File Service: mercades c350 w204','Completed','2020-04-03 08:48:09','2020-04-03 08:48:09',NULL),(2391,100,1.00,'S','File Service: bmw f30 320d','Completed','2020-04-03 10:45:25','2020-04-03 10:45:25',NULL),(2392,35,1.00,'A','Tuning credits purchase','Completed','2020-04-03 13:05:02','2020-04-03 13:05:02',NULL),(2393,35,1.00,'S','File Service: vw tiguan 1','Completed','2020-04-03 13:07:23','2020-04-03 13:07:23',NULL),(2394,27,2.00,'A','Tuning credits purchase','Completed','2020-04-03 15:50:47','2020-04-03 15:50:47',NULL),(2395,27,1.33,'S','File Service: SEAT LEON CUPRA MK5','Completed','2020-04-03 15:54:25','2020-04-03 15:54:25',NULL),(2396,27,0.22,'A','credit','Completed','2020-04-05 10:59:45','2020-04-05 10:59:45',NULL),(2397,100,1.00,'S','File Service: seat ibiza fr 2016','Completed','2020-04-06 09:01:08','2020-04-06 09:01:08',NULL),(2398,100,1.00,'S','File Service: vauxhall insignia 2013','Completed','2020-04-06 09:03:54','2020-04-06 09:03:54',NULL),(2399,19,1.00,'A','Tuning credits purchase','Completed','2020-04-06 09:15:01','2020-04-06 09:15:01',NULL),(2400,19,1.00,'S','File Service: lexus is220d 2nd','Completed','2020-04-06 09:18:55','2020-04-06 09:18:55',NULL),(2401,100,1.00,'S','File Service: ford focus 2012','Completed','2020-04-06 10:54:01','2020-04-06 10:54:01',NULL),(2402,29,1.00,'A','Tuning credits purchase','Completed','2020-04-06 11:48:39','2020-04-06 11:48:39',NULL),(2403,29,1.00,'S','File Service: renault terafic 3','Completed','2020-04-06 11:50:38','2020-04-06 11:50:38',NULL),(2404,100,1.00,'S','File Service: ford fiesta 2009','Completed','2020-04-07 09:09:12','2020-04-07 09:09:12',NULL),(2405,100,1.00,'S','File Service: ford fiesta st 2017','Completed','2020-04-07 10:16:53','2020-04-07 10:16:53',NULL),(2406,100,1.00,'S','File Service: ford focus st 2012','Completed','2020-04-07 12:03:43','2020-04-07 12:03:43',NULL),(2407,100,1.00,'S','File Service: vw crafter 2013','Completed','2020-04-08 11:21:41','2020-04-08 11:21:41',NULL),(2408,45,1.00,'A','Tuning credits purchase','Completed','2020-04-09 07:19:55','2020-04-09 07:19:55',NULL),(2409,45,1.00,'S','File Service: Mercedes Sprinter 2014 (KN14 VGG','Completed','2020-04-09 07:21:02','2020-04-09 07:21:02',NULL),(2410,45,1.00,'A','Tuning credits purchase','Completed','2020-04-09 08:47:31','2020-04-09 08:47:31',NULL),(2411,45,1.00,'S','File Service: VW Polo 2010 (OW10 KWG)','Completed','2020-04-09 08:48:58','2020-04-09 08:48:58',NULL),(2412,35,1.00,'A','Tuning credits purchase','Completed','2020-04-09 11:10:11','2020-04-09 11:10:11',NULL),(2413,35,1.00,'S','File Service: vw golf 6','Completed','2020-04-09 11:11:11','2020-04-09 11:11:11',NULL),(2414,100,1.00,'S','File Service: bmw 335i 2012','Completed','2020-04-10 08:35:10','2020-04-10 08:35:10',NULL),(2415,100,1.00,'S','File Service: vw tiguan 4motion 2016','Completed','2020-04-10 10:00:26','2020-04-10 10:00:26',NULL),(2416,100,1.00,'S','File Service: citroen picasso 2016','Completed','2020-04-10 14:48:32','2020-04-10 14:48:32',NULL),(2417,76,1.00,'A','Tuning credits purchase','Completed','2020-04-11 08:39:32','2020-04-11 08:39:32',NULL),(2418,76,1.00,'S','File Service: bmw 520d e60','Completed','2020-04-11 08:40:41','2020-04-11 08:40:41',NULL),(2419,100,1.00,'S','File Service: seat leon fr 2010','Completed','2020-04-11 09:16:20','2020-04-11 09:16:20',NULL),(2420,100,1.00,'S','File Service: vw caddy 2011','Completed','2020-04-11 11:43:16','2020-04-11 11:43:16',NULL),(2421,100,1.00,'S','File Service: peugeot 207 2006','Completed','2020-04-11 12:04:13','2020-04-11 12:04:13',NULL),(2422,100,1.00,'S','File Service: skoda karoq 2020','Completed','2020-04-13 11:34:22','2020-04-13 11:34:22',NULL),(2423,19,2.00,'A','Tuning credits purchase','Completed','2020-04-14 07:57:19','2020-04-14 07:57:19',NULL),(2424,19,1.33,'S','File Service: merc sprinter 906','Completed','2020-04-14 08:02:23','2020-04-14 08:02:23',NULL),(2425,121,1.00,'S','File Service: citroen c5 2','Completed','2020-04-14 10:34:28','2020-04-14 10:34:28',NULL),(2426,24,1.00,'S','speed limiter','Completed','2020-04-14 13:22:58','2020-04-14 13:22:58',NULL),(2427,45,0.66,'S','speed limiter and egr on sprinter - addon','Completed','2020-04-14 13:23:31','2020-04-14 13:23:31',NULL),(2428,45,2.00,'A','Tuning credits purchase','Completed','2020-04-15 08:20:17','2020-04-15 08:20:17',NULL),(2429,35,1.00,'A','Tuning credits purchase','Completed','2020-04-15 08:30:47','2020-04-15 08:30:47',NULL),(2430,35,1.00,'S','File Service: merc e250 w212','Completed','2020-04-15 08:33:07','2020-04-15 08:33:07',NULL),(2431,121,1.00,'S','File Service: peugeot 308 x','Completed','2020-04-15 08:47:14','2020-04-15 08:47:14',NULL),(2432,45,1.33,'S','File Service: Mercedes Sprinter 2014 (KN14VNC)','Completed','2020-04-15 08:57:25','2020-04-15 08:57:25',NULL),(2433,19,2.00,'A','Tuning credits purchase','Completed','2020-04-15 11:35:35','2020-04-15 11:35:35',NULL),(2434,19,1.00,'S','File Service: vauxhall combo c','Completed','2020-04-15 11:41:10','2020-04-15 11:41:10',NULL),(2435,19,1.00,'S','File Service: renault traffic 2nd','Completed','2020-04-15 11:58:10','2020-04-15 11:58:10',NULL),(2436,121,1.00,'S','File Service: fiat ducato 2','Completed','2020-04-16 08:06:34','2020-04-16 08:06:34',NULL),(2437,19,0.00,'S','File Service: audi s3 8v','Completed','2020-04-16 11:38:33','2020-04-16 11:38:33',NULL),(2438,100,1.00,'S','File Service: mercedes sprinter 2014','Completed','2020-04-16 12:34:10','2020-04-16 12:34:10',NULL),(2439,35,0.33,'S','MERC DPF','Completed','2020-04-16 13:54:47','2020-04-16 13:54:47',NULL),(2440,19,1.00,'A','Tuning credits purchase','Completed','2020-04-16 13:56:47','2020-04-16 13:56:47',NULL),(2441,19,1.00,'S','File Service: bmw 320d f31','Completed','2020-04-16 14:13:42','2020-04-16 14:13:42',NULL),(2442,100,1.00,'S','File Service: mitsubishi pajero 2008','Completed','2020-04-16 14:40:41','2020-04-16 14:40:41',NULL),(2443,100,1.00,'S','File Service: ford galaxy 2009','Completed','2020-04-16 14:49:58','2020-04-16 14:49:58',NULL),(2444,100,1.00,'S','File Service: ford ranger 2011','Completed','2020-04-16 15:04:10','2020-04-16 15:04:10',NULL),(2445,100,1.00,'S','File Service: ford ranger 2015','Completed','2020-04-17 08:02:54','2020-04-17 08:02:54',NULL),(2446,100,1.00,'S','File Service: vauxhall astra 2012','Completed','2020-04-17 11:32:14','2020-04-17 11:32:14',NULL),(2447,100,1.00,'S','File Service: skoda octavia vrs 2012','Completed','2020-04-18 11:31:43','2020-04-18 11:31:43',NULL),(2448,100,1.00,'S','File Service: range rover evoque 2012','Completed','2020-04-20 10:14:56','2020-04-20 10:14:56',NULL),(2449,100,1.00,'S','File Service: mercedes sprinter 2014','Completed','2020-04-20 10:36:40','2020-04-20 10:36:40',NULL),(2450,100,1.00,'S','File Service: seat leon 2010','Completed','2020-04-20 10:46:14','2020-04-20 10:46:14',NULL),(2451,100,1.00,'S','File Service: audi a3 2013','Completed','2020-04-21 07:13:37','2020-04-21 07:13:37',NULL),(2452,45,1.00,'A','Tuning credits purchase','Completed','2020-04-21 07:35:16','2020-04-21 07:35:16',NULL),(2453,45,1.00,'S','File Service: Range sport 2012 (RU55 YJR)','Completed','2020-04-21 07:37:46','2020-04-21 07:37:46',NULL),(2454,19,1.00,'A','Tuning credits purchase','Completed','2020-04-21 07:48:32','2020-04-21 07:48:32',NULL),(2455,19,1.00,'S','File Service: audi s3 8p','Completed','2020-04-21 07:53:49','2020-04-21 07:53:49',NULL),(2456,100,1.00,'S','File Service: ford transit 2002','Completed','2020-04-21 09:55:54','2020-04-21 09:55:54',NULL),(2457,100,1.00,'S','File Service: bmw 120d 2009','Completed','2020-04-21 11:26:40','2020-04-21 11:26:40',NULL),(2458,100,1.00,'S','File Service: vw caddy 2013','Completed','2020-04-21 13:34:57','2020-04-21 13:34:57',NULL),(2459,102,1.00,'A','Tuning credits purchase','Completed','2020-04-22 05:39:44','2020-04-22 05:39:44',NULL),(2460,102,1.00,'S','File Service: mercedes e class w207 e250','Completed','2020-04-22 06:05:13','2020-04-22 06:05:13',NULL),(2461,100,25.00,'A','25 files','Completed','2020-04-22 07:01:40','2020-04-22 07:01:40',NULL),(2462,19,1.00,'A','Tuning credits purchase','Completed','2020-04-22 07:08:58','2020-04-22 07:08:58',NULL),(2463,19,1.00,'S','File Service: vw polo 6r','Completed','2020-04-22 07:15:36','2020-04-22 07:15:36',NULL),(2464,100,1.00,'S','File Service: vw scirocco tsi 2017','Completed','2020-04-22 07:43:31','2020-04-22 07:43:31',NULL),(2465,76,1.00,'A','Tuning credits purchase','Completed','2020-04-22 12:57:49','2020-04-22 12:57:49',NULL),(2466,76,1.00,'S','File Service: mazda mx5 3','Completed','2020-04-22 13:00:11','2020-04-22 13:00:11',NULL),(2467,173,5000.00,'A','CREDITO INICIAL DEALER','Completed','2020-04-22 15:18:12','2020-04-22 15:18:12',NULL),(2468,100,1.00,'S','File Service: skoda fabia vrs 2005','Completed','2020-04-23 07:46:36','2020-04-23 07:46:36',NULL),(2469,100,1.00,'S','File Service: bmw 730d 2006','Completed','2020-04-23 09:36:27','2020-04-23 09:36:27',NULL),(2470,94,5.00,'A','Tuning credits purchase','Completed','2020-04-23 10:20:44','2020-04-23 10:20:44',NULL),(2471,94,1.00,'S','File Service: TOYOTA DYNA 4','Completed','2020-04-23 10:24:41','2020-04-23 10:24:41',NULL),(2472,94,1.33,'S','File Service: TOYOTA DYNA 4','Completed','2020-04-23 10:28:29','2020-04-23 10:28:29',NULL),(2473,100,1.00,'S','File Service: bmw x5 2008','Completed','2020-04-24 08:07:44','2020-04-24 08:07:44',NULL),(2474,100,1.00,'S','File Service: iveco daily 2013','Completed','2020-04-24 08:44:16','2020-04-24 08:44:16',NULL),(2475,76,1.00,'A','Tuning credits purchase','Completed','2020-04-24 09:34:41','2020-04-24 09:34:41',NULL),(2476,76,1.00,'S','File Service: FORD TRANSIT 2004','Completed','2020-04-24 09:54:10','2020-04-24 09:54:10',NULL),(2477,100,1.00,'S','File Service: land rover freelander 2011','Completed','2020-04-24 11:01:49','2020-04-24 11:01:49',NULL),(2478,100,1.00,'S','File Service: volvo v50 2008','Completed','2020-04-24 14:35:21','2020-04-24 14:35:21',NULL),(2479,81,1.00,'A','Tuning credits purchase','Completed','2020-04-25 11:15:10','2020-04-25 11:15:10',NULL),(2480,81,1.00,'S','File Service: audi s5 2008','Completed','2020-04-25 11:43:41','2020-04-25 11:43:41',NULL),(2481,81,1.00,'S','refund','Completed','2020-04-25 11:59:10','2020-04-25 11:59:10',NULL),(2482,76,1.00,'A','Tuning credits purchase','Completed','2020-04-26 09:17:05','2020-04-26 09:17:05',NULL),(2483,76,1.00,'S','File Service: vw t5 2010','Completed','2020-04-26 09:24:13','2020-04-26 09:24:13',NULL),(2484,100,1.00,'S','File Service: citroen berlingo 2010','Completed','2020-04-27 08:52:31','2020-04-27 08:52:31',NULL),(2485,76,1.00,'A','Tuning credits purchase','Completed','2020-04-27 09:05:17','2020-04-27 09:05:17',NULL),(2486,76,1.00,'S','File Service: Audi rs6 C5','Completed','2020-04-27 09:08:49','2020-04-27 09:08:49',NULL),(2487,45,1.00,'A','Tuning credits purchase','Completed','2020-04-27 09:26:48','2020-04-27 09:26:48',NULL),(2488,45,1.00,'S','File Service: Ford Focus 2014 (BN14 EKJ)','Completed','2020-04-27 09:28:42','2020-04-27 09:28:42',NULL),(2489,100,1.00,'S','File Service: vw golf 2010','Completed','2020-04-27 10:26:36','2020-04-27 10:26:36',NULL),(2490,102,1.00,'A','Tuning credits purchase','Completed','2020-04-28 07:26:26','2020-04-28 07:26:26',NULL),(2491,102,1.00,'S','File Service: mercedes e class 220','Completed','2020-04-28 07:29:18','2020-04-28 07:29:18',NULL),(2492,121,1.00,'S','File Service: ford transit 7','Completed','2020-04-28 07:30:05','2020-04-28 07:30:05',NULL),(2493,121,20.00,'A','20 credits','Completed','2020-04-28 08:25:09','2020-04-28 08:25:09',NULL),(2494,100,1.00,'S','File Service: bmw 320d 2009','Completed','2020-04-28 08:27:50','2020-04-28 08:27:50',NULL),(2495,121,1.00,'S','File Service: vauxhall astra j','Completed','2020-04-28 08:56:17','2020-04-28 08:56:17',NULL),(2496,100,1.00,'S','File Service: VW transporter 2016','Completed','2020-04-28 10:37:19','2020-04-28 10:37:19',NULL),(2497,45,1.00,'A','Tuning credits purchase','Completed','2020-04-28 12:12:21','2020-04-28 12:12:21',NULL),(2498,45,1.00,'S','File Service: Ford Focus ST (BG17 DWP)','Completed','2020-04-28 12:13:50','2020-04-28 12:13:50',NULL),(2499,76,1.00,'S','File Service: Ford tRANSIT 2015','Completed','2020-04-28 12:46:53','2020-04-28 12:46:53',NULL),(2500,100,1.00,'S','File Service: ford custom 2018','Completed','2020-04-28 14:09:06','2020-04-28 14:09:06',NULL),(2501,45,1.00,'A','Tuning credits purchase','Completed','2020-04-28 14:39:33','2020-04-28 14:39:33',NULL),(2502,45,1.00,'S','File Service: Mercedes ML 350 (2012)','Completed','2020-04-28 14:54:24','2020-04-28 14:54:24',NULL),(2503,100,1.00,'S','File Service: vw caddy 2016','Completed','2020-04-28 15:56:51','2020-04-28 15:56:51',NULL),(2504,102,1.00,'A','Tuning credits purchase','Completed','2020-04-29 07:58:19','2020-04-29 07:58:19',NULL),(2505,102,1.00,'S','File Service: chevrolet captiva anything','Completed','2020-04-29 07:59:37','2020-04-29 07:59:37',NULL),(2506,100,1.00,'S','File Service: mercedes e220 2016','Completed','2020-04-29 08:12:41','2020-04-29 08:12:41',NULL),(2507,29,1.00,'A','Tuning credits purchase','Completed','2020-04-29 13:41:14','2020-04-29 13:41:14',NULL),(2508,29,1.00,'S','File Service: vw toureg 3','Completed','2020-04-29 13:45:16','2020-04-29 13:45:16',NULL),(2509,100,1.00,'S','File Service: vauxhall astra 2013','Completed','2020-04-30 09:08:43','2020-04-30 09:08:43',NULL),(2510,81,1.00,'A','Tuning credits purchase','Completed','2020-04-30 09:26:30','2020-04-30 09:26:30',NULL),(2511,100,1.00,'S','File Service: bmw 330d 2010','Completed','2020-05-01 10:01:10','2020-05-01 10:01:10',NULL),(2512,100,1.00,'S','File Service: audi a7 2011','Completed','2020-05-01 11:41:25','2020-05-01 11:41:25',NULL),(2513,29,1.00,'A','Tuning credits purchase','Completed','2020-05-02 10:30:17','2020-05-02 10:30:17',NULL),(2514,29,1.00,'S','File Service: citroen berlingo 3','Completed','2020-05-02 10:32:01','2020-05-02 10:32:01',NULL),(2515,100,1.00,'S','File Service: landrover freelander 2010','Completed','2020-05-04 08:04:25','2020-05-04 08:04:25',NULL),(2516,45,1.00,'A','Tuning credits purchase','Completed','2020-05-04 09:52:31','2020-05-04 09:52:31',NULL),(2517,45,1.33,'S','File Service: VW Passat B7 (OY12 LFJ)','Completed','2020-05-04 09:54:38','2020-05-04 09:54:38',NULL),(2518,94,1.00,'S','File Service: SCANIA P420 5','Completed','2020-05-04 10:51:29','2020-05-04 10:51:29',NULL),(2519,100,1.00,'S','File Service: citroen dispatch 2004','Completed','2020-05-04 12:31:33','2020-05-04 12:31:33',NULL),(2520,81,1.00,'S','refund','Completed','2020-05-04 13:03:55','2020-05-04 13:03:55',NULL),(2521,100,1.00,'S','File Service: mercedes sprinter 2015','Completed','2020-05-04 14:59:51','2020-05-04 14:59:51',NULL),(2522,102,1.00,'A','Tuning credits purchase','Completed','2020-05-05 06:15:52','2020-05-05 06:15:52',NULL),(2523,102,1.00,'S','File Service: bmw 3 series anything','Completed','2020-05-05 06:17:54','2020-05-05 06:17:54',NULL),(2524,121,1.00,'S','File Service: ford mondildo 2','Completed','2020-05-05 08:13:54','2020-05-05 08:13:54',NULL),(2525,100,1.00,'S','File Service: vw scirocco 2010','Completed','2020-05-05 10:16:09','2020-05-05 10:16:09',NULL),(2526,19,1.00,'A','Tuning credits purchase','Completed','2020-05-05 11:25:39','2020-05-05 11:25:39',NULL),(2527,19,1.33,'S','File Service: ford transit connect mk2','Completed','2020-05-05 11:28:38','2020-05-05 11:28:38',NULL),(2528,100,1.00,'S','File Service: ford custom 2017','Completed','2020-05-05 14:03:29','2020-05-05 14:03:29',NULL),(2529,19,1.00,'A','Tuning credits purchase','Completed','2020-05-05 14:13:57','2020-05-05 14:13:57',NULL),(2530,19,1.33,'S','File Service: seat altea 1','Completed','2020-05-05 14:28:58','2020-05-05 14:28:58',NULL),(2531,100,1.00,'S','File Service: bmw 320d 2018','Completed','2020-05-06 08:18:17','2020-05-06 08:18:17',NULL),(2532,102,1.00,'A','Tuning credits purchase','Completed','2020-05-06 10:10:48','2020-05-06 10:10:48',NULL),(2533,102,1.00,'S','File Service: isuzu forward easy shift','Completed','2020-05-06 10:12:51','2020-05-06 10:12:51',NULL),(2534,100,1.00,'S','File Service: bmw 525d 2005','Completed','2020-05-06 11:52:27','2020-05-06 11:52:27',NULL),(2535,100,1.00,'S','File Service: ford custom 2019','Completed','2020-05-06 15:43:34','2020-05-06 15:43:34',NULL),(2536,100,25.00,'A','Add 25','Completed','2020-05-06 17:09:06','2020-05-06 17:09:06',NULL),(2537,100,1.00,'S','File Service: mercedes cla45 2015','Completed','2020-05-07 06:56:56','2020-05-07 06:56:56',NULL),(2538,19,1.00,'A','Tuning credits purchase','Completed','2020-05-07 10:36:43','2020-05-07 10:36:43',NULL),(2539,19,1.00,'S','File Service: LANDROVER DISCOVERY 3','Completed','2020-05-07 10:40:43','2020-05-07 10:40:43',NULL),(2540,100,1.00,'S','File Service: landrover freelander 2010','Completed','2020-05-07 11:01:20','2020-05-07 11:01:20',NULL),(2541,100,1.00,'S','File Service: bme x3 2006','Completed','2020-05-07 15:06:23','2020-05-07 15:06:23',NULL),(2542,102,1.00,'A','Tuning credits purchase','Completed','2020-05-08 13:53:54','2020-05-08 13:53:54',NULL),(2543,102,1.00,'S','File Service: isuzu n75.190 anything','Completed','2020-05-08 13:55:43','2020-05-08 13:55:43',NULL),(2544,102,0.25,'S','egr extra','Completed','2020-05-08 14:14:58','2020-05-08 14:14:58',NULL),(2545,81,2.00,'A','Tuning credits purchase','Completed','2020-05-08 14:30:12','2020-05-08 14:30:12',NULL),(2546,81,1.00,'S','File Service: ford ST 2017','Completed','2020-05-08 15:01:56','2020-05-08 15:01:56',NULL),(2547,81,1.00,'S','File Service: VOLKSWAGEN GOLF GTI 2008','Completed','2020-05-08 17:53:36','2020-05-08 17:53:36',NULL),(2548,19,0.00,'S','File Service: iveco daily 2','Completed','2020-05-11 08:52:23','2020-05-11 08:52:23',NULL),(2549,19,1.00,'A','Tuning credits purchase','Completed','2020-05-11 11:05:20','2020-05-11 11:05:20',NULL),(2550,19,1.00,'S','File Service: bmw 320d e90','Completed','2020-05-11 11:07:51','2020-05-11 11:07:51',NULL),(2551,43,1.00,'S','File Service: Ford Transit TTF','Completed','2020-05-11 11:19:29','2020-05-11 11:19:29',NULL),(2552,29,2.00,'A','Tuning credits purchase','Completed','2020-05-11 18:31:05','2020-05-11 18:31:05',NULL),(2553,29,2.00,'S','File Service: vauxhall vivaro 3','Completed','2020-05-11 18:33:08','2020-05-11 18:33:08',NULL),(2554,100,1.00,'S','File Service: mazda 5 2008','Completed','2020-05-12 10:39:57','2020-05-12 10:39:57',NULL),(2555,45,1.00,'A','Tuning credits purchase','Completed','2020-05-12 12:20:31','2020-05-12 12:20:31',NULL),(2556,45,1.00,'S','File Service: Skoda Octavia VRS (KU11PMO)','Completed','2020-05-12 12:22:04','2020-05-12 12:22:04',NULL),(2557,76,1.00,'A','Tuning credits purchase','Completed','2020-05-13 08:58:19','2020-05-13 08:58:19',NULL),(2558,76,1.00,'S','File Service: mitsubishi l200 2017','Completed','2020-05-13 08:59:59','2020-05-13 08:59:59',NULL),(2559,76,1.00,'A','Tuning credits purchase','Completed','2020-05-13 09:29:41','2020-05-13 09:29:41',NULL),(2560,76,1.00,'S','File Service: audi a1 2016','Completed','2020-05-13 09:31:43','2020-05-13 09:31:43',NULL),(2561,100,1.00,'S','File Service: vw tiguan 2015','Completed','2020-05-13 10:41:29','2020-05-13 10:41:29',NULL),(2562,76,1.00,'A','Tuning credits purchase','Completed','2020-05-13 11:31:42','2020-05-13 11:31:42',NULL),(2563,76,1.00,'S','File Service: TOYOTA hilux 2013','Completed','2020-05-13 11:34:03','2020-05-13 11:34:03',NULL),(2564,100,1.00,'S','File Service: mercedes e320 2005','Completed','2020-05-13 12:59:11','2020-05-13 12:59:11',NULL),(2565,102,1.00,'A','Tuning credits purchase','Completed','2020-05-13 13:24:27','2020-05-13 13:24:27',NULL),(2566,102,1.00,'S','File Service: opel astra h z19dth','Completed','2020-05-13 13:26:29','2020-05-13 13:26:29',NULL),(2567,143,3000.00,'A','CREDITO 13/05/2020','Completed','2020-05-13 13:53:20','2020-05-13 13:53:20',NULL),(2568,143,900.00,'S','File Service: Audi A3 EA888','Completed','2020-05-13 17:57:01','2020-05-13 17:57:01',NULL),(2569,76,5.00,'A','Add 5 files','Completed','2020-05-14 06:54:05','2020-05-14 06:54:05',NULL),(2570,100,1.00,'S','File Service: vauxhall astra 2012','Completed','2020-05-14 09:17:58','2020-05-14 09:17:58',NULL),(2571,76,1.00,'S','File Service: mini jcw r56 2010','Completed','2020-05-14 10:06:25','2020-05-14 10:06:25',NULL),(2572,76,1.00,'S','File Service: MINI COOPER S R53','Completed','2020-05-14 10:15:11','2020-05-14 10:15:11',NULL),(2573,19,1.00,'A','Tuning credits purchase','Completed','2020-05-14 10:35:52','2020-05-14 10:35:52',NULL),(2574,19,1.00,'S','File Service: mercedes ml250 w166','Completed','2020-05-14 10:44:24','2020-05-14 10:44:24',NULL),(2575,76,1.00,'S','File Service: SEAT CUPRA 2010','Completed','2020-05-14 10:47:33','2020-05-14 10:47:33',NULL),(2576,143,750.00,'S','File Service: VW Up Tsi','Completed','2020-05-14 17:56:06','2020-05-14 17:56:06',NULL),(2577,143,900.00,'S','File Service: AUDI S3 N SEI','Completed','2020-05-14 19:37:02','2020-05-14 19:37:02',NULL),(2578,45,2.00,'A','Tuning credits purchase','Completed','2020-05-15 08:30:55','2020-05-15 08:30:55',NULL),(2579,45,1.00,'S','File Service: VW Passat 2012','Completed','2020-05-15 08:32:39','2020-05-15 08:32:39',NULL),(2580,45,1.00,'S','File Service: Audi A5 `2011 (FE11TVZ)','Completed','2020-05-15 09:23:20','2020-05-15 09:23:20',NULL),(2581,19,1.00,'A','Tuning credits purchase','Completed','2020-05-15 10:16:48','2020-05-15 10:16:48',NULL),(2582,19,1.00,'S','File Service: volvo v70 2','Completed','2020-05-15 10:24:51','2020-05-15 10:24:51',NULL),(2583,100,1.00,'S','File Service: citroen ds3 2015','Completed','2020-05-15 10:48:05','2020-05-15 10:48:05',NULL),(2584,30,1.00,'A','Tuning credits purchase','Completed','2020-05-15 11:24:09','2020-05-15 11:24:09',NULL),(2585,30,1.00,'S','File Service: audi rs7 2017','Completed','2020-05-15 11:35:25','2020-05-15 11:35:25',NULL),(2586,19,1.00,'A','Tuning credits purchase','Completed','2020-05-16 07:53:23','2020-05-16 07:53:23',NULL),(2587,19,1.00,'S','File Service: landrover freelander 2','Completed','2020-05-16 07:56:09','2020-05-16 07:56:09',NULL),(2588,76,1.00,'S','File Service: VW transporter 2014','Completed','2020-05-17 09:18:30','2020-05-17 09:18:30',NULL),(2589,100,1.33,'S','File Service: ford fiesta st 2 2014','Completed','2020-05-18 08:18:24','2020-05-18 08:18:24',NULL),(2590,100,0.67,'S','egr extra job 205','Completed','2020-05-18 12:52:08','2020-05-18 12:52:08',NULL),(2591,100,1.00,'S','File Service: audi a5 2009','Completed','2020-05-18 13:37:01','2020-05-18 13:37:01',NULL),(2592,100,1.00,'S','q7 dtc','Completed','2020-05-18 15:13:38','2020-05-18 15:13:38',NULL),(2593,143,2000.00,'A','credito 18/05/2020','Completed','2020-05-18 18:37:41','2020-05-18 18:37:41',NULL),(2594,100,1.00,'S','File Service: vw golf 2005','Completed','2020-05-19 07:37:51','2020-05-19 07:37:51',NULL),(2595,100,1.00,'S','File Service: toyota hi lux 2015','Completed','2020-05-19 08:05:43','2020-05-19 08:05:43',NULL),(2596,100,1.00,'S','File Service: fiat multipla 2003','Completed','2020-05-19 11:28:58','2020-05-19 11:28:58',NULL),(2597,81,1.00,'A','Tuning credits purchase','Completed','2020-05-19 13:58:08','2020-05-19 13:58:08',NULL),(2598,81,1.00,'S','File Service: mercedes E220 20012','Completed','2020-05-19 14:08:02','2020-05-19 14:08:02',NULL),(2599,24,2.00,'A','Tuning credits purchase','Completed','2020-05-19 16:14:48','2020-05-19 16:14:48',NULL),(2600,24,1.00,'S','File Service: vw transporter t5','Completed','2020-05-19 16:16:10','2020-05-19 16:16:10',NULL),(2601,24,1.33,'S','File Service: isuzu dmax 2','Completed','2020-05-19 18:22:37','2020-05-19 18:22:37',NULL),(2602,102,1.00,'A','Tuning credits purchase','Completed','2020-05-20 03:38:22','2020-05-20 03:38:22',NULL),(2603,102,1.00,'S','File Service: citroen dispatch 100 anything','Completed','2020-05-20 03:39:52','2020-05-20 03:39:52',NULL),(2604,102,1.00,'A','Tuning credits purchase','Completed','2020-05-20 06:21:52','2020-05-20 06:21:52',NULL),(2605,102,1.00,'S','File Service: chevrolet captiva anything','Completed','2020-05-20 06:23:04','2020-05-20 06:23:04',NULL),(2606,19,1.00,'A','Tuning credits purchase','Completed','2020-05-20 08:33:03','2020-05-20 08:33:03',NULL),(2607,19,1.00,'S','File Service: ford transit mk7','Completed','2020-05-20 08:38:02','2020-05-20 08:38:02',NULL),(2608,100,1.00,'S','File Service: land rover discovery 2006','Completed','2020-05-20 10:10:18','2020-05-20 10:10:18',NULL),(2609,43,10.00,'A','credit 10','Completed','2020-05-20 11:02:41','2020-05-20 11:02:41',NULL),(2610,43,1.00,'S','File Service: Porsche Cayenne 958','Completed','2020-05-20 11:03:51','2020-05-20 11:03:51',NULL),(2611,76,1.00,'S','File Service: AUDI A3 8P','Completed','2020-05-20 11:48:05','2020-05-20 11:48:05',NULL),(2612,100,1.00,'S','File Service: bmw 320d 2006','Completed','2020-05-20 12:34:24','2020-05-20 12:34:24',NULL),(2613,143,900.00,'S','File Service: MERCEDES CLA45 AMG','Completed','2020-05-20 20:12:10','2020-05-20 20:12:10',NULL),(2614,76,5.00,'A','5 files','Completed','2020-05-21 06:47:14','2020-05-21 06:47:14',NULL),(2615,29,2.00,'A','Tuning credits purchase','Completed','2020-05-21 10:41:22','2020-05-21 10:41:22',NULL),(2616,29,1.33,'S','File Service: vw transporter 3','Completed','2020-05-21 10:43:21','2020-05-21 10:43:21',NULL),(2617,82,1.00,'A','Tuning credits purchase','Completed','2020-05-21 11:57:57','2020-05-21 11:57:57',NULL),(2618,82,1.00,'S','File Service: peugeot 3008 2','Completed','2020-05-21 12:01:58','2020-05-21 12:01:58',NULL),(2619,35,1.00,'A','Tuning credits purchase','Completed','2020-05-21 12:04:53','2020-05-21 12:04:53',NULL),(2620,35,1.00,'S','File Service: mini cooper s 1','Completed','2020-05-21 12:12:40','2020-05-21 12:12:40',NULL),(2621,19,1.00,'A','Tuning credits purchase','Completed','2020-05-21 13:06:56','2020-05-21 13:06:56',NULL),(2622,19,1.00,'S','File Service: fiat ducatto 3','Completed','2020-05-21 13:13:30','2020-05-21 13:13:30',NULL),(2623,100,1.00,'S','File Service: volvo s40 2009','Completed','2020-05-21 14:26:32','2020-05-21 14:26:32',NULL),(2624,74,1.00,'A','Tuning credits purchase','Completed','2020-05-21 15:18:04','2020-05-21 15:18:04',NULL),(2625,100,1.00,'S','File Service: vw caddy 2017','Completed','2020-05-21 15:27:51','2020-05-21 15:27:51',NULL),(2626,143,1500.00,'S','equinox hptuners 20/05/2020','Completed','2020-05-21 17:00:27','2020-05-21 17:00:27',NULL),(2627,143,2000.00,'A','CREDITO 21/05/2020','Completed','2020-05-21 17:00:43','2020-05-21 17:00:43',NULL),(2628,143,800.00,'S','File Service: vw AMAROK V6','Completed','2020-05-21 17:55:29','2020-05-21 17:55:29',NULL),(2629,74,1.00,'S','remove','Completed','2020-05-21 19:03:44','2020-05-21 19:03:44',NULL),(2630,76,1.00,'S','File Service: Landrover discovery 3','Completed','2020-05-22 07:39:57','2020-05-22 07:39:57',NULL),(2631,45,2.00,'A','Tuning credits purchase','Completed','2020-05-22 07:44:31','2020-05-22 07:44:31',NULL),(2632,45,1.00,'S','File Service: VW Transporter 6 (WH04TUB)','Completed','2020-05-22 07:51:34','2020-05-22 07:51:34',NULL),(2633,45,1.00,'S','File Service: Fiat Ducato 3 (LF66 hDU)','Completed','2020-05-22 08:46:43','2020-05-22 08:46:43',NULL),(2634,102,1.00,'A','Tuning credits purchase','Completed','2020-05-22 08:57:09','2020-05-22 08:57:09',NULL),(2635,102,1.00,'S','File Service: iveco xxxxx anything','Completed','2020-05-22 08:59:40','2020-05-22 08:59:40',NULL),(2636,100,1.00,'S','File Service: bmw 116d 2015','Completed','2020-05-22 09:12:39','2020-05-22 09:12:39',NULL),(2637,100,1.00,'S','File Service: vw golf 2007','Completed','2020-05-22 10:16:03','2020-05-22 10:16:03',NULL),(2638,19,1.00,'A','Tuning credits purchase','Completed','2020-05-22 11:42:35','2020-05-22 11:42:35',NULL),(2639,19,1.00,'S','File Service: fiat ducato 2nd 250','Completed','2020-05-22 12:04:25','2020-05-22 12:04:25',NULL),(2640,180,1.00,'A','free','Completed','2020-05-22 12:49:28','2020-05-22 12:49:28',NULL),(2641,180,1.00,'S','File Service: MITSUBISHI SHOGUN 4','Completed','2020-05-22 12:56:11','2020-05-22 12:56:11',NULL),(2642,100,1.00,'S','File Service: vw golf gtd 2011','Completed','2020-05-23 07:46:16','2020-05-23 07:46:16',NULL),(2643,100,1.00,'S','File Service: mercedes e280 2007','Completed','2020-05-23 08:26:33','2020-05-23 08:26:33',NULL),(2644,100,1.00,'S','File Service: bmw 420d 2016','Completed','2020-05-23 09:00:00','2020-05-23 09:00:00',NULL),(2645,100,1.00,'S','File Service: seat altea 2006','Completed','2020-05-23 11:01:30','2020-05-23 11:01:30',NULL),(2646,81,2.00,'A','Tuning credits purchase','Completed','2020-05-23 11:57:35','2020-05-23 11:57:35',NULL),(2647,81,1.00,'S','File Service: FORD FOCUS ST DIESEL 2016','Completed','2020-05-23 12:05:25','2020-05-23 12:05:25',NULL),(2648,100,25.00,'A','25 files','Completed','2020-05-25 07:14:57','2020-05-25 07:14:57',NULL),(2649,102,1.00,'A','Tuning credits purchase','Completed','2020-05-25 07:19:06','2020-05-25 07:19:06',NULL),(2650,102,1.00,'S','File Service: mercedes c class 220','Completed','2020-05-25 07:22:01','2020-05-25 07:22:01',NULL),(2651,100,1.00,'S','File Service: vauxhall vivaro 2015','Completed','2020-05-25 07:46:23','2020-05-25 07:46:23',NULL),(2652,100,1.00,'S','File Service: vw golf r 2014','Completed','2020-05-25 08:13:29','2020-05-25 08:13:29',NULL),(2653,81,1.00,'S','File Service: mercedes e220 w207','Completed','2020-05-25 10:13:48','2020-05-25 10:13:48',NULL),(2654,102,1.00,'A','Tuning credits purchase','Completed','2020-05-26 08:37:26','2020-05-26 08:37:26',NULL),(2655,102,1.00,'S','File Service: vw passat anything','Completed','2020-05-26 08:38:18','2020-05-26 08:38:18',NULL),(2656,100,1.00,'S','File Service: skoda fabia 2010','Completed','2020-05-26 09:19:23','2020-05-26 09:19:23',NULL),(2657,19,1.33,'S','manual credit action for BMW st1/egr','Completed','2020-05-26 09:38:17','2020-05-26 09:38:17',NULL),(2658,76,1.00,'S','File Service: opel astra h','Completed','2020-05-26 10:04:58','2020-05-26 10:04:58',NULL),(2659,43,1.00,'S','File Service: BMW M235i F22','Completed','2020-05-26 13:41:10','2020-05-26 13:41:10',NULL),(2660,143,900.00,'S','File Service: VW AMAROK N SEI','Completed','2020-05-26 13:45:34','2020-05-26 13:45:34',NULL),(2661,100,1.00,'S','File Service: ford fiesta 2015','Completed','2020-05-27 07:29:42','2020-05-27 07:29:42',NULL),(2662,121,1.00,'S','File Service: skoda octavia vrs','Completed','2020-05-27 08:49:40','2020-05-27 08:49:40',NULL),(2663,43,1.33,'S','File Service: Ford Transit TT9','Completed','2020-05-27 09:12:47','2020-05-27 09:12:47',NULL),(2664,121,1.00,'S','File Service: rangerover sport 1','Completed','2020-05-27 09:20:08','2020-05-27 09:20:08',NULL),(2665,121,1.00,'S','File Service: rangerover sport tdv8','Completed','2020-05-27 10:51:38','2020-05-27 10:51:38',NULL),(2666,45,1.00,'A','Tuning credits purchase','Completed','2020-05-27 11:55:52','2020-05-27 11:55:52',NULL),(2667,45,1.00,'S','File Service: Mercedes SLK 2011 (MW07 SLK)','Completed','2020-05-27 11:58:10','2020-05-27 11:58:10',NULL),(2668,45,1.00,'A','Tuning credits purchase','Completed','2020-05-27 15:19:35','2020-05-27 15:19:35',NULL),(2669,45,1.00,'S','File Service: BMW 320 2007 (OV57 TLO','Completed','2020-05-27 15:21:07','2020-05-27 15:21:07',NULL),(2670,100,1.00,'S','File Service: audi q7 2008','Completed','2020-05-27 16:49:00','2020-05-27 16:49:00',NULL),(2671,76,1.00,'S','File Service: ford connect 2015','Completed','2020-05-28 06:55:12','2020-05-28 06:55:12',NULL),(2672,19,2.00,'A','Tuning credits purchase','Completed','2020-05-28 07:04:41','2020-05-28 07:04:41',NULL),(2673,19,1.00,'A','Tuning credits purchase','Completed','2020-05-28 07:05:07','2020-05-28 07:05:07',NULL),(2674,19,1.00,'S','File Service: landrover diuscovery 3','Completed','2020-05-28 07:12:03','2020-05-28 07:12:03',NULL),(2675,100,1.00,'S','File Service: vw polo 2010','Completed','2020-05-28 07:26:43','2020-05-28 07:26:43',NULL),(2676,100,1.00,'S','File Service: ford kuga 2009','Completed','2020-05-28 07:36:18','2020-05-28 07:36:18',NULL),(2677,100,1.00,'S','File Service: land rover range rover sport 2008','Completed','2020-05-28 07:48:53','2020-05-28 07:48:53',NULL),(2678,81,1.00,'A','Tuning credits purchase','Completed','2020-05-28 08:48:29','2020-05-28 08:48:29',NULL),(2679,81,1.00,'S','File Service: FORD FOCUS ST 2006','Completed','2020-05-28 08:53:47','2020-05-28 08:53:47',NULL),(2680,102,1.00,'S','ecu repair file','Completed','2020-05-28 10:00:58','2020-05-28 10:00:58',NULL),(2681,100,1.00,'S','File Service: audi a6 2014','Completed','2020-05-28 10:09:53','2020-05-28 10:09:53',NULL),(2682,19,1.00,'A','Tuning credits purchase','Completed','2020-05-28 12:04:40','2020-05-28 12:04:40',NULL),(2683,19,1.00,'S','File Service: toyota proace 1','Completed','2020-05-28 12:29:37','2020-05-28 12:29:37',NULL),(2684,143,2000.00,'A','CREDITO 28/05/2020','Completed','2020-05-28 13:27:29','2020-05-28 13:27:29',NULL),(2685,43,1.00,'S','File Service: Ford Fiesta MK7','Completed','2020-05-28 15:00:02','2020-05-28 15:00:02',NULL),(2686,143,350.00,'S','File Service: VW Up TSI','Completed','2020-05-28 18:17:04','2020-05-28 18:17:04',NULL),(2687,19,1.00,'A','Tuning credits purchase','Completed','2020-05-29 07:01:01','2020-05-29 07:01:01',NULL),(2688,19,1.00,'S','File Service: vauxhall insignia 2','Completed','2020-05-29 07:03:32','2020-05-29 07:03:32',NULL),(2689,100,1.00,'S','File Service: audi a3 2014','Completed','2020-05-29 07:17:35','2020-05-29 07:17:35',NULL),(2690,100,1.00,'S','File Service: mercedes a200 2013','Completed','2020-05-29 07:38:41','2020-05-29 07:38:41',NULL),(2691,102,1.00,'A','Tuning credits purchase','Completed','2020-05-29 08:08:37','2020-05-29 08:08:37',NULL),(2692,30,1.00,'A','Tuning credits purchase','Completed','2020-05-29 09:32:14','2020-05-29 09:32:14',NULL),(2693,30,1.00,'S','File Service: volkswagen TRANSPORTER T6','Completed','2020-05-29 09:37:56','2020-05-29 09:37:56',NULL),(2694,100,1.00,'S','File Service: seat leon 2012','Completed','2020-05-29 10:14:36','2020-05-29 10:14:36',NULL),(2695,143,350.00,'S','File Service: Fiat Punto Tjet','Completed','2020-05-29 12:24:41','2020-05-29 12:24:41',NULL),(2696,143,750.00,'S','File Service: VW Golf TSI','Completed','2020-05-29 13:58:08','2020-05-29 13:58:08',NULL),(2697,143,900.00,'S','File Service: BMW 320 N20','Completed','2020-05-29 14:44:29','2020-05-29 14:44:29',NULL),(2698,100,1.00,'S','File Service: audi a3 2016','Completed','2020-05-30 07:14:02','2020-05-30 07:14:02',NULL),(2699,100,1.00,'S','File Service: vw golf gtd 2014','Completed','2020-05-30 07:40:33','2020-05-30 07:40:33',NULL),(2700,100,1.00,'S','File Service: nissan x trail 2016','Completed','2020-06-01 08:24:17','2020-06-01 08:24:17',NULL),(2701,100,1.00,'S','File Service: bmw 116d 2013','Completed','2020-06-01 08:34:25','2020-06-01 08:34:25',NULL),(2702,43,1.33,'S','File Service: Ford Transit T9','Completed','2020-06-01 08:43:45','2020-06-01 08:43:45',NULL),(2703,121,1.00,'S','File Service: vw caddy 2','Completed','2020-06-01 09:17:09','2020-06-01 09:17:09',NULL),(2704,81,1.00,'A','Tuning credits purchase','Completed','2020-06-01 11:18:56','2020-06-01 11:18:56',NULL),(2705,81,1.00,'S','File Service: PORCHE 911 carrera 2 2002','Completed','2020-06-01 11:31:46','2020-06-01 11:31:46',NULL),(2706,43,1.00,'S','File Service: Range Rover Freelander 1st','Completed','2020-06-01 12:13:38','2020-06-01 12:13:38',NULL),(2707,100,1.00,'S','File Service: mercedes a200 2014','Completed','2020-06-01 12:22:41','2020-06-01 12:22:41',NULL),(2708,102,1.00,'A','Tuning credits purchase','Completed','2020-06-01 13:01:17','2020-06-01 13:01:17',NULL),(2709,102,1.00,'S','File Service: bmw 1 series anything','Completed','2020-06-01 13:02:42','2020-06-01 13:02:42',NULL),(2710,100,1.00,'S','File Service: mercedes sprinter 2024','Completed','2020-06-01 14:11:46','2020-06-01 14:11:46',NULL),(2711,143,1000.00,'A','CREDITO 01/06/2020','Completed','2020-06-01 19:32:23','2020-06-01 19:32:23',NULL),(2712,102,1.00,'A','Tuning credits purchase','Completed','2020-06-02 07:11:32','2020-06-02 07:11:32',NULL),(2713,102,1.00,'S','File Service: iveco daily anything','Completed','2020-06-02 07:29:21','2020-06-02 07:29:21',NULL),(2714,102,0.33,'S','egr iveco extra','Completed','2020-06-02 07:45:46','2020-06-02 07:45:46',NULL),(2715,143,750.00,'S','File Service: VW UP TSI','Completed','2020-06-02 10:40:20','2020-06-02 10:40:20',NULL),(2716,100,1.00,'S','File Service: ford connect 2016','Completed','2020-06-02 12:55:31','2020-06-02 12:55:31',NULL),(2717,100,1.00,'S','File Service: bmw 318d 2009','Completed','2020-06-02 15:32:05','2020-06-02 15:32:05',NULL),(2718,100,1.00,'S','File Service: vw golf tdi 2013','Completed','2020-06-02 16:29:18','2020-06-02 16:29:18',NULL),(2719,143,2000.00,'A','CREDITO 02/06/2020','Completed','2020-06-02 16:38:52','2020-06-02 16:38:52',NULL),(2720,143,750.00,'S','File Service: FIAT BRAVO TJET','Completed','2020-06-02 16:42:48','2020-06-02 16:42:48',NULL),(2721,144,6000.00,'A','CREDITO 02/06/2020','Completed','2020-06-02 18:56:49','2020-06-02 18:56:49',NULL),(2722,121,1.00,'S','File Service: mercedes sprinter 906','Completed','2020-06-02 19:17:45','2020-06-02 19:17:45',NULL),(2723,100,1.00,'S','File Service: skoda octavia vrs 2012','Completed','2020-06-03 06:29:17','2020-06-03 06:29:17',NULL),(2724,102,1.00,'A','Tuning credits purchase','Completed','2020-06-03 06:40:06','2020-06-03 06:40:06',NULL),(2725,102,1.00,'S','File Service: audi a7 anything','Completed','2020-06-03 06:41:59','2020-06-03 06:41:59',NULL),(2726,100,1.00,'S','File Service: IVECO daily 2010','Completed','2020-06-03 07:01:03','2020-06-03 07:01:03',NULL),(2727,102,1.00,'S','File Service: toyota hilux anything','Completed','2020-06-03 08:33:12','2020-06-03 08:33:12',NULL),(2728,100,1.00,'S','File Service: ford transit 2014','Completed','2020-06-03 08:46:08','2020-06-03 08:46:08',NULL),(2729,100,1.00,'S','File Service: ford custom 2015','Completed','2020-06-03 09:42:04','2020-06-03 09:42:04',NULL),(2730,100,1.00,'S','File Service: ford focus st2 tdci 2015','Completed','2020-06-03 11:41:31','2020-06-03 11:41:31',NULL),(2731,136,1.00,'S','File Service: landrover dicovery 3 3','Completed','2020-06-03 12:21:18','2020-06-03 12:21:18',NULL),(2732,100,25.00,'A','25 files','Completed','2020-06-03 13:03:46','2020-06-03 13:03:46',NULL),(2733,100,1.00,'S','File Service: bmw 640d 2011','Completed','2020-06-03 13:49:22','2020-06-03 13:49:22',NULL),(2734,144,900.00,'S','File Service: VOLKS GOLF MK7','Completed','2020-06-03 15:01:49','2020-06-03 15:01:49',NULL),(2735,144,900.00,'S','File Service: AUDI A3 8V','Completed','2020-06-03 15:16:06','2020-06-03 15:16:06',NULL),(2736,143,900.00,'S','File Service: Amarok V6 0','Completed','2020-06-03 16:22:35','2020-06-03 16:22:35',NULL),(2737,102,2.00,'A','add 2','Completed','2020-06-04 06:48:49','2020-06-04 06:48:49',NULL),(2738,102,1.00,'S','File Service: mercedes e class anything','Completed','2020-06-04 06:52:37','2020-06-04 06:52:37',NULL),(2739,102,1.00,'S','File Service: isuzu crafter anything','Completed','2020-06-04 06:54:40','2020-06-04 06:54:40',NULL),(2740,76,1.00,'S','File Service: vw goilf 6','Completed','2020-06-04 07:54:36','2020-06-04 07:54:36',NULL),(2741,100,1.00,'S','File Service: mercedes citan 2016','Completed','2020-06-04 10:53:45','2020-06-04 10:53:45',NULL),(2742,19,1.00,'A','Tuning credits purchase','Completed','2020-06-04 11:33:52','2020-06-04 11:33:52',NULL),(2743,100,1.00,'S','File Service: vw bora 2003','Completed','2020-06-04 11:34:25','2020-06-04 11:34:25',NULL),(2744,19,1.00,'S','File Service: fiat qubo 1','Completed','2020-06-04 11:37:55','2020-06-04 11:37:55',NULL),(2745,76,5.00,'A','5 files','Completed','2020-06-04 15:21:45','2020-06-04 15:21:45',NULL),(2746,82,2.00,'A','Tuning credits purchase','Completed','2020-06-05 08:04:32','2020-06-05 08:04:32',NULL),(2747,76,1.00,'S','File Service: ford RANGER 2018','Completed','2020-06-05 08:11:06','2020-06-05 08:11:06',NULL),(2748,82,1.00,'S','File Service: seat leon 2','Completed','2020-06-05 08:19:46','2020-06-05 08:19:46',NULL),(2749,100,1.00,'S','File Service: vauxhall zafira 2009','Completed','2020-06-05 08:53:28','2020-06-05 08:53:28',NULL),(2750,76,1.00,'S','File Service: Mercedes c w203','Completed','2020-06-05 09:34:50','2020-06-05 09:34:50',NULL),(2751,27,1.00,'S','File Service: FORD TRANSIT MK7','Completed','2020-06-05 09:57:11','2020-06-05 09:57:11',NULL),(2752,100,1.00,'S','File Service: vw golf 2009','Completed','2020-06-05 12:07:44','2020-06-05 12:07:44',NULL),(2753,100,1.00,'S','File Service: mercedes glc220 2016','Completed','2020-06-05 12:29:06','2020-06-05 12:29:06',NULL),(2754,183,15.00,'A','Test Trial transaction','Completed','2020-06-05 13:08:16','2020-06-05 13:08:16',NULL),(2755,183,2.00,'S','File Service: Test Test Test','Completed','2020-06-05 13:09:13','2020-06-05 13:09:13',NULL),(2756,183,2.00,'S','File Service: Test Test Test','Completed','2020-06-05 13:13:05','2020-06-05 13:13:05',NULL),(2757,183,2.00,'S','File Service: Test Test Test','Completed','2020-06-05 13:55:34','2020-06-05 13:55:34',NULL),(2758,76,1.00,'S','File Service: vw golf 7','Completed','2020-06-05 13:56:32','2020-06-05 13:56:32',NULL),(2759,143,1500.00,'S','EQUINOX BUG PORTAL','Completed','2020-06-05 14:16:53','2020-06-05 14:16:53',NULL),(2760,100,1.00,'S','File Service: mercedes a220 2013','Completed','2020-06-05 14:19:51','2020-06-05 14:19:51',NULL),(2761,143,1000.00,'A','CREDITO 05/06/2020','Completed','2020-06-05 16:32:27','2020-06-05 16:32:27',NULL),(2762,143,900.00,'S','File Service: FORD FUSION ECOBOOST','Completed','2020-06-05 16:33:08','2020-06-05 16:33:08',NULL),(2763,100,1.00,'S','File Service: vw golf 2010','Completed','2020-06-06 07:51:00','2020-06-06 07:51:00',NULL),(2764,100,1.00,'S','File Service: renault clio gt 2010','Completed','2020-06-06 08:10:38','2020-06-06 08:10:38',NULL),(2765,100,1.00,'S','File Service: audi a3 2003','Completed','2020-06-06 08:38:55','2020-06-06 08:38:55',NULL),(2766,30,1.00,'A','Tuning credits purchase','Completed','2020-06-06 09:20:59','2020-06-06 09:20:59',NULL),(2767,30,1.00,'S','File Service: volkswagen Arteon 1st','Completed','2020-06-06 09:25:58','2020-06-06 09:25:58',NULL),(2768,24,1.00,'A','Tuning credits purchase','Completed','2020-06-06 10:09:42','2020-06-06 10:09:42',NULL),(2769,24,1.00,'S','File Service: merc c200 w204','Completed','2020-06-06 10:11:41','2020-06-06 10:11:41',NULL),(2770,100,1.00,'S','File Service: volvo v40 t2 2015','Completed','2020-06-06 11:57:22','2020-06-06 11:57:22',NULL),(2771,81,1.00,'A','Tuning credits purchase','Completed','2020-06-06 12:01:46','2020-06-06 12:01:46',NULL),(2772,81,1.00,'S','File Service: audi Q5 2015','Completed','2020-06-06 12:06:52','2020-06-06 12:06:52',NULL),(2773,100,1.00,'S','File Service: vw golf r 2016','Completed','2020-06-06 13:34:54','2020-06-06 13:34:54',NULL),(2774,19,1.00,'A','Tuning credits purchase','Completed','2020-06-08 07:57:06','2020-06-08 07:57:06',NULL),(2775,19,1.00,'S','File Service: vauxhall insignia 2','Completed','2020-06-08 08:13:43','2020-06-08 08:13:43',NULL),(2776,19,1.00,'A','Tuning credits purchase','Completed','2020-06-08 09:11:58','2020-06-08 09:11:58',NULL),(2777,19,1.00,'S','File Service: merc c220cdi w204','Completed','2020-06-08 09:28:23','2020-06-08 09:28:23',NULL),(2778,100,1.00,'S','File Service: vw t5 2007','Completed','2020-06-08 09:30:30','2020-06-08 09:30:30',NULL),(2779,100,1.00,'S','File Service: mercedes sprinter 2013','Completed','2020-06-08 10:08:08','2020-06-08 10:08:08',NULL),(2780,100,1.00,'S','File Service: mercedes c200 2011','Completed','2020-06-08 13:51:58','2020-06-08 13:51:58',NULL),(2781,143,2000.00,'A','CREDITO 08/06/2020','Completed','2020-06-08 19:04:35','2020-06-08 19:04:35',NULL),(2782,102,1.00,'A','Tuning credits purchase','Completed','2020-06-09 06:25:58','2020-06-09 06:25:58',NULL),(2783,102,1.00,'S','File Service: ford transit t230','Completed','2020-06-09 06:27:41','2020-06-09 06:27:41',NULL),(2784,100,1.00,'S','File Service: ford fiesta 2013','Completed','2020-06-09 07:39:32','2020-06-09 07:39:32',NULL),(2785,43,2.66,'S','File Service: BMW 330D E60','Completed','2020-06-09 08:51:18','2020-06-09 08:51:18',NULL),(2786,43,10.00,'A','credit 10 09/06/20','Completed','2020-06-09 09:10:26','2020-06-09 09:10:26',NULL),(2787,45,1.00,'A','Tuning credits purchase','Completed','2020-06-09 09:14:39','2020-06-09 09:14:39',NULL),(2788,45,1.00,'S','File Service: Vauxhall Vivaro FL07 PDX','Completed','2020-06-09 09:16:08','2020-06-09 09:16:08',NULL),(2789,43,1.66,'S','File Service: Ford Galaxy MK2','Completed','2020-06-09 09:19:43','2020-06-09 09:19:43',NULL),(2790,100,1.00,'S','File Service: vw golf 2012','Completed','2020-06-09 09:48:10','2020-06-09 09:48:10',NULL),(2791,144,900.00,'S','File Service: MERCEDES C250 W205','Completed','2020-06-09 11:09:59','2020-06-09 11:09:59',NULL),(2792,19,1.00,'A','Tuning credits purchase','Completed','2020-06-09 12:25:29','2020-06-09 12:25:29',NULL),(2793,19,1.00,'S','File Service: ford CMAX 3RD','Completed','2020-06-09 12:31:59','2020-06-09 12:31:59',NULL),(2794,100,1.00,'S','File Service: audi a3 2007','Completed','2020-06-09 12:39:24','2020-06-09 12:39:24',NULL),(2795,149,750.00,'A','CREDITO 09/06/2020','Completed','2020-06-09 14:03:25','2020-06-09 14:03:25',NULL),(2796,45,1.00,'A','Tuning credits purchase','Completed','2020-06-09 15:13:32','2020-06-09 15:13:32',NULL),(2797,45,1.00,'S','File Service: Mercedes ML250 2015 (LR15 CMx)','Completed','2020-06-09 15:16:53','2020-06-09 15:16:53',NULL),(2798,149,750.00,'S','File Service: FIAT PUNTO TJET 1','Completed','2020-06-09 16:01:47','2020-06-09 16:01:47',NULL),(2799,143,900.00,'S','File Service: AUDI Q3 TFSI','Completed','2020-06-09 17:28:13','2020-06-09 17:28:13',NULL),(2800,100,1.00,'S','File Service: vw t6 2017','Completed','2020-06-10 07:17:08','2020-06-10 07:17:08',NULL),(2801,100,1.00,'S','File Service: ford custom 2016','Completed','2020-06-10 09:08:26','2020-06-10 09:08:26',NULL),(2802,19,1.00,'A','Tuning credits purchase','Completed','2020-06-10 13:12:10','2020-06-10 13:12:10',NULL),(2803,19,1.00,'S','File Service: FORD TRANSIT TRANSIT MK7','Completed','2020-06-10 13:17:41','2020-06-10 13:17:41',NULL),(2804,144,5000.00,'A','CREDITO 10/06/2020','Completed','2020-06-10 14:58:51','2020-06-10 14:58:51',NULL),(2805,144,700.00,'S','File Service: VOLKS FUSCA TSI','Completed','2020-06-10 15:07:06','2020-06-10 15:07:06',NULL),(2806,143,500.00,'A','CREDITO 10/06/2020','Completed','2020-06-10 18:48:00','2020-06-10 18:48:00',NULL),(2807,143,750.00,'S','File Service: VW UP TSI','Completed','2020-06-10 18:52:09','2020-06-10 18:52:09',NULL),(2808,27,1.00,'S','File Service: JAGUAR XKR SUPERCHARGED MK1','Completed','2020-06-11 07:45:29','2020-06-11 07:45:29',NULL); /*!40000 ALTER TABLE `transactions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tuning_credit_group_tuning_credit_tire` -- DROP TABLE IF EXISTS `tuning_credit_group_tuning_credit_tire`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tuning_credit_group_tuning_credit_tire` ( `tuning_credit_group_id` int(11) unsigned NOT NULL, `tuning_credit_tire_id` int(11) unsigned NOT NULL, `from_credit` float(8,2) NOT NULL, `for_credit` float(8,2) NOT NULL, PRIMARY KEY (`tuning_credit_group_id`,`tuning_credit_tire_id`), KEY `tuning_credit_tire_id` (`tuning_credit_tire_id`), CONSTRAINT `tuning_credit_group_tuning_credit_tire_ibfk_1` FOREIGN KEY (`tuning_credit_group_id`) REFERENCES `tuning_credit_groups` (`id`) ON DELETE CASCADE, CONSTRAINT `tuning_credit_group_tuning_credit_tire_ibfk_2` FOREIGN KEY (`tuning_credit_tire_id`) REFERENCES `tuning_credit_tires` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tuning_credit_group_tuning_credit_tire` -- LOCK TABLES `tuning_credit_group_tuning_credit_tire` WRITE; /*!40000 ALTER TABLE `tuning_credit_group_tuning_credit_tire` DISABLE KEYS */; INSERT INTO `tuning_credit_group_tuning_credit_tire` VALUES (8,17,75.00,75.00),(8,18,150.00,150.00),(8,19,375.00,360.00),(14,17,75.00,75.00),(14,18,150.00,150.00),(14,19,375.00,375.00),(17,28,75.00,75.00),(17,29,350.00,350.00),(17,36,140.00,140.00),(17,37,1300.00,1300.00),(17,39,575.00,575.00),(26,28,75.00,75.00),(26,29,325.00,325.00),(26,36,140.00,140.00),(26,37,950.00,950.00),(26,39,500.00,500.00),(27,28,50.00,50.00),(27,29,225.00,225.00),(27,36,100.00,100.00),(27,37,850.00,850.00),(27,39,400.00,400.00),(29,17,110.00,110.00),(29,18,220.00,220.00),(29,19,520.00,520.00),(30,17,100.00,100.00),(30,18,200.00,200.00),(30,19,480.00,480.00),(31,40,80.00,80.00),(31,41,150.00,150.00); /*!40000 ALTER TABLE `tuning_credit_group_tuning_credit_tire` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tuning_credit_groups` -- DROP TABLE IF EXISTS `tuning_credit_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tuning_credit_groups` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `company_id` int(11) unsigned NOT NULL, `name` varchar(191) NOT NULL, `set_default_tier` tinyint(4) NOT NULL DEFAULT 0, `is_default` tinyint(1) NOT NULL DEFAULT 0 COMMENT '1->default, 0-> not default', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `company_id` (`company_id`), CONSTRAINT `tuning_credit_groups_ibfk_1` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tuning_credit_groups` -- LOCK TABLES `tuning_credit_groups` WRITE; /*!40000 ALTER TABLE `tuning_credit_groups` DISABLE KEYS */; INSERT INTO `tuning_credit_groups` VALUES (8,1,'Dealers',0,0,NULL,'2019-09-23 21:41:19',NULL),(14,1,'Credit Account Dealers',0,0,'2018-10-13 13:08:54','2019-09-23 21:41:19',NULL),(17,19,'Dealer Rates',1,0,'2018-11-22 17:27:47','2019-09-23 21:41:19',NULL),(26,19,'UP FRONT',0,0,'2018-12-05 21:51:44','2019-09-23 21:41:19',NULL),(27,19,'CHEAPER RATES',0,0,'2018-12-06 14:11:38','2019-09-23 21:41:19',NULL),(29,1,'Master Unlocked File Rate',0,0,'2019-07-03 21:31:00','2019-09-23 21:41:19',NULL),(30,1,'out of subs',1,0,'2019-08-09 09:44:42','2019-09-23 21:41:19',NULL),(31,33,'Online',1,1,'2019-09-23 21:32:35','2019-09-23 21:41:19',NULL),(32,34,'SLAVE NIVEL 1',1,0,'2020-03-12 01:05:28','2020-03-12 02:21:36',NULL),(33,41,'Test 1',1,0,'2020-06-05 13:03:29','2020-06-05 13:03:49',NULL); /*!40000 ALTER TABLE `tuning_credit_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tuning_credit_tires` -- DROP TABLE IF EXISTS `tuning_credit_tires`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tuning_credit_tires` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `company_id` int(11) unsigned NOT NULL, `amount` int(10) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `company_id` (`company_id`), CONSTRAINT `tuning_credit_tires_ibfk_1` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tuning_credit_tires` -- LOCK TABLES `tuning_credit_tires` WRITE; /*!40000 ALTER TABLE `tuning_credit_tires` DISABLE KEYS */; INSERT INTO `tuning_credit_tires` VALUES (17,1,1,'2018-09-24 13:57:38','2018-09-24 13:57:38',NULL),(18,1,2,'2018-09-24 13:57:45','2018-09-24 13:57:45',NULL),(19,1,5,'2018-09-24 13:57:52','2018-09-24 13:57:52',NULL),(28,19,1,'2018-11-22 17:27:56','2018-11-22 17:27:56',NULL),(29,19,5,'2018-11-22 17:28:04','2018-11-22 17:28:04',NULL),(36,19,2,'2018-12-06 14:11:51','2018-12-06 14:11:51',NULL),(37,19,20,'2018-12-06 16:25:20','2018-12-06 16:25:20',NULL),(39,19,10,'2019-07-01 12:46:58','2019-07-01 12:46:58',NULL),(40,33,1,'2019-09-23 21:33:12','2019-09-23 21:33:12',NULL),(41,33,2,'2019-09-23 21:33:43','2019-09-23 21:33:43',NULL),(44,34,0,'2020-03-12 13:42:57','2020-03-12 13:42:57',NULL),(45,41,1,'2020-06-05 13:03:41','2020-06-05 13:03:41',NULL); /*!40000 ALTER TABLE `tuning_credit_tires` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tuning_type_options` -- DROP TABLE IF EXISTS `tuning_type_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tuning_type_options` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `tuning_type_id` int(11) unsigned NOT NULL, `label` varchar(191) NOT NULL, `tooltip` varchar(191) DEFAULT NULL, `credits` float(8,2) NOT NULL, `order_as` int(10) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `tuning_type_id` (`tuning_type_id`), CONSTRAINT `tuning_type_options_ibfk_1` FOREIGN KEY (`tuning_type_id`) REFERENCES `tuning_types` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=181 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tuning_type_options` -- LOCK TABLES `tuning_type_options` WRITE; /*!40000 ALTER TABLE `tuning_type_options` DISABLE KEYS */; INSERT INTO `tuning_type_options` VALUES (12,11,'DPF',NULL,0.33,1,'2018-09-24 14:50:41','2018-09-24 14:50:41',NULL),(13,11,'EGR',NULL,0.33,2,'2018-09-24 14:50:49','2019-03-05 12:15:41',NULL),(14,11,'DTC off',NULL,0.33,3,'2018-09-24 14:51:20','2019-03-05 12:11:06',NULL),(15,14,'DPF',NULL,1.00,2,'2018-09-24 14:52:06','2019-03-05 13:03:35',NULL),(16,14,'EGR',NULL,1.00,1,'2018-09-24 14:52:22','2019-03-05 13:03:14',NULL),(17,14,'DTC off',NULL,1.00,3,'2018-09-24 14:52:35','2019-03-05 13:03:35',NULL),(18,15,'AND EGR',NULL,0.33,1,'2018-09-24 14:53:15','2019-03-05 12:26:18',NULL),(20,11,'DPF & EGR',NULL,0.66,4,'2018-09-27 06:03:13','2019-03-05 12:11:02',NULL),(21,11,'Decat or 02 off','A Decat function or 02 off depending on ECU',0.33,5,'2018-09-27 06:04:09','2019-10-19 12:07:09',NULL),(22,11,'Flap Delete','Check with us for compatibility',0.33,6,'2018-09-27 06:04:25','2019-03-05 11:36:10',NULL),(23,11,'Speed Limiter',NULL,0.33,7,'2018-09-27 06:04:40','2019-03-05 11:36:10',NULL),(24,11,'ADBlue','Check with us for compatibility',0.50,8,'2018-09-27 06:05:08','2019-03-05 12:13:55',NULL),(25,11,'Hot Start','Check with us for compatibility',0.33,10,'2018-09-27 06:05:19','2019-03-12 11:49:36',NULL),(26,11,'MAF Delete','Check with us for compatibility',0.33,11,'2018-09-27 06:05:31','2019-03-12 11:49:33',NULL),(27,11,'Start - Stop Deactivation','Check with us for compatibility',0.33,12,'2018-09-27 06:06:00','2019-03-12 11:49:29',NULL),(28,14,'Decat 02 off',NULL,1.00,4,'2018-09-27 06:06:27','2019-03-05 12:38:16',NULL),(29,14,'Adblue',NULL,1.00,5,'2018-09-27 06:06:42','2019-03-05 12:38:22',NULL),(30,14,'DPF & EGR',NULL,1.33,6,'2018-09-27 06:06:58','2019-03-05 12:37:51',NULL),(31,14,'Speed Limiter',NULL,1.00,7,'2018-09-27 06:07:13','2019-03-05 12:38:22',NULL),(32,20,'ANY ADDONS (LIST IN NOTES TO ENGINEER)','LIST IN NOTES TO ENGINEER',0.33,1,'2018-11-22 17:30:54','2018-12-06 14:09:45',NULL),(36,21,'ANY ADDONS (LIST IN NOTES TO ENGINEER)','LIST IN NOTES TO ENGINEER',0.33,1,'2018-11-22 17:33:05','2019-03-05 11:35:59',NULL),(39,11,'BMW Sports Display Calibration','only select this if you know your car has a sports display',0.33,13,'2018-11-23 11:49:23','2019-03-12 11:49:25',NULL),(40,14,'BMW Sports Display Calibration','only select this if you know your car has a sports display',1.00,8,'2018-11-23 11:49:49','2018-11-23 11:50:07',NULL),(41,15,'Speed Limiter',NULL,0.33,2,'2018-11-23 11:50:42','2019-03-05 12:26:24',NULL),(42,15,'Decat 02 off',NULL,0.33,3,'2018-11-23 11:50:57','2018-11-23 11:50:57',NULL),(43,15,'Start - Stop Deactivation','only select this if you know your car has a start stop',0.33,4,'2018-11-23 11:51:17','2018-11-23 11:51:17',NULL),(44,15,'BMW Sports Display Calibration','only select this if you know your car has a sports display',0.33,5,'2018-11-23 11:51:45','2018-11-23 11:51:45',NULL),(45,15,'Extra DTC Codes Removal','Fault code removal added',0.33,6,'2018-11-23 11:52:19','2018-11-23 11:52:19',NULL),(46,11,'Launch Control','Check with us for compatibility',0.33,14,'2018-11-23 11:54:00','2019-03-12 11:49:22',NULL),(47,11,'Throttle Valve Removal','Check with us for compatibility',0.33,16,'2018-11-23 11:54:37','2019-03-12 11:49:15',NULL),(48,14,'Throttle Valve Removal','Check with us for compatibility',1.00,9,'2018-11-23 11:55:58','2019-03-05 11:08:24',NULL),(49,14,'MAF Delete','Check with us for compatibility',1.00,10,'2018-11-23 11:56:12','2019-03-05 11:07:02',NULL),(57,33,'ANY ADDONS (LIST IN NOTES TO ENGINEER)','LIST IN NOTES TO ENGINEER',0.33,1,'2018-12-07 16:31:35','2019-03-05 11:07:10',NULL),(58,15,'PSA Additive ECU',NULL,0.33,7,'2018-12-10 15:53:13','2019-03-05 11:36:21',NULL),(59,14,'PSA Additive ECU',NULL,1.00,11,'2018-12-10 15:53:31','2019-03-05 11:36:17',NULL),(60,34,'POP\'s','Check with us for compatibility',0.50,1,'2019-01-08 11:39:46','2019-03-05 11:08:13',NULL),(61,34,'Sports Display Calibration','Check with us for compatibility',0.33,2,'2019-01-08 11:40:46','2019-03-05 11:08:04',NULL),(62,14,'File check',NULL,0.00,12,'2019-01-18 18:52:46','2019-03-05 11:07:59',NULL),(63,14,'PoPs & BURBLE','Check with us for compatibility',1.00,13,'2019-03-05 11:06:28','2019-03-05 11:07:22',NULL),(64,11,'PoPs & BURBLE','Check with us for compatibility',0.33,15,'2019-03-05 11:07:55','2019-03-12 11:49:19',NULL),(66,11,'PSA Additive','only',0.33,9,'2019-03-12 11:49:11','2019-03-12 11:49:36',NULL),(67,39,'PSA Additive',NULL,0.33,1,'2019-03-12 11:50:49','2019-03-12 11:50:49',NULL),(68,39,'DPF',NULL,0.33,2,'2019-03-12 11:51:04','2019-03-12 11:51:04',NULL),(69,11,'CVN Correction','Check with us for compatibility',0.00,17,'2019-04-01 10:18:16','2020-03-27 21:43:20',NULL),(70,34,'CVN Correction','Check with us for compatibility',0.33,3,'2019-04-01 10:18:46','2019-04-01 10:18:46',NULL),(71,15,'CVN Correction','Check with us for compatibility',0.33,9,'2019-04-01 10:18:58','2019-07-03 08:53:42',NULL),(72,14,'CVN Correction','Check with us for compatibility',1.00,14,'2019-04-01 10:19:14','2019-04-01 10:19:14',NULL),(74,15,'Adblue',NULL,0.33,8,'2019-07-03 08:53:38','2019-07-03 08:53:42',NULL),(75,42,'EGR','add EGR',0.33,1,'2019-09-23 21:34:38','2019-09-23 21:34:38',NULL),(76,42,'DPF','Add DPF Delete',0.33,2,'2019-09-23 21:34:57','2019-09-23 21:34:57',NULL),(77,42,'DTC Delete',NULL,0.33,3,'2019-09-23 21:35:19','2019-09-23 21:35:19',NULL),(78,42,'Vmax Speed limiter','Limiter Off',0.33,4,'2019-09-23 21:37:09','2019-09-23 21:37:09',NULL),(79,43,'EGR','add EGR',0.33,1,'2019-10-02 16:17:18','2019-10-02 16:17:18',NULL),(80,44,'DPF','Add DPF Delete',0.33,1,'2019-10-02 16:17:37','2019-10-02 16:17:37',NULL),(81,34,'EGR',NULL,0.33,4,'2019-11-24 20:38:01','2019-11-24 20:38:01',NULL),(82,34,'DPF & EGR',NULL,0.66,5,'2019-11-24 20:38:21','2019-11-24 20:38:21',NULL),(83,34,'DPF',NULL,0.33,6,'2019-11-24 20:38:33','2019-11-24 20:38:33',NULL),(85,64,'DPF',NULL,0.00,1,'2020-03-12 01:57:01','2020-03-12 01:57:01',NULL),(86,64,'EGR',NULL,0.00,2,'2020-03-12 01:57:12','2020-03-12 01:57:12',NULL),(87,64,'VELOCIDADE MAXIMA OFF',NULL,0.00,3,'2020-03-12 01:57:25','2020-03-12 01:57:25',NULL),(88,64,'CATALISADOR OFF',NULL,0.00,4,'2020-03-12 01:57:35','2020-03-12 01:57:35',NULL),(89,64,'PIPOCO (SE POSSÍVEL)',NULL,350.00,5,'2020-03-12 02:00:33','2020-03-12 13:16:25',NULL),(90,59,'VELOCIDADE MAXIMA OFF',NULL,0.00,1,'2020-03-12 02:02:44','2020-03-12 02:02:44',NULL),(91,59,'E85 CONVERSAO (SE POSSÍVEL)',NULL,500.00,3,'2020-03-12 02:03:00','2020-03-12 12:45:08',NULL),(92,59,'CATALISADOR OFF',NULL,0.00,2,'2020-03-12 02:03:35','2020-03-12 12:45:08',NULL),(93,59,'PIPOCO (SE POSSÍVEL)',NULL,350.00,4,'2020-03-12 02:04:16','2020-03-12 02:04:16',NULL),(94,59,'TORQUE POR MARCHA (SE POSSÍVEL)',NULL,100.00,5,'2020-03-12 02:08:23','2020-03-12 12:56:31',NULL),(95,59,'HARD CUT (SE POSSÍVEL)',NULL,150.00,6,'2020-03-12 02:11:38','2020-03-12 02:11:48',NULL),(96,69,'VELOCIDADE MAXIMA OFF',NULL,0.00,1,'2020-03-12 02:38:26','2020-03-12 02:38:26',NULL),(97,69,'CATALISADOR OFF',NULL,0.00,2,'2020-03-12 02:38:37','2020-03-12 02:38:37',NULL),(98,69,'PIPOCO',NULL,350.00,3,'2020-03-12 02:38:46','2020-03-12 02:38:46',NULL),(99,69,'HARD CUT (SE POSSÍVEL)',NULL,150.00,4,'2020-03-12 02:38:56','2020-03-12 02:38:56',NULL),(100,70,'CATALISADOR OFF',NULL,0.00,1,'2020-03-12 12:38:31','2020-03-12 12:38:31',NULL),(101,70,'VELOCIDADE MAXIMA OFF',NULL,0.00,2,'2020-03-12 12:38:39','2020-03-12 12:38:46',NULL),(102,70,'PIPOCO',NULL,350.00,3,'2020-03-12 12:38:58','2020-03-12 12:38:58',NULL),(103,70,'HARD CUT (SE POSSÍVEL)',NULL,150.00,4,'2020-03-12 12:39:09','2020-03-12 12:39:09',NULL),(104,71,'CATALISADOR OFF',NULL,0.00,1,'2020-03-12 12:39:26','2020-03-12 12:39:26',NULL),(105,71,'PIPOCO',NULL,350.00,2,'2020-03-12 12:39:35','2020-03-12 12:39:35',NULL),(106,71,'HARD CUT (SE POSSÍVEL)',NULL,150.00,3,'2020-03-12 12:39:42','2020-03-12 12:39:42',NULL),(107,71,'VELOCIDADE MAXIMA OFF',NULL,0.00,4,'2020-03-12 12:40:06','2020-03-12 12:40:06',NULL),(108,55,'PIPOCO (SE POSSÍVEL)',NULL,350.00,2,'2020-03-12 12:40:28','2020-03-12 12:40:28',NULL),(109,55,'CATALISADOR OFF',NULL,0.00,2,'2020-03-12 12:40:41','2020-03-12 12:40:41',NULL),(110,55,'VELOCIDADE MAXIMA OFF',NULL,0.00,3,'2020-03-12 12:40:54','2020-03-12 12:40:54',NULL),(111,55,'HARD CUT (SE POSSÍVEL)',NULL,150.00,4,'2020-03-12 12:41:05','2020-03-12 12:41:05',NULL),(112,56,'CATALISADOR OFF',NULL,0.00,1,'2020-03-12 12:43:38','2020-03-12 12:43:38',NULL),(113,56,'PIPOCO (SE POSSÍVEL)',NULL,350.00,2,'2020-03-12 12:43:46','2020-03-12 12:43:46',NULL),(114,56,'VELOCIDADE MAXIMA OFF',NULL,0.00,3,'2020-03-12 12:43:53','2020-03-12 12:43:53',NULL),(115,56,'HARD CUT (SE POSSÍVEL)',NULL,150.00,4,'2020-03-12 12:44:00','2020-03-12 12:44:00',NULL),(116,56,'E85 CONVERSAO (SE POSSÍVEL)',NULL,500.00,5,'2020-03-12 12:44:30','2020-03-12 12:44:30',NULL),(117,56,'TORQUE POR MARCHA (SE POSSÍVEL)',NULL,200.00,6,'2020-03-12 12:44:47','2020-03-12 12:44:47',NULL),(118,57,'CATALISADOR OFF',NULL,0.00,1,'2020-03-12 12:56:47','2020-03-12 12:56:47',NULL),(119,57,'VELOCIDADE MAXIMA OFF',NULL,0.00,2,'2020-03-12 12:56:53','2020-03-12 12:56:53',NULL),(120,57,'E85 CONVERSAO (SE POSSÍVEL)',NULL,500.00,3,'2020-03-12 12:57:07','2020-03-12 12:57:07',NULL),(121,57,'PIPOCO (SE POSSÍVEL)',NULL,350.00,4,'2020-03-12 12:57:16','2020-03-12 12:57:16',NULL),(122,57,'TORQUE POR MARCHA (SE POSSÍVEL)',NULL,100.00,6,'2020-03-12 12:57:29','2020-03-12 12:57:56',NULL),(123,57,'HARD CUT (SE POSSÍVEL)',NULL,150.00,5,'2020-03-12 12:57:41','2020-03-12 12:57:56',NULL),(124,58,'CATALISADOR OFF',NULL,0.00,1,'2020-03-12 12:58:37','2020-03-12 12:58:37',NULL),(125,58,'VELOCIDADE MAXIMA OFF',NULL,0.00,2,'2020-03-12 12:58:44','2020-03-12 12:58:44',NULL),(126,58,'E85 CONVERSAO (SE POSSÍVEL)',NULL,500.00,3,'2020-03-12 12:58:53','2020-03-12 12:58:53',NULL),(127,58,'PIPOCO (SE POSSÍVEL)',NULL,350.00,4,'2020-03-12 12:59:07','2020-03-12 12:59:07',NULL),(128,58,'TORQUE POR MARCHA (SE POSSÍVEL)',NULL,100.00,6,'2020-03-12 12:59:21','2020-03-12 12:59:38',NULL),(129,58,'HARD CUT (SE POSSÍVEL)',NULL,150.00,5,'2020-03-12 12:59:34','2020-03-12 12:59:52',NULL),(130,60,'CATALISADOR OFF',NULL,0.00,1,'2020-03-12 13:00:58','2020-03-12 13:00:58',NULL),(131,60,'VELOCIDADE MAXIMA OFF',NULL,0.00,2,'2020-03-12 13:01:03','2020-03-12 13:01:03',NULL),(132,60,'E85 CONVERSAO (SE POSSÍVEL)',NULL,500.00,3,'2020-03-12 13:01:09','2020-03-12 13:01:09',NULL),(133,60,'PIPOCO (SE POSSÍVEL)',NULL,350.00,4,'2020-03-12 13:01:26','2020-03-12 13:01:26',NULL),(134,60,'HARD CUT (SE POSSÍVEL)',NULL,150.00,5,'2020-03-12 13:01:38','2020-03-12 13:01:38',NULL),(135,60,'TORQUE POR MARCHA (SE POSSÍVEL)',NULL,100.00,6,'2020-03-12 13:02:00','2020-03-12 13:02:00',NULL),(136,61,'CATALISADOR OFF',NULL,0.00,1,'2020-03-12 13:02:16','2020-03-12 13:02:16',NULL),(137,61,'VELOCIDADE MAXIMA OFF',NULL,0.00,2,'2020-03-12 13:02:20','2020-03-12 13:02:20',NULL),(138,61,'E85 CONVERSAO (SE POSSÍVEL)',NULL,500.00,3,'2020-03-12 13:02:27','2020-03-12 13:02:27',NULL),(139,61,'HARD CUT (SE POSSÍVEL)',NULL,150.00,4,'2020-03-12 13:02:57','2020-03-12 13:02:57',NULL),(140,61,'PIPOCO (SE POSSÍVEL)',NULL,350.00,5,'2020-03-12 13:03:06','2020-03-12 13:03:06',NULL),(141,61,'TORQUE POR MARCHA (SE POSSÍVEL)',NULL,100.00,6,'2020-03-12 13:03:15','2020-03-12 13:03:15',NULL),(142,62,'CATALISADOR OFF',NULL,0.00,1,'2020-03-12 13:04:51','2020-03-12 13:04:51',NULL),(143,62,'VELOCIDADE MAXIMA OFF',NULL,0.00,2,'2020-03-12 13:04:56','2020-03-12 13:04:56',NULL),(144,62,'E85 CONVERSAO (SE POSSÍVEL)',NULL,500.00,3,'2020-03-12 13:05:11','2020-03-12 13:05:17',NULL),(145,62,'PIPOCO (SE POSSÍVEL)',NULL,350.00,4,'2020-03-12 13:05:25','2020-03-12 13:05:25',NULL),(146,62,'HARD CUT (SE POSSÍVEL)',NULL,150.00,5,'2020-03-12 13:06:21','2020-03-12 13:06:21',NULL),(147,62,'TORQUE POR MARCHA (SE POSSÍVEL)',NULL,100.00,6,'2020-03-12 13:06:31','2020-03-12 13:06:31',NULL),(148,63,'CATALISADOR OFF',NULL,0.00,1,'2020-03-12 13:07:27','2020-03-12 13:07:27',NULL),(149,63,'VELOCIDADE MAXIMA OFF',NULL,0.00,2,'2020-03-12 13:07:31','2020-03-12 13:07:31',NULL),(150,63,'E85 CONVERSAO (SE POSSÍVEL)',NULL,500.00,3,'2020-03-12 13:07:37','2020-03-12 13:07:37',NULL),(151,63,'PIPOCO (SE POSSÍVEL)',NULL,350.00,4,'2020-03-12 13:07:50','2020-03-12 13:07:50',NULL),(152,63,'HARD CUT (SE POSSÍVEL)',NULL,150.00,5,'2020-03-12 13:07:57','2020-03-12 13:07:57',NULL),(153,63,'TORQUE POR MARCHA (SE POSSÍVEL)',NULL,100.00,6,'2020-03-12 13:08:05','2020-03-12 13:08:05',NULL),(154,67,'CATALISADOR OFF',NULL,0.00,1,'2020-03-12 13:08:17','2020-03-12 13:08:17',NULL),(155,67,'VELOCIDADE MAXIMA OFF',NULL,0.00,2,'2020-03-12 13:08:22','2020-03-12 13:08:22',NULL),(156,67,'E85 CONVERSAO (SE POSSÍVEL)',NULL,500.00,3,'2020-03-12 13:08:28','2020-03-12 13:08:28',NULL),(157,67,'PIPOCO (SE POSSÍVEL)',NULL,350.00,4,'2020-03-12 13:08:35','2020-03-12 13:08:35',NULL),(158,67,'HARD CUT (SE POSSÍVEL)',NULL,150.00,5,'2020-03-12 13:08:44','2020-03-12 13:08:44',NULL),(159,67,'TORQUE POR MARCHA (SE POSSÍVEL)',NULL,100.00,6,'2020-03-12 13:08:50','2020-03-12 13:08:50',NULL),(160,68,'CATALISADOR OFF',NULL,0.00,1,'2020-03-12 13:09:03','2020-03-12 13:09:03',NULL),(161,68,'VELOCIDADE MAXIMA OFF',NULL,0.00,2,'2020-03-12 13:09:07','2020-03-12 13:09:07',NULL),(162,68,'E85 CONVERSAO (SE POSSÍVEL)',NULL,500.00,3,'2020-03-12 13:12:03','2020-03-12 13:12:03',NULL),(163,68,'PIPOCO (SE POSSÍVEL)',NULL,350.00,4,'2020-03-12 13:12:10','2020-03-12 13:12:10',NULL),(164,68,'HARD CUT (SE POSSÍVEL)',NULL,150.00,5,'2020-03-12 13:12:17','2020-03-12 13:12:17',NULL),(165,68,'TORQUE POR MARCHA (SE POSSÍVEL)',NULL,100.00,6,'2020-03-12 13:12:24','2020-03-12 13:12:24',NULL),(166,66,'DPF',NULL,0.00,1,'2020-03-12 13:16:55','2020-03-12 13:16:55',NULL),(167,66,'EGR',NULL,0.00,2,'2020-03-12 13:17:01','2020-03-12 13:17:01',NULL),(168,66,'VELOCIDADE MAXIMA OFF',NULL,0.00,3,'2020-03-12 13:17:09','2020-03-12 13:17:09',NULL),(169,66,'PIPOCO (SE POSSÍVEL)',NULL,0.00,4,'2020-03-12 13:17:16','2020-03-12 13:17:16',NULL),(170,66,'CATALISADOR OFF',NULL,0.00,5,'2020-03-12 13:18:21','2020-03-12 13:18:21',NULL),(171,76,'CATALISADOR OFF',NULL,0.00,1,'2020-03-12 16:56:42','2020-03-12 16:56:42',NULL),(172,76,'VELOCIDADE MAXIMA OFF',NULL,0.00,2,'2020-03-12 16:56:49','2020-03-12 16:56:49',NULL),(173,76,'HARD CUT (SE POSSÍVEL)',NULL,350.00,3,'2020-03-12 16:56:57','2020-03-12 16:56:57',NULL),(174,76,'E85 CONVERSAO (SE POSSÍVEL)',NULL,500.00,4,'2020-03-12 16:57:04','2020-03-12 16:57:04',NULL),(175,76,'TORQUE POR MARCHA (SE POSSÍVEL)',NULL,100.00,5,'2020-03-12 16:57:10','2020-03-12 16:57:10',NULL),(176,76,'DPF',NULL,0.00,6,'2020-03-12 16:57:19','2020-03-12 16:57:19',NULL),(177,76,'EGR',NULL,0.00,7,'2020-03-12 16:57:26','2020-03-12 16:57:26',NULL),(178,76,'PIPOCO (SE POSSÍVEL)',NULL,350.00,8,'2020-03-12 16:57:37','2020-03-12 16:57:37',NULL),(179,76,'UPGRADE REMAP',NULL,350.00,9,'2020-05-28 13:18:47','2020-05-28 13:18:47',NULL),(180,78,'Test tuning option1','Test tuning option1',1.00,1,'2020-06-05 13:04:45','2020-06-05 13:04:45',NULL); /*!40000 ALTER TABLE `tuning_type_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tuning_types` -- DROP TABLE IF EXISTS `tuning_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tuning_types` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `company_id` int(11) unsigned NOT NULL, `label` varchar(191) NOT NULL, `credits` float(8,2) NOT NULL, `order_as` int(10) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `company_id` (`company_id`), CONSTRAINT `tuning_types_ibfk_1` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=79 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tuning_types` -- LOCK TABLES `tuning_types` WRITE; /*!40000 ALTER TABLE `tuning_types` DISABLE KEYS */; INSERT INTO `tuning_types` VALUES (11,1,'Stage 1',1.00,1,'2018-09-24 07:24:27','2019-03-05 13:09:39',NULL),(14,1,'Options Only',0.00,3,'2018-09-24 14:51:52','2019-03-05 13:09:41',NULL),(15,1,'DPF',1.00,5,'2018-09-24 14:52:57','2019-03-12 11:51:16',NULL),(17,1,'Back to Stock',0.33,7,'2018-09-27 09:05:00','2019-07-15 14:34:15',NULL),(20,19,'STAGE 1',1.00,1,'2018-11-22 17:30:35','2019-03-05 12:17:23',NULL),(21,19,'DPF Removal',1.00,2,'2018-11-22 17:32:40','2018-11-22 17:32:40',NULL),(30,19,'BACK TO STOCK',0.35,3,'2018-12-06 14:04:19','2020-03-04 21:28:43',NULL),(31,19,'STAGE 2',1.33,4,'2018-12-06 16:33:32','2019-03-05 12:18:00',NULL),(32,19,'EGR',1.00,5,'2018-12-06 16:34:11','2019-01-08 13:12:06',NULL),(33,19,'ECO TUNE',1.00,6,'2018-12-07 16:30:37','2019-01-08 13:09:10',NULL),(34,1,'Stage 2',2.00,2,'2019-01-08 11:39:14','2019-12-24 23:40:02',NULL),(35,1,'VAG - DSG',1.00,6,'2019-01-08 13:08:45','2019-11-24 20:39:08',NULL),(36,19,'DTC DELETE',1.00,7,'2019-01-24 18:55:47','2019-12-13 10:15:23',NULL),(39,1,'Ablue',1.00,4,'2019-03-12 11:50:28','2019-03-12 11:51:16',NULL),(41,19,'<NAME>',1.33,8,'2019-07-30 08:42:36','2019-12-13 21:06:10',NULL),(42,33,'Stage 1',1.00,1,'2019-09-23 21:34:15','2019-09-23 21:34:15',NULL),(43,33,'DPF',1.00,2,'2019-09-23 21:35:36','2019-09-23 21:35:36',NULL),(44,33,'EGR',1.00,3,'2019-09-23 21:35:46','2019-09-23 21:35:46',NULL),(45,33,'DPF & EGR',1.33,4,'2019-09-23 21:36:14','2019-09-23 21:36:14',NULL),(46,33,'Stage 1 -DPF - EGR',1.66,5,'2019-09-23 21:36:36','2019-09-23 21:36:36',NULL),(47,33,'Adblue',1.00,6,'2019-09-23 21:37:37','2019-09-23 21:37:37',NULL),(48,33,'Special',2.00,7,'2019-09-23 21:44:13','2019-09-23 21:44:13',NULL),(49,19,'ADBLUE',1.00,9,'2019-11-18 14:52:39','2019-11-18 14:52:39',NULL),(50,19,'IMMO OFF TYPE 1',0.70,10,'2019-12-13 21:03:08','2020-01-10 09:52:42',NULL),(51,19,'IMMO OFF TYPE 2+ EDC17',1.00,11,'2019-12-13 21:04:04','2020-01-17 13:02:14',NULL),(52,19,'AIRBAG CRASH CLEAR',1.00,12,'2019-12-13 21:05:24','2019-12-13 21:05:24',NULL),(53,19,'SPEED LIMITER',1.00,13,'2020-02-25 14:00:15','2020-02-25 14:00:30',NULL),(54,19,'REDUCE TUNE',0.50,14,'2020-03-04 21:27:45','2020-03-04 21:28:01',NULL),(55,34,'STAGE 1 TURBO POPULAR (R$ 750,00)',750.00,4,'2020-03-12 01:46:25','2020-03-12 02:41:30',NULL),(56,34,'STAGE 1 TURBO MEDIO (R$ 900,00)',900.00,5,'2020-03-12 01:47:19','2020-03-12 02:41:53',NULL),(57,34,'STAGE 1 TURBO PREMIUM (R$ 1500,00)',1500.00,6,'2020-03-12 01:47:34','2020-03-12 02:42:19',NULL),(58,34,'STAGE 2 TURBO POPULAR (R$ 750,00)',750.00,7,'2020-03-12 01:48:21','2020-03-12 02:43:12',NULL),(59,34,'STAGE 2 TURBO MEDIO (R$ 900,00)',900.00,8,'2020-03-12 01:48:30','2020-03-12 02:43:31',NULL),(60,34,'STAGE 2 TURBO PREMIUM (R$ 1500,00)',1500.00,9,'2020-03-12 01:48:43','2020-03-12 02:44:14',NULL),(61,34,'STAGE 3 TURBO POPULAR (R$ 900,00)',900.00,10,'2020-03-12 01:49:03','2020-03-12 02:45:07',NULL),(62,34,'STAGE 3 TURBO MEDIO (R$ 1350,00)',1350.00,11,'2020-03-12 01:49:54','2020-03-12 02:47:33',NULL),(63,34,'STAGE 3 TURBO PREMIUM (R$ 2000,00)',2000.00,12,'2020-03-12 01:50:05','2020-03-12 02:46:42',NULL),(64,34,'STAGE 1 TURBO DIESEL (R$ 800,00)',800.00,15,'2020-03-12 01:56:24','2020-03-12 02:48:26',NULL),(66,34,'STAGE 2 TURBO DIESEL (R$ 900,00)',900.00,16,'2020-03-12 02:15:29','2020-03-12 02:48:40',NULL),(67,34,'STAGE 4 TURBO MEDIO (R$ 1500,00)',1500.00,13,'2020-03-12 02:16:10','2020-03-12 02:47:08',NULL),(68,34,'STAGE 4 TURBO PREMIUM (R$ 2500,00)',2500.00,14,'2020-03-12 02:16:26','2020-03-12 02:48:09',NULL),(69,34,'ASPIRADO POPULAR ( R$400,00)',400.00,1,'2020-03-12 02:16:38','2020-03-12 02:39:29',NULL),(70,34,'ASPIRADO MEDIO (R$700,00)',700.00,2,'2020-03-12 02:16:53','2020-03-12 02:39:44',NULL),(71,34,'ASPIRADO PREMIUM (R$ 1000,00)',1000.00,3,'2020-03-12 02:17:06','2020-03-12 02:40:31',NULL),(72,34,'CAMBIO STAGE 1 (R$ 700,00)',700.00,17,'2020-03-12 12:36:16','2020-03-12 16:38:10',NULL),(73,34,'CAMBIO STAGE 2 (R$ 900.00)',900.00,18,'2020-03-12 12:36:29','2020-03-12 16:54:59',NULL),(74,34,'CAMBIO STAGE 3 (R$ 1100,00)',1100.00,19,'2020-03-12 12:36:39','2020-03-12 16:55:19',NULL),(75,34,'EQUIPAMENTO ESPECIAL HPTUNERS (R$ 1500,00)',1500.00,20,'2020-03-12 13:21:19','2020-03-12 16:55:35',NULL),(76,34,'ESPECIAL TUNE',0.00,21,'2020-03-12 16:56:03','2020-03-12 16:56:03',NULL),(77,34,'UPGRADE REMAP',350.00,22,'2020-03-17 14:05:02','2020-03-17 14:05:02',NULL),(78,41,'Test tuning type',1.00,1,'2020-06-05 13:04:17','2020-06-05 13:04:17',NULL); /*!40000 ALTER TABLE `tuning_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `company_id` int(11) unsigned NOT NULL, `tuning_credit_group_id` int(11) unsigned DEFAULT NULL, `lang` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, `title` enum('Mr','Ms') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Mr', `first_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `last_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `business_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `address_line_1` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `address_line_2` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `county` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `town` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `post_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tools` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tuning_credits` float(8,2) DEFAULT 0.00, `is_master` tinyint(1) NOT NULL DEFAULT 0 COMMENT '1->true,0->false ', `is_admin` tinyint(1) NOT NULL DEFAULT 0 COMMENT '1->admin,0->customer', `is_active` tinyint(1) NOT NULL DEFAULT 1 COMMENT '1->active, 0->inactive', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_login` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `more_info` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `tuning_credit_group_id` (`tuning_credit_group_id`), KEY `company_id` (`company_id`), CONSTRAINT `users_ibfk_1` FOREIGN KEY (`tuning_credit_group_id`) REFERENCES `tuning_credit_groups` (`id`) ON DELETE CASCADE, CONSTRAINT `users_ibfk_2` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=184 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (11,1,8,'en','Mr','Chris','Fisher','<EMAIL>','01254393700','$2y$10$u0QkguWeE4uOWMdmVjS4N.ibjqzY9lipAw9GhEKuFXVak8r1rXzxa','advanced performance tuning ltd','UNIT 4 WALMSLEY COURT','CLAYTON BUSINESS PARK','Lancashire','ACCRINGTON','BB5 5JQ','ALL OF THEM',344.00,1,1,1,'t6CGUEg3vLGHXVWqwFZEl9oPCAOwbDv81CtcBOeVqRJaItIz7brnAo1U1JQ8','2020-06-11 07:48:38',NULL,'2020-06-11 07:48:38',NULL,'<p><strong>Specialising in Remapping for European Vehicles. </strong></p>\r\n\r\n<ul>\r\n <li>Remapping</li>\r\n <li>DPF &amp; EGR</li>\r\n <li>ADBlue &amp; SCR</li>\r\n <li>Pops &amp; Burbles</li>\r\n</ul>\r\n\r\n<p># #Vehicle Dependent</p>'),(19,1,8,'en','Mr','Ben','Auty','<EMAIL>','123456789','$2y$10$QfdZdBoAEDcZGB5xpKCOluUXJZvTVg0o/xqJb8XCAxS5/7lfYnzHe','AVS Electrical','123',NULL,'YORKSHIRE','HUDDERFIELD',NULL,NULL,0.91,0,0,1,'y4zl5vvb7bn0XEAipXS1Tj7kEvtotu1K6z8OIGZdZNxGjQXbtpbYdnH7wjGW','2020-06-10 13:51:57','2018-09-25 16:35:33','2020-06-10 13:51:57',NULL,''),(21,1,8,'en','Mr','Shaun','Parker','<EMAIL>','7555493143','$2y$10$KMOB/.Uheg.a8uELCt2GQuDaHQzii3Hs/Yghlg/kD3JVA3dWd0K8y','OBD DIagnostics','123',NULL,'123','Lowestoft',NULL,'Kess V2',0.30,0,0,1,'G0FAnZZYvBwXITEPqeV8WoIjRH2ZJZG7mPl8NjsuxgZmDgwxlDRmZHHHOKWQ','2020-05-18 10:09:19','2018-09-26 13:34:23','2020-05-18 10:09:19',NULL,''),(23,1,8,'en','Mr','Dee','Maculewicz','<EMAIL>','12345678','$2y$10$FTQVKdRslsy3ggohkKfKYeNEvs6OeQN6BMG5599N3z/BG4DXXV3n.','Williamsons Autos','asdd',NULL,'Lancashire','Oswaldtwistle',NULL,NULL,0.34,0,0,1,'dP6F2NxkqbEySTMI4ZGUMNPnJHpVEsOD2ddmZYYKZGqRJLV2r9dGc9YCcOFh','2020-01-29 09:11:20','2018-09-26 13:49:08','2020-01-29 09:11:20',NULL,''),(24,1,8,'en','Mr','Pete','Moody','<EMAIL>','12345678','$2y$10$JdU0M8GQEWIJyRmUGbBnbu.I3o/jBGnnYhUYXhvZ5Im4pS.0owJNa','Creswell Garage','UNIT 4 & 5 ENTERPRISE COURT','Colliery Road','Creswell','Creswell',NULL,NULL,0.05,0,0,1,'HME2iMmIo3P6fVoIiKWb6Zu0brsBS7RBCYTjnkqHj8dzk4aZdm8E5HiGZNyp','2020-06-06 10:55:30','2018-09-26 13:51:04','2020-06-06 10:55:30',NULL,''),(27,1,8,'en','Mr','Kyle','Collins','<EMAIL>','12345645','$2y$10$gtyKVJUcO5TITesqR0EI2OGNa9wfimImAjPYmGYQizFWMwaL9fyai','Motion Werks','asda','asdas','asdas','sdas',NULL,NULL,0.00,0,0,1,'p2HgF8wvGeqURbczcSn0CyjxCbjBhZDGIGHWH7gvOlmotUcUQFMBJcL793O0','2020-06-11 07:45:30','2018-09-27 08:58:40','2020-06-11 07:45:30',NULL,''),(28,1,30,'en','Mr','Dave','Eeley','<EMAIL>','133456654','$2y$10$NoM7D9tuEyhXQVdBGcWTE.l34B0R/JfN4kN2Gx2eY0fyRcunh/6qe','Llyn LandRover Services','sasdd','asdasda','asdasd','asdsdd',NULL,NULL,0.03,0,0,1,'zY2vqXiIeKUY7YM6aGSY702Bc0epY9cmqFHG5ACMRLcQxXndIobver646edN','2020-01-24 12:22:17','2018-09-27 09:10:21','2020-01-24 12:22:17',NULL,''),(29,1,8,'en','Mr','Michael','Swain','<EMAIL>','1651651651651','$2y$10$QV09kcoBYMzdCB9HqNCXS.EV3Ucopyz4BIQNzjPUNmzM5dQSQPodS','Swain Auto Electrical','445343','4534534','asdasd','Comber',NULL,NULL,0.68,0,0,1,'9g1wNoEh3Sy4dPaNtY2cOdC0XOi6b0PTLwaH44Z8mfhOeNpadWo5nK4w3rlk','2020-05-21 11:48:49','2018-09-27 09:11:54','2020-05-21 11:48:49',NULL,''),(30,1,8,'en','Mr','Ryan','Toye','<EMAIL>','54654564546','$2y$10$Qixjj1Dep4CEAEZx2T914unqHQIaeFr0oGEv/TQrH9kfhD7aSUtqi','Reflection Car Care','sdasdasd',NULL,'sadasd','Glasgow',NULL,NULL,0.67,0,0,1,'z29cInuluzsn3osH4bSdVR7cP3uUOJhA0vTmZUUc0iTaHvM667mkxjIkhpj9','2020-06-06 10:24:10','2018-09-27 09:13:55','2020-06-06 10:24:10',NULL,''),(35,1,8,'en','Mr','Mick','...','<EMAIL>','1234567','$2y$10$6.7eSU1kKPojv//LTH/0zendmJg1aTjWhzHTTpzE9Rvnc1dXlYU0S','MA Diesels','...','...','Northampton','Corby',NULL,NULL,0.53,0,0,1,'Iydk7MygmCL8SLYBRWhFTrZSUf76yGdBgvxroNDh9KcOJBP9itBS8WZLEcmN','2020-05-21 12:45:44','2018-09-28 13:54:35','2020-05-21 12:45:44',NULL,''),(36,1,8,'en','Mr','Graham','Carty','<EMAIL>','1234567','$2y$10$fge.446lYTXpZc0fCjvRhuNIGgQ5TVTl42n3Iggfb4wbt1UbX9WXS','Autocare Mobile','....',NULL,'Cheshire','...',NULL,NULL,0.00,0,0,1,'49b7k0NwV99TevdWA1nAZ1kBFyj8TsYMnNiHe4sFVqEOVWnj2X0bKJetoFq5','2019-08-05 06:50:19','2018-09-28 13:55:27','2020-04-05 11:06:35',NULL,''),(39,1,8,'en','Mr','Chris','Irving','<EMAIL>','1489583311','$2y$10$Za.a15NR4P/BccoMH4O5VuBWYdoXYqTFWWAWosVbXNfRUeR2SO7Uq','Circular Autos','Unit 2 Barratt Industrial Estate','Whittle Avenue','Segensworth','West Fareham',NULL,NULL,0.00,0,0,1,'lN6N5Znlj2z73cf5pGWtAH24Jsbf0rBSsAClR6yOrSBcFZmZFxDlyjvNqcB3','2020-06-09 11:16:28','2018-10-03 07:45:27','2020-06-09 11:16:28',NULL,''),(43,1,14,'en','Mr','Te.','Hoang','<EMAIL>','07540328888','$2y$10$PIqVIsQwBFGxRtc/5M9CZO2rc8GmnWThfHmASLJ2Z4p03.Z7jBRQm','DMA Performance ltd','Unit 14','Clipper Park Industrial Units','Essex','Tilbury','RM187HG','Kess\r\nKtag',9.51,0,0,1,'uIRhN579yl4hwcNXjDPoJilsjwbAYJxLa8j6JmQCaSnLkCfPn5VsxZMqGL2f','2020-06-09 19:19:25','2018-10-13 13:10:19','2020-06-09 19:19:25',NULL,''),(45,1,14,'en','Mr','Mike','Porter','<EMAIL>','00000000','$2y$10$3dX6ycAJfIxSzxJmNKxz0uC7asD.HQ2T0tm3mT/cZhrVMB62ymMW.','The Mobile Garage People','6b Queniborough Industrial Estate','Melton Rd','Leicester','Queniborough','LE7 3FP','Kess, Ktag',0.32,0,0,1,'tqJugb5o9m5WCpvyLQAMHOuG1zPLcAgP0GtRfZEio6dlMyRmR5kt8rNagNZd','2020-06-10 05:12:39','2018-10-15 09:17:05','2020-06-10 05:12:39',NULL,''),(46,1,8,'en','Mr','Jason','Maddocks','<EMAIL>','01234569','$2y$10$VAvi2rKn4knCW6k0fPLc9u8gvP0Qus1eMuBxiiorwb8CbZLxYnd2O','Midland Vehicle Installations LTD','...','....','....','....','....',NULL,0.00,0,0,1,'uJ6VpvgG3vZslv9HoLNeA6eI5oOzKaaTb8W00foG1HliGhtYB3d9BpCxnorv','2019-08-21 13:05:09','2018-11-16 15:10:23','2020-04-05 11:11:12',NULL,''),(48,19,NULL,'en','Mr','BARRY','WHITE','<EMAIL>','07366189188','$2y$10$cmEAOej310driyLbWfyl2O8bftRixuUxQ6c8K2SH2p2SEbTBgf0SS','PREMIER-REMAPPING','ASQUITH BOTTOM MILL','sowerby bridge','United Kingdom','HALIFAX','HX63BT',NULL,0.00,0,1,1,'peqZ0paKzSRzYU3XDTPTWtsOnNgbQTfNf4Qzffooa7nJpdcc39uRuOtqq8k3','2020-06-10 15:58:54','2018-11-19 10:53:44','2020-06-10 15:58:54',NULL,'<ul>\r\n <li>PREMIER-REMAPPING EXPERIENCED IN ECU REPAIRS AND TUNNG FILES.</li>\r\n <li>WE OFFER BELOW AND MORE</li>\r\n <li>Remapping</li>\r\n <li>DPF</li>\r\n <li>EGR</li>\r\n <li>DTC Removal</li>\r\n <li>Aldblue</li>\r\n <li>Immo</li>\r\n <li>GPF/OPF REMOVAL</li>\r\n <li>Burbles Activation</li>\r\n <li>Boost Sensor Calibration Module</li>\r\n</ul>'),(70,1,8,'en','Mr','test','test','<EMAIL>','0123456756',NULL,'test','33 Collingwood, CLAYTON','CLAYTON','Lancashire','accrington','bb5 5qp',NULL,6.00,0,0,1,NULL,'2020-06-05 08:10:09','2018-12-05 13:13:12','2020-06-05 08:10:09',NULL,''),(74,19,27,'en','Mr','DAVE','NICHOLSON','<EMAIL>','12345','$2y$10$tubSsPs8NJvTsMzszCR0QeTVp9Lz8y.2ZokTBq9LG/hZX/kds.47i','DASHFIXER DAVE','leeds',NULL,'england','1234',NULL,'kess v2',0.00,0,0,1,'pp2Wo5EPpMU7mccpjMp4uqlB6NQZ3yMkAsFhj7rrjOTA8mfv3OFyDqWZVqGN','2020-05-22 10:50:24','2018-12-05 21:17:02','2020-05-22 10:50:24',NULL,''),(76,19,27,'en','Mr','DALE','SNAIL','<EMAIL>','07807222262','$2y$10$oaL.KsgQckpnW78MAyr1wex1rHovlumFakoIyWj1UJRmafsS2WsbC','DashDoc','9 GOODENBER RD','BENTHAM','LANCASHIRE','LANCASTER','LA27JD','KESS V2',3.00,0,0,1,'B90FzPgOJBUZ5TiNrlrFBz3Ol3Et4ly9owANuFnld1KtxFEbOZcAqMLp6SMI','2020-06-05 13:56:33','2018-12-06 15:51:00','2020-06-05 13:56:33',NULL,''),(81,19,17,'en','Mr','BRIAN','CORR','<EMAIL>','07496584262','$2y$10$ToIV5.mMPQKr2Earr..LuusB.cnNzTZL7HbgjK./GAKrzaOsjF1Q2','PREMIER-GLASGOW','AAAAAAAAAAAAAAAAA','AAAAAAAAAAAAAAAAAAAAAA','AAAAAAAAAAAAAAAAAAAAAAAA','AAAAAAAAAAAAAAAAAAAAA',NULL,'KESS V2',0.00,0,0,1,'L2qgwFXaKLMV2TdHbxg0cQd8ty1o1U2G7jm2KXesKmSyqtFZLnr8B7N43iON','2020-06-07 10:06:52','2018-12-07 14:36:14','2020-06-07 10:06:52',NULL,''),(82,1,8,'en','Mr','Lee','DEBEN','<EMAIL>','01473 215245','$2y$10$8nzToSdeHlTRU8.xak6JsuJnDaB6XEMHRigfbEKJ4ouOWP5xYOY12','Deben Vehicle Repairs','20 Tower Mill Rd,','Ipswich IP1 4AQ','Suffolk','Ipswich','IP1 4AQ',NULL,1.67,0,0,1,'mPFaITGJyt9u8cyqRcnfO9Wb5HFqVd63aRgpPwAiPMExe6rrTS7l2INYxxlg','2020-06-05 14:10:00','2018-12-08 10:48:05','2020-06-05 14:10:00',NULL,''),(84,1,8,'en','Mr','RYAN','THOMAS','<EMAIL>','07818 094 453','$2y$10$pTySFYsKQHKUm1/iqY.VKOSRZ3fg9gcOm5ZRA5Ca9BaG90T.xfKpa','CARMA AUTOMOTIVE','zzzzzzz','zzzzzzz','United Kingdom','Bristol',NULL,NULL,0.00,0,0,1,'MfLbJzVypAT7vryFJrkrdBzRDy3GWrTXSGJe35JhJH7HeD2D1SQXbljmBA22','2020-03-13 05:59:42','2018-12-11 13:31:04','2020-04-05 11:06:23',NULL,''),(85,19,27,'en','Mr','peter','martin','<EMAIL>','111111111111111','$2y$10$CCn8s/hjiVaJUzhDsXLeD.kzLrdg.bHNDAz/9TSkJrOtOAFFNjTGW','11111111111111','111111111111111',NULL,'111111111111111','11111111111111',NULL,NULL,0.00,0,0,1,'samsJltW97bykUTySDMt8kO4PQ5KxXAfrKoxo4SIjmzMezEpvu3R7xTPitmo','2019-11-21 17:46:14','2019-01-10 12:22:57','2019-11-21 17:46:14',NULL,''),(90,19,26,'en','Mr','tom','xxxx','<EMAIL>','11111',NULL,'DNA 4X4','unit1','church farm','111111111111111','marlborough','sn83eq','kess v slave',0.00,0,0,1,NULL,'2019-04-22 06:09:35','2019-01-31 19:19:09','2019-05-14 11:55:37',NULL,''),(94,1,8,'en','Mr','Timmy','Mullan','<EMAIL>','07545 967740','$2y$10$lw49rnKkb4D9a7AR39NUSONGLdqUyDPLVDh9LavJykyz5.TSAM1RS','MULLAN AUTOELECTRICAL','9 Brockagh Rd,',NULL,'Ulster','Coleraine','BT51 5DZ',NULL,1.83,0,0,1,'RFwHefLzKBLIsQRZLVhkCsHodGTMZU8HEKnAt6xF30JQ3elT6BHDf61EZbqr','2020-05-04 12:23:54','2019-05-13 11:29:30','2020-05-04 12:23:54',NULL,''),(98,1,29,'en','Mr','Tiago','Da SilvaTuning solutions & Imports','<EMAIL>','07797 740751','$2y$10$dOr/2Dsd2XpqkXLESffy8ucKyIBF8.ZEDeyHjXd2lX9.VjiSh70f2','Tuning solutions & Imports','Unit 8b','ue de bechet','Jersey','Trinity',NULL,NULL,0.01,0,0,1,'t4TVpIoQrYgym7PgeY2JoeW5s42T2EgO3BUtOzX25A5IRgtzSH7OPlCXNcej','2020-03-13 13:42:16','2019-07-04 18:01:06','2020-03-13 13:42:16',NULL,''),(100,19,26,'en','Mr','JAMIE','d','<EMAIL>','00000000000000000000','$2y$10$TU6Q3UHYMoqsh3.puW/xsu1fW6/WeI2PYcas.PBWwIrl/.Ehgl/2C','2870','29 d','sowerby bridge','West Yorkshire','halifax','HX6',NULL,5.00,0,0,1,'hlTFeiaFT77KmkrS2Q2d6NoNNxNvBXLKyrVb419Yv9eqzXse8Vo6EYKZuZC3','2020-06-11 07:20:50','2019-07-05 12:43:24','2020-06-11 07:20:50',NULL,''),(102,19,17,'en','Mr','panos','pitt','<EMAIL>','00000000000000000000','$2y$10$HerRdY6HRx79yFZDZwsleeciMzNsyAR6QDiT9KDpY2YclRcXxHqm.','A. Pittas Car Works LTD','gggggggggggggg','ggggggggggggggggg','cyprus','ggggggggggggg',NULL,NULL,0.03,0,0,1,'ksxhO9opLwCjfleyQxHZLvfgUr1sfdOzDIQnlcpZWE3AJETqbDxyapp8efcE','2020-06-10 06:44:01','2019-07-11 08:42:05','2020-06-10 06:44:01',NULL,''),(111,19,27,'en','Mr','Piotr','Serroczynski','<EMAIL>','07551191065','$2y$10$tZCL0X7QORPCYjmB4P5GD.5PMEpPV4EPRJrmJU489CJAZ/colv0Xa','Hx Mobile car DiagnosticU','5','Broomhead close','Uk','Halifax','HX28Nl','kess and kitag',0.00,0,0,1,'XruqYY6KVivGhvkVuJ0K1uUI3bVJ67YIeCW0IoCtep4W7lsdsropiFZwzf52','2019-11-12 11:41:49','2019-09-12 16:11:54','2019-11-30 11:16:22',NULL,NULL),(120,33,NULL,'en','Mr','Cobra','Tuning','<EMAIL>','1234567890','$2y$10$Dcf/nzpMTEruD/a1j0h14eF0yuKEahvrzMDb7Im04VneLDoKbd9gW','Cobra Tuning','Brockagh Rd',NULL,'Ireland','Coleraine',NULL,NULL,0.00,0,1,1,'07Glx3l3GOQPqLYY7wztJG1GEM5c8CeE3kKSsnVHhgWELQXf086a0b2tfDkl','2020-06-11 06:17:13','2019-09-23 08:42:23','2020-06-11 06:17:13',NULL,'<p><strong>Cobra Tuning &amp; Motorsport</strong></p>\r\n\r\n<p>An experienced tuning company based in Northern Ireland.<br />\r\nWe can offer the <strong>best quality files at great value for money</strong>.</p>\r\n\r\n<p>We offer:-</p>\r\n\r\n<ul>\r\n <li><strong>Remapping of European Vehicles</strong></li>\r\n <li><strong>DPF removal</strong></li>\r\n <li><strong>EGR removal</strong></li>\r\n <li><strong>Pops on certain cars*</strong></li>\r\n <li><strong>Adblue*</strong></li>\r\n <li><strong>Speed limit deactivate</strong></li>\r\n <li><strong>Special Rates for Regular Customers</strong></li>\r\n</ul>\r\n\r\n<p>* check for compatability&nbsp;</p>'),(121,19,17,'en','Mr','chris','washington','<EMAIL>','07786512082','$2y$10$4tD4wtlkqqdAcanJHjBTlu8v1XPDQonzWJyNGB5ah3GChNAVOtKGC','auckside motors ltd','1 osborne st','shildon','uk','bp auckland','dl4 1ju','kess \r\nk-tag',13.00,0,0,1,'T9khvb9C5nRVt7Dbac2l3ntjh9zYUDzHC4ZQgJWNBxWwr2DU5lZwYx9YGVhU','2020-06-10 14:07:53','2019-09-23 10:45:18','2020-06-10 14:07:53',NULL,NULL),(127,33,31,'en','Mr','CHRIS','FISHER','<EMAIL>','07595023239',NULL,'advanced performance tuning ltd','33 Collingwood','<NAME>','Lancashire','Accrington','BB5 5QP',NULL,0.00,0,0,1,NULL,'2019-09-27 12:43:33','2019-09-24 08:04:02','2019-09-27 12:51:52',NULL,NULL),(134,19,27,'en','Mr','<NAME>','Karim','<EMAIL>','0650613948','$2y$10$8EXT5frE36QkBLnoDraOYO2HgVtwf0e2BKk9dx6P6cKd8Ql2ryMkm','Good deal auto','249 avenue Jean Jaurès',NULL,'France','Lyon','69007',NULL,0.00,0,0,1,'PPhm7ZGN3GBtJqhVRnXccDjcE9yxY0qLF0JNMlhkOpSFpFnwPYkoV14FShCV','2020-01-28 09:33:35','2019-10-24 08:52:23','2020-01-28 09:33:35',NULL,NULL),(136,19,17,'en','Mr','Jonathan','Emmott','<EMAIL>','01282859468',NULL,'Emmotts of Colne','Emmotts of Colne, Unit 1 ,the Foundry, Riverside Mill, Greenfield Road','greenfield road','Choose a State','Colne','BB8 9PE',NULL,26.00,0,0,1,NULL,'2020-06-03 12:21:19','2019-12-18 13:35:22','2020-06-03 12:21:19',NULL,NULL),(139,34,NULL,'en','Mr','Rocket Performance','Rocket Performance','<EMAIL>','12345678','$2y$10$7qkJ6.BccI4hRd9Yeref/uudjMQVSnBh640.xGNSc9MIe1vSdByey','Rocket Performance','Avenida Barão Homem de Melo','3500','Brasil','BELO HORIZONTE',NULL,NULL,0.00,0,1,1,'Tkx9tI6vEHfpwyQVjJqb3MwKE01Q2s96DU8DVUYw9MBi4pgnkV17TdrJM5O6','2020-06-10 19:31:07','2020-03-09 19:33:58','2020-06-10 19:31:07',NULL,NULL),(141,34,NULL,'en','Mr','Christopher','Silva','<EMAIL>','+553125233500',NULL,'ROCKET PERFORMANCE','Avenida Barão Homem de Melo','3500','Minas Gerais','Belo Horizonte','30494270',NULL,0.00,0,0,1,NULL,NULL,'2020-03-11 21:01:06','2020-03-11 21:01:06',NULL,NULL),(142,34,32,'en','Mr','ROCKET PERFORMANCE TESTE','TESTE','<EMAIL>','5537988397225',NULL,'Mr','Avenida Barão Homem de Melo','3500','Minas Gerais','Belo Horizonte','30494270','KESS',20.00,0,0,1,NULL,'2020-03-12 17:30:03','2020-03-12 01:33:37','2020-03-12 17:30:03',NULL,NULL),(143,34,32,'en','Mr','ROCKET POA','PERFORMANCE','<EMAIL>','37988397225','$2y$10$a8uiq807/.qHjiHWkraOjua7VwHOnRfQN7OCovC35M1wiNsH6OiAK','BMS PERFORMANCE','Avenida Barão Homem de Melo','3500','Minas Gerais','Belo Horizonte','30494270',NULL,200.00,0,0,1,'t7Erbrj4OoAOPBghzvdn36lG2GxQPPOPoyv5LRIjE3JYdNu1YgAPYqTYqaIq','2020-06-10 19:31:00','2020-03-12 01:37:37','2020-06-10 19:31:00',NULL,NULL),(144,34,32,'en','Mr','ROCKET CAMPINAS','PERFORMANCE','<EMAIL>','1','$2y$10$q9xQBdmGLjmHkjhz5SNWu.TeMrBDbVsLmz537hZZz9bacZXDMw92i','ROCKET CAMPINAS','AV MAL RONDON 2136 JARDIM CHAPADAO',NULL,'BRASIL','CAMPINAS',NULL,NULL,6350.00,0,0,1,'aVR3McIJztomy6wXsGN0QYoBqaou9TXnpMtPwM7vkX136ZQuRAPaRbkoYjmi','2020-06-10 17:30:30','2020-03-12 02:24:23','2020-06-10 17:30:30',NULL,NULL),(146,34,32,'en','Mr','ROCKET SJRP','<NAME>','<EMAIL>','4','$2y$10$yxqCQm13AmHdmA5YeszOi.3CKBgj5wYZW02.A6ain6guEqV7mBCRa','LMS PERFORMANCE','2',NULL,'brasil','3',NULL,NULL,0.00,0,0,1,'vlT60YMfvsFo5XWB828tdxzfYShwRVkF7CoVcxZy0AwCiPuHBqvZIUgt1VPK','2020-04-13 18:25:44','2020-03-12 02:27:19','2020-04-13 18:25:44',NULL,NULL),(147,34,32,'en','Mr','ROCKET PARANA','PERFORMANCE','<EMAIL>','43999780772',NULL,'MOTORTECH','R. Rouxinol, 2327 - Jardim do Cafe',NULL,'BRASIL','ARAPONGAS',NULL,NULL,0.00,0,0,1,NULL,'2020-04-14 12:34:38','2020-03-12 02:28:29','2020-04-14 12:34:38',NULL,NULL),(148,34,32,'en','Mr','ROCKET ITABUNA','PERFORMANCE','<EMAIL>','222','$2y$10$U2/sxN28SE/XvLnkxYWP0ePD69S2WxKJyD9gfQz61/aiSpkuGI/by','<NAME>','1','2','BRASIL','ITABUNA',NULL,NULL,0.00,0,0,1,'DCkcfNgSCmS3xIrn7dxMcZzzS1XMsOBOdR0FpHnd8iq0bmRbgf9NDJPfXx6E','2020-03-16 20:56:53','2020-03-12 02:29:03','2020-03-16 20:56:53',NULL,NULL),(149,34,32,'en','Mr','ALISSON','NASCIMENTO','<EMAIL>','83999935001','$2y$10$nKVbwgNSGvRtZBzKmp5OBubaaq8OYMeNpUbzwROFkA93oh2dwEoqK','ROCKET PERFROMANCE JP','R. das Mangueiras, 140','R. das Mangueiras, 140','PB','<NAME>','58106-542','KESS,KTAG,MÃOS TALENTOSAS E PACIÊNCIA PQ SE FOSSE FORÇA SO TE DAVA PORRADA.',0.00,0,0,1,'QVIFOKgbOyf6BzduYGmVcLgyVk7Xkpg8YTTfrJPK25pp6DRg1MI2mrGMRt1X','2020-06-09 18:35:11','2020-03-12 13:52:57','2020-06-09 18:35:11',NULL,NULL),(173,34,32,'en','Mr','ROCKET PERFORMANCE PATOS','PATOS','<EMAIL>','1111','$2y$10$VnQrLLBk821N5Ew0uoL/IuV5tcO2fubl15eu2iyHjwYNUi2Yh1Pr2','ROCKET PERFORMANCE PATOS','Avenida Maraba 4447 Bela Vista',NULL,'BRAZIL','PATOS DE MINAS',NULL,'kess v2',3750.00,0,0,1,'VG4piw0US2CfSFiENWyxbmrojvPtnYFxpH8SuGJTs83Q9WLGdsMKR0zKxMb0','2020-06-09 22:32:23','2020-04-22 15:13:32','2020-06-09 22:32:23',NULL,NULL),(179,34,32,'en','Mr','ROCKET MOVEL MG','LUIZ','<EMAIL>','31 92112802','$2y$10$fOsAlUF7an40W9QKAQKHz.pXmWDVPfyFi28oTrH7kBXLE9K5fLkDi','ROCKET UNIDADE MOVEL MG','N',NULL,'Brasil','contagem',NULL,NULL,0.00,0,0,1,'OVStyfj7Fm0HgIBHoKWcyLaQieQnsX5ZAaDkTKVGV2ACnteh89QsB2QjC0nj','2020-05-29 15:56:51','2020-05-14 13:34:42','2020-05-29 15:56:51',NULL,NULL),(180,1,8,'en','Mr','timothy','francis','<EMAIL>','0050052279','$2y$10$phZebZ6I35lJ6Tk6pzyilefjzlPrrCceq.2Sk94ZUmS.PG0X9M8m6','turbotims','FIC crozier place','stanley','falkland islands','falklands','fiqq1zz','Kess V2',0.00,0,0,1,NULL,'2020-05-22 13:27:12','2020-05-21 18:32:32','2020-05-22 13:27:12',NULL,NULL),(182,41,NULL,'en','Mr','DS Test Company','DS Test Company','<EMAIL>',NULL,NULL,'DS Test Company','<NAME>','<NAME>','India','Jiapur','23234',NULL,0.00,0,1,1,'Pcr7POXNR04oaGhBrwWZVS11UbXS50W9DB7WE4kwUosIz7uSHyyeOlkoUDpi','2020-06-05 13:55:43','2020-06-05 13:00:39','2020-06-05 13:55:43',NULL,NULL),(183,41,33,'en','Mr','Ds','Tester','dst<EMAIL>','5456665565',NULL,'dstester','<NAME>',NULL,'India','Jaipur','12345',NULL,9.00,0,0,1,'80FI1465rnnw6aWT72iiXuUVq23n9hz5VJcBB9ghGydAIcuJa0c9Uc7a3DPA','2020-06-05 13:55:38','2020-06-05 13:05:42','2020-06-05 13:55:38',NULL,NULL); /*!40000 ALTER TABLE `users` 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-06-11 9:50:20
<reponame>jdkoren/sqlite-parser -- autoinc.test -- -- db eval { -- CREATE TABLE t2(x INTEGER PRIMARY KEY AUTOINCREMENT, y); -- INSERT INTO t2 VALUES(NULL, 1); -- CREATE TABLE t3(a INTEGER PRIMARY KEY AUTOINCREMENT, b); -- INSERT INTO t3 SELECT * FROM t2 WHERE y>1; -- -- SELECT * FROM sqlite_sequence WHERE name='t3'; -- } CREATE TABLE t2(x INTEGER PRIMARY KEY AUTOINCREMENT, y); INSERT INTO t2 VALUES(NULL, 1); CREATE TABLE t3(a INTEGER PRIMARY KEY AUTOINCREMENT, b); INSERT INTO t3 SELECT * FROM t2 WHERE y>1; SELECT * FROM sqlite_sequence WHERE name='t3';
<gh_stars>10-100 -- file:polymorphism.sql ln:217 expect:true CREATE AGGREGATE myaggn01b(*) (SFUNC = stfnp, STYPE = int4[], INITCOND = '{}')
IF EXISTS (select * from dbo.sysobjects where id = object_id(N'uspDeleteEntityServices1XRefByIdent') AND OBJECTPROPERTY(id, N'IsProcedure') = 1) DROP PROCEDURE uspDeleteEntityServices1XRefByIdent GO /* uspDeleteEntityServices1XRefByIdent * * * * */ CREATE PROCEDURE [dbo].[uspDeleteEntityServices1XRefByIdent] @intEntityIdent BIGINT, @intServices1Ident BIGINT, @intEditASUserIdent BIGINT = 0, @sdtEditDateTime SMALLDATETIME = '1/1/1900' AS SET NOCOUNT ON UPDATE EntityServices1XRef SET EditASUserIdent = @intEditASUserIdent, EditDateTime = @sdtEditDateTime, Active = 0 WHERE EntityIdent = @intEntityIdent AND Services1Ident = @intServices1Ident AND Active = 1 SELECT Ident, EntityIdent, Services1Ident, AddASUserIdent, AddDateTime, EditASUserIdent, EditDateTime, Active FROM EntityServices1XRef WITH (NOLOCK) WHERE EntityIdent = @intEntityIdent AND Active = 1 GO
-- load database prepared at previous step .read ../step2/sources.sql .mode csv .headers on -- a query to group .once nytimes_manga_bestsellers_grouped_by_title.csv SELECT DISTINCT `Primary ISBN10`, `Primary ISBN13`, `Title`, `Author` FROM nytimes_manga_best_seller_lists ORDER BY Title, Author ;
select c1.concept_id, c1.concept_name as concept_path, ar1.count_value as num_persons, 1.0*ar1.count_value / denom.count_value as percent_persons, 1.0*ar2.count_value / ar1.count_value as records_per_person from (select cast(stratum_1 as int) stratum_1, count_value from @results_database_schema.ACHILLES_results where analysis_id = 200 GROUP BY analysis_id, stratum_1, count_value) ar1 inner join (select cast(stratum_1 as int) stratum_1, count_value from @results_database_schema.ACHILLES_results where analysis_id = 201 GROUP BY analysis_id, stratum_1, count_value) ar2 on ar1.stratum_1 = ar2.stratum_1 inner join @vocab_database_schema.concept c1 on ar1.stratum_1 = c1.concept_id, (select count_value from @results_database_schema.ACHILLES_results where analysis_id = 1) denom
<filename>framework/resources/Functional/hive/hive_storage/fileformats/orc/transactional/orc_table_partitioned_clustered_bucketed.sql<gh_stars>0 select * from hive_orc_transactional.orc_table_partitioned_clustered_bucketed;
select * from {{ var('ad_set_history') }}
# --- !Ups create table assignee ( id bigint auto_increment not null, user_id bigint, project_id bigint, constraint pk_assignee primary key (id)) ; create table attachment ( id bigint auto_increment not null, name varchar(255), hash varchar(255), container_type varchar(20), mime_type varchar(255), size bigint, container_id varchar(255), created_date datetime, constraint ck_attachment_container_type check (container_type in ('ISSUE_POST','ISSUE_ASSIGNEE','ISSUE_STATE','ISSUE_CATEGORY','ISSUE_MILESTONE','ISSUE_LABEL','BOARD_POST','BOARD_CATEGORY','BOARD_NOTICE','CODE','MILESTONE','WIKI_PAGE','PROJECT_SETTING','SITE_SETTING','USER','USER_AVATAR','PROJECT','ATTACHMENT','ISSUE_COMMENT','NONISSUE_COMMENT','LABEL','PROJECT_LABELS','FORK','COMMIT_COMMENT','PULL_REQUEST','COMMIT','COMMENT_THREAD','REVIEW_COMMENT','ORGANIZATION','PROJECT_TRANSFER','ISSUE_LABEL_CATEGORY','WEBHOOK','NOT_A_RESOURCE')), constraint pk_attachment primary key (id)) row_format=compressed, key_block_size=8 ; create table comment_thread ( dtype varchar(10) not null, id bigint auto_increment not null, author_id bigint, author_login_id varchar(255), author_name varchar(255), state varchar(6), created_date datetime, pull_request_id bigint, project_id bigint, prev_commit_id varchar(255), commit_id varchar(255), path varchar(255), start_side varchar(1), start_line integer, start_column integer, end_side varchar(1), end_line integer, end_column integer, constraint ck_comment_thread_state check (state in ('OPEN','CLOSED')), constraint ck_comment_thread_start_side check (start_side in ('A','B')), constraint ck_comment_thread_end_side check (end_side in ('A','B')), constraint pk_comment_thread primary key (id)) row_format=compressed, key_block_size=8 ; create table commit_comment ( id bigint auto_increment not null, project_id bigint, path varchar(255), line integer, side varchar(1), contents longtext, created_date datetime, author_id bigint, author_login_id varchar(255), author_name varchar(255), commit_id varchar(255), constraint ck_commit_comment_side check (side in ('A','B')), constraint pk_commit_comment primary key (id)) row_format=compressed, key_block_size=8 ; create table email ( id bigint auto_increment not null, user_id bigint, email varchar(255), valid tinyint(1) default 0, token varchar(255), constraint pk_email primary key (id)) row_format=compressed, key_block_size=8 ; create table issue ( id bigint auto_increment not null, title varchar(255), body longtext, created_date datetime, updated_date datetime, author_id bigint, author_login_id varchar(255), author_name varchar(255), project_id bigint, number bigint, num_of_comments integer, state integer, due_date datetime, milestone_id bigint, assignee_id bigint, constraint ck_issue_state check (state in (0,1,2,3,4,5,6)), constraint uq_issue_1 unique (project_id,number), constraint pk_issue primary key (id)) row_format=compressed, key_block_size=8 ; create table issue_comment ( id bigint auto_increment not null, contents longtext, created_date datetime, author_id bigint, author_login_id varchar(255), author_name varchar(255), issue_id bigint, constraint pk_issue_comment primary key (id)) row_format=compressed, key_block_size=8 ; create table issue_event ( id bigint auto_increment not null, created datetime, sender_login_id varchar(255), sender_email varchar(255), issue_id bigint, event_type varchar(34), old_value longtext, new_value longtext, constraint ck_issue_event_event_type check (event_type in ('NEW_ISSUE','NEW_POSTING','NEW_PULL_REQUEST','ISSUE_STATE_CHANGED','ISSUE_ASSIGNEE_CHANGED','PULL_REQUEST_STATE_CHANGED','NEW_COMMENT','NEW_REVIEW_COMMENT','MEMBER_ENROLL_REQUEST','PULL_REQUEST_MERGED','ISSUE_REFERRED_FROM_COMMIT','PULL_REQUEST_COMMIT_CHANGED','NEW_COMMIT','PULL_REQUEST_REVIEW_STATE_CHANGED','ISSUE_BODY_CHANGED','ISSUE_REFERRED_FROM_PULL_REQUEST','REVIEW_THREAD_STATE_CHANGED','ORGANIZATION_MEMBER_ENROLL_REQUEST','COMMENT_UPDATED')), constraint pk_issue_event primary key (id)) row_format=compressed, key_block_size=8 ; create table issue_label ( id bigint auto_increment not null, category_id bigint, color varchar(255), name varchar(255), project_id bigint, constraint pk_issue_label primary key (id)) row_format=compressed, key_block_size=8 ; create table issue_label_category ( id bigint auto_increment not null, project_id bigint, name varchar(255), is_exclusive tinyint(1) default 0, constraint pk_issue_label_category primary key (id)) row_format=compressed, key_block_size=8 ; create table label ( id bigint auto_increment not null, category varchar(255), name varchar(255), constraint uq_label_1 unique (category,name), constraint pk_label primary key (id)) row_format=compressed, key_block_size=8 ; create table mention ( id bigint auto_increment not null, resource_type varchar(20), resource_id varchar(255), user_id bigint, constraint ck_mention_resource_type check (resource_type in ('ISSUE_POST','ISSUE_ASSIGNEE','ISSUE_STATE','ISSUE_CATEGORY','ISSUE_MILESTONE','ISSUE_LABEL','BOARD_POST','BOARD_CATEGORY','BOARD_NOTICE','CODE','MILESTONE','WIKI_PAGE','PROJECT_SETTING','SITE_SETTING','USER','USER_AVATAR','PROJECT','ATTACHMENT','ISSUE_COMMENT','NONISSUE_COMMENT','LABEL','PROJECT_LABELS','FORK','COMMIT_COMMENT','PULL_REQUEST','COMMIT','COMMENT_THREAD','REVIEW_COMMENT','ORGANIZATION','PROJECT_TRANSFER','ISSUE_LABEL_CATEGORY','WEBHOOK','NOT_A_RESOURCE')), constraint pk_mention primary key (id)) row_format=compressed, key_block_size=8 ; create table milestone ( id bigint auto_increment not null, title varchar(255), due_date datetime, contents longtext, state integer, project_id bigint, constraint ck_milestone_state check (state in (0,1,2,3,4,5,6)), constraint uq_milestone_1 unique (project_id,title), constraint pk_milestone primary key (id)) row_format=compressed, key_block_size=8 ; create table notification_event ( id bigint auto_increment not null, title varchar(255), sender_id bigint, created datetime, resource_type varchar(20), resource_id varchar(255), event_type varchar(34), old_value longtext, new_value longtext, constraint ck_notification_event_resource_type check (resource_type in ('ISSUE_POST','ISSUE_ASSIGNEE','ISSUE_STATE','ISSUE_CATEGORY','ISSUE_MILESTONE','ISSUE_LABEL','BOARD_POST','BOARD_CATEGORY','BOARD_NOTICE','CODE','MILESTONE','WIKI_PAGE','PROJECT_SETTING','SITE_SETTING','USER','USER_AVATAR','PROJECT','ATTACHMENT','ISSUE_COMMENT','NONISSUE_COMMENT','LABEL','PROJECT_LABELS','FORK','COMMIT_COMMENT','PULL_REQUEST','COMMIT','COMMENT_THREAD','REVIEW_COMMENT','ORGANIZATION','PROJECT_TRANSFER','ISSUE_LABEL_CATEGORY','WEBHOOK','NOT_A_RESOURCE')), constraint ck_notification_event_event_type check (event_type in ('NEW_ISSUE','NEW_POSTING','NEW_PULL_REQUEST','ISSUE_STATE_CHANGED','ISSUE_ASSIGNEE_CHANGED','PULL_REQUEST_STATE_CHANGED','NEW_COMMENT','NEW_REVIEW_COMMENT','MEMBER_ENROLL_REQUEST','PULL_REQUEST_MERGED','ISSUE_REFERRED_FROM_COMMIT','PULL_REQUEST_COMMIT_CHANGED','NEW_COMMIT','PULL_REQUEST_REVIEW_STATE_CHANGED','ISSUE_BODY_CHANGED','ISSUE_REFERRED_FROM_PULL_REQUEST','REVIEW_THREAD_STATE_CHANGED','ORGANIZATION_MEMBER_ENROLL_REQUEST','COMMENT_UPDATED')), constraint pk_notification_event primary key (id)) row_format=compressed, key_block_size=8 ; create table notification_mail ( id bigint auto_increment not null, notification_event_id bigint, constraint pk_notification_mail primary key (id)) ; create table organization ( id bigint auto_increment not null, name varchar(255), created datetime, descr varchar(255), constraint pk_organization primary key (id)) row_format=compressed, key_block_size=8 ; create table organization_user ( id bigint auto_increment not null, user_id bigint, organization_id bigint, role_id bigint, constraint pk_organization_user primary key (id)) row_format=compressed, key_block_size=8 ; create table original_email ( id bigint auto_increment not null, message_id varchar(255), resource_type varchar(20), resource_id varchar(255), handled_date datetime, constraint ck_original_email_resource_type check (resource_type in ('ISSUE_POST','ISSUE_ASSIGNEE','ISSUE_STATE','ISSUE_CATEGORY','ISSUE_MILESTONE','ISSUE_LABEL','BOARD_POST','BOARD_CATEGORY','BOARD_NOTICE','CODE','MILESTONE','WIKI_PAGE','PROJECT_SETTING','SITE_SETTING','USER','USER_AVATAR','PROJECT','ATTACHMENT','ISSUE_COMMENT','NONISSUE_COMMENT','LABEL','PROJECT_LABELS','FORK','COMMIT_COMMENT','PULL_REQUEST','COMMIT','COMMENT_THREAD','REVIEW_COMMENT','ORGANIZATION','PROJECT_TRANSFER','ISSUE_LABEL_CATEGORY','WEBHOOK','NOT_A_RESOURCE')), constraint uq_original_email_message_id unique (message_id), constraint uq_original_email_1 unique (resource_type,resource_id), constraint pk_original_email primary key (id)) row_format=compressed, key_block_size=8 ; create table posting ( id bigint auto_increment not null, title varchar(255), body longtext, created_date datetime, updated_date datetime, author_id bigint, author_login_id varchar(255), author_name varchar(255), project_id bigint, number bigint, num_of_comments integer, notice tinyint(1) default 0, readme tinyint(1) default 0, constraint uq_posting_1 unique (project_id,number), constraint pk_posting primary key (id)) row_format=compressed, key_block_size=8 ; create table posting_comment ( id bigint auto_increment not null, contents longtext, created_date datetime, author_id bigint, author_login_id varchar(255), author_name varchar(255), posting_id bigint, constraint pk_posting_comment primary key (id)) row_format=compressed, key_block_size=8 ; create table project ( id bigint auto_increment not null, name varchar(255), overview varchar(255), vcs varchar(255), siteurl varchar(255), owner varchar(255), created_date datetime, last_issue_number bigint, last_posting_number bigint, original_project_id bigint, last_pushed_date datetime, default_reviewer_count integer, is_using_reviewer_count tinyint(1) default 0, organization_id bigint, project_scope varchar(9), previous_owner_login_id varchar(255), previous_name varchar(255), previous_name_changed_time bigint, constraint ck_project_project_scope check (project_scope in ('PRIVATE','PROTECTED','PUBLIC')), constraint pk_project primary key (id)) row_format=compressed, key_block_size=8 ; create table project_menu_setting ( id bigint auto_increment not null, project_id bigint, code tinyint(1) default 0, issue tinyint(1) default 0, pull_request tinyint(1) default 0, review tinyint(1) default 0, milestone tinyint(1) default 0, board tinyint(1) default 0, constraint pk_project_menu_setting primary key (id)) ; create table project_transfer ( id bigint auto_increment not null, sender_id bigint, destination varchar(255), project_id bigint, requested datetime, confirm_key varchar(255), accepted tinyint(1) default 0, new_project_name varchar(255), constraint pk_project_transfer primary key (id)) row_format=compressed, key_block_size=8 ; create table project_user ( id bigint auto_increment not null, user_id bigint, project_id bigint, role_id bigint, constraint pk_project_user primary key (id)) ; create table project_visitation ( id bigint auto_increment not null, project_id bigint, recently_visited_projects_id bigint, visited datetime, constraint uq_project_visitation_1 unique (project_id,recently_visited_projects_id), constraint pk_project_visitation primary key (id)) ; create table property ( id bigint auto_increment not null, name varchar(25), value varchar(255), constraint ck_property_name check (name in ('MAILBOX_LAST_SEEN_UID','MAILBOX_LAST_UID_VALIDITY')), constraint pk_property primary key (id)) row_format=compressed, key_block_size=8 ; create table pull_request ( id bigint auto_increment not null, title varchar(255), body longtext, to_project_id bigint, from_project_id bigint, to_branch varchar(255), from_branch varchar(255), contributor_id bigint, receiver_id bigint, created datetime, updated datetime, received datetime, state integer, is_conflict tinyint(1) default 0, is_merging tinyint(1) default 0, last_commit_id varchar(255), merged_commit_id_from varchar(255), merged_commit_id_to varchar(255), number bigint, constraint ck_pull_request_state check (state in (0,1,2,3,4,5,6)), constraint pk_pull_request primary key (id)) row_format=compressed, key_block_size=8 ; create table pull_request_commit ( id bigint auto_increment not null, pull_request_id bigint, commit_id varchar(255), author_date datetime, created datetime, commit_message longtext, commit_short_id varchar(255), author_email varchar(255), state varchar(7), constraint ck_pull_request_commit_state check (state in ('PRIOR','CURRENT')), constraint pk_pull_request_commit primary key (id)) row_format=compressed, key_block_size=8 ; create table pull_request_event ( id bigint auto_increment not null, sender_login_id varchar(255), pull_request_id bigint, event_type varchar(34), created datetime, old_value longtext, new_value longtext, constraint ck_pull_request_event_event_type check (event_type in ('NEW_ISSUE','NEW_POSTING','NEW_PULL_REQUEST','ISSUE_STATE_CHANGED','ISSUE_ASSIGNEE_CHANGED','PULL_REQUEST_STATE_CHANGED','NEW_COMMENT','NEW_REVIEW_COMMENT','MEMBER_ENROLL_REQUEST','PULL_REQUEST_MERGED','ISSUE_REFERRED_FROM_COMMIT','PULL_REQUEST_COMMIT_CHANGED','NEW_COMMIT','PULL_REQUEST_REVIEW_STATE_CHANGED','ISSUE_BODY_CHANGED','ISSUE_REFERRED_FROM_PULL_REQUEST','REVIEW_THREAD_STATE_CHANGED','ORGANIZATION_MEMBER_ENROLL_REQUEST','COMMENT_UPDATED')), constraint pk_pull_request_event primary key (id)) row_format=compressed, key_block_size=8 ; create table project_pushed_branch ( id bigint auto_increment not null, pushed_date datetime, name varchar(255), project_id bigint, constraint pk_project_pushed_branch primary key (id)) row_format=compressed, key_block_size=8 ; create table recently_visited_projects ( id bigint auto_increment not null, user_id bigint, constraint pk_recently_visited_projects primary key (id)) ; create table review_comment ( id bigint auto_increment not null, contents longtext, created_date datetime, author_id bigint, author_login_id varchar(255), author_name varchar(255), thread_id bigint, constraint pk_review_comment primary key (id)) row_format=compressed, key_block_size=8 ; create table role ( id bigint auto_increment not null, name varchar(255), active tinyint(1) default 0, constraint pk_role primary key (id)) row_format=compressed, key_block_size=8 ; create table site_admin ( id bigint auto_increment not null, admin_id bigint, constraint pk_site_admin primary key (id)) ; create table unwatch ( id bigint auto_increment not null, user_id bigint, resource_type varchar(20), resource_id varchar(255), constraint ck_unwatch_resource_type check (resource_type in ('ISSUE_POST','ISSUE_ASSIGNEE','ISSUE_STATE','ISSUE_CATEGORY','ISSUE_MILESTONE','ISSUE_LABEL','BOARD_POST','BOARD_CATEGORY','BOARD_NOTICE','CODE','MILESTONE','WIKI_PAGE','PROJECT_SETTING','SITE_SETTING','USER','USER_AVATAR','PROJECT','ATTACHMENT','ISSUE_COMMENT','NONISSUE_COMMENT','LABEL','PROJECT_LABELS','FORK','COMMIT_COMMENT','PULL_REQUEST','COMMIT','COMMENT_THREAD','REVIEW_COMMENT','ORGANIZATION','PROJECT_TRANSFER','ISSUE_LABEL_CATEGORY','WEBHOOK','NOT_A_RESOURCE')), constraint pk_unwatch primary key (id)) row_format=compressed, key_block_size=8 ; create table n4user ( id bigint auto_increment not null, name varchar(255), login_id varchar(255), password varchar(255), password_salt varchar(255), email varchar(255), remember_me tinyint(1) default 0, state varchar(7), last_state_modified_date datetime, created_date datetime, lang varchar(255), constraint ck_n4user_state check (state in ('ACTIVE','LOCKED','DELETED')), constraint pk_n4user primary key (id)) row_format=compressed, key_block_size=8 ; create table user_project_notification ( id bigint auto_increment not null, user_id bigint, project_id bigint, notification_type varchar(34), allowed tinyint(1) default 0, constraint ck_user_project_notification_notification_type check (notification_type in ('NEW_ISSUE','NEW_POSTING','NEW_PULL_REQUEST','ISSUE_STATE_CHANGED','ISSUE_ASSIGNEE_CHANGED','PULL_REQUEST_STATE_CHANGED','NEW_COMMENT','NEW_REVIEW_COMMENT','MEMBER_ENROLL_REQUEST','PULL_REQUEST_MERGED','ISSUE_REFERRED_FROM_COMMIT','PULL_REQUEST_COMMIT_CHANGED','NEW_COMMIT','PULL_REQUEST_REVIEW_STATE_CHANGED','ISSUE_BODY_CHANGED','ISSUE_REFERRED_FROM_PULL_REQUEST','REVIEW_THREAD_STATE_CHANGED','ORGANIZATION_MEMBER_ENROLL_REQUEST','COMMENT_UPDATED')), constraint uq_user_project_notification_1 unique (project_id,user_id,notification_type), constraint pk_user_project_notification primary key (id)) row_format=compressed, key_block_size=8 ; create table watch ( id bigint auto_increment not null, user_id bigint, resource_type varchar(20), resource_id varchar(255), constraint ck_watch_resource_type check (resource_type in ('ISSUE_POST','ISSUE_ASSIGNEE','ISSUE_STATE','ISSUE_CATEGORY','ISSUE_MILESTONE','ISSUE_LABEL','BOARD_POST','BOARD_CATEGORY','BOARD_NOTICE','CODE','MILESTONE','WIKI_PAGE','PROJECT_SETTING','SITE_SETTING','USER','USER_AVATAR','PROJECT','ATTACHMENT','ISSUE_COMMENT','NONISSUE_COMMENT','LABEL','PROJECT_LABELS','FORK','COMMIT_COMMENT','PULL_REQUEST','COMMIT','COMMENT_THREAD','REVIEW_COMMENT','ORGANIZATION','PROJECT_TRANSFER','ISSUE_LABEL_CATEGORY','WEBHOOK','NOT_A_RESOURCE')), constraint pk_watch primary key (id)) row_format=compressed, key_block_size=8 ; create table webhook ( id bigint auto_increment not null, project_id bigint, payload_url varchar(2000), secret varchar(250), created_at datetime, constraint pk_webhook primary key (id)) row_format=compressed, key_block_size=8 ; create table comment_thread_n4user ( comment_thread_id bigint not null, n4user_id bigint not null, constraint pk_comment_thread_n4user primary key (comment_thread_id, n4user_id)) ; create table issue_issue_label ( issue_id bigint not null, issue_label_id bigint not null, constraint pk_issue_issue_label primary key (issue_id, issue_label_id)) ; create table issue_voter ( issue_id bigint not null, user_id bigint not null, constraint pk_issue_voter primary key (issue_id, user_id)) ; create table issue_comment_voter ( issue_comment_id bigint not null, user_id bigint not null, constraint pk_issue_comment_voter primary key (issue_comment_id, user_id)) ; create table notification_event_n4user ( notification_event_id bigint not null, n4user_id bigint not null, constraint pk_notification_event_n4user primary key (notification_event_id, n4user_id)) ; create table posting_issue_label ( posting_id bigint not null, issue_label_id bigint not null, constraint pk_posting_issue_label primary key (posting_id, issue_label_id)) ; create table project_label ( project_id bigint not null, label_id bigint not null, constraint pk_project_label primary key (project_id, label_id)) ; create table pull_request_reviewers ( pull_request_id bigint not null, user_id bigint not null, constraint pk_pull_request_reviewers primary key (pull_request_id, user_id)) ; create table user_enrolled_project ( user_id bigint not null, project_id bigint not null, constraint pk_user_enrolled_project primary key (user_id, project_id)) ; create table user_enrolled_organization ( user_id bigint not null, organization_id bigint not null, constraint pk_user_enrolled_organization primary key (user_id, organization_id)) ; alter table assignee add constraint fk_assignee_user_1 foreign key (user_id) references n4user (id) on delete restrict on update restrict; create index ix_assignee_user_1 on assignee (user_id); alter table assignee add constraint fk_assignee_project_2 foreign key (project_id) references project (id) on delete restrict on update restrict; create index ix_assignee_project_2 on assignee (project_id); alter table comment_thread add constraint fk_comment_thread_pullRequest_3 foreign key (pull_request_id) references pull_request (id) on delete restrict on update restrict; create index ix_comment_thread_pullRequest_3 on comment_thread (pull_request_id); alter table comment_thread add constraint fk_comment_thread_project_4 foreign key (project_id) references project (id) on delete restrict on update restrict; create index ix_comment_thread_project_4 on comment_thread (project_id); alter table commit_comment add constraint fk_commit_comment_project_5 foreign key (project_id) references project (id) on delete restrict on update restrict; create index ix_commit_comment_project_5 on commit_comment (project_id); alter table email add constraint fk_email_user_6 foreign key (user_id) references n4user (id) on delete restrict on update restrict; create index ix_email_user_6 on email (user_id); alter table issue add constraint fk_issue_project_7 foreign key (project_id) references project (id) on delete restrict on update restrict; create index ix_issue_project_7 on issue (project_id); alter table issue add constraint fk_issue_milestone_8 foreign key (milestone_id) references milestone (id) on delete restrict on update restrict; create index ix_issue_milestone_8 on issue (milestone_id); alter table issue add constraint fk_issue_assignee_9 foreign key (assignee_id) references assignee (id) on delete restrict on update restrict; create index ix_issue_assignee_9 on issue (assignee_id); alter table issue_comment add constraint fk_issue_comment_issue_10 foreign key (issue_id) references issue (id) on delete restrict on update restrict; create index ix_issue_comment_issue_10 on issue_comment (issue_id); alter table issue_event add constraint fk_issue_event_issue_11 foreign key (issue_id) references issue (id) on delete restrict on update restrict; create index ix_issue_event_issue_11 on issue_event (issue_id); alter table issue_label add constraint fk_issue_label_category_12 foreign key (category_id) references issue_label_category (id) on delete restrict on update restrict; create index ix_issue_label_category_12 on issue_label (category_id); alter table issue_label add constraint fk_issue_label_project_13 foreign key (project_id) references project (id) on delete restrict on update restrict; create index ix_issue_label_project_13 on issue_label (project_id); alter table issue_label_category add constraint fk_issue_label_category_project_14 foreign key (project_id) references project (id) on delete restrict on update restrict; create index ix_issue_label_category_project_14 on issue_label_category (project_id); alter table mention add constraint fk_mention_user_15 foreign key (user_id) references n4user (id) on delete restrict on update restrict; create index ix_mention_user_15 on mention (user_id); alter table milestone add constraint fk_milestone_project_16 foreign key (project_id) references project (id) on delete restrict on update restrict; create index ix_milestone_project_16 on milestone (project_id); alter table notification_mail add constraint fk_notification_mail_notificationEvent_17 foreign key (notification_event_id) references notification_event (id) on delete restrict on update restrict; create index ix_notification_mail_notificationEvent_17 on notification_mail (notification_event_id); alter table organization_user add constraint fk_organization_user_user_18 foreign key (user_id) references n4user (id) on delete restrict on update restrict; create index ix_organization_user_user_18 on organization_user (user_id); alter table organization_user add constraint fk_organization_user_organization_19 foreign key (organization_id) references organization (id) on delete restrict on update restrict; create index ix_organization_user_organization_19 on organization_user (organization_id); alter table organization_user add constraint fk_organization_user_role_20 foreign key (role_id) references role (id) on delete restrict on update restrict; create index ix_organization_user_role_20 on organization_user (role_id); alter table posting add constraint fk_posting_project_21 foreign key (project_id) references project (id) on delete restrict on update restrict; create index ix_posting_project_21 on posting (project_id); alter table posting_comment add constraint fk_posting_comment_posting_22 foreign key (posting_id) references posting (id) on delete restrict on update restrict; create index ix_posting_comment_posting_22 on posting_comment (posting_id); alter table project add constraint fk_project_originalProject_23 foreign key (original_project_id) references project (id) on delete restrict on update restrict; create index ix_project_originalProject_23 on project (original_project_id); alter table project add constraint fk_project_organization_24 foreign key (organization_id) references organization (id) on delete restrict on update restrict; create index ix_project_organization_24 on project (organization_id); alter table project_menu_setting add constraint fk_project_menu_setting_project_25 foreign key (project_id) references project (id) on delete restrict on update restrict; create index ix_project_menu_setting_project_25 on project_menu_setting (project_id); alter table project_transfer add constraint fk_project_transfer_sender_26 foreign key (sender_id) references n4user (id) on delete restrict on update restrict; create index ix_project_transfer_sender_26 on project_transfer (sender_id); alter table project_transfer add constraint fk_project_transfer_project_27 foreign key (project_id) references project (id) on delete restrict on update restrict; create index ix_project_transfer_project_27 on project_transfer (project_id); alter table project_user add constraint fk_project_user_user_28 foreign key (user_id) references n4user (id) on delete restrict on update restrict; create index ix_project_user_user_28 on project_user (user_id); alter table project_user add constraint fk_project_user_project_29 foreign key (project_id) references project (id) on delete restrict on update restrict; create index ix_project_user_project_29 on project_user (project_id); alter table project_user add constraint fk_project_user_role_30 foreign key (role_id) references role (id) on delete restrict on update restrict; create index ix_project_user_role_30 on project_user (role_id); alter table project_visitation add constraint fk_project_visitation_project_31 foreign key (project_id) references project (id) on delete restrict on update restrict; create index ix_project_visitation_project_31 on project_visitation (project_id); alter table project_visitation add constraint fk_project_visitation_recentlyVisitedProjects_32 foreign key (recently_visited_projects_id) references recently_visited_projects (id) on delete restrict on update restrict; create index ix_project_visitation_recentlyVisitedProjects_32 on project_visitation (recently_visited_projects_id); alter table pull_request add constraint fk_pull_request_toProject_33 foreign key (to_project_id) references project (id) on delete restrict on update restrict; create index ix_pull_request_toProject_33 on pull_request (to_project_id); alter table pull_request add constraint fk_pull_request_fromProject_34 foreign key (from_project_id) references project (id) on delete restrict on update restrict; create index ix_pull_request_fromProject_34 on pull_request (from_project_id); alter table pull_request add constraint fk_pull_request_contributor_35 foreign key (contributor_id) references n4user (id) on delete restrict on update restrict; create index ix_pull_request_contributor_35 on pull_request (contributor_id); alter table pull_request add constraint fk_pull_request_receiver_36 foreign key (receiver_id) references n4user (id) on delete restrict on update restrict; create index ix_pull_request_receiver_36 on pull_request (receiver_id); alter table pull_request_commit add constraint fk_pull_request_commit_pullRequest_37 foreign key (pull_request_id) references pull_request (id) on delete restrict on update restrict; create index ix_pull_request_commit_pullRequest_37 on pull_request_commit (pull_request_id); alter table pull_request_event add constraint fk_pull_request_event_pullRequest_38 foreign key (pull_request_id) references pull_request (id) on delete restrict on update restrict; create index ix_pull_request_event_pullRequest_38 on pull_request_event (pull_request_id); alter table project_pushed_branch add constraint fk_project_pushed_branch_project_39 foreign key (project_id) references project (id) on delete restrict on update restrict; create index ix_project_pushed_branch_project_39 on project_pushed_branch (project_id); alter table recently_visited_projects add constraint fk_recently_visited_projects_user_40 foreign key (user_id) references n4user (id) on delete restrict on update restrict; create index ix_recently_visited_projects_user_40 on recently_visited_projects (user_id); alter table review_comment add constraint fk_review_comment_thread_41 foreign key (thread_id) references comment_thread (id) on delete restrict on update restrict; create index ix_review_comment_thread_41 on review_comment (thread_id); alter table site_admin add constraint fk_site_admin_admin_42 foreign key (admin_id) references n4user (id) on delete restrict on update restrict; create index ix_site_admin_admin_42 on site_admin (admin_id); alter table unwatch add constraint fk_unwatch_user_43 foreign key (user_id) references n4user (id) on delete restrict on update restrict; create index ix_unwatch_user_43 on unwatch (user_id); alter table user_project_notification add constraint fk_user_project_notification_user_44 foreign key (user_id) references n4user (id) on delete restrict on update restrict; create index ix_user_project_notification_user_44 on user_project_notification (user_id); alter table user_project_notification add constraint fk_user_project_notification_project_45 foreign key (project_id) references project (id) on delete restrict on update restrict; create index ix_user_project_notification_project_45 on user_project_notification (project_id); alter table watch add constraint fk_watch_user_46 foreign key (user_id) references n4user (id) on delete restrict on update restrict; create index ix_watch_user_46 on watch (user_id); alter table webhook add constraint fk_webhook_project_47 foreign key (project_id) references project (id) on delete restrict on update restrict; create index ix_webhook_project_47 on webhook (project_id); alter table comment_thread_n4user add constraint fk_comment_thread_n4user_comment_thread_01 foreign key (comment_thread_id) references comment_thread (id) on delete restrict on update restrict; alter table comment_thread_n4user add constraint fk_comment_thread_n4user_n4user_02 foreign key (n4user_id) references n4user (id) on delete restrict on update restrict; alter table issue_issue_label add constraint fk_issue_issue_label_issue_01 foreign key (issue_id) references issue (id) on delete restrict on update restrict; alter table issue_issue_label add constraint fk_issue_issue_label_issue_label_02 foreign key (issue_label_id) references issue_label (id) on delete restrict on update restrict; alter table issue_voter add constraint fk_issue_voter_issue_01 foreign key (issue_id) references issue (id) on delete restrict on update restrict; alter table issue_voter add constraint fk_issue_voter_n4user_02 foreign key (user_id) references n4user (id) on delete restrict on update restrict; alter table issue_comment_voter add constraint fk_issue_comment_voter_issue_comment_01 foreign key (issue_comment_id) references issue_comment (id) on delete restrict on update restrict; alter table issue_comment_voter add constraint fk_issue_comment_voter_n4user_02 foreign key (user_id) references n4user (id) on delete restrict on update restrict; alter table notification_event_n4user add constraint fk_notification_event_n4user_notification_event_01 foreign key (notification_event_id) references notification_event (id) on delete restrict on update restrict; alter table notification_event_n4user add constraint fk_notification_event_n4user_n4user_02 foreign key (n4user_id) references n4user (id) on delete restrict on update restrict; alter table posting_issue_label add constraint fk_posting_issue_label_posting_01 foreign key (posting_id) references posting (id) on delete restrict on update restrict; alter table posting_issue_label add constraint fk_posting_issue_label_issue_label_02 foreign key (issue_label_id) references issue_label (id) on delete restrict on update restrict; alter table project_label add constraint fk_project_label_project_01 foreign key (project_id) references project (id) on delete restrict on update restrict; alter table project_label add constraint fk_project_label_label_02 foreign key (label_id) references label (id) on delete restrict on update restrict; alter table pull_request_reviewers add constraint fk_pull_request_reviewers_pull_request_01 foreign key (pull_request_id) references pull_request (id) on delete restrict on update restrict; alter table pull_request_reviewers add constraint fk_pull_request_reviewers_n4user_02 foreign key (user_id) references n4user (id) on delete restrict on update restrict; alter table user_enrolled_project add constraint fk_user_enrolled_project_n4user_01 foreign key (user_id) references n4user (id) on delete restrict on update restrict; alter table user_enrolled_project add constraint fk_user_enrolled_project_project_02 foreign key (project_id) references project (id) on delete restrict on update restrict; alter table user_enrolled_organization add constraint fk_user_enrolled_organization_n4user_01 foreign key (user_id) references n4user (id) on delete restrict on update restrict; alter table user_enrolled_organization add constraint fk_user_enrolled_organization_organization_02 foreign key (organization_id) references organization (id) on delete restrict on update restrict; # --- !Downs SET FOREIGN_KEY_CHECKS=0; drop table assignee; drop table attachment; drop table comment_thread; drop table commit_comment; drop table email; drop table issue; drop table issue_issue_label; drop table issue_voter; drop table issue_comment; drop table issue_comment_voter; drop table issue_event; drop table issue_label; drop table posting_issue_label; drop table issue_label_category; drop table label; drop table project_label; drop table mention; drop table milestone; drop table notification_event; drop table notification_event_n4user; drop table notification_mail; drop table organization; drop table user_enrolled_organization; drop table organization_user; drop table original_email; drop table posting; drop table posting_comment; drop table project; drop table user_enrolled_project; drop table project_menu_setting; drop table project_transfer; drop table project_user; drop table project_visitation; drop table property; drop table pull_request; drop table pull_request_reviewers; drop table pull_request_commit; drop table pull_request_event; drop table project_pushed_branch; drop table recently_visited_projects; drop table review_comment; drop table role; drop table site_admin; drop table unwatch; drop table n4user; drop table user_project_notification; drop table watch; drop table webhook; SET FOREIGN_KEY_CHECKS=1;
<gh_stars>100-1000 PRINT ALERTS FROM BEGINNING LIMIT 3;
INSERT INTO "_selfservice_errors_tmp" (id, errors, seen_at, was_seen, created_at, updated_at) SELECT id, errors, seen_at, was_seen, created_at, updated_at FROM "selfservice_errors";
<gh_stars>0 DROP TABLE IF EXISTS foo; CREATE TABLE foo AS SELECT i as a, i+1 as b from generate_series(1,10)i;
COMMENT ON EVENT TRIGGER abort_ddl IS 'Aborts all DDL commands';
<gh_stars>0 CREATE PROCEDURE [Persistent_assignment].RestoreData AS DELETE FROM [Persistent_assignment].DS_1 INSERT INTO [Persistent_assignment].DS_1 VALUES (2013, 'Belgium', 5, 5) INSERT INTO [Persistent_assignment].DS_1 VALUES (2013, 'Denmark', 2, 10) INSERT INTO [Persistent_assignment].DS_1 VALUES (2013, 'France', 3, 12) INSERT INTO [Persistent_assignment].DS_1 VALUES (2013, 'Spain', 4, 20) GO
-- CREATE USER test WITH SUPERUSER PASSWORD '<PASSWORD>'; -- CREATE DATABASE test WITH OWNER test;
CREATE TABLE [dbo].[TBVenue_Similarity] ( [id] INT NOT NULL PRIMARY KEY IDENTITY, [venue_1] INT NOT NULL, [venue_2] INT NOT NULL, [similarity] DECIMAL(6,5) NOT NULL, [distance] DECIMAL(18, 13) NOT NULL, CONSTRAINT [FK_TBVenue_1] FOREIGN KEY ([venue_1]) REFERENCES [TBVenue]([id]), CONSTRAINT [FK_TBVenue_2] FOREIGN KEY ([venue_2]) REFERENCES [TBVenue]([id]) )
-- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Waktu pembuatan: 21 Agu 2021 pada 12.38 -- Versi server: 10.4.14-MariaDB -- Versi PHP: 7.4.9 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: `db_surat` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `penduduk` -- CREATE TABLE `penduduk` ( `id_penduduk` int(11) NOT NULL, `no_ktp` varchar(20) NOT NULL, `nama` varchar(60) NOT NULL, `agama` enum('','Islam','Kristen','Hindu','Budha','Lainnya') NOT NULL, `tempat_lahir` varchar(30) NOT NULL, `tgl_lahir` date NOT NULL, `jk` enum('','Laki-Laki','Perempuan','Lainnya') NOT NULL, `golongan_darah` varchar(3) NOT NULL, `warga_negara` enum('','WNI','WNA') NOT NULL, `pendidikan` enum('','SD','SMP','SMA/SMK','S1','S2','S3') NOT NULL, `pekerjaan` varchar(30) NOT NULL, `status` enum('','Lajang','Kawin','Janda','Duda') NOT NULL, `alamat` varchar(225) NOT NULL, `photo` varchar(225) NOT NULL, `password` varchar(225) NOT NULL, `level` varchar(10) NOT NULL DEFAULT 'warga' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `penduduk` -- INSERT INTO `penduduk` (`id_penduduk`, `no_ktp`, `nama`, `agama`, `tempat_lahir`, `tgl_lahir`, `jk`, `golongan_darah`, `warga_negara`, `pendidikan`, `pekerjaan`, `status`, `alamat`, `photo`, `password`, `level`) VALUES (6, '1234567', '<NAME>', 'Islam', 'Bandung', '2021-07-02', 'Laki-Laki', 'B', 'WNI', 'S1', 'Pengusaha', 'Lajang', 'jl. Suka Ngoding', 'images_(1)2.jpg', '<PASSWORD>', 'warga'), (7, '123456', 'Melinda', 'Islam', 'Bandung', '2021-07-22', 'Perempuan', 'A', 'WNI', 'S1', 'Pengusaha', 'Kawin', 'Jl. Tes aja', '', '<PASSWORD>', 'warga'), (8, '123', 'Warga1', 'Islam', '', '0000-00-00', 'Laki-Laki', '', 'WNI', 'SD', '', 'Lajang', '', '', '4<PASSWORD>', 'warga'), (9, '1234', 'warga2', 'Islam', '', '0000-00-00', 'Perempuan', '', '', 'SMA/SMK', '', '', '', '', '4ab7d9d3a2a915753862aa89e6ff319c', 'warga'), (10, '12345678910', 'sujono', '', '', '0000-00-00', '', '', '', '', '', '', '', '', 'ee11cbb19052e40b07aac0ca060c23ee', 'warga'), (13, '1', 'Dilan', '', '', '0000-00-00', '', '', '', '', '', '', '', '', '4ab7d9d3a2a915753862aa89e6ff319c', 'warga'); -- -------------------------------------------------------- -- -- Struktur dari tabel `surat` -- CREATE TABLE `surat` ( `id_surat` int(11) NOT NULL, `id_penduduk` int(11) NOT NULL, `surat` varchar(30) NOT NULL, `nama` varchar(60) NOT NULL, `no_ktp` varchar(20) NOT NULL, `tempat_lahir` varchar(30) NOT NULL, `tgl_lahir` date NOT NULL, `jk` enum('Laki-Laki','Perempuan') NOT NULL, `pendidikan` varchar(50) NOT NULL, `agama` varchar(50) NOT NULL, `pekerjaan` varchar(50) NOT NULL, `status` varchar(40) NOT NULL, `alamat` varchar(300) NOT NULL, `ket` varchar(500) NOT NULL, `nama_ibu` varchar(60) NOT NULL, `nama_ayah` varchar(60) NOT NULL, `umur` varchar(10) NOT NULL, `hari` varchar(25) NOT NULL, `created_at` date NOT NULL, `updated_at` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `surat` -- INSERT INTO `surat` (`id_surat`, `id_penduduk`, `surat`, `nama`, `no_ktp`, `tempat_lahir`, `tgl_lahir`, `jk`, `pendidikan`, `agama`, `pekerjaan`, `status`, `alamat`, `ket`, `nama_ibu`, `nama_ayah`, `umur`, `hari`, `created_at`, `updated_at`) VALUES (1, 0, 'SURAT KETERANGAN', 'Karyawan 1', '1234567', 'Bandung', '2021-08-12', 'Laki-Laki', 'S2', 'Islam', 'Pengusaha', 'Lajang', 'jl. Suka Ngoding. asik', 'tes aja ini mah ya.. data dumy', '', '', '', '', '2021-08-14', '0000-00-00'), (2, 0, 'SURAT KETERANGAN', 'Asamurat', '123456', 'Bandung', '2021-09-02', '', 'SLTA', 'Islam', 'Pengusaha', 'Kawin', 'kdokdwodkwok', 'sdcsocjosdjkwo', '', '', '', '', '2021-08-12', '0000-00-00'), (3, 0, 'SURAT KELAHIRAN', 'test surat kelahiran', '', 'Bandung', '2021-08-12', 'Laki-Laki', '', '', '', '', 'jl. Suka ngoding, bandung', 'Telah lahir anak laki-laki yang baik dan pintar', 'sutisem', 'sujono', '', '', '2021-08-12', '0000-00-00'), (4, 0, 'SURAT KETERANGAN', 'Sujono', '12345678910', 'Bandung', '2021-08-12', 'Laki-Laki', 'S1', 'Islam', 'Pengusaha', 'Lajang', 'jskkkjskajka', 'skakjsoajoasj', '', '', '', '', '2021-08-12', '0000-00-00'), (5, 0, 'SURAT KETERANGAN', 'Rudi Firmansyah', '1234567', 'Bandung', '2021-08-14', 'Laki-Laki', 'SLTA', 'Islam', 'Pengusaha', 'Kawin', 'wwddwdwwd', 'fwsfwssws', '', '', '', '', '2021-08-14', '0000-00-00'), (6, 6, 'SURAT KETERANGAN', 'Rudi Firmansyah', '1234567', 'Bandung', '2021-08-13', 'Laki-Laki', 'SLTA', 'Islam', 'Pengusaha', 'Kawin', 'dwdwdwdwdwd', 'Test update', '', '', '', '', '2021-08-14', '0000-00-00'), (7, 0, 'SURAT KETERANGAN', 'Karyawan 1', '1234567', 'Bandung', '2021-08-14', '', 'SLTP', 'Islam', 'Pengusaha', 'Kawin', 'sxsxsxxs', 'scscwcwcw', '', '', '', '', '2021-08-14', '0000-00-00'), (8, 6, 'SURAT KELAHIRAN', 'test update', '', 'Bandung', '2021-08-14', 'Perempuan', '', '', '', '', 'djidjiodjodj', 'viscj', 'sutisem', 'Rudi', '', '', '2021-08-14', '0000-00-00'), (9, 6, 'SURAT KEMATIAN', 'Karyawan 1221', '', 'Jakarata', '2021-08-14', 'Laki-Laki', '', '', '', '', 'Jl. Tarogong', 'Sakit', '', '', '23', 'Senin', '2021-08-14', '0000-00-00'), (10, 0, '<NAME>', 'Karyawan 3', '', 'Jakarata', '2021-08-20', 'Laki-Laki', '', '', '', '', 'skaoskaoska', 'aaasasaqsa', '', '', '23', 'Senin', '2021-08-14', '0000-00-00'), (12, 7, '<NAME>', 'Melinda', '123456', 'Bandung', '2021-08-04', 'Perempuan', 'SLTA', 'Islam', 'Pengusaha', '-- Pilih Status --', 'sklsksk', 'CMOLCSCSCPK', '', '', '', '', '2021-08-14', '0000-00-00'), (13, 0, '<NAME>', 'Karyawan 6', '1234567891011', 'Bandung', '2021-08-13', 'Laki-Laki', 'SD', 'Islam', 'Pengusaha', '-- Pilih Status --', 'wskwoskosk', 'doxjwoswosk', '', '', '', '', '2021-08-14', '0000-00-00'), (14, 0, '<NAME>', 'testn 123', '', 'Jakarata', '2021-08-03', 'Laki-Laki', '', '', '', '', 'jdjdwjw', 'jdejdowjd', '', '', '4', 'Selasa', '2021-08-14', '0000-00-00'), (16, 7, '<NAME>', 'Melinda', '123456', 'Bandung', '2021-08-20', 'Perempuan', 'SLTA', 'Islam', 'Pengusaha', 'Lajang', 'skmskxk', 'skcnskcnsk', '', '', '', '', '2021-08-14', '0000-00-00'), (19, 13, '<NAME>', 'Dilan', '1', 'Tasikmalaya', '2021-08-12', 'Laki-Laki', 'S1', 'Islam', 'Pengusaha', 'Lajang', 'josjosj', '<PASSWORD>', '', '', '', '', '2021-08-14', '0000-00-00'); -- -------------------------------------------------------- -- -- Struktur dari tabel `users` -- CREATE TABLE `users` ( `id_user` int(11) NOT NULL, `username` varchar(30) NOT NULL, `password` varchar(200) NOT NULL, `nama` varchar(50) NOT NULL, `photo` varchar(225) NOT NULL, `level` varchar(10) NOT NULL DEFAULT 'admin', `created_at` date NOT NULL, `updated_at` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `users` -- INSERT INTO `users` (`id_user`, `username`, `password`, `nama`, `photo`, `level`, `created_at`, `updated_at`) VALUES (2, 'admin01', '<PASSWORD>', '<PASSWORD>', 'testimonials-1.jpg', 'admin', '2021-07-29', '2021-07-29'), (3, 'admin', '<PASSWORD>', 'Udin Sedunia', '', 'admin', '2021-07-04', '2021-07-29'); -- -- Indexes for dumped tables -- -- -- Indeks untuk tabel `penduduk` -- ALTER TABLE `penduduk` ADD PRIMARY KEY (`id_penduduk`); -- -- Indeks untuk tabel `surat` -- ALTER TABLE `surat` ADD PRIMARY KEY (`id_surat`); -- -- Indeks untuk tabel `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id_user`); -- -- AUTO_INCREMENT untuk tabel yang dibuang -- -- -- AUTO_INCREMENT untuk tabel `penduduk` -- ALTER TABLE `penduduk` MODIFY `id_penduduk` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT untuk tabel `surat` -- ALTER TABLE `surat` MODIFY `id_surat` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20; -- -- AUTO_INCREMENT untuk tabel `users` -- ALTER TABLE `users` MODIFY `id_user` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; 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>db/seeds.sql<gh_stars>0 INSERT INTO `burgers_db`.`burgers` (`burger_name`, `devoured`) VALUES ('Jungle Burger', 'false'); INSERT INTO `burgers_db`.`burgers` (`burger_name`, `devoured`) VALUES ('Hot Dog Burger', 'false'); INSERT INTO `burgers_db`.`burgers` (`burger_name`, `devoured`) VALUES ('Sentient Burger', 'false');
<reponame>ranchimall/exchange-market /* Node data */ TRUNCATE _backup; TRUNCATE _backupCache; TRUNCATE AuditTrade; TRUNCATE BuyOrder; TRUNCATE Distributors; TRUNCATE InputFLO; TRUNCATE InputToken; TRUNCATE OutputFLO; TRUNCATE OutputToken; TRUNCATE PriceHistory; TRUNCATE RequestLog; TRUNCATE SellOrder; TRUNCATE UserBalance; TRUNCATE UserSession; TRUNCATE UserTag; TRUNCATE TransferTransactions; TRUNCATE TradeTransactions; TRUNCATE SellChips; /* Blockchain data */ TRUNCATE LastTx; TRUNCATE NodeList; TRUNCATE TrustedList; DELETE FROM TagList; DELETE FROM AssetList;
-- phpMyAdmin SQL Dump -- version 4.8.2 -- https://www.phpmyadmin.net/ -- -- Host: 1172.16.17.32 -- Waktu pembuatan: 23 Apr 2020 pada 22.13 -- Versi server: 10.1.34-MariaDB -- Versi PHP: 7.2.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: `baju` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `barang` -- CREATE TABLE `barang` ( `id` int(11) NOT NULL, `id_jenis` int(11) NOT NULL, `merk` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `ukuran` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `foto` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `keterangan` 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; -- -- Dumping data untuk tabel `barang` -- INSERT INTO `barang` (`id`, `id_jenis`, `merk`, `ukuran`, `foto`, `keterangan`, `created_at`, `updated_at`) VALUES (3, 2, 'Adidas', 'M', '-', 'Warna biru', NULL, NULL), (4, 4, 'Nevada', 'S', '-', 'Warna merah', NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `detail_transaksi` -- CREATE TABLE `detail_transaksi` ( `id` int(11) NOT NULL, `id_transaksi` int(11) NOT NULL, `id_jenis` int(11) NOT NULL, `qty` int(11) NOT NULL, `subtotal` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `detail_transaksi` -- INSERT INTO `detail_transaksi` (`id`, `id_transaksi`, `id_jenis`, `qty`, `subtotal`, `created_at`, `updated_at`) VALUES (3, 3, 2, 2, 200000, NULL, NULL), (5, 5, 4, 6, 780000, NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `jenis` -- CREATE TABLE `jenis` ( `id` int(11) NOT NULL, `nama_jenis` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `harga` int(11) NOT NULL, `stok` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `jenis` -- INSERT INTO `jenis` (`id`, `nama_jenis`, `harga`, `stok`, `created_at`, `updated_at`) VALUES (2, 'Rok', 100000, 6, NULL, NULL), (4, 'Outer', 130000, 15, NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `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; -- -- Dumping data untuk tabel `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2020_04_22_042746_create_table_petugas', 1), (4, '2020_04_22_042846_create_table_pembeli', 1), (5, '2020_04_22_042904_create_table_barang', 1), (6, '2020_04_22_042920_create_table_jenis', 1), (7, '2020_04_22_042936_create_table_transaksi', 1), (8, '2020_04_22_042956_create_table_detail_transaksi', 1); -- -------------------------------------------------------- -- -- Struktur dari tabel `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; -- -------------------------------------------------------- -- -- Struktur dari tabel `pembeli` -- CREATE TABLE `pembeli` ( `id` int(11) NOT NULL, `nama_pembeli` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `alamat` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `telp` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `username` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `foto` varchar(255) 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 untuk tabel `pembeli` -- INSERT INTO `pembeli` (`id`, `nama_pembeli`, `alamat`, `telp`, `username`, `foto`, `created_at`, `updated_at`) VALUES (2, 'Sigit', 'Jakarta', '081222333555', 'sigits', '-', NULL, NULL), (3, '<NAME>', 'Daleman', '081222111111', 'aulias', '-', NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `petugas` -- CREATE TABLE `petugas` ( `id` int(11) NOT NULL, `nama_petugas` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `alamat` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `telp` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `level` enum('admin','petugas') COLLATE utf8mb4_unicode_ci NOT NULL, `username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(255) 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 untuk tabel `petugas` -- INSERT INTO `petugas` (`id`, `nama_petugas`, `alamat`, `telp`, `level`, `username`, `password`, `created_at`, `updated_at`) VALUES (1, 'Niansa Sixty Avilla', 'Ngariboyo', '089765432111', 'admin', 'niansa', '$2y$10$v1ZoYzSbFkeajX.OFJgyWeNrJXNzZag1XlCDv3OqqfCERQEOGAY2.', '2020-04-22 18:55:34', '2020-04-22 18:55:34'), (2, 'Chatlea', 'Tulungagung', '087654333222', 'petugas', 'cinta', '$2y$10$q1zqlzkIbWwlAqJvUVcfme1QFw61hmRxoDoISYwPNWIjxgVnoIDpq', '2020-04-23 02:21:16', '2020-04-23 02:21:16'), (3, 'Naura', 'Magetan', '<PASSWORD>', 'petugas', 'naura', '$2y$10$hF03CjKtrg2uR/.ajj/6Muey.rSw2Nx.K96P/GLCl.1C24Aegbw52', '2020-04-23 04:55:15', '2020-04-23 04:55:15'), (4, 'Serli', 'Mojokerto', '089000000000', 'admin', 'serli', '$2y$10$Enp7ymrijUOu4UG4T5ZWteM5MqjZrMOCdb2aJriCqLtW3kXcjblRG', '2020-04-23 05:21:29', '2020-04-23 05:21:29'); -- -------------------------------------------------------- -- -- Struktur dari tabel `transaksi` -- CREATE TABLE `transaksi` ( `id` int(11) NOT NULL, `id_petugas` int(11) NOT NULL, `id_pembeli` int(11) NOT NULL, `tgl_transaksi` date 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 untuk tabel `transaksi` -- INSERT INTO `transaksi` (`id`, `id_petugas`, `id_pembeli`, `tgl_transaksi`, `created_at`, `updated_at`) VALUES (3, 1, 2, '2020-04-09', NULL, NULL), (5, 4, 3, '2020-02-02', NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `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; -- -- Indexes for dumped tables -- -- -- Indeks untuk tabel `barang` -- ALTER TABLE `barang` ADD PRIMARY KEY (`id`), ADD KEY `id_jenis` (`id_jenis`); -- -- Indeks untuk tabel `detail_transaksi` -- ALTER TABLE `detail_transaksi` ADD PRIMARY KEY (`id`), ADD KEY `id_transaksi` (`id_transaksi`,`id_jenis`), ADD KEY `id_jenis` (`id_jenis`); -- -- Indeks untuk tabel `jenis` -- ALTER TABLE `jenis` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `pembeli` -- ALTER TABLE `pembeli` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `petugas` -- ALTER TABLE `petugas` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `transaksi` -- ALTER TABLE `transaksi` ADD PRIMARY KEY (`id`), ADD KEY `id_petugas` (`id_petugas`,`id_pembeli`), ADD KEY `id_pembeli` (`id_pembeli`); -- -- Indeks untuk tabel `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT untuk tabel yang dibuang -- -- -- AUTO_INCREMENT untuk tabel `barang` -- ALTER TABLE `barang` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT untuk tabel `detail_transaksi` -- ALTER TABLE `detail_transaksi` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT untuk tabel `jenis` -- ALTER TABLE `jenis` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT untuk tabel `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT untuk tabel `pembeli` -- ALTER TABLE `pembeli` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT untuk tabel `petugas` -- ALTER TABLE `petugas` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT untuk tabel `transaksi` -- ALTER TABLE `transaksi` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT untuk tabel `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables) -- -- -- Ketidakleluasaan untuk tabel `barang` -- ALTER TABLE `barang` ADD CONSTRAINT `barang_ibfk_1` FOREIGN KEY (`id_jenis`) REFERENCES `jenis` (`id`); -- -- Ketidakleluasaan untuk tabel `detail_transaksi` -- ALTER TABLE `detail_transaksi` ADD CONSTRAINT `detail_transaksi_ibfk_1` FOREIGN KEY (`id_transaksi`) REFERENCES `transaksi` (`id`), ADD CONSTRAINT `detail_transaksi_ibfk_2` FOREIGN KEY (`id_jenis`) REFERENCES `jenis` (`id`); -- -- Ketidakleluasaan untuk tabel `transaksi` -- ALTER TABLE `transaksi` ADD CONSTRAINT `transaksi_ibfk_1` FOREIGN KEY (`id_petugas`) REFERENCES `petugas` (`id`), ADD CONSTRAINT `transaksi_ibfk_2` FOREIGN KEY (`id_pembeli`) REFERENCES `pembeli` (`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 */;
-- phpMyAdmin SQL Dump -- version 4.7.7 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Oct 15, 2018 at 05:03 PM -- Server version: 10.1.30-MariaDB -- PHP Version: 7.2.1 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: `shopit` -- -- -------------------------------------------------------- -- -- Table structure for table `active_pages` -- CREATE TABLE `active_pages` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(50) NOT NULL, `enabled` tinyint(1) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `active_pages` -- INSERT INTO `active_pages` (`id`, `name`, `enabled`) VALUES (1, 'blog', 1), (2, 'terms-and-conditions', 1), (3, 'privacy-policy', 1); -- -------------------------------------------------------- -- -- Table structure for table `admin_notifications` -- CREATE TABLE `admin_notifications` ( `id` int(11) NOT NULL, `admin_id` int(11) NOT NULL, `msg` text NOT NULL, `date_added` date NOT NULL, `status` int(11) NOT NULL DEFAULT '0', `deleted` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `admin_notifications` -- INSERT INTO `admin_notifications` (`id`, `admin_id`, `msg`, `date_added`, `status`, `deleted`) VALUES (1, 1, 'hello', '2018-09-05', 0, 0); -- -------------------------------------------------------- -- -- Table structure for table `bank_accounts` -- CREATE TABLE `bank_accounts` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `iban` varchar(255) NOT NULL, `bank` varchar(255) NOT NULL, `bic` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `bank_accounts` -- INSERT INTO `bank_accounts` (`id`, `name`, `iban`, `bank`, `bic`) VALUES (1, 'Crypto Wakanda', '0038565699', 'Diamond Bank PLC', 'Savings'); -- -------------------------------------------------------- -- -- Table structure for table `blog_posts` -- CREATE TABLE `blog_posts` ( `id` int(10) UNSIGNED NOT NULL, `image` varchar(255) NOT NULL, `url` varchar(255) NOT NULL, `time` int(10) UNSIGNED NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `blog_posts` -- INSERT INTO `blog_posts` (`id`, `image`, `url`, `time`) VALUES (1, 'archi.jpg', 'Cavewebs_Solutions_1', 1535987524), (2, 'celebrity.jpg', 'Cavewebs_sweat_shirts_that_are_more_than_years_old_2', 1535991410), (3, 'ntel.png', 'Shop_Mediva_Coutoure_3', 1537200454); -- -------------------------------------------------------- -- -- Table structure for table `blog_translations` -- CREATE TABLE `blog_translations` ( `id` int(11) NOT NULL, `title` varchar(255) NOT NULL, `description` longtext NOT NULL, `abbr` varchar(5) NOT NULL, `for_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `blog_translations` -- INSERT INTO `blog_translations` (`id`, `title`, `description`, `abbr`, `for_id`) VALUES (1, 'Cavewebs Solutions', '<p>My guy that uear how una day .&nbsp;My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;</p>\r\n\r\n<p>My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;&nbsp;</p>\r\n\r\n<blockquote>\r\n<p><em>My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;</em></p>\r\n</blockquote>\r\n\r\n<p>My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;My guy that uear how una day&nbsp;</p>\r\n', 'en', 1), (2, 'Cavewebs sweat shirts that are more than 1000 years old', '<p>Did you know that in the city of Kwander the indegenes discovered a secret that no one ever did discover.&nbsp;</p>\r\n\r\n<p>Kwagh shun yange doo ve je ve yem ve da or kwagh ami. Abatur hir upinen ve gba kwagh tsor kpa gba ve ga. Or wam man gba wan icham orum ave;&nbsp; ye kwagh hemba or batur ver; kwagh hemba or batur ver;&nbsp; kwagh hemba or batur ver; kwagh hemba or batur ver; kwagh hemba or batur ver; kwagh hemba or batur ver; kwagh hemba or batur ver; kwagh hemba or batur ver; kwagh hemba or batur ver; kwagh hemba or batur ver;</p>\r\n\r\n<blockquote>\r\n<p>kwagh hemba or batur ver; kwagh hemba or batur ver; kwagh hemba or batur ver; kwagh hemba or batur ver; kwagh hemba or batur ver;</p>\r\n</blockquote>\r\n\r\n<p>kwagh hemba or batur ver; kwagh hemba or batur ver; kwagh hemba or batur ver; kwagh hemba or batur ver; kwagh hemba or batur ver; kwagh hemba or batur ver; kwagh hemba or batur ver; kwagh hemba or batur ver; kwagh hemba or batur ver; kwagh hemba or batur ver;</p>\r\n', 'en', 2), (3, 'Shop Mediva Coutoure', '<p>Hmm. We’re having trouble finding that site.</p>\r\n\r\n<p>We can’t connect to the server at www.google.com.<br />\r\nIf that address is correct, here are three other things you can try:</p>\r\n\r\n<p>&nbsp;&nbsp;&nbsp; Try again later.<br />\r\n&nbsp;&nbsp;&nbsp; Check your network connection.<br />\r\n&nbsp;&nbsp;&nbsp; If you are connected but behind a firewall, check that Firefox has permission to access the Web.</p>\r\n', 'en', 3); -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `brands` -- INSERT INTO `brands` (`id`, `name`) VALUES (1, 'Gucci'); -- -------------------------------------------------------- -- -- Table structure for table `confirm_links` -- CREATE TABLE `confirm_links` ( `id` int(11) NOT NULL, `link` char(32) NOT NULL, `for_order` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `confirm_links` -- INSERT INTO `confirm_links` (`id`, `link`, `for_order`) VALUES (1, '9333e609395e2278cc2460a997dda338', 1234), (2, 'ca6f1196a8574e45abe768486a87954a', 1235), (3, 'c49d0582aa92ab38cab9164dc8fafcaa', 1236), (4, '1946606562938583ae1bd5a2abc56dc6', 1237), (5, '8d97d7e10667c4a06216e67a1e94f3cd', 1238), (6, 'b6d32d8e717fa3837ec07699a77b1044', 1239), (7, 'ad33f7e70e5dd936191fd8c38d19d89f', 1240), (8, '61667298b9d95bb87bdb70b9aba34980', 1241), (9, '5adaec75c880723632713b0c54ccfed1', 1242), (10, '49cadaef47bff56a959718b547fd3311', 1243), (11, '828186af186e4e0aad7ef567e97cb773', 1244), (12, '224ef44a030f7040d8d602951f6aed29', 1245), (13, '2a838e7e84852474046d190717c0811c', 1246), (14, '56fe2ec38d5f8caf368738282ba2e48e', 1247), (15, '5980c960ef09af55204d0f48da4db6f2', 1248), (16, '1c86482be55e932dc22a5be479b182bb', 1249), (17, '18290366b0d4c79248352b2cafa2ed3f', 1250), (18, '6288135314cc84d5706f5fb5451983d1', 1251); -- -------------------------------------------------------- -- -- Table structure for table `cookie_law` -- CREATE TABLE `cookie_law` ( `id` int(10) UNSIGNED NOT NULL, `link` varchar(255) NOT NULL, `theme` varchar(20) NOT NULL, `visibility` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `cookie_law` -- INSERT INTO `cookie_law` (`id`, `link`, `theme`, `visibility`) VALUES (1, 'http://cokies.law', '', 0); -- -------------------------------------------------------- -- -- Table structure for table `cookie_law_translations` -- CREATE TABLE `cookie_law_translations` ( `id` int(10) UNSIGNED NOT NULL, `message` varchar(255) NOT NULL, `button_text` varchar(50) NOT NULL, `learn_more` varchar(50) NOT NULL, `abbr` varchar(5) NOT NULL, `for_id` int(11) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `cookie_law_translations` -- INSERT INTO `cookie_law_translations` (`id`, `message`, `button_text`, `learn_more`, `abbr`, `for_id`) VALUES (1, 'We use cokies', 'Accept', 'More Info', 'en', 1); -- -------------------------------------------------------- -- -- Table structure for table `discount_codes` -- CREATE TABLE `discount_codes` ( `id` int(10) UNSIGNED NOT NULL, `type` varchar(10) NOT NULL, `code` varchar(10) NOT NULL, `amount` varchar(20) NOT NULL, `valid_from_date` int(10) UNSIGNED NOT NULL, `valid_to_date` int(10) UNSIGNED NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1-enabled, 0-disabled' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `discount_codes` -- INSERT INTO `discount_codes` (`id`, `type`, `code`, `amount`, `valid_from_date`, `valid_to_date`, `status`) VALUES (1, 'float', 'LOJCY4', '1500', 1533074400, 1538172000, 1), (2, 'float', 'OMVHWTRF', '400.00', 1535493600, 1537912800, 1), (3, 'percent', '6OYRD9', '5', 1536616800, 1537394400, 1); -- -------------------------------------------------------- -- -- Table structure for table `history` -- CREATE TABLE `history` ( `id` int(10) UNSIGNED NOT NULL, `activity` varchar(255) NOT NULL, `username` varchar(50) DEFAULT NULL, `time` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `history` -- INSERT INTO `history` (`id`, `activity`, `username`, `time`) VALUES (1, 'Go to Settings Page', 'admin', 1535943065), (2, 'Go to languages', 'admin', 1535943105), (3, 'User admin logged in', NULL, 1535967620), (4, 'Go to home page', 'admin', 1535967620), (5, 'Go to orders page', 'admin', 1535967644), (6, 'Change status of Order Id 1 to status 1', 'admin', 1535967648), (7, 'Go to orders page', 'admin', 1535967656), (8, 'Change status of Order Id 1 to status 1', 'admin', 1535967676), (9, 'Go to orders page', 'admin', 1535967814), (10, 'Go to shop categories', 'admin', 1535967832), (11, 'Go to home page', 'admin', 1535967837), (12, 'Go to History', 'admin', 1535967853), (13, 'Go to orders page', 'admin', 1535967976), (14, 'Go to discounts page', 'admin', 1535967992), (15, 'Go to discounts page', 'admin', 1535967996), (16, 'Go to orders page', 'admin', 1535968082), (17, 'Go to products', 'admin', 1535968340), (18, 'Go to products', 'admin', 1535968434), (19, 'Go to products', 'admin', 1535968436), (20, 'Go to products', 'admin', 1535968452), (21, 'Go to products', 'admin', 1535968454), (22, 'Go to products', 'admin', 1535968457), (23, 'Go to products', 'admin', 1535968475), (24, 'Go to products', 'admin', 1535968476), (25, 'Go to products', 'admin', 1535968492), (26, 'Go to products', 'admin', 1535968519), (27, 'Go to products', 'admin', 1535968545), (28, 'Go to products', 'admin', 1535968564), (29, 'Go to products', 'admin', 1535968592), (30, 'Go to products', 'admin', 1535968604), (31, 'Search for product title - ', 'admin', 1535968644), (32, 'Search for product code - ', 'admin', 1535968644), (33, 'Go to products', 'admin', 1535968644), (34, 'Go to discounts page', 'admin', 1535970028), (35, 'Go to discounts page', 'admin', 1535970032), (36, 'Go to discounts page', 'admin', 1535970400), (37, 'Go to discounts page', 'admin', 1535970567), (38, 'Go to discounts page', 'admin', 1535970575), (39, 'Go to discounts page', 'admin', 1535970582), (40, 'Go to discounts page', 'admin', 1535970604), (41, 'Go to discounts page', 'admin', 1535970608), (42, 'Go to orders page', 'admin', 1535970617), (43, 'Go to orders page', 'admin', 1535972483), (44, 'Go to orders page', 'admin', 1535972605), (45, 'Go to orders page', 'admin', 1535973202), (46, 'Go to orders page', 'admin', 1535973225), (47, 'Go to orders page', 'admin', 1535973245), (48, 'Go to orders page', 'admin', 1535973249), (49, 'Go to orders page', 'admin', 1535973253), (50, 'Go to orders page', 'admin', 1535973257), (51, 'Go to shop categories', 'admin', 1535973374), (52, 'Go to publish product', 'admin', 1535973380), (53, 'Go to orders page', 'admin', 1535973781), (54, 'Go to orders page', 'admin', 1535973787), (55, 'Go to orders page', 'admin', 1535973797), (56, 'Go to Settings Page', 'admin', 1535973948), (57, 'Go to Templates Page', 'admin', 1535974409), (58, 'Go to discounts page', 'admin', 1535974415), (59, 'Go to orders page', 'admin', 1535974444), (60, 'Go to orders page', 'admin', 1535974449), (61, 'Go to orders page', 'admin', 1535974873), (62, 'Search for product title - we', 'admin', 1535974889), (63, 'Go to products', 'admin', 1535974889), (64, 'Go to home page', 'admin', 1535974952), (65, 'Go to products', 'admin', 1535974973), (66, 'Search for product title - we', 'admin', 1535974978), (67, 'Go to products', 'admin', 1535974978), (68, 'Search for product title - e', 'admin', 1535974986), (69, 'Go to products', 'admin', 1535974986), (70, 'Search for product title - e', 'admin', 1535975767), (71, 'Go to products', 'admin', 1535975767), (72, 'Go to home page', 'admin', 1535975913), (73, 'Go to products', 'admin', 1535975931), (74, 'Go to discounts page', 'admin', 1535975934), (75, 'Go to orders page', 'admin', 1535975939), (76, 'Go to Settings Page', 'admin', 1535975944), (77, 'Go to Settings Page', 'admin', 1535975967), (78, 'Go to Settings Page', 'admin', 1535976305), (79, 'Go to Settings Page', 'admin', 1535976354), (80, 'Go to Settings Page', 'admin', 1535976424), (81, 'Go to Settings Page', 'admin', 1535976550), (82, 'Go to Settings Page', 'admin', 1535976745), (83, 'Go to Settings Page', 'admin', 1535976827), (84, 'Go to home page', 'admin', 1535977658), (85, 'Go to Settings Page', 'admin', 1535977666), (86, 'Change footer about us info', 'admin', 1535977684), (87, 'Go to Settings Page', 'admin', 1535977684), (88, 'Go to Settings Page', 'admin', 1535977820), (89, 'Go to Settings Page', 'admin', 1535977929), (90, 'Go to Settings Page', 'admin', 1535978024), (91, 'Go to Settings Page', 'admin', 1535978067), (92, 'Go to Settings Page', 'admin', 1535978148), (93, 'Go to Settings Page', 'admin', 1535978175), (94, 'Go to Settings Page', 'admin', 1535978221), (95, 'Go to Settings Page', 'admin', 1535978228), (96, 'Go to Settings Page', 'admin', 1535978325), (97, 'Go to Settings Page', 'admin', 1535978371), (98, 'Go to Settings Page', 'admin', 1535978389), (99, 'Change footer about us info', 'admin', 1535978423), (100, 'Go to Settings Page', 'admin', 1535978423), (101, 'Go to Settings Page', 'admin', 1535978477), (102, 'Go to Settings Page', 'admin', 1535978792), (103, 'Update Google Maps Coordinates and Api Key', 'admin', 1535978815), (104, 'Go to Settings Page', 'admin', 1535978815), (105, 'Go to Settings Page', 'admin', 1535980040), (106, 'Go to Settings Page', 'admin', 1535983936), (107, 'Go to Settings Page', 'admin', 1535984794), (108, 'Go to Settings Page', 'admin', 1535984876), (109, 'Change navigation text', 'admin', 1535984915), (110, 'Go to Settings Page', 'admin', 1535984915), (111, 'Go to Templates Page', 'admin', 1535984929), (112, 'Go to Templates Page', 'admin', 1535984933), (113, 'Go to Templates Page', 'admin', 1535985348), (114, 'Go to Settings Page', 'admin', 1535985356), (115, 'Change navigation text', 'admin', 1535985364), (116, 'Go to Settings Page', 'admin', 1535985364), (117, 'Go to Settings Page', 'admin', 1535985571), (118, 'Go to Titles / Descriptions page', 'admin', 1535985575), (119, 'Go to Titles / Descriptions page', 'admin', 1535985627), (120, 'Go to Titles / Descriptions page', 'admin', 1535985637), (121, 'Go to Titles / Descriptions page', 'admin', 1535985713), (122, 'Go to Titles / Descriptions page', 'admin', 1535986148), (123, 'Go to Titles / Descriptions page', 'admin', 1535986161), (124, 'Go to Titles / Descriptions page', 'admin', 1535986200), (125, 'Go to Titles / Descriptions page', 'admin', 1535986260), (126, 'Go to Titles / Descriptions page', 'admin', 1535986361), (127, 'Go to Titles / Descriptions page', 'admin', 1535986515), (128, 'Go to Titles / Descriptions page', 'admin', 1535986547), (129, 'Go to Titles / Descriptions page', 'admin', 1535986566), (130, 'Go to Titles / Descriptions page', 'admin', 1535986589), (131, 'Go to Titles / Descriptions page', 'admin', 1535986604), (132, 'Changed Titles / Descriptions', 'admin', 1535986632), (133, 'Go to Titles / Descriptions page', 'admin', 1535986632), (134, 'Go to Titles / Descriptions page', 'admin', 1535987315), (135, 'Go to Blog', 'admin', 1535987352), (136, 'Go to Blog Publish', 'admin', 1535987359), (137, 'Go to Blog', 'admin', 1535987525), (138, 'Go to Blog', 'admin', 1535987700), (139, 'Go to Blog', 'admin', 1535987921), (140, 'Edit page - privacy-policy', 'admin', 1535987946), (141, 'Go to home page', 'admin', 1535988014), (142, 'Go to home page', 'admin', 1535988130), (143, 'Go to Pages manage', 'admin', 1535988142), (144, 'Page status Changed', 'admin', 1535988151), (145, 'Page status Changed', 'admin', 1535988152), (146, 'Go to Pages manage', 'admin', 1535988247), (147, 'Go to Pages manage', 'admin', 1535988264), (148, 'Go to Pages manage', 'admin', 1535988278), (149, 'Go to orders page', 'admin', 1535988354), (150, 'Go to orders page', 'admin', 1535988357), (151, 'Go to orders page', 'admin', 1535988372), (152, 'Go to orders page', 'admin', 1535988374), (153, 'Go to orders page', 'admin', 1535988376), (154, 'Go to orders page', 'admin', 1535988377), (155, 'Go to orders page', 'admin', 1535988914), (156, 'Go to orders page', 'admin', 1535988928), (157, 'Go to orders page', 'admin', 1535988953), (158, 'Go to Titles / Descriptions page', 'admin', 1535988998), (159, 'Go to Pages manage', 'admin', 1535989004), (160, 'Go to home page', 'admin', 1535989061), (161, 'Go to orders page', 'admin', 1535989068), (162, 'Go to orders page', 'admin', 1535989071), (163, 'Go to publish product', 'admin', 1535989074), (164, 'Edit page - privacy-policy', 'admin', 1535989077), (165, 'Go to Pages manage', 'admin', 1535989097), (166, 'Go to History', 'admin', 1535989212), (167, 'Go to orders page', 'admin', 1535989742), (168, 'Go to Admin Users', 'admin', 1535989749), (169, 'Go to File Manager', 'admin', 1535989757), (170, 'Go to languages', 'admin', 1535989787), (171, 'Go to languages', 'admin', 1535990101), (172, 'Go to File Manager', 'admin', 1535990108), (173, 'Go to Admin Users', 'admin', 1535990349), (174, 'Go to Admin Users', 'admin', 1535990359), (175, 'Go to languages', 'admin', 1535990377), (176, 'Go to languages', 'admin', 1535990435), (177, 'Go to languages', 'admin', 1535990458), (178, 'Go to home page', 'admin', 1535990483), (179, 'Go to home page', 'admin', 1535990496), (180, 'Go to home page', 'admin', 1535990507), (181, 'Go to Admin Users', 'admin', 1535990517), (182, 'Go to File Manager', 'admin', 1535990523), (183, 'Go to File Manager', 'admin', 1535990557), (184, 'Go to Blog', 'admin', 1535990564), (185, 'Go to Blog', 'admin', 1535990712), (186, 'Go to Blog', 'admin', 1535990768), (187, 'Go to Blog', 'admin', 1535990884), (188, 'Go to Blog', 'admin', 1535990977), (189, 'Go to Blog', 'admin', 1535991081), (190, 'Go to Blog', 'admin', 1535991137), (191, 'Go to Blog Publish', 'admin', 1535991149), (192, 'Go to Blog', 'admin', 1535991156), (193, 'Go to Blog', 'admin', 1535991172), (194, 'Go to Blog Publish', 'admin', 1535991195), (195, 'Go to Blog', 'admin', 1535991410), (196, 'Go to Blog', 'admin', 1535991796), (197, 'Go to Blog', 'admin', 1535991937), (198, 'Go to Blog', 'admin', 1535995910), (199, 'Go to shop categories', 'admin', 1535995965), (200, 'Go to publish product', 'admin', 1535995968), (201, 'Go to products', 'admin', 1535995970), (202, 'Go to publish product', 'admin', 1535995972), (203, 'Go to File Manager', 'admin', 1535996240), (204, 'Go to languages', 'admin', 1535996362), (205, 'Go to languages', 'admin', 1535996443), (206, 'Go to languages', 'admin', 1535996478), (207, 'Go to languages', 'admin', 1535996607), (208, 'Go to Admin Users', 'admin', 1535996699), (209, 'Go to Admin Users', 'admin', 1535996731), (210, 'Go to Admin Users', 'admin', 1535996744), (211, 'Go to Admin Users', 'admin', 1535996775), (212, 'Go to Admin Users', 'admin', 1535996805), (213, 'Go to Pages manage', 'admin', 1535996839), (214, 'Page status Changed', 'admin', 1535996849), (215, 'Page status Changed', 'admin', 1535996854), (216, 'Page status Changed', 'admin', 1535996855), (217, 'Go to Pages manage', 'admin', 1535996859), (218, 'Page status Changed', 'admin', 1535996888), (219, 'Page status Changed', 'admin', 1535996891), (220, 'Page status Changed', 'admin', 1535996894), (221, 'Go to Admin Users', 'admin', 1535996991), (222, 'Go to Admin Users', 'admin', 1535996995), (223, 'Go to languages', 'admin', 1536000749), (224, 'Go to languages', 'admin', 1536000757), (225, 'Go to languages', 'admin', 1536000773), (226, 'Go to languages', 'admin', 1536000872), (227, 'Go to languages', 'admin', 1536001202), (228, 'Go to languages', 'admin', 1536001220), (229, 'Go to languages', 'admin', 1536001273), (230, 'Go to languages', 'admin', 1536001286), (231, 'Go to languages', 'admin', 1536001323), (232, 'Go to languages', 'admin', 1536001372), (233, 'Go to languages', 'admin', 1536001432), (234, 'Go to languages', 'admin', 1536001492), (235, 'Go to languages', 'admin', 1536001535), (236, 'User admin logged in', NULL, 1536001542), (237, 'Go to home page', 'admin', 1536001543), (238, 'Go to Admin Users', 'admin', 1536001591), (239, 'Go to Admin Users', 'admin', 1536001625), (240, 'Go to Templates Page', 'admin', 1536001868), (241, 'Go to Templates Page', 'admin', 1536001875), (242, 'Go to Templates Page', 'admin', 1536006092), (243, 'Go to Templates Page', 'admin', 1536006105), (244, 'Go to Templates Page', 'admin', 1536006247), (245, 'Go to Templates Page', 'admin', 1536006859), (246, 'User admin logged in', NULL, 1536040030), (247, 'Go to home page', 'admin', 1536040031), (248, 'Go to Templates Page', 'admin', 1536040038), (249, 'Go to Templates Page', 'admin', 1536040045), (250, 'Go to Templates Page', 'admin', 1536042175), (251, 'Go to Pages manage', 'admin', 1536042617), (252, 'Edit page - privacy-policy', 'admin', 1536042637), (253, 'Page 3 updated!', 'admin', 1536042650), (254, 'Edit page - privacy-policy', 'admin', 1536042650), (255, 'User admin logged in', NULL, 1536042706), (256, 'Go to home page', 'admin', 1536042706), (257, 'Go to Templates Page', 'admin', 1536043135), (258, 'Go to Templates Page', 'admin', 1536043145), (259, 'Go to Templates Page', 'admin', 1536043462), (260, 'User admin logged in', NULL, 1536061226), (261, 'Go to home page', 'admin', 1536061227), (262, 'Go to shop categories', 'admin', 1536061246), (263, 'Go to publish product', 'admin', 1536061251), (264, 'Go to Templates Page', 'admin', 1536061281), (265, 'Go to Templates Page', 'admin', 1536061292), (266, 'Go to Templates Page', 'admin', 1536061325), (267, 'Go to orders page', 'admin', 1536061481), (268, 'Go to home page', 'admin', 1536064470), (269, 'Go to Templates Page', 'admin', 1536064532), (270, 'Go to Templates Page', 'admin', 1536064541), (271, 'User admin logged in', NULL, 1536139338), (272, 'Go to home page', 'admin', 1536139338), (273, 'Go to Templates Page', 'admin', 1536139343), (274, 'Go to Templates Page', 'admin', 1536139356), (275, 'Go to Templates Page', 'admin', 1536139372), (276, 'Go to Templates Page', 'admin', 1536139395), (277, 'Go to Templates Page', 'admin', 1536139413), (278, 'Go to Templates Page', 'admin', 1536139442), (279, 'Go to Templates Page', 'admin', 1536139513), (280, 'Go to Templates Page', 'admin', 1536139610), (281, 'User admin logged in', NULL, 1536148449), (282, 'Go to home page', 'admin', 1536148449), (283, 'User admin logged in', NULL, 1536148460), (284, 'Go to home page', 'admin', 1536148460), (285, 'Go to orders page', 'admin', 1536148470), (286, 'Go to orders page', 'admin', 1536148476), (287, 'Go to orders page', 'admin', 1536148478), (288, 'Go to Blog Publish', 'admin', 1536148481), (289, 'Go to Pages manage', 'admin', 1536148487), (290, 'Go to Subscribed Emails', 'admin', 1536148521), (291, 'Go to Pages manage', 'admin', 1536148940), (292, 'Go to Titles / Descriptions page', 'admin', 1536148947), (293, 'Go to orders page', 'admin', 1536148968), (294, 'User admin logged in', NULL, 1536157581), (295, 'Go to home page', 'admin', 1536157581), (296, 'Go to Templates Page', 'admin', 1536157586), (297, 'Go to Templates Page', 'admin', 1536157593), (298, 'User admin logged in', NULL, 1536734270), (299, 'Go to home page', 'admin', 1536734270), (300, 'Go to Pages manage', 'admin', 1536734294), (301, 'Go to Settings Page', 'admin', 1536734301), (302, 'Change site logo', 'admin', 1536734315), (303, 'Go to Settings Page', 'admin', 1536734315), (304, 'Go to Templates Page', 'admin', 1536734348), (305, 'Go to Templates Page', 'admin', 1536734352), (306, 'Go to Templates Page', 'admin', 1536734400), (307, 'Go to Templates Page', 'admin', 1536735833), (308, 'Go to Templates Page', 'admin', 1536735868), (309, 'Go to Templates Page', 'admin', 1536736268), (310, 'Go to Templates Page', 'admin', 1536736392), (311, 'Go to Templates Page', 'admin', 1536736574), (312, 'Go to Templates Page', 'admin', 1536736629), (313, 'Go to Templates Page', 'admin', 1536736971), (314, 'Go to Templates Page', 'admin', 1536739416), (315, 'Go to Templates Page', 'admin', 1536740182), (316, 'Go to Settings Page', 'admin', 1536740516), (317, 'Cookie law information changed', 'admin', 1536740821), (318, 'Go to Settings Page', 'admin', 1536740821), (319, 'Go to Settings Page', 'admin', 1536743317), (320, 'Go to Settings Page', 'admin', 1536743358), (321, 'Go to Titles / Descriptions page', 'admin', 1536743788), (322, 'Changed Titles / Descriptions', 'admin', 1536743833), (323, 'Go to Titles / Descriptions page', 'admin', 1536743833), (324, 'Go to Templates Page', 'admin', 1536744319), (325, 'Go to Templates Page', 'admin', 1536744329), (326, 'Go to Templates Page', 'admin', 1536745100), (327, 'Go to Templates Page', 'admin', 1536753164), (328, 'Go to Templates Page', 'admin', 1536753207), (329, 'Go to Templates Page', 'admin', 1536753234), (330, 'Go to Templates Page', 'admin', 1536754809), (331, 'Go to Templates Page', 'admin', 1536754816), (332, 'Go to Titles / Descriptions page', 'admin', 1536762626), (333, 'Go to Pages manage', 'admin', 1536762634), (334, 'Go to languages', 'admin', 1536762637), (335, 'Go to languages', 'admin', 1536762639), (336, 'Go to languages', 'admin', 1536762696), (337, 'Go to languages', 'admin', 1536766029), (338, 'Go to languages', 'admin', 1536766105), (339, 'Go to languages', 'admin', 1536771886), (340, 'Go to languages', 'admin', 1536772624), (341, 'Go to home page', 'admin', 1536772633), (342, 'Go to languages', 'admin', 1536772642), (343, 'Go to languages', 'admin', 1536772672), (344, 'User admin logged in', NULL, 1536852862), (345, 'Go to home page', 'admin', 1536852862), (346, 'Go to Templates Page', 'admin', 1536852872), (347, 'Go to Templates Page', 'admin', 1536852882), (348, 'Go to Templates Page', 'admin', 1536853073), (349, 'Go to languages', 'admin', 1536854451), (350, 'Create language - ib', 'admin', 1536854478), (351, 'Go to languages', 'admin', 1536854478), (352, 'Go to languages', 'admin', 1536854633), (353, 'Go to languages', 'admin', 1536854649), (354, 'Go to publish product', 'admin', 1536854665), (355, 'Go to products', 'admin', 1536854670), (356, 'Go to publish product', 'admin', 1536854673), (357, 'Go to languages', 'admin', 1536854700), (358, 'Delete language id - 3', 'admin', 1536854705), (359, 'Go to languages', 'admin', 1536854705), (360, 'Go to languages', 'admin', 1536854708), (361, 'User admin logged in', NULL, 1536923025), (362, 'Go to home page', 'admin', 1536923025), (363, 'Go to Templates Page', 'admin', 1536923030), (364, 'Go to Templates Page', 'admin', 1536923039), (365, 'Go to Templates Page', 'admin', 1536923211), (366, 'Go to home page', 'admin', 1536928376), (367, 'User admin logged in', NULL, 1536928384), (368, 'Go to home page', 'admin', 1536928384), (369, 'Search for product title - city', 'admin', 1536938974), (370, 'Go to products', 'admin', 1536938974), (371, 'Go to publish product', 'admin', 1536938979), (372, 'Success updated product', 'admin', 1536939029), (373, 'Search for product title - city', 'admin', 1536939029), (374, 'Go to products', 'admin', 1536939029), (375, 'Search for product title - food', 'admin', 1536939056), (376, 'Go to products', 'admin', 1536939056), (377, 'Go to publish product', 'admin', 1536939059), (378, 'Success updated product', 'admin', 1536939076), (379, 'Search for product title - food', 'admin', 1536939076), (380, 'Go to products', 'admin', 1536939076), (381, 'User admin logged in', NULL, 1536953092), (382, 'Go to home page', 'admin', 1536953092), (383, 'Go to products', 'admin', 1536953096), (384, 'Go to publish product', 'admin', 1536953102), (385, 'Success updated product', 'admin', 1536953138), (386, 'Go to products', 'admin', 1536953138), (387, 'User admin logged in', NULL, 1537004863), (388, 'Go to home page', 'admin', 1537004863), (389, 'Go to Pages manage', 'admin', 1537010429), (390, 'Go to Titles / Descriptions page', 'admin', 1537010436), (391, 'Go to Titles / Descriptions page', 'admin', 1537010573), (392, 'Changed Titles / Descriptions', 'admin', 1537010592), (393, 'Go to Titles / Descriptions page', 'admin', 1537010592), (394, 'Changed Titles / Descriptions', 'admin', 1537010641), (395, 'Go to Titles / Descriptions page', 'admin', 1537010641), (396, 'Go to languages', 'admin', 1537025197), (397, 'Go to languages', 'admin', 1537025199), (398, 'Go to languages', 'admin', 1537025371), (399, 'Go to languages', 'admin', 1537025384), (400, 'Go to languages', 'admin', 1537025473), (401, 'Go to languages', 'admin', 1537025550), (402, 'Go to languages', 'admin', 1537025636), (403, 'Go to Templates Page', 'admin', 1537025844), (404, 'Go to Templates Page', 'admin', 1537025848), (405, 'Go to Templates Page', 'admin', 1537025864), (406, 'Go to Templates Page', 'admin', 1537025893), (407, 'User admin logged in', NULL, 1537184730), (408, 'Go to home page', 'admin', 1537184730), (409, 'Go to languages', 'admin', 1537184733), (410, 'Go to languages', 'admin', 1537184735), (411, 'Go to languages', 'admin', 1537184794), (412, 'Go to products', 'admin', 1537190661), (413, 'Go to publish product', 'admin', 1537190678), (414, 'Success updated product', 'admin', 1537190723), (415, 'Go to products', 'admin', 1537190723), (416, 'Go to discounts page', 'admin', 1537196211), (417, 'Go to discounts page', 'admin', 1537196317), (418, 'Go to discounts page', 'admin', 1537196323), (419, 'Go to discounts page', 'admin', 1537196362), (420, 'Go to discounts page', 'admin', 1537196369), (421, 'Go to discounts page', 'admin', 1537197461), (422, 'Go to discounts page', 'admin', 1537197466), (423, 'Go to languages', 'admin', 1537197475), (424, 'Go to languages', 'admin', 1537197478), (425, 'Go to languages', 'admin', 1537197520), (426, 'Go to Templates Page', 'admin', 1537199107), (427, 'Go to Templates Page', 'admin', 1537199110), (428, 'Go to Templates Page', 'admin', 1537199146), (429, 'Go to languages', 'admin', 1537199746), (430, 'Go to languages', 'admin', 1537199748), (431, 'Go to languages', 'admin', 1537199779), (432, 'Go to Blog', 'admin', 1537200356), (433, 'Go to Blog Publish', 'admin', 1537200359), (434, 'Go to Blog', 'admin', 1537200454), (435, 'Go to Pages manage', 'admin', 1537202654), (436, 'Go to Pages manage', 'admin', 1537202666), (437, 'Go to languages', 'admin', 1537202677), (438, 'Go to languages', 'admin', 1537202679), (439, 'Go to languages', 'admin', 1537202699), (440, 'Go to Pages manage', 'admin', 1537202710), (441, 'Go to Settings Page', 'admin', 1537202719), (442, 'Go to Templates Page', 'admin', 1537208762), (443, 'Go to Templates Page', 'admin', 1537208770), (444, 'User admin logged in', NULL, 1537253263), (445, 'Go to home page', 'admin', 1537253263), (446, 'Go to orders page', 'admin', 1537253268), (447, 'Go to products', 'admin', 1537253273), (448, 'Go to publish product', 'admin', 1537253294), (449, 'Success updated product', 'admin', 1537259899), (450, 'Go to products', 'admin', 1537259899), (451, 'Go to Templates Page', 'admin', 1537260551), (452, 'Go to Templates Page', 'admin', 1537260558), (453, 'User admin logged in', NULL, 1537628362), (454, 'Go to home page', 'admin', 1537628363), (455, 'Go to Templates Page', 'admin', 1537628370), (456, 'User admin logged in', NULL, 1537628429), (457, 'Go to home page', 'admin', 1537628429), (458, 'Go to Templates Page', 'admin', 1537628436), (459, 'Go to Templates Page', 'admin', 1537628442), (460, 'Go to Templates Page', 'admin', 1537631168), (461, 'Go to Templates Page', 'admin', 1537631183), (462, 'Go to Templates Page', 'admin', 1537631203), (463, 'Go to Templates Page', 'admin', 1537635510), (464, 'Go to Templates Page', 'admin', 1537638743), (465, 'Go to Templates Page', 'admin', 1537638748), (466, 'Go to products', 'admin', 1537642572), (467, 'Go to publish product', 'admin', 1537642578), (468, 'Success updated product', 'admin', 1537642631), (469, 'Go to products', 'admin', 1537642632), (470, 'Go to publish product', 'admin', 1537642640), (471, 'Success updated product', 'admin', 1537642659), (472, 'Go to products', 'admin', 1537642659), (473, 'Go to publish product', 'admin', 1537642665), (474, 'Success updated product', 'admin', 1537642682), (475, 'Go to products', 'admin', 1537642682), (476, 'Go to publish product', 'admin', 1537642688), (477, 'Success updated product', 'admin', 1537642711), (478, 'Go to products', 'admin', 1537642711), (479, 'User admin logged in', NULL, 1537650826), (480, 'Go to home page', 'admin', 1537650826), (481, 'Go to Templates Page', 'admin', 1537650830), (482, 'Go to Templates Page', 'admin', 1537650836), (483, 'Go to Templates Page', 'admin', 1537651173), (484, 'User admin logged in', NULL, 1537806825), (485, 'Go to home page', 'admin', 1537806826), (486, 'Go to home page', 'admin', 1537806870), (487, 'Go to home page', 'admin', 1537807249), (488, 'User admin logged in', NULL, 1538727509), (489, 'Go to home page', 'admin', 1538727509), (490, 'User admin logged in', NULL, 1539158473), (491, 'Go to home page', 'admin', 1539158474), (492, 'Go to orders page', 'admin', 1539158478), (493, 'Go to Templates Page', 'admin', 1539158486), (494, 'Go to Templates Page', 'admin', 1539158507); -- -------------------------------------------------------- -- -- Table structure for table `keys` -- CREATE TABLE `keys` ( `id` int(11) NOT NULL, `key` varchar(40) NOT NULL, `level` int(2) NOT NULL, `ignore_limits` tinyint(1) NOT NULL DEFAULT '0', `date_created` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `languages` -- CREATE TABLE `languages` ( `id` int(10) UNSIGNED NOT NULL, `abbr` varchar(5) NOT NULL, `name` varchar(30) NOT NULL, `currency` varchar(10) NOT NULL, `currencyKey` varchar(5) NOT NULL, `flag` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `languages` -- INSERT INTO `languages` (`id`, `abbr`, `name`, `currency`, `currencyKey`, `flag`) VALUES (2, 'en', 'english', 'N', 'NGN', 'en.jpg'); -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` int(10) UNSIGNED NOT NULL, `order_id` int(11) NOT NULL, `user_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'point to public_users ID', `products` text NOT NULL, `date` int(10) UNSIGNED NOT NULL, `referrer` varchar(255) NOT NULL, `clean_referrer` varchar(255) NOT NULL, `payment_type` varchar(255) NOT NULL, `paypal_status` varchar(10) DEFAULT NULL, `processed` tinyint(1) NOT NULL DEFAULT '0', `viewed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'viewed status is change when change processed status', `confirmed` tinyint(1) NOT NULL DEFAULT '0', `discount_code` varchar(20) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `orders` -- INSERT INTO `orders` (`id`, `order_id`, `user_id`, `products`, `date`, `referrer`, `clean_referrer`, `payment_type`, `paypal_status`, `processed`, `viewed`, `confirmed`, `discount_code`) VALUES (1, 1234, 2, 'a:1:{i:4;s:1:\"1\";}', 1535112812, 'http://localhost/shopit/login', 'localhost', 'cashOnDelivery', NULL, 1, 1, 0, 'wewewewewe'), (2, 1235, 0, 'a:1:{i:6;s:1:\"1\";}', 1535531977, 'http://localhost/shopit/', 'localhost', 'Bank', NULL, 1, 1, 0, '6889778'), (3, 1236, 0, 'a:3:{i:1;s:1:\"2\";i:3;s:1:\"1\";i:4;s:1:\"2\";}', 1535815031, 'http://localhost/shopit/admin/pages', 'localhost', 'Bank', NULL, 0, 0, 0, ''), (4, 1237, 0, 'a:3:{i:4;s:2:\"21\";i:6;s:1:\"3\";i:8;s:2:\"10\";}', 1536769868, 'http://localhost/shopit/', 'localhost', 'Bank', NULL, 0, 0, 0, NULL), (5, 1238, 0, 'a:1:{i:4;s:1:\"1\";}', 1536770837, 'http://localhost/shopit/', 'localhost', 'cashOnDelivery', NULL, 0, 0, 0, NULL), (6, 1239, 0, 'a:1:{i:8;s:1:\"2\";}', 1536770939, 'http://localhost/shopit/', 'localhost', 'cashOnDelivery', NULL, 0, 0, 0, NULL), (7, 1240, 0, 'a:1:{i:4;s:1:\"2\";}', 1536770992, 'http://localhost/shopit/', 'localhost', 'Bank', NULL, 0, 0, 0, NULL), (8, 1241, 0, 'a:1:{i:8;s:1:\"1\";}', 1536771303, 'http://localhost/shopit/', 'localhost', 'Bank', NULL, 0, 0, 0, NULL), (9, 1242, 0, 'a:1:{i:4;s:1:\"1\";}', 1536771450, 'http://localhost/shopit/', 'localhost', 'Bank', NULL, 0, 0, 0, NULL), (10, 1243, 0, 'a:1:{i:4;s:1:\"1\";}', 1536771567, 'http://localhost/shopit/', 'localhost', 'Bank', NULL, 0, 0, 0, NULL), (11, 1244, 0, 'a:1:{i:4;s:1:\"1\";}', 1536772711, 'http://localhost/shopit/', 'localhost', 'cashOnDelivery', NULL, 0, 0, 0, NULL), (12, 1245, 0, 'a:1:{i:8;s:1:\"1\";}', 1536773021, 'http://localhost/shopit/', 'localhost', 'Bank', NULL, 0, 0, 0, NULL), (13, 1246, 0, 'a:1:{i:8;s:1:\"1\";}', 1536773186, 'http://localhost/shopit/', 'localhost', 'Bank', NULL, 0, 0, 0, NULL), (14, 1247, 0, 'a:1:{i:4;s:1:\"1\";}', 1536773874, 'http://localhost/shopit/', 'localhost', 'Bank', NULL, 0, 0, 0, NULL), (15, 1248, 0, 'a:1:{i:4;s:1:\"1\";}', 1536774255, 'http://localhost/shopit/', 'localhost', 'Bank', NULL, 0, 0, 0, NULL), (16, 1249, 0, 'a:1:{i:4;s:1:\"1\";}', 1536774456, 'http://localhost/shopit/', 'localhost', 'Bank', NULL, 0, 0, 0, NULL), (17, 1250, 0, 'a:1:{i:1;s:1:\"1\";}', 1536774705, 'http://localhost/shopit/', 'localhost', 'cashOnDelivery', NULL, 0, 0, 0, NULL), (18, 1251, 0, 'a:1:{i:1;s:1:\"1\";}', 1536774927, 'http://localhost/shopit/', 'localhost', 'cashOnDelivery', NULL, 0, 0, 0, NULL); -- -------------------------------------------------------- -- -- Table structure for table `orders_clients` -- CREATE TABLE `orders_clients` ( `id` int(11) NOT NULL, `first_name` varchar(100) NOT NULL, `last_name` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `phone` varchar(30) NOT NULL, `address` text NOT NULL, `city` varchar(20) NOT NULL, `post_code` varchar(10) NOT NULL, `notes` text NOT NULL, `for_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `orders_clients` -- INSERT INTO `orders_clients` (`id`, `first_name`, `last_name`, `email`, `phone`, `address`, `city`, `post_code`, `notes`, `for_id`) VALUES (1, 'Tim', 'Chosen', '<EMAIL>', '08134942718', 'St James House, Ademola Adetokunbo Crescent', 'Wuse 2', '900288', '', 1), (2, '<NAME>', 'chosen', '<EMAIL>', '+3727122576', 'my house', 'Oslo', '12345e678', 'noting', 2), (3, 'Tim', 'Chosen', '<EMAIL>', '08134942718', 'St James House, Ademola Adetokunbo Crescent', 'Wuse 2', '900288', '', 3), (4, 'Iember', 'Assembly', '<EMAIL>', '+2348134942718', 'Agbk', 'Abuj', '234590', 'Hello', 4), (5, 'Reith', 'Ikechukwu', '<EMAIL>', '080231311313', 'kl', 'm', '98', '09-9', 5), (6, 'Tertsea', 'Setevens', '<EMAIL>', '0802313113', ';klkll', 'klkl', 'oioio', 'jkljlk', 6), (7, 'The Throne', 'Joy', '<EMAIL>', '08023188761', 'iok;ll', ';lkkkljkl', 'p[', 'klkl;kl', 7), (8, '<NAME>', 'chosen', '<EMAIL>', '08034321', 'uiui', 'jhou', '8908908', '8098', 8), (9, 'uuiiu', 'tyuyu', '<EMAIL>', '09089897', 'jjhkjhkjhk', 'm', 'mmm', 'jj', 9), (10, 'uuiiu', 'lk', '<EMAIL>', '09089897', '789789', '6767', '9787', '78689', 10), (11, '<NAME>', 'tyuyu', '<EMAIL>', '080343211230', 'kh', 'hh', 'hhhh', 'hhhjh', 11), (12, 'Uzua', 'chosen', '<EMAIL>', '0803432112hg', 'k', 'k', 'k', 'k', 12), (13, 'l', 'l', '<EMAIL>', '09089897', 'k', 'k', 'k', 'k', 13), (14, 'k', 'k', '<EMAIL>', '345678908976543', 'jjl', 'h', 'h', 'h', 14), (15, '<NAME>', 'Assembly', '<EMAIL>', '080343y655', 'k', 'k', 'k', 'k', 15), (16, 'j', 'j', '<EMAIL>', '08052461631', 'k', 'l', 'k', 'k', 16), (17, 'uuiiu', 'chosen', '<EMAIL>', '08134942710', 'kl', 'k', 'k', 'k', 17), (18, 'l', 'chosen', '<EMAIL>', '08076235555555', 'sdkl;;dl', 'k', 'k', 'k', 18); -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` int(10) UNSIGNED NOT NULL, `folder` int(10) UNSIGNED DEFAULT NULL COMMENT 'folder with images', `image` varchar(255) NOT NULL, `time` int(10) UNSIGNED NOT NULL COMMENT 'time created', `time_update` int(10) UNSIGNED NOT NULL COMMENT 'time updated', `visibility` tinyint(1) NOT NULL DEFAULT '1', `shop_categorie` int(11) NOT NULL, `quantity` int(11) NOT NULL DEFAULT '0', `procurement` int(10) UNSIGNED NOT NULL, `in_slider` tinyint(1) NOT NULL DEFAULT '0', `url` varchar(255) NOT NULL, `virtual_products` varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `brand_id` int(5) DEFAULT NULL, `position` int(10) UNSIGNED NOT NULL, `vendor_id` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `products` -- INSERT INTO `products` (`id`, `folder`, `image`, `time`, `time_update`, `visibility`, `shop_categorie`, `quantity`, `procurement`, `in_slider`, `url`, `virtual_products`, `brand_id`, `position`, `vendor_id`) VALUES (1, 1534987848, 'slide-04.jpg', 1534987994, 1537642658, 1, 1, 7, 0, 1, 'Hot_Men_Suit_1', '', NULL, 1, 0), (2, 1534988400, 'slide-03.jpg', 1534988647, 1537642710, 1, 3, 50, 0, 1, 'City_Scape_2', '', NULL, 3, 0), (3, 1534988709, 'slide-02.jpg', 1534988816, 1537642682, 1, 3, 7, 0, 1, 'Food_Barbarque_3', '', NULL, 2, 0), (4, 1534988985, 'design.jpg', 1534989043, 1535933119, 1, 1, 4, 1, 0, 'Shoes_for_men_4', '', NULL, 0, 0), (5, 1535205750, 'musa.jpg', 1535205840, 1535205877, 1, 2, 12, 0, 0, 'Rice_Bolgne_5', 'https://go.me/shjs', NULL, 0, 0), (6, 1535205889, 'slide-01.jpg', 1535205935, 1537642631, 1, 1, 31, 1, 1, 'Gas_Wings_6', '', NULL, 0, 0), (7, 1535205944, 'messi_(1).jpg', 1535206022, 0, 1, 8, 312, 0, 0, 'Arewa_Swag_7', '', NULL, 0, 0), (8, 1535206037, '348962-PAPPEY-332.jpg', 1535206119, 0, 1, 1, 333, 0, 0, 'Sag_Botumo_8', '', NULL, 0, 0), (9, 1535814627, '339250-PAJEZ7-269.jpg', 1535814765, 0, 1, 5, 5, 0, 0, 'Sweat_Shirt_9', '', NULL, 0, 0); -- -------------------------------------------------------- -- -- Table structure for table `products_translations` -- CREATE TABLE `products_translations` ( `id` int(11) NOT NULL, `title` varchar(255) NOT NULL, `description` longtext NOT NULL, `basic_description` text NOT NULL, `price` varchar(20) NOT NULL, `old_price` varchar(20) NOT NULL, `abbr` varchar(5) NOT NULL, `for_id` int(11) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `products_translations` -- INSERT INTO `products_translations` (`id`, `title`, `description`, `basic_description`, `price`, `old_price`, `abbr`, `for_id`) VALUES (2, 'Hot Men Suit', '<p>Three piece suit that fits better than anything you can imagine</p>\r\n', '<p>The suit that real mean where</p>\r\n', '25000', '', 'en', 1), (5, 'City Scape', '<p>Get this gorgeous picture of the city from the award winning artiste <NAME></p>\r\n', '<p><span style=\"color:#F0FFFF;\">For the moment, the platform maintains orders from customers who are enrolled in the administration as well as in the vendors panel</span></p>\r\n', '34000.90', '45000', 'en', 2), (8, 'Food Barbarque', '<p><span style=\"font-family:trebuchet ms,helvetica,sans-serif;\">You have not enjoyed a barbarque like this ever before. <span style=\"color: rgb(36, 41, 46); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;\">For the moment, the platform maintains orders from customers who are enrolled in the administration as well as in the vendors panel.</span></span></p>\r\n', '<p><span style=\"font-family:trebuchet ms,helvetica,sans-serif;\">You have not enjoyed a barbarque like this ever before</span></p>\r\n', '7800', '9000', 'en', 3), (11, 'Shoes for men', '<p>Get the best shoe</p>\r\n', '', '12000', '15000', 'en', 4), (14, '<NAME>', '<p>The best rice our there</p>\r\n', '', '300', '', 'en', 5), (17, 'Gas Wings', '<p>Bootstrap naming conventions carry styles of their own, col-XS-1 refers to a column being 8.33% of the containing element wide</p>\r\n', '<p>Bootstrap naming conventions carry styles of their own, col-XS-1 refers to a column being 8.33% of the containing element wide</p>\r\n', '600', '', 'en', 6), (20, '<NAME>', '<p>Get the best Arewa Swag</p>\r\n', '', '6990', '7500', 'en', 7), (23, '<NAME>', '<p>Sag borutme from sawah Gajha. The origianl Sawah dynasty remains</p>\r\n', '', '5000', '7000', 'en', 8), (25, 'Sweat Shirt', '<p>Making sense shirt</p>\r\n', '', '4500', '', 'en', 9); -- -------------------------------------------------------- -- -- Table structure for table `seo_pages` -- CREATE TABLE `seo_pages` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(20) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `seo_pages` -- INSERT INTO `seo_pages` (`id`, `name`) VALUES (1, 'home'), (2, 'checkout'), (3, 'contacts'), (4, 'blog'), (8, 'shop'); -- -------------------------------------------------------- -- -- Table structure for table `seo_pages_translations` -- CREATE TABLE `seo_pages_translations` ( `id` int(11) NOT NULL, `title` varchar(200) NOT NULL, `description` varchar(200) NOT NULL, `abbr` varchar(5) NOT NULL, `page_type` varchar(20) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `seo_pages_translations` -- INSERT INTO `seo_pages_translations` (`id`, `title`, `description`, `abbr`, `page_type`) VALUES (1, '', '', 'bg', 'home'), (2, 'Mediva Coutoure', 'Affordable and Unique Women Clothing', 'en', 'home'), (3, '', '', 'gr', 'home'), (4, '', '', 'bg', 'checkout'), (5, 'Checkout', '', 'en', 'checkout'), (6, '', '', 'gr', 'checkout'), (7, '', '', 'bg', 'contacts'), (8, 'Contact Us', 'Contact us', 'en', 'contacts'), (9, '', '', 'gr', 'contacts'), (10, '', '', 'bg', 'blog'), (11, 'Blog', 'News and Articles from our blog', 'en', 'blog'), (12, '', '', 'gr', 'blog'), (13, 'Shop Mediva Coutoure ', 'Shop From Mediva', 'en', 'shop'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `first_name` varchar(100) NOT NULL, `last_name` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `phone` varchar(30) NOT NULL, `address` text NOT NULL, `city` varchar(20) NOT NULL, `post_code` varchar(10) NOT NULL, `notes` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `shipping_addresses` -- INSERT INTO `shipping_addresses` (`id`, `user_id`, `first_name`, `last_name`, `email`, `phone`, `address`, `city`, `post_code`, `notes`) VALUES (1, 1, 'Tim', 'Chosen', '<EMAIL>', '08134942718', 'St James House, Ademola Adetokunbo Crescent', 'Wuse 2', '900288', ''), (2, 2, '<NAME>', 'chosen', '<EMAIL>', '+3727122576', 'my house', 'Oslo', '12345e678', 'noting'); -- -------------------------------------------------------- -- -- Table structure for table `shop_categories` -- CREATE TABLE `shop_categories` ( `id` int(10) UNSIGNED NOT NULL, `sub_for` int(11) NOT NULL, `position` int(10) UNSIGNED NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `shop_categories` -- INSERT INTO `shop_categories` (`id`, `sub_for`, `position`) VALUES (1, 0, 0), (2, 0, 0), (3, 0, 0), (4, 3, 0), (5, 3, 0), (6, 4, 0), (7, 6, 4), (8, 5, 0), (9, 0, 0); -- -------------------------------------------------------- -- -- Table structure for table `shop_categories_translations` -- CREATE TABLE `shop_categories_translations` ( `id` int(11) NOT NULL, `name` varchar(50) NOT NULL, `abbr` varchar(5) NOT NULL, `for_id` int(11) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `shop_categories_translations` -- INSERT INTO `shop_categories_translations` (`id`, `name`, `abbr`, `for_id`) VALUES (2, 'Sport', 'en', 1), (5, 'Bags', 'en', 2), (8, 'Music', 'en', 3), (11, 'Audio', 'en', 4), (14, 'Video', 'en', 5), (17, 'Promo', 'en', 6), (20, 'Free Beats', 'en', 7), (23, 'Movies', 'en', 8), (24, 'Cars', 'en', 9); -- -------------------------------------------------------- -- -- Table structure for table `subscribed` -- CREATE TABLE `subscribed` ( `id` int(10) UNSIGNED NOT NULL, `email` varchar(255) NOT NULL, `browser` varchar(255) NOT NULL, `ip` varchar(255) NOT NULL, `time` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `subscribed` -- INSERT INTO `subscribed` (`id`, `email`, `browser`, `ip`, `time`) VALUES (1, '<EMAIL>', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36', '::1', '1534990286'), (2, '<EMAIL>', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/60.0', '127.0.0.1', '1535533683'), (3, '<EMAIL>', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36', '::1', '1535803678'), (4, '<EMAIL>', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/60.0', '127.0.0.1', '1536750379'), (5, '<EMAIL>', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/60.0', '127.0.0.1', '1537806861'); -- -------------------------------------------------------- -- -- Table structure for table `textual_pages_tanslations` -- CREATE TABLE `textual_pages_tanslations` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `description` longtext NOT NULL, `abbr` varchar(5) NOT NULL, `for_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `textual_pages_tanslations` -- INSERT INTO `textual_pages_tanslations` (`id`, `name`, `description`, `abbr`, `for_id`) VALUES (2, 'Terms', '<ol>\r\n <li>\r\n <p>Every file name is for the page that will show.</p>\r\n </li>\r\n <li>\r\n <p>Page urls are</p>\r\n </li>\r\n</ol>\r\n\r\n<ul>\r\n <li>/ - for home page (home.php)</li>\r\n <li>/checkout - checkout page (checkout.php)</li>\r\n <li>/shopping-cart - shopping cart page (shopping_cart.php)</li>\r\n <li>/contacts - contacts page (contacts.php)</li>\r\n <li>/page/pageName - every textual page added from administration (dynPage.php)</li>\r\n <li>/blog - blog (blog.php)</li>\r\n <li>/blog/myarticle_1 - blog articles preview (view_blog_post.php)</li>\r\n <li>/myProduct_1 - online store product preview (view_product.php)</li>\r\n</ul>\r\n\r\n<ol start=\"4\">\r\n <li><em>_parts/footer.php</em>&nbsp;and&nbsp;<em>_parts/header.php</em>&nbsp;are loaded in every of this pages</li>\r\n <li>Url for load cssfile.css from your css folder is&nbsp;<em>base_url(\'templatecss/nameOfFile.css\')</em></li>\r\n <li>Url for load jsfile.js from your js folder is&nbsp;<em>base_url(\'templatejs/nameOfFile.js\')</em></li>\r\n <li>Comming variables from controllers to views you can see in each conroller (names of controllers are equal to views)</li>\r\n</ol>\r\n', 'en', 2), (5, 'Privacy', '', 'en', 3); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(10) UNSIGNED NOT NULL, `username` varchar(50) NOT NULL, `password` varchar(32) NOT NULL, `email` varchar(100) NOT NULL, `notify` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'notifications by email', `last_login` int(10) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `username`, `password`, `email`, `notify`, `last_login`) VALUES (1, 'admin', '<PASSWORD>', '<EMAIL>', 0, 1539158473); -- -------------------------------------------------------- -- -- Table structure for table `users_public` -- CREATE TABLE `users_public` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `phone` varchar(100) NOT NULL, `password` varchar(40) NOT NULL, `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `users_public` -- INSERT INTO `users_public` (`id`, `name`, `email`, `phone`, `password`, `created`) VALUES (1, '<NAME>', '<EMAIL>', '0<PASSWORD>', 'bbaf56aa0f6f5ff07a642541422784f2', '2018-08-23 01:52:34'), (2, '<NAME>', '<EMAIL>', '08134942718', 'bbaf56aa0f6f5ff07a642541422784f2', '2018-08-24 10:39:20'); -- -------------------------------------------------------- -- -- Table structure for table `value_store` -- CREATE TABLE `value_store` ( `id` int(10) UNSIGNED NOT NULL, `thekey` varchar(50) NOT NULL, `value` longtext NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `value_store` -- INSERT INTO `value_store` (`id`, `thekey`, `value`) VALUES (1, 'sitelogo', 'mediva.png'), (2, 'navitext', ''), (3, 'footercopyright', 'Powered by Shop.Online © 2015 - 2018 All right reserved. '), (4, 'contactspage', 'Hello dear client'), (5, 'footerContactAddr', 'Wuse 2, Abuja, FCT'), (6, 'footerContactEmail', '<EMAIL>'), (7, 'footerContactPhone', '08134942718'), (8, 'googleMaps', ''), (9, 'footerAboutUs', 'You know we are simply great. Yes We are a Good shop '), (10, 'footerSocialFacebook', 'https://fb.me/cavewebs'), (11, 'footerSocialTwitter', 'cavewebs'), (12, 'footerSocialGooglePlus', 'cavewebs'), (13, 'footerSocialPinterest', 'cavewebs'), (14, 'footerSocialYoutube', 'cavewebs'), (16, 'contactsEmailTo', '<EMAIL>'), (17, 'shippingOrder', '10000'), (18, 'addJs', ''), (19, 'publicQuantity', '0'), (20, 'paypal_email', ''), (21, 'paypal_sandbox', '0'), (22, 'publicDateAdded', '0'), (23, 'googleApi', ''), (24, 'template', 'tembe'), (25, 'cashondelivery_visibility', '1'), (26, 'showBrands', '0'), (27, 'showInSlider', '1'), (28, 'codeDiscounts', '1'), (29, 'virtualProducts', '1'), (30, 'multiVendor', '0'), (31, 'newStyle', ''); -- -------------------------------------------------------- -- -- Table structure for table `vendors` -- CREATE TABLE `vendors` ( `id` int(11) NOT NULL, `name` varchar(50) DEFAULT NULL, `url` varchar(50) NOT NULL, `email` varchar(50) NOT NULL, `password` varchar(100) NOT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `vendors` -- INSERT INTO `vendors` (`id`, `name`, `url`, `email`, `password`, `updated_at`, `created_at`) VALUES (1, NULL, '', '<EMAIL>', <PASSWORD>', '2018-08-25 18:40:54', '2018-08-25 18:40:54'); -- -------------------------------------------------------- -- -- Table structure for table `vendors_orders` -- CREATE TABLE `vendors_orders` ( `id` int(10) UNSIGNED NOT NULL, `order_id` int(11) NOT NULL, `products` text NOT NULL, `date` int(10) UNSIGNED NOT NULL, `referrer` varchar(255) NOT NULL, `clean_referrer` varchar(255) NOT NULL, `payment_type` varchar(255) NOT NULL, `paypal_status` varchar(10) DEFAULT NULL, `processed` tinyint(1) NOT NULL DEFAULT '0', `viewed` tinyint(1) NOT NULL DEFAULT '0', `confirmed` tinyint(1) NOT NULL DEFAULT '0', `discount_code` varchar(20) NOT NULL, `vendor_id` int(10) UNSIGNED NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `vendors_orders_clients` -- CREATE TABLE `vendors_orders_clients` ( `id` int(11) NOT NULL, `first_name` varchar(100) NOT NULL, `last_name` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `phone` varchar(30) NOT NULL, `address` text NOT NULL, `city` varchar(20) NOT NULL, `post_code` varchar(10) NOT NULL, `notes` text NOT NULL, `for_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Indexes for dumped tables -- -- -- Indexes for table `active_pages` -- ALTER TABLE `active_pages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_notifications` -- ALTER TABLE `admin_notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `bank_accounts` -- ALTER TABLE `bank_accounts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `blog_posts` -- ALTER TABLE `blog_posts` ADD UNIQUE KEY `id` (`id`); -- -- Indexes for table `blog_translations` -- ALTER TABLE `blog_translations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `confirm_links` -- ALTER TABLE `confirm_links` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cookie_law` -- ALTER TABLE `cookie_law` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cookie_law_translations` -- ALTER TABLE `cookie_law_translations` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `UNIQUE` (`abbr`,`for_id`) USING BTREE; -- -- Indexes for table `discount_codes` -- ALTER TABLE `discount_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `history` -- ALTER TABLE `history` ADD PRIMARY KEY (`id`); -- -- Indexes for table `keys` -- ALTER TABLE `keys` ADD PRIMARY KEY (`id`); -- -- Indexes for table `languages` -- ALTER TABLE `languages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `orders_clients` -- ALTER TABLE `orders_clients` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products_translations` -- ALTER TABLE `products_translations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seo_pages` -- ALTER TABLE `seo_pages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seo_pages_translations` -- ALTER TABLE `seo_pages_translations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shop_categories` -- ALTER TABLE `shop_categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shop_categories_translations` -- ALTER TABLE `shop_categories_translations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscribed` -- ALTER TABLE `subscribed` ADD PRIMARY KEY (`id`); -- -- Indexes for table `textual_pages_tanslations` -- ALTER TABLE `textual_pages_tanslations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users_public` -- ALTER TABLE `users_public` ADD PRIMARY KEY (`id`); -- -- Indexes for table `value_store` -- ALTER TABLE `value_store` ADD PRIMARY KEY (`id`), ADD KEY `key` (`thekey`); -- -- Indexes for table `vendors` -- ALTER TABLE `vendors` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `unique` (`email`), ADD UNIQUE KEY `name` (`name`); -- -- Indexes for table `vendors_orders` -- ALTER TABLE `vendors_orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `vendors_orders_clients` -- ALTER TABLE `vendors_orders_clients` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `active_pages` -- ALTER TABLE `active_pages` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `admin_notifications` -- ALTER TABLE `admin_notifications` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `bank_accounts` -- ALTER TABLE `bank_accounts` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `blog_posts` -- ALTER TABLE `blog_posts` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `blog_translations` -- ALTER TABLE `blog_translations` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `confirm_links` -- ALTER TABLE `confirm_links` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19; -- -- AUTO_INCREMENT for table `cookie_law` -- ALTER TABLE `cookie_law` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `cookie_law_translations` -- ALTER TABLE `cookie_law_translations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `discount_codes` -- ALTER TABLE `discount_codes` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `history` -- ALTER TABLE `history` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=495; -- -- AUTO_INCREMENT for table `keys` -- ALTER TABLE `keys` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `languages` -- ALTER TABLE `languages` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19; -- -- AUTO_INCREMENT for table `orders_clients` -- ALTER TABLE `orders_clients` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `products_translations` -- ALTER TABLE `products_translations` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26; -- -- AUTO_INCREMENT for table `seo_pages` -- ALTER TABLE `seo_pages` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `seo_pages_translations` -- ALTER TABLE `seo_pages_translations` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `shop_categories` -- ALTER TABLE `shop_categories` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `shop_categories_translations` -- ALTER TABLE `shop_categories_translations` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25; -- -- AUTO_INCREMENT for table `subscribed` -- ALTER TABLE `subscribed` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `textual_pages_tanslations` -- ALTER TABLE `textual_pages_tanslations` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `users_public` -- ALTER TABLE `users_public` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `value_store` -- ALTER TABLE `value_store` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32; -- -- AUTO_INCREMENT for table `vendors` -- ALTER TABLE `vendors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `vendors_orders` -- ALTER TABLE `vendors_orders` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `vendors_orders_clients` -- ALTER TABLE `vendors_orders_clients` 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 */;
<gh_stars>0 --EVALUATION_STATUS_CODE --need to drop the relationship in order to reload data ALTER TABLE IF EXISTS camdecmpswks.monitor_plan DROP CONSTRAINT IF EXISTS fk_monitor_plan_eval_status_code; ALTER TABLE IF EXISTS camdecmpsmd.severity_code DROP COLUMN IF EXISTS eval_status_cd; ALTER TABLE IF EXISTS camdecmpswks.monitor_plan DROP COLUMN IF EXISTS eval_status_cd; DROP TABLE IF EXISTS camdecmpsmd.eval_status_code; -- PROCESS_CODE ALTER TABLE IF EXISTS camdecmpsmd.process_code DROP COLUMN IF EXISTS process_cd_name; ALTER TABLE IF EXISTS camdecmpsmd.process_code DROP COLUMN IF EXISTS parameter_group_override_cd; ALTER TABLE IF EXISTS camdecmpsmd.process_code DROP COLUMN IF EXISTS process_group_cd; -- QUAL_TYPE_CODE ALTER TABLE IF EXISTS camdecmpsmd.qual_type_code DROP COLUMN IF EXISTS qual_type_group_cd;
<filename>zico.sql /* Navicat MySQL Data Transfer Source Server : localhostest Source Server Version : 50505 Source Host : localhost:3306 Source Database : zico Target Server Type : MYSQL Target Server Version : 50505 File Encoding : 65001 Date: 2018-12-27 18:21:56 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for items -- ---------------------------- DROP TABLE IF EXISTS `items`; CREATE TABLE `items` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` 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, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of items -- ---------------------------- INSERT INTO `items` VALUES ('1', 'Bai bao 1', 'Bài viết thứ nhất', '2018-11-20 04:38:25', '2018-11-20 04:38:25'); -- ---------------------------- -- Table structure for migrations -- ---------------------------- DROP TABLE IF EXISTS `migrations`; CREATE TABLE `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=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of migrations -- ---------------------------- INSERT INTO `migrations` VALUES ('1', '2014_10_12_000000_create_users_table', '1'); INSERT INTO `migrations` VALUES ('2', '2014_10_12_100000_create_password_resets_table', '1'); INSERT INTO `migrations` VALUES ('3', '2018_11_20_030949_create_items_table', '2'); INSERT INTO `migrations` VALUES ('4', '2018_11_20_031244_entrust_setup_tables', '2'); -- ---------------------------- -- Table structure for password_resets -- ---------------------------- DROP TABLE IF EXISTS `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, KEY `password_resets_email_index` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of password_resets -- ---------------------------- -- ---------------------------- -- Table structure for permissions -- ---------------------------- DROP TABLE IF EXISTS `permissions`; CREATE TABLE `permissions` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `display_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `permissions_name_unique` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of permissions -- ---------------------------- INSERT INTO `permissions` VALUES ('1', 'role-list', 'Display Role Listing', 'See only Listing Of Role', '2018-11-20 03:26:39', '2018-11-20 03:26:39'); INSERT INTO `permissions` VALUES ('2', 'role-create', 'Create Role', 'Create New Role', '2018-11-20 03:26:39', '2018-11-20 03:26:39'); INSERT INTO `permissions` VALUES ('3', 'role-edit', 'Edit Role', 'Edit Role', '2018-11-20 03:26:39', '2018-11-20 03:26:39'); INSERT INTO `permissions` VALUES ('4', 'role-delete', 'Delete Role', 'Delete Role', '2018-11-20 03:26:39', '2018-11-20 03:26:39'); INSERT INTO `permissions` VALUES ('5', 'item-list', 'Display Item Listing', 'See only Listing Of Item', '2018-11-20 03:26:39', '2018-11-20 03:26:39'); INSERT INTO `permissions` VALUES ('6', 'item-create', 'Create Item', 'Create New Item', '2018-11-20 03:26:39', '2018-11-20 03:26:39'); INSERT INTO `permissions` VALUES ('7', 'item-edit', 'Edit Item', 'Edit Item', '2018-11-20 03:26:39', '2018-11-20 03:26:39'); INSERT INTO `permissions` VALUES ('8', 'item-delete', 'Delete Item', 'Delete Item', '2018-11-20 03:26:39', '2018-11-20 03:26:39'); -- ---------------------------- -- Table structure for permission_role -- ---------------------------- DROP TABLE IF EXISTS `permission_role`; CREATE TABLE `permission_role` ( `permission_id` int(10) unsigned NOT NULL, `role_id` int(10) unsigned NOT NULL, PRIMARY KEY (`permission_id`,`role_id`), KEY `permission_role_role_id_foreign` (`role_id`), CONSTRAINT `permission_role_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `permission_role_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of permission_role -- ---------------------------- INSERT INTO `permission_role` VALUES ('1', '1'); INSERT INTO `permission_role` VALUES ('1', '2'); INSERT INTO `permission_role` VALUES ('2', '1'); INSERT INTO `permission_role` VALUES ('2', '2'); INSERT INTO `permission_role` VALUES ('3', '1'); INSERT INTO `permission_role` VALUES ('3', '2'); INSERT INTO `permission_role` VALUES ('4', '2'); INSERT INTO `permission_role` VALUES ('5', '1'); INSERT INTO `permission_role` VALUES ('5', '2'); INSERT INTO `permission_role` VALUES ('6', '1'); INSERT INTO `permission_role` VALUES ('6', '2'); INSERT INTO `permission_role` VALUES ('7', '1'); INSERT INTO `permission_role` VALUES ('7', '2'); INSERT INTO `permission_role` VALUES ('8', '1'); INSERT INTO `permission_role` VALUES ('8', '2'); -- ---------------------------- -- Table structure for posts -- ---------------------------- DROP TABLE IF EXISTS `posts`; CREATE TABLE `posts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `content` varchar(255) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of posts -- ---------------------------- INSERT INTO `posts` VALUES ('1', 'check', 'allow', '4'); -- ---------------------------- -- Table structure for roles -- ---------------------------- DROP TABLE IF EXISTS `roles`; CREATE TABLE `roles` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `display_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `roles_name_unique` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of roles -- ---------------------------- INSERT INTO `roles` VALUES ('1', 'admin', 'Admin', 'Đây là quyền cho admin', null, '2018-11-20 04:28:56'); INSERT INTO `roles` VALUES ('2', 'superadmin', 'Super Admin', 'Đây là quyền dành cho super admin', null, '2018-11-20 04:20:46'); INSERT INTO `roles` VALUES ('3', 'guest', 'Guest', null, null, null); INSERT INTO `roles` VALUES ('6', 'user', 'User', null, null, null); INSERT INTO `roles` VALUES ('7', 'seller', 'seller', null, null, null); INSERT INTO `roles` VALUES ('8', 'only gust add', 'only gust add', null, null, null); -- ---------------------------- -- Table structure for role_user -- ---------------------------- DROP TABLE IF EXISTS `role_user`; CREATE TABLE `role_user` ( `user_id` int(10) unsigned NOT NULL, `role_id` int(10) unsigned NOT NULL, PRIMARY KEY (`user_id`,`role_id`), KEY `role_user_role_id_foreign` (`role_id`), CONSTRAINT `role_user_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `role_user_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of role_user -- ---------------------------- INSERT INTO `role_user` VALUES ('4', '3'); INSERT INTO `role_user` VALUES ('5', '2'); -- ---------------------------- -- Table structure for users -- ---------------------------- DROP TABLE IF EXISTS `users`; CREATE TABLE `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, `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, PRIMARY KEY (`id`), UNIQUE KEY `users_email_unique` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of users -- ---------------------------- INSERT INTO `users` VALUES ('4', '<NAME>', '<EMAIL>', <PASSWORD>', 'WRAfVCoc1KJkhx66wovqkOOplUROsr5rGqTVi4EhzssR8kE2bDpSeKESGyDD', '2018-11-20 03:47:41', '2018-11-20 03:47:41'); INSERT INTO `users` VALUES ('5', 'DO MInh DUc', '<EMAIL>', <PASSWORD>$<KEY>', '<KEY>', '2018-11-20 04:01:53', '2018-11-20 04:01:53');
CREATE PROCEDURE [dbo].[Album_Upsert] ( @Id UNIQUEIDENTIFIER, @LibraryId UNIQUEIDENTIFIER, @ArtistId UNIQUEIDENTIFIER, @Name NVARCHAR(255), @Year NCHAR(4) ) AS BEGIN SET NOCOUNT ON; SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED; IF EXISTS (SELECT 1 FROM [dbo].[Album] WHERE [Id] = @Id) BEGIN UPDATE [dbo].[Album] SET [Name] = @Name, [Year] = @Year WHERE [Id] = @Id END ELSE BEGIN INSERT INTO [dbo].[Album]( [Id], [LibraryId], [ArtistId], [Name], [Year] ) VALUES( @Id, @LibraryId, @ArtistId, @Name, @Year ) END END
CREATE DATABASE IF NOT EXISTS `dwes_ord_2` /*!40100 DEFAULT CHARACTER SET utf8 */; USE `dwes_ord_2`; -- MySQL dump 10.13 Distrib 8.0.16, for macos10.14 (x86_64) -- -- Host: 127.0.0.1 Database: dwes_ord_2 -- ------------------------------------------------------ -- Server version 5.7.26 /*!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 */; 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 `curso` -- DROP TABLE IF EXISTS `curso`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `curso` ( `id` int(11) NOT NULL AUTO_INCREMENT, `codigo` int(11) NOT NULL, `nombre` varchar(45) DEFAULT NULL, `descripcion` varchar(45) DEFAULT NULL, `usuario_username` varchar(45) NOT NULL, PRIMARY KEY (`id`), KEY `fk_cuso_usuario_idx` (`usuario_username`), CONSTRAINT `fk_cuso_usuario` FOREIGN KEY (`usuario_username`) REFERENCES `usuario` (`username`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `curso` -- LOCK TABLES `curso` WRITE; /*!40000 ALTER TABLE `curso` DISABLE KEYS */; INSERT INTO `curso` VALUES (1,1,'DAW','Diseny d\'Applicacións Web','paugonzalez'),(2,2,'PRO','Projecte','paugonzalez'),(3,1,'DAW','Diseny d\'Applicacións Web','marbadia'),(4,3,'DWES','Disseny Web d\'Entorn Servidor','marbadia'); /*!40000 ALTER TABLE `curso` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usuario` -- DROP TABLE IF EXISTS `usuario`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `usuario` ( `nom` varchar(45) DEFAULT NULL, `pasword` varchar(255) DEFAULT NULL, `username` varchar(45) NOT NULL, PRIMARY KEY (`username`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usuario` -- LOCK TABLES `usuario` WRITE; /*!40000 ALTER TABLE `usuario` DISABLE KEYS */; INSERT INTO `usuario` VALUES ('<NAME>','1234','adriamayne'),('<NAME>','12345','marbadia'),('<NAME>','1234','paugonzalez'); /*!40000 ALTER TABLE `usuario` 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-06-03 18:09:31
CREATE TABLE [dbo].[CharacterAttributes] ( [CallID] UNIQUEIDENTIFIER, [AccruedRemapCooldownDate] DATETIME NULL, [BonusRemaps] INT NULL, [Charisma] INT NULL, [Intelligence] INT NULL, [LastRemapDate] DATETIME NULL, [Memory] INT NULL, [Perception] INT NULL, [Willpower] INT NULL ) GO CREATE CLUSTERED INDEX IX_CharacterAttributes_CallID ON dbo.[CharacterAttributes] (CallID)
<filename>CSharp-DB-Fundamentals/Databases Basics - MS SQL Server/Exams/Exam - 19 February 2017/Exam - 19 February 2017/07. Ingredients from Bulgaria and Greece.sql<gh_stars>0 SELECT TOP 15 i.Name, i.Description, c.Name FROM Ingredients AS [i] INNER JOIN Countries AS [c] ON c.Id = i.OriginCountryId AND c.Name IN ('Bulgaria', 'Greece') ORDER BY i.Name, c.Name
SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID('[dbo].[uspAddNewMessageToScheduler]') AND type_desc IN ('SQL_STORED_PROCEDURE')) BEGIN PRINT 'Dropping procedure [dbo].[uspAddNewMessageToScheduler]' DROP PROCEDURE [dbo].[uspAddNewMessageToScheduler] END GO PRINT 'Creating procedure [dbo].[uspAddNewMessageToScheduler]' GO CREATE PROCEDURE [dbo].[uspAddNewMessageToScheduler] @WakeTime DATETIME, @BindingKey NVARCHAR(1000), @CancellationKey NVARCHAR(255) = NULL, @Message VARBINARY(MAX) AS DECLARE @NewID INT BEGIN TRANSACTION INSERT INTO WorkItems (BindingKey, CancellationKey, InnerMessage) VALUES (@BindingKey, @CancellationKey, @Message) -- get the ID of the inserted record for use in the child table SELECT @NewID = SCOPE_IDENTITY() IF @@ERROR > 0 ROLLBACK TRANSACTION ELSE -- only setup the child status record if the WorkItem insert succeeded BEGIN INSERT INTO WorkItemStatus (WorkItemID, [Status], WakeTime) OUTPUT INSERTED.WorkItemID, INSERTED.status, INSERTED.WakeTime VALUES (@NewID, 0, @WakeTime) IF @@ERROR > 0 ROLLBACK TRANSACTION ELSE BEGIN COMMIT TRANSACTION END END
-- misc2.test -- -- db eval {SELECT rowid FROM t1} SELECT rowid FROM t1
-- phpMyAdmin SQL Dump -- version 4.5.1 -- http://www.phpmyadmin.net -- -- Värd: 127.0.0.1 -- Tid vid skapande: 23 jan 2017 kl 15:01 -- Serverversion: 10.1.16-MariaDB -- PHP-version: 7.0.9 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; 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 */; -- -- Databas: `kajes_linkify` -- CREATE DATABASE IF NOT EXISTS `kajes_linkify` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; USE `kajes_linkify`; -- -------------------------------------------------------- -- -- Tabellstruktur `posts` -- DROP TABLE IF EXISTS `posts`; CREATE TABLE `posts` ( `postID` int(10) UNSIGNED NOT NULL, `authorID` int(10) UNSIGNED NOT NULL, `post_title` varchar(255) DEFAULT NULL, `post_link` varchar(255) DEFAULT NULL, `post_content` text, `posted_on` datetime DEFAULT NULL, `updated_on` datetime DEFAULT NULL, `voteCount` int(11) DEFAULT '0', `parent_id` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Tabellstruktur `tokens` -- DROP TABLE IF EXISTS `tokens`; CREATE TABLE `tokens` ( `cookieID` int(10) UNSIGNED NOT NULL, `uid` int(10) UNSIGNED NOT NULL, `first` varchar(128) DEFAULT NULL, `second` varchar(256) DEFAULT NULL, `expire` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Tabellstruktur `users` -- DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `uid` int(10) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `password` varchar(60) NOT NULL, `bio` mediumtext, `avatarID` varchar(100) DEFAULT NULL, `avatarImageType` varchar(4) DEFAULT NULL, `votedOn` varchar(1000) NOT NULL DEFAULT '[]' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Index för dumpade tabeller -- -- -- Index för tabell `posts` -- ALTER TABLE `posts` ADD PRIMARY KEY (`postID`), ADD KEY `authorID` (`authorID`); -- -- Index för tabell `tokens` -- ALTER TABLE `tokens` ADD PRIMARY KEY (`cookieID`), ADD KEY `uid` (`uid`); -- -- Index för tabell `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`uid`); -- -- AUTO_INCREMENT för dumpade tabeller -- -- -- AUTO_INCREMENT för tabell `posts` -- ALTER TABLE `posts` MODIFY `postID` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=45; -- -- AUTO_INCREMENT för tabell `tokens` -- ALTER TABLE `tokens` MODIFY `cookieID` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24; -- -- AUTO_INCREMENT för tabell `users` -- ALTER TABLE `users` MODIFY `uid` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; -- -- Restriktioner för dumpade tabeller -- -- -- Restriktioner för tabell `posts` -- ALTER TABLE `posts` ADD CONSTRAINT `posts_ibfk_1` FOREIGN KEY (`authorID`) REFERENCES `users` (`uid`); -- -- Restriktioner för tabell `tokens` -- ALTER TABLE `tokens` ADD CONSTRAINT `tokens_ibfk_1` FOREIGN KEY (`uid`) REFERENCES `users` (`uid`); /*!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 */;
CREATE TABLE `phone_first_order` ( `id_phone_first_order` int(11) unsigned NOT NULL AUTO_INCREMENT, `id_phone` int(11) unsigned DEFAULT NULL, `id_order` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`id_phone_first_order`), KEY `id_phone_idx` (`id_phone`), KEY `id_order_idx` (`id_order`), KEY `combo_idx` (`id_order`, `id_phone`), CONSTRAINT `phone_first_order_ibfk_1` FOREIGN KEY (`id_phone`) REFERENCES `phone` (`id_phone`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `phone_first_order_ibfk_2` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
<reponame>Shuttl-Tech/antlr_psql -- file:alter_table.sql ln:1287 expect:true alter table anothertab drop constraint IF EXISTS anothertab_chk
/* Verifica se existe alguma atividade disponível para o usuário na fila de atividades de seu perfil */ SELECT id FROM ( SELECT a.id, a.etapa_id, a.unidade_trabalho_id, a_ant.tipo_situacao_id AS situacao_ant, pproj.prioridade AS p_prioridade, b.prioridade AS b_prioridade, pse.prioridade AS pse_prioridade, ut.prioridade AS ut_prioridade, CASE WHEN pdo.tipo_perfil_dificuldade_id IS NULL THEN 0 WHEN pdo.tipo_perfil_dificuldade_id = 1 THEN ut.dificuldade WHEN pdo.tipo_perfil_dificuldade_id = 2 THEN -ut.dificuldade WHEN pdo.tipo_perfil_dificuldade_id = 3 THEN coalesce(utstats.diff_count, 0) END AS dificuldade_rank FROM macrocontrole.atividade AS a INNER JOIN macrocontrole.etapa AS e ON e.id = a.etapa_id INNER JOIN macrocontrole.perfil_producao_etapa AS pse ON pse.subfase_id = e.subfase_id AND pse.tipo_etapa_id = e.tipo_etapa_id INNER JOIN macrocontrole.perfil_producao_operador AS ppo ON ppo.perfil_producao_id = pse.perfil_producao_id INNER JOIN dgeo.usuario AS u ON u.id = ppo.usuario_id INNER JOIN macrocontrole.unidade_trabalho AS ut ON ut.id = a.unidade_trabalho_id INNER JOIN macrocontrole.bloco AS b ON b.id = ut.bloco_id INNER JOIN macrocontrole.lote AS l ON l.id = ut.lote_id INNER JOIN macrocontrole.perfil_projeto_operador AS pproj ON pproj.projeto_id = l.projeto_id AND pproj.usuario_id = ppo.usuario_id LEFT JOIN macrocontrole.perfil_dificuldade_operador AS pdo ON pdo.projeto_id = l.projeto_id AND pdo.subfase_id = e.subfase_id AND pdo.usuario_id = $1 LEFT JOIN ( SELECT ut.dificuldade, count(*) AS diff_count FROM macrocontrole.perfil_dificuldade_operador AS pdo INNER JOIN macrocontrole.lote AS l ON l.projeto_id = pdo.projeto_id INNER JOIN macrocontrole.unidade_trabalho AS ut ON ut.subfase_id = pdo.subfase_id AND l.id = ut.lote_id INNER JOIN macrocontrole.atividade AS a ON a.unidade_trabalho_id = ut.id AND a.usuario_id = pdo.usuario_id WHERE pdo.usuario_id = $1 AND a.tipo_situacao_id = 4 GROUP BY ut.dificuldade ) AS utstats ON utstats.dificuldade = ut.dificuldade LEFT JOIN ( SELECT a.tipo_situacao_id, a.unidade_trabalho_id, e.ordem, e.subfase_id FROM macrocontrole.atividade AS a INNER JOIN macrocontrole.etapa AS e ON e.id = a.etapa_id WHERE a.tipo_situacao_id in (1,2,3,4) ) AS a_ant ON a_ant.unidade_trabalho_id = a.unidade_trabalho_id AND a_ant.subfase_id = e.subfase_id AND e.ordem > a_ant.ordem WHERE ut.disponivel IS TRUE AND ppo.usuario_id = $1 AND a.tipo_situacao_id = 1 AND a.id NOT IN ( SELECT a.id FROM macrocontrole.atividade AS a INNER JOIN macrocontrole.etapa AS et ON et.id = a.etapa_id INNER JOIN macrocontrole.perfil_producao_etapa AS pse ON pse.subfase_id = et.subfase_id AND pse.tipo_etapa_id = et.tipo_etapa_id INNER JOIN macrocontrole.perfil_producao_operador AS ppo ON ppo.perfil_producao_id = pse.perfil_producao_id INNER JOIN macrocontrole.unidade_trabalho AS ut ON ut.id = a.unidade_trabalho_id INNER JOIN macrocontrole.lote AS l ON l.id = ut.lote_id INNER JOIN macrocontrole.perfil_projeto_operador AS pproj ON pproj.projeto_id = l.projeto_id AND pproj.usuario_id = ppo.usuario_id INNER JOIN macrocontrole.pre_requisito_subfase AS prs ON prs.subfase_posterior_id = ut.subfase_id INNER JOIN macrocontrole.unidade_trabalho AS ut_re ON ut_re.subfase_id = prs.subfase_anterior_id INNER JOIN macrocontrole.atividade AS a_re ON a_re.unidade_trabalho_id = ut_re.id WHERE ppo.usuario_id = $1 AND prs.tipo_pre_requisito_id = 1 AND ut.geom && ut_re.geom AND st_relate(ut.geom, ut_re.geom, '2********') AND a_re.tipo_situacao_id IN (1, 2, 3) AND a.tipo_situacao_id = 1 ) AND a.id NOT IN ( SELECT a.id FROM macrocontrole.atividade AS a INNER JOIN macrocontrole.etapa AS et ON et.id = a.etapa_id INNER JOIN macrocontrole.perfil_producao_etapa AS pse ON pse.subfase_id = et.subfase_id AND pse.tipo_etapa_id = et.tipo_etapa_id INNER JOIN macrocontrole.perfil_producao_operador AS ppo ON ppo.perfil_producao_id = pse.perfil_producao_id INNER JOIN macrocontrole.unidade_trabalho AS ut ON ut.id = a.unidade_trabalho_id INNER JOIN macrocontrole.lote AS l ON l.id = ut.lote_id INNER JOIN macrocontrole.perfil_projeto_operador AS pproj ON pproj.projeto_id = l.projeto_id AND pproj.usuario_id = ppo.usuario_id INNER JOIN macrocontrole.pre_requisito_subfase AS prs ON prs.subfase_posterior_id = ut.subfase_id INNER JOIN macrocontrole.unidade_trabalho AS ut_re ON ut_re.subfase_id = prs.subfase_anterior_id INNER JOIN macrocontrole.atividade AS a_re ON a_re.unidade_trabalho_id = ut_re.id WHERE ppo.usuario_id = $1 AND prs.tipo_pre_requisito_id = 2 AND ut.geom && ut_re.geom AND st_relate(ut.geom, ut_re.geom, '2********') AND a_re.tipo_situacao_id IN (2) AND a.tipo_situacao_id = 1 ) AND a.id NOT IN ( SELECT a.id FROM macrocontrole.atividade AS a INNER JOIN macrocontrole.etapa AS et ON et.id = a.etapa_id INNER JOIN macrocontrole.perfil_producao_etapa AS pse ON pse.subfase_id = et.subfase_id AND pse.tipo_etapa_id = et.tipo_etapa_id INNER JOIN macrocontrole.perfil_producao_operador AS ppo ON ppo.perfil_producao_id = pse.perfil_producao_id INNER JOIN macrocontrole.subfase AS sub ON sub.id = et.subfase_id INNER JOIN macrocontrole.fase AS fa ON fa.id = sub.fase_id INNER JOIN dgeo.usuario AS u ON u.id = ppo.usuario_id INNER JOIN macrocontrole.unidade_trabalho AS ut ON ut.id = a.unidade_trabalho_id INNER JOIN macrocontrole.lote AS l ON l.id = ut.lote_id INNER JOIN macrocontrole.perfil_projeto_operador AS pproj ON pproj.projeto_id = l.projeto_id AND pproj.usuario_id = ppo.usuario_id INNER JOIN macrocontrole.restricao_etapa AS re ON re.etapa_posterior_id = a.etapa_id INNER JOIN macrocontrole.etapa AS et_re ON et_re.id = re.etapa_anterior_id AND et_re.subfase_id != et.subfase_id INNER JOIN macrocontrole.subfase AS sub_re ON sub_re.id = et_re.subfase_id INNER JOIN macrocontrole.fase AS fa_re ON fa_re.id = sub_re.fase_id AND fa_re.linha_producao_id = fa.linha_producao_id INNER JOIN macrocontrole.atividade AS a_re ON a_re.etapa_id = et_re.id INNER JOIN dgeo.usuario AS u_re ON u_re.id = a_re.usuario_id INNER JOIN macrocontrole.unidade_trabalho AS ut_re ON ut_re.id = a_re.unidade_trabalho_id AND ut.geom && ut_re.geom AND st_relate(ut.geom, ut_re.geom, '2********') WHERE ppo.usuario_id = $1 AND ( (re.tipo_restricao_id = 1 AND a_re.usuario_id = $1) OR (re.tipo_restricao_id = 2 AND a_re.usuario_id != $1) OR (re.tipo_restricao_id = 3 AND u_re.tipo_turno_id != u.tipo_turno_id AND u_re.tipo_turno_id != 3 AND u.tipo_turno_id != 3) ) AND a_re.tipo_situacao_id in (1,2,3,4) AND a.tipo_situacao_id = 1 ) AND a.id NOT IN ( SELECT a.id FROM macrocontrole.atividade AS a INNER JOIN macrocontrole.etapa AS et ON et.id = a.etapa_id INNER JOIN macrocontrole.perfil_producao_etapa AS pse ON pse.subfase_id = et.subfase_id AND pse.tipo_etapa_id = et.tipo_etapa_id INNER JOIN macrocontrole.perfil_producao_operador AS ppo ON ppo.perfil_producao_id = pse.perfil_producao_id INNER JOIN macrocontrole.unidade_trabalho AS ut ON ut.id = a.unidade_trabalho_id INNER JOIN macrocontrole.lote AS l ON l.id = ut.lote_id INNER JOIN macrocontrole.perfil_projeto_operador AS pproj ON pproj.projeto_id = l.projeto_id AND pproj.usuario_id = ppo.usuario_id INNER JOIN dgeo.usuario AS u ON u.id = ppo.usuario_id INNER JOIN macrocontrole.restricao_etapa AS re ON re.etapa_posterior_id = a.etapa_id INNER JOIN macrocontrole.atividade AS a_re ON a_re.etapa_id = re.etapa_anterior_id AND a_re.unidade_trabalho_id = a.unidade_trabalho_id INNER JOIN macrocontrole.etapa AS et_re ON et_re.id = a_re.etapa_id INNER JOIN dgeo.usuario AS u_re ON u_re.id = a_re.usuario_id WHERE ppo.usuario_id = $1 AND et_re.subfase_id = et.subfase_id AND ( (re.tipo_restricao_id = 1 AND a_re.usuario_id = $1) OR (re.tipo_restricao_id = 2 AND a_re.usuario_id != $1) OR (re.tipo_restricao_id = 3 AND u_re.tipo_turno_id != u.tipo_turno_id AND u_re.tipo_turno_id != 3 AND u.tipo_turno_id != 3) ) AND a_re.tipo_situacao_id in (1,2,3,4) AND a.tipo_situacao_id = 1 ) AND a.id NOT IN ( SELECT atividade_id FROM macrocontrole.fila_prioritaria ) AND a.id NOT IN ( SELECT atividade_id FROM macrocontrole.fila_prioritaria_grupo ) ) AS sit GROUP BY id, p_prioridade, b_prioridade, pse_prioridade, dificuldade_rank, ut_prioridade HAVING MIN(situacao_ant) IS NULL OR every(situacao_ant IN (4)) ORDER BY p_prioridade, b_prioridade, pse_prioridade, dificuldade_rank, ut_prioridade LIMIT 1
<reponame>ormesam/mtb-mate ALTER TABLE [RideLocation] ADD [IsRemoved] bit NOT NULL, [RemovalReason] nvarchar(255) NULL, CONSTRAINT [DF_Temp1] DEFAULT 0 FOR [IsRemoved] GO ALTER TABLE [RideLocation] DROP [DF_Temp1] GO ALTER TABLE [Ride] ADD [AnalyserVersion] int NOT NULL, CONSTRAINT [DF_Temp2] DEFAULT 1 FOR [AnalyserVersion] GO ALTER TABLE [Ride] DROP [DF_Temp2] GO CREATE TABLE [UserBlock] ( [UserBlockId] int IDENTITY(1,1) NOT NULL PRIMARY KEY, [UserId] int NOT NULL CONSTRAINT [FK_UserBlock_User] REFERENCES [User], [BlockUserId] int NOT NULL CONSTRAINT [FK_UserBlock_BlockUser] REFERENCES [User], [BlockedUtc] datetime NOT NULL, ) CREATE UNIQUE INDEX [IX_UserBlock] ON [UserBlock]([UserId], [BlockUserId]) CREATE TABLE [UserFollow] ( [UserFollowId] int IDENTITY(1,1) NOT NULL PRIMARY KEY, [UserId] int NOT NULL CONSTRAINT [FK_UserFollow_User] REFERENCES [User], [FollowUserId] int NOT NULL CONSTRAINT [FK_UserFollow_FollowUser] REFERENCES [User], [FollowedUtc] datetime NOT NULL, ) CREATE UNIQUE INDEX [IX_UserFollow] ON [UserFollow]([UserId], [FollowUserId])
-- phpMyAdmin SQL Dump -- version 4.9.5deb2 -- https://www.phpmyadmin.net/ -- -- Host: localhost:3306 -- Generation Time: Mar 02, 2021 at 07:24 PM -- Server version: 8.0.23-0ubuntu0.20.04.1 -- PHP Version: 7.4.3 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `pzpluiDocs` -- -- -------------------------------------------------------- -- -- Table structure for table `articles` -- CREATE TABLE `articles` ( `id` int NOT NULL COMMENT 'ID of an article', `name` text NOT NULL COMMENT 'Title of an article', `section` text NOT NULL COMMENT 'Section of the article', `content` mediumtext NOT NULL COMMENT 'HTML of the article', `published_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'The date when the article was published', `version` tinytext NOT NULL COMMENT 'The version of pzplUI this feature was updated in' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -- Dumping data for table `articles` -- INSERT INTO `articles` (`id`, `name`, `section`, `content`, `published_at`, `version`) VALUES (1, 'Buttons', 'Components', ' <h2>Normal Buttons</h2>\r\n <h4>Here\'s an example for buttons in pzplUI</h4>\r\n <button class=\"btn btn-normal\">Normal Button</button>\r\n <button class=\"btn btn-success\">Success Button</button>\r\n <button class=\"btn btn-error\">Error Button</button>\r\n <button class=\"btn btn-danger\">Danger Button</button>\r\n <button class=\"btn btn-info\">Info Button</button>\r\n <button class=\"btn btn-dark\">Dark Button</button>\r\n <button class=\"btn btn-secondary\">Secondary Button</button>\r\n <br><br>\r\n <pre><code class=\"language-html\">&lt;button class=\"btn btn-normal\"&gt;Normal Button&lt;/button&gt;\r\n&lt;button class=\"btn btn-success\"&gt;Success Button&lt;/button&gt;\r\n&lt;button class=\"btn btn-error\"&gt;Error Button&lt;/button&gt;\r\n&lt;button class=\"btn btn-danger\"&gt;Danger Button&lt;/button&gt;\r\n&lt;button class=\"btn btn-info\"&gt;Info Button&lt;/button&gt;\r\n&lt;button class=\"btn btn-dark\"&gt;Dark Button&lt;/button&gt;\r\n&lt;button class=\"btn btn-secondary\"&gt;Secondary Button&lt;/button&gt;</code></pre>\r\n <h2>Outlined buttons</h2>\r\n <div class=\"bgWhite\">\r\n <button class=\"btn btn-normal-outline\">Normal Button</button>\r\n <button class=\"btn btn-success-outline\">Success Button</button>\r\n <button class=\"btn btn-error-outline\">Error Button</button>\r\n <button class=\"btn btn-danger-outline\">Danger Button</button>\r\n <button class=\"btn btn-info-outline\">Info Button</button>\r\n <button class=\"btn btn-dark-outline\">Dark Button</button>\r\n <button class=\"btn btn-secondary-outline\">Secondary Button</button>\r\n </div>\r\n <br><br>\r\n <pre><code class=\"language-html\">&lt;button class=\"btn btn-normal-outline\"&gt;Normal Button&lt;/button&gt;\r\n&lt;button class=\"btn btn-success-outline\"&gt;Success Button&lt;/button&gt;\r\n&lt;button class=\"btn btn-error-outline\"&gt;Error Button&lt;/button&gt;\r\n&lt;button class=\"btn btn-danger-outline\"&gt;Danger Button&lt;/button&gt;\r\n&lt;button class=\"btn btn-info-outline\"&gt;Info Button&lt;/button&gt;\r\n&lt;button class=\"btn btn-dark-outline\"&gt;Dark Button&lt;/button&gt;\r\n&lt;button class=\"btn btn-secondary-outline\"&gt;Secondary Button&lt;/button&gt;</code></pre>\r\n <h2>Diffrent button sizes</h2>\r\n <div class=\"bgWhite\">\r\n <button class=\"btn btn-normal btn-sm\">Less awesome new thing</button>\r\n <button class=\"btn btn-success btn-lg\">Awesome new thing</button>\r\n </div>\r\n <br><br>\r\n <pre><code class=\"language-html\">&lt;button class=\"btn btn-normal btn-sm\"&gt;Less awesome new thing&lt;/button&gt;\r\n&lt;button class=\"btn btn-success btn-lg\"&gt;Awesome new thing&lt;/button&gt;</code></pre>\r\n <h2>Button Block</h2>\r\n <i>A button that takes all free space</i><br>\r\n <div class=\"bgWhite\">\r\n <button class=\"btn btn-normal btn-block\">Button block!</button>\r\n <button class=\"btn btn-success btn-lg btn-block\">Big button block!</button>\r\n </div>\r\n <br><br>\r\n <pre><code class=\"language-html\">&lt;button class=\"btn btn-normal btn-block\"&gt;Button block!&lt;/button&gt;\r\n&lt;button class=\"btn btn-success btn-lg btn-block\"&gt;Big button block!&lt;/button&gt;</code></pre>\r\n <h2>Disabled buttons</h2>\r\n <div class=\"bgWhite\">\r\n <button class=\"btn btn-normal\" disabled>Normal Button</button>\r\n <button class=\"btn btn-success\" disabled>Success Button</button>\r\n <button class=\"btn btn-error\" disabled>Error Button</button>\r\n <button class=\"btn btn-danger\" disabled>Danger Button</button>\r\n <button class=\"btn btn-info\" disabled>Info Button</button>\r\n <button class=\"btn btn-dark\" disabled>Dark Button</button>\r\n <button class=\"btn btn-secondary\" disabled>Secondary Button</button>\r\n </div>\r\n <br><br>\r\n <pre><code class=\"language-html\">&lt;button class=\"btn btn-normal\" disabled&gt;Normal Button&lt;/button&gt;\r\n&lt;button class=\"btn btn-success\" disabled&gt;Success Button&lt;/button&gt;\r\n&lt;button class=\"btn btn-error\" disabled&gt;Error Button&lt;/button&gt;\r\n&lt;button class=\"btn btn-danger\" disabled&gt;Danger Button&lt;/button&gt;\r\n&lt;button class=\"btn btn-info\" disabled&gt;Info Button&lt;/button&gt;\r\n&lt;button class=\"btn btn-dark\" disabled&gt;Dark Button&lt;/button&gt;\r\n&lt;button class=\"btn btn-uncolor\" disabled&gt;Secondary Button&lt;/button&gt;</code></pre>', NULL, '2.0'), (2, 'Alerts', 'Components', '<div class=\"alert alert-normal\">Normal Alert</div>\r\n <div class=\"alert alert-success\">Success Alerts</div>\r\n <div class=\"alert alert-error\">Error Alert</div>\r\n <div class=\"alert alert-danger\">Danger Alert</div>\r\n <div class=\"alert alert-info\">Info Alert</div>\r\n <div class=\"alert alert-dark\">Dark Alert</div>\r\n <br><br>\r\n <pre><code class=\"language-html\">&lt;div class=\"alert alert-normal\"&gt;Normal Alert&lt;/div&gt;\r\n&lt;div class=\"alert alert-success\"&gt;Success Alerts&lt;/div&gt;\r\n&lt;div class=\"alert alert-error\"&gt;Error Alert&lt;/div&gt;\r\n&lt;div class=\"alert alert-danger\"&gt;Danger Alert&lt;/div&gt;\r\n&lt;div class=\"alert alert-info\"&gt;Info Alert&lt;/div&gt;\r\n&lt;div class=\"alert alert-dark\"&gt;Dark Alert&lt;/div&gt;</code></pre>', NULL, '2.0'), (3, 'Badges', 'Components', '<h1>Hello World <span class=\"badge badge-normal\">New</span></h1>\r\n <h2>Hello World <span class=\"badge badge-success\">New</span></h2>\r\n <h3>Hello World <span class=\"badge badge-error\">New</span></h3>\r\n <h4>Hello World <span class=\"badge badge-danger\">New</span></h4>\r\n <h5>Hello World <span class=\"badge badge-dark\">New</span></h5>\r\n <h6>Hello World <span class=\"badge badge-info\">New</span></h6>\r\n <br><br>\r\n <pre><code class=\"language-html\">&lt;h1&gt;Hello World &lt;span class=\"badge badge-normal\"&gt;New&lt;/span&gt;&lt;/h1&gt;\r\n&lt;h2&gt;Hello World &lt;span class=\"badge badge-success\"&gt;New&lt;/span&gt;&lt;/h2&gt;\r\n&lt;h3&gt;Hello World &lt;span class=\"badge badge-error\"&gt;New&lt;/span&gt;&lt;/h3&gt;\r\n&lt;h4&gt;Hello World &lt;span class=\"badge badge-danger\"&gt;New&lt;/span&gt;&lt;/h4&gt;\r\n&lt;h5&gt;Hello World &lt;span class=\"badge badge-dark\"&gt;New&lt;/span&gt;&lt;/h5&gt;\r\n&lt;h6&gt;Hello World &lt;span class=\"badge badge-info\"&gt;New&lt;/span&gt;&lt;/h6&gt;</code></pre>\r\n <h2>Pill Badges</h2>\r\n <h1>Hello World <span class=\"badge badge-pill badge-normal\">New</span></h1>\r\n <h2>Hello World <span class=\"badge badge-pill badge-success\">New</span></h2>\r\n <h3>Hello World <span class=\"badge badge-pill badge-error\">New</span></h3>\r\n <h4>Hello World <span class=\"badge badge-pill badge-danger\">New</span></h4>\r\n <h5>Hello World <span class=\"badge badge-pill badge-dark\">New</span></h5>\r\n <h6>Hello World <span class=\"badge badge-pill badge-info\">New</span></h6>\r\n <br><br>\r\n <pre><code class=\"language-html\">&lt;h1&gt;Hello World &lt;span class=\"badge badge-pill badge-normal\"&gt;New&lt;/span&gt;&lt;/h1&gt;\r\n&lt;h2&gt;Hello World &lt;span class=\"badge badge-pill badge-success\"&gt;New&lt;/span&gt;&lt;/h2&gt;\r\n&lt;h3&gt;Hello World &lt;span class=\"badge badge-pill badge-error\"&gt;New&lt;/span&gt;&lt;/h3&gt;\r\n&lt;h4&gt;Hello World &lt;span class=\"badge badge-pill badge-danger\"&gt;New&lt;/span&gt;&lt;/h4&gt;\r\n&lt;h5&gt;Hello World &lt;span class=\"badge badge-pill badge-dark\"&gt;New&lt;/span&gt;&lt;/h5&gt;\r\n&lt;h6&gt;Hello World &lt;span class=\"badge badge-pill badge-info\"&gt;New&lt;/span&gt;&lt;/h6&gt;</code></pre>', NULL, '2.0'), (4, 'Box', 'Components', '<div class=\"bgWhite\">\r\n <div class=\"box\">\r\n <h1>React vs Angular</h1>\r\n <h2>tl;dr: both of them are stupid</h2>\r\n <h4>Hello guys welcome to another episode today we will compare Angular vs React please hit that subscribe\r\n button and enable notifications\r\n please remember that i am doing a merch giveaway go to youareanidiot.cc and like my facebook page to\r\n have a chance to win a\r\n jquery body pillow\r\n <!-- <a href=\"./nudzimisie.png\">CLICK TO SEEE!!!!!</a> --> so anyways guys let\'s compare angular and\r\n react so angular is made by google and react is made by facebook\r\n and if you ever seen facebooks logo you know that it\'s blue so make sure that the like button under the\r\n video is blue\r\n just like in the facebooks logo and if it\'s blue then you will enter my giveaway for more details watch\r\n to the end so anyways\r\n i think that <span class=\"text-normal\">[ please pay 2.99$ to unlock the rest of the article ]</span>\r\n </h4>\r\n </div>\r\n</div><br><br>\r\n<pre><code class=\"language-html\">&lt;div class=\"box\"&gt;\r\n &lt;h1&gt;React vs Angular&lt;/h1&gt;\r\n &lt;h2&gt;tl;dr: both of them are stupid&lt;/h2&gt;\r\n &lt;h4&gt;Hello guys welcome to another episode today we will compare Angular vs React please hit that subscribe button and enable notifications please remember that i am doing a merch giveaway go to youareanidiot.cc and like my facebook page to have a chance to win a jquery body pillow\r\n so anyways guys let\'s compare angular and react so angular is made by google and react is made by facebook and if you ever seen facebooks logo you know that it\'s blue so make sure that the like button under the video is blue just like in the facebooks logo and if it\'s blue then you will enter my giveaway for more details watch to the end so anyways i think that &lt;span class=\"text-normal\"&gt;[ please pay 2.99$ to unlock the rest of the article ]&lt;/span&gt;\r\n &lt;/h4&gt;\r\n&lt;/div&gt;</code></pre>\r\n<h2>Box sizes</h2>\r\n<div class=\"bgWhite\">\r\n <div class=\"box box-sm\">\r\n <h1>Lorem, ipsum dolor.</h1>\r\n <p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Inventore, qui.</p>\r\n </div><br>\r\n <div class=\"box\">\r\n <h1>Lorem, ipsum dolor.</h1>\r\n <p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Inventore, qui.</p>\r\n </div><br>\r\n <div class=\"box box-lg\">\r\n <h1>Lorem, ipsum dolor.</h1>\r\n <p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Inventore, qui.</p>\r\n </div>\r\n</div>\r\n<pre><code class=\"language-html\">&lt;div class=\"bgWhite\"&gt;\r\n &lt;div class=\"box box-sm\"&gt;\r\n &lt;h1&gt;Lorem, ipsum dolor.&lt;/h1&gt;\r\n &lt;p&gt;Lorem ipsum, dolor sit amet consectetur adipisicing elit. Inventore, qui.&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"box\"&gt;\r\n &lt;h1&gt;Lorem, ipsum dolor.&lt;/h1&gt;\r\n &lt;p&gt;Lorem ipsum, dolor sit amet consectetur adipisicing elit. Inventore, qui.&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"box box-lg\"&gt;\r\n &lt;h1&gt;Lorem, ipsum dolor.&lt;/h1&gt;\r\n &lt;p&gt;Lorem ipsum, dolor sit amet consectetur adipisicing elit. Inventore, qui.&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;</code></pre>', '2021-02-19 13:15:25', '2.1'), (5, 'Cards', 'Components', ' <div class=\"bgWhite\">\r\n <div class=\"card\" style=\"width: 18rem;\">\r\n <svg width=\"100%\" height=\"180\" xmlns=\"http://www.w3.org/2000/svg\" role=\"img\"\r\n aria-label=\"Placeholder: Image cap\" preserveAspectRatio=\"xMidYMid slice\" focusable=\"false\">\r\n <title>Placeholder</title>\r\n <rect width=\"100%\" height=\"100%\" fill=\"#868e96\"></rect><text x=\"50%\" y=\"50%\" fill=\"#dee2e6\"\r\n dy=\".3em\">Image\r\n cap</text>\r\n </svg>\r\n\r\n <div class=\"card-body\">\r\n <h5>Lorem Ipsum</h5>\r\n <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga facere consectetur officiis possimus veritatis ratione.\r\n </p>\r\n <br><a href=\"#\" class=\"btn btn-normal\">Go somewhere</a>\r\n </div>\r\n </div>\r\n </div>\r\n <br><br>\r\n\r\n <pre><code class=\"language-html\">&lt;div class=\"card\" style=\"width: 18rem;\"&gt;\r\n &lt;img src=\"./myPhoto.png\" class=\"img-fluid\"&gt;\r\n \r\n &lt;div class=\"card-body\"&gt;\r\n &lt;h5&gt;Card title&lt;/h5&gt;\r\n &lt;p&gt;Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga facere consectetur officiis possimus veritatis ratione.&lt;/p&gt;\r\n &lt;br&gt;&lt;a href=\"#\" class=\"btn btn-normal\"&gt;Go somewhere&lt;/a&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;</code></pre>\r\n\r\n <h2>Card with header</h2>\r\n <div class=\"bgWhite\">\r\n <div class=\"card\" style=\"width: 18rem;\">\r\n <div class=\"card-header\">\r\n Featured\r\n </div>\r\n <div class=\"card-body\">\r\n <h5 class=\"card-title\">Special title treatment</h5>\r\n <p class=\"card-text\">With supporting text below as a natural lead-in to additional content.</p>\r\n <br><a href=\"#\" class=\"btn btn-normal\">Go somewhere</a>\r\n </div>\r\n </div>\r\n </div>\r\n <br><br>\r\n <pre><code class=\"language-html\">&lt;div class=\"card\" style=\"width: 18rem;\"&gt;\r\n &lt;div class=\"card-header\"&gt;\r\n Featured\r\n &lt;/div&gt;\r\n &lt;div class=\"card-body\"&gt;\r\n &lt;h5 class=\"card-title\"&gt;Special title treatment&lt;/h5&gt;\r\n &lt;p class=\"card-text\"&gt;With supporting text below as a natural lead-in to additional content.&lt;/p&gt;\r\n &lt;br&gt;&lt;a href=\"#\" class=\"btn btn-normal\"&gt;Go somewhere&lt;/a&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;</code></pre>\r\n <h2>Colors!</h2>\r\n <div class=\"card text-white bg-normal m3\" style=\"max-width: 18rem;\">\r\n <div class=\"card-header\">Header</div>\r\n <div class=\"card-body\">\r\n <h5 class=\"card-title\">Primary card title</h5>\r\n <p class=\"card-text\">Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga facere consectetur officiis possimus veritatis ratione.</p>\r\n </div>\r\n </div>\r\n <div class=\"card text-white bg-success m3\" style=\"max-width: 18rem;\">\r\n <div class=\"card-header\">Header</div>\r\n <div class=\"card-body\">\r\n <h5 class=\"card-title\">Success card title</h5>\r\n <p class=\"card-text\">Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga facere consectetur officiis possimus veritatis ratione.</p>\r\n </div>\r\n </div>\r\n <div class=\"card text-white bg-error m3\" style=\"max-width: 18rem;\">\r\n <div class=\"card-header\">Header</div>\r\n <div class=\"card-body\">\r\n <h5 class=\"card-title\">Danger card title</h5>\r\n <p class=\"card-text\">Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga facere consectetur officiis possimus veritatis ratione.</p>\r\n </div>\r\n </div>\r\n <div class=\"card text-dark bg-danger m3\" style=\"max-width: 18rem;\">\r\n <div class=\"card-header\">Header</div>\r\n <div class=\"card-body\">\r\n <h5 class=\"card-title\">Warning card title</h5>\r\n <p class=\"card-text\">Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga facere consectetur officiis possimus veritatis ratione.</p>\r\n </div>\r\n </div>\r\n <div class=\"card text-white bg-info m3\" style=\"max-width: 18rem;\">\r\n <div class=\"card-header\">Header</div>\r\n <div class=\"card-body\">\r\n <h5 class=\"card-title\">Info card title</h5>\r\n <p class=\"card-text\">Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga facere consectetur officiis possimus veritatis ratione.</p>\r\n </div>\r\n </div>\r\n <div class=\"card text-white bg-dark m3\" style=\"max-width: 18rem;\">\r\n <div class=\"card-header\">Header</div>\r\n <div class=\"card-body\">\r\n <h5 class=\"card-title\">Dark card title</h5>\r\n <p class=\"card-text\">Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga facere consectetur officiis possimus veritatis ratione.</p>\r\n </div>\r\n </div>\r\n\r\n\r\n <pre><code class=\"language-html\">&lt;div class=\"card text-white bg-normal m3\" style=\"max-width: 18rem;\"&gt;\r\n &lt;div class=\"card-header\"&gt;Header&lt;/div&gt;\r\n &lt;div class=\"card-body\"&gt;\r\n &lt;h5 class=\"card-title\"&gt;Primary card title&lt;/h5&gt;\r\n &lt;p class=\"card-text\"&gt;Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga facere consectetur officiis possimus veritatis ratione.\r\n &lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"card text-white bg-success m3\" style=\"max-width: 18rem;\"&gt;\r\n &lt;div class=\"card-header\"&gt;Header&lt;/div&gt;\r\n &lt;div class=\"card-body\"&gt;\r\n &lt;h5 class=\"card-title\"&gt;Success card title&lt;/h5&gt;\r\n &lt;p class=\"card-text\"&gt;Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga facere consectetur officiis possimus veritatis ratione.\r\n &lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"card text-white bg-error m3\" style=\"max-width: 18rem;\"&gt;\r\n &lt;div class=\"card-header\"&gt;Header&lt;/div&gt;\r\n &lt;div class=\"card-body\"&gt;\r\n &lt;h5 class=\"card-title\"&gt;Danger card title&lt;/h5&gt;\r\n &lt;p class=\"card-text\"&gt;Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga facere consectetur officiis possimus veritatis ratione.\r\n &lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"card text-dark bg-danger m3\" style=\"max-width: 18rem;\"&gt;\r\n &lt;div class=\"card-header\"&gt;Header&lt;/div&gt;\r\n &lt;div class=\"card-body\"&gt;\r\n &lt;h5 class=\"card-title\"&gt;Warning card title&lt;/h5&gt;\r\n &lt;p class=\"card-text\"&gt;Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga facere consectetur officiis possimus veritatis ratione.\r\n &lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"card text-white bg-info m3\" style=\"max-width: 18rem;\"&gt;\r\n &lt;div class=\"card-header\"&gt;Header&lt;/div&gt;\r\n &lt;div class=\"card-body\"&gt;\r\n &lt;h5 class=\"card-title\"&gt;Info card title&lt;/h5&gt;\r\n &lt;p class=\"card-text\"&gt;Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga facere consectetur officiis possimus veritatis ratione.\r\n &lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"card text-white bg-dark m3\" style=\"max-width: 18rem;\"&gt;\r\n &lt;div class=\"card-header\"&gt;Header&lt;/div&gt;\r\n &lt;div class=\"card-body\"&gt;\r\n &lt;h5 class=\"card-title\"&gt;Dark card title&lt;/h5&gt;\r\n &lt;p class=\"card-text\"&gt;Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga facere consectetur officiis possimus veritatis ratione.\r\n &lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;</code></pre>\r\n\r\n <h2>Horizontal Cards</h2>\r\n <div class=\"bgWhite\">\r\n <div class=\"card flexbox\" style=\"width: 25rem;\">\r\n <svg class=\"column\" width=\"100%\" height=\"180\" xmlns=\"http://www.w3.org/2000/svg\" role=\"img\"\r\n aria-label=\"Placeholder: Image cap\" preserveAspectRatio=\"xMidYMid slice\" focusable=\"false\">\r\n <title>Placeholder</title>\r\n <rect width=\"100%\" height=\"100%\" fill=\"#868e96\"></rect><text x=\"30%\" y=\"50%\" fill=\"#dee2e6\"\r\n dy=\".3em\">Image\r\n cap</text>\r\n </svg>\r\n\r\n <div class=\"card-body column flex-50\">\r\n <h5>Lorem Ipsum</h5>\r\n <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga facere consectetur officiis possimus veritatis ratione.\r\n </p>\r\n <br><a href=\"#\" class=\"btn btn-normal\">Go somewhere</a>\r\n </div>\r\n </div>\r\n </div>\r\n <br><br>\r\n <pre><code class=\"language-html\">&lt;div class=\"card flexbox\" style=\"width: 25rem;\"&gt;\r\n &lt;img class=\"column\" src=\"myImg.png\" alt=\"image\"&gt;\r\n\r\n &lt;div class=\"card-body column flex-50\"&gt;\r\n &lt;h5&gt;Card title&lt;/h5&gt;\r\n &lt;p&gt;Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga facere consectetur officiis possimus veritatis ratione.\r\n &lt;/p&gt;\r\n &lt;br&gt;&lt;a href=\"#\" class=\"btn btn-normal\"&gt;Go somewhere&lt;/a&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;</code></pre>', '2021-02-19 13:42:50', '2.1'), (6, 'Hero', 'Components', '<div class=\"hero bg-success consended\">\r\n <h1 class=\"title\">Enterprise Networking</h1>\r\n <h3 class=\"Subtitle\">and Investment</h3>\r\n</div>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;div class=\"hero bg-success consended\"&gt;\r\n &lt;h1 class=\"title\"&gt;Enterprise Networking&lt;/h1&gt;\r\n &lt;h3 class=\"Subtitle\"&gt;and Investment&lt;/h3&gt;\r\n&lt;/div&gt;</code></pre>\r\n\r\n<div class=\"alert alert-normal\">Note - if you are using strict mode, you do not need to use the consended class.</div>\r\n\r\n<h2>Different colors</h2>\r\n<div class=\"hero bg-normal consended\">\r\n <h1 class=\"title\">Enterprise Networking</h1>\r\n <h3 class=\"Subtitle\">and Investment</h3>\r\n</div>\r\n<br>\r\n<div class=\"hero bg-error consended\">\r\n <h1 class=\"title\">Enterprise Networking</h1>\r\n <h3 class=\"Subtitle\">and Investment</h3>\r\n</div>\r\n<br>\r\n<div class=\"hero bg-danger text-dark consended\">\r\n <h1 class=\"title\">Enterprise Networking</h1>\r\n <h3 class=\"Subtitle\">and Investment</h3>\r\n</div>\r\n<br>\r\n<div class=\"hero bg-info consended\">\r\n <h1 class=\"title\">Enterprise Networking</h1>\r\n <h3 class=\"Subtitle\">and Investment</h3>\r\n</div>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;div class=\"hero bg-normal consended\"&gt;\r\n &lt;h1 class=\"title\"&gt;Enterprise Networking&lt;/h1&gt;\r\n &lt;h3 class=\"Subtitle\"&gt;and Investment&lt;/h3&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=\"hero bg-error consended\"&gt;\r\n &lt;h1 class=\"title\"&gt;Enterprise Networking&lt;/h1&gt;\r\n &lt;h3 class=\"Subtitle\"&gt;and Investment&lt;/h3&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=\"hero bg-danger text-dark consended\"&gt;\r\n &lt;h1 class=\"title\"&gt;Enterprise Networking&lt;/h1&gt;\r\n &lt;h3 class=\"Subtitle\"&gt;and Investment&lt;/h3&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class=\"hero bg-info consended\"&gt;\r\n &lt;h1 class=\"title\"&gt;Enterprise Networking&lt;/h1&gt;\r\n &lt;h3 class=\"Subtitle\"&gt;and Investment&lt;/h3&gt;\r\n&lt;/div&gt;</code></pre>', '2021-02-19 13:57:06', '1.4'), (7, 'Modals', 'Components', '<h2>Example Modal</h2>\r\n<div class=\"modal text-dark\" id=\"myModal\">\r\n <div class=\"modal-content\">\r\n <div class=\"modal-header consended\">\r\n <h5 class=\"modal-title\" id=\"exampleModalLiveLabel\">Modal title</h5>\r\n </div>\r\n <div class=\"modal-body\">\r\n <p>Woohoo, you\'re reading this text in a modal!</p>\r\n </div>\r\n <div class=\"modal-footer\">\r\n <button type=\"button\" class=\"btn btn-secondary\"\r\n onclick=\"hideModalShowcaseFramework(0, \'close\');\">Close</button>\r\n <button type=\"button\" class=\"btn btn-normal\" onclick=\"hideModalShowcaseFramework(0, \'save\');\">Save\r\n changes</button>\r\n </div>\r\n </div>\r\n</div>\r\n<button onclick=\"modalShowcaseFramework(0);\" class=\"btn btn-normal\">Show modal</button>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;div class=\"modal text-dark\" id=\"myModal\"&gt;\r\n &lt;div class=\"modal-content\"&gt;\r\n &lt;div class=\"modal-header consended\"&gt;\r\n &lt;h5 class=\"modal-title\"&gt;Modal title&lt;/h5&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"modal-body\"&gt;\r\n &lt;p&gt;Woohoo, you\'re reading this text in a modal!&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"modal-footer\"&gt;\r\n &lt;button type=\"button\" class=\"btn btn-secondary\"&gt;Close&lt;/button&gt;\r\n &lt;button type=\"button\" class=\"btn btn-normal\"&gt;Save changes&lt;/button&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;</code></pre>\r\n<h2>Using the JS Plugin</h2>\r\n<h4>pzplUI incudes a JS plugin for handling modals. It can:</h4>\r\n <ul class=\"h4\">\r\n <li>Save modals into a variable</li>\r\n <li>Show modals</li>\r\n <li>Hide modals</li>\r\n <li>Handle payloads</li>\r\n </ul>\r\n <br>\r\n <h4>\r\n First, save the modal into the variable:<br>\r\n <pre><code class=\"language-js\"> let modalElement = $pzplui_modal.init(\"#myModal\"); </code></pre><br>\r\n Now you can use\r\n <pre><code class=\"language-js\">modalElement.show();</code></pre> to show your modal.<br><br>\r\n In order to hide the modal, use\r\n <pre><code class=\"language-js\">modalElement.hide(payload);</code></pre><br>\r\n Replace <code>payload</code> with the message you want to be carried.<br><br>\r\n For example, the Close button can carry the \"notSaved\" payload, while the Save button<br>\r\n can carry the \"saved\" payload. If you want to carry no payload, replace payload with undefined.\r\n </h4>\r\n <h2>Not using the JS plugin</h2>\r\n<h4>You can write some JS code to handle showing and hiding the modal pretty easly. Simply,<br><br>\r\n Make a function that will set the display property to <code>block</code>, and a function that will set it\r\n back to <code>none</code><br><br>\r\n Some example code:<br><br>\r\n <pre><code class=\"language-js\">function showModal() {\r\n document.querySelector(\"#myModal\").style.display = \"block\";\r\n}; \r\n\r\nfunction hideModal() {\r\n document.querySelector(\"#myModal\").style.display = \"none\";\r\n};</code></pre>\r\n</h4>\r\n<script>\r\n // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat\r\n // modal pzplUI Plugin\r\n \"use strict\";\r\n\r\n let $pzplui_modal = {};\r\n\r\n $pzplui_modal.init = function (selector) {\r\n let modal = document.querySelector(selector);\r\n return {\r\n \"modal\": modal,\r\n \"shown\": \"false\",\r\n \"payload\": undefined,\r\n \"show\": function () {\r\n this.modal.shown = true;\r\n this.modal.style.display = \"block\";\r\n },\r\n \"hide\": function (payload) {\r\n this.shown = false;\r\n this.payload = payload;\r\n this.modal.style.display = \"none\";\r\n }\r\n };\r\n };\r\n let modalTemp1 = $pzplui_modal.init(\"#myModal\");\r\n function modalShowcaseFramework(mod) {\r\n if (mod == 0) {\r\n modalTemp1.show();\r\n };\r\n };\r\n\r\n function hideModalShowcaseFramework(mod, payload) {\r\n if (mod == 0) {\r\n modalTemp1.hide(payload);\r\n };\r\n };\r\n // @license-end\r\n</script>', NULL, '1.5'), (8, 'Navbars', 'Components', '<style>\r\n .text-white a {\r\n color: white;\r\n }\r\n</style>\r\n<h2>Standard Navbar</h2>\r\n<nav class=\"navbar bg-dark text-white\">\r\n <ul>\r\n <li>\r\n <a href=\"javascript:void(0)\">Homepage</a>\r\n </li>\r\n <li>\r\n <a href=\"javascript:void(0)\">News</a>\r\n </li>\r\n <li>\r\n <a href=\"javascript:void(0)\">Contact</a>\r\n </li>\r\n </ul>\r\n</nav>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;nav class=\"navbar bg-dark text-white\"&gt;\r\n &lt;ul&gt;\r\n &lt;li&gt;\r\n &lt;a href=\"#\"&gt;Homepage&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a href=\"#\"&gt;News&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a href=\"#\"&gt;Contact&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;/ul&gt;\r\n&lt;/nav&gt;</code></pre>\r\n<pre><code class=\"language-css\">.text-white a {\r\n color: white;\r\n}</code></pre>\r\n<h2>Navbar with Brand</h2>\r\n<nav class=\"navbar bg-dark text-white\">\r\n <a class=\"navbar-brand\" href=\"javascript:void(0)\">Company</a>\r\n <ul>\r\n <li>\r\n <a href=\"javascript:void(0)\">Homepage</a>\r\n </li>\r\n <li>\r\n <a href=\"javascript:void(0)\">News</a>\r\n </li>\r\n <li>\r\n <a href=\"javascript:void(0)\">Contact</a>\r\n </li>\r\n </ul>\r\n</nav>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;nav class=\"navbar bg-dark text-white\"&gt;\r\n &lt;a class=\"navbar-brand\" href=\"javascript:void(0)\"&gt;Company&lt;/a&gt;\r\n &lt;ul&gt;\r\n &lt;li&gt;\r\n &lt;a href=\"javascript:void(0)\"&gt;Homepage&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a href=\"javascript:void(0)\"&gt;News&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a href=\"javascript:void(0)\"&gt;Contact&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;/ul&gt; \r\n&lt;/nav&gt;</code></pre>\r\n<pre><code class=\"language-css\">.text-white a {\r\n color: white;\r\n }</code></pre>\r\n\r\n<h2>Navbar with Logo</h2>\r\n<nav class=\"navbar bg-dark text-white\">\r\n <a class=\"navbar-brand\" href=\"javascript:void(0)\"><img src=\"assets/browser.png\" alt=\"Company\" style=\"width: 52px;\"></a>\r\n <ul>\r\n <li>\r\n <a href=\"javascript:void(0)\">Homepage</a>\r\n </li>\r\n <li>\r\n <a href=\"javascript:void(0)\">News</a>\r\n </li>\r\n <li>\r\n <a href=\"javascript:void(0)\">Contact</a>\r\n </li>\r\n </ul>\r\n</nav>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;nav class=\"navbar bg-dark text-white\"&gt;\r\n &lt;a class=\"navbar-brand\" href=\"javascript:void(0)\"&gt;&lt;img src=\"./browser-773215_640.png\" alt=\"Company\"&gt;&lt;/a&gt;\r\n &lt;ul&gt;\r\n &lt;li&gt;\r\n &lt;a href=\"javascript:void(0)\"&gt;Homepage&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a href=\"javascript:void(0)\"&gt;News&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a href=\"javascript:void(0)\"&gt;Contact&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;/ul&gt;\r\n&lt;/nav&gt;</code></pre>\r\n<pre><code class=\"language-css\">.text-white a {\r\n color: white;\r\n}</code></pre>\r\n\r\n<h2>Colors!</h2>\r\n<nav class=\"navbar bg-normal text-white\">\r\n <a class=\"navbar-brand\" href=\"javascript:void(0)\"><img src=\"assets/browser.png\" alt=\"Company\" style=\"width: 52px;\"></a>\r\n <ul>\r\n <li>\r\n <a href=\"javascript:void(0)\">Homepage</a>\r\n </li>\r\n <li>\r\n <a href=\"javascript:void(0)\">News</a>\r\n </li>\r\n <li>\r\n <a href=\"javascript:void(0)\">Contact</a>\r\n </li>\r\n </ul>\r\n\r\n</nav>\r\n\r\n<nav class=\"navbar bg-success text-white\">\r\n <a class=\"navbar-brand\" href=\"javascript:void(0)\"><img src=\"assets/browser.png\" alt=\"Company\" style=\"width: 52px;\"></a>\r\n <ul>\r\n <li>\r\n <a href=\"javascript:void(0)\">Homepage</a>\r\n </li>\r\n <li>\r\n <a href=\"javascript:void(0)\">News</a>\r\n </li>\r\n <li>\r\n <a href=\"javascript:void(0)\">Contact</a>\r\n </li>\r\n </ul>\r\n\r\n</nav>\r\n<br><br>\r\n\r\n<pre><code class=\"language-html\">&lt;nav class=\"navbar bg-normal text-white\"&gt;\r\n &lt;a class=\"navbar-brand\" href=\"javascript:void(0)\"&gt;&lt;img src=\"./browser-773215_640.png\" alt=\"Company\"&gt;&lt;/a&gt;\r\n &lt;ul&gt;\r\n &lt;li&gt;\r\n &lt;a href=\"javascript:void(0)\"&gt;Homepage&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a href=\"javascript:void(0)\"&gt;News&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a href=\"javascript:void(0)\"&gt;Contact&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;/ul&gt;\r\n&lt;/nav&gt;\r\n \r\n&lt;nav class=\"navbar bg-success text-white\"&gt;\r\n &lt;a class=\"navbar-brand\" href=\"javascript:void(0)\"&gt;&lt;img src=\"./browser-773215_640.png\" alt=\"Company\"&gt;&lt;/a&gt;\r\n &lt;ul&gt;\r\n &lt;li&gt;\r\n &lt;a href=\"javascript:void(0)\"&gt;Homepage&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a href=\"javascript:void(0)\"&gt;News&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a href=\"javascript:void(0)\"&gt;Contact&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;/ul&gt;\r\n&lt;/nav&gt;</code></pre>\r\n\r\n<h2>Navbar Centered</h2>\r\n<i>Note: Make sure that you\'re using the layouts component if you used pzplUI customizer.</i>\r\n<nav class=\"navbar bg-dark text-white center-flex\">\r\n <a class=\"navbar-brand\" href=\"javascript:void(0)\">Company</a>\r\n <ul>\r\n <li>\r\n <a href=\"javascript:void(0)\">Homepage</a>\r\n </li>\r\n <li>\r\n <a href=\"javascript:void(0)\">News</a>\r\n </li>\r\n <li>\r\n <a href=\"javascript:void(0)\">Contact</a>\r\n </li>\r\n </ul>\r\n</nav>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;nav class=\"navbar bg-dark text-white center-flex\"&gt;\r\n &lt;a class=\"navbar-brand\" href=\"javascript:void(0)\"&gt;Company&lt;/a&gt;\r\n &lt;ul&gt;\r\n &lt;li&gt;\r\n &lt;a href=\"javascript:void(0)\"&gt;Homepage&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a href=\"javascript:void(0)\"&gt;News&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a href=\"javascript:void(0)\"&gt;Contact&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;/ul&gt;\r\n&lt;/nav&gt;</code></pre>\r\n\r\n<h2>Navbar Pills</h2>\r\n<nav class=\"navbar bg-dark text-white\">\r\n <ul>\r\n <li class=\"nav-pill\">\r\n <a href=\"javascript:void(0)\">Homepage</a>\r\n </li>\r\n <li>\r\n <a class=\"not-pill\" href=\"javascript:void(0)\">News</a>\r\n </li>\r\n <li>\r\n <a class=\"not-pill\" href=\"javascript:void(0)\">Contact</a>\r\n </li>\r\n </ul>\r\n</nav><br>\r\n<nav class=\"navbar bg-dark text-white center-flex\">\r\n <ul>\r\n <li class=\"nav-pill\">\r\n <a href=\"javascript:void(0)\">Homepage</a>\r\n </li>\r\n <li>\r\n <a class=\"not-pill\" href=\"javascript:void(0)\">News</a>\r\n </li>\r\n <li>\r\n <a class=\"not-pill\" href=\"javascript:void(0)\">Contact</a>\r\n </li>\r\n </ul>\r\n</nav>\r\n<br><br>\r\n\r\n<pre><code class=\"language-html\">&lt;nav class=\"navbar bg-dark text-white\"&gt;\r\n &lt;ul&gt;\r\n &lt;li class=\"nav-pill\"&gt;\r\n &lt;a href=\"javascript:void(0)\"&gt;Homepage&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a class=\"not-pill\" href=\"javascript:void(0)\"&gt;News&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a class=\"not-pill\" href=\"javascript:void(0)\"&gt;Contact&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;/ul&gt;\r\n&lt;/nav&gt;&lt;br&gt;\r\n&lt;nav class=\"navbar bg-dark text-white center-flex\"&gt;\r\n &lt;ul&gt;\r\n &lt;li class=\"nav-pill\"&gt;\r\n &lt;a href=\"javascript:void(0)\"&gt;Homepage&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a class=\"not-pill\" href=\"javascript:void(0)\"&gt;News&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;li&gt;\r\n &lt;a class=\"not-pill\" href=\"javascript:void(0)\"&gt;Contact&lt;/a&gt;\r\n &lt;/li&gt;\r\n &lt;/ul&gt;\r\n&lt;/nav&gt;</code></pre>\r\n<pre><code class=\"language-css\">.text-white a {\r\n color: white;\r\n }</code></pre>', NULL, '1.5'), (9, 'Pagination', 'Components', '<h2>Pagination</h2>\r\n <div class=\"bgWhite\">\r\n <nav class=\"m5\">\r\n <ul class=\"pagination\">\r\n <li class=\"pag-item\"><a class=\"pag-link\" href=\"#\">Previous</a></li>\r\n <li class=\"pag-item active\" aria-current=\"page\">\r\n <span class=\"pag-link\">\r\n 1\r\n <span class=\"sr-only\">(current)</span>\r\n </span>\r\n </li>\r\n <li class=\"pag-item\"><a class=\"pag-link\" href=\"#\">2</a></li>\r\n <li class=\"pag-item\"><a class=\"pag-link\" href=\"#\">3</a></li>\r\n <li class=\"pag-item\"><a class=\"pag-link\" href=\"#\">Next</a></li>\r\n </ul>\r\n </nav>\r\n <nav class=\"m5\">\r\n <ul class=\"pagination\">\r\n <li class=\"pag-item active\" aria-current=\"page\">\r\n <span class=\"pag-link\">\r\n 1\r\n <span class=\"sr-only\">(current)</span>\r\n </span>\r\n </li>\r\n <li class=\"pag-item\"><a class=\"pag-link\" href=\"#\">2</a></li>\r\n <li class=\"pag-item\"><a class=\"pag-link\" href=\"#\">3</a></li>\r\n </ul>\r\n </nav>\r\n </div>\r\n <br><br>\r\n <pre><code class=\"language-html\">&lt;nav&gt;\r\n &lt;ul class=\"pagination\"&gt;\r\n &lt;li class=\"pag-item\"&gt;&lt;a class=\"pag-link\" href=\"#\"&gt;Previous&lt;/a&gt;&lt;/li&gt;\r\n &lt;li class=\"pag-item active\" aria-current=\"page\"&gt;\r\n &lt;span class=\"pag-link\"&gt;\r\n 1\r\n &lt;span class=\"sr-only\"&gt;(current)&lt;/span&gt;\r\n &lt;/span&gt;\r\n &lt;/li&gt;\r\n &lt;li class=\"pag-item\"&gt;&lt;a class=\"pag-link\" href=\"#\"&gt;2&lt;/a&gt;&lt;/li&gt;\r\n &lt;li class=\"pag-item\"&gt;&lt;a class=\"pag-link\" href=\"#\"&gt;3&lt;/a&gt;&lt;/li&gt;\r\n &lt;li class=\"pag-item\"&gt;&lt;a class=\"pag-link\" href=\"#\"&gt;Next&lt;/a&gt;&lt;/li&gt;\r\n &lt;/ul&gt;\r\n&lt;/nav&gt;\r\n&lt;nav&gt;\r\n &lt;ul class=\"pagination\"&gt;\r\n &lt;li class=\"pag-item active\" aria-current=\"page\"&gt;\r\n &lt;span class=\"pag-link\"&gt;\r\n 1\r\n &lt;span class=\"sr-only\"&gt;(current)&lt;/span&gt;\r\n &lt;/span&gt;\r\n &lt;/li&gt;\r\n &lt;li class=\"pag-item\"&gt;&lt;a class=\"pag-link\" href=\"#\"&gt;2&lt;/a&gt;&lt;/li&gt;\r\n &lt;li class=\"pag-item\"&gt;&lt;a class=\"pag-link\" href=\"#\"&gt;3&lt;/a&gt;&lt;/li&gt;\r\n &lt;/ul&gt;\r\n&lt;/nav&gt;</code></pre>\r\n <h2>Centered pagination</h2>\r\n <div class=\"bgWhite\">\r\n <nav class=\"m7\">\r\n <ul class=\"pagination center-flex\">\r\n <li class=\"pag-item active\" aria-current=\"page\">\r\n <span class=\"pag-link\">\r\n 1\r\n <span class=\"sr-only\">(current)</span>\r\n </span>\r\n </li>\r\n <li class=\"pag-item\"><a class=\"pag-link\" href=\"#\">2</a></li>\r\n <li class=\"pag-item\"><a class=\"pag-link\" href=\"#\">3</a></li>\r\n </ul>\r\n </nav>\r\n </div>\r\n <pre><code class=\"language-html\">&lt;nav&gt;\r\n &lt;ul class=\"pagination center-flex\"&gt;\r\n &lt;li class=\"pag-item active\" aria-current=\"page\"&gt;\r\n &lt;span class=\"pag-link\"&gt;\r\n 1\r\n &lt;span class=\"sr-only\"&gt;(current)&lt;/span&gt;\r\n &lt;/span&gt;\r\n &lt;/li&gt;\r\n &lt;li class=\"pag-item\"&gt;&lt;a class=\"pag-link\" href=\"#\"&gt;2&lt;/a&gt;&lt;/li&gt;\r\n &lt;li class=\"pag-item\"&gt;&lt;a class=\"pag-link\" href=\"#\"&gt;3&lt;/a&gt;&lt;/li&gt;\r\n &lt;/ul&gt;\r\n&lt;/nav&gt;</code></pre>\r\n <h2>Sizes</h2>\r\n <div class=\"bgWhite\">\r\n <nav class=\"m5\">\r\n <ul class=\"pagination\">\r\n <li class=\"pag-item active\" aria-current=\"page\">\r\n <span class=\"pag-link\">\r\n 1\r\n <span class=\"sr-only\">(current)</span>\r\n </span>\r\n </li>\r\n <li class=\"pag-item\"><a class=\"pag-link\" href=\"#\">2</a></li>\r\n <li class=\"pag-item\"><a class=\"pag-link\" href=\"#\">3</a></li>\r\n </ul>\r\n </nav>\r\n <nav class=\"m5\">\r\n <ul class=\"pagination pag-lg\">\r\n <li class=\"pag-item active\" aria-current=\"page\">\r\n <span class=\"pag-link\">\r\n 1\r\n <span class=\"sr-only\">(current)</span>\r\n </span>\r\n </li>\r\n <li class=\"pag-item\"><a class=\"pag-link\" href=\"#\">2</a></li>\r\n <li class=\"pag-item\"><a class=\"pag-link\" href=\"#\">3</a></li>\r\n </ul>\r\n </nav>\r\n <nav class=\"m5\">\r\n <ul class=\"pagination pag-sm\">\r\n <li class=\"pag-item active\" aria-current=\"page\">\r\n <span class=\"pag-link\">\r\n 1\r\n <span class=\"sr-only\">(current)</span>\r\n </span>\r\n </li>\r\n <li class=\"pag-item\"><a class=\"pag-link\" href=\"#\">2</a></li>\r\n <li class=\"pag-item\"><a class=\"pag-link\" href=\"#\">3</a></li>\r\n </ul>\r\n </nav>\r\n </div>\r\n <pre><code class=\"language-html\">&lt;nav&gt;\r\n &lt;ul class=\"pagination\"&gt;\r\n &lt;li class=\"pag-item active\" aria-current=\"page\"&gt;\r\n &lt;span class=\"pag-link\"&gt;\r\n 1\r\n &lt;span class=\"sr-only\"&gt;(current)&lt;/span&gt;\r\n &lt;/span&gt;\r\n &lt;/li&gt;\r\n &lt;li class=\"pag-item\"&gt;&lt;a class=\"pag-link\" href=\"#\"&gt;2&lt;/a&gt;&lt;/li&gt;\r\n &lt;li class=\"pag-item\"&gt;&lt;a class=\"pag-link\" href=\"#\"&gt;3&lt;/a&gt;&lt;/li&gt;\r\n &lt;/ul&gt;\r\n&lt;/nav&gt;\r\n&lt;nav&gt;\r\n &lt;ul class=\"pagination pag-lg\"&gt;\r\n &lt;li class=\"pag-item active\" aria-current=\"page\"&gt;\r\n &lt;span class=\"pag-link\"&gt;\r\n 1\r\n &lt;span class=\"sr-only\"&gt;(current)&lt;/span&gt;\r\n &lt;/span&gt;\r\n &lt;/li&gt;\r\n &lt;li class=\"pag-item\"&gt;&lt;a class=\"pag-link\" href=\"#\"&gt;2&lt;/a&gt;&lt;/li&gt;\r\n &lt;li class=\"pag-item\"&gt;&lt;a class=\"pag-link\" href=\"#\"&gt;3&lt;/a&gt;&lt;/li&gt;\r\n &lt;/ul&gt;\r\n&lt;/nav&gt;\r\n&lt;nav&gt;\r\n &lt;ul class=\"pagination pag-sm\"&gt;\r\n &lt;li class=\"pag-item active\" aria-current=\"page\"&gt;\r\n &lt;span class=\"pag-link\"&gt;\r\n 1\r\n &lt;span class=\"sr-only\"&gt;(current)&lt;/span&gt;\r\n &lt;/span&gt;\r\n &lt;/li&gt;\r\n &lt;li class=\"pag-item\"&gt;&lt;a class=\"pag-link\" href=\"#\"&gt;2&lt;/a&gt;&lt;/li&gt;\r\n &lt;li class=\"pag-item\"&gt;&lt;a class=\"pag-link\" href=\"#\"&gt;3&lt;/a&gt;&lt;/li&gt;\r\n &lt;/ul&gt;\r\n&lt;/nav&gt;</code></pre>', NULL, '1.6'), (10, 'Progress', 'Components', '<h2>Progress Bars</h2>\r\n<div style=\"width: 60vw;\">\r\n <div class=\"progress notstrict\">\r\n <div class=\"progress-bar bg-success\" role=\"progressbar\" style=\"width: 25%\" aria-valuenow=\"25\" aria-valuemin=\"0\"\r\n aria-valuemax=\"100\"></div>\r\n </div>\r\n <div class=\"progress notstrict\">\r\n <div class=\"progress-bar bg-info\" role=\"progressbar\" style=\"width: 50%\" aria-valuenow=\"50\" aria-valuemin=\"0\"\r\n aria-valuemax=\"100\"></div>\r\n </div>\r\n <div class=\"progress notstrict\">\r\n <div class=\"progress-bar bg-danger\" role=\"progressbar\" style=\"width: 75%\" aria-valuenow=\"75\" aria-valuemin=\"0\"\r\n aria-valuemax=\"100\"></div>\r\n </div>\r\n <div class=\"progress notstrict\">\r\n <div class=\"progress-bar bg-error\" role=\"progressbar\" style=\"width: 100%\" aria-valuenow=\"100\" aria-valuemin=\"0\"\r\n aria-valuemax=\"100\"></div>\r\n </div>\r\n <div class=\"progress notstrict\">\r\n <div class=\"progress-bar bg-normal\" role=\"progressbar\" style=\"width: 100%\" aria-valuenow=\"100\" aria-valuemin=\"0\"\r\n aria-valuemax=\"100\"></div>\r\n </div>\r\n <div class=\"progress notstrict\">\r\n <div class=\"progress-bar bg-dark\" role=\"progressbar\" style=\"width: 100%\" aria-valuenow=\"100\" aria-valuemin=\"0\"\r\n aria-valuemax=\"100\"></div>\r\n </div>\r\n</div>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;div class=\"progress\"&gt;\r\n &lt;div class=\"progress-bar bg-success\" role=\"progressbar\" style=\"width: 25%\" aria-valuenow=\"25\" aria-valuemin=\"0\" aria-valuemax=\"100\"&gt;&lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"progress\"&gt;\r\n &lt;div class=\"progress-bar bg-info\" role=\"progressbar\" style=\"width: 50%\" aria-valuenow=\"50\" aria-valuemin=\"0\" aria-valuemax=\"100\"&gt;&lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"progress\"&gt;\r\n &lt;div class=\"progress-bar bg-danger\" role=\"progressbar\" style=\"width: 75%\" aria-valuenow=\"75\" aria-valuemin=\"0\" aria-valuemax=\"100\"&gt;&lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"progress\"&gt;\r\n &lt;div class=\"progress-bar bg-error\" role=\"progressbar\" style=\"width: 100%\" aria-valuenow=\"100\" aria-valuemin=\"0\" aria-valuemax=\"100\"&gt;&lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"progress\"&gt;\r\n &lt;div class=\"progress-bar bg-normal\" role=\"progressbar\" style=\"width: 100%\" aria-valuenow=\"100\" aria-valuemin=\"0\" aria-valuemax=\"100\"&gt;&lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"progress\"&gt;\r\n &lt;div class=\"progress-bar bg-dark\" role=\"progressbar\" style=\"width: 100%\" aria-valuenow=\"100\" aria-valuemin=\"0\" aria-valuemax=\"100\"&gt;&lt;/div&gt;\r\n&lt;/div&gt;</code></pre>\r\n<h2>Striped Progress Bars</h2>\r\n<div style=\"width: 60vw;\">\r\n <div class=\"progress notstrict\">\r\n <div class=\"progress-bar bg-success progress-bar-striped\" role=\"progressbar\" style=\"width: 25%\"\r\n aria-valuenow=\"25\" aria-valuemin=\"0\" aria-valuemax=\"100\"></div>\r\n </div>\r\n <div class=\"progress notstrict\">\r\n <div class=\"progress-bar bg-info progress-bar-striped\" role=\"progressbar\" style=\"width: 50%\" aria-valuenow=\"50\"\r\n aria-valuemin=\"0\" aria-valuemax=\"100\"></div>\r\n </div>\r\n <div class=\"progress notstrict\">\r\n <div class=\"progress-bar bg-danger progress-bar-striped\" role=\"progressbar\" style=\"width: 75%\"\r\n aria-valuenow=\"75\" aria-valuemin=\"0\" aria-valuemax=\"100\"></div>\r\n </div>\r\n <div class=\"progress notstrict\">\r\n <div class=\"progress-bar bg-error progress-bar-striped\" role=\"progressbar\" style=\"width: 100%\"\r\n aria-valuenow=\"100\" aria-valuemin=\"0\" aria-valuemax=\"100\"></div>\r\n </div>\r\n <div class=\"progress notstrict\">\r\n <div class=\"progress-bar bg-normal progress-bar-striped\" role=\"progressbar\" style=\"width: 100%\"\r\n aria-valuenow=\"100\" aria-valuemin=\"0\" aria-valuemax=\"100\"></div>\r\n </div>\r\n <div class=\"progress notstrict\">\r\n <div class=\"progress-bar bg-dark progress-bar-striped\" role=\"progressbar\" style=\"width: 100%\"\r\n aria-valuenow=\"100\" aria-valuemin=\"0\" aria-valuemax=\"100\"></div>\r\n </div>\r\n</div>\r\n<pre><code class=\"language-html\">&lt;div class=\"progress\"&gt;\r\n &lt;div class=\"progress-bar bg-success progress-bar-striped\" role=\"progressbar\" style=\"width: 25%\" aria-valuenow=\"25\" aria-valuemin=\"0\" aria-valuemax=\"100\"&gt;&lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"progress\"&gt;\r\n &lt;div class=\"progress-bar bg-info progress-bar-striped\" role=\"progressbar\" style=\"width: 50%\" aria-valuenow=\"50\" aria-valuemin=\"0\" aria-valuemax=\"100\"&gt;&lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"progress\"&gt;\r\n &lt;div class=\"progress-bar bg-danger progress-bar-striped\" role=\"progressbar\" style=\"width: 75%\" aria-valuenow=\"75\" aria-valuemin=\"0\" aria-valuemax=\"100\"&gt;&lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"progress\"&gt;\r\n &lt;div class=\"progress-bar bg-error progress-bar-striped\" role=\"progressbar\" style=\"width: 100%\" aria-valuenow=\"100\" aria-valuemin=\"0\" aria-valuemax=\"100\"&gt;&lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"progress\"&gt;\r\n &lt;div class=\"progress-bar bg-normal progress-bar-striped\" role=\"progressbar\" style=\"width: 100%\" aria-valuenow=\"100\" aria-valuemin=\"0\" aria-valuemax=\"100\"&gt;&lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"progress\"&gt;\r\n &lt;div class=\"progress-bar bg-dark progress-bar-striped\" role=\"progressbar\" style=\"width: 100%\" aria-valuenow=\"100\" aria-valuemin=\"0\" aria-valuemax=\"100\"&gt;&lt;/div&gt;\r\n&lt;/div&gt;</code></pre>\r\n<h2>Strict Mode Progress Bars</h2>\r\n<progress class=\"progress bg-normal\" value=\"15\" max=\"100\">15%</progress>\r\n<progress class=\"progress bg-success\" value=\"15\" max=\"100\">15%</progress>\r\n<progress class=\"progress bg-error\" value=\"15\" max=\"100\">15%</progress><br>\r\n<div class=\"alert alert-normal\">This feature is only avalible in the strict mode.</div>\r\n<div class=\"alert alert-error\">This feature currently works only in Mozilla Firefox.</div>', '2021-02-21 14:54:03', '2.2'); INSERT INTO `articles` (`id`, `name`, `section`, `content`, `published_at`, `version`) VALUES (11, 'Spinners', 'Components', '<h2>Spinners</h2>\r\n <div class=\"spinner text-normal\" role=\"status\">\r\n <span class=\"sr-only\">Loading...</span>\r\n </div>\r\n <div class=\"spinner text-success\" role=\"status\">\r\n <span class=\"sr-only\">Loading...</span>\r\n </div>\r\n <div class=\"spinner text-error\" role=\"status\">\r\n <span class=\"sr-only\">Loading...</span>\r\n </div>\r\n <div class=\"spinner text-danger\" role=\"status\">\r\n <span class=\"sr-only\">Loading...</span>\r\n </div>\r\n <div class=\"spinner text-info\" role=\"status\">\r\n <span class=\"sr-only\">Loading...</span>\r\n </div>\r\n <div class=\"spinner text-dark\" role=\"status\">\r\n <span class=\"sr-only\">Loading...</span>\r\n </div>\r\n <div class=\"spinner text-white\" role=\"status\">\r\n <span class=\"sr-only\">Loading...</span>\r\n </div>\r\n <br><br>\r\n <pre><code class=\"language-html\">&lt;div class=\"spinner text-normal\" role=\"status\"&gt;\r\n &lt;span class=\"sr-only\"&gt;Loading...&lt;/span&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"spinner text-success\" role=\"status\"&gt;\r\n &lt;span class=\"sr-only\"&gt;Loading...&lt;/span&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"spinner text-error\" role=\"status\"&gt;\r\n &lt;span class=\"sr-only\"&gt;Loading...&lt;/span&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"spinner text-danger\" role=\"status\"&gt;\r\n &lt;span class=\"sr-only\"&gt;Loading...&lt;/span&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"spinner text-info\" role=\"status\"&gt;\r\n &lt;span class=\"sr-only\"&gt;Loading...&lt;/span&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"spinner text-dark\" role=\"status\"&gt;\r\n &lt;span class=\"sr-only\"&gt;Loading...&lt;/span&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"spinner text-white\" role=\"status\"&gt;\r\n &lt;span class=\"sr-only\"&gt;Loading...&lt;/span&gt;\r\n&lt;/div&gt;</code></pre>\r\n <h2>Usage with margin utilities</h2>\r\n <h4>If you want to have some space beetween spinners and content, you can use the margin utilities!</h4>\r\n <div class=\"bgWhite\">\r\n <div class=\"spinner text-normal m5\" role=\"status\">\r\n <span class=\"sr-only\">Loading...</span>\r\n </div>\r\n </div>\r\n <br><br>\r\n <pre><code class=\"language-html\">&lt;div class=\"spinner text-normal m5\" role=\"status\"&gt;\r\n &lt;span class=\"sr-only\"&gt;Loading...&lt;/span&gt;\r\n&lt;/div&gt;</code></pre>', NULL, '1.0'), (12, 'Tables', 'Components', '<h2>Normal Table</h2>\r\n <div class=\"bgWhite\" style=\"width: 90%; padding: 0;\">\r\n <table>\r\n <thead>\r\n <tr>\r\n <th>#</th>\r\n <th>Country</th>\r\n <th>Population</th>\r\n <th>Currency</th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <tr>\r\n <th>1</th>\r\n <td>Poland</td>\r\n <td>37,97 million</td>\r\n <td>PLN</td>\r\n </tr>\r\n <tr>\r\n <th>2</th>\r\n <td>Germany</td>\r\n <td>83,02 million</td>\r\n <td>EUR</td>\r\n </tr>\r\n <tr>\r\n <th>3</th>\r\n <td>Canada</td>\r\n <td>37,59 million</td>\r\n <td>CAD</td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n <br><br>\r\n <pre><code class=\"language-html\">&lt;table&gt;\r\n &lt;thead&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;#&lt;/th&gt;\r\n &lt;th&gt;Country&lt;/th&gt;\r\n &lt;th&gt;Population&lt;/th&gt;\r\n &lt;th&gt;Currency&lt;/th&gt;\r\n &lt;/tr&gt;\r\n &lt;/thead&gt;\r\n &lt;tbody&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;1&lt;/th&gt;\r\n &lt;td&gt;Poland&lt;/td&gt;\r\n &lt;td&gt;37,97 million&lt;/td&gt;\r\n &lt;td&gt;PLN&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;2&lt;/th&gt;\r\n &lt;td&gt;Germany&lt;/td&gt;\r\n &lt;td&gt;83,02 million&lt;/td&gt;\r\n &lt;td&gt;EUR&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;3&lt;/th&gt;\r\n &lt;td&gt;Canada&lt;/td&gt;\r\n &lt;td&gt;37,59 million&lt;/td&gt;\r\n &lt;td&gt;CAD&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;/tbody&gt;\r\n&lt;/table&gt;</code></pre>\r\n\r\n <h2>Dark Table</h2>\r\n <div class=\"bgWhite\" style=\"width: 90%; padding: 0;\">\r\n <table class=\"table-dark\">\r\n <thead>\r\n <tr>\r\n <th>#</th>\r\n <th>Country</th>\r\n <th>Population</th>\r\n <th>Currency</th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <tr>\r\n <th>1</th>\r\n <td>Poland</td>\r\n <td>37,97 million</td>\r\n <td>PLN</td>\r\n </tr>\r\n <tr>\r\n <th>2</th>\r\n <td>Germany</td>\r\n <td>83,02 million</td>\r\n <td>EUR</td>\r\n </tr>\r\n <tr>\r\n <th>3</th>\r\n <td>Canada</td>\r\n <td>37,59 million</td>\r\n <td>CAD</td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n <br><br>\r\n <pre><code class=\"language-html\">&lt;table class=\"table-dark\"&gt;\r\n &lt;thead&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;#&lt;/th&gt;\r\n &lt;th&gt;Country&lt;/th&gt;\r\n &lt;th&gt;Population&lt;/th&gt;\r\n &lt;th&gt;Currency&lt;/th&gt;\r\n &lt;/tr&gt;\r\n &lt;/thead&gt;\r\n &lt;tbody&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;1&lt;/th&gt;\r\n &lt;td&gt;Poland&lt;/td&gt;\r\n &lt;td&gt;37,97 million&lt;/td&gt;\r\n &lt;td&gt;PLN&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;2&lt;/th&gt;\r\n &lt;td&gt;Germany&lt;/td&gt;\r\n &lt;td&gt;83,02 million&lt;/td&gt;\r\n &lt;td&gt;EUR&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;3&lt;/th&gt;\r\n &lt;td&gt;Canada&lt;/td&gt;\r\n &lt;td&gt;37,59 million&lt;/td&gt;\r\n &lt;td&gt;CAD&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;/tbody&gt;\r\n&lt;/table&gt;</code></pre>\r\n\r\n <h2>Striped Tables</h2>\r\n <div class=\"bgWhite\" style=\"width: 90%; padding: 0;\">\r\n <table class=\"table-striped\">\r\n <thead>\r\n <tr>\r\n <th>#</th>\r\n <th>Country</th>\r\n <th>Population</th>\r\n <th>Currency</th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <tr>\r\n <th>1</th>\r\n <td>Poland</td>\r\n <td>37,97 million</td>\r\n <td>PLN</td>\r\n </tr>\r\n <tr>\r\n <th>2</th>\r\n <td>Germany</td>\r\n <td>83,02 million</td>\r\n <td>EUR</td>\r\n </tr>\r\n <tr>\r\n <th>3</th>\r\n <td>Canada</td>\r\n <td>37,59 million</td>\r\n <td>CAD</td>\r\n </tr>\r\n </tbody>\r\n </table><br>\r\n <table class=\"table-dark table-striped\">\r\n <thead>\r\n <tr>\r\n <th>#</th>\r\n <th>Country</th>\r\n <th>Population</th>\r\n <th>Currency</th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <tr>\r\n <th>1</th>\r\n <td>Poland</td>\r\n <td>37,97 million</td>\r\n <td>PLN</td>\r\n </tr>\r\n <tr>\r\n <th>2</th>\r\n <td>Germany</td>\r\n <td>83,02 million</td>\r\n <td>EUR</td>\r\n </tr>\r\n <tr>\r\n <th>3</th>\r\n <td>Canada</td>\r\n <td>37,59 million</td>\r\n <td>CAD</td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n <br><br>\r\n<pre><code class=\"language-html\">&lt;table class=\"table-striped\"&gt;\r\n &lt;thead&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;#&lt;/th&gt;\r\n &lt;th&gt;Country&lt;/th&gt;\r\n &lt;th&gt;Population&lt;/th&gt;\r\n &lt;th&gt;Currency&lt;/th&gt;\r\n &lt;/tr&gt;\r\n &lt;/thead&gt;\r\n &lt;tbody&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;1&lt;/th&gt;\r\n &lt;td&gt;Poland&lt;/td&gt;\r\n &lt;td&gt;37,97 million&lt;/td&gt;\r\n &lt;td&gt;PLN&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;2&lt;/th&gt;\r\n &lt;td&gt;Germany&lt;/td&gt;\r\n &lt;td&gt;83,02 million&lt;/td&gt;\r\n &lt;td&gt;EUR&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;3&lt;/th&gt;\r\n &lt;td&gt;Canada&lt;/td&gt;\r\n &lt;td&gt;37,59 million&lt;/td&gt;\r\n &lt;td&gt;CAD&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;/tbody&gt;\r\n&lt;/table&gt;\r\n\r\n&lt;table class=\"table-dark table-striped\"&gt;\r\n &lt;thead&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;#&lt;/th&gt;\r\n &lt;th&gt;Country&lt;/th&gt;\r\n &lt;th&gt;Population&lt;/th&gt;\r\n &lt;th&gt;Currency&lt;/th&gt;\r\n &lt;/tr&gt;\r\n &lt;/thead&gt;\r\n &lt;tbody&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;1&lt;/th&gt;\r\n &lt;td&gt;Poland&lt;/td&gt;\r\n &lt;td&gt;37,97 million&lt;/td&gt;\r\n &lt;td&gt;PLN&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;2&lt;/th&gt;\r\n &lt;td&gt;Germany&lt;/td&gt;\r\n &lt;td&gt;83,02 million&lt;/td&gt;\r\n &lt;td&gt;EUR&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;3&lt;/th&gt;\r\n &lt;td&gt;Canada&lt;/td&gt;\r\n &lt;td&gt;37,59 million&lt;/td&gt;\r\n &lt;td&gt;CAD&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;/tbody&gt;\r\n&lt;/table&gt;</code></pre>\r\n\r\n <h2>Bordered Table</h2>\r\n <div class=\"bgWhite\" style=\"width: 90%; padding: 0;\">\r\n <table class=\"table-border\">\r\n <thead>\r\n <tr>\r\n <th>#</th>\r\n <th>Country</th>\r\n <th>Population</th>\r\n <th>Currency</th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <tr>\r\n <th>1</th>\r\n <td>Poland</td>\r\n <td>37,97 million</td>\r\n <td>PLN</td>\r\n </tr>\r\n <tr>\r\n <th>2</th>\r\n <td>Germany</td>\r\n <td>83,02 million</td>\r\n <td>EUR</td>\r\n </tr>\r\n <tr>\r\n <th>3</th>\r\n <td>Canada</td>\r\n <td>37,59 million</td>\r\n <td>CAD</td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n <br><br>\r\n <pre><code class=\"language-html\">&lt;table class=\"table-border\"&gt;\r\n &lt;thead&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;#&lt;/th&gt;\r\n &lt;th&gt;Country&lt;/th&gt;\r\n &lt;th&gt;Population&lt;/th&gt;\r\n &lt;th&gt;Currency&lt;/th&gt;\r\n &lt;/tr&gt;\r\n &lt;/thead&gt;\r\n &lt;tbody&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;1&lt;/th&gt;\r\n &lt;td&gt;Poland&lt;/td&gt;\r\n &lt;td&gt;37,97 million&lt;/td&gt;\r\n &lt;td&gt;PLN&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;2&lt;/th&gt;\r\n &lt;td&gt;Germany&lt;/td&gt;\r\n &lt;td&gt;83,02 million&lt;/td&gt;\r\n &lt;td&gt;EUR&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;tr&gt;\r\n &lt;th&gt;3&lt;/th&gt;\r\n &lt;td&gt;Canada&lt;/td&gt;\r\n &lt;td&gt;37,59 million&lt;/td&gt;\r\n &lt;td&gt;CAD&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;/tbody&gt;\r\n&lt;/table&gt;</code></pre>\r\n\r\n <h2>Bordered Table</h2>\r\n <div class=\"bgWhite\" style=\"width: 90%; padding: 0;\">\r\n <table class=\"table\">\r\n <thead>\r\n <tr>\r\n <th scope=\"col\">Class</th>\r\n <th scope=\"col\">Cells</th>\r\n <th scope=\"col\">Cells 2</th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <tr class=\"bg-normal text-white\">\r\n <th scope=\"row\">Normal</th>\r\n <td>Cell</td>\r\n <td>Cell</td>\r\n </tr>\r\n <tr class=\"bg-secondary text-white\">\r\n <th scope=\"row\">Secondary</th>\r\n <td>Cell</td>\r\n <td>Cell</td>\r\n </tr>\r\n <tr class=\"bg-success text-white\">\r\n <th scope=\"row\">Success</th>\r\n <td>Cell</td>\r\n <td>Cell</td>\r\n </tr>\r\n <tr class=\"bg-error text-white\">\r\n <th scope=\"row\">Error</th>\r\n <td>Cell</td>\r\n <td>Cell</td>\r\n </tr>\r\n <tr class=\"bg-danger\">\r\n <th scope=\"row\">Danger</th>\r\n <td>Cell</td>\r\n <td>Cell</td>\r\n </tr>\r\n <tr class=\"bg-info text-white\">\r\n <th scope=\"row\">Info</th>\r\n <td>Cell</td>\r\n <td>Cell</td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n <br><br>\r\n \r\n\r\n<pre><code class=\"language-html\">&lt;table class=\"table\"&gt;\r\n &lt;thead&gt;\r\n &lt;tr&gt;\r\n &lt;th scope=\"col\"&gt;Class&lt;/th&gt;\r\n &lt;th scope=\"col\"&gt;Cells&lt;/th&gt;\r\n &lt;th scope=\"col\"&gt;Cells 2&lt;/th&gt;\r\n &lt;/tr&gt;\r\n &lt;/thead&gt;\r\n &lt;tbody&gt;\r\n &lt;tr class=\"bg-normal text-white\"&gt;\r\n &lt;th scope=\"row\"&gt;Normal&lt;/th&gt;\r\n &lt;td&gt;Cell&lt;/td&gt;\r\n &lt;td&gt;Cell&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;tr class=\"bg-secondary text-white\"&gt;\r\n &lt;th scope=\"row\"&gt;Secondary&lt;/th&gt;\r\n &lt;td&gt;Cell&lt;/td&gt;\r\n &lt;td&gt;Cell&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;tr class=\"bg-success text-white\"&gt;\r\n &lt;th scope=\"row\"&gt;Success&lt;/th&gt;\r\n &lt;td&gt;Cell&lt;/td&gt;\r\n &lt;td&gt;Cell&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;tr class=\"bg-error text-white\"&gt;\r\n &lt;th scope=\"row\"&gt;Error&lt;/th&gt;\r\n &lt;td&gt;Cell&lt;/td&gt;\r\n &lt;td&gt;Cell&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;tr class=\"bg-danger\"&gt;\r\n &lt;th scope=\"row\"&gt;Danger&lt;/th&gt;\r\n &lt;td&gt;Cell&lt;/td&gt;\r\n &lt;td&gt;Cell&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;tr class=\"bg-info text-white\"&gt;\r\n &lt;th scope=\"row\"&gt;Info&lt;/th&gt;\r\n &lt;td&gt;Cell&lt;/td&gt;\r\n &lt;td&gt;Cell&lt;/td&gt;\r\n &lt;/tr&gt;\r\n &lt;/tbody&gt;\r\n&lt;/table&gt;</code></pre>', NULL, '2.0'), (13, 'Flexbox', 'Layout', '<style>\r\n /* tech debt over here, fix ASAP. */\r\n /* No :) */\r\n .elem_showcase {\r\n background-color: var(--green);\r\n height: 150px;\r\n margin-left: 10px;\r\n margin-bottom: 10px;\r\n }\r\n\r\n .disablemargin2 {\r\n width: 400px;\r\n }\r\n\r\n .dismargin {\r\n margin-left: -40px;\r\n }\r\n\r\n body {\r\n overflow-x: hidden;\r\n }\r\n\r\n .showcasegrid {\r\n color: #fff;\r\n border-radius: 4px;\r\n font-weight: 600;\r\n padding: 1.25rem 0;\r\n text-align: center;\r\n }\r\n </style>\r\n<h2>Containers</h2>\r\n<h4>Containters center your div horizontally. You need to have a width specified, tougth. <br>\r\n You can use containers as a way to center all of your sites content.</h4>\r\n<div class=\"container bg-success\" style=\"width: 600px;\">\r\n <h1>Hello World!</h1>\r\n</div>\r\n<div class=\"container bg-success\" style=\"text-align: center;\r\n border-radius: 5px;\r\n padding: 4px;\r\n width: 600px;\">\r\n <h1>Hello World!</h1>\r\n</div>\r\n<pre><code class=\"language-html\">&lt;div class=\"container bg-success\" style=\"width: 600px;\"&gt;\r\n &lt;h1&gt;Hello World!&lt;/h1&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"container bg-success\" style=\"text-align: center;\r\n border-radius: 5px;\r\n padding: 4px;\r\n width: 600px;\"&gt;\r\n &lt;h1&gt;Hello World!&lt;/h1&gt;\r\n&lt;/div&gt;</code></pre>\r\n<h2>Flexbox</h2>\r\n<div class=\"flexbox disablemargin\">\r\n <div class=\"column elem_showcase\"></div>\r\n <div class=\"column elem_showcase\"></div>\r\n <div class=\"column elem_showcase\"></div>\r\n <div class=\"column elem_showcase\"></div>\r\n <div class=\"column elem_showcase\"></div>\r\n</div><br>\r\n<button class=\"btn btn-normal\" onclick=\"addColumn();\">Add an element</button>\r\n<button class=\"btn btn-secondary\" onclick=\"delColumn();\">Remove a element</button>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column\"&gt;&lt;/div&gt;\r\n &lt;div class=\"column\"&gt;&lt;/div&gt;\r\n &lt;div class=\"column\"&gt;&lt;/div&gt;\r\n &lt;div class=\"column\"&gt;&lt;/div&gt;\r\n &lt;div class=\"column\"&gt;&lt;/div&gt;\r\n&lt;/div&gt;</code></pre>\r\n<h2>Singleline Columns</h2>\r\n<div class=\"flexbox disablemargin2 Singleline\">\r\n <div class=\"column elem_showcase\"></div>\r\n <div class=\"column elem_showcase\"></div>\r\n <div class=\"column elem_showcase\"></div>\r\n <div class=\"column elem_showcase\"></div>\r\n <div class=\"column elem_showcase\"></div>\r\n <div class=\"column elem_showcase\"></div>\r\n <div class=\"column elem_showcase\"></div>\r\n <div class=\"column elem_showcase\"></div>\r\n <div class=\"column elem_showcase\"></div>\r\n <div class=\"column elem_showcase\"></div>\r\n</div><br>\r\n<button class=\"btn btn-normal\" onclick=\"addColumn2();\">Add an element</button>\r\n<button class=\"btn btn-secondary\" onclick=\"delColumn2();\">Remove a element</button>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;div class=\"flexbox singleline\"&gt;\r\n &lt;div class=\"column\"&gt;&lt;/div&gt;\r\n &lt;div class=\"column\"&gt;&lt;/div&gt;\r\n &lt;div class=\"column\"&gt;&lt;/div&gt;\r\n &lt;!-- ... --&gt;\r\n &lt;div class=\"column\"&gt;&lt;/div&gt;\r\n&lt;/div&gt;</code></pre>\r\n<h2>Columns with specific size</h2>\r\n<div class=\"dismargin\">\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-100\">\r\n <p class=\"showcasegrid bg-success\">flex-100</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-95\">\r\n <p class=\"showcasegrid bg-success\">flex-95</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-90\">\r\n <p class=\"showcasegrid bg-success\">flex-90</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-85\">\r\n <p class=\"showcasegrid bg-success\">flex-85</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-80\">\r\n <p class=\"showcasegrid bg-success\">flex-80</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-75\">\r\n <p class=\"showcasegrid bg-success\">flex-75</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-70\">\r\n <p class=\"showcasegrid bg-success\">flex-70</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-65\">\r\n <p class=\"showcasegrid bg-success\">flex-65</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-60\">\r\n <p class=\"showcasegrid bg-success\">flex-60</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-55\">\r\n <p class=\"showcasegrid bg-success\">flex-55</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-50\">\r\n <p class=\"showcasegrid bg-success\">flex-50</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-45\">\r\n <p class=\"showcasegrid bg-success\">flex-45</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-40\">\r\n <p class=\"showcasegrid bg-success\">flex-40</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-35\">\r\n <p class=\"showcasegrid bg-success\">flex-35</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-30\">\r\n <p class=\"showcasegrid bg-success\">flex-30</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-25\">\r\n <p class=\"showcasegrid bg-success\">flex-25</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-20\">\r\n <p class=\"showcasegrid bg-success\">flex-20</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-15\">\r\n <p class=\"showcasegrid bg-success\">flex-15</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-10\">\r\n <p class=\"showcasegrid bg-success\">flex-10</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n <div class=\"flexbox\">\r\n <div class=\"column flex-5\">\r\n <p class=\"showcasegrid bg-success\">flex-5</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n <div class=\"column\">\r\n <p class=\"showcasegrid bg-success\">Auto</p>\r\n </div>\r\n </div>\r\n</div><br>\r\n<br><br>\r\n\r\n\r\n<pre><code class=\"language-html\">&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-100\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-100&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-95\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-95&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-90\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-90&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-85\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-85&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-80\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-80&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-75\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-75&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-70\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-70&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-65\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-65&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-60\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-60&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-55\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-55&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-50\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-50&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-45\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-45&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-40\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-40&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-35\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-35&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-30\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-30&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-25\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-25&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-20\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-20&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-15\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-15&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-10\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-10&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;div class=\"flexbox\"&gt;\r\n &lt;div class=\"column flex-5\"&gt;\r\n &lt;p class=\"bg-success\"&gt;flex-5&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"column\"&gt;\r\n &lt;p class=\"bg-success\"&gt;Auto&lt;/p&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;</code></pre>\r\n<script>\r\n function addColumn() {\r\n document.querySelector(\".disablemargin\").innerHTML += `<div class=\"column elem_showcase\"></div>`;\r\n };\r\n function delColumn() {\r\n document.querySelectorAll(\".disablemargin .elem_showcase\")[0].remove();\r\n };\r\n\r\n function addColumn2() {\r\n document.querySelector(\".disablemargin2\").innerHTML += `<div class=\"column elem_showcase\"></div>`;\r\n };\r\n function delColumn2() {\r\n document.querySelectorAll(\".disablemargin2 .elem_showcase\")[0].remove();\r\n };\r\n</script>', '2021-02-21 16:06:58', '2.2'), (14, 'Text', 'Forms', '<h2>Text inputs</h2>\r\n <div class=\"bgWhite\" style=\"width: 50vw;\">\r\n <div class=\"inputs\">\r\n <input type=\"text\" name=\"exampleInput1\" id=\"exampleInput1\" placeholder=\"Example placeholder\" style=\"color: black;\">\r\n </div><br>\r\n <div class=\"inputs\">\r\n <input type=\"text\" name=\"exampleInput2\" id=\"exampleInput2\" value=\"Example value\" style=\"color: black;\">\r\n </div><br>\r\n <div class=\"inputs\">\r\n <textarea name=\"exampleInput3\" id=\"exampleInput3\" cols=\"20\" rows=\"5\" style=\"color: black;\">That\'s a textarea!</textarea>\r\n </div>\r\n </div>\r\n <pre><code class=\"language-html\">&lt;div class=\"inputs\"&gt;\r\n &lt;input type=\"text\" name=\"exampleInput1\" id=\"exampleInput1\" placeholder=\"Example placeholder\"&gt;\r\n&lt;/div&gt;&lt;br&gt;\r\n&lt;div class=\"inputs\"&gt;\r\n &lt;input type=\"text\" name=\"exampleInput2\" id=\"exampleInput2\" value=\"Example value\"&gt;\r\n&lt;/div&gt;&lt;br&gt;\r\n&lt;div class=\"inputs\"&gt;\r\n &lt;textarea name=\"exampleInput3\" id=\"exampleInput3\" cols=\"20\" rows=\"5\"&gt;That\'s a textarea!&lt;/textarea&gt;\r\n&lt;/div&gt;</code></pre>', NULL, '2.0'), (15, 'Labels', 'Forms', '<style>\r\n .dark-mode {\r\n --form1: #e9ecef;\r\n --form2: #ced4da;\r\n --form-shadow: 0 0 0 .25rem rgba(0, 102, 255, 0.438);\r\n }\r\n </style>\r\n<h2>Input labels</h2>\r\n <div class=\"bgWhite\" style=\"width: 60vw;\">\r\n <div class=\"inputs m3\">\r\n <label for=\"username\">@</label>\r\n <input type=\"text\" name=\"username\" placeholder=\"Username\" aria-label=\"Username\">\r\n </div>\r\n\r\n <div class=\"inputs m3\">\r\n <input type=\"text\" name=\"mail\" placeholder=\"Company E-Mail\" aria-label=\"E-Mail\">\r\n <label for=\"mail\">@company.com</label>\r\n </div>\r\n\r\n <div class=\"inputs m3\">\r\n <label id=\"basic-addon3\">https://example.com/users/</label>\r\n <input type=\"text\" id=\"basic-url\" aria-describedby=\"basic-addon3\">\r\n </div>\r\n\r\n <div class=\"inputs m3\">\r\n <label>$</label>\r\n <input type=\"text\" aria-label=\"Amount (to the nearest dollar)\">\r\n <label>.00</label>\r\n </div>\r\n\r\n <div class=\"inputs m3\">\r\n <input type=\"text\" placeholder=\"Username\" aria-label=\"Username\">\r\n <label>@</label>\r\n <input type=\"text\" placeholder=\"Server\" aria-label=\"Server\">\r\n </div>\r\n\r\n <div class=\"inputs m3\">\r\n <label>With textarea</label>\r\n <textarea aria-label=\"With textarea\"></textarea>\r\n </div>\r\n </div>\r\n <pre><code class=\"language-html\">&lt;div class=\"inputs\"&gt;\r\n &lt;input type=\"text\" name=\"exampleInput1\" id=\"exampleInput1\" placeholder=\"Example placeholder\"&gt;\r\n&lt;/div&gt;&lt;br&gt;\r\n&lt;div class=\"inputs\"&gt;\r\n &lt;input type=\"text\" name=\"exampleInput2\" id=\"exampleInput2\" value=\"Example value\"&gt;\r\n&lt;/div&gt;&lt;br&gt;\r\n&lt;div class=\"inputs\"&gt;\r\n &lt;textarea name=\"exampleInput3\" id=\"exampleInput3\" cols=\"20\" rows=\"5\"&gt;That\'s a textarea!&lt;/textarea&gt;\r\n&lt;/div&gt;</code></pre>', NULL, '2.0'), (16, 'Others', 'Forms', ' <h2>Color Picker</h2>\r\n <input type=\"color\" value=\"#023662\">\r\n <pre><code class=\"language-html\">&lt;input type=\"color\" value=\"#023662\"&gt;</code></pre>\r\n\r\n <h2>File Upload</h2>\r\n <div class=\"bgWhite\">\r\n <input type=\"file\">\r\n </div>\r\n <pre><code class=\"language-html\">&lt;input type=\"file\"&gt;</code></pre>', NULL, '2.0'), (17, 'Parallax', 'Others', '<style>\r\n#parallaxImg {\r\n width: 640px;\r\n height: 426px;\r\n background-image: url(\"assets/browser.png\");\r\n background-size: 125%;\r\n background-repeat: no-repeat;\r\n}\r\n</style>\r\n<h2>Example Parallax</h2>\r\n <i>Move your mouse over the image to see the effect!</i><br>\r\n <blockquote>\r\n <h4>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" class=\"text-error\"\r\n viewBox=\"0 0 16 16\" style=\"margin-bottom: -6px;\">\r\n <path\r\n d=\"M11.46.146A.5.5 0 0 0 11.107 0H4.893a.5.5 0 0 0-.353.146L.146 4.54A.5.5 0 0 0 0 4.893v6.214a.5.5 0 0 0 .146.353l4.394 4.394a.5.5 0 0 0 .353.146h6.214a.5.5 0 0 0 .353-.146l4.394-4.394a.5.5 0 0 0 .146-.353V4.893a.5.5 0 0 0-.146-.353L11.46.146zM8 4c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995A.905.905 0 0 1 8 4zm.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z\" />\r\n </svg> Important Notice: You will need the parallax JS Plugin to use this feature.\r\n </h4>\r\n </blockquote>\r\n <div class=\"bgWhite\">\r\n <div id=\"parallaxImg\"></div>\r\n </div>\r\n <br><br>\r\n\r\n <pre><code class=\"language-html\">\r\n&lt;div id=\"parallaxImg\"&gt;&lt;/div&gt;\r\n&lt;style&gt;\r\n #parallaxImg {\r\n width: 640px;\r\n height: 426px;\r\n background-image: url(./aurora.jpg);\r\n background-size: 140%;\r\n }\r\n&lt;/style&gt;\r\n&lt;script&gt;\r\n parallax(\"#parallaxImg\", 0.02);\r\n&lt;/script&gt;</code></pre>\r\n\r\n\r\n <script>\r\n // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat\r\n // modal pzplUI Plugin\r\n \"use strict\";\r\n\r\n\r\n let elementer;\r\n let scaler;\r\n\r\n function parallax(element, scale) {\r\n document.addEventListener(\"mousemove\", parallaxFramework);\r\n elementer = document.querySelector(element);\r\n scaler = scale;\r\n function parallaxFramework(e) {\r\n let windowWidth = window.innerWidth / 2;\r\n let windowHeight = window.innerHeight / 2;\r\n let _mouseX = e.clientX;\r\n let _mouseY = e.clientY;\r\n let _scale2 = scaler * 2;\r\n let _depth1 = `${(_mouseX - windowWidth) * scaler}% ${(_mouseY - windowHeight) * scaler}%`;\r\n let _depth2 = `${(_mouseX - windowWidth) * scaler}% ${(_mouseY - windowHeight) * scaler}%`;\r\n let _depth3 = `${(_mouseX - windowWidth) * _scale2}% ${(_mouseY - windowHeight) * _scale2}%`;\r\n let superWazneInfo = `${_depth3}, ${_depth2}, ${_depth1}`;\r\n elementer.style.backgroundPosition = superWazneInfo;\r\n };\r\n };\r\n\r\n\r\n parallax(\"#parallaxImg\", 0.02);\r\n // @license-end\r\n </script>', NULL, '1.6'), (18, 'Animations', 'Others', '<style>\r\n .anim-showcase {\r\n display: inline-block;\r\n }\r\n </style>\r\n<h2>Spin</h2>\r\n <h3 class=\"anim-showcase\">Hello World</h3><br><br>\r\n <button class=\"btn btn-normal\" onclick=\"animationFramework(\'anim-spin\', 0);\">Start animation</button>\r\n <br><br>\r\n <pre><code class=\"language-html\">&lt;h3 class=\"anim-spin\"&gt;Hello World&lt;/h3&gt; </code></pre>\r\n <h2>Top</h2><br><br><br><br><br><br><br><br><br><br><br><br><br>\r\n <h3 class=\"anim-showcase\">Hello World</h3><br><br>\r\n <button class=\"btn btn-normal\" onclick=\"animationFramework(\'anim-top\', 1);\">Start animation</button>\r\n <br><br><pre><code class=\"language-html\">&lt;h3 class=\"anim-top\"&gt;Hello World&lt;/h3&gt; </code></pre>\r\n <h2>Bottom</h2>\r\n <h3 class=\"anim-showcase\">Hello World</h3><br><br><br><br><br><br><br><br>\r\n <button class=\"btn btn-normal\" onclick=\"animationFramework(\'anim-bottom\', 2);\">Start animation</button>\r\n <br><br><pre><code class=\"language-html\">&lt;h3 class=\"anim-bottom\"&gt;Hello World&lt;/h3&gt; </code></pre>\r\n <h2>Left</h2>\r\n <h3 class=\"anim-showcase\">Hello World</h3><br><br>\r\n <button class=\"btn btn-normal\" onclick=\"animationFramework(\'anim-left\', 3);\">Start animation</button>\r\n <br><br><pre><code class=\"language-html\">&lt;h3 class=\"anim-left\"&gt;Hello World&lt;/h3&gt; </code></pre>\r\n <h2>Right</h2>\r\n <h3 class=\"anim-showcase\">Hello World</h3><br><br>\r\n <button class=\"btn btn-normal\" onclick=\"animationFramework(\'anim-right\', 4);\">Start animation</button>\r\n <br><br><pre><code class=\"language-html\">&lt;h3 class=\"anim-right\"&gt;Hello World&lt;/h3&gt; </code></pre>\r\n <h2>Zoom</h2>\r\n <h3 class=\"anim-showcase\">Hello World</h3><br><br>\r\n <button class=\"btn btn-normal\" onclick=\"animationFramework(\'anim-zoom\', 5);\">Start animation</button>\r\n <br><br><pre><code class=\"language-html\">&lt;h3 class=\"anim-zoom\"&gt;Hello World&lt;/h3&gt; </code></pre>\r\n <script>\r\n function animationFramework(className, order) {\r\n document.querySelectorAll(\".anim-showcase\")[order].classList.add(className);\r\n setTimeout(function () {\r\n document.querySelectorAll(\".anim-showcase\")[order].classList.remove(className);\r\n }, 1500);\r\n };\r\n </script>', NULL, '1.6'); INSERT INTO `articles` (`id`, `name`, `section`, `content`, `published_at`, `version`) VALUES (19, 'Typography', 'Others', '<h2>Display Classes</h2>\r\n<h1 class=\"d1\">Lorem ipsum dolor sit amet.</h1>\r\n<h1 class=\"d2\">Lorem ipsum dolor sit amet.</h1>\r\n<h1 class=\"d3\">Lorem ipsum dolor sit amet.</h1>\r\n<h1 class=\"d4\">Lorem ipsum dolor sit amet.</h1>\r\n<h1 class=\"d5\">Lorem ipsum dolor sit amet.</h1>\r\n<h1 class=\"d6\">Lorem ipsum dolor sit amet.</h1>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;h1 class=\"d1\"&gt;Lorem ipsum dolor sit amet.&lt;/h1&gt;\r\n&lt;h1 class=\"d2\"&gt;Lorem ipsum dolor sit amet.&lt;/h1&gt;\r\n&lt;h1 class=\"d3\"&gt;Lorem ipsum dolor sit amet.&lt;/h1&gt;\r\n&lt;h1 class=\"d4\"&gt;Lorem ipsum dolor sit amet.&lt;/h1&gt;\r\n&lt;h1 class=\"d5\"&gt;Lorem ipsum dolor sit amet.&lt;/h1&gt;\r\n&lt;h1 class=\"d6\"&gt;Lorem ipsum dolor sit amet.&lt;/h1&gt;</code></pre>\r\n<h2>Text marker</h2>\r\n<div class=\"bgWhite\">\r\n <h3>Lorem ipsum, dolor sit amet <mark>consectetur</mark> adipisicing elit. Voluptatibus explicabo libero\r\n obcaecati neque ratione distinctio?</h3>\r\n</div>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;h3&gt;Lorem ipsum, dolor sit amet &lt;mark&gt;consectetur&lt;/mark&gt; adipisicing elit. Voluptatibus explicabo libero obcaecati neque ratione distinctio?&lt;/h3&gt;</code></pre>\r\n<h2>Small and muted text</h2>\r\n<div class=\"bgWhite\">\r\n <h1>Lorem ipsum, dolor sit amet consectetur adipisicing. <small class=\"text-muted\">Voluptatem adipisci\r\n officia\r\n non!</small></h1>\r\n</div>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;h1&gt;Lorem ipsum, dolor sit amet consectetur adipisicing. &lt;small class=\"text-muted\"&gt;Voluptatem adipisci officia non!&lt;/small&gt;&lt;/h1&gt;</code></pre>\r\n<h2>Other tags</h2>\r\n<abbr title=\"Some additiona text\">Hello World</abbr><br>\r\nTo save your file press <kbd>Ctrl+S</kbd>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;abbr title=\"Some additiona text\"&gt;Hello World&lt;/abbr&gt;&lt;br&gt;\r\nTo save your file press &lt;kbd&gt;Ctrl+S&lt;/kbd&gt;</code></pre>\r\n<h2>Blocks</h2>\r\n<div class=\"block\">\r\n Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aspernatur, hic quisquam placeat at ad nihil?\r\n</div>\r\n<div class=\"block\">\r\n Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aspernatur, hic quisquam placeat at ad nihil?\r\n</div>\r\n<div class=\"block\">\r\n Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aspernatur, hic quisquam placeat at ad nihil?\r\n</div>\r\n<br>\r\n<div class=\"block-sm\">\r\n Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aspernatur, hic quisquam placeat at ad nihil?\r\n</div>\r\n<div class=\"block-sm\">\r\n Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aspernatur, hic quisquam placeat at ad nihil?\r\n</div>\r\n<div class=\"block-sm\">\r\n Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aspernatur, hic quisquam placeat at ad nihil?\r\n</div>\r\n<br>\r\n<div class=\"block-lg\">\r\n Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aspernatur, hic quisquam placeat at ad nihil?\r\n</div>\r\n<div class=\"block-lg\">\r\n Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aspernatur, hic quisquam placeat at ad nihil?\r\n</div>\r\n<div class=\"block-lg\">\r\n Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aspernatur, hic quisquam placeat at ad nihil?\r\n</div>\r\n<pre><code class=\"language-html\">&lt;div class=\"block\"&gt;\r\n Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aspernatur, hic quisquam placeat at ad nihil?\r\n&lt;/div&gt;\r\n&lt;div class=\"block\"&gt;\r\n Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aspernatur, hic quisquam placeat at ad nihil?\r\n&lt;/div&gt;\r\n&lt;div class=\"block\"&gt;\r\n Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aspernatur, hic quisquam placeat at ad nihil?\r\n&lt;/div&gt;\r\n&lt;br&gt;\r\n&lt;div class=\"block-sm\"&gt;\r\n Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aspernatur, hic quisquam placeat at ad nihil?\r\n&lt;/div&gt;\r\n&lt;div class=\"block-sm\"&gt;\r\n Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aspernatur, hic quisquam placeat at ad nihil?\r\n&lt;/div&gt;\r\n&lt;div class=\"block-sm\"&gt;\r\n Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aspernatur, hic quisquam placeat at ad nihil?\r\n&lt;/div&gt;\r\n&lt;br&gt;\r\n&lt;div class=\"block-lg\"&gt;\r\n Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aspernatur, hic quisquam placeat at ad nihil?\r\n&lt;/div&gt;\r\n&lt;div class=\"block-lg\"&gt;\r\n Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aspernatur, hic quisquam placeat at ad nihil?\r\n&lt;/div&gt;\r\n&lt;div class=\"block-lg\"&gt;\r\n Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aspernatur, hic quisquam placeat at ad nihil?\r\n&lt;/div&gt;</code></pre>\r\n<h2>Text aligns</h2>\r\n<h3 class=\"text-center\">Hello World</h3>\r\n<br>\r\n<hr><br>\r\n<h3 class=\"text-right\">Hello World</h3>\r\n<pre><code class=\"language-html\">&lt;h3 class=\"text-center\"&gt;Hello World&lt;/h3&gt;\r\n&lt;br&gt;\r\n&lt;hr&gt;&lt;br&gt;\r\n&lt;h3 class=\"text-right\"&gt;Hello World&lt;/h3&gt;</code></pre>', '2021-02-21 17:09:49', '2.2'), (20, 'Utils', 'Others', '<h2>Text colors</h2>\r\n<h3 class=\"text-normal\">Hello World</h3>\r\n<h3 class=\"text-success\">Hello World</h3>\r\n<h3 class=\"text-error\">Hello World</h3>\r\n<h3 class=\"text-danger\">Hello World</h3>\r\n<h3 class=\"text-info\">Hello World</h3>\r\n<h3 class=\"text-dark\">Hello World</h3>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;h3 class=\"text-normal\"&gt;Hello World&lt;/h3&gt;\r\n&lt;h3 class=\"text-success\"&gt;Hello World&lt;/h3&gt;\r\n&lt;h3 class=\"text-error\"&gt;Hello World&lt;/h3&gt;\r\n&lt;h3 class=\"text-danger\"&gt;Hello World&lt;/h3&gt;\r\n&lt;h3 class=\"text-info\"&gt;Hello World&lt;/h3&gt;\r\n&lt;h3 class=\"text-dark\"&gt;Hello World&lt;/h3&gt;</code></pre>\r\n<h2>Background colors</h2>\r\n<h3 class=\"bg-normal\">Hello World</h3>\r\n<h3 class=\"bg-success\">Hello World</h3>\r\n<h3 class=\"bg-error\">Hello World</h3>\r\n<h3 class=\"bg-danger\">Hello World</h3>\r\n<h3 class=\"bg-info\">Hello World</h3>\r\n<h3 class=\"bg-dark\">Hello World</h3>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;h3 class=\"bg-normal\"&gt;Hello World&lt;/h3&gt;\r\n&lt;h3 class=\"bg-success\"&gt;Hello World&lt;/h3&gt;\r\n&lt;h3 class=\"bg-error\"&gt;Hello World&lt;/h3&gt;\r\n&lt;h3 class=\"bg-danger\"&gt;Hello World&lt;/h3&gt;\r\n&lt;h3 class=\"bg-info\"&gt;Hello World&lt;/h3&gt;\r\n&lt;h3 class=\"bg-dark\"&gt;Hello World&lt;/h3&gt;</code></pre>\r\n<h2>Images</h2>\r\n<h4>img-fluid takes all the space of parent<br>\r\n img-round makes image round</h4>\r\n<img src=\"./aurora-1197753_1280.jpg\" alt=\"Aurora\" class=\"img-fluid\">\r\n<img src=\"./aurora-1197753_1280.jpg\" alt=\"Aurora\" class=\"img-round\">\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;img src=\"./aurora-1197753_1280.jpg\" alt=\"Aurora\" class=\"img-fluid\"&gt;\r\n&lt;img src=\"./aurora-1197753_1280.jpg\" alt=\"Aurora\" class=\"img-round\"&gt;</code></pre>\r\n<h2>Floats</h2>\r\n<div class=\"bgWhite\" style=\"width: 50vw;\">\r\n <h2 class=\"float-start\">I\'m floated to the left!</h2>\r\n <h2 class=\"float-end\">I\'m floated to the right!</h2>\r\n</div>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;h2 class=\"float-start\"&gt;I\'m floated to the left!&lt;/h2&gt;\r\n&lt;h2 class=\"float-end\"&gt;I\'m floated to the right!&lt;/h2&gt;</code></pre>\r\n<h2>Pointer events</h2>\r\n<a href=\"#\" class=\"pointer-disabled\">Can\'t click!</a><br>\r\n<a href=\"#\" class=\"pointer-disabled\">Can\'t click me, but you can <span class=\"pointer-revert\">click\r\n this</span>!</a>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;a href=\"#\" class=\"pointer-disabled\"&gt;Can\'t click!&lt;/a&gt;&lt;br&gt;\r\n&lt;a href=\"#\" class=\"pointer-disabled\"&gt;Can\'t click me, but you can &lt;span class=\"pointer-revert\"&gt;click this&lt;/span&gt;!&lt;/a&gt;</code></pre>\r\n<h2>Selector events</h2>\r\n<i>Try to select these texts, see what happens!</i>\r\n<h3 class=\"select-none\">Haha, no selecting of this super important content!</h3>\r\n<h3 class=\"select-all\">Selecting all of this text!</h3>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;h3 class=\"select-none\"&gt;Haha, no selecting of this super important content!&lt;/h3&gt;\r\n&lt;h3 class=\"select-all\"&gt;Selecting all of this text!&lt;/h3&gt;</code></pre>\r\n<h2>Padding and Margins</h2>\r\n<i>Margin adds space beetween elements, padding makes the element a bit bigger.</i><br>\r\n<div class=\"bgWhite\" style=\"width: 50vw;\">\r\n <div class=\"bg-success text-white p0\">\r\n <h4>Padding of 0!</h4>\r\n </div>\r\n <div class=\"bg-success text-white p1 consended\">\r\n <h4>Padding of 1!</h4>\r\n </div><br>\r\n <div class=\"bg-success text-white p2 consended\">\r\n <h4>Padding of 2!</h4>\r\n </div><br>\r\n <div class=\"bg-success text-white p3 consended\">\r\n <h4>Padding of 3!</h4>\r\n </div><br>\r\n <div class=\"bg-success text-white p4 consended\">\r\n <h4>Padding of 4!</h4>\r\n </div><br>\r\n <div class=\"bg-success text-white p5 consended\">\r\n <h4>Padding of 5!</h4>\r\n </div><br>\r\n <div class=\"bg-success text-white p6 consended\">\r\n <h4>Padding of 6!</h4>\r\n </div><br>\r\n <div class=\"bg-success text-white p7 consended\">\r\n <h4>Padding of 7!</h4>\r\n </div><br><br>\r\n <div class=\"bg-success text-white m0\">\r\n <h4>Margin of 0!</h4>\r\n </div>\r\n <div class=\"bg-success text-white m1\">\r\n <h4>Margin of 1!</h4>\r\n </div><br>\r\n <div class=\"bg-success text-white m2\">\r\n <h4>Margin of 2!</h4>\r\n </div><br>\r\n <div class=\"bg-success text-white m3\">\r\n <h4>Margin of 3!</h4>\r\n </div><br>\r\n <div class=\"bg-success text-white m4\">\r\n <h4>Margin of 4!</h4>\r\n </div><br>\r\n <div class=\"bg-success text-white m5\">\r\n <h4>Margin of 5!</h4>\r\n </div><br>\r\n <div class=\"bg-success text-white m6\">\r\n <h4>Margin of 6!</h4>\r\n </div><br>\r\n <div class=\"bg-success text-white m7\">\r\n <h4>Margin of 7!</h4>\r\n </div><br>\r\n</div>\r\n<br><br>\r\n\r\n<pre><code class=\"language-html\">&lt;div class=\"bgWhite\" style=\"width: 50vw;\"&gt;\r\n &lt;div class=\"bg-success text-white p0\"&gt;\r\n &lt;h4&gt;Padding of 0!&lt;/h4&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"bg-success text-white p1 consended\"&gt;\r\n &lt;h4&gt;Padding of 1!&lt;/h4&gt;\r\n &lt;/div&gt;&lt;br&gt;\r\n &lt;div class=\"bg-success text-white p2 consended\"&gt;\r\n &lt;h4&gt;Padding of 2!&lt;/h4&gt;\r\n &lt;/div&gt;&lt;br&gt;\r\n &lt;div class=\"bg-success text-white p3 consended\"&gt;\r\n &lt;h4&gt;Padding of 3!&lt;/h4&gt;\r\n &lt;/div&gt;&lt;br&gt;\r\n &lt;div class=\"bg-success text-white p4 consended\"&gt;\r\n &lt;h4&gt;Padding of 4!&lt;/h4&gt;\r\n &lt;/div&gt;&lt;br&gt;\r\n &lt;div class=\"bg-success text-white p5 consended\"&gt;\r\n &lt;h4&gt;Padding of 5!&lt;/h4&gt;\r\n &lt;/div&gt;&lt;br&gt;\r\n &lt;div class=\"bg-success text-white p6 consended\"&gt;\r\n &lt;h4&gt;Padding of 6!&lt;/h4&gt;\r\n &lt;/div&gt;&lt;br&gt;\r\n &lt;div class=\"bg-success text-white p7 consended\"&gt;\r\n &lt;h4&gt;Padding of 7!&lt;/h4&gt;\r\n &lt;/div&gt;&lt;br&gt;&lt;br&gt;\r\n &lt;div class=\"bg-success text-white m0\"&gt;\r\n &lt;h4&gt;Margin of 0!&lt;/h4&gt;\r\n &lt;/div&gt;\r\n &lt;div class=\"bg-success text-white m1\"&gt;\r\n &lt;h4&gt;Margin of 1!&lt;/h4&gt;\r\n &lt;/div&gt;&lt;br&gt;\r\n &lt;div class=\"bg-success text-white m2\"&gt;\r\n &lt;h4&gt;Margin of 2!&lt;/h4&gt;\r\n &lt;/div&gt;&lt;br&gt;\r\n &lt;div class=\"bg-success text-white m3\"&gt;\r\n &lt;h4&gt;Margin of 3!&lt;/h4&gt;\r\n &lt;/div&gt;&lt;br&gt;\r\n &lt;div class=\"bg-success text-white m4\"&gt;\r\n &lt;h4&gt;Margin of 4!&lt;/h4&gt;\r\n &lt;/div&gt;&lt;br&gt;\r\n &lt;div class=\"bg-success text-white m5\"&gt;\r\n &lt;h4&gt;Margin of 5!&lt;/h4&gt;\r\n &lt;/div&gt;&lt;br&gt;\r\n &lt;div class=\"bg-success text-white m6\"&gt;\r\n &lt;h4&gt;Margin of 6!&lt;/h4&gt;\r\n &lt;/div&gt;&lt;br&gt;\r\n &lt;div class=\"bg-success text-white m7\"&gt;\r\n &lt;h4&gt;Margin of 7!&lt;/h4&gt;\r\n &lt;/div&gt;&lt;br&gt;\r\n&lt;/div&gt;</code></pre>\r\n\r\n<p>Note: you can add margins/paddings from whatever side you want! Simply use this syntax:\r\n <code>{margin/padding}{side}{num}</code>\r\n For example: <code>ml3</code> will get you a margin of 3 from the left side.\r\n</p>\r\n\r\n<span class=\"h2\">Line Heights</span>\r\n<p class=\"line-height-1\">Line Height 1: Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia libero\r\n voluptate, accusantium deleniti dignissimos\r\n repellat, sunt nulla eum, expedita alias inventore ex animi harum? Aliquid minus eligendi reprehenderit eum\r\n voluptatum.</p><br>\r\n<p class=\"line-height-2\">Line Height 2: Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia libero\r\n voluptate, accusantium deleniti dignissimos\r\n repellat, sunt nulla eum, expedita alias inventore ex animi harum? Aliquid minus eligendi reprehenderit eum\r\n voluptatum.</p><br>\r\n<p class=\"line-height-3\">Line Height 3: Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia libero\r\n voluptate, accusantium deleniti dignissimos\r\n repellat, sunt nulla eum, expedita alias inventore ex animi harum? Aliquid minus eligendi reprehenderit eum\r\n voluptatum.</p><br>\r\n<p class=\"line-height-4\">Line Height 4: Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia libero\r\n voluptate, accusantium deleniti dignissimos\r\n repellat, sunt nulla eum, expedita alias inventore ex animi harum? Aliquid minus eligendi reprehenderit eum\r\n voluptatum.</p><br>\r\n<p class=\"line-height-5\">Line Height 5: Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia libero\r\n voluptate, accusantium deleniti dignissimos\r\n repellat, sunt nulla eum, expedita alias inventore ex animi harum? Aliquid minus eligendi reprehenderit eum\r\n voluptatum.</p><br>\r\n<p class=\"line-height-6\">Line Height 6: Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia libero\r\n voluptate, accusantium deleniti dignissimos\r\n repellat, sunt nulla eum, expedita alias inventore ex animi harum? Aliquid minus eligendi reprehenderit eum\r\n voluptatum.</p>\r\n\r\n<pre><code class=\"language-html\">&lt;p class=\"line-height-1\"&gt;Line Height 1: Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia libero\r\n voluptate, accusantium deleniti dignissimos\r\n repellat, sunt nulla eum, expedita alias inventore ex animi harum? Aliquid minus eligendi reprehenderit eum\r\n voluptatum.&lt;/p&gt;&lt;br&gt;\r\n&lt;p class=\"line-height-2\"&gt;Line Height 2: Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia libero\r\n voluptate, accusantium deleniti dignissimos\r\n repellat, sunt nulla eum, expedita alias inventore ex animi harum? Aliquid minus eligendi reprehenderit eum\r\n voluptatum.&lt;/p&gt;&lt;br&gt;\r\n&lt;p class=\"line-height-3\"&gt;Line Height 3: Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia libero\r\n voluptate, accusantium deleniti dignissimos\r\n repellat, sunt nulla eum, expedita alias inventore ex animi harum? Aliquid minus eligendi reprehenderit eum\r\n voluptatum.&lt;/p&gt;&lt;br&gt;\r\n&lt;p class=\"line-height-4\"&gt;Line Height 4: Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia libero\r\n voluptate, accusantium deleniti dignissimos\r\n repellat, sunt nulla eum, expedita alias inventore ex animi harum? Aliquid minus eligendi reprehenderit eum\r\n voluptatum.&lt;/p&gt;&lt;br&gt;\r\n&lt;p class=\"line-height-5\"&gt;Line Height 5: Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia libero\r\n voluptate, accusantium deleniti dignissimos\r\n repellat, sunt nulla eum, expedita alias inventore ex animi harum? Aliquid minus eligendi reprehenderit eum\r\n voluptatum.&lt;/p&gt;&lt;br&gt;\r\n&lt;p class=\"line-height-6\"&gt;Line Height 6: Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia libero\r\n voluptate, accusantium deleniti dignissimos\r\n repellat, sunt nulla eum, expedita alias inventore ex animi harum? Aliquid minus eligendi reprehenderit eum\r\n voluptatum.&lt;/p&gt;</code></pre>\r\n\r\n<h2>Positioning</h2>\r\n<p>Avalible Classes:</p>\r\n<ul>\r\n <li>.static</li>\r\n <li>.absolute</li>\r\n <li>.fixed</li>\r\n <li>.relative</li>\r\n <li>.sticky</li>\r\n <li>.bottom10, .left5, .top25, .left70, etc.</li>\r\n</ul>', NULL, '2.0'), (21, 'Accordion', 'Components', '<details class=\"m5 accordion\">\r\n <summary>Lorem ipsum dolor sit amet consectetur adipisicing elit.</summary>\r\n <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam expedita, corrupti, delectus excepturi\r\n incidunt voluptatem alias aperiam eligendi est aliquid quam iste doloremque accusantium voluptatum explicabo\r\n quisquam molestiae sunt repudiandae?\r\n Dicta, expedita! Sit ab deleniti hic nemo veniam incidunt, quaerat reiciendis, repellat cupiditate a\r\n repellendus fugiat sunt blanditiis provident beatae quia ad molestias laboriosam omnis itaque error ex?\r\n Alias, animi.\r\n Rerum dolorum ab sed consequuntur nam deserunt delectus, vero modi ipsa quos odio! Dignissimos quia,\r\n excepturi veritatis reiciendis doloribus a adipisci cumque. Voluptate iure quam similique consequatur eaque,\r\n ab in.</p>\r\n</details>\r\n<br><br>\r\n<pre><code class=\"language-html\">&lt;details class=\"accordion\"&gt;\r\n &lt;summary&gt;Lorem ipsum dolor sit amet consectetur adipisicing elit.&lt;/summary&gt;\r\n &lt;p&gt;Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam expedita, corrupti, delectus excepturi\r\n incidunt voluptatem alias aperiam eligendi est aliquid quam iste doloremque accusantium voluptatum explicabo\r\n quisquam molestiae sunt repudiandae?\r\n Dicta, expedita! Sit ab deleniti hic nemo veniam incidunt, quaerat reiciendis, repellat cupiditate a\r\n repellendus fugiat sunt blanditiis provident beatae quia ad molestias laboriosam omnis itaque error ex?\r\n Alias, animi.\r\n Rerum dolorum ab sed consequuntur nam deserunt delectus, vero modi ipsa quos odio! Dignissimos quia,\r\n excepturi veritatis reiciendis doloribus a adipisci cumque. Voluptate iure quam similique consequatur eaque,\r\n ab in.&lt;/p&gt;\r\n&lt;/details&gt;</code></pre>', '2021-02-21 17:31:18', '2.2'), (22, 'Media Object', 'Components', '<div class=\"media\">\r\n <img alt=\"Placeholder\" style=\"width: 64px; height: 64px;\"\r\n src=\"assets/browser.png\">\r\n <div class=\"media-body\">\r\n <h5>Media heading</h5>\r\n Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin. Cras purus\r\n odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate\r\n fringilla. Donec lacinia congue felis in faucibus.\r\n\r\n <div class=\"media\">\r\n <a href=\"#\">\r\n <img alt=\"Placeholder\" style=\"width: 64px; height: 64px;\"\r\n src=\"assets/browser.png\">\r\n </a>\r\n <div class=\"media-body\">\r\n <h5>Media heading</h5>\r\n Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin. Cras\r\n purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi\r\n vulputate fringilla. Donec lacinia congue felis in faucibus.\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n<pre><code class=\"language-html\">&lt;div class=\"media\"&gt;\r\n &lt;img alt=\"Placeholder\" style=\"width: 64px; height: 64px;\"\r\n src=\"assets/browser.png\"&gt;\r\n &lt;div class=\"media-body\"&gt;\r\n &lt;h5&gt;Media heading&lt;/h5&gt;\r\n Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin. Cras purus\r\n odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate\r\n fringilla. Donec lacinia congue felis in faucibus.\r\n\r\n &lt;div class=\"media\"&gt;\r\n &lt;a href=\"#\"&gt;\r\n &lt;img alt=\"Placeholder\" style=\"width: 64px; height: 64px;\"\r\n src=\"assets/browser.png\"&gt;\r\n &lt;/a&gt;\r\n &lt;div class=\"media-body\"&gt;\r\n &lt;h5&gt;Media heading&lt;/h5&gt;\r\n Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin. Cras\r\n purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi\r\n vulputate fringilla. Donec lacinia congue felis in faucibus.\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n &lt;/div&gt;\r\n&lt;/div&gt;</code></pre>', '2021-02-21 17:44:55', '2.2'), (23, 'Welcome', 'hidden', '<!-- This is an empty shell -->', NULL, 'uhh no'), (24, 'Customizing', 'Others', '<h2>Customizing the framework</h2>\r\n<p>pzplUI gives you full control over how the framework looks. To get started, make sure you know about <a\r\n href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/--*\">CSS Variables</a>\r\n Here\'s a list of avalible variables to customize:</p>\r\n<ul>\r\n <li>--bg-color - The background color of the website</li>\r\n <li>--bg-text - The text color of the website</li>\r\n <li>--button-text - The default text color of the buttons</li>\r\n <li>--box-shadow-1 - Box shadow - present for example on buttons</li>\r\n <li>--box-shadow-2 - Hovered version of the previous box shadow</li>\r\n <li>--black - The default black color</li>\r\n <li>--black-hover - The default black hovered color</li>\r\n <li>--black-light - The default black color on alerts</li>\r\n <li>--black-alert-a - The default black color on links on alerts</li>\r\n <li>--white - The default white color</li>\r\n <li>Note: next colors are very simillar to the previous, so there will be no description</li>\r\n <li>--blue-light</li>\r\n <li>--blue</li>\r\n <li>--blue-hover</li>\r\n <li>--blue-alert-text</li>\r\n <li>--blue-alert-a</li>\r\n <li>--green-light</li>\r\n <li>--green</li>\r\n <li>--green-hover</li>\r\n <li>--green-alert-text</li>\r\n <li>--green-alerta-a</li>\r\n <li>--red-light</li>\r\n <li>--red</li>\r\n <li>--red-hover</li>\r\n <li>--red-alert-text</li>\r\n <li>--red-alert-a</li>\r\n <li>--orange-light</li>\r\n <li>--orange</li>\r\n <li>--orange-hover</li>\r\n <li>--orange-alert-text</li>\r\n <li>--orange-alert-a</li>\r\n <li>--info-blue-light</li>\r\n <li>--info-blue</li>\r\n <li>--info-blue-hover</li>\r\n <li>--info-blue-alert-text</li>\r\n <li>--info-blue-alert-a</li>\r\n <li>--secondary</li>\r\n <li>--secondary-hover</li>\r\n <li>--text-muted</li>\r\n <li>--card-border-color</li>\r\n <li>--card-header-bgcolor</li>\r\n <li>--modal-footer</li>\r\n <li>--mark-color</li>\r\n <li>--form1</li>\r\n <li>--form2</li>\r\n <li>--form-shadow</li>\r\n <li>--jumbotron-bg</li>\r\n <li>--link-color</li>\r\n <li>--progress-bg</li>\r\n <li>--dark-bg-color</li>\r\n <li>--dark-bg-text</li>\r\n <li>--dark-box-shadow-1</li>\r\n <li>--dark-box-shadow-2</li>\r\n <li>--dark-mark-color</li>\r\n <li>--dark-form1</li>\r\n <li>--dark-form2</li>\r\n <li>--dark-form-shadow</li>\r\n <li>--dark-jumbotron-bg</li>\r\n <li>--animation-speed - Sets the animation speed</li>\r\n <li>--animation-transform - Sets the animation transforms</li>\r\n <li>--mp-spacing - Sets the animation transforms</li>\r\n <li>--code-font-stack - Sets the fonts for code tags</li>\r\n <li>--font-stack - Sets the global fonts</li>\r\n</ul>', '2021-03-02 17:13:26', '2.3'); -- -------------------------------------------------------- -- -- Table structure for table `templates` -- CREATE TABLE `templates` ( `id` int NOT NULL COMMENT 'Template ID', `name` text NOT NULL COMMENT 'Name of the template', `folder` text NOT NULL COMMENT 'Folder that the template is located in', `summary` text NOT NULL COMMENT 'Description of the template' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -- Dumping data for table `templates` -- INSERT INTO `templates` (`id`, `name`, `folder`, `summary`) VALUES (1, 'Album', 'album', 'A simple gallery'), (2, 'Basic Boilerplate', 'boilerplate', 'A basic starting point for your next website with pzplUI'), (3, 'Basic Container Boilerplate', 'boilerplateContainer', 'A basic starting point for your next website with pzplUI, with a container.'), (4, 'Full Boilerplate', 'fullBoilerplate', 'A starting point for your next website with pzplUI, based on HTML5 Boilerplate.'); -- -------------------------------------------------------- -- -- Table structure for table `viewcount` -- CREATE TABLE `viewcount` ( `id` int NOT NULL COMMENT 'ID of the counter', `name` text NOT NULL COMMENT 'Name of the counter', `count` int NOT NULL DEFAULT '0' COMMENT 'The counter itself' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -- Dumping data for table `viewcount` -- INSERT INTO `viewcount` (`id`, `name`, `count`) VALUES (1, 'frontpage', 4), (2, 'tarxz', 0), (3, 'zip', 0), (4, '7z', 0), (5, 'album', 0), (6, 'boilerplate', 0), (7, 'boilerplateContainer', 0), (8, 'demo', 0), (9, 'fullBoilerplate', 0); -- -- Indexes for dumped tables -- -- -- Indexes for table `articles` -- ALTER TABLE `articles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `templates` -- ALTER TABLE `templates` ADD PRIMARY KEY (`id`); -- -- Indexes for table `viewcount` -- ALTER TABLE `viewcount` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `articles` -- ALTER TABLE `articles` MODIFY `id` int NOT NULL AUTO_INCREMENT COMMENT 'ID of an article', AUTO_INCREMENT=25; -- -- AUTO_INCREMENT for table `templates` -- ALTER TABLE `templates` MODIFY `id` int NOT NULL AUTO_INCREMENT COMMENT 'Template ID', AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `viewcount` -- ALTER TABLE `viewcount` MODIFY `id` int NOT NULL AUTO_INCREMENT COMMENT 'ID of the counter', AUTO_INCREMENT=10; 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 */;
CREATE OR REPLACE FUNCTION ti.getdepenvtbyid(_depenvtid integer) RETURNS TABLE(depenvtid integer, depenvt character varying, depenvthigherid integer) LANGUAGE sql AS $function$ SELECT depenvtid, depenvt, depenvthigherid FROM ndb.depenvttypes WHERE depenvtid = _depenvtid $function$
<filename>static/sql/filesummaries4block_norun.sql select (select count(f.file_id) from {{.Owner}}.files f join {{.Owner}}.blocks b on b.BLOCK_ID = f.block_id {{if .Valid}} JOIN {{.Owner}}.DATASETS D ON D.DATASET_ID = F.DATASET_ID JOIN {{.Owner}}.DATASET_ACCESS_TYPES DT ON DT.DATASET_ACCESS_TYPE_ID = D.DATASET_ACCESS_TYPE_ID {{end}} where b.BLOCK_NAME=:block_name wheresql_isFileValid ) as num_file, nvl((select sum(f.event_count) event_count from {{.Owner}}.files f join {{.Owner}}.blocks b on b.BLOCK_ID = f.block_id {{if .Valid}} JOIN {{.Owner}}.DATASETS D ON D.DATASET_ID = F.DATASET_ID JOIN {{.Owner}}.DATASET_ACCESS_TYPES DT ON DT.DATASET_ACCESS_TYPE_ID = D.DATASET_ACCESS_TYPE_ID {{end}} where b.BLOCK_NAME=:block_name wheresql_isFileValid ),0) as num_event, (select nvl(sum(f.file_size),0) file_size from {{.Owner}}.files f join {{.Owner}}.blocks b on b.BLOCK_ID = f.block_id {{if .Valid}} JOIN {{.Owner}}.DATASETS D ON D.DATASET_ID = F.DATASET_ID JOIN {{.Owner}}.DATASET_ACCESS_TYPES DT ON DT.DATASET_ACCESS_TYPE_ID = D.DATASET_ACCESS_TYPE_ID {{end}} where b.BLOCK_NAME=:block_name wheresql_isFileValid ) as file_size, (select count(block_id) from {{.Owner}}.blocks where block_name=:block_name ) as num_block, (select count(*) from (select distinct l.lumi_section_num, l.run_num from {{.Owner}}.files f join {{.Owner}}.file_lumis l on l.file_id=f.file_id join {{.Owner}}.blocks b on b.BLOCK_ID = f.block_id {{if .Valid}} JOIN {{.Owner}}.DATASETS D ON D.DATASET_ID = F.DATASET_ID JOIN {{.Owner}}.DATASET_ACCESS_TYPES DT ON DT.DATASET_ACCESS_TYPE_ID = D.DATASET_ACCESS_TYPE_ID {{end}} where b.BLOCK_NAME=:block_name wheresql_isFileValid) ) as num_lumi from dual
-- Gets a comment by ID. SELECT post_id, user_id, created_at, updated_at, body, is_spam FROM comments WHERE id = ?
\echo 'Main Rivers - Create Spatial Index' CREATE INDEX main_rivers_10k_wkb_geometry_geom_idx ON main_rivers_10k USING gist (wkb_geometry) TABLESPACE fmp_indexes;
-- This procedure creates a new List_Tags record for the given list/tag -- It also verifies that the given user owns both the list and tag DELIMITER $$ CREATE PROCEDURE `Insert_List_Tag`( IN in_list_id char(36), IN in_tag_id char(36), IN in_user_id char(36) ) BEGIN INSERT INTO List_Tags (list_id, tag_id) ( SELECT ( -- insert the list id SELECT l.id FROM Lists l WHERE l.id = in_list_id AND OWNS_LIST(in_user_id, l.id) ), ( -- insert the tag id SELECT t.id FROM Tags t WHERE t.id = in_tag_id AND OWNS_TAG(in_user_id, t.id) ) ); END$$ DELIMITER ;
USE [bisolutions_vvcb] GO /****** Object: Table [dbo].[BCOLLECTION_FOR_CRE_CARD_PAYM] Script Date: 27/09/2014 8:35:54 AM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[BCOLLECTION_FOR_CRE_CARD_PAYM]( [ID] [nvarchar](20) NOT NULL, [Status] [nvarchar](5) NULL, [CustomerID] [nvarchar](20) NULL, [CustomerName] [nvarchar](250) NULL, [Address] [nvarchar](250) NULL, [LegalID] [nvarchar](50) NULL, [IssueDate] [datetime] NULL, [Telephone] [nvarchar](50) NULL, [PlaceOfIssue] [nvarchar](150) NULL, [TellerID] [nvarchar](50) NULL, [DebitCurrency] [nvarchar](5) NULL, [DebitAccount] [nvarchar](20) NULL, [DebitAmt] [decimal](18, 2) NULL, [CreditCurrency] [nvarchar](5) NULL, [CreditAccount] [nvarchar](20) NULL, [DealRate] [numeric](19, 5) NULL, [CreditAmt] [decimal](19, 2) NULL, [CreditCardNumber] [nvarchar](50) NULL, [WaiveCharges] [nvarchar](5) NULL, [Narrative] [nvarchar](350) NULL, [Narrative2] [nvarchar](350) NULL, [CreatedDate] [datetime] NULL, [ActiveFlag] [char](1) NULL ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO ALTER TABLE [dbo].[BCOLLECTION_FOR_CRE_CARD_PAYM] ADD CONSTRAINT [CreatedDate] DEFAULT (getdate()) FOR [CreatedDate] GO ALTER TABLE [dbo].[BCOLLECTION_FOR_CRE_CARD_PAYM] ADD CONSTRAINT [ActiveFlag] DEFAULT ('1') FOR [ActiveFlag] GO
/* NB! Custom schema is for those cases where the available presets are not satisfactory / applicable. Then the metrics gathering daemon will try to insert all metrics into the "metrics" table and the user can freely re-route the data however he likes with an according trigger. In that case also data all table creation and data cleanup must be performed by the user. Can be used also when only having a couple of DB-s and performance / minimal storage is no issue. */ SET ROLE TO pgwatch2; -- drop table if exists metrics; create table public.metrics ( time timestamptz not null default now(), dbname text not null, metric text not null, data jsonb not null, tag_data jsonb ); comment on table public.metrics is 'a master table for "custom" mode'; /* suggested indexes */ create index on public.metrics (dbname, metric, time); create index on public.metrics using gin (metric, tag_data, time); RESET ROLE;
<gh_stars>0 -- @testpoint:opengauss关键字Inline(非保留),作为角色名 --关键字不带引号-成功 drop role if exists Inline; create role Inline with password '<PASSWORD>' valid until '2020-12-31'; drop role Inline; --关键字带双引号-成功 drop role if exists "Inline"; create role "Inline" with password '<PASSWORD>' valid until '2020-12-31'; drop role "Inline"; --关键字带单引号-合理报错 drop role if exists 'Inline'; create role 'Inline' with password '<PASSWORD>' valid until '2020-12-31'; --关键字带反引号-合理报错 drop role if exists `Inline`; create role `Inline` with password '<PASSWORD>' valid until '2020-12-31';
<filename>src/main/resources/db/migration/V305__create_uom_table.sql CREATE TABLE uom ( uom_id VARCHAR(36) NOT NULL, uom_name VARCHAR(60) NOT NULL, outlet_id VARCHAR(36) NOT NULL, remark VARCHAR(120) NULL, active VARCHAR(1) NOT NULL, created_by VARCHAR(36) NULL, created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, updated_by VARCHAR(36) NULL, updated_at TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (uom_id) );
-- phpMyAdmin SQL Dump -- version 4.2.11 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Dec 01, 2016 at 07:00 PM -- Server version: 5.6.21 -- PHP Version: 5.6.3 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; -- -- Database: `db_project` -- -- -------------------------------------------------------- -- -- Table structure for table `assetcategory` -- CREATE TABLE IF NOT EXISTS `assetcategory` ( `AssetClass` varchar(10) NOT NULL, `ClassDefinition` varchar(50) NOT NULL, `DepreciationType` varchar(2) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `assetlocation` -- CREATE TABLE IF NOT EXISTS `assetlocation` ( `LocationID` varchar(8) NOT NULL, `LocationName` varchar(50) NOT NULL, `LocationAddress` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `assetlocationmovement` -- CREATE TABLE IF NOT EXISTS `assetlocationmovement` ( `MovementNO` int(8) NOT NULL, `AssetID` int(8) NOT NULL, `LocationID` varchar(8) NOT NULL, `NewLocationID` varchar(8) NOT NULL, `NewLocationName` varchar(50) NOT NULL, `TranferDate` date NOT NULL, `EmployeeID` int(8) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `assetmain` -- CREATE TABLE IF NOT EXISTS `assetmain` ( `AssetID` int(8) NOT NULL, `AssetName` varchar(50) NOT NULL, `AssetNumber_Quantity` int(4) NOT NULL, `AssetClass` varchar(10) NOT NULL, `PurchaseDate` date NOT NULL, `AcquisitionDate` date NOT NULL, `CapitalCost` int(10) NOT NULL, `DepreciationType` varchar(2) NOT NULL, `UsefulLife` int(4) NOT NULL, `LocationID` varchar(8) NOT NULL, `LocationDepartment` varchar(20) NOT NULL, `EmployeeID` int(8) NOT NULL, `VendorID` int(8) NOT NULL, `Manufacturer` varchar(25) NOT NULL, `SalvageValue` int(10) NOT NULL, `DepreciationValue_perYear` int(10) NOT NULL, `DepreciationRatio` int(2) NOT NULL, `DepreciationArea` varchar(30) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Main table of asset'; -- -------------------------------------------------------- -- -- Table structure for table `assetpurchase` -- CREATE TABLE IF NOT EXISTS `assetpurchase` ( `PurchaseID` int(8) NOT NULL, `AssetID` int(8) NOT NULL, `PurchaseDate` date NOT NULL, `PurchasePrice` int(10) NOT NULL, `EmployeeID` int(8) NOT NULL, `VendorID` int(8) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `assetsold` -- CREATE TABLE IF NOT EXISTS `assetsold` ( `SoldID` int(8) NOT NULL, `AssetID` int(8) NOT NULL, `SoldDate` date NOT NULL, `SoldPrice` int(10) NOT NULL, `EmployeeID` int(8) NOT NULL, `ClientID` int(8) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `client` -- CREATE TABLE IF NOT EXISTS `client` ( `ClientID` int(8) NOT NULL, `FirstName` varchar(20) NOT NULL, `LastName` varchar(20) NOT NULL, `Address` varchar(100) NOT NULL, `PhoneNO` int(10) NOT NULL, `Email` varchar(20) DEFAULT NULL, `CompanyID` int(8) DEFAULT NULL, `RoleID` int(2) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `contactedcompany` -- CREATE TABLE IF NOT EXISTS `contactedcompany` ( `CompanyID` int(8) NOT NULL, `CompanyName` varchar(50) NOT NULL, `CompanyAddress` varchar(100) NOT NULL, `CompanyPhoneNO` varchar(10) NOT NULL, `CompanyFaxNO` varchar(15) DEFAULT NULL, `CompanyEmail` varchar(20) DEFAULT NULL, `SecondaryPhoneNO` varchar(10) DEFAULT NULL ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- -- Dumping data for table `contactedcompany` -- INSERT INTO `contactedcompany` (`CompanyID`, `CompanyName`, `CompanyAddress`, `CompanyPhoneNO`, `CompanyFaxNO`, `CompanyEmail`, `SecondaryPhoneNO`) VALUES (1, 'บิ๊กบอสตำลึง', '126 ถนนประชาอุทิศ แขวงบางมด เขตทุ่งครุ กรุงเทพมหานคร 10140', '025412369', '025314568', '<EMAIL>', '0811112547'); -- -------------------------------------------------------- -- -- Table structure for table `depreciationkey` -- CREATE TABLE IF NOT EXISTS `depreciationkey` ( `DepreciationType` varchar(2) NOT NULL, `DepreciationDef` varchar(100) NOT NULL, `DepreciationMethod` varchar(50) NOT NULL, `DepreciationConstraint` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `employee` -- CREATE TABLE IF NOT EXISTS `employee` ( `EmployeeID` int(8) NOT NULL, `FirstName` varchar(20) NOT NULL, `LastName` varchar(20) NOT NULL, `Address` varchar(100) NOT NULL, `PhoneNO` int(10) NOT NULL, `Email` varchar(30) NOT NULL, `RoleID` int(2) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `roleandpermission` -- CREATE TABLE IF NOT EXISTS `roleandpermission` ( `RoleID` int(2) NOT NULL DEFAULT '0', `RoleName` varchar(30) NOT NULL, `PermissionLevel` int(1) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `vendor` -- CREATE TABLE IF NOT EXISTS `vendor` ( `VendorID` int(8) NOT NULL, `FirstName` varchar(20) NOT NULL, `LastName` varchar(20) NOT NULL, `CompanyID` int(8) DEFAULT NULL, `VendorPhoneNO` varchar(10) NOT NULL, `VendorEmail` varchar(30) NOT NULL, `BuyLocation` varchar(50) DEFAULT NULL ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- -- Dumping data for table `vendor` -- INSERT INTO `vendor` (`VendorID`, `FirstName`, `LastName`, `CompanyID`, `VendorPhoneNO`, `VendorEmail`, `BuyLocation`) VALUES (1, 'ตำลึง', 'ตะลึงโลก', 1, '0867891234', '<EMAIL>', '126 ถนนประชาอุทิศ แขวงบางมด เขตทุ่งครุ กรุงเทพมหาน'); -- -- Indexes for dumped tables -- -- -- Indexes for table `assetcategory` -- ALTER TABLE `assetcategory` ADD PRIMARY KEY (`AssetClass`), ADD KEY `DepreciationType` (`DepreciationType`); -- -- Indexes for table `assetlocation` -- ALTER TABLE `assetlocation` ADD PRIMARY KEY (`LocationID`); -- -- Indexes for table `assetlocationmovement` -- ALTER TABLE `assetlocationmovement` ADD PRIMARY KEY (`MovementNO`), ADD KEY `LocationID` (`LocationID`,`EmployeeID`), ADD KEY `EmployeeID` (`EmployeeID`), ADD KEY `AssetID` (`AssetID`); -- -- Indexes for table `assetmain` -- ALTER TABLE `assetmain` ADD PRIMARY KEY (`AssetID`), ADD KEY `LocationID` (`LocationID`,`EmployeeID`,`VendorID`), ADD KEY `AssetClass` (`AssetClass`), ADD KEY `DepreciationType` (`DepreciationType`), ADD KEY `EmployeeID` (`EmployeeID`), ADD KEY `VendorID` (`VendorID`); -- -- Indexes for table `assetpurchase` -- ALTER TABLE `assetpurchase` ADD PRIMARY KEY (`PurchaseID`), ADD KEY `AssetID` (`AssetID`,`EmployeeID`,`VendorID`), ADD KEY `VendorID` (`VendorID`); -- -- Indexes for table `assetsold` -- ALTER TABLE `assetsold` ADD PRIMARY KEY (`SoldID`), ADD KEY `AssetID` (`AssetID`,`EmployeeID`,`ClientID`), ADD KEY `EmployeeID` (`EmployeeID`), ADD KEY `ClientID` (`ClientID`); -- -- Indexes for table `client` -- ALTER TABLE `client` ADD PRIMARY KEY (`ClientID`), ADD KEY `CompanyID` (`CompanyID`,`RoleID`), ADD KEY `RoleID` (`RoleID`); -- -- Indexes for table `contactedcompany` -- ALTER TABLE `contactedcompany` ADD PRIMARY KEY (`CompanyID`); -- -- Indexes for table `depreciationkey` -- ALTER TABLE `depreciationkey` ADD PRIMARY KEY (`DepreciationType`); -- -- Indexes for table `employee` -- ALTER TABLE `employee` ADD PRIMARY KEY (`EmployeeID`), ADD KEY `RoleID` (`RoleID`); -- -- Indexes for table `roleandpermission` -- ALTER TABLE `roleandpermission` ADD PRIMARY KEY (`RoleID`); -- -- Indexes for table `vendor` -- ALTER TABLE `vendor` ADD PRIMARY KEY (`VendorID`), ADD KEY `CompanyID` (`CompanyID`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `assetlocationmovement` -- ALTER TABLE `assetlocationmovement` MODIFY `MovementNO` int(8) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `assetmain` -- ALTER TABLE `assetmain` MODIFY `AssetID` int(8) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `assetpurchase` -- ALTER TABLE `assetpurchase` MODIFY `PurchaseID` int(8) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `assetsold` -- ALTER TABLE `assetsold` MODIFY `SoldID` int(8) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `client` -- ALTER TABLE `client` MODIFY `ClientID` int(8) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `contactedcompany` -- ALTER TABLE `contactedcompany` MODIFY `CompanyID` int(8) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `employee` -- ALTER TABLE `employee` MODIFY `EmployeeID` int(8) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `vendor` -- ALTER TABLE `vendor` MODIFY `VendorID` int(8) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2; -- -- Constraints for dumped tables -- -- -- Constraints for table `assetcategory` -- ALTER TABLE `assetcategory` ADD CONSTRAINT `AssetCategory_ibfk_1` FOREIGN KEY (`DepreciationType`) REFERENCES `depreciationkey` (`DepreciationType`); -- -- Constraints for table `assetlocationmovement` -- ALTER TABLE `assetlocationmovement` ADD CONSTRAINT `AssetLocationMovement_ibfk_1` FOREIGN KEY (`EmployeeID`) REFERENCES `employee` (`EmployeeID`), ADD CONSTRAINT `AssetLocationMovement_ibfk_2` FOREIGN KEY (`LocationID`) REFERENCES `assetlocation` (`LocationID`), ADD CONSTRAINT `AssetLocationMovement_ibfk_3` FOREIGN KEY (`AssetID`) REFERENCES `assetmain` (`AssetID`); -- -- Constraints for table `assetmain` -- ALTER TABLE `assetmain` ADD CONSTRAINT `AssetMain_ibfk_1` FOREIGN KEY (`AssetClass`) REFERENCES `assetcategory` (`AssetClass`), ADD CONSTRAINT `AssetMain_ibfk_2` FOREIGN KEY (`EmployeeID`) REFERENCES `employee` (`EmployeeID`), ADD CONSTRAINT `AssetMain_ibfk_3` FOREIGN KEY (`DepreciationType`) REFERENCES `depreciationkey` (`DepreciationType`), ADD CONSTRAINT `AssetMain_ibfk_4` FOREIGN KEY (`VendorID`) REFERENCES `vendor` (`VendorID`) ON UPDATE CASCADE, ADD CONSTRAINT `AssetMain_ibfk_5` FOREIGN KEY (`LocationID`) REFERENCES `assetlocation` (`LocationID`); -- -- Constraints for table `assetpurchase` -- ALTER TABLE `assetpurchase` ADD CONSTRAINT `AssetPurchase_ibfk_1` FOREIGN KEY (`AssetID`) REFERENCES `assetmain` (`AssetID`), ADD CONSTRAINT `AssetPurchase_ibfk_2` FOREIGN KEY (`VendorID`) REFERENCES `vendor` (`VendorID`); -- -- Constraints for table `assetsold` -- ALTER TABLE `assetsold` ADD CONSTRAINT `AssetSold_ibfk_1` FOREIGN KEY (`AssetID`) REFERENCES `assetmain` (`AssetID`), ADD CONSTRAINT `AssetSold_ibfk_2` FOREIGN KEY (`EmployeeID`) REFERENCES `employee` (`EmployeeID`), ADD CONSTRAINT `AssetSold_ibfk_3` FOREIGN KEY (`ClientID`) REFERENCES `client` (`ClientID`); -- -- Constraints for table `client` -- ALTER TABLE `client` ADD CONSTRAINT `Client_ibfk_1` FOREIGN KEY (`RoleID`) REFERENCES `roleandpermission` (`RoleID`), ADD CONSTRAINT `Client_ibfk_2` FOREIGN KEY (`CompanyID`) REFERENCES `contactedcompany` (`CompanyID`); -- -- Constraints for table `employee` -- ALTER TABLE `employee` ADD CONSTRAINT `Employee_ibfk_1` FOREIGN KEY (`RoleID`) REFERENCES `roleandpermission` (`RoleID`); -- -- Constraints for table `vendor` -- ALTER TABLE `vendor` ADD CONSTRAINT `Vendor_ibfk_1` FOREIGN KEY (`CompanyID`) REFERENCES `contactedcompany` (`CompanyID`) ON UPDATE CASCADE;
<filename>elaravel.sql -- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Máy chủ: 127.0.0.1:3306 -- Thời gian đã tạo: Th12 28, 2020 lúc 12:17 AM -- Phiên bản máy phục vụ: 5.7.31 -- Phiên bản PHP: 7.3.21 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 */; -- -- Cơ sở dữ liệu: `elaravel` -- -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `migrations` -- DROP TABLE IF EXISTS `migrations`; CREATE TABLE IF NOT EXISTS `migrations` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2020_10_05_170412_create_tbl_admin_table', 1), (4, '2020_10_07_144112_create_tbl_category_product', 1), (5, '2020_10_10_132839_create_tbl_brand', 1), (6, '2020_10_11_145218_create_tbl_product', 1), (7, '2020_12_20_083753_tbl_customer', 2), (8, '2020_12_20_125244_tbl_shipping', 3); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `password_resets` -- DROP TABLE IF EXISTS `password_resets`; CREATE TABLE IF NOT EXISTS `password_resets` ( `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `tbl_admin` -- DROP TABLE IF EXISTS `tbl_admin`; CREATE TABLE IF NOT EXISTS `tbl_admin` ( `admin_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `admin_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `admin_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `admin_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `admin_phone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`admin_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `tbl_admin` -- INSERT INTO `tbl_admin` (`admin_id`, `admin_email`, `admin_password`, `admin_name`, `admin_phone`, `created_at`, `updated_at`) VALUES (1, '<EMAIL>', '<PASSWORD>', '<NAME>', '11111111111', NULL, NULL); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `tbl_brand` -- DROP TABLE IF EXISTS `tbl_brand`; CREATE TABLE IF NOT EXISTS `tbl_brand` ( `brand_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `brand_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `brand_desc` text COLLATE utf8mb4_unicode_ci NOT NULL, `brand_status` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`brand_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `tbl_brand` -- INSERT INTO `tbl_brand` (`brand_id`, `brand_name`, `brand_desc`, `brand_status`, `created_at`, `updated_at`) VALUES (1, 'CASINO', '0', 0, NULL, NULL), (2, 'MAKAO', '0', 0, NULL, NULL); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `tbl_category_product` -- DROP TABLE IF EXISTS `tbl_category_product`; CREATE TABLE IF NOT EXISTS `tbl_category_product` ( `category_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `category_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `category_desc` text COLLATE utf8mb4_unicode_ci NOT NULL, `category_status` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`category_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `tbl_category_product` -- INSERT INTO `tbl_category_product` (`category_id`, `category_name`, `category_desc`, `category_status`, `created_at`, `updated_at`) VALUES (1, 'Áo thun', '0', 0, NULL, NULL), (2, 'Áo Thể Thao', '0', 0, NULL, NULL); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `tbl_customer` -- DROP TABLE IF EXISTS `tbl_customer`; CREATE TABLE IF NOT EXISTS `tbl_customer` ( `customer_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `customer_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `customer_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `customer_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `customer_phone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`customer_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `tbl_customer` -- INSERT INTO `tbl_customer` (`customer_id`, `customer_name`, `customer_email`, `customer_password`, `customer_phone`, `created_at`, `updated_at`) VALUES (1, 'khanh', '<EMAIL>', '123', '11111111111', NULL, NULL); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `tbl_product` -- DROP TABLE IF EXISTS `tbl_product`; CREATE TABLE IF NOT EXISTS `tbl_product` ( `product_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `product_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `category_id` int(11) NOT NULL, `brand_id` int(11) NOT NULL, `product_desc` text COLLATE utf8mb4_unicode_ci NOT NULL, `product_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `product_price` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `product_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `product_status` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`product_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `tbl_product` -- INSERT INTO `tbl_product` (`product_id`, `product_name`, `category_id`, `brand_id`, `product_desc`, `product_content`, `product_price`, `product_image`, `product_status`, `created_at`, `updated_at`) VALUES (1, '1', 2, 1, '1', '1', '90000', 'anh-anime-phong-canh_11264945576.jpg', 0, NULL, NULL); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `tbl_shipping` -- DROP TABLE IF EXISTS `tbl_shipping`; CREATE TABLE IF NOT EXISTS `tbl_shipping` ( `shipping_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `shipping_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `customer_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `shipping_address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `shipping_phone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `shipping_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`shipping_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `users` -- DROP TABLE IF EXISTS `users`; CREATE TABLE IF NOT EXISTS `users` ( `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, `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, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; 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>sql/reset_taskdb.sql DROP TABLE Task; DROP TABLE schema_version;
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 4.8.3 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: May 29, 2020 at 06:29 PM -- Server version: 10.1.35-MariaDB -- PHP Version: 7.2.9 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: `db-project` -- -- -------------------------------------------------------- -- -- Table structure for table `tb_booking` -- CREATE TABLE `tb_booking` ( `id` int(12) NOT NULL, `id_user` int(12) NOT NULL, `id_kendaraan` int(12) NOT NULL, `tgl_awal` date NOT NULL, `tgl_akhir` date NOT NULL, `jam_ambil` time NOT NULL, `media_bayar` varchar(50) NOT NULL, `lama_hari` int(12) NOT NULL, `ppn` int(12) NOT NULL, `total_bayar` int(12) NOT NULL, `status_bayar` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `tb_booking_tmp` -- CREATE TABLE `tb_booking_tmp` ( `id` int(12) NOT NULL, `id_user` int(12) NOT NULL, `id_kendaraan` int(12) NOT NULL, `tgl_awal` date NOT NULL, `tgl_akhir` date NOT NULL, `jam_ambil` time NOT NULL, `media_bayar` varchar(50) NOT NULL, `lama_hari` int(12) NOT NULL, `ppn` int(12) NOT NULL, `total_bayar` int(12) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tb_booking_tmp` -- INSERT INTO `tb_booking_tmp` (`id`, `id_user`, `id_kendaraan`, `tgl_awal`, `tgl_akhir`, `jam_ambil`, `media_bayar`, `lama_hari`, `ppn`, `total_bayar`) VALUES (32, 2, 2, '2020-05-21', '2020-05-22', '10:00:00', 'Bank Transfer', 1, 1, 220001); -- -------------------------------------------------------- -- -- Table structure for table `tb_contact` -- CREATE TABLE `tb_contact` ( `id` int(12) NOT NULL, `nama` varchar(128) NOT NULL, `email` varchar(128) NOT NULL, `judul` varchar(256) NOT NULL, `pesan` varchar(512) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tb_contact` -- INSERT INTO `tb_contact` (`id`, `nama`, `email`, `judul`, `pesan`) VALUES (1, '<NAME>', '<EMAIL>', 'Test', 'Cuma Ngetes gan'), (2, '<NAME>', '<EMAIL>', 'Test', 'Cuma Ngetes gan'), (3, '<NAME>', '<EMAIL>', 'Test', 'Testetetsstst'); -- -------------------------------------------------------- -- -- Table structure for table `tb_customer` -- CREATE TABLE `tb_customer` ( `id` int(12) NOT NULL, `nama` varchar(128) NOT NULL, `alamat` varchar(128) NOT NULL, `email` varchar(128) NOT NULL, `password` varchar(128) NOT NULL, `no_telp` varchar(15) NOT NULL, `is_active` int(1) NOT NULL, `foto` varchar(128) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tb_customer` -- INSERT INTO `tb_customer` (`id`, `nama`, `alamat`, `email`, `password`, `no_telp`, `is_active`, `foto`) VALUES (1, '<NAME>', 'Jln. Panjang', '<EMAIL>', '11111111', '081211111111', 1, 'default.png'), (2, '<NAME>', 'Jln. Pendek', '<EMAIL>', '22222222', '081122222222', 1, 'default.png'), (3, '<NAME>', 'Jln. Tengah', '<EMAIL>', '33333333', '082233333333', 1, '580b57fcd9996e24bc43c521.png'), (4, 'Inosuke', 'Jln. Jalan', '<EMAIL>', '44444444', '081544444444', 1, 'default.png'), (5, 'Naruto', 'Konoha', '<EMAIL>', '55555555', '081755555555', 1, 'default.png'), (6, 'Naruto', 'Konoha', '<EMAIL>', '55555555', '081755555555', 1, 'default.png'), (7, 'Naruto', 'Konoha', '<EMAIL>', '55555555', '081755555555', 1, 'default.png'), (8, 'Naruto', 'Konoha', '<EMAIL>', '55555555', '081755555555', 1, 'default.png'), (9, 'Naruto', 'Konoha', '<EMAIL>', '55555555', '081755555555', 1, 'default.png'), (10, 'Naruto', 'Konoha', '<EMAIL>', '55555555', '081755555555', 1, 'default.png'), (11, 'Naruto', 'Konoha', '<EMAIL>', '55555555', '081755555555', 1, 'default.png'), (12, 'Naruto', 'Konoha', '<EMAIL>', '55555555', '081755555555', 1, 'default.png'), (13, 'Naruto', 'Konoha', '<EMAIL>', '55555555', '081755555555', 1, 'default.png'), (14, 'Naruto', 'Konoha', '<EMAIL>', '55555555', '081755555555', 1, 'default.png'), (15, 'Naruto', 'Konoha', '<EMAIL>', '55555555', '081755555555', 1, 'default.png'), (16, 'Naruto', 'Konoha', '<EMAIL>', '55555555', '081755555555', 1, 'default.png'), (17, '<NAME>', '', '<EMAIL>', '11111111', '', 0, 'default.png'); -- -------------------------------------------------------- -- -- Table structure for table `tb_kategori` -- CREATE TABLE `tb_kategori` ( `id_kategori` int(12) NOT NULL, `nama_kategori` varchar(256) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tb_kategori` -- INSERT INTO `tb_kategori` (`id_kategori`, `nama_kategori`) VALUES (1, 'Sepeda Motor'), (2, 'Mobil Pribadi'), (3, 'Mobil Barang'), (4, 'Minibus'), (5, 'Motor Besar'), (6, 'Motor Sport'); -- -------------------------------------------------------- -- -- Table structure for table `tb_kendaraan` -- CREATE TABLE `tb_kendaraan` ( `id` int(12) NOT NULL, `id_kategori` int(12) NOT NULL, `merk` varchar(128) NOT NULL, `pabrikan` varchar(128) NOT NULL, `tahun` year(4) NOT NULL, `jarak_tempuh` int(12) NOT NULL, `transmisi` varchar(50) NOT NULL, `bahan_bakar` varchar(50) NOT NULL, `besar_cc` int(5) NOT NULL, `harga_perhari` int(12) NOT NULL, `gambar` varchar(128) NOT NULL, `gambar_detail` varchar(256) NOT NULL, `gambar_png` varchar(256) NOT NULL, `gambar_detail_xl` varchar(256) NOT NULL, `promo` int(12) NOT NULL, `status` varchar(50) NOT NULL, `deskripsi` varchar(512) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tb_kendaraan` -- INSERT INTO `tb_kendaraan` (`id`, `id_kategori`, `merk`, `pabrikan`, `tahun`, `jarak_tempuh`, `transmisi`, `bahan_bakar`, `besar_cc`, `harga_perhari`, `gambar`, `gambar_detail`, `gambar_png`, `gambar_detail_xl`, `promo`, `status`, `deskripsi`) VALUES (1, 1, 'Beat', 'Honda', 2017, 5000, 'Automatic', 'Premium', 110, 210000, 'product1.jpg', 'product_detail1.jpg', '', 'product_detail_xl1.jpg', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (2, 2, 'Jazz', 'Honda', 2018, 5000, 'Automatic', 'Premium', 110, 220000, 'product2.jpg', 'product_detail2.jpg', '', 'product_detail_xl2.jpg', 0, 'Booked', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (3, 6, 'R15', 'Honda', 2019, 5000, 'Automatic', 'Premium', 110, 230000, 'product3.jpg', 'product_detail3.jpg', '', 'product_detail_xl3.jpg', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (4, 5, 'R1M', 'Honda', 2020, 5000, 'Automatic', 'Premium', 110, 240000, 'product4.jpg', 'product_detail4.jpg', '', 'product_detail_xl4.jpg', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (5, 4, 'Elf', 'Honda', 2021, 5000, 'Automatic', 'Premium', 110, 250000, 'product5.jpg', '', '', '', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (6, 3, '<NAME>', 'Honda', 2022, 5000, 'Automatic', 'Premium', 110, 260000, 'product6.jpg', '', '', '', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (7, 1, 'Beat', 'Honda', 2022, 5000, 'Automatic', 'Premium', 110, 260000, 'product7.jpg', '', '', '', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (8, 1, 'Nmax', 'Honda', 2021, 5000, 'Automatic', 'Premium', 110, 250000, 'product8.jpg', '', '', '', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (9, 6, 'R15', 'Honda', 2020, 5000, 'Automatic', 'Premium', 110, 240000, 'product9.jpg', '', '', '', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (10, 1, '<NAME>', 'Honda', 2019, 5000, 'Automatic', 'Premium', 110, 230000, 'product10.jpg', '', '', '', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (11, 5, 'Z10R', 'Honda', 2018, 5000, 'Automatic', 'Premium', 110, 220000, 'product11.jpg', '', '', '', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (12, 2, 'Avansa', 'Honda', 2017, 5000, 'Automatic', 'Premium', 110, 210000, 'product12.jpg', '', '', '', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (13, 2, 'Xenia', 'Honda', 2017, 5000, 'Automatic', 'Premium', 110, 200000, 'product13.jpg', '', '', '', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (14, 2, 'Mobilio', 'Honda', 2017, 5000, 'Automatic', 'Premium', 110, 200000, 'product14.jpg', '', '', '', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (15, 2, 'Jazz', 'Honda', 2017, 5000, 'Automatic', 'Premium', 110, 200000, 'product15.jpg', '', '', '', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (16, 2, 'Mini Cooper', 'Honda', 2017, 5000, 'Automatic', 'Premium', 110, 200000, 'product16.jpg', '', '', '', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (17, 2, 'Carry', 'Honda', 2017, 5000, 'Automatic', 'Premium', 110, 200000, 'product17.jpg', '', '', '', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (18, 3, 'L300', 'Honda', 2017, 5000, 'Automatic', 'Premium', 110, 200000, 'product18.jpg', '', '', '', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (19, 3, 'Grandmax', 'Honda', 2017, 5000, 'Automatic', 'Premium', 110, 200000, 'product19.jpg', '', '', '', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (20, 4, 'Elf', 'Honda', 2017, 5000, 'Automatic', 'Premium', 110, 200000, 'product20.jpg', '', '', '', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (21, 5, 'R1M', 'Honda', 2017, 5000, 'Automatic', 'Premium', 110, 200000, 'product21.jpg', '', '', '', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'), (22, 6, 'Duke', 'Honda', 2017, 5000, 'Automatic', 'Premium', 110, 200000, 'product22.jpg', '', '', '', 0, 'Ready', 'Lorem ipsum dolor sit amet, consectetur adipic it, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercita tion ullamco laboris nisi ut aliquip ex ea commodo.'); -- -------------------------------------------------------- -- -- Table structure for table `tb_logo` -- CREATE TABLE `tb_logo` ( `id` int(12) NOT NULL, `gambar_logo` varchar(128) NOT NULL, `komentar` varchar(512) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `tb_token` -- CREATE TABLE `tb_token` ( `id` int(12) NOT NULL, `email` varchar(128) NOT NULL, `token` varchar(128) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Indexes for dumped tables -- -- -- Indexes for table `tb_booking` -- ALTER TABLE `tb_booking` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tb_booking_tmp` -- ALTER TABLE `tb_booking_tmp` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tb_contact` -- ALTER TABLE `tb_contact` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tb_customer` -- ALTER TABLE `tb_customer` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tb_kategori` -- ALTER TABLE `tb_kategori` ADD PRIMARY KEY (`id_kategori`); -- -- Indexes for table `tb_kendaraan` -- ALTER TABLE `tb_kendaraan` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tb_logo` -- ALTER TABLE `tb_logo` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tb_token` -- ALTER TABLE `tb_token` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `tb_booking` -- ALTER TABLE `tb_booking` MODIFY `id` int(12) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tb_booking_tmp` -- ALTER TABLE `tb_booking_tmp` MODIFY `id` int(12) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=33; -- -- AUTO_INCREMENT for table `tb_contact` -- ALTER TABLE `tb_contact` MODIFY `id` int(12) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `tb_customer` -- ALTER TABLE `tb_customer` MODIFY `id` int(12) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18; -- -- AUTO_INCREMENT for table `tb_kategori` -- ALTER TABLE `tb_kategori` MODIFY `id_kategori` int(12) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `tb_kendaraan` -- ALTER TABLE `tb_kendaraan` MODIFY `id` int(12) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23; -- -- AUTO_INCREMENT for table `tb_logo` -- ALTER TABLE `tb_logo` MODIFY `id` int(12) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tb_token` -- ALTER TABLE `tb_token` MODIFY `id` int(12) 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 */;
<reponame>MS-BI/JobExceutionFramework CREATE TABLE [internal].[catalog_properties] ( [property_name] NVARCHAR (256) NOT NULL, [property_value] NVARCHAR (256) NOT NULL, CONSTRAINT [PK_ISServer_Property] PRIMARY KEY CLUSTERED ([property_name] ASC) );
<reponame>miguelrnf/SoftwareEngineering-project INSERT INTO TOURNAMENTS (ID, AVAILABLE_DATE, CONCLUSION_DATE, COST, CREATION_DATE, NUMBER_OF_QUESTIONS, PRIZE, STATUS, TITLE, ASSESSMENT_ID, COURSE_EXECUTION_ID, USER_ID, TYPE) VALUES (6969, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6970, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6971, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6972, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6973, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6974, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6975, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6976, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6977, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6978, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6979, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6980, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6981, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6982, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6983, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6984, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6985, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6986, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6987, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6988, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6989, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6990, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6991, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6992, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'), (6993, TO_TIMESTAMP('2019-02-23 20:31:00.000000', 'yyyy-MM-dd HH24:mi:ss.ffffff'), TO_TIMESTAMP('2023-09-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 0, TO_TIMESTAMP('2019-01-23 01:10:50.913949', 'yyyy-MM-dd HH24:mi:ss.ffffff'), 10, 2, 'CREATED', 'BOLITA', 6, 11, 676, 'STANDARD'),
<filename>programming/java-ee/Aula 11/script sql/arquivo.sql /* Vamos criar um banco de dados com o nome USUARIO, o IF NOT EXISTS faz a verificar se não há algum bd com o mesmo nome evitando conflito. */ CREATE DATABASE IF NOT EXISTS USUARIO; # O comando USE nos garante que vamos usar o bd USUARIO a partir de agora USE USUARIO; # Utilizando o comando CREATE, iremos criar a nossa tabela # o comando if not exists serve com o mesmo propósito visto acima CREATE TABLE IF NOT EXISTS registro( CODIGO INT AUTO_INCREMENT PRIMARY KEY, NOME VARCHAR(50) NOT NULL, SENHA VARCHAR(50) NOT NULL, EMAIL VARCHAR(50) ); # Vamos inserir alguns dados INSERT INTO registro(nome, usuario, senha) VALUES ('Luis', 'lcarlos', '123'), ('Ana', 'ana', '555'), ('Lais', 'lais', '123'); # Faz uma busca para observar o que há nessa tabela SELECT * FROM REGISTRO;
-- AlterTable ALTER TABLE `geometrie` ADD COLUMN `gridId` INTEGER, ADD COLUMN `partsPerSide` INTEGER NOT NULL DEFAULT 1, ADD COLUMN `scrapTaget` DECIMAL(3, 2) NOT NULL DEFAULT 0; -- CreateTable CREATE TABLE `Grid` ( `id` INTEGER NOT NULL AUTO_INCREMENT, `imageUrl` VARCHAR(191) NOT NULL, `width` INTEGER NOT NULL, `height` INTEGER NOT NULL, `rows` INTEGER NOT NULL, `column` INTEGER NOT NULL, `pixels` INTEGER NOT NULL, PRIMARY KEY (`id`) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; -- AddForeignKey ALTER TABLE `Geometrie` ADD FOREIGN KEY (`gridId`) REFERENCES `Grid`(`id`) ON DELETE SET NULL ON UPDATE CASCADE;
<reponame>kaushikmrao/-Hackerank-SQL-solutions select Round(LONG_W,4) from STATION where LAT_N = (Select Max(LAT_N)from STATION where LAT_N < 137.2345);
<reponame>poonamveeral/CSCI_3410Test /* code/sql/HW_Work.sql */ DROP SCHEMA IF EXISTS HW_Work; CREATE SCHEMA HW_Work; USE HW_Work; CREATE TABLE AUTHOR( Name VARCHAR(30) PRIMARY KEY, Email VARCHAR(30) ); CREATE TABLE WORK( Title VARCHAR(30) PRIMARY KEY, Author VARCHAR(30), FOREIGN KEY (Author) REFERENCES AUTHOR(Name) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE TABLE BOOK( ISBN INT PRIMARY KEY, Work VARCHAR(30), Published DATE, Price DECIMAL(10, 2), FOREIGN KEY (Work) REFERENCES WORK(Title) ON DELETE RESTRICT ON UPDATE CASCADE ); CREATE TABLE EBOOK( ISBN INT PRIMARY KEY, Work VARCHAR(30), Published DATE, Price DECIMAL(10, 2), FOREIGN KEY (Work) REFERENCES WORK(Title) ON DELETE RESTRICT ON UPDATE CASCADE ); INSERT INTO AUTHOR VALUES ("<NAME>.", "<EMAIL>"), -- A.1 ("<NAME>.", "<EMAIL>"), -- A.2 ("<NAME>.", "<EMAIL>") -- A.3 ; INSERT INTO WORK VALUES ("What to eat", "Virginia W.") -- W.1 ; INSERT INTO BOOK VALUES (15155627, "What to eat", DATE'20170219', 12.89) -- B.1 ; INSERT INTO EBOOK VALUES (15155628, "What to eat", DATE'20170215', 9.89) -- E.1 ;
USE tracker; INSERT INTO department (id, full_name) VALUES ("1000", "<NAME>"); INSERT INTO department (id, full_name) VALUES ("1001", "<NAME>"); INSERT INTO department (id, full_name) VALUES ("0001", "<NAME>"); INSERT INTO roles (id, title, salary, department_id) VALUES ("1000", "Engineer", 65000.00, 124); INSERT INTO roles (id, title, salary, department_id) VALUES ("1001", "Manager", 80000.00, 124); INSERT INTO roles (id, title, salary, department_id) VALUES ("0001", "Executive", 1.00, 001); INSERT INTO employee (id, first_name, last_name, role_id, manager_id) VALUES ("1000", "Chris", "Reed", "564", "1001"); INSERT INTO employee (id, first_name, last_name, role_id, manager_id) VALUES ("1001", "Meghan", "Iman", "500", "0001"); INSERT INTO employee (id, first_name, last_name, role_id, manager_id) VALUES ("0001", "Lisa", "Reed", "001", NULL); CREATE TABLE joined ( SELECT department.id, department.full_name, roles.title, roles.salary, roles.department_id, employee.role_id, employee.manager_id FROM department RIGHT JOIN roles ON department.id = roles.id RIGHT JOIN employee ON department.id = employee.id );
CREATE TABLE `dev_action_log` ( `id` int(20) NOT NULL AUTO_INCREMENT, `ticket_no` char(10) DEFAULT NULL, `action_name` char(100) DEFAULT NULL COMMENT '变更项', `action_type` tinyint(3) DEFAULT NULL COMMENT '类型', `from_data` char(100) DEFAULT NULL COMMENT '原来数据', `to_data` char(100) DEFAULT NULL COMMENT '现在数据', `uname` varchar(100) DEFAULT NULL COMMENT '用户名', `ctime` int(15) DEFAULT NULL COMMENT '创建时间', `mtime` int(15) DEFAULT NULL COMMENT '修改时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=gbk;
CREATE TABLE category ( id INT NOT NULL AUTO_INCREMENT, name VARCHAR(255) NOT NULL, PRIMARY KEY (id) ) ENGINE = InnoDB; CREATE TABLE role ( id INT NOT NULL AUTO_INCREMENT, level1 INT, type VARCHAR(255), PRIMARY KEY (id) ) ENGINE = InnoDB; CREATE TABLE product ( id INT NOT NULL AUTO_INCREMENT, details VARCHAR(255), name VARCHAR(255), price DOUBLE, category_id INT, PRIMARY KEY (id) ) ENGINE = InnoDB; CREATE TABLE customer ( id INT NOT NULL AUTO_INCREMENT, name VARCHAR(255) NOT NULL, lastname VARCHAR(255) NOT NULL, password VARCHAR(255) NOT NULL, username VARCHAR(255) NOT NULL, role INT NOT NULL, PRIMARY KEY (id) ) ENGINE = InnoDB; CREATE UNIQUE INDEX UK_mufchskagt7e1w4ksmt9lum5l ON customer (username ASC); CREATE INDEX FK74aoh99stptslhotgf41fitt0 ON customer (role ASC); CREATE INDEX FK1mtsbur82frn64de7balymq9s ON product (category_id ASC);
<reponame>lasalazarr/reactive-a-new-hope<gh_stars>1-10 DROP TABLE IF EXISTS customer; CREATE TABLE customer ( id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR2(255) NOT NULL, score INT NOT NULL );