Created
          September 26, 2016 15:43 
        
      - 
      
- 
        Save esperancaJS/891725fcc273ef0e3b9c9d763229e489 to your computer and use it in GitHub Desktop. 
      This file has been truncated, but you can view the full file.
    
    
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | -- | |
| -- PostgreSQL database dump | |
| -- | |
| SET statement_timeout = 0; | |
| SET lock_timeout = 0; | |
| SET client_encoding = 'UTF8'; | |
| SET standard_conforming_strings = on; | |
| SET check_function_bodies = false; | |
| SET client_min_messages = warning; | |
| -- | |
| -- Name: bulbthings; Type: DATABASE; Schema: -; Owner: bulbthings | |
| -- | |
| CREATE DATABASE bulbthings WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'en_US.UTF-8' LC_CTYPE = 'en_US.UTF-8'; | |
| ALTER DATABASE bulbthings OWNER TO bulbthings; | |
| \connect bulbthings | |
| SET statement_timeout = 0; | |
| SET lock_timeout = 0; | |
| SET client_encoding = 'UTF8'; | |
| SET standard_conforming_strings = on; | |
| SET check_function_bodies = false; | |
| SET client_min_messages = warning; | |
| -- | |
| -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: | |
| -- | |
| CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; | |
| -- | |
| -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: | |
| -- | |
| COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; | |
| -- | |
| -- Name: btree_gist; Type: EXTENSION; Schema: -; Owner: | |
| -- | |
| CREATE EXTENSION IF NOT EXISTS btree_gist WITH SCHEMA public; | |
| -- | |
| -- Name: EXTENSION btree_gist; Type: COMMENT; Schema: -; Owner: | |
| -- | |
| COMMENT ON EXTENSION btree_gist IS 'support for indexing common datatypes in GiST'; | |
| -- | |
| -- Name: fuzzystrmatch; Type: EXTENSION; Schema: -; Owner: | |
| -- | |
| CREATE EXTENSION IF NOT EXISTS fuzzystrmatch WITH SCHEMA public; | |
| -- | |
| -- Name: EXTENSION fuzzystrmatch; Type: COMMENT; Schema: -; Owner: | |
| -- | |
| COMMENT ON EXTENSION fuzzystrmatch IS 'determine similarities and distance between strings'; | |
| -- | |
| -- Name: pg_trgm; Type: EXTENSION; Schema: -; Owner: | |
| -- | |
| CREATE EXTENSION IF NOT EXISTS pg_trgm WITH SCHEMA public; | |
| -- | |
| -- Name: EXTENSION pg_trgm; Type: COMMENT; Schema: -; Owner: | |
| -- | |
| COMMENT ON EXTENSION pg_trgm IS 'text similarity measurement and index searching based on trigrams'; | |
| -- | |
| -- Name: tablefunc; Type: EXTENSION; Schema: -; Owner: | |
| -- | |
| CREATE EXTENSION IF NOT EXISTS tablefunc WITH SCHEMA public; | |
| -- | |
| -- Name: EXTENSION tablefunc; Type: COMMENT; Schema: -; Owner: | |
| -- | |
| COMMENT ON EXTENSION tablefunc IS 'functions that manipulate whole tables, including crosstab'; | |
| SET search_path = public, pg_catalog; | |
| -- | |
| -- Name: addontype; Type: TYPE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE TYPE addontype AS ENUM ( | |
| 'options', | |
| 'accessories' | |
| ); | |
| ALTER TYPE addontype OWNER TO bulbthings; | |
| -- | |
| -- Name: assignmenttype; Type: TYPE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE TYPE assignmenttype AS ENUM ( | |
| 'users', | |
| 'assets', | |
| 'any', | |
| 'none' | |
| ); | |
| ALTER TYPE assignmenttype OWNER TO bulbthings; | |
| -- | |
| -- Name: datasource; Type: TYPE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE TYPE datasource AS ENUM ( | |
| 'demo', | |
| 'import', | |
| 'api', | |
| 'other', | |
| 'init' | |
| ); | |
| ALTER TYPE datasource OWNER TO bulbthings; | |
| -- | |
| -- Name: job_state; Type: TYPE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE TYPE job_state AS ENUM ( | |
| 'created', | |
| 'started', | |
| 'stopped', | |
| 'paused', | |
| 'aborted', | |
| 'done' | |
| ); | |
| ALTER TYPE job_state OWNER TO bulbthings; | |
| -- | |
| -- Name: logseveritylevel; Type: TYPE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE TYPE logseveritylevel AS ENUM ( | |
| 'debug', | |
| 'info', | |
| 'notice', | |
| 'warning', | |
| 'error', | |
| 'critical', | |
| 'alert', | |
| 'emergency' | |
| ); | |
| ALTER TYPE logseveritylevel OWNER TO bulbthings; | |
| -- | |
| -- Name: maintenancestate; Type: TYPE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE TYPE maintenancestate AS ENUM ( | |
| 'paid', | |
| 'late', | |
| 'next' | |
| ); | |
| ALTER TYPE maintenancestate OWNER TO bulbthings; | |
| -- | |
| -- Name: maintenancetype; Type: TYPE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE TYPE maintenancetype AS ENUM ( | |
| 'normal', | |
| 'control' | |
| ); | |
| ALTER TYPE maintenancetype OWNER TO bulbthings; | |
| -- | |
| -- Name: metersource; Type: TYPE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE TYPE metersource AS ENUM ( | |
| 'other', | |
| 'unknown', | |
| 'user', | |
| 'hardware', | |
| 'import' | |
| ); | |
| ALTER TYPE metersource OWNER TO bulbthings; | |
| -- | |
| -- Name: paymentperiod; Type: TYPE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE TYPE paymentperiod AS ENUM ( | |
| 'monthly', | |
| 'bimonthly', | |
| 'quarterly', | |
| 'yearly' | |
| ); | |
| ALTER TYPE paymentperiod OWNER TO bulbthings; | |
| -- | |
| -- Name: paymenttime; Type: TYPE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE TYPE paymenttime AS ENUM ( | |
| 'prepaid', | |
| 'deferred' | |
| ); | |
| ALTER TYPE paymenttime OWNER TO bulbthings; | |
| -- | |
| -- Name: planstypes; Type: TYPE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE TYPE planstypes AS ENUM ( | |
| 'free', | |
| 'multi_country' | |
| ); | |
| ALTER TYPE planstypes OWNER TO bulbthings; | |
| -- | |
| -- Name: readingsource; Type: TYPE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE TYPE readingsource AS ENUM ( | |
| 'unknown', | |
| 'user', | |
| 'hardware', | |
| 'import' | |
| ); | |
| ALTER TYPE readingsource OWNER TO bulbthings; | |
| -- | |
| -- Name: structurestate; Type: TYPE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE TYPE structurestate AS ENUM ( | |
| 'Unknown', | |
| 'Created', | |
| 'Active', | |
| 'Closed', | |
| 'Merged', | |
| 'SplittedDeleted' | |
| ); | |
| ALTER TYPE structurestate OWNER TO bulbthings; | |
| -- | |
| -- Name: costupdate(); Type: FUNCTION; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE FUNCTION costupdate() RETURNS trigger | |
| LANGUAGE plpgsql | |
| AS $$ | |
| DECLARE | |
| tblName CHAR(8); | |
| BEGIN | |
| NEW.updated = NOW(); | |
| -- UPDATE CASE | |
| IF (NEW.exactAmount IS NOT NULL AND NEW.amount IS NOT NULL) THEN | |
| NEW.exactAmount = NEW.amount; | |
| END IF; | |
| IF (NEW.exactAmount IS NOT NULL AND NEW.amount IS NULL) THEN | |
| NEW.amount = NEW.exactAmount; | |
| END IF; | |
| IF (NEW.amount IS NOT NULL AND NEW.exactAmount IS NULL) THEN | |
| NEW.exactAmount = NEW.amount; | |
| END IF; | |
| RETURN NEW; | |
| END; | |
| $$; | |
| ALTER FUNCTION public.costupdate() OWNER TO bulbthings; | |
| -- | |
| -- Name: nodepath(bigint); Type: FUNCTION; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE FUNCTION nodepath(node_id bigint) RETURNS character varying | |
| LANGUAGE plpgsql IMMUTABLE | |
| AS $$ | |
| declare | |
| npref refcursor; | |
| node_path varchar; | |
| begin | |
| open npref for | |
| with recursive parent(structureid, path, period) as ( | |
| select | |
| structureid, concat(parentid::text, '/', structureid::text), period | |
| from | |
| structureshistory | |
| where | |
| (parentid is null and period @> NOW()) | |
| union all | |
| select | |
| h.structureid, concat(parent.path, '/', h.structureid::text), h.period | |
| from | |
| parent, structureshistory h | |
| where | |
| (h.parentid = parent.structureid and h.period @> NOW()) | |
| ) | |
| select | |
| path from parent | |
| where | |
| structureid = node_id; | |
| fetch last from npref into node_path; | |
| return node_path; | |
| end; | |
| $$; | |
| ALTER FUNCTION public.nodepath(node_id bigint) OWNER TO bulbthings; | |
| -- | |
| -- Name: path_root(character varying); Type: FUNCTION; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE FUNCTION path_root(character varying) RETURNS bigint | |
| LANGUAGE sql IMMUTABLE STRICT | |
| AS $_$select split_part($1, '/', 2)::bigint;$_$; | |
| ALTER FUNCTION public.path_root(character varying) OWNER TO bulbthings; | |
| -- | |
| -- Name: safe_name(character varying); Type: FUNCTION; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE FUNCTION safe_name(character varying) RETURNS character varying | |
| LANGUAGE sql IMMUTABLE STRICT | |
| AS $_$select regexp_replace(lower($1), '[^a-z0-9]+', '_', 'g') ;$_$; | |
| ALTER FUNCTION public.safe_name(character varying) OWNER TO bulbthings; | |
| -- | |
| -- Name: set_updated_column(); Type: FUNCTION; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE FUNCTION set_updated_column() RETURNS trigger | |
| LANGUAGE plpgsql | |
| AS $$ | |
| begin | |
| new.updated_at = now(); | |
| return new; | |
| end; | |
| $$; | |
| ALTER FUNCTION public.set_updated_column() OWNER TO bulbthings; | |
| -- | |
| -- Name: updateasset(); Type: FUNCTION; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE FUNCTION updateasset() RETURNS trigger | |
| LANGUAGE plpgsql | |
| AS $$ | |
| BEGIN | |
| NEW.updated = now(); | |
| RETURN NEW; | |
| END; | |
| $$; | |
| ALTER FUNCTION public.updateasset() OWNER TO bulbthings; | |
| -- | |
| -- Name: updateuser(); Type: FUNCTION; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE FUNCTION updateuser() RETURNS trigger | |
| LANGUAGE plpgsql | |
| AS $$ | |
| BEGIN | |
| NEW.updated = now(); | |
| RETURN NEW; | |
| END; | |
| $$; | |
| ALTER FUNCTION public.updateuser() OWNER TO bulbthings; | |
| SET default_tablespace = ''; | |
| SET default_with_oids = false; | |
| -- | |
| -- Name: addons; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE addons ( | |
| id bigint NOT NULL, | |
| type addontype DEFAULT 'accessories'::addontype NOT NULL, | |
| serialnumber text, | |
| label text NOT NULL, | |
| description text NOT NULL | |
| ); | |
| ALTER TABLE addons OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE addons; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE addons IS 'Addons table. Assets can have addons'; | |
| -- | |
| -- Name: COLUMN addons.serialnumber; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN addons.serialnumber IS 'Addon unique identifier (manufacturer or personal)'; | |
| -- | |
| -- Name: COLUMN addons.label; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN addons.label IS 'Label of the addon, free text'; | |
| -- | |
| -- Name: COLUMN addons.description; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN addons.description IS 'Description of the addon, free text'; | |
| -- | |
| -- Name: addonid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE addonid | |
| START WITH 32 | |
| INCREMENT BY 100 | |
| MINVALUE 32 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE addonid OWNER TO bulbthings; | |
| -- | |
| -- Name: addonid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE addonid OWNED BY addons.id; | |
| -- | |
| -- Name: addons_mapping; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE addons_mapping ( | |
| addon_id bigint, | |
| asset_id bigint NOT NULL, | |
| cost_id bigint NOT NULL | |
| ); | |
| ALTER TABLE addons_mapping OWNER TO bulbthings; | |
| -- | |
| -- Name: addresses; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE addresses ( | |
| id bigint NOT NULL, | |
| country character varying NOT NULL, | |
| county character varying NOT NULL, | |
| city character varying NOT NULL, | |
| postcode character varying NOT NULL, | |
| lines character varying[] NOT NULL, | |
| digest character varying(32) NOT NULL | |
| ); | |
| ALTER TABLE addresses OWNER TO bulbthings; | |
| -- | |
| -- Name: addresses_mapping; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE addresses_mapping ( | |
| label character varying NOT NULL, | |
| address_id bigint NOT NULL, | |
| entity_id bigint NOT NULL | |
| ); | |
| ALTER TABLE addresses_mapping OWNER TO bulbthings; | |
| -- | |
| -- Name: addresses_mapping_address_id_seq; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE addresses_mapping_address_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE addresses_mapping_address_id_seq OWNER TO bulbthings; | |
| -- | |
| -- Name: addresses_mapping_address_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE addresses_mapping_address_id_seq OWNED BY addresses_mapping.address_id; | |
| -- | |
| -- Name: addressid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE addressid | |
| START WITH 19 | |
| INCREMENT BY 100 | |
| MINVALUE 19 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE addressid OWNER TO bulbthings; | |
| -- | |
| -- Name: addressid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE addressid OWNED BY addresses.id; | |
| -- | |
| -- Name: assignment_id; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE assignment_id | |
| START WITH 8 | |
| INCREMENT BY 100 | |
| MINVALUE 8 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE assignment_id OWNER TO bulbthings; | |
| -- | |
| -- Name: assetassignments; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE assetassignments ( | |
| id bigint DEFAULT nextval('assignment_id'::regclass) NOT NULL, | |
| asset integer NOT NULL, | |
| resource integer NOT NULL, | |
| period tstzrange DEFAULT tstzrange(now(), NULL::timestamp with time zone, '[)'::text) NOT NULL, | |
| ratio integer, | |
| attribute character varying, | |
| shared boolean DEFAULT false, | |
| shared_id integer DEFAULT 0 | |
| ); | |
| ALTER TABLE assetassignments OWNER TO bulbthings; | |
| -- | |
| -- Name: assetattributes; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE assetattributes ( | |
| asset_id bigint NOT NULL, | |
| name character varying(64) NOT NULL, | |
| value jsonb | |
| ); | |
| ALTER TABLE assetattributes OWNER TO bulbthings; | |
| -- | |
| -- Name: assets; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE assets ( | |
| id bigint NOT NULL, | |
| classname text NOT NULL, | |
| created timestamp without time zone DEFAULT now(), | |
| updated timestamp without time zone DEFAULT now(), | |
| active boolean DEFAULT true, | |
| statecode character varying(32) NOT NULL, | |
| nextcheck timestamp without time zone DEFAULT now(), | |
| source datasource DEFAULT 'other'::datasource NOT NULL | |
| ); | |
| ALTER TABLE assets OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE assets; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE assets IS 'Assets table. Store intrinsic properties from the assets'; | |
| -- | |
| -- Name: COLUMN assets.id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN assets.id IS 'Private key, serial number from the AssetID sequence'; | |
| -- | |
| -- Name: COLUMN assets.classname; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN assets.classname IS 'The name of the class used on the server for specific code'; | |
| -- | |
| -- Name: COLUMN assets.created; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN assets.created IS 'The time the asset has been created in the system'; | |
| -- | |
| -- Name: COLUMN assets.updated; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN assets.updated IS 'The time the asset has been updated by the system'; | |
| -- | |
| -- Name: COLUMN assets.active; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN assets.active IS 'True if the asset is active (not deleted)'; | |
| -- | |
| -- Name: COLUMN assets.statecode; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN assets.statecode IS 'The current state the asset is in, from the JSON workflow'; | |
| -- | |
| -- Name: assetid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE assetid | |
| START WITH 2 | |
| INCREMENT BY 100 | |
| MINVALUE 2 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE assetid OWNER TO bulbthings; | |
| -- | |
| -- Name: assetid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE assetid OWNED BY assets.id; | |
| -- | |
| -- Name: assets_current_assignments; Type: VIEW; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE VIEW assets_current_assignments AS | |
| SELECT assets.id AS asset_id, | |
| array_agg(DISTINCT assignment.resource) AS assignments | |
| FROM (assets assets | |
| JOIN assetassignments assignment ON ((assets.id = assignment.asset))) | |
| WHERE ((assignment.period @> now()) OR (assignment.period IS NULL)) | |
| GROUP BY assets.id; | |
| ALTER TABLE assets_current_assignments OWNER TO bulbthings; | |
| -- | |
| -- Name: assettypeid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE assettypeid | |
| START WITH 10 | |
| INCREMENT BY 100 | |
| MINVALUE 10 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE assettypeid OWNER TO bulbthings; | |
| -- | |
| -- Name: assettypes; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE assettypes ( | |
| id bigint DEFAULT nextval('assettypeid'::regclass) NOT NULL, | |
| classname character varying NOT NULL, | |
| description text NOT NULL, | |
| created timestamp without time zone DEFAULT now(), | |
| updated timestamp without time zone DEFAULT now() | |
| ); | |
| ALTER TABLE assettypes OWNER TO bulbthings; | |
| -- | |
| -- Name: assignments_current_with_structures; Type: VIEW; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE VIEW assignments_current_with_structures AS | |
| SELECT crosstab.asset_id, | |
| crosstab.accounting, | |
| crosstab.businesses, | |
| crosstab.cost_codes, | |
| crosstab.hr, | |
| crosstab.legal_entities, | |
| crosstab.location, | |
| crosstab.project | |
| FROM crosstab('select | |
| aa.asset, | |
| sr.root_name, | |
| s.label | |
| from | |
| assetassignments aa | |
| left join | |
| structures s | |
| on | |
| aa.resource = s.id | |
| left join | |
| structures_current_with_roots sr | |
| on | |
| aa.resource = sr.id | |
| where | |
| (period @> NOW() and (resource % 100) = 1) | |
| order by 1,2'::text, 'select name from structures_current_top where assign in (''any'',''assets'',''users'') order by name'::text) crosstab(asset_id bigint, accounting character varying, businesses character varying, cost_codes character varying, hr character varying, legal_entities character varying, location character varying, project character varying); | |
| ALTER TABLE assignments_current_with_structures OWNER TO bulbthings; | |
| -- | |
| -- Name: users; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE users ( | |
| id bigint NOT NULL, | |
| title character varying(8) DEFAULT NULL::character varying, | |
| firstname text NOT NULL, | |
| lastname text NOT NULL, | |
| email text NOT NULL, | |
| password text NOT NULL, | |
| created timestamp without time zone DEFAULT now(), | |
| updated timestamp without time zone DEFAULT now(), | |
| dob date, | |
| active boolean DEFAULT true, | |
| connected timestamp without time zone, | |
| deleted boolean DEFAULT false, | |
| attributes jsonb, | |
| source datasource DEFAULT 'other'::datasource NOT NULL | |
| ); | |
| ALTER TABLE users OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE users; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE users IS 'Users table'; | |
| -- | |
| -- Name: COLUMN users.title; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN users.title IS 'User title (Mr,Mrs,Miss,etc.)'; | |
| -- | |
| -- Name: COLUMN users.firstname; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN users.firstname IS 'User identity firstname'; | |
| -- | |
| -- Name: COLUMN users.lastname; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN users.lastname IS 'User identity lastname'; | |
| -- | |
| -- Name: COLUMN users.email; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN users.email IS 'User main email'; | |
| -- | |
| -- Name: COLUMN users.password; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN users.password IS 'Current user password'; | |
| -- | |
| -- Name: COLUMN users.created; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN users.created IS 'Date & time the user account has been created'; | |
| -- | |
| -- Name: COLUMN users.updated; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN users.updated IS 'Date & time the user account has been updated'; | |
| -- | |
| -- Name: COLUMN users.dob; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN users.dob IS 'Date of birth'; | |
| -- | |
| -- Name: COLUMN users.active; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN users.active IS 'True if the user account is active (but not deleted)'; | |
| -- | |
| -- Name: COLUMN users.connected; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN users.connected IS 'Date & time the user logged in'; | |
| -- | |
| -- Name: COLUMN users.deleted; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN users.deleted IS 'True if the user account has been deleted'; | |
| -- | |
| -- Name: COLUMN users.attributes; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN users.attributes IS 'Custom attributes for the user'; | |
| -- | |
| -- Name: assignments_current_with_users; Type: VIEW; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE VIEW assignments_current_with_users AS | |
| SELECT aa.asset AS asset_id, | |
| aa.resource AS user_id, | |
| u.title AS user_title, | |
| u.firstname AS user_firstname, | |
| u.lastname AS user_lastname | |
| FROM (assetassignments aa | |
| LEFT JOIN users u ON ((u.id = aa.resource))) | |
| WHERE (((aa.resource % 100) = 4) AND (aa.period @> now())) | |
| ORDER BY aa.resource; | |
| ALTER TABLE assignments_current_with_users OWNER TO bulbthings; | |
| -- | |
| -- Name: attributetypes; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE attributetypes ( | |
| assetname character varying(64) NOT NULL, | |
| statecode character varying(32) DEFAULT NULL::character varying, | |
| name character varying(64) NOT NULL, | |
| class character varying(64) NOT NULL, | |
| label character varying(64) NOT NULL, | |
| help text NOT NULL, | |
| userdef boolean NOT NULL, | |
| required boolean DEFAULT true, | |
| readonly boolean DEFAULT false, | |
| validation jsonb, | |
| settings jsonb | |
| ); | |
| ALTER TABLE attributetypes OWNER TO bulbthings; | |
| -- | |
| -- Name: authentication_tokens; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE authentication_tokens ( | |
| token character(128), | |
| expiring timestamp without time zone NOT NULL, | |
| "userID" bigint, | |
| source character varying(128) DEFAULT NULL::character varying | |
| ); | |
| ALTER TABLE authentication_tokens OWNER TO bulbthings; | |
| -- | |
| -- Name: cards; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE cards ( | |
| id bigint NOT NULL, | |
| type character varying NOT NULL, | |
| supplier character varying NOT NULL, | |
| card_no character varying NOT NULL, | |
| period tstzrange NOT NULL, | |
| active boolean DEFAULT true, | |
| serial_number character varying NOT NULL, | |
| attributes jsonb | |
| ); | |
| ALTER TABLE cards OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE cards; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE cards IS 'Cards table. Any type of cards can be recorded'; | |
| -- | |
| -- Name: COLUMN cards.attributes; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN cards.attributes IS 'Cards attributes. Will add personnalized columns associated to type'; | |
| -- | |
| -- Name: cardid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE cardid | |
| START WITH 22 | |
| INCREMENT BY 100 | |
| MINVALUE 22 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE cardid OWNER TO bulbthings; | |
| -- | |
| -- Name: cardid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE cardid OWNED BY cards.id; | |
| -- | |
| -- Name: cards_mapping; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE cards_mapping ( | |
| card_id bigint NOT NULL, | |
| entity_id bigint NOT NULL | |
| ); | |
| ALTER TABLE cards_mapping OWNER TO bulbthings; | |
| -- | |
| -- Name: cards_mapping_card_id_seq; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE cards_mapping_card_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE cards_mapping_card_id_seq OWNER TO bulbthings; | |
| -- | |
| -- Name: cards_mapping_card_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE cards_mapping_card_id_seq OWNED BY cards_mapping.card_id; | |
| -- | |
| -- Name: consumptions; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE consumptions ( | |
| id bigint NOT NULL, | |
| asset_id bigint, | |
| source readingsource DEFAULT 'unknown'::readingsource, | |
| source_id bigint, | |
| date timestamp with time zone DEFAULT now(), | |
| value numeric(11,2) NOT NULL, | |
| type character varying NOT NULL, | |
| group_type character varying, | |
| unit character varying NOT NULL, | |
| confidence smallint NOT NULL | |
| ); | |
| ALTER TABLE consumptions OWNER TO bulbthings; | |
| -- | |
| -- Name: consumptionid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE consumptionid | |
| START WITH 26 | |
| INCREMENT BY 100 | |
| MINVALUE 26 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE consumptionid OWNER TO bulbthings; | |
| -- | |
| -- Name: consumptionid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE consumptionid OWNED BY consumptions.id; | |
| -- | |
| -- Name: contacts; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE contacts ( | |
| id bigint NOT NULL, | |
| first_name character varying(255) NOT NULL, | |
| last_name character varying(255), | |
| parent bigint NOT NULL, | |
| address character varying(255), | |
| notes text, | |
| created timestamp without time zone DEFAULT now(), | |
| updated timestamp without time zone DEFAULT now(), | |
| search tsvector | |
| ); | |
| ALTER TABLE contacts OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE contacts; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE contacts IS 'List of contactsinside different thirdparties'; | |
| -- | |
| -- Name: COLUMN contacts.id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN contacts.id IS 'private key, serial number from ContactID sequence.'; | |
| -- | |
| -- Name: COLUMN contacts.first_name; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN contacts.first_name IS 'First name of the person, cannot not be null'; | |
| -- | |
| -- Name: COLUMN contacts.last_name; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN contacts.last_name IS 'Last name of the person'; | |
| -- | |
| -- Name: COLUMN contacts.parent; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN contacts.parent IS 'ID of the parent thirdparty'; | |
| -- | |
| -- Name: COLUMN contacts.address; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN contacts.address IS 'Address information about the thirdparty'; | |
| -- | |
| -- Name: COLUMN contacts.notes; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN contacts.notes IS 'To take notes about the thirdpartys'; | |
| -- | |
| -- Name: contactid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE contactid | |
| START WITH 14 | |
| INCREMENT BY 100 | |
| MINVALUE 14 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE contactid OWNER TO bulbthings; | |
| -- | |
| -- Name: contactid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE contactid OWNED BY contacts.id; | |
| -- | |
| -- Name: contract_asset; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE contract_asset ( | |
| contract_id bigint NOT NULL, | |
| asset_id bigint NOT NULL, | |
| nextcheck timestamp without time zone NOT NULL | |
| ); | |
| ALTER TABLE contract_asset OWNER TO bulbthings; | |
| -- | |
| -- Name: contract_changes; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE contract_changes ( | |
| id bigint NOT NULL, | |
| contract_id bigint, | |
| title character varying, | |
| description text, | |
| created timestamp without time zone DEFAULT now(), | |
| changes jsonb | |
| ); | |
| ALTER TABLE contract_changes OWNER TO bulbthings; | |
| -- | |
| -- Name: contract_services; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE contract_services ( | |
| id bigint NOT NULL, | |
| contract_id bigint, | |
| type character varying NOT NULL, | |
| title character varying NOT NULL, | |
| description text, | |
| created timestamp without time zone DEFAULT now(), | |
| updated timestamp without time zone DEFAULT now(), | |
| deleted timestamp without time zone, | |
| gross_price numeric(20,6) NOT NULL, | |
| net_price numeric(20,6) NOT NULL, | |
| vat double precision NOT NULL, | |
| attributes jsonb | |
| ); | |
| ALTER TABLE contract_services OWNER TO bulbthings; | |
| -- | |
| -- Name: contractchangeid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE contractchangeid | |
| START WITH 16 | |
| INCREMENT BY 100 | |
| MINVALUE 16 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE contractchangeid OWNER TO bulbthings; | |
| -- | |
| -- Name: contractchangeid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE contractchangeid OWNED BY contract_changes.id; | |
| -- | |
| -- Name: contracts; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE contracts ( | |
| id bigint NOT NULL, | |
| title character varying NOT NULL, | |
| type character varying NOT NULL, | |
| reference character varying NOT NULL, | |
| version integer DEFAULT 0, | |
| asset_type character varying NOT NULL, | |
| supplier character varying NOT NULL, | |
| thirdparty_id bigint, | |
| created timestamp without time zone DEFAULT now(), | |
| updated timestamp without time zone DEFAULT now(), | |
| period tstzrange NOT NULL, | |
| deleted boolean DEFAULT false, | |
| active boolean DEFAULT true, | |
| attributes jsonb, | |
| effective tstzrange, | |
| payment_time paymenttime NOT NULL, | |
| payment_period paymentperiod NOT NULL, | |
| currency character(3) NOT NULL | |
| ); | |
| ALTER TABLE contracts OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE contracts; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE contracts IS 'Contracts table. Each contract can be associated to one or many asset'; | |
| -- | |
| -- Name: COLUMN contracts.created; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN contracts.created IS 'Date & time the contract account has been created'; | |
| -- | |
| -- Name: COLUMN contracts.updated; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN contracts.updated IS 'Date & time the contract account has been updated'; | |
| -- | |
| -- Name: COLUMN contracts.attributes; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN contracts.attributes IS 'Custom attributes for the contract'; | |
| -- | |
| -- Name: contractid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE contractid | |
| START WITH 15 | |
| INCREMENT BY 100 | |
| MINVALUE 15 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE contractid OWNER TO bulbthings; | |
| -- | |
| -- Name: contractid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE contractid OWNED BY contracts.id; | |
| -- | |
| -- Name: contractserviceid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE contractserviceid | |
| START WITH 18 | |
| INCREMENT BY 100 | |
| MINVALUE 18 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE contractserviceid OWNER TO bulbthings; | |
| -- | |
| -- Name: contractserviceid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE contractserviceid OWNED BY contract_services.id; | |
| -- | |
| -- Name: cost_assoc; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE cost_assoc ( | |
| cost_id bigint | |
| ); | |
| ALTER TABLE cost_assoc OWNER TO bulbthings; | |
| -- | |
| -- Name: cost_assets; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE cost_assets ( | |
| asset_id bigint NOT NULL | |
| ) | |
| INHERITS (cost_assoc); | |
| ALTER TABLE ONLY cost_assets ALTER COLUMN cost_id SET NOT NULL; | |
| ALTER TABLE cost_assets OWNER TO bulbthings; | |
| -- | |
| -- Name: cost_consumptions; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE cost_consumptions ( | |
| consumption_id bigint NOT NULL | |
| ) | |
| INHERITS (cost_assoc); | |
| ALTER TABLE ONLY cost_consumptions ALTER COLUMN cost_id SET NOT NULL; | |
| ALTER TABLE cost_consumptions OWNER TO bulbthings; | |
| -- | |
| -- Name: cost_contract_services; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE cost_contract_services ( | |
| contract_service_id bigint NOT NULL | |
| ) | |
| INHERITS (cost_assoc); | |
| ALTER TABLE ONLY cost_contract_services ALTER COLUMN cost_id SET NOT NULL; | |
| ALTER TABLE cost_contract_services OWNER TO bulbthings; | |
| -- | |
| -- Name: cost_costs; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE cost_costs ( | |
| subcost_id bigint NOT NULL | |
| ) | |
| INHERITS (cost_assoc); | |
| ALTER TABLE ONLY cost_costs ALTER COLUMN cost_id SET NOT NULL; | |
| ALTER TABLE cost_costs OWNER TO bulbthings; | |
| -- | |
| -- Name: cost_fines; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE cost_fines ( | |
| fine_id bigint NOT NULL | |
| ) | |
| INHERITS (cost_assoc); | |
| ALTER TABLE cost_fines OWNER TO bulbthings; | |
| -- | |
| -- Name: cost_structures; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE cost_structures ( | |
| structure_id bigint NOT NULL | |
| ) | |
| INHERITS (cost_assoc); | |
| ALTER TABLE ONLY cost_structures ALTER COLUMN cost_id SET NOT NULL; | |
| ALTER TABLE cost_structures OWNER TO bulbthings; | |
| -- | |
| -- Name: cost_users; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE cost_users ( | |
| user_id bigint NOT NULL | |
| ) | |
| INHERITS (cost_assoc); | |
| ALTER TABLE ONLY cost_users ALTER COLUMN cost_id SET NOT NULL; | |
| ALTER TABLE cost_users OWNER TO bulbthings; | |
| -- | |
| -- Name: costs; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE costs ( | |
| id bigint NOT NULL, | |
| classname character varying(32) DEFAULT NULL::character varying, | |
| parent bigint, | |
| label text NOT NULL, | |
| invoice_ref character varying, | |
| description text, | |
| created timestamp with time zone DEFAULT now(), | |
| updated timestamp with time zone DEFAULT now(), | |
| paydate timestamp with time zone, | |
| period tstzrange, | |
| amount double precision, | |
| exactamount numeric(20,6), | |
| tcoamount double precision, | |
| currency character(3), | |
| tcoamount_legal double precision, | |
| currency_legal character(3), | |
| tcoamount_reference double precision, | |
| currency_reference character(3), | |
| taxes character varying[], | |
| attributes jsonb | |
| ); | |
| ALTER TABLE costs OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE costs; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE costs IS 'Costs table. Can be hierarchics'; | |
| -- | |
| -- Name: COLUMN costs.id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN costs.id IS 'Private key, serial number from CostID sequence.'; | |
| -- | |
| -- Name: COLUMN costs.classname; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN costs.classname IS 'A classname specifiying the behaviour, if needed'; | |
| -- | |
| -- Name: COLUMN costs.parent; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN costs.parent IS 'The parent cost, used for hierarchical costs'; | |
| -- | |
| -- Name: COLUMN costs.label; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN costs.label IS 'A short label associated to the cost'; | |
| -- | |
| -- Name: COLUMN costs.description; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN costs.description IS 'Longer description for the cost'; | |
| -- | |
| -- Name: COLUMN costs.created; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN costs.created IS 'The exact time the cost has been created on the system'; | |
| -- | |
| -- Name: COLUMN costs.updated; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN costs.updated IS 'The exact time the cost has been updated by the system'; | |
| -- | |
| -- Name: COLUMN costs.period; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN costs.period IS 'The period associated to the cost'; | |
| -- | |
| -- Name: COLUMN costs.amount; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN costs.amount IS 'Amount of the cost. (15 decimal digits precision)'; | |
| -- | |
| -- Name: COLUMN costs.exactamount; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN costs.exactamount IS 'The exact amount entered by the user, used for high precision calculation, 20 digits, 6 decimals'; | |
| -- | |
| -- Name: COLUMN costs.currency; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN costs.currency IS 'The currency as a three letters code (ISO 4217)'; | |
| -- | |
| -- Name: COLUMN costs.taxes; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN costs.taxes IS 'Array of tax names associated to the cost'; | |
| -- | |
| -- Name: COLUMN costs.attributes; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN costs.attributes IS 'Custom attributes associated to the cost, often related to ratio distribution'; | |
| -- | |
| -- Name: costid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE costid | |
| START WITH 3 | |
| INCREMENT BY 100 | |
| MINVALUE 3 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE costid OWNER TO bulbthings; | |
| -- | |
| -- Name: costid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE costid OWNED BY costs.id; | |
| -- | |
| -- Name: countries; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE countries ( | |
| id bigint NOT NULL, | |
| code character varying NOT NULL, | |
| name character varying NOT NULL, | |
| attributes jsonb, | |
| created timestamp without time zone DEFAULT now(), | |
| updated timestamp without time zone DEFAULT now() | |
| ); | |
| ALTER TABLE countries OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE countries; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE countries IS 'Country table'; | |
| -- | |
| -- Name: COLUMN countries.id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN countries.id IS 'Private key, serial number from CountryID sequence.'; | |
| -- | |
| -- Name: COLUMN countries.code; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN countries.code IS 'Country unique code ISO 3166-2'; | |
| -- | |
| -- Name: COLUMN countries.name; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN countries.name IS 'Country name'; | |
| -- | |
| -- Name: COLUMN countries.attributes; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN countries.attributes IS 'Country attributes'; | |
| -- | |
| -- Name: countryid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE countryid | |
| START WITH 31 | |
| INCREMENT BY 100 | |
| MINVALUE 31 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE countryid OWNER TO bulbthings; | |
| -- | |
| -- Name: countryid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE countryid OWNED BY countries.id; | |
| -- | |
| -- Name: damages; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE damages ( | |
| id bigint NOT NULL, | |
| damage_date timestamp with time zone, | |
| asset_id bigint NOT NULL, | |
| cost_id bigint, | |
| attributes jsonb, | |
| created timestamp with time zone DEFAULT now(), | |
| updated timestamp with time zone DEFAULT now() | |
| ); | |
| ALTER TABLE damages OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE damages; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE damages IS 'Damages table'; | |
| -- | |
| -- Name: COLUMN damages.id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN damages.id IS 'Private key, serial number from DamagesID sequence.'; | |
| -- | |
| -- Name: COLUMN damages.attributes; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN damages.attributes IS 'Damages attributes'; | |
| -- | |
| -- Name: damagesid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE damagesid | |
| START WITH 28 | |
| INCREMENT BY 100 | |
| MINVALUE 28 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE damagesid OWNER TO bulbthings; | |
| -- | |
| -- Name: damagesid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE damagesid OWNED BY damages.id; | |
| -- | |
| -- Name: dbchanges; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE dbchanges ( | |
| filename character varying(255) NOT NULL, | |
| applied integer, | |
| success boolean, | |
| error_log character varying(255) | |
| ); | |
| ALTER TABLE dbchanges OWNER TO bulbthings; | |
| -- | |
| -- Name: electronic_computers; Type: VIEW; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE VIEW electronic_computers AS | |
| SELECT assetattributes.id, | |
| assetattributes.avg_tco_per_month, | |
| assetattributes.bluetooth, | |
| assetattributes.brand, | |
| assetattributes.camera, | |
| assetattributes.chipset, | |
| assetattributes.colour, | |
| assetattributes.comment, | |
| assetattributes.computer_type, | |
| assetattributes.contract_consumption, | |
| assetattributes.contract_currency, | |
| assetattributes.contract_duration_unit, | |
| assetattributes.contract_duration_value, | |
| assetattributes.contract_end, | |
| assetattributes.contract_order_supplier, | |
| assetattributes.contract_payment_period_order, | |
| assetattributes.contract_service_1, | |
| assetattributes.contract_service_2, | |
| assetattributes.contract_service_3, | |
| assetattributes.contract_service_4, | |
| assetattributes.contract_service_5, | |
| assetattributes.contract_start, | |
| assetattributes.contract_type, | |
| assetattributes.cpu, | |
| assetattributes.custom_id, | |
| assetattributes.date_broken, | |
| assetattributes.date_loss, | |
| assetattributes.date_pre_order, | |
| assetattributes.date_quotation, | |
| assetattributes.date_returned, | |
| assetattributes.display_type, | |
| assetattributes.entry_date, | |
| assetattributes.extras_accessories, | |
| assetattributes.extras_options, | |
| assetattributes.first_user_date, | |
| assetattributes.gpu, | |
| assetattributes.hdmi, | |
| assetattributes.inactivity_reason, | |
| assetattributes.internal_memory, | |
| assetattributes.keyboard, | |
| assetattributes.mac_address, | |
| assetattributes.model, | |
| assetattributes.nb_usb, | |
| assetattributes.next_maintenance_date, | |
| assetattributes.order_date, | |
| assetattributes.order_id, | |
| assetattributes.os, | |
| assetattributes.os_version, | |
| assetattributes.quotation_id, | |
| assetattributes.request_id, | |
| assetattributes.screen_resolution, | |
| assetattributes.screen_size, | |
| assetattributes.serial, | |
| assetattributes.service_1_fees, | |
| assetattributes.service_2_fees, | |
| assetattributes.service_3_fees, | |
| assetattributes.service_4_fees, | |
| assetattributes.service_5_fees, | |
| assetattributes.supplier, | |
| assetattributes.supplier_email, | |
| assetattributes.supplier_id, | |
| assetattributes.total_tco, | |
| assetattributes.touch_screen_type, | |
| assetattributes.uuid, | |
| assetattributes.vga, | |
| assetattributes.wifi | |
| FROM crosstab('SELECT | |
| asset_id, | |
| name::text, | |
| trim(value::text, ''"'') | |
| FROM | |
| assetattributes | |
| LEFT JOIN | |
| assets | |
| ON | |
| assets.id = asset_id | |
| WHERE ( | |
| assets.classname = ''electronic.computer'' AND | |
| name IN (''avg_tco_per_month'',''bluetooth'',''brand'',''camera'',''chipset'',''colour'',''comment'',''computer_type'',''contract_consumption'',''contract_currency'',''contract_duration_unit'',''contract_duration_value'',''contract_end'',''contract_order_supplier'',''contract_payment_period_order'',''contract_service_1'',''contract_service_2'',''contract_service_3'',''contract_service_4'',''contract_service_5'',''contract_start'',''contract_type'',''cpu'',''custom_id'',''date_broken'',''date_loss'',''date_pre_order'',''date_quotation'',''date_returned'',''display_type'',''entry_date'',''extras_accessories'',''extras_options'',''first_user_date'',''gpu'',''hdmi'',''inactivity_reason'',''internal_memory'',''keyboard'',''mac_address'',''model'',''nb_usb'',''next_maintenance_date'',''order_date'',''order_id'',''os'',''os_version'',''quotation_id'',''request_id'',''screen_resolution'',''screen_size'',''serial'',''service_1_fees'',''service_2_fees'',''service_3_fees'',''service_4_fees'',''service_5_fees'',''supplier'',''supplier_email'',''supplier_id'',''total_tco'',''touch_screen_type'',''uuid'',''vga'',''wifi'') | |
| ) | |
| ORDER BY 1,2'::text, 'SELECT name FROM attributetypes WHERE assetname=''electronic.computer'' ORDER BY 1'::text) assetattributes(id bigint, avg_tco_per_month integer, bluetooth boolean, brand character varying, camera boolean, chipset character varying, colour character varying, comment character varying, computer_type character varying, contract_consumption integer, contract_currency character varying, contract_duration_unit character varying, contract_duration_value integer, contract_end timestamp without time zone, contract_order_supplier character varying, contract_payment_period_order character varying, contract_service_1 character varying, contract_service_2 character varying, contract_service_3 character varying, contract_service_4 character varying, contract_service_5 character varying, contract_start timestamp without time zone, contract_type character varying, cpu character varying, custom_id character varying, date_broken timestamp without time zone, date_loss timestamp without time zone, date_pre_order timestamp without time zone, date_quotation timestamp without time zone, date_returned timestamp without time zone, display_type character varying, entry_date timestamp without time zone, extras_accessories character varying, extras_options character varying, first_user_date timestamp without time zone, gpu character varying, hdmi boolean, inactivity_reason character varying, internal_memory integer, keyboard character varying, mac_address character varying, model character varying, nb_usb integer, next_maintenance_date timestamp without time zone, order_date timestamp without time zone, order_id character varying, os character varying, os_version character varying, quotation_id character varying, request_id character varying, screen_resolution integer[], screen_size numeric(11,2), serial character varying, service_1_fees integer, service_2_fees integer, service_3_fees integer, service_4_fees integer, service_5_fees integer, supplier character varying, supplier_email character varying, supplier_id character varying, total_tco integer, touch_screen_type character varying, uuid character varying, vga boolean, wifi boolean); | |
| ALTER TABLE electronic_computers OWNER TO bulbthings; | |
| -- | |
| -- Name: electronic_computers_cache; Type: MATERIALIZED VIEW; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE MATERIALIZED VIEW electronic_computers_cache AS | |
| SELECT assetattributes.id, | |
| assetattributes.avg_tco_per_month, | |
| assetattributes.bluetooth, | |
| assetattributes.brand, | |
| assetattributes.camera, | |
| assetattributes.chipset, | |
| assetattributes.colour, | |
| assetattributes.comment, | |
| assetattributes.computer_type, | |
| assetattributes.contract_consumption, | |
| assetattributes.contract_currency, | |
| assetattributes.contract_duration_unit, | |
| assetattributes.contract_duration_value, | |
| assetattributes.contract_end, | |
| assetattributes.contract_order_supplier, | |
| assetattributes.contract_payment_period_order, | |
| assetattributes.contract_service_1, | |
| assetattributes.contract_service_2, | |
| assetattributes.contract_service_3, | |
| assetattributes.contract_service_4, | |
| assetattributes.contract_service_5, | |
| assetattributes.contract_start, | |
| assetattributes.contract_type, | |
| assetattributes.cpu, | |
| assetattributes.custom_id, | |
| assetattributes.date_broken, | |
| assetattributes.date_loss, | |
| assetattributes.date_pre_order, | |
| assetattributes.date_quotation, | |
| assetattributes.date_returned, | |
| assetattributes.display_type, | |
| assetattributes.entry_date, | |
| assetattributes.extras_accessories, | |
| assetattributes.extras_options, | |
| assetattributes.first_user_date, | |
| assetattributes.gpu, | |
| assetattributes.hdmi, | |
| assetattributes.inactivity_reason, | |
| assetattributes.internal_memory, | |
| assetattributes.keyboard, | |
| assetattributes.mac_address, | |
| assetattributes.model, | |
| assetattributes.nb_usb, | |
| assetattributes.next_maintenance_date, | |
| assetattributes.order_date, | |
| assetattributes.order_id, | |
| assetattributes.os, | |
| assetattributes.os_version, | |
| assetattributes.quotation_id, | |
| assetattributes.request_id, | |
| assetattributes.screen_resolution, | |
| assetattributes.screen_size, | |
| assetattributes.serial, | |
| assetattributes.service_1_fees, | |
| assetattributes.service_2_fees, | |
| assetattributes.service_3_fees, | |
| assetattributes.service_4_fees, | |
| assetattributes.service_5_fees, | |
| assetattributes.supplier, | |
| assetattributes.supplier_email, | |
| assetattributes.supplier_id, | |
| assetattributes.total_tco, | |
| assetattributes.touch_screen_type, | |
| assetattributes.uuid, | |
| assetattributes.vga, | |
| assetattributes.wifi | |
| FROM crosstab('SELECT | |
| asset_id, | |
| name::text, | |
| trim(value::text, ''"'') | |
| FROM | |
| assetattributes | |
| LEFT JOIN | |
| assets | |
| ON | |
| assets.id = asset_id | |
| WHERE ( | |
| assets.classname = ''electronic.computer'' AND | |
| name IN (''avg_tco_per_month'',''bluetooth'',''brand'',''camera'',''chipset'',''colour'',''comment'',''computer_type'',''contract_consumption'',''contract_currency'',''contract_duration_unit'',''contract_duration_value'',''contract_end'',''contract_order_supplier'',''contract_payment_period_order'',''contract_service_1'',''contract_service_2'',''contract_service_3'',''contract_service_4'',''contract_service_5'',''contract_start'',''contract_type'',''cpu'',''custom_id'',''date_broken'',''date_loss'',''date_pre_order'',''date_quotation'',''date_returned'',''display_type'',''entry_date'',''extras_accessories'',''extras_options'',''first_user_date'',''gpu'',''hdmi'',''inactivity_reason'',''internal_memory'',''keyboard'',''mac_address'',''model'',''nb_usb'',''next_maintenance_date'',''order_date'',''order_id'',''os'',''os_version'',''quotation_id'',''request_id'',''screen_resolution'',''screen_size'',''serial'',''service_1_fees'',''service_2_fees'',''service_3_fees'',''service_4_fees'',''service_5_fees'',''supplier'',''supplier_email'',''supplier_id'',''total_tco'',''touch_screen_type'',''uuid'',''vga'',''wifi'') | |
| ) | |
| ORDER BY 1,2'::text, 'SELECT name FROM attributetypes WHERE assetname=''electronic.computer'' ORDER BY 1'::text) assetattributes(id bigint, avg_tco_per_month integer, bluetooth boolean, brand character varying, camera boolean, chipset character varying, colour character varying, comment character varying, computer_type character varying, contract_consumption integer, contract_currency character varying, contract_duration_unit character varying, contract_duration_value integer, contract_end timestamp without time zone, contract_order_supplier character varying, contract_payment_period_order character varying, contract_service_1 character varying, contract_service_2 character varying, contract_service_3 character varying, contract_service_4 character varying, contract_service_5 character varying, contract_start timestamp without time zone, contract_type character varying, cpu character varying, custom_id character varying, date_broken timestamp without time zone, date_loss timestamp without time zone, date_pre_order timestamp without time zone, date_quotation timestamp without time zone, date_returned timestamp without time zone, display_type character varying, entry_date timestamp without time zone, extras_accessories character varying, extras_options character varying, first_user_date timestamp without time zone, gpu character varying, hdmi boolean, inactivity_reason character varying, internal_memory integer, keyboard character varying, mac_address character varying, model character varying, nb_usb integer, next_maintenance_date timestamp without time zone, order_date timestamp without time zone, order_id character varying, os character varying, os_version character varying, quotation_id character varying, request_id character varying, screen_resolution integer[], screen_size numeric(11,2), serial character varying, service_1_fees integer, service_2_fees integer, service_3_fees integer, service_4_fees integer, service_5_fees integer, supplier character varying, supplier_email character varying, supplier_id character varying, total_tco integer, touch_screen_type character varying, uuid character varying, vga boolean, wifi boolean) | |
| WITH NO DATA; | |
| ALTER TABLE electronic_computers_cache OWNER TO bulbthings; | |
| -- | |
| -- Name: electronic_phones; Type: VIEW; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE VIEW electronic_phones AS | |
| SELECT assetattributes.id, | |
| assetattributes.avg_data_consumption, | |
| assetattributes.avg_minutes_consumption, | |
| assetattributes.avg_tco_per_month, | |
| assetattributes.bluetooth, | |
| assetattributes.brand, | |
| assetattributes.camera_primary, | |
| assetattributes.camera_secondary, | |
| assetattributes.card_slot, | |
| assetattributes.card_slot_memory, | |
| assetattributes.chipset, | |
| assetattributes.colour, | |
| assetattributes.comment, | |
| assetattributes.contract_consumption, | |
| assetattributes.contract_currency, | |
| assetattributes.contract_duration_unit, | |
| assetattributes.contract_duration_value, | |
| assetattributes.contract_end, | |
| assetattributes.contract_order_supplier, | |
| assetattributes.contract_payment_period_order, | |
| assetattributes.contract_service_1, | |
| assetattributes.contract_service_2, | |
| assetattributes.contract_service_3, | |
| assetattributes.contract_service_4, | |
| assetattributes.contract_service_5, | |
| assetattributes.contract_start, | |
| assetattributes.contract_type, | |
| assetattributes.cpu, | |
| assetattributes.custom_id, | |
| assetattributes.date_broken, | |
| assetattributes.date_loss, | |
| assetattributes.date_pre_order, | |
| assetattributes.date_quotation, | |
| assetattributes.date_returned, | |
| assetattributes.display_type, | |
| assetattributes.entry_date, | |
| assetattributes.extras_accessories, | |
| assetattributes.extras_options, | |
| assetattributes.first_user_date, | |
| assetattributes.fm_radio, | |
| assetattributes.gps, | |
| assetattributes.gpu, | |
| assetattributes.imei_number, | |
| assetattributes.inactivity_reason, | |
| assetattributes.internal_memory, | |
| assetattributes.megabytes_contract_order, | |
| assetattributes.minutes_contract_order, | |
| assetattributes.model, | |
| assetattributes.multi_touch, | |
| assetattributes.next_maintenance_date, | |
| assetattributes.nfc, | |
| assetattributes.order_date, | |
| assetattributes.order_id, | |
| assetattributes.os, | |
| assetattributes.os_version, | |
| assetattributes.phone_number, | |
| assetattributes.puk_number, | |
| assetattributes.quotation_id, | |
| assetattributes.request_id, | |
| assetattributes.screen_resolution, | |
| assetattributes.screen_size, | |
| assetattributes.serial, | |
| assetattributes.service_1_fees, | |
| assetattributes.service_2_fees, | |
| assetattributes.service_3_fees, | |
| assetattributes.service_4_fees, | |
| assetattributes.service_5_fees, | |
| assetattributes.sim_number, | |
| assetattributes.sim_quantity, | |
| assetattributes.sim_size, | |
| assetattributes.supplier, | |
| assetattributes.supplier_email, | |
| assetattributes.supplier_id, | |
| assetattributes.total_tco, | |
| assetattributes.touch_screen_type, | |
| assetattributes.usb, | |
| assetattributes.uuid, | |
| assetattributes.wifi | |
| FROM crosstab('SELECT | |
| asset_id, | |
| name::text, | |
| trim(value::text, ''"'') | |
| FROM | |
| assetattributes | |
| LEFT JOIN | |
| assets | |
| ON | |
| assets.id = asset_id | |
| WHERE ( | |
| assets.classname = ''electronic.phone'' AND | |
| name IN (''avg_data_consumption'',''avg_minutes_consumption'',''avg_tco_per_month'',''bluetooth'',''brand'',''camera_primary'',''camera_secondary'',''card_slot'',''card_slot_memory'',''chipset'',''colour'',''comment'',''contract_consumption'',''contract_currency'',''contract_duration_unit'',''contract_duration_value'',''contract_end'',''contract_order_supplier'',''contract_payment_period_order'',''contract_service_1'',''contract_service_2'',''contract_service_3'',''contract_service_4'',''contract_service_5'',''contract_start'',''contract_type'',''cpu'',''custom_id'',''date_broken'',''date_loss'',''date_pre_order'',''date_quotation'',''date_returned'',''display_type'',''entry_date'',''extras_accessories'',''extras_options'',''first_user_date'',''fm_radio'',''gps'',''gpu'',''imei_number'',''inactivity_reason'',''internal_memory'',''megabytes_contract_order'',''minutes_contract_order'',''model'',''multi_touch'',''next_maintenance_date'',''nfc'',''order_date'',''order_id'',''os'',''os_version'',''phone_number'',''puk_number'',''quotation_id'',''request_id'',''screen_resolution'',''screen_size'',''serial'',''service_1_fees'',''service_2_fees'',''service_3_fees'',''service_4_fees'',''service_5_fees'',''sim_number'',''sim_quantity'',''sim_size'',''supplier'',''supplier_email'',''supplier_id'',''total_tco'',''touch_screen_type'',''usb'',''uuid'',''wifi'') | |
| ) | |
| ORDER BY 1,2'::text, 'SELECT name FROM attributetypes WHERE assetname=''electronic.phone'' ORDER BY 1'::text) assetattributes(id bigint, avg_data_consumption integer, avg_minutes_consumption integer, avg_tco_per_month integer, bluetooth boolean, brand character varying, camera_primary boolean, camera_secondary boolean, card_slot character varying, card_slot_memory integer, chipset character varying, colour character varying, comment character varying, contract_consumption integer, contract_currency character varying, contract_duration_unit character varying, contract_duration_value integer, contract_end timestamp without time zone, contract_order_supplier character varying, contract_payment_period_order character varying, contract_service_1 character varying, contract_service_2 character varying, contract_service_3 character varying, contract_service_4 character varying, contract_service_5 character varying, contract_start timestamp without time zone, contract_type character varying, cpu character varying, custom_id character varying, date_broken timestamp without time zone, date_loss timestamp without time zone, date_pre_order timestamp without time zone, date_quotation timestamp without time zone, date_returned timestamp without time zone, display_type character varying, entry_date timestamp without time zone, extras_accessories character varying, extras_options character varying, first_user_date timestamp without time zone, fm_radio boolean, gps boolean, gpu character varying, imei_number character varying, inactivity_reason character varying, internal_memory integer, megabytes_contract_order integer, minutes_contract_order integer, model character varying, multi_touch integer, next_maintenance_date timestamp without time zone, nfc boolean, order_date timestamp without time zone, order_id character varying, os character varying, os_version character varying, phone_number character varying, puk_number character varying, quotation_id character varying, request_id character varying, screen_resolution integer[], screen_size numeric(11,2), serial character varying, service_1_fees integer, service_2_fees integer, service_3_fees integer, service_4_fees integer, service_5_fees integer, sim_number character varying, sim_quantity integer, sim_size character varying, supplier character varying, supplier_email character varying, supplier_id character varying, total_tco integer, touch_screen_type character varying, usb boolean, uuid character varying, wifi boolean); | |
| ALTER TABLE electronic_phones OWNER TO bulbthings; | |
| -- | |
| -- Name: electronic_phones_cache; Type: MATERIALIZED VIEW; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE MATERIALIZED VIEW electronic_phones_cache AS | |
| SELECT assetattributes.id, | |
| assetattributes.avg_data_consumption, | |
| assetattributes.avg_minutes_consumption, | |
| assetattributes.avg_tco_per_month, | |
| assetattributes.bluetooth, | |
| assetattributes.brand, | |
| assetattributes.camera_primary, | |
| assetattributes.camera_secondary, | |
| assetattributes.card_slot, | |
| assetattributes.card_slot_memory, | |
| assetattributes.chipset, | |
| assetattributes.colour, | |
| assetattributes.comment, | |
| assetattributes.contract_consumption, | |
| assetattributes.contract_currency, | |
| assetattributes.contract_duration_unit, | |
| assetattributes.contract_duration_value, | |
| assetattributes.contract_end, | |
| assetattributes.contract_order_supplier, | |
| assetattributes.contract_payment_period_order, | |
| assetattributes.contract_service_1, | |
| assetattributes.contract_service_2, | |
| assetattributes.contract_service_3, | |
| assetattributes.contract_service_4, | |
| assetattributes.contract_service_5, | |
| assetattributes.contract_start, | |
| assetattributes.contract_type, | |
| assetattributes.cpu, | |
| assetattributes.custom_id, | |
| assetattributes.date_broken, | |
| assetattributes.date_loss, | |
| assetattributes.date_pre_order, | |
| assetattributes.date_quotation, | |
| assetattributes.date_returned, | |
| assetattributes.display_type, | |
| assetattributes.entry_date, | |
| assetattributes.extras_accessories, | |
| assetattributes.extras_options, | |
| assetattributes.first_user_date, | |
| assetattributes.fm_radio, | |
| assetattributes.gps, | |
| assetattributes.gpu, | |
| assetattributes.imei_number, | |
| assetattributes.inactivity_reason, | |
| assetattributes.internal_memory, | |
| assetattributes.megabytes_contract_order, | |
| assetattributes.minutes_contract_order, | |
| assetattributes.model, | |
| assetattributes.multi_touch, | |
| assetattributes.next_maintenance_date, | |
| assetattributes.nfc, | |
| assetattributes.order_date, | |
| assetattributes.order_id, | |
| assetattributes.os, | |
| assetattributes.os_version, | |
| assetattributes.phone_number, | |
| assetattributes.puk_number, | |
| assetattributes.quotation_id, | |
| assetattributes.request_id, | |
| assetattributes.screen_resolution, | |
| assetattributes.screen_size, | |
| assetattributes.serial, | |
| assetattributes.service_1_fees, | |
| assetattributes.service_2_fees, | |
| assetattributes.service_3_fees, | |
| assetattributes.service_4_fees, | |
| assetattributes.service_5_fees, | |
| assetattributes.sim_number, | |
| assetattributes.sim_quantity, | |
| assetattributes.sim_size, | |
| assetattributes.supplier, | |
| assetattributes.supplier_email, | |
| assetattributes.supplier_id, | |
| assetattributes.total_tco, | |
| assetattributes.touch_screen_type, | |
| assetattributes.usb, | |
| assetattributes.uuid, | |
| assetattributes.wifi | |
| FROM crosstab('SELECT | |
| asset_id, | |
| name::text, | |
| trim(value::text, ''"'') | |
| FROM | |
| assetattributes | |
| LEFT JOIN | |
| assets | |
| ON | |
| assets.id = asset_id | |
| WHERE ( | |
| assets.classname = ''electronic.phone'' AND | |
| name IN (''avg_data_consumption'',''avg_minutes_consumption'',''avg_tco_per_month'',''bluetooth'',''brand'',''camera_primary'',''camera_secondary'',''card_slot'',''card_slot_memory'',''chipset'',''colour'',''comment'',''contract_consumption'',''contract_currency'',''contract_duration_unit'',''contract_duration_value'',''contract_end'',''contract_order_supplier'',''contract_payment_period_order'',''contract_service_1'',''contract_service_2'',''contract_service_3'',''contract_service_4'',''contract_service_5'',''contract_start'',''contract_type'',''cpu'',''custom_id'',''date_broken'',''date_loss'',''date_pre_order'',''date_quotation'',''date_returned'',''display_type'',''entry_date'',''extras_accessories'',''extras_options'',''first_user_date'',''fm_radio'',''gps'',''gpu'',''imei_number'',''inactivity_reason'',''internal_memory'',''megabytes_contract_order'',''minutes_contract_order'',''model'',''multi_touch'',''next_maintenance_date'',''nfc'',''order_date'',''order_id'',''os'',''os_version'',''phone_number'',''puk_number'',''quotation_id'',''request_id'',''screen_resolution'',''screen_size'',''serial'',''service_1_fees'',''service_2_fees'',''service_3_fees'',''service_4_fees'',''service_5_fees'',''sim_number'',''sim_quantity'',''sim_size'',''supplier'',''supplier_email'',''supplier_id'',''total_tco'',''touch_screen_type'',''usb'',''uuid'',''wifi'') | |
| ) | |
| ORDER BY 1,2'::text, 'SELECT name FROM attributetypes WHERE assetname=''electronic.phone'' ORDER BY 1'::text) assetattributes(id bigint, avg_data_consumption integer, avg_minutes_consumption integer, avg_tco_per_month integer, bluetooth boolean, brand character varying, camera_primary boolean, camera_secondary boolean, card_slot character varying, card_slot_memory integer, chipset character varying, colour character varying, comment character varying, contract_consumption integer, contract_currency character varying, contract_duration_unit character varying, contract_duration_value integer, contract_end timestamp without time zone, contract_order_supplier character varying, contract_payment_period_order character varying, contract_service_1 character varying, contract_service_2 character varying, contract_service_3 character varying, contract_service_4 character varying, contract_service_5 character varying, contract_start timestamp without time zone, contract_type character varying, cpu character varying, custom_id character varying, date_broken timestamp without time zone, date_loss timestamp without time zone, date_pre_order timestamp without time zone, date_quotation timestamp without time zone, date_returned timestamp without time zone, display_type character varying, entry_date timestamp without time zone, extras_accessories character varying, extras_options character varying, first_user_date timestamp without time zone, fm_radio boolean, gps boolean, gpu character varying, imei_number character varying, inactivity_reason character varying, internal_memory integer, megabytes_contract_order integer, minutes_contract_order integer, model character varying, multi_touch integer, next_maintenance_date timestamp without time zone, nfc boolean, order_date timestamp without time zone, order_id character varying, os character varying, os_version character varying, phone_number character varying, puk_number character varying, quotation_id character varying, request_id character varying, screen_resolution integer[], screen_size numeric(11,2), serial character varying, service_1_fees integer, service_2_fees integer, service_3_fees integer, service_4_fees integer, service_5_fees integer, sim_number character varying, sim_quantity integer, sim_size character varying, supplier character varying, supplier_email character varying, supplier_id character varying, total_tco integer, touch_screen_type character varying, usb boolean, uuid character varying, wifi boolean) | |
| WITH NO DATA; | |
| ALTER TABLE electronic_phones_cache OWNER TO bulbthings; | |
| -- | |
| -- Name: electronic_printers; Type: VIEW; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE VIEW electronic_printers AS | |
| SELECT assetattributes.id, | |
| assetattributes.avg_copy_consumption, | |
| assetattributes.avg_tco_per_month, | |
| assetattributes.brand, | |
| assetattributes.card_slot, | |
| assetattributes.comment, | |
| assetattributes.contract_consumption, | |
| assetattributes.contract_currency, | |
| assetattributes.contract_duration_unit, | |
| assetattributes.contract_duration_value, | |
| assetattributes.contract_end, | |
| assetattributes.contract_order_supplier, | |
| assetattributes.contract_payment_period_order, | |
| assetattributes.contract_service_1, | |
| assetattributes.contract_service_2, | |
| assetattributes.contract_service_3, | |
| assetattributes.contract_service_4, | |
| assetattributes.contract_service_5, | |
| assetattributes.contract_start, | |
| assetattributes.contract_type, | |
| assetattributes.copies_contract_order, | |
| assetattributes.custom_id, | |
| assetattributes.date_broken, | |
| assetattributes.date_loss, | |
| assetattributes.date_pre_order, | |
| assetattributes.date_quotation, | |
| assetattributes.date_returned, | |
| assetattributes.entry_date, | |
| assetattributes.first_user_date, | |
| assetattributes.inactivity_reason, | |
| assetattributes.max_paper_format, | |
| assetattributes.max_resolution, | |
| assetattributes.model, | |
| assetattributes.next_maintenance_date, | |
| assetattributes.order_date, | |
| assetattributes.order_id, | |
| assetattributes.paper_trays, | |
| assetattributes.printing_speed, | |
| assetattributes.quotation_id, | |
| assetattributes.request_id, | |
| assetattributes.serial, | |
| assetattributes.service_1_fees, | |
| assetattributes.service_2_fees, | |
| assetattributes.service_3_fees, | |
| assetattributes.service_4_fees, | |
| assetattributes.service_5_fees, | |
| assetattributes.supplier, | |
| assetattributes.supplier_email, | |
| assetattributes.supplier_id, | |
| assetattributes.total_tco, | |
| assetattributes.type, | |
| assetattributes.usage, | |
| assetattributes.usb, | |
| assetattributes.uuid, | |
| assetattributes.wifi | |
| FROM crosstab('SELECT | |
| asset_id, | |
| name::text, | |
| trim(value::text, ''"'') | |
| FROM | |
| assetattributes | |
| LEFT JOIN | |
| assets | |
| ON | |
| assets.id = asset_id | |
| WHERE ( | |
| assets.classname = ''electronic.printer'' AND | |
| name IN (''avg_copy_consumption'',''avg_tco_per_month'',''brand'',''card_slot'',''comment'',''contract_consumption'',''contract_currency'',''contract_duration_unit'',''contract_duration_value'',''contract_end'',''contract_order_supplier'',''contract_payment_period_order'',''contract_service_1'',''contract_service_2'',''contract_service_3'',''contract_service_4'',''contract_service_5'',''contract_start'',''contract_type'',''copies_contract_order'',''custom_id'',''date_broken'',''date_loss'',''date_pre_order'',''date_quotation'',''date_returned'',''entry_date'',''first_user_date'',''inactivity_reason'',''max_paper_format'',''max_resolution'',''model'',''next_maintenance_date'',''order_date'',''order_id'',''paper_trays'',''printing_speed'',''quotation_id'',''request_id'',''serial'',''service_1_fees'',''service_2_fees'',''service_3_fees'',''service_4_fees'',''service_5_fees'',''supplier'',''supplier_email'',''supplier_id'',''total_tco'',''type'',''usage'',''usb'',''uuid'',''wifi'') | |
| ) | |
| ORDER BY 1,2'::text, 'SELECT name FROM attributetypes WHERE assetname=''electronic.printer'' ORDER BY 1'::text) assetattributes(id bigint, avg_copy_consumption integer, avg_tco_per_month integer, brand character varying, card_slot boolean, comment character varying, contract_consumption integer, contract_currency character varying, contract_duration_unit character varying, contract_duration_value integer, contract_end timestamp without time zone, contract_order_supplier character varying, contract_payment_period_order character varying, contract_service_1 character varying, contract_service_2 character varying, contract_service_3 character varying, contract_service_4 character varying, contract_service_5 character varying, contract_start timestamp without time zone, contract_type character varying, copies_contract_order integer, custom_id character varying, date_broken timestamp without time zone, date_loss timestamp without time zone, date_pre_order timestamp without time zone, date_quotation timestamp without time zone, date_returned timestamp without time zone, entry_date timestamp without time zone, first_user_date timestamp without time zone, inactivity_reason character varying, max_paper_format integer[], max_resolution integer[], model character varying, next_maintenance_date timestamp without time zone, order_date timestamp without time zone, order_id character varying, paper_trays integer, printing_speed integer, quotation_id character varying, request_id character varying, serial character varying, service_1_fees integer, service_2_fees integer, service_3_fees integer, service_4_fees integer, service_5_fees integer, supplier character varying, supplier_email character varying, supplier_id character varying, total_tco integer, type character varying, usage character varying, usb boolean, uuid character varying, wifi boolean); | |
| ALTER TABLE electronic_printers OWNER TO bulbthings; | |
| -- | |
| -- Name: electronic_printers_cache; Type: MATERIALIZED VIEW; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE MATERIALIZED VIEW electronic_printers_cache AS | |
| SELECT assetattributes.id, | |
| assetattributes.avg_copy_consumption, | |
| assetattributes.avg_tco_per_month, | |
| assetattributes.brand, | |
| assetattributes.card_slot, | |
| assetattributes.comment, | |
| assetattributes.contract_consumption, | |
| assetattributes.contract_currency, | |
| assetattributes.contract_duration_unit, | |
| assetattributes.contract_duration_value, | |
| assetattributes.contract_end, | |
| assetattributes.contract_order_supplier, | |
| assetattributes.contract_payment_period_order, | |
| assetattributes.contract_service_1, | |
| assetattributes.contract_service_2, | |
| assetattributes.contract_service_3, | |
| assetattributes.contract_service_4, | |
| assetattributes.contract_service_5, | |
| assetattributes.contract_start, | |
| assetattributes.contract_type, | |
| assetattributes.copies_contract_order, | |
| assetattributes.custom_id, | |
| assetattributes.date_broken, | |
| assetattributes.date_loss, | |
| assetattributes.date_pre_order, | |
| assetattributes.date_quotation, | |
| assetattributes.date_returned, | |
| assetattributes.entry_date, | |
| assetattributes.first_user_date, | |
| assetattributes.inactivity_reason, | |
| assetattributes.max_paper_format, | |
| assetattributes.max_resolution, | |
| assetattributes.model, | |
| assetattributes.next_maintenance_date, | |
| assetattributes.order_date, | |
| assetattributes.order_id, | |
| assetattributes.paper_trays, | |
| assetattributes.printing_speed, | |
| assetattributes.quotation_id, | |
| assetattributes.request_id, | |
| assetattributes.serial, | |
| assetattributes.service_1_fees, | |
| assetattributes.service_2_fees, | |
| assetattributes.service_3_fees, | |
| assetattributes.service_4_fees, | |
| assetattributes.service_5_fees, | |
| assetattributes.supplier, | |
| assetattributes.supplier_email, | |
| assetattributes.supplier_id, | |
| assetattributes.total_tco, | |
| assetattributes.type, | |
| assetattributes.usage, | |
| assetattributes.usb, | |
| assetattributes.uuid, | |
| assetattributes.wifi | |
| FROM crosstab('SELECT | |
| asset_id, | |
| name::text, | |
| trim(value::text, ''"'') | |
| FROM | |
| assetattributes | |
| LEFT JOIN | |
| assets | |
| ON | |
| assets.id = asset_id | |
| WHERE ( | |
| assets.classname = ''electronic.printer'' AND | |
| name IN (''avg_copy_consumption'',''avg_tco_per_month'',''brand'',''card_slot'',''comment'',''contract_consumption'',''contract_currency'',''contract_duration_unit'',''contract_duration_value'',''contract_end'',''contract_order_supplier'',''contract_payment_period_order'',''contract_service_1'',''contract_service_2'',''contract_service_3'',''contract_service_4'',''contract_service_5'',''contract_start'',''contract_type'',''copies_contract_order'',''custom_id'',''date_broken'',''date_loss'',''date_pre_order'',''date_quotation'',''date_returned'',''entry_date'',''first_user_date'',''inactivity_reason'',''max_paper_format'',''max_resolution'',''model'',''next_maintenance_date'',''order_date'',''order_id'',''paper_trays'',''printing_speed'',''quotation_id'',''request_id'',''serial'',''service_1_fees'',''service_2_fees'',''service_3_fees'',''service_4_fees'',''service_5_fees'',''supplier'',''supplier_email'',''supplier_id'',''total_tco'',''type'',''usage'',''usb'',''uuid'',''wifi'') | |
| ) | |
| ORDER BY 1,2'::text, 'SELECT name FROM attributetypes WHERE assetname=''electronic.printer'' ORDER BY 1'::text) assetattributes(id bigint, avg_copy_consumption integer, avg_tco_per_month integer, brand character varying, card_slot boolean, comment character varying, contract_consumption integer, contract_currency character varying, contract_duration_unit character varying, contract_duration_value integer, contract_end timestamp without time zone, contract_order_supplier character varying, contract_payment_period_order character varying, contract_service_1 character varying, contract_service_2 character varying, contract_service_3 character varying, contract_service_4 character varying, contract_service_5 character varying, contract_start timestamp without time zone, contract_type character varying, copies_contract_order integer, custom_id character varying, date_broken timestamp without time zone, date_loss timestamp without time zone, date_pre_order timestamp without time zone, date_quotation timestamp without time zone, date_returned timestamp without time zone, entry_date timestamp without time zone, first_user_date timestamp without time zone, inactivity_reason character varying, max_paper_format integer[], max_resolution integer[], model character varying, next_maintenance_date timestamp without time zone, order_date timestamp without time zone, order_id character varying, paper_trays integer, printing_speed integer, quotation_id character varying, request_id character varying, serial character varying, service_1_fees integer, service_2_fees integer, service_3_fees integer, service_4_fees integer, service_5_fees integer, supplier character varying, supplier_email character varying, supplier_id character varying, total_tco integer, type character varying, usage character varying, usb boolean, uuid character varying, wifi boolean) | |
| WITH NO DATA; | |
| ALTER TABLE electronic_printers_cache OWNER TO bulbthings; | |
| -- | |
| -- Name: emails; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE emails ( | |
| id bigint NOT NULL, | |
| entity_id bigint NOT NULL, | |
| email character varying(255) NOT NULL, | |
| search tsvector | |
| ); | |
| ALTER TABLE emails OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE emails; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE emails IS 'Emails associated to contacts or thirdparties'; | |
| -- | |
| -- Name: COLUMN emails.id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN emails.id IS 'Autogenerated Primary key to identify'; | |
| -- | |
| -- Name: COLUMN emails.entity_id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN emails.entity_id IS 'ID of the thirdparty or contact associated'; | |
| -- | |
| -- Name: COLUMN emails.email; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN emails.email IS 'Email of the thirdparty referenced.'; | |
| -- | |
| -- Name: emails_id_seq; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE emails_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE emails_id_seq OWNER TO bulbthings; | |
| -- | |
| -- Name: emails_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE emails_id_seq OWNED BY emails.id; | |
| -- | |
| -- Name: events; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE events ( | |
| id bigint NOT NULL, | |
| eventstype bigint, | |
| type character varying NOT NULL, | |
| title text NOT NULL, | |
| description text NOT NULL, | |
| created timestamp without time zone DEFAULT now(), | |
| occurs timestamp with time zone NOT NULL, | |
| notify_at timestamp with time zone, | |
| notified boolean, | |
| attributes jsonb | |
| ); | |
| ALTER TABLE events OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE events; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE events IS 'Events table. Any type of event can be recorded'; | |
| -- | |
| -- Name: COLUMN events.type; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN events.type IS 'Event type. Free text, but an associated class may exists with specific code'; | |
| -- | |
| -- Name: COLUMN events.title; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN events.title IS 'Event title as visible in the front-end'; | |
| -- | |
| -- Name: COLUMN events.notify_at; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN events.notify_at IS 'The date we should send the next notification. This can be updated by plugins to send more than one notifications'; | |
| -- | |
| -- Name: eventid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE eventid | |
| START WITH 13 | |
| INCREMENT BY 100 | |
| MINVALUE 13 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE eventid OWNER TO bulbthings; | |
| -- | |
| -- Name: eventid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE eventid OWNED BY events.id; | |
| -- | |
| -- Name: events_mapping; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE events_mapping ( | |
| event_id bigint, | |
| entity_id bigint NOT NULL | |
| ); | |
| ALTER TABLE events_mapping OWNER TO bulbthings; | |
| -- | |
| -- Name: eventstypeid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE eventstypeid | |
| START WITH 20 | |
| INCREMENT BY 100 | |
| MINVALUE 20 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE eventstypeid OWNER TO bulbthings; | |
| -- | |
| -- Name: eventstype; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE eventstype ( | |
| id bigint DEFAULT nextval('eventstypeid'::regclass) NOT NULL, | |
| asset_type bigint, | |
| name character varying(50) NOT NULL, | |
| system boolean DEFAULT false NOT NULL, | |
| description text, | |
| notify_at interval | |
| ); | |
| ALTER TABLE eventstype OWNER TO bulbthings; | |
| -- | |
| -- Name: exchange_rates; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE exchange_rates ( | |
| period tstzrange, | |
| "from" character(3), | |
| "to" character(3), | |
| rate double precision | |
| ); | |
| ALTER TABLE exchange_rates OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE exchange_rates; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE exchange_rates IS 'Currency exchange rates'; | |
| -- | |
| -- Name: COLUMN exchange_rates.period; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN exchange_rates.period IS 'The period it should apply'; | |
| -- | |
| -- Name: COLUMN exchange_rates."from"; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN exchange_rates."from" IS 'The initial currency to convert from'; | |
| -- | |
| -- Name: COLUMN exchange_rates."to"; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN exchange_rates."to" IS 'The final currency to convert to'; | |
| -- | |
| -- Name: COLUMN exchange_rates.rate; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN exchange_rates.rate IS 'The exchange rate, as a factor'; | |
| -- | |
| -- Name: fines; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE fines ( | |
| id bigint NOT NULL, | |
| asset_id bigint NOT NULL, | |
| date_received timestamp without time zone NOT NULL, | |
| date_processed timestamp without time zone, | |
| date_paid timestamp without time zone, | |
| date_fine timestamp without time zone NOT NULL, | |
| custom_id text, | |
| authority text NOT NULL, | |
| authority_ref text NOT NULL, | |
| additional_ref text, | |
| fine_type text NOT NULL, | |
| status text NOT NULL, | |
| fine_notes text, | |
| location text, | |
| notes text, | |
| attributes jsonb, | |
| created timestamp without time zone DEFAULT now(), | |
| updated timestamp without time zone | |
| ); | |
| ALTER TABLE fines OWNER TO bulbthings; | |
| -- | |
| -- Name: fineid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE fineid | |
| START WITH 37 | |
| INCREMENT BY 100 | |
| MINVALUE 37 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE fineid OWNER TO bulbthings; | |
| -- | |
| -- Name: fineid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE fineid OWNED BY fines.id; | |
| -- | |
| -- Name: generic_generics; Type: VIEW; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE VIEW generic_generics AS | |
| SELECT assetattributes.id, | |
| assetattributes.avg_tco_per_month, | |
| assetattributes.brand, | |
| assetattributes.category, | |
| assetattributes.colour, | |
| assetattributes.comment, | |
| assetattributes.contract_consumption, | |
| assetattributes.contract_currency, | |
| assetattributes.contract_duration_unit, | |
| assetattributes.contract_duration_value, | |
| assetattributes.contract_end, | |
| assetattributes.contract_order_supplier, | |
| assetattributes.contract_payment_period_order, | |
| assetattributes.contract_service_1, | |
| assetattributes.contract_service_2, | |
| assetattributes.contract_service_3, | |
| assetattributes.contract_service_4, | |
| assetattributes.contract_service_5, | |
| assetattributes.contract_start, | |
| assetattributes.contract_type, | |
| assetattributes.date_broken, | |
| assetattributes.date_loss, | |
| assetattributes.date_pre_order, | |
| assetattributes.date_quotation, | |
| assetattributes.date_returned, | |
| assetattributes.energy, | |
| assetattributes.entry_date, | |
| assetattributes.first_user_date, | |
| assetattributes.inactivity_reason, | |
| assetattributes.model, | |
| assetattributes.order_date, | |
| assetattributes.order_id, | |
| assetattributes.quotation_id, | |
| assetattributes.reference, | |
| assetattributes.request_id, | |
| assetattributes.service_1_fees, | |
| assetattributes.service_2_fees, | |
| assetattributes.service_3_fees, | |
| assetattributes.service_4_fees, | |
| assetattributes.service_5_fees, | |
| assetattributes.supplier, | |
| assetattributes.supplier_email, | |
| assetattributes.supplier_id, | |
| assetattributes.total_tco, | |
| assetattributes.uuid | |
| FROM crosstab('SELECT | |
| asset_id, | |
| name::text, | |
| trim(value::text, ''"'') | |
| FROM | |
| assetattributes | |
| LEFT JOIN | |
| assets | |
| ON | |
| assets.id = asset_id | |
| WHERE ( | |
| assets.classname = ''generic.generic'' AND | |
| name IN (''avg_tco_per_month'',''brand'',''category'',''colour'',''comment'',''contract_consumption'',''contract_currency'',''contract_duration_unit'',''contract_duration_value'',''contract_end'',''contract_order_supplier'',''contract_payment_period_order'',''contract_service_1'',''contract_service_2'',''contract_service_3'',''contract_service_4'',''contract_service_5'',''contract_start'',''contract_type'',''date_broken'',''date_loss'',''date_pre_order'',''date_quotation'',''date_returned'',''energy'',''entry_date'',''first_user_date'',''inactivity_reason'',''model'',''order_date'',''order_id'',''quotation_id'',''reference'',''request_id'',''service_1_fees'',''service_2_fees'',''service_3_fees'',''service_4_fees'',''service_5_fees'',''supplier'',''supplier_email'',''supplier_id'',''total_tco'',''uuid'') | |
| ) | |
| ORDER BY 1,2'::text, 'SELECT name FROM attributetypes WHERE assetname=''generic.generic'' ORDER BY 1'::text) assetattributes(id bigint, avg_tco_per_month integer, brand character varying, category character varying, colour character varying, comment character varying, contract_consumption integer, contract_currency character varying, contract_duration_unit character varying, contract_duration_value integer, contract_end timestamp without time zone, contract_order_supplier character varying, contract_payment_period_order character varying, contract_service_1 character varying, contract_service_2 character varying, contract_service_3 character varying, contract_service_4 character varying, contract_service_5 character varying, contract_start timestamp without time zone, contract_type character varying, date_broken timestamp without time zone, date_loss timestamp without time zone, date_pre_order timestamp without time zone, date_quotation timestamp without time zone, date_returned timestamp without time zone, energy character varying, entry_date timestamp without time zone, first_user_date timestamp without time zone, inactivity_reason character varying, model character varying, order_date timestamp without time zone, order_id character varying, quotation_id character varying, reference character varying, request_id character varying, service_1_fees integer, service_2_fees integer, service_3_fees integer, service_4_fees integer, service_5_fees integer, supplier character varying, supplier_email character varying, supplier_id character varying, total_tco integer, uuid character varying); | |
| ALTER TABLE generic_generics OWNER TO bulbthings; | |
| -- | |
| -- Name: generic_generics_cache; Type: MATERIALIZED VIEW; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE MATERIALIZED VIEW generic_generics_cache AS | |
| SELECT assetattributes.id, | |
| assetattributes.avg_tco_per_month, | |
| assetattributes.brand, | |
| assetattributes.category, | |
| assetattributes.colour, | |
| assetattributes.comment, | |
| assetattributes.contract_consumption, | |
| assetattributes.contract_currency, | |
| assetattributes.contract_duration_unit, | |
| assetattributes.contract_duration_value, | |
| assetattributes.contract_end, | |
| assetattributes.contract_order_supplier, | |
| assetattributes.contract_payment_period_order, | |
| assetattributes.contract_service_1, | |
| assetattributes.contract_service_2, | |
| assetattributes.contract_service_3, | |
| assetattributes.contract_service_4, | |
| assetattributes.contract_service_5, | |
| assetattributes.contract_start, | |
| assetattributes.contract_type, | |
| assetattributes.date_broken, | |
| assetattributes.date_loss, | |
| assetattributes.date_pre_order, | |
| assetattributes.date_quotation, | |
| assetattributes.date_returned, | |
| assetattributes.energy, | |
| assetattributes.entry_date, | |
| assetattributes.first_user_date, | |
| assetattributes.inactivity_reason, | |
| assetattributes.model, | |
| assetattributes.order_date, | |
| assetattributes.order_id, | |
| assetattributes.quotation_id, | |
| assetattributes.reference, | |
| assetattributes.request_id, | |
| assetattributes.service_1_fees, | |
| assetattributes.service_2_fees, | |
| assetattributes.service_3_fees, | |
| assetattributes.service_4_fees, | |
| assetattributes.service_5_fees, | |
| assetattributes.supplier, | |
| assetattributes.supplier_email, | |
| assetattributes.supplier_id, | |
| assetattributes.total_tco, | |
| assetattributes.uuid | |
| FROM crosstab('SELECT | |
| asset_id, | |
| name::text, | |
| trim(value::text, ''"'') | |
| FROM | |
| assetattributes | |
| LEFT JOIN | |
| assets | |
| ON | |
| assets.id = asset_id | |
| WHERE ( | |
| assets.classname = ''generic.generic'' AND | |
| name IN (''avg_tco_per_month'',''brand'',''category'',''colour'',''comment'',''contract_consumption'',''contract_currency'',''contract_duration_unit'',''contract_duration_value'',''contract_end'',''contract_order_supplier'',''contract_payment_period_order'',''contract_service_1'',''contract_service_2'',''contract_service_3'',''contract_service_4'',''contract_service_5'',''contract_start'',''contract_type'',''date_broken'',''date_loss'',''date_pre_order'',''date_quotation'',''date_returned'',''energy'',''entry_date'',''first_user_date'',''inactivity_reason'',''model'',''order_date'',''order_id'',''quotation_id'',''reference'',''request_id'',''service_1_fees'',''service_2_fees'',''service_3_fees'',''service_4_fees'',''service_5_fees'',''supplier'',''supplier_email'',''supplier_id'',''total_tco'',''uuid'') | |
| ) | |
| ORDER BY 1,2'::text, 'SELECT name FROM attributetypes WHERE assetname=''generic.generic'' ORDER BY 1'::text) assetattributes(id bigint, avg_tco_per_month integer, brand character varying, category character varying, colour character varying, comment character varying, contract_consumption integer, contract_currency character varying, contract_duration_unit character varying, contract_duration_value integer, contract_end timestamp without time zone, contract_order_supplier character varying, contract_payment_period_order character varying, contract_service_1 character varying, contract_service_2 character varying, contract_service_3 character varying, contract_service_4 character varying, contract_service_5 character varying, contract_start timestamp without time zone, contract_type character varying, date_broken timestamp without time zone, date_loss timestamp without time zone, date_pre_order timestamp without time zone, date_quotation timestamp without time zone, date_returned timestamp without time zone, energy character varying, entry_date timestamp without time zone, first_user_date timestamp without time zone, inactivity_reason character varying, model character varying, order_date timestamp without time zone, order_id character varying, quotation_id character varying, reference character varying, request_id character varying, service_1_fees integer, service_2_fees integer, service_3_fees integer, service_4_fees integer, service_5_fees integer, supplier character varying, supplier_email character varying, supplier_id character varying, total_tco integer, uuid character varying) | |
| WITH NO DATA; | |
| ALTER TABLE generic_generics_cache OWNER TO bulbthings; | |
| -- | |
| -- Name: import_queue; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE import_queue ( | |
| store_id integer, | |
| digest character varying(64) NOT NULL, | |
| created timestamp without time zone DEFAULT now(), | |
| imported timestamp without time zone, | |
| step integer DEFAULT 0, | |
| cells jsonb, | |
| report jsonb | |
| ); | |
| ALTER TABLE import_queue OWNER TO bulbthings; | |
| -- | |
| -- Name: jobs; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE jobs ( | |
| id bigint NOT NULL, | |
| user_id bigint, | |
| running boolean DEFAULT false, | |
| service character varying(32), | |
| callback character varying(32), | |
| reference character varying(64), | |
| instance integer NOT NULL, | |
| type character varying(32) NOT NULL, | |
| state job_state DEFAULT 'created'::job_state, | |
| priority integer DEFAULT 0, | |
| progress integer DEFAULT 0, | |
| started timestamp without time zone, | |
| finished timestamp without time zone, | |
| params jsonb, | |
| maxreport integer DEFAULT 20, | |
| report jsonb | |
| ); | |
| ALTER TABLE jobs OWNER TO bulbthings; | |
| -- | |
| -- Name: job_id; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE job_id | |
| START WITH 21 | |
| INCREMENT BY 100 | |
| MINVALUE 21 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE job_id OWNER TO bulbthings; | |
| -- | |
| -- Name: job_id; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE job_id OWNED BY jobs.id; | |
| -- | |
| -- Name: logs; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE logs ( | |
| level logseveritylevel NOT NULL, | |
| user_id bigint, | |
| ip character varying, | |
| message text NOT NULL, | |
| details jsonb, | |
| module character varying NOT NULL, | |
| created timestamp without time zone DEFAULT now() | |
| ); | |
| ALTER TABLE logs OWNER TO bulbthings; | |
| -- | |
| -- Name: maintenances; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE maintenances ( | |
| id bigint NOT NULL, | |
| comment text, | |
| cost_id bigint, | |
| asset_id bigint, | |
| mtnc_service_id bigint, | |
| next_date timestamp with time zone, | |
| meter integer, | |
| next_meter_value integer, | |
| prospective_cost numeric(20,6), | |
| created timestamp with time zone DEFAULT now(), | |
| updated timestamp with time zone DEFAULT now(), | |
| state maintenancestate DEFAULT 'next'::maintenancestate, | |
| type maintenancetype DEFAULT 'normal'::maintenancetype | |
| ); | |
| ALTER TABLE maintenances OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE maintenances; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE maintenances IS 'Maintenance table'; | |
| -- | |
| -- Name: COLUMN maintenances.id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN maintenances.id IS 'Private key, serial number from MaintenanceID sequence.'; | |
| -- | |
| -- Name: COLUMN maintenances.comment; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN maintenances.comment IS 'A short comment to describe what the maintenance is for. Can be null'; | |
| -- | |
| -- Name: COLUMN maintenances.cost_id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN maintenances.cost_id IS 'Related to a cost'; | |
| -- | |
| -- Name: COLUMN maintenances.mtnc_service_id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN maintenances.mtnc_service_id IS 'Reference to a maintenance service'; | |
| -- | |
| -- Name: COLUMN maintenances.next_date; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN maintenances.next_date IS 'The next date for future future maintenance'; | |
| -- | |
| -- Name: COLUMN maintenances.next_meter_value; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN maintenances.next_meter_value IS 'The next meter if exists for maintenance'; | |
| -- | |
| -- Name: COLUMN maintenances.prospective_cost; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN maintenances.prospective_cost IS 'A maintenance is related to a prospective cost'; | |
| -- | |
| -- Name: COLUMN maintenances.state; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN maintenances.state IS 'State of the maintenance'; | |
| -- | |
| -- Name: maintenanceid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE maintenanceid | |
| START WITH 29 | |
| INCREMENT BY 100 | |
| MINVALUE 29 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE maintenanceid OWNER TO bulbthings; | |
| -- | |
| -- Name: maintenanceid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE maintenanceid OWNED BY maintenances.id; | |
| -- | |
| -- Name: maintenanceservices; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE maintenanceservices ( | |
| id bigint NOT NULL, | |
| type maintenancetype DEFAULT 'normal'::maintenancetype, | |
| assettype character varying NOT NULL, | |
| label character varying, | |
| meter_frequency bigint, | |
| meter_threshold bigint, | |
| meter_unit character varying, | |
| time_frequency interval, | |
| time_threshold timestamp with time zone DEFAULT now(), | |
| created timestamp with time zone DEFAULT now(), | |
| updated timestamp with time zone DEFAULT now() | |
| ); | |
| ALTER TABLE maintenanceservices OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE maintenanceservices; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE maintenanceservices IS 'Maintenance table'; | |
| -- | |
| -- Name: COLUMN maintenanceservices.id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN maintenanceservices.id IS 'Private key, serial number from MtncServicesID sequence.'; | |
| -- | |
| -- Name: COLUMN maintenanceservices.label; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN maintenanceservices.label IS 'A simple label for the service'; | |
| -- | |
| -- Name: COLUMN maintenanceservices.meter_frequency; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN maintenanceservices.meter_frequency IS 'Maintenance periodicity'; | |
| -- | |
| -- Name: COLUMN maintenanceservices.meter_threshold; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN maintenanceservices.meter_threshold IS 'A unique ref point for the maintenance'; | |
| -- | |
| -- Name: COLUMN maintenanceservices.meter_unit; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN maintenanceservices.meter_unit IS 'Meter unit (Can be km/miles/liters/count etc ...)'; | |
| -- | |
| -- Name: COLUMN maintenanceservices.time_frequency; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN maintenanceservices.time_frequency IS 'Maintenance periodicity in time'; | |
| -- | |
| -- Name: COLUMN maintenanceservices.time_threshold; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN maintenanceservices.time_threshold IS 'A unique ref point for the maintenance in time'; | |
| -- | |
| -- Name: message_user; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE message_user ( | |
| message_id bigint NOT NULL, | |
| user_id bigint NOT NULL, | |
| read boolean | |
| ); | |
| ALTER TABLE message_user OWNER TO bulbthings; | |
| -- | |
| -- Name: messages; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE messages ( | |
| id bigint NOT NULL, | |
| subject character varying, | |
| body text NOT NULL, | |
| created timestamp without time zone DEFAULT now() | |
| ); | |
| ALTER TABLE messages OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE messages; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE messages IS 'Message sent by the application as notification and stored in Database.'; | |
| -- | |
| -- Name: COLUMN messages.subject; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN messages.subject IS 'Title in the header of user list message/notification'; | |
| -- | |
| -- Name: COLUMN messages.body; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN messages.body IS 'Body of the message'; | |
| -- | |
| -- Name: messageid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE messageid | |
| START WITH 17 | |
| INCREMENT BY 100 | |
| MINVALUE 17 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE messageid OWNER TO bulbthings; | |
| -- | |
| -- Name: messageid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE messageid OWNED BY messages.id; | |
| -- | |
| -- Name: meters; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE meters ( | |
| id bigint NOT NULL, | |
| asset_id bigint, | |
| source metersource DEFAULT 'unknown'::metersource, | |
| source_id bigint, | |
| type character varying NOT NULL, | |
| date timestamp with time zone DEFAULT now(), | |
| value numeric(11,2) NOT NULL, | |
| diff numeric(11,2) DEFAULT 0, | |
| confidence smallint NOT NULL | |
| ); | |
| ALTER TABLE meters OWNER TO bulbthings; | |
| -- | |
| -- Name: metersid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE metersid | |
| START WITH 36 | |
| INCREMENT BY 100 | |
| MINVALUE 36 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE metersid OWNER TO bulbthings; | |
| -- | |
| -- Name: metersid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE metersid OWNED BY meters.id; | |
| -- | |
| -- Name: mtncservicesid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE mtncservicesid | |
| START WITH 30 | |
| INCREMENT BY 100 | |
| MINVALUE 30 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE mtncservicesid OWNER TO bulbthings; | |
| -- | |
| -- Name: mtncservicesid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE mtncservicesid OWNED BY maintenanceservices.id; | |
| -- | |
| -- Name: notifications; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE notifications ( | |
| id bigint NOT NULL, | |
| event_id bigint NOT NULL, | |
| subject text, | |
| text text NOT NULL, | |
| created timestamp without time zone DEFAULT now(), | |
| attributes jsonb | |
| ); | |
| ALTER TABLE notifications OWNER TO bulbthings; | |
| -- | |
| -- Name: notificationid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE notificationid | |
| START WITH 27 | |
| INCREMENT BY 100 | |
| MINVALUE 27 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE notificationid OWNER TO bulbthings; | |
| -- | |
| -- Name: notificationid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE notificationid OWNED BY notifications.id; | |
| -- | |
| -- Name: notifications_mapping; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE notifications_mapping ( | |
| notification_id bigint, | |
| user_id bigint, | |
| acknowledge timestamp without time zone | |
| ); | |
| ALTER TABLE notifications_mapping OWNER TO bulbthings; | |
| -- | |
| -- Name: pgmigrations; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE pgmigrations ( | |
| id integer NOT NULL, | |
| name character varying(255) NOT NULL, | |
| run_on timestamp without time zone NOT NULL | |
| ); | |
| ALTER TABLE pgmigrations OWNER TO bulbthings; | |
| -- | |
| -- Name: pgmigrations_id_seq; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE pgmigrations_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE pgmigrations_id_seq OWNER TO bulbthings; | |
| -- | |
| -- Name: pgmigrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE pgmigrations_id_seq OWNED BY pgmigrations.id; | |
| -- | |
| -- Name: phones; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE phones ( | |
| id bigint NOT NULL, | |
| entity_id bigint NOT NULL, | |
| label character varying(255) NOT NULL, | |
| phone_number character varying(255) NOT NULL, | |
| country_code character varying(25) | |
| ); | |
| ALTER TABLE phones OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE phones; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE phones IS 'List of phone numbers of the thirdparties'; | |
| -- | |
| -- Name: COLUMN phones.id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN phones.id IS 'Autogenerated Primary key to identify'; | |
| -- | |
| -- Name: COLUMN phones.entity_id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN phones.entity_id IS 'ID of the contact or thirdparty associated'; | |
| -- | |
| -- Name: COLUMN phones.label; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN phones.label IS 'Label associated with this number (work, home, custom,...)'; | |
| -- | |
| -- Name: COLUMN phones.phone_number; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN phones.phone_number IS 'The phone number associated to the referenced thirdparty'; | |
| -- | |
| -- Name: phones_id_seq; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE phones_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE phones_id_seq OWNER TO bulbthings; | |
| -- | |
| -- Name: phones_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE phones_id_seq OWNED BY phones.id; | |
| -- | |
| -- Name: plans; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE plans ( | |
| id bigint NOT NULL, | |
| name planstypes, | |
| weight integer, | |
| active boolean | |
| ); | |
| ALTER TABLE plans OWNER TO bulbthings; | |
| -- | |
| -- Name: planid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE planid | |
| START WITH 33 | |
| INCREMENT BY 100 | |
| MINVALUE 33 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE planid OWNER TO bulbthings; | |
| -- | |
| -- Name: planid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE planid OWNED BY plans.id; | |
| -- | |
| -- Name: plans_history; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE plans_history ( | |
| plan_id bigint NOT NULL, | |
| start timestamp without time zone DEFAULT now(), | |
| "end" timestamp without time zone | |
| ); | |
| ALTER TABLE plans_history OWNER TO bulbthings; | |
| -- | |
| -- Name: reftype; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE reftype ( | |
| id integer NOT NULL, | |
| name character varying NOT NULL | |
| ); | |
| ALTER TABLE reftype OWNER TO bulbthings; | |
| -- | |
| -- Name: reftypeid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE reftypeid | |
| START WITH 23 | |
| INCREMENT BY 100 | |
| MINVALUE 23 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE reftypeid OWNER TO bulbthings; | |
| -- | |
| -- Name: reftypeid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE reftypeid OWNED BY reftype.id; | |
| -- | |
| -- Name: refval; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE refval ( | |
| id bigint NOT NULL, | |
| type integer NOT NULL, | |
| parent bigint, | |
| alias bigint, | |
| value character varying NOT NULL, | |
| searchable boolean DEFAULT false, | |
| custom boolean DEFAULT true, | |
| attributes jsonb | |
| ); | |
| ALTER TABLE refval OWNER TO bulbthings; | |
| -- | |
| -- Name: refvalid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE refvalid | |
| START WITH 24 | |
| INCREMENT BY 100 | |
| MINVALUE 24 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE refvalid OWNER TO bulbthings; | |
| -- | |
| -- Name: refvalid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE refvalid OWNED BY refval.id; | |
| -- | |
| -- Name: settings; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE settings ( | |
| name character varying(255) NOT NULL, | |
| user_id bigint NOT NULL, | |
| data jsonb NOT NULL, | |
| created timestamp without time zone DEFAULT now() NOT NULL | |
| ); | |
| ALTER TABLE settings OWNER TO bulbthings; | |
| -- | |
| -- Name: store; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE store ( | |
| id bigint NOT NULL, | |
| uid bigint, | |
| digest character varying(128) NOT NULL, | |
| size integer NOT NULL, | |
| name character varying(128) NOT NULL, | |
| path character varying(256) NOT NULL, | |
| mime character varying(64) NOT NULL, | |
| charset character varying(64) DEFAULT NULL::character varying, | |
| deleted boolean DEFAULT false NOT NULL, | |
| uploaded timestamp without time zone DEFAULT now() | |
| ); | |
| ALTER TABLE store OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE store; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE store IS 'Store table. Store files, images, attachments, etc.'; | |
| -- | |
| -- Name: COLUMN store.id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN store.id IS 'Private key, serial number from the StoreItemID sequence'; | |
| -- | |
| -- Name: COLUMN store.uid; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN store.uid IS 'The user ID of the account that uploaded the file, if applicable'; | |
| -- | |
| -- Name: COLUMN store.digest; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN store.digest IS 'The sha256 of the file once uploaded'; | |
| -- | |
| -- Name: COLUMN store.size; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN store.size IS 'The size of the file in bytes'; | |
| -- | |
| -- Name: COLUMN store.name; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN store.name IS 'The initial name of the file'; | |
| -- | |
| -- Name: COLUMN store.path; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN store.path IS 'The path where the file is stored'; | |
| -- | |
| -- Name: COLUMN store.mime; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN store.mime IS 'MIME type, given by the server'; | |
| -- | |
| -- Name: COLUMN store.charset; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN store.charset IS 'Character set of the file, automatically detected upon upload'; | |
| -- | |
| -- Name: COLUMN store.deleted; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN store.deleted IS 'True if the file has been deleted'; | |
| -- | |
| -- Name: COLUMN store.uploaded; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN store.uploaded IS 'The date the file has been uploaded on the system'; | |
| -- | |
| -- Name: store_mapping; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE store_mapping ( | |
| store_id bigint NOT NULL, | |
| entity_id bigint NOT NULL | |
| ); | |
| ALTER TABLE store_mapping OWNER TO bulbthings; | |
| -- | |
| -- Name: storeitemid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE storeitemid | |
| START WITH 12 | |
| INCREMENT BY 100 | |
| MINVALUE 12 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE storeitemid OWNER TO bulbthings; | |
| -- | |
| -- Name: storeitemid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE storeitemid OWNED BY store.id; | |
| -- | |
| -- Name: structure_assettype; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE structure_assettype ( | |
| structure_id bigint, | |
| asset_type character varying, | |
| is_cost boolean DEFAULT false | |
| ); | |
| ALTER TABLE structure_assettype OWNER TO bulbthings; | |
| -- | |
| -- Name: structure_country; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE structure_country ( | |
| structure_id bigint, | |
| country_id bigint, | |
| is_default boolean DEFAULT false | |
| ); | |
| ALTER TABLE structure_country OWNER TO bulbthings; | |
| -- | |
| -- Name: structure_roles; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE structure_roles ( | |
| structure_id bigint NOT NULL, | |
| roles character varying(32)[] | |
| ); | |
| ALTER TABLE structure_roles OWNER TO bulbthings; | |
| -- | |
| -- Name: structures; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE structures ( | |
| id bigint NOT NULL, | |
| label text NOT NULL, | |
| description text, | |
| created timestamp without time zone DEFAULT now(), | |
| updated timestamp without time zone DEFAULT now(), | |
| assign assignmenttype DEFAULT 'any'::assignmenttype NOT NULL, | |
| type smallint NOT NULL, | |
| system boolean DEFAULT false NOT NULL, | |
| legalentity boolean DEFAULT false NOT NULL, | |
| attributes jsonb, | |
| source datasource DEFAULT 'other'::datasource NOT NULL | |
| ); | |
| ALTER TABLE structures OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE structures; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE structures IS 'Hierarchy of structures / departments in a company'; | |
| -- | |
| -- Name: COLUMN structures.id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN structures.id IS 'private key, serial number from StructureID sequence.'; | |
| -- | |
| -- Name: COLUMN structures.label; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN structures.label IS 'Name of the structure'; | |
| -- | |
| -- Name: COLUMN structures.description; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN structures.description IS 'Description of the structure, free text'; | |
| -- | |
| -- Name: COLUMN structures.created; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN structures.created IS 'The date when the structure has been created'; | |
| -- | |
| -- Name: COLUMN structures.updated; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN structures.updated IS 'The last time the structure has been modified'; | |
| -- | |
| -- Name: COLUMN structures.attributes; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN structures.attributes IS 'Custom attributes associated to the structure'; | |
| -- | |
| -- Name: structureid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE structureid | |
| START WITH 1 | |
| INCREMENT BY 100 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE structureid OWNER TO bulbthings; | |
| -- | |
| -- Name: structureid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE structureid OWNED BY structures.id; | |
| -- | |
| -- Name: structureshistory; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE structureshistory ( | |
| created timestamp with time zone DEFAULT now(), | |
| structureid bigint, | |
| parentid bigint, | |
| stateid structurestate NOT NULL, | |
| period tstzrange DEFAULT '[-infinity,infinity]'::tstzrange, | |
| description text, | |
| userid bigint | |
| ); | |
| ALTER TABLE structureshistory OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE structureshistory; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE structureshistory IS 'Remember any event that may occur to a structure.'; | |
| -- | |
| -- Name: COLUMN structureshistory.created; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN structureshistory.created IS 'The date when the change has been created'; | |
| -- | |
| -- Name: COLUMN structureshistory.structureid; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN structureshistory.structureid IS 'The structure unique id referenced'; | |
| -- | |
| -- Name: COLUMN structureshistory.stateid; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN structureshistory.stateid IS 'The actual state described'; | |
| -- | |
| -- Name: COLUMN structureshistory.period; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN structureshistory.period IS 'The period when the structure is in this state'; | |
| -- | |
| -- Name: COLUMN structureshistory.description; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN structureshistory.description IS 'An optional client description of the event that may contains any internal reference. Free text'; | |
| -- | |
| -- Name: COLUMN structureshistory.userid; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN structureshistory.userid IS 'The user ID that made the change into the structure history'; | |
| -- | |
| -- Name: structureshistory_current; Type: VIEW; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE VIEW structureshistory_current AS | |
| SELECT s.created, | |
| s.structureid, | |
| COALESCE(s.parentid, (0)::bigint) AS parentid, | |
| s.stateid, | |
| s.period, | |
| s.description, | |
| s.userid | |
| FROM structureshistory s | |
| WHERE (s.period @> now()); | |
| ALTER TABLE structureshistory_current OWNER TO bulbthings; | |
| -- | |
| -- Name: structures_current_state; Type: VIEW; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE VIEW structures_current_state AS | |
| SELECT sd.id, | |
| safe_name((sd.label)::character varying) AS name, | |
| sd.label, | |
| sd.description, | |
| sh1.stateid AS state, | |
| nodepath(sh1.structureid) AS fullpath, | |
| root.label AS root_label, | |
| safe_name((root.label)::character varying) AS root_name, | |
| root.id AS root_id | |
| FROM ((structureshistory_current sh1 | |
| LEFT JOIN structures sd ON ((sd.id = sh1.structureid))) | |
| LEFT JOIN structures root ON ((root.id = path_root(nodepath(sh1.structureid))))); | |
| ALTER TABLE structures_current_state OWNER TO bulbthings; | |
| -- | |
| -- Name: structuretypes; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE structuretypes ( | |
| id smallint NOT NULL, | |
| name character varying(16) NOT NULL, | |
| system boolean DEFAULT false NOT NULL, | |
| description text | |
| ); | |
| ALTER TABLE structuretypes OWNER TO bulbthings; | |
| -- | |
| -- Name: structures_current_top; Type: VIEW; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE VIEW structures_current_top AS | |
| SELECT s.id, | |
| s.label, | |
| safe_name((s.label)::character varying) AS name, | |
| s.description, | |
| s.assign, | |
| st.name AS type, | |
| sh.stateid AS state | |
| FROM ((structures s | |
| LEFT JOIN structureshistory sh ON ((s.id = sh.structureid))) | |
| LEFT JOIN structuretypes st ON ((s.type = st.id))) | |
| WHERE ((sh.period @> now()) AND (sh.parentid IS NULL)); | |
| ALTER TABLE structures_current_top OWNER TO bulbthings; | |
| -- | |
| -- Name: structures_current_with_paths; Type: VIEW; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE VIEW structures_current_with_paths AS | |
| SELECT t.structure_id, | |
| t.parent_id, | |
| t.level, | |
| t.fullpath | |
| FROM connectby('structureshistory_current'::text, 'structureid'::text, 'parentid'::text, '0'::text, 0, '/'::text) t(structure_id bigint, parent_id bigint, level integer, fullpath text); | |
| ALTER TABLE structures_current_with_paths OWNER TO bulbthings; | |
| -- | |
| -- Name: structures_current_with_roots; Type: VIEW; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE VIEW structures_current_with_roots AS | |
| SELECT scwp.structure_id AS id, | |
| path_root((scwp.fullpath)::character varying) AS root_id, | |
| s.label AS root_label, | |
| safe_name((s.label)::character varying) AS root_name | |
| FROM (structures_current_with_paths scwp | |
| LEFT JOIN structures s ON ((s.id = path_root((scwp.fullpath)::character varying)))) | |
| WHERE (scwp.level > 0); | |
| ALTER TABLE structures_current_with_roots OWNER TO bulbthings; | |
| -- | |
| -- Name: supplier_structure; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE supplier_structure ( | |
| supplier_id bigint NOT NULL, | |
| structure_id bigint NOT NULL | |
| ); | |
| ALTER TABLE supplier_structure OWNER TO bulbthings; | |
| -- | |
| -- Name: suppliercontactid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE suppliercontactid | |
| START WITH 35 | |
| INCREMENT BY 100 | |
| MINVALUE 35 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE suppliercontactid OWNER TO bulbthings; | |
| -- | |
| -- Name: suppliercontacts; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE suppliercontacts ( | |
| id bigint DEFAULT nextval('suppliercontactid'::regclass) NOT NULL, | |
| supplier_id bigint NOT NULL, | |
| name text NOT NULL, | |
| email text NOT NULL, | |
| phone text, | |
| created timestamp without time zone DEFAULT now(), | |
| updated timestamp without time zone, | |
| source text | |
| ); | |
| ALTER TABLE suppliercontacts OWNER TO bulbthings; | |
| -- | |
| -- Name: suppliers; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE suppliers ( | |
| id bigint NOT NULL, | |
| custom_id text, | |
| notes text, | |
| name text NOT NULL, | |
| created timestamp without time zone DEFAULT now(), | |
| updated timestamp without time zone, | |
| source text | |
| ); | |
| ALTER TABLE suppliers OWNER TO bulbthings; | |
| -- | |
| -- Name: supplierid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE supplierid | |
| START WITH 34 | |
| INCREMENT BY 100 | |
| MINVALUE 34 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE supplierid OWNER TO bulbthings; | |
| -- | |
| -- Name: supplierid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE supplierid OWNED BY suppliers.id; | |
| -- | |
| -- Name: system; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE system ( | |
| name character varying(100) NOT NULL, | |
| boolean_value boolean, | |
| str_value character varying, | |
| int_value integer | |
| ); | |
| ALTER TABLE system OWNER TO bulbthings; | |
| -- | |
| -- Name: tags; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE tags ( | |
| entity_id bigint NOT NULL, | |
| tags character varying[] | |
| ); | |
| ALTER TABLE tags OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE tags; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE tags IS 'Tags to use in any of the entities of the asset management.'; | |
| -- | |
| -- Name: COLUMN tags.entity_id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN tags.entity_id IS 'ID of the entity referenced in these tags.'; | |
| -- | |
| -- Name: COLUMN tags.tags; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN tags.tags IS 'Array of tags associated to this entity_id.'; | |
| -- | |
| -- Name: thirdparties; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE thirdparties ( | |
| id bigint NOT NULL, | |
| name character varying(255) NOT NULL, | |
| address character varying(255), | |
| notes text, | |
| created timestamp without time zone DEFAULT now(), | |
| updated timestamp without time zone DEFAULT now(), | |
| search tsvector | |
| ); | |
| ALTER TABLE thirdparties OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE thirdparties; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE thirdparties IS 'List of thirdparties involved in the asset management'; | |
| -- | |
| -- Name: COLUMN thirdparties.id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN thirdparties.id IS 'private key, serial number from ThirdpartyID sequence.'; | |
| -- | |
| -- Name: COLUMN thirdparties.name; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN thirdparties.name IS 'Name of the thirdparty'; | |
| -- | |
| -- Name: COLUMN thirdparties.address; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN thirdparties.address IS 'Address information about the thirdparty'; | |
| -- | |
| -- Name: COLUMN thirdparties.notes; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN thirdparties.notes IS 'To take notes about the thirdpartys'; | |
| -- | |
| -- Name: thirdpartyid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE thirdpartyid | |
| START WITH 9 | |
| INCREMENT BY 100 | |
| MINVALUE 9 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE thirdpartyid OWNER TO bulbthings; | |
| -- | |
| -- Name: thirdpartyid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE thirdpartyid OWNED BY thirdparties.id; | |
| -- | |
| -- Name: timeslots; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE timeslots ( | |
| id bigint NOT NULL, | |
| type character varying NOT NULL, | |
| title text NOT NULL, | |
| description text NOT NULL, | |
| period tstzrange NOT NULL, | |
| attributes jsonb | |
| ); | |
| ALTER TABLE timeslots OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE timeslots; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE timeslots IS 'Timeslots table. Any type of timeslot can be recorded'; | |
| -- | |
| -- Name: COLUMN timeslots.type; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN timeslots.type IS 'Timeslot type. Free text, but an associated class may exists with specific code'; | |
| -- | |
| -- Name: COLUMN timeslots.title; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN timeslots.title IS 'Timeslot title as visible in the front-end'; | |
| -- | |
| -- Name: timeslotid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE timeslotid | |
| START WITH 11 | |
| INCREMENT BY 100 | |
| MINVALUE 11 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE timeslotid OWNER TO bulbthings; | |
| -- | |
| -- Name: timeslotid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE timeslotid OWNED BY timeslots.id; | |
| -- | |
| -- Name: timeslots_mapping; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE timeslots_mapping ( | |
| timeslot_id bigint, | |
| entity_id bigint NOT NULL | |
| ); | |
| ALTER TABLE timeslots_mapping OWNER TO bulbthings; | |
| -- | |
| -- Name: user_policies; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE user_policies ( | |
| user_id bigint, | |
| ip_addresses jsonb, | |
| countries jsonb | |
| ); | |
| ALTER TABLE user_policies OWNER TO bulbthings; | |
| -- | |
| -- Name: user_roles; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE user_roles ( | |
| user_id bigint NOT NULL, | |
| roles character varying(32)[] | |
| ); | |
| ALTER TABLE user_roles OWNER TO bulbthings; | |
| -- | |
| -- Name: userid; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE userid | |
| START WITH 4 | |
| INCREMENT BY 100 | |
| MINVALUE 4 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE userid OWNER TO bulbthings; | |
| -- | |
| -- Name: userid; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE userid OWNED BY users.id; | |
| -- | |
| -- Name: users_to_structures; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE users_to_structures ( | |
| user_id bigint, | |
| structure_id bigint, | |
| period tstzrange DEFAULT '[-infinity,infinity]'::tstzrange, | |
| created timestamp with time zone DEFAULT now() | |
| ); | |
| ALTER TABLE users_to_structures OWNER TO bulbthings; | |
| -- | |
| -- Name: TABLE users_to_structures; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON TABLE users_to_structures IS 'This table contains all the assignements of users to structures, over time.'; | |
| -- | |
| -- Name: COLUMN users_to_structures.user_id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN users_to_structures.user_id IS 'The unique ID of the user referenced by the change'; | |
| -- | |
| -- Name: COLUMN users_to_structures.structure_id; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN users_to_structures.structure_id IS 'The unique ID of the structure reference by the change'; | |
| -- | |
| -- Name: COLUMN users_to_structures.period; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN users_to_structures.period IS 'The period when the user has been changed'; | |
| -- | |
| -- Name: COLUMN users_to_structures.created; Type: COMMENT; Schema: public; Owner: bulbthings | |
| -- | |
| COMMENT ON COLUMN users_to_structures.created IS 'The time this changed has been created in the system'; | |
| -- | |
| -- Name: valuedata; Type: TABLE; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE TABLE valuedata ( | |
| id bigint NOT NULL, | |
| asset_id bigint NOT NULL, | |
| type character varying NOT NULL, | |
| name character varying, | |
| gross_price numeric(11,2) NOT NULL, | |
| discount_amount numeric(10,2), | |
| discount_percentage numeric(4,3), | |
| currency character(3) NOT NULL, | |
| taxes numeric(10,2) NOT NULL, | |
| CONSTRAINT chk_discount CHECK (((discount_amount IS NULL) OR (discount_percentage IS NULL))) | |
| ); | |
| ALTER TABLE valuedata OWNER TO bulbthings; | |
| -- | |
| -- Name: value_id; Type: SEQUENCE; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE SEQUENCE value_id | |
| START WITH 25 | |
| INCREMENT BY 100 | |
| MINVALUE 25 | |
| NO MAXVALUE | |
| CACHE 1; | |
| ALTER TABLE value_id OWNER TO bulbthings; | |
| -- | |
| -- Name: value_id; Type: SEQUENCE OWNED BY; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER SEQUENCE value_id OWNED BY valuedata.id; | |
| -- | |
| -- Name: vehicle_cars; Type: VIEW; Schema: public; Owner: bulbthings | |
| -- | |
| CREATE VIEW vehicle_cars AS | |
| SELECT assetattributes.id, | |
| assetattributes.avg_mileage_month, | |
| assetattributes.avg_tco_per_month, | |
| assetattributes.certificate_date, | |
| assetattributes.co2_rejection, | |
| assetattributes.colour, | |
| assetattributes.comment, | |
| assetattributes.commercial_name, | |
| assetattributes.contract_consumption, | |
| assetattributes.contract_currency, | |
| assetattributes.contract_duration, | |
| assetattributes.contract_duration_unit, | |
| assetattributes.contract_duration_value, | |
| assetattributes.contract_end, | |
| assetattributes.contract_mileage, | |
| assetattributes.contract_mileage_order, | |
| assetattributes.contract_payment_period, | |
| assetattributes.contract_payment_period_order, | |
| assetattributes.contract_service_1, | |
| assetattributes.contract_service_2, | |
| assetattributes.contract_service_3, | |
| assetattributes.contract_service_4, | |
| assetattributes.contract_service_5, | |
| assetattributes.contract_start, | |
| assetattributes.contract_type, | |
| assetattributes.custom_id, | |
| assetattributes.cylinder, | |
| assetattributes.date_loss, | |
| assetattributes.date_maintenance_mileage_reached, | |
| assetattributes.date_pre_order, | |
| assetattributes.date_quotation, | |
| assetattributes.date_returned, | |
| assetattributes.date_sold, | |
| assetattributes.delivery_place, | |
| assetattributes.energy, | |
| assetattributes.entry_date, | |
| assetattributes.estimated_mileage_at_control_date, | |
| assetattributes.estimated_mileage_at_maintenance_date, | |
| assetattributes.extras_accessories, | |
| assetattributes.extras_options, | |
| assetattributes.first_registration, | |
| assetattributes.forecast_delivery_date, | |
| assetattributes.gross_weight, | |
| assetattributes.license, | |
| assetattributes.make, | |
| assetattributes.max_authorized_weight, | |
| assetattributes.max_laden_mass, | |
| assetattributes.max_laden_mass_rolling, | |
| assetattributes.max_whole_laden_mass_rolling, | |
| assetattributes.mileage, | |
| assetattributes.mileage_at_delivery, | |
| assetattributes.mileage_consumption, | |
| assetattributes.mileage_forecast, | |
| assetattributes.mileage_inside_contract, | |
| assetattributes.model, | |
| assetattributes.months_since_contract_start, | |
| assetattributes.national_body_name, | |
| assetattributes.next_control_date, | |
| assetattributes.next_maintenance_date, | |
| assetattributes.next_mileage_for_maintenance, | |
| assetattributes.order_date, | |
| assetattributes.order_id, | |
| assetattributes.owner_details, | |
| assetattributes.parking_place, | |
| assetattributes.pool, | |
| assetattributes.pre_order_id, | |
| assetattributes.prospect_contract_fulfillment, | |
| assetattributes.prospect_mileage_consumption, | |
| assetattributes.quotation_id, | |
| assetattributes.reason, | |
| assetattributes.registration_date, | |
| assetattributes.seats, | |
| assetattributes.service_1_fees, | |
| assetattributes.service_2_fees, | |
| assetattributes.service_3_fees, | |
| assetattributes.service_4_fees, | |
| assetattributes.service_5_fees, | |
| assetattributes.supplier, | |
| assetattributes.supplier_email, | |
| assetattributes.supplier_id, | |
| assetattributes.tank, | |
| assetattributes.tax_horsepower, | |
| assetattributes.total_gross, | |
| assetattributes.total_net, | |
| assetattributes.total_tco, | |
| assetattributes.transmission, | |
| assetattributes.type, | |
| assetattributes.unladen_weight, | |
| assetattributes.uuid, | |
| assetattributes.variant, | |
| assetattributes.vin | |
| FROM crosstab('SELECT | |
| asset_id, | |
| name::text, | |
| trim(value::text, ''"'') | |
| FROM | |
| assetattributes | |
| LEFT JOIN | |
| assets | |
| ON | |
| assets.id = asset_id | |
| WHERE ( | |
| assets.classname = ''vehicle.car'' AND | |
| name IN (''avg_mileage_month'',''avg_tco_per_month'',''certificate_date'',''co2_rejection'',''colour'',''comment'',''commercial_name'',''contract_consumption'',''contract_currency'',''contract_duration'',''contract_duration_unit'',''contract_duration_value'',''contract_end'',''contract_mileage'',''contract_mileage_order'',''contract_payment_period'',''contract_payment_period_order'',''contract_service_1'',''contract_service_2'',''contract_service_3'',''contract_service_4'',''contract_service_5'',''contract_start'',''contract_type'',''custom_id'',''cylinder'',''date_loss'',''date_maintenance_mileage_reached'',''date_pre_order'',''date_quotation'',''date_returned'',''date_sold'',''delivery_place'',''energy'',''entry_date'',''estimated_mileage_at_control_date'',''estimated_mileage_at_maintenance_date'',''extras_accessories'',''extras_options'',''first_registration'',''forecast_delivery_date'',''gross_weight'',''license'',''make'',''max_authorized_weight'',''max_laden_mass'',''max_laden_mass_rolling'',''max_whole_laden_mass_rolling'',''mileage'',''mileage_at_delivery'',''mileage_consumption'',''mileage_forecast'',''mileage_inside_contract'',''model'',''months_since_contract_start'',''national_body_name'',''next_control_date'',''next_maintenance_date'',''next_mileage_for_maintenance'',''order_date'',''order_id'',''owner_details'',''parking_place'',''pool'',''pre_order_id'',''prospect_contract_fulfillment'',''prospect_mileage_consumption'',''quotation_id'',''reason'',''registration_date'',''seats'',''service_1_fees'',''service_2_fees'',''service_3_fees'',''service_4_fees'',''service_5_fees'',''supplier'',''supplier_email'',''supplier_id'',''tank'',''tax_horsepower'',''total_gross'',''total_net'',''total_tco'',''transmission'',''type'',''unladen_weight'',''uuid'',''variant'',''vin'') | |
| ) | |
| ORDER BY 1,2'::text, 'SELECT name FROM attributetypes WHERE assetname=''vehicle.car'' ORDER BY 1'::text) assetattributes(id bigint, avg_mileage_month integer, avg_tco_per_month integer, certificate_date timestamp without time zone, co2_rejection integer, colour character varying, comment character varying, commercial_name character varying, contract_consumption integer, contract_currency character varying, contract_duration character varying, contract_duration_unit character varying, contract_duration_value integer, contract_end timestamp without time zone, contract_mileage integer, contract_mileage_order integer, contract_payment_period character varying, contract_payment_period_order character varying, contract_service_1 character varying, contract_service_2 character varying, contract_service_3 character varying, contract_service_4 character varying, contract_service_5 character varying, contract_start timestamp without time zone, contract_type character varying, custom_id character varying, cylinder integer, date_loss timestamp without time zone, date_maintenance_mileage_reached timestamp without time zone, date_pre_order timestamp without time zone, date_quotation timestamp without time zone, date_returned timestamp without time zone, date_sold timestamp without time zone, delivery_place character varying, energy character varying, entry_date timestamp without time zone, estimated_mileage_at_control_date integer, estimated_mileage_at_maintenance_date integer, extras_accessories character varying, extras_options character varying, first_registration timestamp without time zone, forecast_delivery_date timestamp without time zone, gross_weight integer, license character varying, make character varying, max_authorized_weight integer, max_laden_mass integer, max_laden_mass_rolling integer, max_whole_laden_mass_rolling integer, mileage integer, mileage_at_delivery integer, mileage_consumption integer, mileage_forecast integer, mileage_inside_contract integer, model character varying, months_since_contract_start integer, national_body_name character varying, next_control_date timestamp without time zone, next_maintenance_date timestamp without time zone, next_mileage_for_maintenance integer, order_date timestamp without time zone, order_id character varying, owner_details character varying, parking_place character varying, pool integer, pre_order_id character varying, prospect_contract_fulfillment timestamp without time zone, prospect_mileage_consumption integer, quotation_id character varying, reason character varying, registration_date timestamp without time zone, seats integer, service_1_fees integer, service_2_fees integer, service_3_fees integer, service_4_fees integer, service_5_fees integer, supplier character varying, supplier_email character varying, supplier_id character varying, tank integer, tax_horsepower integer, total_gross integer, total_net integer, total_tco integer, transmission character varying, type character varying, unladen_weight integer, uuid character varying, variant character varying, vin character varying); | |
| ALTER TABLE vehicle_cars OWNER TO bulbthings; | |
| -- | |
| -- Name: vehicle_cars_cache; Type: MATERIALIZED VIEW; Schema: public; Owner: bulbthings; Tablespace: | |
| -- | |
| CREATE MATERIALIZED VIEW vehicle_cars_cache AS | |
| SELECT assetattributes.id, | |
| assetattributes.avg_mileage_month, | |
| assetattributes.avg_tco_per_month, | |
| assetattributes.certificate_date, | |
| assetattributes.co2_rejection, | |
| assetattributes.colour, | |
| assetattributes.comment, | |
| assetattributes.commercial_name, | |
| assetattributes.contract_consumption, | |
| assetattributes.contract_currency, | |
| assetattributes.contract_duration, | |
| assetattributes.contract_duration_unit, | |
| assetattributes.contract_duration_value, | |
| assetattributes.contract_end, | |
| assetattributes.contract_mileage, | |
| assetattributes.contract_mileage_order, | |
| assetattributes.contract_payment_period, | |
| assetattributes.contract_payment_period_order, | |
| assetattributes.contract_service_1, | |
| assetattributes.contract_service_2, | |
| assetattributes.contract_service_3, | |
| assetattributes.contract_service_4, | |
| assetattributes.contract_service_5, | |
| assetattributes.contract_start, | |
| assetattributes.contract_type, | |
| assetattributes.custom_id, | |
| assetattributes.cylinder, | |
| assetattributes.date_loss, | |
| assetattributes.date_maintenance_mileage_reached, | |
| assetattributes.date_pre_order, | |
| assetattributes.date_quotation, | |
| assetattributes.date_returned, | |
| assetattributes.date_sold, | |
| assetattributes.delivery_place, | |
| assetattributes.energy, | |
| assetattributes.entry_date, | |
| assetattributes.estimated_mileage_at_control_date, | |
| assetattributes.estimated_mileage_at_maintenance_date, | |
| assetattributes.extras_accessories, | |
| assetattributes.extras_options, | |
| assetattributes.first_registration, | |
| assetattributes.forecast_delivery_date, | |
| assetattributes.gross_weight, | |
| assetattributes.license, | |
| assetattributes.make, | |
| assetattributes.max_authorized_weight, | |
| assetattributes.max_laden_mass, | |
| assetattributes.max_laden_mass_rolling, | |
| assetattributes.max_whole_laden_mass_rolling, | |
| assetattributes.mileage, | |
| assetattributes.mileage_at_delivery, | |
| assetattributes.mileage_consumption, | |
| assetattributes.mileage_forecast, | |
| assetattributes.mileage_inside_contract, | |
| assetattributes.model, | |
| assetattributes.months_since_contract_start, | |
| assetattributes.national_body_name, | |
| assetattributes.next_control_date, | |
| assetattributes.next_maintenance_date, | |
| assetattributes.next_mileage_for_maintenance, | |
| assetattributes.order_date, | |
| assetattributes.order_id, | |
| assetattributes.owner_details, | |
| assetattributes.parking_place, | |
| assetattributes.pool, | |
| assetattributes.pre_order_id, | |
| assetattributes.prospect_contract_fulfillment, | |
| assetattributes.prospect_mileage_consumption, | |
| assetattributes.quotation_id, | |
| assetattributes.reason, | |
| assetattributes.registration_date, | |
| assetattributes.seats, | |
| assetattributes.service_1_fees, | |
| assetattributes.service_2_fees, | |
| assetattributes.service_3_fees, | |
| assetattributes.service_4_fees, | |
| assetattributes.service_5_fees, | |
| assetattributes.supplier, | |
| assetattributes.supplier_email, | |
| assetattributes.supplier_id, | |
| assetattributes.tank, | |
| assetattributes.tax_horsepower, | |
| assetattributes.total_gross, | |
| assetattributes.total_net, | |
| assetattributes.total_tco, | |
| assetattributes.transmission, | |
| assetattributes.type, | |
| assetattributes.unladen_weight, | |
| assetattributes.uuid, | |
| assetattributes.variant, | |
| assetattributes.vin | |
| FROM crosstab('SELECT | |
| asset_id, | |
| name::text, | |
| trim(value::text, ''"'') | |
| FROM | |
| assetattributes | |
| LEFT JOIN | |
| assets | |
| ON | |
| assets.id = asset_id | |
| WHERE ( | |
| assets.classname = ''vehicle.car'' AND | |
| name IN (''avg_mileage_month'',''avg_tco_per_month'',''certificate_date'',''co2_rejection'',''colour'',''comment'',''commercial_name'',''contract_consumption'',''contract_currency'',''contract_duration'',''contract_duration_unit'',''contract_duration_value'',''contract_end'',''contract_mileage'',''contract_mileage_order'',''contract_payment_period'',''contract_payment_period_order'',''contract_service_1'',''contract_service_2'',''contract_service_3'',''contract_service_4'',''contract_service_5'',''contract_start'',''contract_type'',''custom_id'',''cylinder'',''date_loss'',''date_maintenance_mileage_reached'',''date_pre_order'',''date_quotation'',''date_returned'',''date_sold'',''delivery_place'',''energy'',''entry_date'',''estimated_mileage_at_control_date'',''estimated_mileage_at_maintenance_date'',''extras_accessories'',''extras_options'',''first_registration'',''forecast_delivery_date'',''gross_weight'',''license'',''make'',''max_authorized_weight'',''max_laden_mass'',''max_laden_mass_rolling'',''max_whole_laden_mass_rolling'',''mileage'',''mileage_at_delivery'',''mileage_consumption'',''mileage_forecast'',''mileage_inside_contract'',''model'',''months_since_contract_start'',''national_body_name'',''next_control_date'',''next_maintenance_date'',''next_mileage_for_maintenance'',''order_date'',''order_id'',''owner_details'',''parking_place'',''pool'',''pre_order_id'',''prospect_contract_fulfillment'',''prospect_mileage_consumption'',''quotation_id'',''reason'',''registration_date'',''seats'',''service_1_fees'',''service_2_fees'',''service_3_fees'',''service_4_fees'',''service_5_fees'',''supplier'',''supplier_email'',''supplier_id'',''tank'',''tax_horsepower'',''total_gross'',''total_net'',''total_tco'',''transmission'',''type'',''unladen_weight'',''uuid'',''variant'',''vin'') | |
| ) | |
| ORDER BY 1,2'::text, 'SELECT name FROM attributetypes WHERE assetname=''vehicle.car'' ORDER BY 1'::text) assetattributes(id bigint, avg_mileage_month integer, avg_tco_per_month integer, certificate_date timestamp without time zone, co2_rejection integer, colour character varying, comment character varying, commercial_name character varying, contract_consumption integer, contract_currency character varying, contract_duration character varying, contract_duration_unit character varying, contract_duration_value integer, contract_end timestamp without time zone, contract_mileage integer, contract_mileage_order integer, contract_payment_period character varying, contract_payment_period_order character varying, contract_service_1 character varying, contract_service_2 character varying, contract_service_3 character varying, contract_service_4 character varying, contract_service_5 character varying, contract_start timestamp without time zone, contract_type character varying, custom_id character varying, cylinder integer, date_loss timestamp without time zone, date_maintenance_mileage_reached timestamp without time zone, date_pre_order timestamp without time zone, date_quotation timestamp without time zone, date_returned timestamp without time zone, date_sold timestamp without time zone, delivery_place character varying, energy character varying, entry_date timestamp without time zone, estimated_mileage_at_control_date integer, estimated_mileage_at_maintenance_date integer, extras_accessories character varying, extras_options character varying, first_registration timestamp without time zone, forecast_delivery_date timestamp without time zone, gross_weight integer, license character varying, make character varying, max_authorized_weight integer, max_laden_mass integer, max_laden_mass_rolling integer, max_whole_laden_mass_rolling integer, mileage integer, mileage_at_delivery integer, mileage_consumption integer, mileage_forecast integer, mileage_inside_contract integer, model character varying, months_since_contract_start integer, national_body_name character varying, next_control_date timestamp without time zone, next_maintenance_date timestamp without time zone, next_mileage_for_maintenance integer, order_date timestamp without time zone, order_id character varying, owner_details character varying, parking_place character varying, pool integer, pre_order_id character varying, prospect_contract_fulfillment timestamp without time zone, prospect_mileage_consumption integer, quotation_id character varying, reason character varying, registration_date timestamp without time zone, seats integer, service_1_fees integer, service_2_fees integer, service_3_fees integer, service_4_fees integer, service_5_fees integer, supplier character varying, supplier_email character varying, supplier_id character varying, tank integer, tax_horsepower integer, total_gross integer, total_net integer, total_tco integer, transmission character varying, type character varying, unladen_weight integer, uuid character varying, variant character varying, vin character varying) | |
| WITH NO DATA; | |
| ALTER TABLE vehicle_cars_cache OWNER TO bulbthings; | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY addons ALTER COLUMN id SET DEFAULT nextval('addonid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY addresses ALTER COLUMN id SET DEFAULT nextval('addressid'::regclass); | |
| -- | |
| -- Name: address_id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY addresses_mapping ALTER COLUMN address_id SET DEFAULT nextval('addresses_mapping_address_id_seq'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY assets ALTER COLUMN id SET DEFAULT nextval('assetid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY cards ALTER COLUMN id SET DEFAULT nextval('cardid'::regclass); | |
| -- | |
| -- Name: card_id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY cards_mapping ALTER COLUMN card_id SET DEFAULT nextval('cards_mapping_card_id_seq'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY consumptions ALTER COLUMN id SET DEFAULT nextval('consumptionid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY contacts ALTER COLUMN id SET DEFAULT nextval('contactid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY contract_changes ALTER COLUMN id SET DEFAULT nextval('contractchangeid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY contract_services ALTER COLUMN id SET DEFAULT nextval('contractserviceid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY contracts ALTER COLUMN id SET DEFAULT nextval('contractid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY costs ALTER COLUMN id SET DEFAULT nextval('costid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY countries ALTER COLUMN id SET DEFAULT nextval('countryid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY damages ALTER COLUMN id SET DEFAULT nextval('damagesid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY emails ALTER COLUMN id SET DEFAULT nextval('emails_id_seq'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY events ALTER COLUMN id SET DEFAULT nextval('eventid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY fines ALTER COLUMN id SET DEFAULT nextval('fineid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY jobs ALTER COLUMN id SET DEFAULT nextval('job_id'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY maintenances ALTER COLUMN id SET DEFAULT nextval('maintenanceid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY maintenanceservices ALTER COLUMN id SET DEFAULT nextval('mtncservicesid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY messages ALTER COLUMN id SET DEFAULT nextval('messageid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY meters ALTER COLUMN id SET DEFAULT nextval('metersid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY notifications ALTER COLUMN id SET DEFAULT nextval('notificationid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY pgmigrations ALTER COLUMN id SET DEFAULT nextval('pgmigrations_id_seq'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY phones ALTER COLUMN id SET DEFAULT nextval('phones_id_seq'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY plans ALTER COLUMN id SET DEFAULT nextval('planid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY reftype ALTER COLUMN id SET DEFAULT nextval('reftypeid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY refval ALTER COLUMN id SET DEFAULT nextval('refvalid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY store ALTER COLUMN id SET DEFAULT nextval('storeitemid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY structures ALTER COLUMN id SET DEFAULT nextval('structureid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY suppliers ALTER COLUMN id SET DEFAULT nextval('supplierid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY thirdparties ALTER COLUMN id SET DEFAULT nextval('thirdpartyid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY timeslots ALTER COLUMN id SET DEFAULT nextval('timeslotid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('userid'::regclass); | |
| -- | |
| -- Name: id; Type: DEFAULT; Schema: public; Owner: bulbthings | |
| -- | |
| ALTER TABLE ONLY valuedata ALTER COLUMN id SET DEFAULT nextval('value_id'::regclass); | |
| -- | |
| -- Name: addonid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('addonid', 32, false); | |
| -- | |
| -- Data for Name: addons; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY addons (id, type, serialnumber, label, description) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: addons_mapping; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY addons_mapping (addon_id, asset_id, cost_id) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: addresses; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY addresses (id, country, county, city, postcode, lines, digest) FROM stdin; | |
| 19 UK Surrey Croydon CR0 6RD {"261 Lower Addiscombe Road"} 5f2d14fe5e38241a334146b914bd8bfc | |
| 119 UK West Midlands Birmingham B13 8HS {"158-162 Alcester Road"} 1dc6d3dd75d9250080e3fc83914531d3 | |
| 219 UK Surrey Ash GU12 4ES {"150 Ash Road"} a70ea7008f24194b2fb36351f7dd6962 | |
| 319 UK Northumberland Alnwick NE66 2JH {"12 Willowburn Avenue"} 0675f49d530a248217dc7eb5b1c91e94 | |
| 419 UK Middlesex Wembley HA0 1PF {"360 Ealing Road"} 52b5d90a06e23fd621f5c413f1b65a7f | |
| 519 UK Devon Exeter EX2 8NH {"14 Alphington Road"} 144eeb271a721e4fdbba41794db42f29 | |
| 619 UK Staffordshire Stoke on Trent ST7 2EW {"122 Crewe Road",Alsager} b354cba364b0fca99e9bf8c279eb94a7 | |
| 719 UK Hampshire Alton GU34 1SS {"Draymans Way"} f489cb0670aece1dd64b426273448065 | |
| 819 UK Cheshire Altrincham WA14 2SU {"122 Lloyd Street"} bc29bf131b964a9762b32ff559546b2b | |
| 919 UK West Yorkshire Wakefield WF2 9PP {"169 Alverthorpe Road"} 579fbd714562a55edb58d61c6d2d69fc | |
| 1019 UK Aberdeenshire Aberdeen AB10 1QS {"313 George Street"} 22dd142cee5362e7a31d1060d586e913 | |
| 1119 UK Aberdeen City Aberdeen AB10 6DA {"54 Guild Street"} e15532b88f429b3b6995e25fb5a557a5 | |
| 1219 UK Cleveland Middlesbrough TS5 5HR {"124 Holburn Street"} bbd5a01c78b764808ca48a4a1a8db61f | |
| 1319 UK West Midlands Birmingham B27 6RA {"1149 Warwick Road"} 1f6e4f7d7adf646b071e2e12076a11d7 | |
| 1419 UK West Yorkshire Huddersfield HD3 3EL {"12 Acre Street","First floor"} 1ecaf40f247e12ef9029349855f24c6f | |
| 1519 UK Greater London Ealing W3 6AY {"61 Churchfield Road"} c6aae8b9f33e336424f67f4eb932d62a | |
| \. | |
| -- | |
| -- Data for Name: addresses_mapping; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY addresses_mapping (label, address_id, entity_id) FROM stdin; | |
| office 19 101 | |
| office 119 301 | |
| office 219 401 | |
| office 319 501 | |
| office 419 601 | |
| office 519 904 | |
| personal 619 104 | |
| personal 719 204 | |
| personal 819 304 | |
| personal 919 404 | |
| personal 1019 504 | |
| personal 1119 604 | |
| personal 1219 704 | |
| personal 1319 804 | |
| personal 1419 904 | |
| personal 1519 1004 | |
| supplier 19 34 | |
| supplier 119 134 | |
| supplier 219 234 | |
| supplier 319 334 | |
| supplier 419 434 | |
| supplier 519 534 | |
| supplier 619 634 | |
| supplier 719 734 | |
| supplier 819 834 | |
| supplier 919 934 | |
| supplier 1019 1034 | |
| supplier 1119 1134 | |
| supplier 1219 1234 | |
| supplier 1319 1334 | |
| supplier 1419 1434 | |
| supplier 1519 1534 | |
| supplier 19 1634 | |
| supplier 119 1734 | |
| \. | |
| -- | |
| -- Name: addresses_mapping_address_id_seq; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('addresses_mapping_address_id_seq', 1, false); | |
| -- | |
| -- Name: addressid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('addressid', 1519, true); | |
| -- | |
| -- Data for Name: assetassignments; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY assetassignments (id, asset, resource, period, ratio, attribute, shared, shared_id) FROM stdin; | |
| 8 2 401 ["2010-01-01 00:00:00+00","2020-01-31 23:59:59+00"] \N \N f 1 | |
| 108 2 4 ["2010-01-01 00:00:00+00","2020-01-31 23:59:59+00"] \N \N f 2 | |
| 208 102 401 ["2010-01-01 00:00:00+00","2020-01-31 23:59:59+00"] \N \N f 1 | |
| 308 102 104 ["2010-01-01 00:00:00+00","2020-01-31 23:59:59+00"] \N \N f 2 | |
| 408 202 401 ["2010-01-01 00:00:00+00","2020-01-31 23:59:59+00"] \N \N f 1 | |
| 508 202 204 ["2010-01-01 00:00:00+00","2020-01-31 23:59:59+00"] \N \N f 2 | |
| 608 302 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 708 302 304 ["2010-01-01 00:00:00+00","2020-01-31 23:59:59+00"] \N \N f 2 | |
| 808 402 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 908 402 404 ["2010-01-01 00:00:00+00","2020-01-31 23:59:59+00"] \N \N f 2 | |
| 1008 502 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 1108 502 504 ["2010-01-01 00:00:00+00","2020-01-31 23:59:59+00"] \N \N f 2 | |
| 1208 602 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 1308 602 604 ["2010-01-01 00:00:00+00","2020-01-31 23:59:59+00"] \N \N f 2 | |
| 1408 702 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 1508 702 704 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 2 | |
| 1608 802 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 1708 802 804 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 2 | |
| 1808 902 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 1908 902 904 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 2 | |
| 2008 1002 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 2108 1002 1004 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 2 | |
| 2208 3002 204 ["2011-01-01 00:00:00+00","2011-01-31 23:59:59+00"] \N \N f 1 | |
| 2308 3002 304 ["2011-02-01 00:00:00+00","2011-02-28 23:59:59+00"] \N \N f 2 | |
| 2408 3002 404 ["2011-03-01 00:00:00+00","2011-04-30 23:59:59+01"] \N \N f 3 | |
| 2508 3002 504 ["2011-05-01 00:00:00+01","2011-05-11 23:59:59+01"] \N \N f 4 | |
| 2608 3002 604 ["2011-05-12 00:00:00+01","2011-05-27 23:59:59+01"] \N \N f 5 | |
| 2708 3002 704 ["2011-06-01 00:00:00+01","2011-06-04 23:59:59+01"] \N \N f 6 | |
| 2808 3002 804 ["2011-06-05 00:00:00+01","2011-06-14 23:59:59+01"] \N \N f 7 | |
| 2908 3002 904 ["2011-06-15 00:00:00+01","2011-07-31 23:59:59+01"] \N \N f 8 | |
| 3008 3002 1004 ["2011-08-01 00:00:00+01","2011-08-31 23:59:59+01"] \N \N f 9 | |
| 3108 3002 1104 ["2011-09-01 00:00:00+01","2011-09-30 23:59:59+01"] \N \N f 10 | |
| 3208 3002 1204 ["2011-10-01 00:00:00+01","2011-10-31 23:59:59+00"] \N \N f 11 | |
| 3308 3002 1304 ["2011-11-01 00:00:00+00","2011-11-30 23:59:59+00"] \N \N f 12 | |
| 3408 3002 1404 ["2011-12-01 00:00:00+00","2011-12-31 23:59:59+00"] \N \N f 13 | |
| 3508 3002 1504 ["2012-01-01 00:00:00+00","2012-01-31 23:59:59+00"] \N \N f 14 | |
| 3608 3002 1604 ["2012-02-01 00:00:00+00","2012-02-28 23:59:59+00"] \N \N f 15 | |
| 3708 3002 1704 ["2012-03-01 00:00:00+00","2012-04-30 23:59:59+01"] \N \N f 16 | |
| 3808 3002 1804 ["2012-05-01 00:00:00+01","2012-05-11 23:59:59+01"] \N \N f 17 | |
| 3908 3002 1904 ["2012-05-12 00:00:00+01","2012-05-27 23:59:59+01"] \N \N f 18 | |
| 4008 3002 2004 ["2012-06-01 00:00:00+01","2012-06-04 23:59:59+01"] \N \N f 19 | |
| 4108 3002 2104 ["2012-06-05 00:00:00+01","2012-06-14 23:59:59+01"] \N \N f 20 | |
| 4208 3002 2204 ["2012-06-15 00:00:00+01","2012-07-31 23:59:59+01"] \N \N f 21 | |
| 4308 3002 2304 ["2012-08-01 00:00:00+01","2012-08-31 23:59:59+01"] \N \N f 22 | |
| 4408 3002 2404 ["2012-09-01 00:00:00+01","2012-12-31 23:59:59+00"] \N \N f 23 | |
| 4508 3002 401 ["2011-01-01 00:00:00+00",) \N \N f 24 | |
| 4608 1102 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 4708 1202 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 4808 1302 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 4908 1402 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 5008 1502 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 5108 1602 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 5208 1702 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 5308 1802 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 5408 1902 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 5508 2002 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 5608 2102 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 5708 2202 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 5808 2302 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 5908 2402 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 6008 2502 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 6108 2602 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 6208 2702 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 6308 2802 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 6408 2902 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 6508 3002 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 6608 3102 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 6708 3202 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 6808 3302 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 6908 3402 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 7008 3502 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 7108 3602 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 7208 3702 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 7308 3802 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 7408 3902 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 7508 4002 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 7608 4102 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 7708 4202 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 7808 4302 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 7908 4402 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 8008 4502 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 8108 4602 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 8208 4702 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 8308 4802 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 8408 4902 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 8508 5002 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 8608 5102 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 8708 5202 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 8808 5302 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 8908 5402 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 9008 5502 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 9108 5602 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 9208 5702 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 9308 5802 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 9408 5902 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 9508 6002 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 9608 6102 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 9708 6202 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 9808 6302 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 9908 6402 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 10008 6502 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 10108 6602 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 10208 6702 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 10308 6802 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 10408 6902 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 10508 7002 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 10608 7102 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 10708 7202 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 10808 7302 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 10908 7402 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 11008 7502 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 11108 7602 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 11208 7702 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 11308 7802 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 11408 7902 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 11508 8002 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 11608 8102 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 11708 8202 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 11808 8302 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 11908 8402 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 12008 8502 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 12108 8602 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 12208 8702 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 12308 8802 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 12408 8902 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 12508 9002 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 12608 9102 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 12708 9202 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 12808 9302 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 12908 9402 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 13008 9502 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 13108 9602 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 13208 9702 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 13308 9802 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 13408 9902 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 13508 10002 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 13608 10102 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 13708 10202 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 13808 10302 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 13908 10402 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 14008 10502 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 14108 10602 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 14208 10702 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 14308 10802 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 14408 10902 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 14508 11002 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 14608 11102 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 14708 11202 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 14808 11302 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 14908 11402 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 15008 11502 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 15108 11602 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 15208 11702 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 15308 11802 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 15408 11902 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 15508 12002 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 15608 12102 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 15708 12202 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 15808 12302 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 15908 12402 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 16008 12502 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 16108 12602 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 16208 12702 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 16308 12802 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 16408 12902 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 16508 13002 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 16608 13102 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 16708 13202 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 16808 13302 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 16908 13402 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 17008 13502 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 17108 13602 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 17208 13702 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 17308 13802 401 ["2016-01-01 00:00:00+00","2020-12-31 23:59:59+00"] \N \N f 1 | |
| 17408 23202 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 17508 23302 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 17608 23402 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 17708 23602 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 17808 23702 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 17908 23802 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 18008 23902 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 18108 24002 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 18208 24102 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 18308 24202 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 18408 24302 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 18508 24402 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 18608 24502 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 18708 24602 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 18808 25002 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 18908 25102 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 19008 25202 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 19108 25302 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 19208 25402 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 19308 25502 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 19408 27802 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 19508 27902 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 19608 28002 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 19708 28102 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 19808 28202 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 19908 28302 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 20008 28402 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 20108 28502 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 20208 28602 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 20308 28702 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 20408 28802 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 20508 28902 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 20608 29002 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 20708 29102 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 20808 29202 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 20908 29302 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 21008 29402 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 21108 29502 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 21208 14002 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 21308 14102 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 21408 14202 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 21508 14402 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 21608 14502 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 21708 14602 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 21808 14702 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 21908 14802 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 22008 14902 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 22108 15002 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 22208 15102 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 22308 15202 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 22408 15302 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 22508 15402 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 22608 15802 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 22708 15902 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 22808 16002 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 22908 16102 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 23008 16202 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 23108 16302 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 23208 16402 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 23308 16502 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 23408 16602 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 23508 16702 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 23608 16802 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 23708 16902 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 23808 17102 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 23908 17202 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 24008 17302 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 24108 17402 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 24208 17502 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 24308 17602 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 24408 17702 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 24508 18102 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 24608 18202 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 24708 18602 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 24808 18702 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 24908 18802 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 25008 19002 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 25108 19102 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 25208 19202 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 25308 19302 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 25408 19402 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 25508 19502 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 25608 19602 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 25708 19702 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 25808 19802 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 25908 19902 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 26008 20002 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 26108 20102 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 26208 20202 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 26308 20302 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 26408 20402 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 26508 20502 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 26608 20602 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 26708 20702 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 26808 20802 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 26908 20902 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 27008 21002 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 27108 21102 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 27208 21202 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 27308 21302 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 27408 21402 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 27508 21502 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 27608 21602 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 27708 21702 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 27808 21802 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 27908 21902 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 28008 22002 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 28108 22102 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 28208 22202 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 28308 22702 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| 28408 22802 401 ["2010-01-01 09:00:00+00",) \N \N f 2 | |
| \. | |
| -- | |
| -- Data for Name: assetattributes; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY assetattributes (asset_id, name, value) FROM stdin; | |
| 2 make "Alfa Romeo" | |
| 2 model "4 C Spider" | |
| 2 variant 1750 | |
| 2 colour "Light Violet" | |
| 2 mileage 1000 | |
| 2 order_id "O-17453-16" | |
| 2 mileage_at_delivery 10 | |
| 2 tax_horsepower 90 | |
| 2 co2_rejection 238 | |
| 2 vin "1GNFC13JX7R297335" | |
| 2 type "CV" | |
| 2 energy "D" | |
| 2 seat 4 | |
| 2 gross_weight 1925 | |
| 2 tank 44 | |
| 2 transmission "Automatic" | |
| 102 make "Audi" | |
| 102 model "A1" | |
| 102 variant "1.0 TFSI SE 95PS 3dr" | |
| 102 colour "Night Blue" | |
| 102 mileage 2000 | |
| 102 order_id "O-27331-11" | |
| 102 mileage_at_delivery 20 | |
| 102 tax_horsepower 89 | |
| 102 co2_rejection 286 | |
| 102 vin "1GC2KVCG1CZ182400" | |
| 102 type "CV" | |
| 102 energy "D" | |
| 102 seat 4 | |
| 102 gross_weight 1475 | |
| 102 tank 50 | |
| 102 transmission "Automatic" | |
| 102 license "TH-494-GX" | |
| 102 registrationdate "2015-06-24T09:35:50.899Z" | |
| 102 entry_date "2015-01-29" | |
| 202 make "Renault" | |
| 202 model "Clio IV" | |
| 202 variant "Expression 1.2 16V 75 5dr" | |
| 202 colour "White" | |
| 202 mileage 57407 | |
| 202 order_id "O-13137-29" | |
| 202 mileage_at_delivery 12 | |
| 202 tax_horsepower 120 | |
| 202 co2_rejection 134 | |
| 202 vin "1GTGG25V531191990" | |
| 202 type "CV" | |
| 202 energy "D" | |
| 202 seat 4 | |
| 202 gross_weight 1807 | |
| 202 tank 40 | |
| 202 transmission "Automatic" | |
| 202 license "ZZ-666-ZZ" | |
| 202 registrationdate "2015-06-24T09:35:50.899Z" | |
| 202 entry_date "2015-01-30" | |
| 202 pool 5 | |
| 202 parking_place "M45" | |
| 202 certificate_date "2015-01-30" | |
| 202 first_registration "2015-01-29" | |
| 302 make "Alfa Romeo" | |
| 302 model "4 C Spider" | |
| 302 variant 1750 | |
| 302 colour "Light Buff" | |
| 302 mileage 31273 | |
| 302 order_id "O-50964-5" | |
| 302 mileage_at_delivery 19 | |
| 302 tax_horsepower 123 | |
| 302 co2_rejection 190 | |
| 302 vin "5HD1CGP176K495417" | |
| 302 type "CV" | |
| 302 energy "D" | |
| 302 seat 4 | |
| 302 gross_weight 1992 | |
| 302 tank 47 | |
| 302 transmission "Automatic" | |
| 302 license "VM-845-WZ" | |
| 302 registrationdate "2014-11-07T11:26:31.000Z" | |
| 302 entry_date "2015-06-26" | |
| 302 pool 5 | |
| 302 parking_place "F12" | |
| 302 certificate_date "2015-06-26" | |
| 302 first_registration "2015-06-25" | |
| 402 make "Audi" | |
| 402 model "A1 (facelift)" | |
| 402 variant "1.0 TFSI SE 95PS 3dr" | |
| 402 colour "Ruby" | |
| 402 mileage 49435 | |
| 402 order_id "O-42180-50" | |
| 402 mileage_at_delivery 23 | |
| 402 tax_horsepower 89 | |
| 402 co2_rejection 278 | |
| 402 vin "3C7WRSAL0DG534415" | |
| 402 type "CV" | |
| 402 energy "D" | |
| 402 seat 4 | |
| 402 gross_weight 1564 | |
| 402 tank 47 | |
| 402 transmission "Automatic" | |
| 402 license "GT-180-CS" | |
| 402 registrationdate "2014-12-09T11:26:31.000Z" | |
| 402 entry_date "2015-05-18" | |
| 402 pool 1 | |
| 402 parking_place "C18" | |
| 402 certificate_date "2015-05-18" | |
| 402 first_registration "2015-05-16" | |
| 502 make "Audi" | |
| 502 model "Q3 (facelift)" | |
| 502 variant "1.4 TFSI SE 150PS 5dr" | |
| 502 colour "Turquoise Blue" | |
| 502 mileage 36081 | |
| 502 order_id "O-51272-99" | |
| 502 mileage_at_delivery 20 | |
| 502 tax_horsepower 84 | |
| 502 co2_rejection 297 | |
| 502 vin "1FAFP5820YG231627" | |
| 502 type "CV" | |
| 502 energy "D" | |
| 502 seat 4 | |
| 502 gross_weight 1765 | |
| 502 tank 40 | |
| 502 transmission "Manual" | |
| 502 license "TH-260-LR" | |
| 502 registrationdate "2014-12-28T11:26:31.000Z" | |
| 502 entry_date "2015-03-26" | |
| 502 pool 3 | |
| 502 parking_place "B37" | |
| 502 certificate_date "2015-03-26" | |
| 502 first_registration "2015-03-24" | |
| 602 make "Audi" | |
| 602 model "TT Roadster" | |
| 602 variant "2.0 TDI ultra Sport 2dr" | |
| 602 colour "French Grey" | |
| 602 mileage 52036 | |
| 602 order_id "O-39845-31" | |
| 602 mileage_at_delivery 11 | |
| 602 tax_horsepower 238 | |
| 602 co2_rejection 176 | |
| 602 vin "KNAFU4A28D5721209" | |
| 602 type "CV" | |
| 602 energy "D" | |
| 602 seat 4 | |
| 602 gross_weight 1042 | |
| 602 tank 48 | |
| 602 transmission "Manual" | |
| 602 license "EO-576-EG" | |
| 602 registrationdate "2014-11-08T11:26:31.000Z" | |
| 602 entry_date "2015-06-14" | |
| 602 pool 4 | |
| 602 parking_place "E14" | |
| 602 certificate_date "2015-06-14" | |
| 602 first_registration "2015-06-14" | |
| 702 make "Audi" | |
| 702 model "Q7" | |
| 702 variant "3.0 TDI 218PS quattro SE 5dr" | |
| 702 colour "Strong Blue" | |
| 702 mileage 18390 | |
| 702 order_id "O-32811-35" | |
| 702 mileage_at_delivery 20 | |
| 702 tax_horsepower 286 | |
| 702 co2_rejection 300 | |
| 702 vin "3HSCPSBNX5N043117" | |
| 702 type "CV" | |
| 702 energy "D" | |
| 702 seat 4 | |
| 702 gross_weight 1367 | |
| 702 tank 45 | |
| 702 transmission "Manual" | |
| 702 license "KH-324-SE" | |
| 702 registrationdate "2015-02-14T11:26:31.000Z" | |
| 702 entry_date "2015-02-24" | |
| 702 pool 3 | |
| 702 parking_place "B41" | |
| 702 certificate_date "2015-02-24" | |
| 702 first_registration "2015-02-24" | |
| 802 make "Audi" | |
| 802 model "R8 Coupé" | |
| 802 variant "5.2 FSI quattro S tronic 2dr" | |
| 802 colour "Deep Brunswick Green" | |
| 802 mileage 41289 | |
| 802 order_id "O-32144-57" | |
| 802 mileage_at_delivery 15 | |
| 802 tax_horsepower 134 | |
| 802 co2_rejection 267 | |
| 802 vin "4A4MN21S55E627827" | |
| 802 type "CV" | |
| 802 energy "D" | |
| 802 seat 4 | |
| 802 gross_weight 1771 | |
| 802 tank 45 | |
| 802 transmission "Manual" | |
| 802 license "MN-307-KN" | |
| 802 registrationdate "2015-03-07T11:26:31.000Z" | |
| 802 entry_date "2015-06-15" | |
| 802 pool 5 | |
| 802 parking_place "G38" | |
| 802 certificate_date "2015-06-15" | |
| 802 first_registration "2015-06-15" | |
| 902 make "Audi" | |
| 902 model "A4" | |
| 902 variant "SE 1.4 TFSI 150PS 4dr" | |
| 902 colour "Light Brunswick Green" | |
| 902 mileage 14339 | |
| 902 order_id "O-35892-8" | |
| 902 mileage_at_delivery 23 | |
| 902 tax_horsepower 190 | |
| 902 co2_rejection 198 | |
| 902 vin "5HD1PS8138K919586" | |
| 902 type "CV" | |
| 902 energy "D" | |
| 902 seat 5 | |
| 902 gross_weight 1556 | |
| 902 tank 46 | |
| 902 transmission "Manual" | |
| 902 license "AF-985-WC" | |
| 902 registrationdate "2014-08-04T11:26:31.000Z" | |
| 902 entry_date "2015-01-07" | |
| 902 pool 2 | |
| 902 parking_place "E39" | |
| 902 certificate_date "2015-01-07" | |
| 902 first_registration "2015-01-07" | |
| 1002 make "Bmw" | |
| 1002 model "1 reeks (facelift)" | |
| 1002 variant "M135i 5dr" | |
| 1002 colour "Light Violet" | |
| 1002 mileage 46263 | |
| 1002 order_id "O-41714-11" | |
| 1002 mileage_at_delivery 19 | |
| 1002 tax_horsepower 278 | |
| 1002 co2_rejection 90 | |
| 1002 vin "1FTRF122X5KF04223" | |
| 1002 type "CV" | |
| 1002 energy "D" | |
| 1002 seat 5 | |
| 1002 gross_weight 1947 | |
| 1002 tank 49 | |
| 1002 transmission "Manual" | |
| 1002 license "YC-847-AF" | |
| 1002 registrationdate "2015-01-12T11:26:31.000Z" | |
| 1002 entry_date "2015-03-15" | |
| 1002 pool 2 | |
| 1002 parking_place "D38" | |
| 1002 certificate_date "2015-01-15" | |
| 1002 first_registration "2015-01-15" | |
| 1102 make "Bmw" | |
| 1102 model "3 reeks (facelift)" | |
| 1102 variant "320i SE GT 5dr" | |
| 1102 colour "International Orange" | |
| 1102 mileage 36488 | |
| 1102 order_id "O-29047-94" | |
| 1102 mileage_at_delivery 21 | |
| 1102 tax_horsepower 297 | |
| 1102 co2_rejection 89 | |
| 1102 vin "1J4GZ88Y0PC679283" | |
| 1102 type "CV" | |
| 1102 energy "D" | |
| 1102 seat 4 | |
| 1102 gross_weight 1649 | |
| 1102 tank 43 | |
| 1102 transmission "Manual" | |
| 1102 license "NU-566-SF" | |
| 1102 registrationdate "2014-09-30T11:26:31.000Z" | |
| 1102 entry_date "2015-05-19" | |
| 1102 pool 1 | |
| 1102 parking_place "Q42" | |
| 1102 certificate_date "2015-03-15" | |
| 1102 first_registration "2015-03-15" | |
| 1202 make "Citroen" | |
| 1202 model "Berlingo (facelift)" | |
| 1202 variant "BlueHDi 120 S&S 6-speed XTR 5dr" | |
| 1202 colour "Opaline Green" | |
| 1202 mileage 42574 | |
| 1202 order_id "O-21754-19" | |
| 1202 mileage_at_delivery 10 | |
| 1202 tax_horsepower 176 | |
| 1202 co2_rejection 120 | |
| 1202 vin "1GTCS14Z5N0576390" | |
| 1202 type "CV" | |
| 1202 energy "D" | |
| 1202 seat 4 | |
| 1202 gross_weight 1647 | |
| 1202 tank 44 | |
| 1202 transmission "Manual" | |
| 1202 license "EX-812-SB" | |
| 1202 registrationdate "2014-07-18T11:26:31.000Z" | |
| 1202 entry_date "2015-05-16" | |
| 1202 pool 4 | |
| 1202 parking_place "F50" | |
| 1202 certificate_date "2015-05-19" | |
| 1202 first_registration "2015-05-19" | |
| 1302 make "Citroen" | |
| 1302 model "Jumpy" | |
| 1302 variant "PureTech 68 VT 5dr" | |
| 1302 colour "Apricot" | |
| 1302 mileage 12893 | |
| 1302 order_id "O-29682-95" | |
| 1302 mileage_at_delivery 15 | |
| 1302 tax_horsepower 300 | |
| 1302 co2_rejection 123 | |
| 1302 vin "1G2NE14D9JC616410" | |
| 1302 type "CV" | |
| 1302 energy "D" | |
| 1302 seat 4 | |
| 1302 gross_weight 1278 | |
| 1302 tank 47 | |
| 1302 transmission "Automatic" | |
| 1302 license "BC-427-HU" | |
| 1302 registrationdate "2014-08-27T11:26:31.000Z" | |
| 1302 entry_date "2015-06-06" | |
| 1302 pool 3 | |
| 1302 parking_place "M45" | |
| 1302 certificate_date "2015-05-16" | |
| 1302 first_registration "2015-05-16" | |
| 1402 make "Fiat" | |
| 1402 model "500 X" | |
| 1402 variant "Pop Star 1.3 MultiJet 95hp 5dr" | |
| 1402 colour "Camouflage Red" | |
| 1402 mileage 12851 | |
| 1402 order_id "O-35131-71" | |
| 1402 mileage_at_delivery 27 | |
| 1402 tax_horsepower 267 | |
| 1402 co2_rejection 89 | |
| 1402 vin "1GCHK23G77F171630" | |
| 1402 type "CV" | |
| 1402 energy "D" | |
| 1402 seat 4 | |
| 1402 gross_weight 1747 | |
| 1402 tank 44 | |
| 1402 transmission "Automatic" | |
| 1402 license "NU-390-TE" | |
| 1402 registrationdate "2015-05-07T11:26:31.000Z" | |
| 1402 entry_date "2015-05-03" | |
| 1402 pool 4 | |
| 1402 parking_place "I48" | |
| 1402 certificate_date "2015-06-06" | |
| 1402 first_registration "2015-06-06" | |
| 1502 make "Fiat" | |
| 1502 model "Doblo" | |
| 1502 variant "1.6 16v Multijet 120 Lounge High Roof 5dr" | |
| 1502 colour "Deep Cream" | |
| 1502 mileage 23757 | |
| 1502 order_id "O-42999-35" | |
| 1502 mileage_at_delivery 12 | |
| 1502 tax_horsepower 198 | |
| 1502 co2_rejection 84 | |
| 1502 vin "1GKDT13W3S2580631" | |
| 1502 type "CV" | |
| 1502 energy "D" | |
| 1502 seat 4 | |
| 1502 gross_weight 1977 | |
| 1502 tank 45 | |
| 1502 transmission "Automatic" | |
| 1502 license "VT-463-VP" | |
| 1502 registrationdate "2014-09-19T11:26:31.000Z" | |
| 1502 entry_date "2015-04-24" | |
| 1502 pool 5 | |
| 1502 parking_place "Y16" | |
| 1502 certificate_date "2015-05-05" | |
| 1502 first_registration "2015-05-03" | |
| 1602 make "Ford" | |
| 1602 model "S-Max" | |
| 1602 variant "Zetec 2.0 Duratorq TDCi 120PS 5dr" | |
| 1602 colour "Dove Grey" | |
| 1602 mileage 31771 | |
| 1602 order_id "O-26578-9" | |
| 1602 mileage_at_delivery 40 | |
| 1602 tax_horsepower 95 | |
| 1602 co2_rejection 81 | |
| 1602 vin "1B7GL26Z61S296297" | |
| 1602 type "CV" | |
| 1602 energy "D" | |
| 1602 seat 4 | |
| 1602 gross_weight 1084 | |
| 1602 tank 43 | |
| 1602 transmission "Automatic" | |
| 1602 license "MT-729-IU" | |
| 1602 registrationdate "2014-12-31T11:26:31.000Z" | |
| 1602 entry_date "2015-03-11" | |
| 1602 pool 5 | |
| 1602 parking_place "G35" | |
| 1602 certificate_date "2015-04-25" | |
| 1602 first_registration "2015-04-24" | |
| 1702 make "Ford" | |
| 1702 model "C-Max" | |
| 1702 variant "Zetec 1.5 TDCi 105PS Econetic 5dr" | |
| 1702 colour "Peacock Blue" | |
| 1702 mileage 42858 | |
| 1702 order_id "O-34204-92" | |
| 1702 mileage_at_delivery 26 | |
| 1702 tax_horsepower 85 | |
| 1702 co2_rejection 300 | |
| 1702 vin "1GNCT18W7S2229972" | |
| 1702 type "CV" | |
| 1702 energy "D" | |
| 1702 seat 4 | |
| 1702 gross_weight 1816 | |
| 1702 tank 45 | |
| 1702 transmission "Manual" | |
| 1702 license "XW-639-KO" | |
| 1702 registrationdate "2015-01-26T11:26:31.000Z" | |
| 1702 entry_date "2015-06-08" | |
| 1702 pool 5 | |
| 1702 parking_place "J41" | |
| 1702 certificate_date "2015-03-12" | |
| 1702 first_registration "2015-03-11" | |
| 1802 make "Ford" | |
| 1802 model "Mustang" | |
| 1802 variant "Convertible 2.3 EcoBoost 2dr" | |
| 1802 colour "Red Oxide" | |
| 1802 mileage 31059 | |
| 1802 order_id "O-32478-76" | |
| 1802 mileage_at_delivery 15 | |
| 1802 tax_horsepower 164 | |
| 1802 co2_rejection 98 | |
| 1802 vin "2GTEC33J491180684" | |
| 1802 type "CV" | |
| 1802 energy "D" | |
| 1802 seat 5 | |
| 1802 gross_weight 1494 | |
| 1802 tank 48 | |
| 1802 transmission "Manual" | |
| 1802 license "VP-504-PH" | |
| 1802 registrationdate "2014-11-23T11:26:31.000Z" | |
| 1802 entry_date "2015-05-04" | |
| 1802 pool 3 | |
| 1802 parking_place "M33" | |
| 1802 certificate_date "2015-06-09" | |
| 1802 first_registration "2015-06-08" | |
| 1902 make "Ford " | |
| 1902 model "Galaxy" | |
| 1902 variant "Zetec 2.0 Duratorq TDCi 120PS 5dr" | |
| 1902 colour "Grass Green" | |
| 1902 mileage 51874 | |
| 1902 order_id "O-51043-76" | |
| 1902 mileage_at_delivery 10 | |
| 1902 tax_horsepower 198 | |
| 1902 co2_rejection 190 | |
| 1902 vin "1HD1DDL14SY604612" | |
| 1902 type "CV" | |
| 1902 energy "D" | |
| 1902 seat 4 | |
| 1902 gross_weight 1779 | |
| 1902 tank 44 | |
| 1902 transmission "Manual" | |
| 1902 license "NR-443-WZ" | |
| 1902 registrationdate "2014-08-26T11:26:31.000Z" | |
| 1902 entry_date "2015-04-09" | |
| 1902 pool 5 | |
| 1902 parking_place "V33" | |
| 1902 certificate_date "2015-05-04" | |
| 1902 first_registration "2015-05-04" | |
| 2002 make "Ford" | |
| 2002 model "Edge" | |
| 2002 variant "Zetec 180PS 2.0-litre TDCi AWD 6sp Manual" | |
| 2002 colour "Dark Weatherwork Grey" | |
| 2002 mileage 37068 | |
| 2002 order_id "O-54626-52" | |
| 2002 mileage_at_delivery 20 | |
| 2002 tax_horsepower 257 | |
| 2002 co2_rejection 278 | |
| 2002 vin "1G1AW19R1E6875885" | |
| 2002 type "CV" | |
| 2002 energy "D" | |
| 2002 seat 4 | |
| 2002 gross_weight 1339 | |
| 2002 tank 44 | |
| 2002 transmission "Manual" | |
| 2002 license "EJ-769-MC" | |
| 2002 registrationdate "2015-06-29T11:26:31.000Z" | |
| 2002 entry_date "2015-02-02" | |
| 2002 pool 5 | |
| 2002 parking_place "U45" | |
| 2002 certificate_date "2015-04-09" | |
| 2002 first_registration "2015-04-09" | |
| 2102 make "Honda" | |
| 2102 model "Civic " | |
| 2102 variant "1.6 i-DTEC SE Plus Navi 5dr" | |
| 2102 colour "Peacock Blue" | |
| 2102 mileage 41162 | |
| 2102 order_id "O-45390-46" | |
| 2102 mileage_at_delivery 12 | |
| 2102 tax_horsepower 81 | |
| 2102 co2_rejection 297 | |
| 2102 vin "1N6BF0KL9CN199469" | |
| 2102 type "CV" | |
| 2102 energy "D" | |
| 2102 seat 4 | |
| 2102 gross_weight 1808 | |
| 2102 tank 46 | |
| 2102 transmission "Manual" | |
| 2102 license "XI-884-ID" | |
| 2102 registrationdate "2015-02-19T11:26:31.000Z" | |
| 2102 entry_date "2015-04-13" | |
| 2102 pool 1 | |
| 2102 parking_place "G49" | |
| 2102 certificate_date "2015-02-02" | |
| 2102 first_registration "2015-02-02" | |
| 2202 make "Honda" | |
| 2202 model "CR-V" | |
| 2202 variant "SE Plus 1.6 i-DTEC 5dr" | |
| 2202 colour "Currant Red" | |
| 2202 mileage 56904 | |
| 2202 order_id "O-23245-53" | |
| 2202 mileage_at_delivery 19 | |
| 2202 tax_horsepower 300 | |
| 2202 co2_rejection 176 | |
| 2202 vin "1FTNF20S52EC72986" | |
| 2202 type "CV" | |
| 2202 energy "D" | |
| 2202 seat 4 | |
| 2202 gross_weight 1824 | |
| 2202 tank 50 | |
| 2202 transmission "Manual" | |
| 2202 license "MU-906-EC" | |
| 2202 registrationdate "2015-02-09T11:26:31.000Z" | |
| 2202 entry_date "2015-01-30" | |
| 2202 pool 3 | |
| 2202 parking_place "Z22" | |
| 2202 certificate_date "2015-04-13" | |
| 2202 first_registration "2015-04-13" | |
| 2302 make "Honda" | |
| 2302 model "HR-V" | |
| 2302 variant "1.6 i-DTEC SE Man 5dr" | |
| 2302 colour "Grapefruit" | |
| 2302 mileage 24300 | |
| 2302 order_id "O-18187-57" | |
| 2302 mileage_at_delivery 23 | |
| 2302 tax_horsepower 98 | |
| 2302 co2_rejection 300 | |
| 2302 vin "1HSMKAZN57H309241" | |
| 2302 type "CV" | |
| 2302 energy "D" | |
| 2302 seat 4 | |
| 2302 gross_weight 1828 | |
| 2302 tank 42 | |
| 2302 transmission "Manual" | |
| 2302 license "SB-968-HM" | |
| 2302 registrationdate "2015-02-22T11:26:31.000Z" | |
| 2302 entry_date "2015-06-26" | |
| 2302 pool 3 | |
| 2302 parking_place "T18" | |
| 2302 certificate_date "2015-04-21" | |
| 2302 first_registration "2015-04-21" | |
| 2402 make "Honda" | |
| 2402 model "Jazz" | |
| 2402 variant "1.3 i-VTEC S CVT 5dr" | |
| 2402 colour "Olive Drab" | |
| 2402 mileage 43964 | |
| 2402 order_id "O-45969-63" | |
| 2402 mileage_at_delivery 20 | |
| 2402 tax_horsepower 190 | |
| 2402 co2_rejection 238 | |
| 2402 vin "1FTYR15E51TA55160" | |
| 2402 type "CV" | |
| 2402 energy "D" | |
| 2402 seat 5 | |
| 2402 gross_weight 1082 | |
| 2402 tank 44 | |
| 2402 transmission "Automatic" | |
| 2402 license "NC-174-ZS" | |
| 2402 registrationdate "2014-12-10T11:26:31.000Z" | |
| 2402 entry_date "2015-05-18" | |
| 2402 pool 5 | |
| 2402 parking_place "A47" | |
| 2402 certificate_date "2015-04-01" | |
| 2402 first_registration "2015-04-01" | |
| 2502 make "Hyundai" | |
| 2502 model "i20 5-deurs" | |
| 2502 variant "1.1 CRDi 75PS S Blue 5dr" | |
| 2502 colour "Camouflage Beige" | |
| 2502 mileage 47582 | |
| 2502 order_id "O-16159-17" | |
| 2502 mileage_at_delivery 11 | |
| 2502 tax_horsepower 278 | |
| 2502 co2_rejection 286 | |
| 2502 vin "1FV6HLCA61HH01208" | |
| 2502 type "PV" | |
| 2502 energy "P" | |
| 2502 seat 4 | |
| 2502 gross_weight 1083 | |
| 2502 tank 40 | |
| 2502 transmission "Automatic" | |
| 2502 license "JM-458-TI" | |
| 2502 registrationdate "2014-10-05T11:26:31.000Z" | |
| 2502 entry_date "2015-03-26" | |
| 2502 pool 1 | |
| 2502 parking_place "Y15" | |
| 2502 certificate_date "2015-01-30" | |
| 2502 first_registration "2015-01-30" | |
| 2602 make "Hyundai" | |
| 2602 model "i20 coupé" | |
| 2602 variant "1.0 100PS SE 5dr" | |
| 2602 colour "Currant Red" | |
| 2602 mileage 33509 | |
| 2602 order_id "O-36019-88" | |
| 2602 mileage_at_delivery 20 | |
| 2602 tax_horsepower 297 | |
| 2602 co2_rejection 134 | |
| 2602 vin "1D7HU16ZX3J525963" | |
| 2602 type "PV" | |
| 2602 energy "P" | |
| 2602 seat 4 | |
| 2602 gross_weight 1610 | |
| 2602 tank 48 | |
| 2602 transmission "Manual" | |
| 2602 license "JX-754-CK" | |
| 2602 registrationdate "2015-07-14T11:26:31.000Z" | |
| 2602 entry_date "2015-06-14" | |
| 2602 pool 5 | |
| 2602 parking_place "P33" | |
| 2602 certificate_date "2015-05-16" | |
| 2602 first_registration "2015-05-16" | |
| 2702 make "Hyundai" | |
| 2702 model "i30 (facelift)" | |
| 2702 variant "1.6 CRDi 110PS Blue Drive S 5dr" | |
| 2702 colour "Middle Brunswick Green" | |
| 2702 mileage 18966 | |
| 2702 order_id "O-12753-17" | |
| 2702 mileage_at_delivery 15 | |
| 2702 tax_horsepower 176 | |
| 2702 co2_rejection 273 | |
| 2702 vin "1GBJ7D1B1GV191579" | |
| 2702 type "PV" | |
| 2702 energy "P" | |
| 2702 seat 4 | |
| 2702 gross_weight 1043 | |
| 2702 tank 42 | |
| 2702 transmission "Manual" | |
| 2702 license "VA-738-SI" | |
| 2702 registrationdate "2015-03-29T11:26:31.000Z" | |
| 2702 entry_date "2015-02-24" | |
| 2702 pool 1 | |
| 2702 parking_place "Y44" | |
| 2702 certificate_date "2015-01-19" | |
| 2702 first_registration "2015-01-19" | |
| 2802 make "Hyundai" | |
| 2802 model "i40 (facelift)" | |
| 2802 variant "S 1.7 CRDi 115PS Blue Drive 5dr" | |
| 2802 colour "Smoke Grey" | |
| 2802 mileage 14456 | |
| 2802 order_id "O-36964-60" | |
| 2802 mileage_at_delivery 15 | |
| 2802 tax_horsepower 300 | |
| 2802 co2_rejection 164 | |
| 2802 vin "1GT01YE85FZ164990" | |
| 2802 type "PV" | |
| 2802 energy "P" | |
| 2802 seat 4 | |
| 2802 gross_weight 1277 | |
| 2802 tank 45 | |
| 2802 transmission "Manual" | |
| 2802 license "VE-230-SJ" | |
| 2802 registrationdate "2015-05-01T11:26:31.000Z" | |
| 2802 entry_date "2015-06-15" | |
| 2802 pool 1 | |
| 2802 parking_place "O27" | |
| 2802 certificate_date "2015-06-26" | |
| 2802 first_registration "2015-06-26" | |
| 2902 make "Jeep" | |
| 2902 model "Renegade" | |
| 2902 variant "1.6 MultiJet II 120hp SPORT 5dr" | |
| 2902 colour "Night" | |
| 2902 mileage 20634 | |
| 2902 order_id "O-30314-91" | |
| 2902 mileage_at_delivery 10 | |
| 2902 tax_horsepower 267 | |
| 2902 co2_rejection 198 | |
| 2902 vin "KNDPBCA26C7393184" | |
| 2902 type "CV" | |
| 2902 energy "D" | |
| 2902 seat 4 | |
| 2902 gross_weight 1077 | |
| 2902 tank 40 | |
| 2902 transmission "Manual" | |
| 2902 license "GK-487-FS" | |
| 2902 registrationdate "2014-12-31T11:26:31.000Z" | |
| 2902 entry_date "2015-01-07" | |
| 2902 pool 5 | |
| 2902 parking_place "S46" | |
| 2902 certificate_date "2015-01-27" | |
| 2902 first_registration "2015-01-27" | |
| 3002 make "Kia" | |
| 3002 model "Sorento" | |
| 3002 variant "2.2 CRDi 4WD 7-seat KX-1 5dr" | |
| 3002 colour "Roundel Blue" | |
| 3002 mileage 49828 | |
| 3002 order_id "O-12871-42" | |
| 3002 mileage_at_delivery 10 | |
| 3002 tax_horsepower 198 | |
| 3002 co2_rejection 257 | |
| 3002 vin "WDDDJ7HB2BA125842" | |
| 3002 type "CV" | |
| 3002 energy "D" | |
| 3002 seat 4 | |
| 3002 gross_weight 1968 | |
| 3002 tank 46 | |
| 3002 transmission "Manual" | |
| 3002 license "XT-845-ZS" | |
| 3002 registrationdate "2015-04-14T11:26:31.000Z" | |
| 3002 entry_date "2015-01-30" | |
| 3002 pool 4 | |
| 3002 parking_place "J36" | |
| 3002 certificate_date "2015-05-23" | |
| 3002 first_registration "2015-05-23" | |
| 3102 make "Kia" | |
| 3102 model "Venga (facelift)" | |
| 3102 variant "1.4 CRDI MY15 Venga '2' 5dr" | |
| 3102 colour "Eau-De-Nil" | |
| 3102 mileage 35388 | |
| 3102 order_id "O-46698-42" | |
| 3102 mileage_at_delivery 20 | |
| 3102 tax_horsepower 95 | |
| 3102 co2_rejection 90 | |
| 3102 vin "1GTEK19W5VE529516" | |
| 3102 type "CV" | |
| 3102 energy "D" | |
| 3102 seat 4 | |
| 3102 gross_weight 1815 | |
| 3102 tank 50 | |
| 3102 transmission "Manual" | |
| 3102 license "OI-266-YB" | |
| 3102 registrationdate "2014-10-27T11:26:31.000Z" | |
| 3102 entry_date "2015-06-26" | |
| 3102 pool 3 | |
| 3102 parking_place "B35" | |
| 3102 certificate_date "2015-02-26" | |
| 3102 first_registration "2015-02-26" | |
| 3202 make "Kia" | |
| 3202 model "Rio (facelift)" | |
| 3202 variant "1.1 CRDI 1 EcoDynamics 5dr" | |
| 3202 colour "Post Office Red Cherry" | |
| 3202 mileage 28027 | |
| 3202 order_id "O-27132-32" | |
| 3202 mileage_at_delivery 12 | |
| 3202 tax_horsepower 85 | |
| 3202 co2_rejection 89 | |
| 3202 vin "1FMDA31U6KZA84045" | |
| 3202 type "CV" | |
| 3202 energy "D" | |
| 3202 seat 4 | |
| 3202 gross_weight 1553 | |
| 3202 tank 40 | |
| 3202 transmission "Manual" | |
| 3202 license "NH-975-GK" | |
| 3202 registrationdate "2015-06-05T11:26:31.000Z" | |
| 3202 entry_date "2015-05-18" | |
| 3202 pool 4 | |
| 3202 parking_place "G25" | |
| 3202 certificate_date "2015-01-26" | |
| 3202 first_registration "2015-01-24" | |
| 3302 make "Kia" | |
| 3302 model "Picanto (facelift)" | |
| 3302 variant "1.0 2 5dr" | |
| 3302 colour "Currant Red" | |
| 3302 mileage 37429 | |
| 3302 order_id "O-59590-2" | |
| 3302 mileage_at_delivery 19 | |
| 3302 tax_horsepower 164 | |
| 3302 co2_rejection 120 | |
| 3302 vin "1FVXTWEBXYHG48694" | |
| 3302 type "CV" | |
| 3302 energy "D" | |
| 3302 seat 5 | |
| 3302 gross_weight 1775 | |
| 3302 tank 47 | |
| 3302 transmission "Manual" | |
| 3302 license "JC-470-BU" | |
| 3302 registrationdate "2014-10-07T11:26:31.000Z" | |
| 3302 entry_date "2015-03-26" | |
| 3302 pool 4 | |
| 3302 parking_place "J40" | |
| 3302 certificate_date "2015-06-29" | |
| 3302 first_registration "2015-06-28" | |
| 3402 make "Kia" | |
| 3402 model "Cee'd (facelift)" | |
| 3402 variant "'1' 1.6 CRDi 134bhp 6-speed manual ISG 5dr" | |
| 3402 colour "Oxford Blue" | |
| 3402 mileage 49555 | |
| 3402 order_id "O-52237-96" | |
| 3402 mileage_at_delivery 23 | |
| 3402 tax_horsepower 198 | |
| 3402 co2_rejection 123 | |
| 3402 vin "1GNDX06E7WD247251" | |
| 3402 type "CV" | |
| 3402 energy "D" | |
| 3402 seat 4 | |
| 3402 gross_weight 1807 | |
| 3402 tank 47 | |
| 3402 transmission "Manual" | |
| 3402 license "TX-971-WQ" | |
| 3402 registrationdate "2015-02-18T11:26:31.000Z" | |
| 3402 entry_date "2015-06-14" | |
| 3402 pool 3 | |
| 3402 parking_place "Z18" | |
| 3402 certificate_date "2015-03-25" | |
| 3402 first_registration "2015-03-23" | |
| 3502 make "Kia" | |
| 3502 model "Optima" | |
| 3502 variant "''3' 1.7 CRDi 139bhp 6-speed manual ISG 4dr" | |
| 3502 colour "Dove Grey" | |
| 3502 mileage 16292 | |
| 3502 order_id "O-12814-12" | |
| 3502 mileage_at_delivery 20 | |
| 3502 tax_horsepower 257 | |
| 3502 co2_rejection 89 | |
| 3502 vin "2HSCNAPR26C179840" | |
| 3502 type "CV" | |
| 3502 energy "D" | |
| 3502 seat 4 | |
| 3502 gross_weight 1116 | |
| 3502 tank 47 | |
| 3502 transmission "Manual" | |
| 3502 license "ID-156-TI" | |
| 3502 registrationdate "2014-10-30T11:26:31.000Z" | |
| 3502 entry_date "2015-02-24" | |
| 3502 pool 4 | |
| 3502 parking_place "I40" | |
| 3502 certificate_date "2015-01-29" | |
| 3502 first_registration "2015-01-27" | |
| 3602 make "Kia" | |
| 3602 model "Sportage" | |
| 3602 variant "1.6 GDi 1 2WD 5dr" | |
| 3602 colour "Pale Roundel Red" | |
| 3602 mileage 48279 | |
| 3602 order_id "O-14097-64" | |
| 3602 mileage_at_delivery 11 | |
| 3602 tax_horsepower 90 | |
| 3602 co2_rejection 84 | |
| 3602 vin "SAJHN1240VC864497" | |
| 3602 type "CV" | |
| 3602 energy "D" | |
| 3602 seat 4 | |
| 3602 gross_weight 1540 | |
| 3602 tank 47 | |
| 3602 transmission "Manual" | |
| 3602 license "TQ-171-PQ" | |
| 3602 registrationdate "2015-03-21T11:26:31.000Z" | |
| 3602 entry_date "2015-06-15" | |
| 3602 pool 1 | |
| 3602 parking_place "B33" | |
| 3602 certificate_date "2015-01-06" | |
| 3602 first_registration "2015-01-04" | |
| 3702 make "Mazda" | |
| 3702 model 2 | |
| 3702 variant "1.5 105ps SE-L 5dr" | |
| 3702 colour "Light French Blue" | |
| 3702 mileage 55980 | |
| 3702 order_id "O-59083-70" | |
| 3702 mileage_at_delivery 20 | |
| 3702 tax_horsepower 89 | |
| 3702 co2_rejection 238 | |
| 3702 vin "4B3AU42Y0VE015997" | |
| 3702 type "CV" | |
| 3702 energy "D" | |
| 3702 seat 4 | |
| 3702 gross_weight 1850 | |
| 3702 tank 45 | |
| 3702 transmission "Manual" | |
| 3702 license "TD-968-YC" | |
| 3702 registrationdate "2015-06-14T11:26:31.000Z" | |
| 3702 entry_date "2015-01-07" | |
| 3702 pool 1 | |
| 3702 parking_place "S12" | |
| 3702 certificate_date "2015-05-25" | |
| 3702 first_registration "2015-05-25" | |
| 3802 make "Mazda" | |
| 3802 model "6 (facelift)" | |
| 3802 variant "2.2 150 SE-L Nav 5dr" | |
| 3802 colour "Dark Camouflage Brown" | |
| 3802 mileage 16651 | |
| 3802 order_id "O-22738-64" | |
| 3802 mileage_at_delivery 15 | |
| 3802 tax_horsepower 120 | |
| 3802 co2_rejection 286 | |
| 3802 vin "VTTNJ48A562164698" | |
| 3802 type "CV" | |
| 3802 energy "D" | |
| 3802 seat 4 | |
| 3802 gross_weight 1484 | |
| 3802 tank 42 | |
| 3802 transmission "Manual" | |
| 3802 license "AL-447-AS" | |
| 3802 registrationdate "2015-05-31T11:26:31.000Z" | |
| 3802 entry_date "2015-01-30" | |
| 3802 pool 2 | |
| 3802 parking_place "W28" | |
| 3802 certificate_date "2015-03-17" | |
| 3802 first_registration "2015-03-14" | |
| 3902 make "Mazda" | |
| 3902 model "CX-5 (facelift)" | |
| 3902 variant "2.2D 150ps 2WD SE-L Nav 5dr" | |
| 3902 colour "Verdigris Green" | |
| 3902 mileage 42134 | |
| 3902 order_id "O-33023-38" | |
| 3902 mileage_at_delivery 15 | |
| 3902 tax_horsepower 123 | |
| 3902 co2_rejection 134 | |
| 3902 vin "1HTGLATT7YH285636" | |
| 3902 type "CV" | |
| 3902 energy "D" | |
| 3902 seat 4 | |
| 3902 gross_weight 1310 | |
| 3902 tank 42 | |
| 3902 transmission "Manual" | |
| 3902 license "TJ-807-EL" | |
| 3902 registrationdate "2014-11-11T11:26:31.000Z" | |
| 3902 entry_date "2015-06-26" | |
| 3902 pool 5 | |
| 3902 parking_place "G45" | |
| 3902 certificate_date "2015-05-18" | |
| 3902 first_registration "2015-05-18" | |
| 4002 make "Mazda" | |
| 4002 model "CX-3" | |
| 4002 variant "1.5 SKYACTIV-D 105PS SE-L Nav 5dr" | |
| 4002 colour "Middle Brunswick Green" | |
| 4002 mileage 44648 | |
| 4002 order_id "O-28390-71" | |
| 4002 mileage_at_delivery 10 | |
| 4002 tax_horsepower 89 | |
| 4002 co2_rejection 300 | |
| 4002 vin "1D7HA18K37J527116" | |
| 4002 type "CV" | |
| 4002 energy "D" | |
| 4002 seat 5 | |
| 4002 gross_weight 1318 | |
| 4002 tank 60 | |
| 4002 transmission "Automatic" | |
| 4002 license "OX-411-NU" | |
| 4002 registrationdate "2015-07-03T11:26:31.000Z" | |
| 4002 entry_date "2015-05-18" | |
| 4002 pool 3 | |
| 4002 parking_place "V11" | |
| 4002 certificate_date "2015-04-16" | |
| 4002 first_registration "2015-04-16" | |
| 4102 make "Mazda" | |
| 4102 model "MX-5" | |
| 4102 variant "1.5i SE-L Nav 2dr" | |
| 4102 colour "Cobalt Blue" | |
| 4102 mileage 32378 | |
| 4102 order_id "O-43307-59" | |
| 4102 mileage_at_delivery 45 | |
| 4102 tax_horsepower 84 | |
| 4102 co2_rejection 897 | |
| 4102 vin "1GCDS148668232825" | |
| 4102 type "CV" | |
| 4102 energy "D" | |
| 4102 seat 5 | |
| 4102 gross_weight 1450 | |
| 4102 tank 51 | |
| 4102 transmission "Automatic" | |
| 4102 license "ZW-908-AP" | |
| 4102 registrationdate "2014-11-28T11:26:31.000Z" | |
| 4102 entry_date "2015-05-26" | |
| 4102 pool 3 | |
| 4102 parking_place "K35" | |
| 4102 certificate_date "2015-04-18" | |
| 4102 first_registration "2015-04-18" | |
| 4202 make "Mercedes-Benz" | |
| 4202 model "AMG GT" | |
| 4202 variant "4.0 V8 GT 3dr" | |
| 4202 colour "Terracotta" | |
| 4202 mileage 22321 | |
| 4202 order_id "O-43416-35" | |
| 4202 mileage_at_delivery 10 | |
| 4202 tax_horsepower 238 | |
| 4202 co2_rejection 254 | |
| 4202 vin "1GDM7D1G9HV591455" | |
| 4202 type "CV" | |
| 4202 energy "D" | |
| 4202 seat 5 | |
| 4202 gross_weight 1864 | |
| 4202 tank 49 | |
| 4202 transmission "Automatic" | |
| 4202 license "FU-336-HJ" | |
| 4202 registrationdate "2015-01-26T11:26:31.000Z" | |
| 4202 entry_date "2015-06-21" | |
| 4202 pool 3 | |
| 4202 parking_place "W30" | |
| 4202 certificate_date "2015-05-26" | |
| 4202 first_registration "2015-05-26" | |
| 4302 make "Mercedes-Benz" | |
| 4302 model "CLA Shooting Brake" | |
| 4302 variant "CLA 200 d Sport auto 5dr" | |
| 4302 colour "Bold Green" | |
| 4302 mileage 27689 | |
| 4302 order_id "O-39881-26" | |
| 4302 mileage_at_delivery 18 | |
| 4302 tax_horsepower 286 | |
| 4302 co2_rejection 187 | |
| 4302 vin "2HSFMA5R0RC000315" | |
| 4302 type "CV" | |
| 4302 energy "D" | |
| 4302 seat 4 | |
| 4302 gross_weight 1004 | |
| 4302 tank 42 | |
| 4302 transmission "Manual" | |
| 4302 license "WB-567-WA" | |
| 4302 registrationdate "2015-07-06T11:26:31.000Z" | |
| 4302 entry_date "2015-03-04" | |
| 4302 pool 4 | |
| 4302 parking_place "B36" | |
| 4302 certificate_date "2015-06-21" | |
| 4302 first_registration "2015-06-21" | |
| 4402 make "Mercedes-Benz" | |
| 4402 model "C-klasse Plug-In-Hybrid" | |
| 4402 variant "C220d SE Executive Edition auto 4dr" | |
| 4402 colour "Azure Blue" | |
| 4402 mileage 49220 | |
| 4402 order_id "O-41215-98" | |
| 4402 mileage_at_delivery 29 | |
| 4402 tax_horsepower 134 | |
| 4402 co2_rejection 297 | |
| 4402 vin "JNRBS08W57X493350" | |
| 4402 type "CV" | |
| 4402 energy "D" | |
| 4402 seat 4 | |
| 4402 gross_weight 1026 | |
| 4402 tank 59 | |
| 4402 transmission "Manual" | |
| 4402 license "PW-527-ZX" | |
| 4402 registrationdate "2015-01-09T11:26:31.000Z" | |
| 4402 entry_date "2015-03-30" | |
| 4402 pool 3 | |
| 4402 parking_place "G10" | |
| 4402 certificate_date "2015-03-06" | |
| 4402 first_registration "2015-03-04" | |
| 4502 make "Mercedes-Benz" | |
| 4502 model "B-klasse electric drive" | |
| 4502 variant "B 250 e Electric Art 5dr " | |
| 4502 colour "Middle Buff" | |
| 4502 mileage 17441 | |
| 4502 order_id "O-33248-88" | |
| 4502 mileage_at_delivery 29 | |
| 4502 tax_horsepower 273 | |
| 4502 co2_rejection 176 | |
| 4502 vin "1G2AN58B177115642" | |
| 4502 type "CV" | |
| 4502 energy "D" | |
| 4502 seat 5 | |
| 4502 gross_weight 1291 | |
| 4502 tank 42 | |
| 4502 transmission "Manual" | |
| 4502 license "ET-336-YX" | |
| 4502 registrationdate "2014-11-18T11:26:31.000Z" | |
| 4502 entry_date "2015-06-13" | |
| 4502 pool 4 | |
| 4502 parking_place "F34" | |
| 4502 certificate_date "2015-03-30" | |
| 4502 first_registration "2015-03-30" | |
| 4602 make "Mercedes-Benz" | |
| 4602 model "S-klasse Maybach" | |
| 4602 variant "S 500 AMG Line 2dr" | |
| 4602 colour "Venetian Red" | |
| 4602 mileage 31381 | |
| 4602 order_id "O-57059-93" | |
| 4602 mileage_at_delivery 15 | |
| 4602 tax_horsepower 164 | |
| 4602 co2_rejection 300 | |
| 4602 vin "1GT322CG1FZ576390" | |
| 4602 type "CV" | |
| 4602 energy "D" | |
| 4602 seat 4 | |
| 4602 gross_weight 1518 | |
| 4602 tank 44 | |
| 4602 transmission "Manual" | |
| 4602 license "RN-840-AB" | |
| 4602 registrationdate "2014-09-10T11:26:31.000Z" | |
| 4602 entry_date "2015-05-01" | |
| 4602 pool 5 | |
| 4602 parking_place "V36" | |
| 4602 certificate_date "2015-06-15" | |
| 4602 first_registration "2015-06-13" | |
| 4702 make "Mercedes-Benz" | |
| 4702 model "GLE Coupé" | |
| 4702 variant "GLE 350 d 4MATIC AMG Line 5dr" | |
| 4702 colour "Forest Green" | |
| 4702 mileage 38113 | |
| 4702 order_id "O-21542-85" | |
| 4702 mileage_at_delivery 10 | |
| 4702 tax_horsepower 198 | |
| 4702 co2_rejection 267 | |
| 4702 vin "WVWSK21J83W335286" | |
| 4702 type "CV" | |
| 4702 energy "D" | |
| 4702 seat 4 | |
| 4702 gross_weight 1810 | |
| 4702 tank 55 | |
| 4702 transmission "Manual" | |
| 4702 license "PZ-928-MA" | |
| 4702 registrationdate "2015-06-26T11:26:31.000Z" | |
| 4702 entry_date "2015-03-04" | |
| 4702 pool 4 | |
| 4702 parking_place "Q25" | |
| 4702 certificate_date "2015-05-02" | |
| 4702 first_registration "2015-05-01" | |
| 4802 make "Mercedes-Benz" | |
| 4802 model "GLE" | |
| 4802 variant "GLE 500 e 4MATIC Designo Line 5dr" | |
| 4802 colour "Dark Sea Grey" | |
| 4802 mileage 55210 | |
| 4802 order_id "O-41433-41" | |
| 4802 mileage_at_delivery 15 | |
| 4802 tax_horsepower 257 | |
| 4802 co2_rejection 198 | |
| 4802 vin "WAUBFBFM0BA047598" | |
| 4802 type "CV" | |
| 4802 energy "D" | |
| 4802 seat 5 | |
| 4802 gross_weight 1819 | |
| 4802 tank 54 | |
| 4802 transmission "Manual" | |
| 4802 license "NS-817-UA" | |
| 4802 registrationdate "2015-06-01T11:26:31.000Z" | |
| 4802 entry_date "2015-01-23" | |
| 4802 pool 4 | |
| 4802 parking_place "Y40" | |
| 4802 certificate_date "2015-03-04" | |
| 4802 first_registration "2015-03-04" | |
| 4902 make "Mercedes-Benz" | |
| 4902 model "GLC" | |
| 4902 variant "2 TDI 5dr" | |
| 4902 colour "Oriental Blue" | |
| 4902 mileage 19105 | |
| 4902 order_id "O-45470-68" | |
| 4902 mileage_at_delivery 10 | |
| 4902 tax_horsepower 90 | |
| 4902 co2_rejection 95 | |
| 4902 vin "4V4M19GHX4N312662" | |
| 4902 type "CV" | |
| 4902 energy "D" | |
| 4902 seat 4 | |
| 4902 gross_weight 1780 | |
| 4902 tank 50 | |
| 4902 transmission "Manual" | |
| 4902 license "ER-186-RN" | |
| 4902 registrationdate "2015-01-18T11:26:31.000Z" | |
| 4902 entry_date "2015-05-29" | |
| 4902 pool 5 | |
| 4902 parking_place "A17" | |
| 4902 certificate_date "2015-01-23" | |
| 4902 first_registration "2015-01-23" | |
| 5002 make "Mitsubishi" | |
| 5002 model "Attrage" | |
| 5002 variant "1.9 TDI 2dr" | |
| 5002 colour "Dark Camouflage Desert Sand" | |
| 5002 mileage 11084 | |
| 5002 order_id "O-54426-34" | |
| 5002 mileage_at_delivery 45 | |
| 5002 tax_horsepower 89 | |
| 5002 co2_rejection 187 | |
| 5002 vin "1GBM7H1C91J538135" | |
| 5002 type "CV" | |
| 5002 energy "D" | |
| 5002 seat 5 | |
| 5002 gross_weight 1117 | |
| 5002 tank 60 | |
| 5002 transmission "Manual" | |
| 5002 license "CH-453-OG" | |
| 5002 registrationdate "2014-08-07T11:26:31.000Z" | |
| 5002 entry_date "2015-04-16" | |
| 5002 pool 5 | |
| 5002 parking_place "Y31" | |
| 5002 certificate_date "2015-05-29" | |
| 5002 first_registration "2015-05-29" | |
| 5102 make "Mitsubishi" | |
| 5102 model "L200" | |
| 5102 variant "1.4 TDI 4dr" | |
| 5102 colour "Emerald Green" | |
| 5102 mileage 44644 | |
| 5102 order_id "O-36732-26" | |
| 5102 mileage_at_delivery 10 | |
| 5102 tax_horsepower 120 | |
| 5102 co2_rejection 265 | |
| 5102 vin "1GTEK14VXYE265745" | |
| 5102 type "CV" | |
| 5102 energy "D" | |
| 5102 seat 4 | |
| 5102 gross_weight 1453 | |
| 5102 tank 59 | |
| 5102 transmission "Automatic" | |
| 5102 license "HT-994-NR" | |
| 5102 registrationdate "2015-05-16T11:26:31.000Z" | |
| 5102 entry_date "2015-01-11" | |
| 5102 pool 5 | |
| 5102 parking_place "E46" | |
| 5102 certificate_date "2015-04-16" | |
| 5102 first_registration "2015-04-16" | |
| 5202 make "Mitsubishi" | |
| 5202 model "Outlander" | |
| 5202 variant "1.8 TDI 5dr" | |
| 5202 colour "Pale Roundel Blue" | |
| 5202 mileage 55616 | |
| 5202 order_id "O-46993-70" | |
| 5202 mileage_at_delivery 21 | |
| 5202 tax_horsepower 123 | |
| 5202 co2_rejection 300 | |
| 5202 vin "1FDPF82H3DVA99965" | |
| 5202 type "CV" | |
| 5202 energy "D" | |
| 5202 seat 5 | |
| 5202 gross_weight 1944 | |
| 5202 tank 47 | |
| 5202 transmission "Automatic" | |
| 5202 license "XF-298-SG" | |
| 5202 registrationdate "2014-08-25T11:26:31.000Z" | |
| 5202 entry_date "2015-05-09" | |
| 5202 pool 3 | |
| 5202 parking_place "K24" | |
| 5202 certificate_date "2015-01-11" | |
| 5202 first_registration "2015-01-11" | |
| 5302 make "Opel" | |
| 5302 model "Vivaro Combi" | |
| 5302 variant "1.4 TDI 5dr" | |
| 5302 colour "Middle Brunswick Green" | |
| 5302 mileage 13395 | |
| 5302 order_id "O-48025-30" | |
| 5302 mileage_at_delivery 32 | |
| 5302 tax_horsepower 89 | |
| 5302 co2_rejection 278 | |
| 5302 vin "1M2AX13C9EM070037" | |
| 5302 type "CV" | |
| 5302 energy "D" | |
| 5302 seat 5 | |
| 5302 gross_weight 1211 | |
| 5302 tank 51 | |
| 5302 transmission "Automatic" | |
| 5302 license "HI-321-EV" | |
| 5302 registrationdate "2015-03-03T11:26:31.000Z" | |
| 5302 entry_date "2015-06-19" | |
| 5302 pool 5 | |
| 5302 parking_place "L38" | |
| 5302 certificate_date "2015-05-09" | |
| 5302 first_registration "2015-05-09" | |
| 5402 make "Opel" | |
| 5402 model "Karl" | |
| 5402 variant "1.3 TDI 5dr" | |
| 5402 colour "Gulf Red" | |
| 5402 mileage 37594 | |
| 5402 order_id "O-55549-57" | |
| 5402 mileage_at_delivery 23 | |
| 5402 tax_horsepower 84 | |
| 5402 co2_rejection 84 | |
| 5402 vin "1FDYD80U1EVA12561" | |
| 5402 type "CV" | |
| 5402 energy "D" | |
| 5402 seat 5 | |
| 5402 gross_weight 1604 | |
| 5402 tank 49 | |
| 5402 transmission "Automatic" | |
| 5402 license "GS-594-BM" | |
| 5402 registrationdate "2014-12-23T11:26:31.000Z" | |
| 5402 entry_date "2015-05-18" | |
| 5402 pool 5 | |
| 5402 parking_place "L12" | |
| 5402 certificate_date "2015-06-19" | |
| 5402 first_registration "2015-06-19" | |
| 5502 make "Opel" | |
| 5502 model "Corsa VAN" | |
| 5502 variant "1.5 TDI 4dr" | |
| 5502 colour "Deep Bronze Green" | |
| 5502 mileage 10033 | |
| 5502 order_id "O-12536-55" | |
| 5502 mileage_at_delivery 20 | |
| 5502 tax_horsepower 238 | |
| 5502 co2_rejection 238 | |
| 5502 vin "1FDZA90X0FVA20164" | |
| 5502 type "CV" | |
| 5502 energy "D" | |
| 5502 seat 5 | |
| 5502 gross_weight 1373 | |
| 5502 tank 56 | |
| 5502 transmission "Manual" | |
| 5502 license "OF-240-QX" | |
| 5502 registrationdate "2015-01-19T11:26:31.000Z" | |
| 5502 entry_date "2015-01-05" | |
| 5502 pool 3 | |
| 5502 parking_place "L22" | |
| 5502 certificate_date "2015-05-18" | |
| 5502 first_registration "2015-05-18" | |
| 5602 make "Opel" | |
| 5602 model "Astra 5-deurs" | |
| 5602 variant "1.6 TDI 2dr" | |
| 5602 colour "Light Weatherwork Grey" | |
| 5602 mileage 27297 | |
| 5602 order_id "O-39718-72" | |
| 5602 mileage_at_delivery 23 | |
| 5602 tax_horsepower 286 | |
| 5602 co2_rejection 286 | |
| 5602 vin "1FT7W2BT5BEB27851" | |
| 5602 type "CV" | |
| 5602 energy "D" | |
| 5602 seat 5 | |
| 5602 gross_weight 1801 | |
| 5602 tank 43 | |
| 5602 transmission "Manual" | |
| 5602 license "QT-262-AH" | |
| 5602 registrationdate "2015-05-24T11:26:31.000Z" | |
| 5602 entry_date "2015-02-13" | |
| 5602 pool 4 | |
| 5602 parking_place "U44" | |
| 5602 certificate_date "2015-01-05" | |
| 5602 first_registration "2015-01-05" | |
| 5702 make "Peugeot" | |
| 5702 model "208 (facelift)" | |
| 5702 variant "1.9 TDI 4dr" | |
| 5702 colour "Dark Camouflage Desert Sand" | |
| 5702 mileage 20987 | |
| 5702 order_id "O-23144-51" | |
| 5702 mileage_at_delivery 19 | |
| 5702 tax_horsepower 134 | |
| 5702 co2_rejection 134 | |
| 5702 vin "WDBVF78J89A079160" | |
| 5702 type "CV" | |
| 5702 energy "D" | |
| 5702 seat 4 | |
| 5702 gross_weight 1480 | |
| 5702 tank 59 | |
| 5702 transmission "Manual" | |
| 5702 license "KH-139-KV" | |
| 5702 registrationdate "2014-12-22T11:26:31.000Z" | |
| 5702 entry_date "2015-06-28" | |
| 5702 pool 3 | |
| 5702 parking_place "Y35" | |
| 5702 certificate_date "2015-02-13" | |
| 5702 first_registration "2015-02-13" | |
| 5802 make "Peugeot" | |
| 5802 model "Partner (facelift)" | |
| 5802 variant "1.8 TDI 5dr" | |
| 5802 colour "Opaline Green" | |
| 5802 mileage 56213 | |
| 5802 order_id "O-34563-79" | |
| 5802 mileage_at_delivery 10 | |
| 5802 tax_horsepower 300 | |
| 5802 co2_rejection 300 | |
| 5802 vin "WD3PE7CD5A5401209" | |
| 5802 type "CV" | |
| 5802 energy "D" | |
| 5802 seat 5 | |
| 5802 gross_weight 1653 | |
| 5802 tank 57 | |
| 5802 transmission "Manual" | |
| 5802 license "SI-150-YB" | |
| 5802 registrationdate "2014-10-03T11:26:31.000Z" | |
| 5802 entry_date "2015-02-18" | |
| 5802 pool 3 | |
| 5802 parking_place "J10" | |
| 5802 certificate_date "2015-06-28" | |
| 5802 first_registration "2015-06-28" | |
| 5902 make "Renault" | |
| 5902 model "Espace" | |
| 5902 variant "1.8 TDI 2dr" | |
| 5902 colour "Lemon" | |
| 5902 mileage 34402 | |
| 5902 order_id "O-56170-61" | |
| 5902 mileage_at_delivery 21 | |
| 5902 tax_horsepower 897 | |
| 5902 co2_rejection 897 | |
| 5902 vin "JF2SHBBC9BH709049" | |
| 5902 type "CV" | |
| 5902 energy "D" | |
| 5902 seat 5 | |
| 5902 gross_weight 1712 | |
| 5902 tank 43 | |
| 5902 transmission "Manual" | |
| 5902 license "HF-444-NK" | |
| 5902 registrationdate "2015-03-10T11:26:31.000Z" | |
| 5902 entry_date "2015-02-07" | |
| 5902 pool 3 | |
| 5902 parking_place "H34" | |
| 5902 certificate_date "2015-02-18" | |
| 5902 first_registration "2015-02-18" | |
| 6002 make "Renault" | |
| 6002 model "New Compact SUV" | |
| 6002 variant "1.9 TDI 2dr" | |
| 6002 colour "International Orange" | |
| 6002 mileage 17271 | |
| 6002 order_id "O-40741-26" | |
| 6002 mileage_at_delivery 13 | |
| 6002 tax_horsepower 90 | |
| 6002 co2_rejection 245 | |
| 6002 vin "1C3LN55L67X057050" | |
| 6002 type "CV" | |
| 6002 energy "D" | |
| 6002 seat 4 | |
| 6002 gross_weight 1268 | |
| 6002 tank 42 | |
| 6002 transmission "Manual" | |
| 6002 license "FU-207-TV" | |
| 6002 registrationdate "2015-06-08T11:26:31.000Z" | |
| 6002 entry_date "2015-03-26" | |
| 6002 pool 5 | |
| 6002 parking_place "A29" | |
| 6002 certificate_date "2015-02-07" | |
| 6002 first_registration "2015-02-07" | |
| 6102 make "Renault" | |
| 6102 model "Laguna" | |
| 6102 variant "1.7 TDI 5dr" | |
| 6102 colour "Olive Green" | |
| 6102 mileage 10196 | |
| 6102 order_id "O-35882-60" | |
| 6102 mileage_at_delivery 15 | |
| 6102 tax_horsepower 89 | |
| 6102 co2_rejection 278 | |
| 6102 vin "WAUBT48H75K076390" | |
| 6102 type "CV" | |
| 6102 energy "D" | |
| 6102 seat 5 | |
| 6102 gross_weight 1830 | |
| 6102 tank 59 | |
| 6102 transmission "Manual" | |
| 6102 license "PH-137-TY" | |
| 6102 registrationdate "2015-07-02T11:26:31.000Z" | |
| 6102 entry_date "2015-06-26" | |
| 6102 pool 3 | |
| 6102 parking_place "F43" | |
| 6102 certificate_date "2015-03-26" | |
| 6102 first_registration "2015-03-26" | |
| 6202 make "Skoda" | |
| 6202 model "Fabia" | |
| 6202 variant "2 TDI 4dr" | |
| 6202 colour "Vellum" | |
| 6202 mileage 34135 | |
| 6202 order_id "O-17850-87" | |
| 6202 mileage_at_delivery 10 | |
| 6202 tax_horsepower 120 | |
| 6202 co2_rejection 297 | |
| 6202 vin "2FV7D0Y92RA829972" | |
| 6202 type "CV" | |
| 6202 energy "D" | |
| 6202 seat 5 | |
| 6202 gross_weight 1848 | |
| 6202 tank 59 | |
| 6202 transmission "Automatic" | |
| 6202 license "XK-727-CL" | |
| 6202 registrationdate "2015-06-22T11:26:31.000Z" | |
| 6202 entry_date "2015-02-03" | |
| 6202 pool 5 | |
| 6202 parking_place "D43" | |
| 6202 certificate_date "2015-06-28" | |
| 6202 first_registration "2015-06-26" | |
| 6302 make "Skoda" | |
| 6302 model "Superb Berline" | |
| 6302 variant "1.7 TDI 5dr" | |
| 6302 colour "Strong Blue" | |
| 6302 mileage 29052 | |
| 6302 order_id "O-25355-65" | |
| 6302 mileage_at_delivery 45 | |
| 6302 tax_horsepower 123 | |
| 6302 co2_rejection 176 | |
| 6302 vin "JN1HZ06S7DX010638" | |
| 6302 type "CV" | |
| 6302 energy "D" | |
| 6302 seat 4 | |
| 6302 gross_weight 1348 | |
| 6302 tank 52 | |
| 6302 transmission "Automatic" | |
| 6302 license "ZN-765-AY" | |
| 6302 registrationdate "2015-04-29T11:26:31.000Z" | |
| 6302 entry_date "2015-03-04" | |
| 6302 pool 4 | |
| 6302 parking_place "F12" | |
| 6302 certificate_date "2015-02-03" | |
| 6302 first_registration "2015-02-03" | |
| 6402 make "Skoda" | |
| 6402 model "Superb Combi" | |
| 6402 variant "1.5 TDI 4dr" | |
| 6402 colour "Light Aircraft Grey" | |
| 6402 mileage 16304 | |
| 6402 order_id "O-51774-95" | |
| 6402 mileage_at_delivery 15 | |
| 6402 tax_horsepower 89 | |
| 6402 co2_rejection 300 | |
| 6402 vin "JH2RC5346DK651502" | |
| 6402 type "CV" | |
| 6402 energy "D" | |
| 6402 seat 4 | |
| 6402 gross_weight 1646 | |
| 6402 tank 53 | |
| 6402 transmission "Manual" | |
| 6402 license "OT-335-PR" | |
| 6402 registrationdate "2014-09-23T11:26:31.000Z" | |
| 6402 entry_date "2015-04-02" | |
| 6402 pool 3 | |
| 6402 parking_place "O19" | |
| 6402 certificate_date "2015-03-05" | |
| 6402 first_registration "2015-03-04" | |
| 6502 make "Suzuki" | |
| 6502 model "Vitara" | |
| 6502 variant "1.9 TDI 3dr" | |
| 6502 colour "Emerald Green" | |
| 6502 mileage 32557 | |
| 6502 order_id "O-11095-71" | |
| 6502 mileage_at_delivery 10 | |
| 6502 tax_horsepower 84 | |
| 6502 co2_rejection 267 | |
| 6502 vin "19UUA56952A029185" | |
| 6502 type "CV" | |
| 6502 energy "D" | |
| 6502 seat 5 | |
| 6502 gross_weight 1110 | |
| 6502 tank 60 | |
| 6502 transmission "Manual" | |
| 6502 license "HX-890-RK" | |
| 6502 registrationdate "2015-01-26T11:26:31.000Z" | |
| 6502 entry_date "2015-04-23" | |
| 6502 pool 5 | |
| 6502 parking_place "G30" | |
| 6502 certificate_date "2015-04-04" | |
| 6502 first_registration "2015-04-02" | |
| 6602 make "Suzuki" | |
| 6602 model "Celerio" | |
| 6602 variant "1.8 TDI 2dr" | |
| 6602 colour "Bold Green" | |
| 6602 mileage 34196 | |
| 6602 order_id "O-44976-73" | |
| 6602 mileage_at_delivery 45 | |
| 6602 tax_horsepower 238 | |
| 6602 co2_rejection 198 | |
| 6602 vin "1FDYS86E4VVA92430" | |
| 6602 type "PV" | |
| 6602 energy "P" | |
| 6602 seat 5 | |
| 6602 gross_weight 1409 | |
| 6602 tank 50 | |
| 6602 transmission "Manual" | |
| 6602 license "HW-283-JP" | |
| 6602 registrationdate "2014-08-13T11:26:31.000Z" | |
| 6602 entry_date "2015-01-10" | |
| 6602 pool 4 | |
| 6602 parking_place "T27" | |
| 6602 certificate_date "2015-04-23" | |
| 6602 first_registration "2015-04-23" | |
| 6702 make "Toyota" | |
| 6702 model "Mirai" | |
| 6702 variant "1 TDI 4dr" | |
| 6702 colour "Service Brown" | |
| 6702 mileage 53213 | |
| 6702 order_id "O-34754-76" | |
| 6702 mileage_at_delivery 10 | |
| 6702 tax_horsepower 286 | |
| 6702 co2_rejection 95 | |
| 6702 vin "1XKDD69X63R753738" | |
| 6702 type "PV" | |
| 6702 energy "P" | |
| 6702 seat 4 | |
| 6702 gross_weight 1931 | |
| 6702 tank 54 | |
| 6702 transmission "Manual" | |
| 6702 license "AZ-923-BS" | |
| 6702 registrationdate "2015-05-30T11:26:31.000Z" | |
| 6702 entry_date "2015-05-21" | |
| 6702 pool 3 | |
| 6702 parking_place "J16" | |
| 6702 certificate_date "2015-01-10" | |
| 6702 first_registration "2015-01-10" | |
| 6802 make "Volkswagen" | |
| 6802 model "Touran" | |
| 6802 variant "1 TDI 3dr" | |
| 6802 colour "Pale Roundel Red" | |
| 6802 mileage 16140 | |
| 6802 order_id "O-11461-27" | |
| 6802 mileage_at_delivery 90 | |
| 6802 tax_horsepower 134 | |
| 6802 co2_rejection 85 | |
| 6802 vin "1GB1CVCG6EF177534" | |
| 6802 type "PV" | |
| 6802 energy "P" | |
| 6802 seat 5 | |
| 6802 gross_weight 1901 | |
| 6802 tank 53 | |
| 6802 transmission "Manual" | |
| 6802 license "WZ-211-OB" | |
| 6802 registrationdate "2014-12-25T11:26:31.000Z" | |
| 6802 entry_date "2015-03-13" | |
| 6802 pool 4 | |
| 6802 parking_place "T43" | |
| 6802 certificate_date "2015-05-21" | |
| 6802 first_registration "2015-05-21" | |
| 6902 make "Volkswagen" | |
| 6902 model "Taigun" | |
| 6902 variant "1.5 TDI 3dr" | |
| 6902 colour "Olive Green" | |
| 6902 mileage 42225 | |
| 6902 order_id "O-37488-29" | |
| 6902 mileage_at_delivery 45 | |
| 6902 tax_horsepower 125 | |
| 6902 co2_rejection 164 | |
| 6902 vin "LSJW16N698J059768" | |
| 6902 type "PV" | |
| 6902 energy "P" | |
| 6902 seat 5 | |
| 6902 gross_weight 1690 | |
| 6902 tank 56 | |
| 6902 transmission "Manual" | |
| 6902 license "OO-619-HP" | |
| 6902 registrationdate "2015-06-28T11:26:31.000Z" | |
| 6902 entry_date "2015-06-12" | |
| 6902 pool 3 | |
| 6902 parking_place "W18" | |
| 6902 certificate_date "2015-03-13" | |
| 6902 first_registration "2015-03-13" | |
| 7002 make "Volvo" | |
| 7002 model "V60 Cross Country" | |
| 7002 variant "1.2 TDI 2dr" | |
| 7002 colour "Dark Weatherwork Grey" | |
| 7002 mileage 45647 | |
| 7002 order_id "O-56007-33" | |
| 7002 mileage_at_delivery 10 | |
| 7002 tax_horsepower 156 | |
| 7002 co2_rejection 189 | |
| 7002 vin "WAUDV74F37N040738" | |
| 7002 type "CV" | |
| 7002 energy "D" | |
| 7002 seat 5 | |
| 7002 gross_weight 1997 | |
| 7002 tank 43 | |
| 7002 transmission "Manual" | |
| 7002 license "NW-400-TL" | |
| 7002 registrationdate "2014-09-25T11:26:31.000Z" | |
| 7002 entry_date "2015-05-22" | |
| 7002 pool 3 | |
| 7002 parking_place "W22" | |
| 7002 certificate_date "2015-06-12" | |
| 7002 first_registration "2015-06-12" | |
| 7102 make "Alfa Romeo" | |
| 7102 model "4 C Spider" | |
| 7102 variant "1 TDI 5dr" | |
| 7102 colour "Aircraft Blue" | |
| 7102 mileage 55484 | |
| 7102 order_id "O-59040-93" | |
| 7102 mileage_at_delivery 21 | |
| 7102 tax_horsepower 164 | |
| 7102 co2_rejection 84 | |
| 7102 vin "3FRNW65C25V286655" | |
| 7102 type "CV" | |
| 7102 energy "D" | |
| 7102 seat 5 | |
| 7102 gross_weight 1099 | |
| 7102 tank 51 | |
| 7102 transmission "Manual" | |
| 7102 license "ZB-425-WT" | |
| 7102 registrationdate "2014-12-13T11:26:31.000Z" | |
| 7102 entry_date "2015-01-21" | |
| 7102 pool 5 | |
| 7102 parking_place "N36" | |
| 7102 certificate_date "2015-05-22" | |
| 7102 first_registration "2015-05-22" | |
| 7202 make "Audi" | |
| 7202 model "A1 (facelift)" | |
| 7202 variant "1 TDI 5dr" | |
| 7202 colour "Middle Graphite" | |
| 7202 mileage 30930 | |
| 7202 order_id "O-12828-79" | |
| 7202 mileage_at_delivery 32 | |
| 7202 tax_horsepower 198 | |
| 7202 co2_rejection 238 | |
| 7202 vin "1FADP3R46FL261506" | |
| 7202 type "CV" | |
| 7202 energy "D" | |
| 7202 seat 4 | |
| 7202 gross_weight 1139 | |
| 7202 tank 47 | |
| 7202 transmission "Manual" | |
| 7202 license "UD-651-ZN" | |
| 7202 registrationdate "2014-11-11T11:26:31.000Z" | |
| 7202 entry_date "2015-02-25" | |
| 7202 pool 3 | |
| 7202 parking_place "E28" | |
| 7202 certificate_date "2015-01-25" | |
| 7202 first_registration "2015-01-21" | |
| 7302 make "Audi" | |
| 7302 model "Q3 (facelift)" | |
| 7302 variant "1.4 TDI 5dr" | |
| 7302 colour "Deep Saxe Blue" | |
| 7302 mileage 22720 | |
| 7302 order_id "O-21816-83" | |
| 7302 mileage_at_delivery 23 | |
| 7302 tax_horsepower 257 | |
| 7302 co2_rejection 286 | |
| 7302 vin "JAACR16E2K7221466" | |
| 7302 type "CV" | |
| 7302 energy "D" | |
| 7302 seat 4 | |
| 7302 gross_weight 1860 | |
| 7302 tank 53 | |
| 7302 transmission "Manual" | |
| 7302 license "FZ-557-DA" | |
| 7302 registrationdate "2015-04-08T11:26:31.000Z" | |
| 7302 entry_date "2015-03-18" | |
| 7302 pool 3 | |
| 7302 parking_place "H31" | |
| 7302 certificate_date "2015-02-28" | |
| 7302 first_registration "2015-02-25" | |
| 7402 make "Audi" | |
| 7402 model "TT Roadster" | |
| 7402 variant "1.6 TDI 2dr" | |
| 7402 colour "Light Violet" | |
| 7402 mileage 36763 | |
| 7402 order_id "O-30873-15" | |
| 7402 mileage_at_delivery 20 | |
| 7402 tax_horsepower 90 | |
| 7402 co2_rejection 134 | |
| 7402 vin "1B7KW34W7FS703938" | |
| 7402 type "CV" | |
| 7402 energy "D" | |
| 7402 seat 4 | |
| 7402 gross_weight 1104 | |
| 7402 tank 53 | |
| 7402 transmission "Manual" | |
| 7402 license "FA-987-IO" | |
| 7402 registrationdate "2014-12-03T11:26:31.000Z" | |
| 7402 entry_date "2015-06-17" | |
| 7402 pool 4 | |
| 7402 parking_place "L33" | |
| 7402 certificate_date "2015-03-21" | |
| 7402 first_registration "2015-03-18" | |
| 7502 make "Audi" | |
| 7502 model "Q7" | |
| 7502 variant "1.9 TDI 3dr" | |
| 7502 colour "Light Grey" | |
| 7502 mileage 19158 | |
| 7502 order_id "O-57442-47" | |
| 7502 mileage_at_delivery 23 | |
| 7502 tax_horsepower 89 | |
| 7502 co2_rejection 300 | |
| 7502 vin "1G5CS18R5G8501209" | |
| 7502 type "CV" | |
| 7502 energy "D" | |
| 7502 seat 5 | |
| 7502 gross_weight 1165 | |
| 7502 tank 45 | |
| 7502 transmission "Manual" | |
| 7502 license "BW-213-PE" | |
| 7502 registrationdate "2015-05-08T11:26:31.000Z" | |
| 7502 entry_date "2015-05-13" | |
| 7502 pool 3 | |
| 7502 parking_place "D29" | |
| 7502 certificate_date "2015-06-21" | |
| 7502 first_registration "2015-06-17" | |
| 7602 make "Audi" | |
| 7602 model "R8 Coupé" | |
| 7602 variant "1.4 TDI 3dr" | |
| 7602 colour "Maroon" | |
| 7602 mileage 11999 | |
| 7602 order_id "O-40281-34" | |
| 7602 mileage_at_delivery 19 | |
| 7602 tax_horsepower 120 | |
| 7602 co2_rejection 897 | |
| 7602 vin "1G2NF12F82C156952" | |
| 7602 type "CV" | |
| 7602 energy "D" | |
| 7602 seat 4 | |
| 7602 gross_weight 1151 | |
| 7602 tank 56 | |
| 7602 transmission "Manual" | |
| 7602 license "SD-115-AW" | |
| 7602 registrationdate "2014-08-11T11:26:31.000Z" | |
| 7602 entry_date "2015-01-31" | |
| 7602 pool 5 | |
| 7602 parking_place "B23" | |
| 7602 certificate_date "2015-05-16" | |
| 7602 first_registration "2015-05-13" | |
| 7702 make "Audi" | |
| 7702 model "A4" | |
| 7702 variant "1.3 TDI 3dr" | |
| 7702 colour "Deep Bronze Green" | |
| 7702 mileage 50370 | |
| 7702 order_id "O-58857-19" | |
| 7702 mileage_at_delivery 10 | |
| 7702 tax_horsepower 123 | |
| 7702 co2_rejection 257 | |
| 7702 vin "3HSCNAPT97N463283" | |
| 7702 type "CV" | |
| 7702 energy "D" | |
| 7702 seat 5 | |
| 7702 gross_weight 1622 | |
| 7702 tank 58 | |
| 7702 transmission "Manual" | |
| 7702 license "MA-939-VX" | |
| 7702 registrationdate "2015-01-28T11:26:31.000Z" | |
| 7702 entry_date "2015-05-05" | |
| 7702 pool 3 | |
| 7702 parking_place "H17" | |
| 7702 certificate_date "2015-01-31" | |
| 7702 first_registration "2015-01-31" | |
| 7802 make "Bmw" | |
| 7802 model "1 reeks (facelift)" | |
| 7802 variant "1.1 TDI 2dr" | |
| 7802 colour "Aircraft Grey" | |
| 7802 mileage 11158 | |
| 7802 order_id "O-46143-25" | |
| 7802 mileage_at_delivery 10 | |
| 7802 tax_horsepower 89 | |
| 7802 co2_rejection 90 | |
| 7802 vin "3D6WR46CX5G868884" | |
| 7802 type "CV" | |
| 7802 energy "D" | |
| 7802 seat 4 | |
| 7802 gross_weight 1976 | |
| 7802 tank 40 | |
| 7802 transmission "Automatic" | |
| 7802 license "RP-149-HO" | |
| 7802 registrationdate "2015-04-18T11:26:31.000Z" | |
| 7802 entry_date "2015-04-28" | |
| 7802 pool 4 | |
| 7802 parking_place "D30" | |
| 7802 certificate_date "2015-05-05" | |
| 7802 first_registration "2015-05-05" | |
| 7902 make "Bmw" | |
| 7902 model "3 reeks (facelift)" | |
| 7902 variant "1.1 TDI 4dr" | |
| 7902 colour "Light Brunswick Green" | |
| 7902 mileage 52297 | |
| 7902 order_id "O-39914-65" | |
| 7902 mileage_at_delivery 21 | |
| 7902 tax_horsepower 84 | |
| 7902 co2_rejection 89 | |
| 7902 vin "3B7MC366XYM288043" | |
| 7902 type "CV" | |
| 7902 energy "D" | |
| 7902 seat 5 | |
| 7902 gross_weight 1970 | |
| 7902 tank 49 | |
| 7902 transmission "Automatic" | |
| 7902 license "OM-589-BQ" | |
| 7902 registrationdate "2015-06-27T11:26:31.000Z" | |
| 7902 entry_date "2015-06-08" | |
| 7902 pool 3 | |
| 7902 parking_place "G38" | |
| 7902 certificate_date "2015-04-28" | |
| 7902 first_registration "2015-04-28" | |
| 8002 make "Citroen" | |
| 8002 model "Berlingo (facelift)" | |
| 8002 variant "1.7 TDI 5dr" | |
| 8002 colour "Very Dark Drab" | |
| 8002 mileage 20916 | |
| 8002 order_id "O-25963-41" | |
| 8002 mileage_at_delivery 13 | |
| 8002 tax_horsepower 238 | |
| 8002 co2_rejection 120 | |
| 8002 vin "3FRWX65H07V411152" | |
| 8002 type "CV" | |
| 8002 energy "D" | |
| 8002 seat 4 | |
| 8002 gross_weight 1401 | |
| 8002 tank 47 | |
| 8002 transmission "Automatic" | |
| 8002 license "OH-670-OQ" | |
| 8002 registrationdate "2014-08-03T11:26:31.000Z" | |
| 8002 entry_date "2015-02-20" | |
| 8002 pool 5 | |
| 8002 parking_place "T30" | |
| 8002 certificate_date "2015-06-08" | |
| 8002 first_registration "2015-06-08" | |
| 8102 make "Citroen" | |
| 8102 model "Jumpy" | |
| 8102 variant "2 TDI 3dr" | |
| 8102 colour "Light Brunswick Green" | |
| 8102 mileage 40590 | |
| 8102 order_id "O-17291-27" | |
| 8102 mileage_at_delivery 15 | |
| 8102 tax_horsepower 286 | |
| 8102 co2_rejection 123 | |
| 8102 vin "1J4HA2D59BL581835" | |
| 8102 type "CV" | |
| 8102 energy "D" | |
| 8102 seat 4 | |
| 8102 gross_weight 1092 | |
| 8102 tank 40 | |
| 8102 transmission "Manual" | |
| 8102 license "EP-563-HF" | |
| 8102 registrationdate "2015-05-11T11:26:31.000Z" | |
| 8102 entry_date "2015-05-25" | |
| 8102 pool 4 | |
| 8102 parking_place "E30" | |
| 8102 certificate_date "2015-02-20" | |
| 8102 first_registration "2015-02-20" | |
| 8202 make "Fiat" | |
| 8202 model "500 X" | |
| 8202 variant "1.2 TDI 2dr" | |
| 8202 colour "Olive Drab" | |
| 8202 mileage 36141 | |
| 8202 order_id "O-51484-95" | |
| 8202 mileage_at_delivery 10 | |
| 8202 tax_horsepower 134 | |
| 8202 co2_rejection 89 | |
| 8202 vin "1GCCS299188138938" | |
| 8202 type "CV" | |
| 8202 energy "D" | |
| 8202 seat 4 | |
| 8202 gross_weight 1422 | |
| 8202 tank 48 | |
| 8202 transmission "Manual" | |
| 8202 license "RA-396-RA" | |
| 8202 registrationdate "2015-04-27T11:26:31.000Z" | |
| 8202 entry_date "2015-03-01" | |
| 8202 pool 5 | |
| 8202 parking_place "X33" | |
| 8202 certificate_date "2015-05-27" | |
| 8202 first_registration "2015-05-25" | |
| 8302 make "Fiat" | |
| 8302 model "Doblo" | |
| 8302 variant "2 TDI 2dr" | |
| 8302 colour "Currant Red" | |
| 8302 mileage 33252 | |
| 8302 order_id "O-58049-75" | |
| 8302 mileage_at_delivery 45 | |
| 8302 tax_horsepower 290 | |
| 8302 co2_rejection 84 | |
| 8302 vin "JS1VR51A7L2191595" | |
| 8302 type "CV" | |
| 8302 energy "D" | |
| 8302 seat 4 | |
| 8302 gross_weight 1345 | |
| 8302 tank 55 | |
| 8302 transmission "Manual" | |
| 8302 license "FD-148-DY" | |
| 8302 registrationdate "2014-09-12T11:26:31.000Z" | |
| 8302 entry_date "2015-01-25" | |
| 8302 pool 3 | |
| 8302 parking_place "R37" | |
| 8302 certificate_date "2015-03-01" | |
| 8302 first_registration "2015-03-01" | |
| 8402 make "Ford" | |
| 8402 model "S-Max" | |
| 8402 variant "1.5 TDI 3dr" | |
| 8402 colour "Middle Blue" | |
| 8402 mileage 21974 | |
| 8402 order_id "O-56026-84" | |
| 8402 mileage_at_delivery 15 | |
| 8402 tax_horsepower 90 | |
| 8402 co2_rejection 231 | |
| 8402 vin "2LMDU68C28B149348" | |
| 8402 type "CV" | |
| 8402 energy "D" | |
| 8402 seat 4 | |
| 8402 gross_weight 1304 | |
| 8402 tank 51 | |
| 8402 transmission "Manual" | |
| 8402 license "YU-590-ZB" | |
| 8402 registrationdate "2014-12-28T11:26:31.000Z" | |
| 8402 entry_date "2015-05-08" | |
| 8402 pool 3 | |
| 8402 parking_place "J31" | |
| 8402 certificate_date "2015-01-25" | |
| 8402 first_registration "2015-01-25" | |
| 8502 make "Ford" | |
| 8502 model "C-Max" | |
| 8502 variant "1.5 TDI 4dr" | |
| 8502 colour "Deep Buff" | |
| 8502 mileage 11944 | |
| 8502 order_id "O-32789-18" | |
| 8502 mileage_at_delivery 10 | |
| 8502 tax_horsepower 89 | |
| 8502 co2_rejection 124 | |
| 8502 vin "1HTSHAAR9TH451280" | |
| 8502 type "CV" | |
| 8502 energy "D" | |
| 8502 seat 4 | |
| 8502 gross_weight 1026 | |
| 8502 tank 57 | |
| 8502 transmission "Manual" | |
| 8502 license "CO-611-QQ" | |
| 8502 registrationdate "2014-10-05T11:26:31.000Z" | |
| 8502 entry_date "2015-06-18" | |
| 8502 pool 5 | |
| 8502 parking_place "X19" | |
| 8502 certificate_date "2015-05-09" | |
| 8502 first_registration "2015-05-08" | |
| 8602 make "Ford" | |
| 8602 model "Mustang" | |
| 8602 variant "1.5 TDI 4dr" | |
| 8602 colour "Dark Violet" | |
| 8602 mileage 22572 | |
| 8602 order_id "O-12144-47" | |
| 8602 mileage_at_delivery 45 | |
| 8602 tax_horsepower 120 | |
| 8602 co2_rejection 278 | |
| 8602 vin "1HD1GMW334K329972" | |
| 8602 type "CV" | |
| 8602 energy "D" | |
| 8602 seat 4 | |
| 8602 gross_weight 1718 | |
| 8602 tank 51 | |
| 8602 transmission "Manual" | |
| 8602 license "EF-927-VT" | |
| 8602 registrationdate "2015-03-19T11:26:31.000Z" | |
| 8602 entry_date "2015-03-18" | |
| 8602 pool 3 | |
| 8602 parking_place "V26" | |
| 8602 certificate_date "2015-06-20" | |
| 8602 first_registration "2015-06-18" | |
| 8702 make "Ford " | |
| 8702 model "Galaxy" | |
| 8702 variant "1.5 TDI 4dr" | |
| 8702 colour "Forest Green" | |
| 8702 mileage 11158 | |
| 8702 order_id "O-43357-100" | |
| 8702 mileage_at_delivery 10 | |
| 8702 tax_horsepower 123 | |
| 8702 co2_rejection 297 | |
| 8702 vin "1FTRF02W27KB74013" | |
| 8702 type "CV" | |
| 8702 energy "D" | |
| 8702 seat 5 | |
| 8702 gross_weight 1105 | |
| 8702 tank 55 | |
| 8702 transmission "Manual" | |
| 8702 license "OA-402-BI" | |
| 8702 registrationdate "2014-11-06T11:26:31.000Z" | |
| 8702 entry_date "2015-04-14" | |
| 8702 pool 5 | |
| 8702 parking_place "X10" | |
| 8702 certificate_date "2015-03-21" | |
| 8702 first_registration "2015-03-18" | |
| 8802 make "Ford" | |
| 8802 model "Edge" | |
| 8802 variant "1.4 TDI 5dr" | |
| 8802 colour "Light French Blue" | |
| 8802 mileage 45603 | |
| 8802 order_id "O-54598-35" | |
| 8802 mileage_at_delivery 90 | |
| 8802 tax_horsepower 89 | |
| 8802 co2_rejection 176 | |
| 8802 vin "WVWKA01G7NW048942" | |
| 8802 type "CV" | |
| 8802 energy "D" | |
| 8802 seat 4 | |
| 8802 gross_weight 1507 | |
| 8802 tank 55 | |
| 8802 transmission "Manual" | |
| 8802 license "NS-393-WK" | |
| 8802 registrationdate "2015-03-14T11:26:31.000Z" | |
| 8802 entry_date "2015-01-12" | |
| 8802 pool 5 | |
| 8802 parking_place "W16" | |
| 8802 certificate_date "2015-04-18" | |
| 8802 first_registration "2015-04-14" | |
| 8902 make "Honda" | |
| 8902 model "Civic " | |
| 8902 variant "1.3 TDI 2dr" | |
| 8902 colour "Light Stone" | |
| 8902 mileage 50580 | |
| 8902 order_id "O-51388-35" | |
| 8902 mileage_at_delivery 45 | |
| 8902 tax_horsepower 84 | |
| 8902 co2_rejection 300 | |
| 8902 vin "JYA3RVW01VA001209" | |
| 8902 type "CV" | |
| 8902 energy "D" | |
| 8902 seat 5 | |
| 8902 gross_weight 1371 | |
| 8902 tank 48 | |
| 8902 transmission "Automatic" | |
| 8902 license "IB-582-JE" | |
| 8902 registrationdate "2015-06-07T11:26:31.000Z" | |
| 8902 entry_date "2015-05-08" | |
| 8902 pool 4 | |
| 8902 parking_place "N22" | |
| 8902 certificate_date "2015-01-12" | |
| 8902 first_registration "2015-01-12" | |
| 9002 make "Honda" | |
| 9002 model "CR-V" | |
| 9002 variant "1 TDI 2dr" | |
| 9002 colour "Smoke Grey" | |
| 9002 mileage 34702 | |
| 9002 order_id "O-44202-78" | |
| 9002 mileage_at_delivery 10 | |
| 9002 tax_horsepower 238 | |
| 9002 co2_rejection 267 | |
| 9002 vin "1HTSDADRXSH645189" | |
| 9002 type "CV" | |
| 9002 energy "D" | |
| 9002 seat 5 | |
| 9002 gross_weight 1817 | |
| 9002 tank 58 | |
| 9002 transmission "Automatic" | |
| 9002 license "MI-967-AH" | |
| 9002 registrationdate "2015-07-01T11:26:31.000Z" | |
| 9002 entry_date "2015-03-29" | |
| 9002 pool 5 | |
| 9002 parking_place "S36" | |
| 9002 certificate_date "2015-05-08" | |
| 9002 first_registration "2015-05-08" | |
| 9102 make "Honda" | |
| 9102 model "HR-V" | |
| 9102 variant "1.5 TDI 3dr" | |
| 9102 colour "Bold Yellow" | |
| 9102 mileage 41282 | |
| 9102 order_id "O-47082-16" | |
| 9102 mileage_at_delivery 21 | |
| 9102 tax_horsepower 286 | |
| 9102 co2_rejection 198 | |
| 9102 vin "1FDEE14N9THA80189" | |
| 9102 type "PV" | |
| 9102 energy "P" | |
| 9102 seat 5 | |
| 9102 gross_weight 1775 | |
| 9102 tank 58 | |
| 9102 transmission "Automatic" | |
| 9102 license "AC-869-PT" | |
| 9102 registrationdate "2015-02-04T11:26:31.000Z" | |
| 9102 entry_date "2015-06-05" | |
| 9102 pool 5 | |
| 9102 parking_place "U41" | |
| 9102 certificate_date "2015-03-29" | |
| 9102 first_registration "2015-03-29" | |
| 9202 make "Honda" | |
| 9202 model "Jazz" | |
| 9202 variant "1.7 TDI 5dr" | |
| 9202 colour "Camouflage Beige" | |
| 9202 mileage 33767 | |
| 9202 order_id "O-21762-89" | |
| 9202 mileage_at_delivery 32 | |
| 9202 tax_horsepower 134 | |
| 9202 co2_rejection 95 | |
| 9202 vin "1FTHF25HXVEA90893" | |
| 9202 type "PV" | |
| 9202 energy "P" | |
| 9202 seat 5 | |
| 9202 gross_weight 1200 | |
| 9202 tank 46 | |
| 9202 transmission "Automatic" | |
| 9202 license "MU-951-KP" | |
| 9202 registrationdate "2015-05-25T11:26:31.000Z" | |
| 9202 entry_date "2015-01-05" | |
| 9202 pool 5 | |
| 9202 parking_place "Z13" | |
| 9202 certificate_date "2015-06-05" | |
| 9202 first_registration "2015-06-05" | |
| 9302 make "Hyundai" | |
| 9302 model "i20 5-deurs" | |
| 9302 variant "1.7 TDI 5dr" | |
| 9302 colour "Light Purple Brown" | |
| 9302 mileage 10811 | |
| 9302 order_id "O-57715-57" | |
| 9302 mileage_at_delivery 23 | |
| 9302 tax_horsepower 83 | |
| 9302 co2_rejection 85 | |
| 9302 vin "1HSHXSJR5DJ302561" | |
| 9302 type "PV" | |
| 9302 energy "P" | |
| 9302 seat 5 | |
| 9302 gross_weight 1664 | |
| 9302 tank 57 | |
| 9302 transmission "Manual" | |
| 9302 license "RY-661-AA" | |
| 9302 registrationdate "2015-06-07T11:26:31.000Z" | |
| 9302 entry_date "2015-02-10" | |
| 9302 pool 5 | |
| 9302 parking_place "Y14" | |
| 9302 certificate_date "2015-01-05" | |
| 9302 first_registration "2015-01-05" | |
| 9402 make "Hyundai" | |
| 9402 model "i20 coupé" | |
| 9402 variant "1.9 TDI 5dr" | |
| 9402 colour "Sky" | |
| 9402 mileage 27756 | |
| 9402 order_id "O-40254-42" | |
| 9402 mileage_at_delivery 20 | |
| 9402 tax_horsepower 94 | |
| 9402 co2_rejection 164 | |
| 9402 vin "WBAVS13528FV89085" | |
| 9402 type "PV" | |
| 9402 energy "P" | |
| 9402 seat 5 | |
| 9402 gross_weight 1122 | |
| 9402 tank 49 | |
| 9402 transmission "Manual" | |
| 9402 license "YO-758-GK" | |
| 9402 registrationdate "2014-11-18T11:26:31.000Z" | |
| 9402 entry_date "2015-01-19" | |
| 9402 pool 3 | |
| 9402 parking_place "P17" | |
| 9402 certificate_date "2015-02-10" | |
| 9402 first_registration "2015-02-10" | |
| 9502 make "Hyundai" | |
| 9502 model "i30 (facelift)" | |
| 9502 variant "1.4 TDI 4dr" | |
| 9502 colour "Dark Earth" | |
| 9502 mileage 38416 | |
| 9502 order_id "O-38788-14" | |
| 9502 mileage_at_delivery 23 | |
| 9502 tax_horsepower 124 | |
| 9502 co2_rejection 198 | |
| 9502 vin "2BVEKSH198V023013" | |
| 9502 type "CV" | |
| 9502 energy "D" | |
| 9502 seat 5 | |
| 9502 gross_weight 1847 | |
| 9502 tank 59 | |
| 9502 transmission "Manual" | |
| 9502 license "DP-503-RZ" | |
| 9502 registrationdate "2014-08-02T11:26:31.000Z" | |
| 9502 entry_date "2015-03-30" | |
| 9502 pool 3 | |
| 9502 parking_place "U23" | |
| 9502 certificate_date "2015-01-19" | |
| 9502 first_registration "2015-01-19" | |
| 9602 make "Hyundai" | |
| 9602 model "i40 (facelift)" | |
| 9602 variant "1.8 TDI 3dr" | |
| 9602 colour "Venetian Red" | |
| 9602 mileage 36938 | |
| 9602 order_id "O-38436-3" | |
| 9602 mileage_at_delivery 19 | |
| 9602 tax_horsepower 162 | |
| 9602 co2_rejection 200 | |
| 9602 vin "1FTRE14L91HB83338" | |
| 9602 type "CV" | |
| 9602 energy "D" | |
| 9602 seat 5 | |
| 9602 gross_weight 1775 | |
| 9602 tank 56 | |
| 9602 transmission "Manual" | |
| 9602 license "PD-374-OD" | |
| 9602 registrationdate "2014-12-18T11:26:31.000Z" | |
| 9602 entry_date "2015-06-20" | |
| 9602 pool 5 | |
| 9602 parking_place "R50" | |
| 9602 certificate_date "2015-03-30" | |
| 9602 first_registration "2015-03-30" | |
| 9702 make "Jeep" | |
| 9702 model "Renegade" | |
| 9702 variant "1 TDI 5dr" | |
| 9702 colour "Aircraft Grey Green" | |
| 9702 mileage 40213 | |
| 9702 order_id "O-38018-48" | |
| 9702 mileage_at_delivery 10 | |
| 9702 tax_horsepower 107 | |
| 9702 co2_rejection 300 | |
| 9702 vin "5FNYF48489B478679" | |
| 9702 type "CV" | |
| 9702 energy "D" | |
| 9702 seat 5 | |
| 9702 gross_weight 1531 | |
| 9702 tank 60 | |
| 9702 transmission "Manual" | |
| 9702 license "PP-347-LF" | |
| 9702 registrationdate "2014-12-16T11:26:31.000Z" | |
| 9702 entry_date "2015-05-22" | |
| 9702 pool 4 | |
| 9702 parking_place "V34" | |
| 9702 certificate_date "2015-06-25" | |
| 9702 first_registration "2015-06-20" | |
| 9802 make "Kia" | |
| 9802 model "Sorento" | |
| 9802 variant "1.4 TDI 5dr" | |
| 9802 colour "Azure Blue" | |
| 9802 mileage 19533 | |
| 9802 order_id "O-57457-59" | |
| 9802 mileage_at_delivery 10 | |
| 9802 tax_horsepower 300 | |
| 9802 co2_rejection 236 | |
| 9802 vin "1G1JF11W3J7111249" | |
| 9802 type "CV" | |
| 9802 energy "D" | |
| 9802 seat 4 | |
| 9802 gross_weight 1777 | |
| 9802 tank 52 | |
| 9802 transmission "Manual" | |
| 9802 license "AY-988-ZI" | |
| 9802 registrationdate "2015-06-17T11:26:31.000Z" | |
| 9802 entry_date "2015-01-25" | |
| 9802 pool 3 | |
| 9802 parking_place "O30" | |
| 9802 certificate_date "2015-05-22" | |
| 9802 first_registration "2015-05-22" | |
| 9902 make "Kia" | |
| 9902 model "Venga (facelift)" | |
| 9902 variant "1.1 TDI 5dr" | |
| 9902 colour "Salmon Pink" | |
| 9902 mileage 23893 | |
| 9902 order_id "O-11180-3" | |
| 9902 mileage_at_delivery 21 | |
| 9902 tax_horsepower 242 | |
| 9902 co2_rejection 327 | |
| 9902 vin "1HGAD5322EA085655" | |
| 9902 type "CV" | |
| 9902 energy "D" | |
| 9902 seat 5 | |
| 9902 gross_weight 1676 | |
| 9902 tank 48 | |
| 9902 transmission "Manual" | |
| 9902 license "PQ-352-FR" | |
| 9902 registrationdate "2015-05-30T11:26:31.000Z" | |
| 9902 entry_date "2015-05-18" | |
| 9902 pool 3 | |
| 9902 parking_place "H48" | |
| 9902 certificate_date "2015-01-25" | |
| 9902 first_registration "2015-01-25" | |
| 10002 make "Kia" | |
| 10002 model "Rio (facelift)" | |
| 10002 variant "1.4 TDI 4dr" | |
| 10002 colour "Pale Cream" | |
| 10002 mileage 12329 | |
| 10002 order_id "O-48687-46" | |
| 10002 mileage_at_delivery 13 | |
| 10002 tax_horsepower 252 | |
| 10002 co2_rejection 300 | |
| 10002 vin "1FMJK1F58AEA29933" | |
| 10002 type "CV" | |
| 10002 energy "D" | |
| 10002 seat 4 | |
| 10002 gross_weight 1221 | |
| 10002 tank 55 | |
| 10002 transmission "Automatic" | |
| 10002 license "HD-292-AK" | |
| 10002 registrationdate "2014-11-29T11:26:31.000Z" | |
| 10002 entry_date "2015-06-24" | |
| 10002 pool 4 | |
| 10002 parking_place "A16" | |
| 10002 certificate_date "2015-05-18" | |
| 10002 first_registration "2015-05-18" | |
| 10102 make "Kia" | |
| 10102 model "Picanto (facelift)" | |
| 10102 variant "1.5 TDI 5dr" | |
| 10102 colour "Signal Red" | |
| 10102 mileage 53142 | |
| 10102 order_id "O-52864-27" | |
| 10102 mileage_at_delivery 15 | |
| 10102 tax_horsepower 234 | |
| 10102 co2_rejection 217 | |
| 10102 vin "WAUBFAFL1CA075882" | |
| 10102 type "CV" | |
| 10102 energy "D" | |
| 10102 seat 4 | |
| 10102 gross_weight 1773 | |
| 10102 tank 56 | |
| 10102 transmission "Automatic" | |
| 10102 license "PD-997-BU" | |
| 10102 registrationdate "2014-08-27T11:26:31.000Z" | |
| 10102 entry_date "2015-06-08" | |
| 10102 pool 3 | |
| 10102 parking_place "E45" | |
| 10102 certificate_date "2015-06-24" | |
| 10102 first_registration "2015-06-24" | |
| 10202 make "Kia" | |
| 10202 model "Cee'd (facelift)" | |
| 10202 variant "1.2 TDI 5dr" | |
| 10202 colour "Extra Dark Sea Grey" | |
| 10202 mileage 56366 | |
| 10202 order_id "O-57452-1" | |
| 10202 mileage_at_delivery 10 | |
| 10202 tax_horsepower 164 | |
| 10202 co2_rejection 190 | |
| 10202 vin "1G4AC69X4BT146123" | |
| 10202 type "CV" | |
| 10202 energy "D" | |
| 10202 seat 4 | |
| 10202 gross_weight 1775 | |
| 10202 tank 60 | |
| 10202 transmission "Manual" | |
| 10202 license "ZR-923-GF" | |
| 10202 registrationdate "2014-10-27T11:26:31.000Z" | |
| 10202 entry_date "2015-01-13" | |
| 10202 pool 3 | |
| 10202 parking_place "O13" | |
| 10202 certificate_date "2015-06-08" | |
| 10202 first_registration "2015-06-08" | |
| 10302 make "Kia" | |
| 10302 model "Optima" | |
| 10302 variant "1.4 TDI 4dr" | |
| 10302 colour "Dark Weatherwork Grey" | |
| 10302 mileage 45354 | |
| 10302 order_id "O-51696-15" | |
| 10302 mileage_at_delivery 45 | |
| 10302 tax_horsepower 198 | |
| 10302 co2_rejection 189 | |
| 10302 vin "5GAKVCED1CJ377010" | |
| 10302 type "CV" | |
| 10302 energy "D" | |
| 10302 seat 4 | |
| 10302 gross_weight 1361 | |
| 10302 tank 41 | |
| 10302 transmission "Manual" | |
| 10302 license "BW-854-II" | |
| 10302 registrationdate "2015-03-28T11:26:31.000Z" | |
| 10302 entry_date "2015-05-11" | |
| 10302 pool 4 | |
| 10302 parking_place "W27" | |
| 10302 certificate_date "2015-01-13" | |
| 10302 first_registration "2015-01-13" | |
| 10402 make "Kia" | |
| 10402 model "Sportage" | |
| 10402 variant "1.9 TDI 5dr" | |
| 10402 colour "Salmon Pink" | |
| 10402 mileage 22903 | |
| 10402 order_id "O-21626-42" | |
| 10402 mileage_at_delivery 15 | |
| 10402 tax_horsepower 257 | |
| 10402 co2_rejection 156 | |
| 10402 vin "1GC2KXEG2CZ324181" | |
| 10402 type "CV" | |
| 10402 energy "D" | |
| 10402 seat 4 | |
| 10402 gross_weight 1632 | |
| 10402 tank 48 | |
| 10402 transmission "Manual" | |
| 10402 license "AJ-332-AI" | |
| 10402 registrationdate "2015-05-20T11:26:31.000Z" | |
| 10402 entry_date "2015-03-30" | |
| 10402 pool 4 | |
| 10402 parking_place "G25" | |
| 10402 certificate_date "2015-05-11" | |
| 10402 first_registration "2015-05-11" | |
| 10502 make "Mazda" | |
| 10502 model 2 | |
| 10502 variant "1.6 TDI 5dr" | |
| 10502 colour "Cobalt Blue" | |
| 10502 mileage 32937 | |
| 10502 order_id "O-51563-26" | |
| 10502 mileage_at_delivery 10 | |
| 10502 tax_horsepower 90 | |
| 10502 co2_rejection 278 | |
| 10502 vin "1G3AY69YXDM725225" | |
| 10502 type "CV" | |
| 10502 energy "D" | |
| 10502 seat 4 | |
| 10502 gross_weight 1879 | |
| 10502 tank 52 | |
| 10502 transmission "Manual" | |
| 10502 license "OQ-960-WV" | |
| 10502 registrationdate "2015-03-17T11:26:31.000Z" | |
| 10502 entry_date "2015-01-27" | |
| 10502 pool 4 | |
| 10502 parking_place "T49" | |
| 10502 certificate_date "2015-03-30" | |
| 10502 first_registration "2015-03-30" | |
| 10602 make "Mazda" | |
| 10602 model "6 (facelift)" | |
| 10602 variant "2 TDI 2dr" | |
| 10602 colour "Sky Blue" | |
| 10602 mileage 20953 | |
| 10602 order_id "O-51630-38" | |
| 10602 mileage_at_delivery 45 | |
| 10602 tax_horsepower 89 | |
| 10602 co2_rejection 297 | |
| 10602 vin "JS1GR7LAX92176390" | |
| 10602 type "CV" | |
| 10602 energy "D" | |
| 10602 seat 4 | |
| 10602 gross_weight 1527 | |
| 10602 tank 47 | |
| 10602 transmission "Manual" | |
| 10602 license "QD-984-VD" | |
| 10602 registrationdate "2015-01-18T11:26:31.000Z" | |
| 10602 entry_date "2015-05-15" | |
| 10602 pool 5 | |
| 10602 parking_place "A31" | |
| 10602 certificate_date "2015-01-26" | |
| 10602 first_registration "2015-01-27" | |
| 10702 make "Mazda" | |
| 10702 model "CX-5 (facelift)" | |
| 10702 variant "1.2 TDI 4dr" | |
| 10702 colour "Light Weatherwork Grey" | |
| 10702 mileage 24692 | |
| 10702 order_id "O-44660-33" | |
| 10702 mileage_at_delivery 10 | |
| 10702 tax_horsepower 120 | |
| 10702 co2_rejection 176 | |
| 10702 vin "1FUPCSZB8XP928946" | |
| 10702 type "CV" | |
| 10702 energy "D" | |
| 10702 seat 5 | |
| 10702 gross_weight 1784 | |
| 10702 tank 43 | |
| 10702 transmission "Manual" | |
| 10702 license "KK-336-JM" | |
| 10702 registrationdate "2015-06-16T11:26:31.000Z" | |
| 10702 entry_date "2015-05-15" | |
| 10702 pool 3 | |
| 10702 parking_place "T10" | |
| 10702 certificate_date "2015-05-17" | |
| 10702 first_registration "2015-05-15" | |
| 10802 make "Mazda" | |
| 10802 model "CX-3" | |
| 10802 variant "1.9 TDI 5dr" | |
| 10802 colour "Manilla" | |
| 10802 mileage 30755 | |
| 10802 order_id "O-54229-86" | |
| 10802 mileage_at_delivery 90 | |
| 10802 tax_horsepower 123 | |
| 10802 co2_rejection 300 | |
| 10802 vin "1GCHK291X2E167492" | |
| 10802 type "CV" | |
| 10802 energy "D" | |
| 10802 seat 4 | |
| 10802 gross_weight 1500 | |
| 10802 tank 49 | |
| 10802 transmission "Manual" | |
| 10802 license "AJ-215-YQ" | |
| 10802 registrationdate "2014-09-29T11:26:31.000Z" | |
| 10802 entry_date "2015-03-23" | |
| 10802 pool 4 | |
| 10802 parking_place "P38" | |
| 10802 certificate_date "2015-05-15" | |
| 10802 first_registration "2015-05-15" | |
| 10902 make "Mazda" | |
| 10902 model "MX-5" | |
| 10902 variant "1.4 TDI 5dr" | |
| 10902 colour "Apricot" | |
| 10902 mileage 55787 | |
| 10902 order_id "O-20936-45" | |
| 10902 mileage_at_delivery 45 | |
| 10902 tax_horsepower 89 | |
| 10902 co2_rejection 267 | |
| 10902 vin "1GCEK19T51Z371445" | |
| 10902 type "CV" | |
| 10902 energy "D" | |
| 10902 seat 5 | |
| 10902 gross_weight 1502 | |
| 10902 tank 47 | |
| 10902 transmission "Manual" | |
| 10902 license "JA-547-EI" | |
| 10902 registrationdate "2014-10-22T11:26:31.000Z" | |
| 10902 entry_date "2015-03-29" | |
| 10902 pool 4 | |
| 10902 parking_place "C17" | |
| 10902 certificate_date "2015-03-23" | |
| 10902 first_registration "2015-03-23" | |
| 11002 make "Mercedes-Benz" | |
| 11002 model "AMG GT" | |
| 11002 variant "1.7 TDI 5dr" | |
| 11002 colour "Olive Drab" | |
| 11002 mileage 35611 | |
| 11002 order_id "O-40406-58" | |
| 11002 mileage_at_delivery 10 | |
| 11002 tax_horsepower 84 | |
| 11002 co2_rejection 198 | |
| 11002 vin "1G11F5SL3FF182265" | |
| 11002 type "CV" | |
| 11002 energy "D" | |
| 11002 seat 4 | |
| 11002 gross_weight 1753 | |
| 11002 tank 53 | |
| 11002 transmission "Manual" | |
| 11002 license "VF-726-BG" | |
| 11002 registrationdate "2015-05-29T11:26:31.000Z" | |
| 11002 entry_date "2015-06-09" | |
| 11002 pool 3 | |
| 11002 parking_place "X47" | |
| 11002 certificate_date "2015-03-29" | |
| 11002 first_registration "2015-03-29" | |
| 11102 make "Mercedes-Benz" | |
| 11102 model "CLA Shooting Brake" | |
| 11102 variant "1.3 TDI 3dr" | |
| 11102 colour "Dark Brown" | |
| 11102 mileage 43663 | |
| 11102 order_id "O-18235-22" | |
| 11102 mileage_at_delivery 21 | |
| 11102 tax_horsepower 238 | |
| 11102 co2_rejection 95 | |
| 11102 vin "1FDLF47G6VEB41148" | |
| 11102 type "CV" | |
| 11102 energy "D" | |
| 11102 seat 4 | |
| 11102 gross_weight 1902 | |
| 11102 tank 57 | |
| 11102 transmission "Manual" | |
| 11102 license "AQ-880-YM" | |
| 11102 registrationdate "2014-10-18T11:26:31.000Z" | |
| 11102 entry_date "2015-01-10" | |
| 11102 pool 4 | |
| 11102 parking_place "N33" | |
| 11102 certificate_date "2015-06-09" | |
| 11102 first_registration "2015-06-09" | |
| 11202 make "Mercedes-Benz" | |
| 11202 model "C-klasse Plug-In-Hybrid" | |
| 11202 variant "1.1 TDI 3dr" | |
| 11202 colour "Middle Bronze Green" | |
| 11202 mileage 45558 | |
| 11202 order_id "O-32912-13" | |
| 11202 mileage_at_delivery 32 | |
| 11202 tax_horsepower 286 | |
| 11202 co2_rejection 85 | |
| 11202 vin "3VWDJ71K68M156203" | |
| 11202 type "CV" | |
| 11202 energy "D" | |
| 11202 seat 5 | |
| 11202 gross_weight 1594 | |
| 11202 tank 47 | |
| 11202 transmission "Manual" | |
| 11202 license "SO-647-RK" | |
| 11202 registrationdate "2014-08-17T11:26:31.000Z" | |
| 11202 entry_date "2015-05-17" | |
| 11202 pool 5 | |
| 11202 parking_place "X23" | |
| 11202 certificate_date "2015-01-10" | |
| 11202 first_registration "2015-01-10" | |
| 11302 make "Mercedes-Benz" | |
| 11302 model "B-klasse electric drive" | |
| 11302 variant "1.4 TDI 4dr" | |
| 11302 colour "Turquoise Blue" | |
| 11302 mileage 32332 | |
| 11302 order_id "O-53385-22" | |
| 11302 mileage_at_delivery 23 | |
| 11302 tax_horsepower 134 | |
| 11302 co2_rejection 164 | |
| 11302 vin "1GNGG25R2T1048263" | |
| 11302 type "CV" | |
| 11302 energy "D" | |
| 11302 seat 5 | |
| 11302 gross_weight 1175 | |
| 11302 tank 40 | |
| 11302 transmission "Manual" | |
| 11302 license "SB-835-ZL" | |
| 11302 registrationdate "2015-03-11T11:26:31.000Z" | |
| 11302 entry_date "2015-03-07" | |
| 11302 pool 3 | |
| 11302 parking_place "E29" | |
| 11302 certificate_date "2015-05-17" | |
| 11302 first_registration "2015-05-17" | |
| 11402 make "Mercedes-Benz" | |
| 11402 model "S-klasse Maybach" | |
| 11402 variant "1.3 TDI 4dr" | |
| 11402 colour "Light Purple Brown" | |
| 11402 mileage 49798 | |
| 11402 order_id "O-57688-47" | |
| 11402 mileage_at_delivery 10 | |
| 11402 tax_horsepower 200 | |
| 11402 co2_rejection 198 | |
| 11402 vin "1FTVX14596NA59699" | |
| 11402 type "CV" | |
| 11402 energy "D" | |
| 11402 seat 5 | |
| 11402 gross_weight 1246 | |
| 11402 tank 51 | |
| 11402 transmission "Manual" | |
| 11402 license "HA-826-KZ" | |
| 11402 registrationdate "2014-12-16T11:26:31.000Z" | |
| 11402 entry_date "2015-04-23" | |
| 11402 pool 4 | |
| 11402 parking_place "V28" | |
| 11402 certificate_date "2015-03-07" | |
| 11402 first_registration "2015-03-07" | |
| 11502 make "Mercedes-Benz" | |
| 11502 model "GLE Coupé" | |
| 11502 variant "1.3 TDI 5dr" | |
| 11502 colour "Olive Green" | |
| 11502 mileage 40503 | |
| 11502 order_id "O-52150-26" | |
| 11502 mileage_at_delivery 21 | |
| 11502 tax_horsepower 267 | |
| 11502 co2_rejection 257 | |
| 11502 vin "1FTSF20R88ED85713" | |
| 11502 type "CV" | |
| 11502 energy "D" | |
| 11502 seat 5 | |
| 11502 gross_weight 1899 | |
| 11502 tank 59 | |
| 11502 transmission "Manual" | |
| 11502 license "LT-984-XY" | |
| 11502 registrationdate "2015-01-30T11:26:31.000Z" | |
| 11502 entry_date "2015-01-27" | |
| 11502 pool 3 | |
| 11502 parking_place "L44" | |
| 11502 certificate_date "2015-04-23" | |
| 11502 first_registration "2015-04-23" | |
| 11602 make "Mercedes-Benz" | |
| 11602 model "GLE" | |
| 11602 variant "1.2 TDI 5dr" | |
| 11602 colour "Sea Green" | |
| 11602 mileage 34146 | |
| 11602 order_id "O-47939-7" | |
| 11602 mileage_at_delivery 13 | |
| 11602 tax_horsepower 83 | |
| 11602 co2_rejection 90 | |
| 11602 vin "4UZAAHBV32CK32825" | |
| 11602 type "CV" | |
| 11602 energy "D" | |
| 11602 seat 4 | |
| 11602 gross_weight 1202 | |
| 11602 tank 57 | |
| 11602 transmission "Manual" | |
| 11602 license "IS-242-AU" | |
| 11602 registrationdate "2015-06-01T11:26:31.000Z" | |
| 11602 entry_date "2015-03-01" | |
| 11602 pool 3 | |
| 11602 parking_place "Q35" | |
| 11602 certificate_date "2015-01-27" | |
| 11602 first_registration "2015-01-27" | |
| 11702 make "Mercedes-Benz" | |
| 11702 model "GLC" | |
| 11702 variant "1.7 TDI 3dr" | |
| 11702 colour "Ruby" | |
| 11702 mileage 14152 | |
| 11702 order_id "O-39677-70" | |
| 11702 mileage_at_delivery 15 | |
| 11702 tax_horsepower 94 | |
| 11702 co2_rejection 89 | |
| 11702 vin "1FTSF21Y69EA01547" | |
| 11702 type "CV" | |
| 11702 energy "D" | |
| 11702 seat 4 | |
| 11702 gross_weight 1965 | |
| 11702 tank 42 | |
| 11702 transmission "Manual" | |
| 11702 license "KA-486-GZ" | |
| 11702 registrationdate "2014-08-19T11:26:31.000Z" | |
| 11702 entry_date "2015-05-17" | |
| 11702 pool 4 | |
| 11702 parking_place "S17" | |
| 11702 certificate_date "2015-03-01" | |
| 11702 first_registration "2015-03-01" | |
| 11802 make "Mitsubishi" | |
| 11802 model "Attrage" | |
| 11802 variant "1.9 TDI 2dr" | |
| 11802 colour "Grass Green" | |
| 11802 mileage 55316 | |
| 11802 order_id "O-57592-76" | |
| 11802 mileage_at_delivery 10 | |
| 11802 tax_horsepower 124 | |
| 11802 co2_rejection 120 | |
| 11802 vin "1HTLDDCL3HH552073" | |
| 11802 type "CV" | |
| 11802 energy "D" | |
| 11802 seat 4 | |
| 11802 gross_weight 1004 | |
| 11802 tank 54 | |
| 11802 transmission "Manual" | |
| 11802 license "XY-603-NQ" | |
| 11802 registrationdate "2015-05-23T11:26:31.000Z" | |
| 11802 entry_date "2015-05-26" | |
| 11802 pool 5 | |
| 11802 parking_place "S33" | |
| 11802 certificate_date "2015-05-17" | |
| 11802 first_registration "2015-05-17" | |
| 11902 make "Mitsubishi" | |
| 11902 model "L200" | |
| 11902 variant "1 TDI 4dr" | |
| 11902 colour "Dark Green" | |
| 11902 mileage 46659 | |
| 11902 order_id "O-44160-14" | |
| 11902 mileage_at_delivery 45 | |
| 11902 tax_horsepower 162 | |
| 11902 co2_rejection 123 | |
| 11902 vin "1GBHC34T1CV175885" | |
| 11902 type "CV" | |
| 11902 energy "D" | |
| 11902 seat 4 | |
| 11902 gross_weight 1709 | |
| 11902 tank 52 | |
| 11902 transmission "Automatic" | |
| 11902 license "YG-736-TF" | |
| 11902 registrationdate "2015-01-28T11:26:31.000Z" | |
| 11902 entry_date "2015-05-25" | |
| 11902 pool 5 | |
| 11902 parking_place "Q48" | |
| 11902 certificate_date "2015-05-28" | |
| 11902 first_registration "2015-05-26" | |
| 12002 make "Mitsubishi" | |
| 12002 model "Outlander" | |
| 12002 variant "1.9 TDI 4dr" | |
| 12002 colour "Bold Green" | |
| 12002 mileage 31357 | |
| 12002 order_id "O-51910-34" | |
| 12002 mileage_at_delivery 15 | |
| 12002 tax_horsepower 107 | |
| 12002 co2_rejection 89 | |
| 12002 vin "1HVBBAAL02H544076" | |
| 12002 type "CV" | |
| 12002 energy "D" | |
| 12002 seat 4 | |
| 12002 gross_weight 1335 | |
| 12002 tank 50 | |
| 12002 transmission "Automatic" | |
| 12002 license "DB-323-YL" | |
| 12002 registrationdate "2015-07-12T11:26:31.000Z" | |
| 12002 entry_date "2015-04-14" | |
| 12002 pool 3 | |
| 12002 parking_place "Y24" | |
| 12002 certificate_date "2015-05-25" | |
| 12002 first_registration "2015-05-25" | |
| 12102 make "Opel" | |
| 12102 model "Vivaro Combi" | |
| 12102 variant "1.6 TDI 5dr" | |
| 12102 colour "Aircraft Grey Green" | |
| 12102 mileage 35240 | |
| 12102 order_id "O-37488-53" | |
| 12102 mileage_at_delivery 10 | |
| 12102 tax_horsepower 213 | |
| 12102 co2_rejection 84 | |
| 12102 vin "JT8VV22T0L0191657" | |
| 12102 type "CV" | |
| 12102 energy "D" | |
| 12102 seat 4 | |
| 12102 gross_weight 1821 | |
| 12102 tank 51 | |
| 12102 transmission "Automatic" | |
| 12102 license "FK-271-EH" | |
| 12102 registrationdate "2015-05-09T11:26:31.000Z" | |
| 12102 entry_date "2015-02-09" | |
| 12102 pool 5 | |
| 12102 parking_place "X50" | |
| 12102 certificate_date "2015-04-14" | |
| 12102 first_registration "2015-04-14" | |
| 12202 make "Opel" | |
| 12202 model "Karl" | |
| 12202 variant "1.7 TDI 5dr" | |
| 12202 colour "NATO Green" | |
| 12202 mileage 28316 | |
| 12202 order_id "O-40340-99" | |
| 12202 mileage_at_delivery 45 | |
| 12202 tax_horsepower 198 | |
| 12202 co2_rejection 236 | |
| 12202 vin "1FTYR11U6XTB01052" | |
| 12202 type "CV" | |
| 12202 energy "D" | |
| 12202 seat 5 | |
| 12202 gross_weight 1483 | |
| 12202 tank 49 | |
| 12202 transmission "Automatic" | |
| 12202 license "CN-142-GN" | |
| 12202 registrationdate "2014-08-19T11:26:31.000Z" | |
| 12202 entry_date "2015-06-12" | |
| 12202 pool 4 | |
| 12202 parking_place "W36" | |
| 12202 certificate_date "2015-02-09" | |
| 12202 first_registration "2015-02-09" | |
| 12302 make "Opel" | |
| 12302 model "Corsa VAN" | |
| 12302 variant "1.4 TDI 4dr" | |
| 12302 colour "Beige" | |
| 12302 mileage 44406 | |
| 12302 order_id "O-53490-9" | |
| 12302 mileage_at_delivery 10 | |
| 12302 tax_horsepower 143 | |
| 12302 co2_rejection 327 | |
| 12302 vin "1FTWW3A5XAEA10348" | |
| 12302 type "CV" | |
| 12302 energy "D" | |
| 12302 seat 4 | |
| 12302 gross_weight 1536 | |
| 12302 tank 57 | |
| 12302 transmission "Manual" | |
| 12302 license "VQ-609-GX" | |
| 12302 registrationdate "2015-05-21T11:26:31.000Z" | |
| 12302 entry_date "2015-02-04" | |
| 12302 pool 5 | |
| 12302 parking_place "Z29" | |
| 12302 certificate_date "2015-06-12" | |
| 12302 first_registration "2015-06-12" | |
| 12402 make "Opel" | |
| 12402 model "Astra 5-deurs" | |
| 12402 variant "1.8 TDI 5dr" | |
| 12402 colour "Manilla" | |
| 12402 mileage 18510 | |
| 12402 order_id "O-33720-72" | |
| 12402 mileage_at_delivery 90 | |
| 12402 tax_horsepower 196 | |
| 12402 co2_rejection 300 | |
| 12402 vin "JT2SV21J2M0016244" | |
| 12402 type "CV" | |
| 12402 energy "D" | |
| 12402 seat 4 | |
| 12402 gross_weight 1485 | |
| 12402 tank 48 | |
| 12402 transmission "Manual" | |
| 12402 license "OD-879-CR" | |
| 12402 registrationdate "2015-03-31T11:26:31.000Z" | |
| 12402 entry_date "2015-02-26" | |
| 12402 pool 4 | |
| 12402 parking_place "J14" | |
| 12402 certificate_date "2015-02-04" | |
| 12402 first_registration "2015-02-04" | |
| 12502 make "Peugeot" | |
| 12502 model "208 (facelift)" | |
| 12502 variant "1.3 TDI 3dr" | |
| 12502 colour "Cobalt Blue" | |
| 12502 mileage 19555 | |
| 12502 order_id "O-47986-49" | |
| 12502 mileage_at_delivery 45 | |
| 12502 tax_horsepower 226 | |
| 12502 co2_rejection 217 | |
| 12502 vin "1B3BD49G8FF174846" | |
| 12502 type "CV" | |
| 12502 energy "D" | |
| 12502 seat 5 | |
| 12502 gross_weight 1606 | |
| 12502 tank 58 | |
| 12502 transmission "Manual" | |
| 12502 license "NB-906-FU" | |
| 12502 registrationdate "2014-12-23T11:26:31.000Z" | |
| 12502 entry_date "2015-03-17" | |
| 12502 pool 5 | |
| 12502 parking_place "Q19" | |
| 12502 certificate_date "2015-02-26" | |
| 12502 first_registration "2015-02-26" | |
| 12602 make "Peugeot" | |
| 12602 model "Partner (facelift)" | |
| 12602 variant "1.6 TDI 4dr" | |
| 12602 colour "Gulf Red" | |
| 12602 mileage 23831 | |
| 12602 order_id "O-26792-45" | |
| 12602 mileage_at_delivery 10 | |
| 12602 tax_horsepower 152 | |
| 12602 co2_rejection 190 | |
| 12602 vin "3C63R3NL1EG386042" | |
| 12602 type "CV" | |
| 12602 energy "D" | |
| 12602 seat 5 | |
| 12602 gross_weight 1382 | |
| 12602 tank 56 | |
| 12602 transmission "Manual" | |
| 12602 license "DJ-865-JI" | |
| 12602 registrationdate "2015-06-07T11:26:31.000Z" | |
| 12602 entry_date "2015-03-17" | |
| 12602 pool 5 | |
| 12602 parking_place "A15" | |
| 12602 certificate_date "2015-03-17" | |
| 12602 first_registration "2015-03-17" | |
| 12702 make "Renault" | |
| 12702 model "Espace" | |
| 12702 variant "2 TDI 4dr" | |
| 12702 colour "Light Violet" | |
| 12702 mileage 45207 | |
| 12702 order_id "O-31035-44" | |
| 12702 mileage_at_delivery 21 | |
| 12702 tax_horsepower 213 | |
| 12702 co2_rejection 189 | |
| 12702 vin "1HVBBNMP0MH369577" | |
| 12702 type "CV" | |
| 12702 energy "D" | |
| 12702 seat 4 | |
| 12702 gross_weight 1259 | |
| 12702 tank 44 | |
| 12702 transmission "Manual" | |
| 12702 license "HO-735-MT" | |
| 12702 registrationdate "2014-09-03T11:26:31.000Z" | |
| 12702 entry_date "2015-02-07" | |
| 12702 pool 4 | |
| 12702 parking_place "V47" | |
| 12702 certificate_date "2015-03-19" | |
| 12702 first_registration "2015-03-17" | |
| 12802 make "Renault" | |
| 12802 model "New Compact SUV" | |
| 12802 variant "1 TDI 3dr" | |
| 12802 colour "Peacock Blue" | |
| 12802 mileage 18952 | |
| 12802 order_id "O-19747-48" | |
| 12802 mileage_at_delivery 32 | |
| 12802 tax_horsepower 198 | |
| 12802 co2_rejection 189 | |
| 12802 vin "YV1VS29542F844773" | |
| 12802 type "CV" | |
| 12802 energy "D" | |
| 12802 seat 5 | |
| 12802 gross_weight 1137 | |
| 12802 tank 57 | |
| 12802 transmission "Manual" | |
| 12802 license "AO-349-BV" | |
| 12802 registrationdate "2015-05-26T11:26:31.000Z" | |
| 12802 entry_date "2015-01-27" | |
| 12802 pool 4 | |
| 12802 parking_place "M50" | |
| 12802 certificate_date "2015-02-09" | |
| 12802 first_registration "2015-02-07" | |
| 12902 make "Renault" | |
| 12902 model "Laguna" | |
| 12902 variant "1.2 TDI 3dr" | |
| 12902 colour "Light Straw" | |
| 12902 mileage 20808 | |
| 12902 order_id "O-41492-16" | |
| 12902 mileage_at_delivery 23 | |
| 12902 tax_horsepower 143 | |
| 12902 co2_rejection 156 | |
| 12902 vin "1B7KE36C2MS329516" | |
| 12902 type "CV" | |
| 12902 energy "D" | |
| 12902 seat 4 | |
| 12902 gross_weight 1158 | |
| 12902 tank 48 | |
| 12902 transmission "Manual" | |
| 12902 license "UW-536-JC" | |
| 12902 registrationdate "2015-05-09T11:26:31.000Z" | |
| 12902 entry_date "2015-04-17" | |
| 12902 pool 3 | |
| 12902 parking_place "K22" | |
| 12902 certificate_date "2015-01-27" | |
| 12902 first_registration "2015-01-27" | |
| 13002 make "Skoda" | |
| 13002 model "Fabia" | |
| 13002 variant "2 TDI 4dr" | |
| 13002 colour "Olive Green" | |
| 13002 mileage 35963 | |
| 13002 order_id "O-43448-17" | |
| 13002 mileage_at_delivery 20 | |
| 13002 tax_horsepower 196 | |
| 13002 co2_rejection 278 | |
| 13002 vin "2GDGG39K2M4529972" | |
| 13002 type "CV" | |
| 13002 energy "D" | |
| 13002 seat 4 | |
| 13002 gross_weight 1936 | |
| 13002 tank 53 | |
| 13002 transmission "Automatic" | |
| 13002 license "KX-344-GA" | |
| 13002 registrationdate "2014-07-19T11:26:31.000Z" | |
| 13002 entry_date "2015-02-06" | |
| 13002 pool 4 | |
| 13002 parking_place "L44" | |
| 13002 certificate_date "2015-04-17" | |
| 13002 first_registration "2015-04-17" | |
| 13102 make "Skoda" | |
| 13102 model "Superb Berline" | |
| 13102 variant "1 TDI 2dr" | |
| 13102 colour "Dark Violet" | |
| 13102 mileage 57663 | |
| 13102 order_id "O-14413-3" | |
| 13102 mileage_at_delivery 23 | |
| 13102 tax_horsepower 226 | |
| 13102 co2_rejection 297 | |
| 13102 vin "1FM5K8GT4EGL15129" | |
| 13102 type "CV" | |
| 13102 energy "D" | |
| 13102 seat 5 | |
| 13102 gross_weight 1358 | |
| 13102 tank 52 | |
| 13102 transmission "Automatic" | |
| 13102 license "XT-152-VY" | |
| 13102 registrationdate "2014-10-10T11:26:31.000Z" | |
| 13102 entry_date "2015-06-14" | |
| 13102 pool 3 | |
| 13102 parking_place "E12" | |
| 13102 certificate_date "2015-02-06" | |
| 13102 first_registration "2015-02-06" | |
| 13202 make "Skoda" | |
| 13202 model "Superb Combi" | |
| 13202 variant "1.5 TDI 4dr" | |
| 13202 colour "Oriental Blue" | |
| 13202 mileage 12221 | |
| 13202 order_id "O-39346-70" | |
| 13202 mileage_at_delivery 19 | |
| 13202 tax_horsepower 152 | |
| 13202 co2_rejection 176 | |
| 13202 vin "JH2RC3808NM131222" | |
| 13202 type "PV" | |
| 13202 energy "P" | |
| 13202 seat 4 | |
| 13202 gross_weight 1932 | |
| 13202 tank 43 | |
| 13202 transmission "Manual" | |
| 13202 license "WY-392-SH" | |
| 13202 registrationdate "2015-06-21T11:26:31.000Z" | |
| 13202 entry_date "2015-04-18" | |
| 13202 pool 4 | |
| 13202 parking_place "L45" | |
| 13202 certificate_date "2015-06-14" | |
| 13202 first_registration "2015-06-14" | |
| 13302 make "Suzuki" | |
| 13302 model "Vitara" | |
| 13302 variant "1.7 TDI 3dr" | |
| 13302 colour "Light Straw" | |
| 13302 mileage 19447 | |
| 13302 order_id "O-24299-17" | |
| 13302 mileage_at_delivery 10 | |
| 13302 tax_horsepower 83 | |
| 13302 co2_rejection 300 | |
| 13302 vin "1FTRF07LX3KA92250" | |
| 13302 type "PV" | |
| 13302 energy "P" | |
| 13302 seat 5 | |
| 13302 gross_weight 1711 | |
| 13302 tank 52 | |
| 13302 transmission "Manual" | |
| 13302 license "QZ-864-IL" | |
| 13302 registrationdate "2014-10-30T11:26:31.000Z" | |
| 13302 entry_date "2015-05-25" | |
| 13302 pool 4 | |
| 13302 parking_place "G16" | |
| 13302 certificate_date "2015-04-18" | |
| 13302 first_registration "2015-04-18" | |
| 13402 make "Suzuki" | |
| 13402 model "Celerio" | |
| 13402 variant "1.9 TDI 4dr" | |
| 13402 colour "International Orange" | |
| 13402 mileage 15133 | |
| 13402 order_id "O-18501-81" | |
| 13402 mileage_at_delivery 10 | |
| 13402 tax_horsepower 94 | |
| 13402 co2_rejection 267 | |
| 13402 vin "JB7FP2451BY202969" | |
| 13402 type "PV" | |
| 13402 energy "P" | |
| 13402 seat 5 | |
| 13402 gross_weight 1720 | |
| 13402 tank 54 | |
| 13402 transmission "Manual" | |
| 13402 license "PI-136-WK" | |
| 13402 registrationdate "2015-06-22T11:26:31.000Z" | |
| 13402 entry_date "2015-04-10" | |
| 13402 pool 5 | |
| 13402 parking_place "L45" | |
| 13402 certificate_date "2015-05-28" | |
| 13402 first_registration "2015-05-25" | |
| 13502 make "Toyota" | |
| 13502 model "Mirai" | |
| 13502 variant "1 TDI 4dr" | |
| 13502 colour "Crimson" | |
| 13502 mileage 18917 | |
| 13502 order_id "O-10991-37" | |
| 13502 mileage_at_delivery 12 | |
| 13502 tax_horsepower 124 | |
| 13502 co2_rejection 198 | |
| 13502 vin "1FMCA11U4SZA41193" | |
| 13502 type "PV" | |
| 13502 energy "P" | |
| 13502 seat 4 | |
| 13502 gross_weight 1564 | |
| 13502 tank 52 | |
| 13502 transmission "Manual" | |
| 13502 license "WR-334-IB" | |
| 13502 registrationdate "2015-04-26T11:26:31.000Z" | |
| 13502 entry_date "2015-02-03" | |
| 13502 pool 5 | |
| 13502 parking_place "C26" | |
| 13502 certificate_date "2015-04-10" | |
| 13502 first_registration "2015-04-10" | |
| 13602 make "Volkswagen" | |
| 13602 model "Touran" | |
| 13602 variant "1.3 TDI 4dr" | |
| 13602 colour "Extra Dark Sea Grey" | |
| 13602 mileage 12354 | |
| 13602 order_id "O-40896-24" | |
| 13602 mileage_at_delivery 12 | |
| 13602 tax_horsepower 162 | |
| 13602 co2_rejection 95 | |
| 13602 vin "3C6TD4CT9CG211249" | |
| 13602 type "CV" | |
| 13602 energy "D" | |
| 13602 seat 5 | |
| 13602 gross_weight 1590 | |
| 13602 tank 44 | |
| 13602 transmission "Manual" | |
| 13602 license "JS-953-QZ" | |
| 13602 registrationdate "2015-07-01T11:26:31.000Z" | |
| 13602 entry_date "2015-04-08" | |
| 13602 pool 5 | |
| 13602 parking_place "F10" | |
| 13602 certificate_date "2015-02-03" | |
| 13602 first_registration "2015-02-03" | |
| 13702 make "Volkswagen" | |
| 13702 model "Taigun" | |
| 13702 variant "1.6 TDI 5dr" | |
| 13702 colour "Light Buff" | |
| 13702 mileage 55317 | |
| 13702 order_id "O-12861-27" | |
| 13702 mileage_at_delivery 23 | |
| 13702 tax_horsepower 107 | |
| 13702 co2_rejection 85 | |
| 13702 vin "1G3BP83E6MW307914" | |
| 13702 type "CV" | |
| 13702 energy "D" | |
| 13702 seat 5 | |
| 13702 gross_weight 1246 | |
| 13702 tank 41 | |
| 13702 transmission "Manual" | |
| 13702 license "YO-756-ZJ" | |
| 13702 registrationdate "2014-12-26T11:26:31.000Z" | |
| 13702 entry_date "2015-01-16" | |
| 13702 pool 4 | |
| 13702 parking_place "K14" | |
| 13702 certificate_date "2015-04-08" | |
| 13702 first_registration "2015-04-08" | |
| 13802 make "Volvo" | |
| 13802 model "V60 Cross Country" | |
| 13802 variant "1.5 TDI 5dr" | |
| 13802 colour "Ruby" | |
| 13802 mileage 27817 | |
| 13802 order_id "O-26002-64" | |
| 13802 mileage_at_delivery 32 | |
| 13802 tax_horsepower 300 | |
| 13802 co2_rejection 164 | |
| 13802 vin "1FMYU02B92KA00233" | |
| 13802 type "CV" | |
| 13802 energy "D" | |
| 13802 seat 4 | |
| 13802 gross_weight 1347 | |
| 13802 tank 56 | |
| 13802 transmission "Manual" | |
| 13802 license "RW-372-AO" | |
| 13802 registrationdate "2015-03-27T11:26:31.000Z" | |
| 13802 entry_date "2015-05-14" | |
| 13802 pool 5 | |
| 13802 parking_place "R25" | |
| 13802 certificate_date "2015-01-18" | |
| 13802 first_registration "2015-01-16" | |
| 13902 brand "Samsung" | |
| 13902 model "Galaxy S3" | |
| 13902 bluetooth "true" | |
| 13902 camera_primary "true" | |
| 13902 card_slot "micro_sd" | |
| 13902 card_slot_memory 4 | |
| 13902 chipset "Qualcomm Snapdragon 617" | |
| 13902 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 13902 date_quotation "2016-02-05" | |
| 13902 display_type "CSTN" | |
| 13902 entry_date "2016-01-13" | |
| 13902 fm_radio "true" | |
| 13902 gps "true" | |
| 13902 gpu "Adreno 530" | |
| 13902 internal_memory 8 | |
| 13902 multi_touch 1 | |
| 13902 nfc "true" | |
| 13902 order_date "2015-12-13" | |
| 13902 order_id "O-40290" | |
| 13902 os "android" | |
| 13902 os_version 4 | |
| 13902 quotation_id "PO-58954" | |
| 13902 serial "S-97419378" | |
| 13902 sim_quantity 1 | |
| 13902 sim_size "mini" | |
| 13902 touch_screen_type "capacitive" | |
| 13902 usb "true" | |
| 13902 wifi "true" | |
| 14002 brand "Samsung" | |
| 14002 model "Galaxy Trend" | |
| 14002 bluetooth "true" | |
| 14002 camera_primary "true" | |
| 14002 card_slot "micro_sd" | |
| 14002 card_slot_memory 8 | |
| 14002 chipset "Qualcomm Snapdragon 617" | |
| 14002 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 14002 date_quotation "2016-02-19" | |
| 14002 display_type "TFT" | |
| 14002 entry_date "2016-01-17" | |
| 14002 fm_radio "true" | |
| 14002 gps "true" | |
| 14002 gpu "Adreno 530" | |
| 14002 internal_memory 16 | |
| 14002 multi_touch 1 | |
| 14002 nfc "true" | |
| 14002 order_date "2015-08-13" | |
| 14002 order_id "O-79731" | |
| 14002 os "android" | |
| 14002 os_version 4 | |
| 14002 quotation_id "PO-47627" | |
| 14002 serial "S-72046478" | |
| 14002 sim_quantity 1 | |
| 14002 sim_size "mini" | |
| 14002 touch_screen_type "capacitive" | |
| 14002 usb "true" | |
| 14002 wifi "true" | |
| 14102 brand "Apple" | |
| 14102 model "iPhone 6" | |
| 14102 bluetooth "true" | |
| 14102 camera_primary "true" | |
| 14102 card_slot "micro_sd" | |
| 14102 card_slot_memory 16 | |
| 14102 chipset "Qualcomm Snapdragon 617" | |
| 14102 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 14102 date_quotation "2015-11-27" | |
| 14102 display_type "TFT" | |
| 14102 entry_date "2015-12-09" | |
| 14102 fm_radio "true" | |
| 14102 gps "true" | |
| 14102 gpu "Adreno 530" | |
| 14102 internal_memory 16 | |
| 14102 multi_touch 3 | |
| 14102 nfc "true" | |
| 14102 order_date "2015-08-16" | |
| 14102 order_id "O-64031" | |
| 14102 os "ios" | |
| 14102 os_version 6 | |
| 14102 quotation_id "PO-51914" | |
| 14102 serial "S-61411924" | |
| 14102 sim_quantity 1 | |
| 14102 sim_size "mini" | |
| 14102 touch_screen_type "capacitive" | |
| 14102 usb "true" | |
| 14102 wifi "true" | |
| 14202 brand "Microsoft" | |
| 14202 model "Lumia" | |
| 14202 bluetooth "true" | |
| 14202 camera_primary "true" | |
| 14202 card_slot "micro_sd" | |
| 14202 card_slot_memory 4 | |
| 14202 chipset "Qualcomm Snapdragon 617" | |
| 14202 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 14202 date_quotation "2015-12-09" | |
| 14202 display_type "TFT" | |
| 14202 entry_date "2016-02-16" | |
| 14202 fm_radio "true" | |
| 14202 gps "true" | |
| 14202 gpu "Adreno 530" | |
| 14202 internal_memory 64 | |
| 14202 multi_touch 2 | |
| 14202 nfc "true" | |
| 14202 order_date "2015-09-10" | |
| 14202 order_id "O-88011" | |
| 14202 os "windows_phone_os" | |
| 14202 os_version 6 | |
| 14202 quotation_id "PO-45062" | |
| 14202 serial "S-76615257" | |
| 14202 sim_quantity 1 | |
| 14202 sim_size "mini" | |
| 14202 touch_screen_type "capacitive" | |
| 14202 usb "true" | |
| 14202 wifi "true" | |
| 14302 brand "Samsung" | |
| 14302 model "Galaxy S3" | |
| 14302 bluetooth "true" | |
| 14302 camera_primary "true" | |
| 14302 card_slot "micro_sd" | |
| 14302 card_slot_memory 32 | |
| 14302 chipset "Qualcomm MSM8996" | |
| 14302 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 14302 date_quotation "2016-01-22" | |
| 14302 display_type "TFT" | |
| 14302 entry_date "2016-01-05" | |
| 14302 fm_radio "true" | |
| 14302 gps "true" | |
| 14302 gpu "Adreno 530" | |
| 14302 internal_memory 8 | |
| 14302 multi_touch 4 | |
| 14302 nfc "true" | |
| 14302 order_date "2015-11-07" | |
| 14302 order_id "O-96357" | |
| 14302 os "android" | |
| 14302 os_version 5 | |
| 14302 quotation_id "PO-30390" | |
| 14302 serial "S-40505948" | |
| 14302 sim_quantity 1 | |
| 14302 sim_size "mini" | |
| 14302 touch_screen_type "capacitive" | |
| 14302 usb "true" | |
| 14302 wifi "true" | |
| 14302 date_broken "12/12/15" | |
| 14402 brand "Samsung" | |
| 14402 model "Galaxy Trend" | |
| 14402 bluetooth "true" | |
| 14402 camera_primary "true" | |
| 14402 card_slot "micro_sd" | |
| 14402 card_slot_memory 16 | |
| 14402 chipset "Qualcomm MSM8996" | |
| 14402 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 14402 date_quotation "2016-01-27" | |
| 14402 display_type "TFT" | |
| 14402 entry_date "2016-02-14" | |
| 14402 fm_radio "true" | |
| 14402 gps "true" | |
| 14402 gpu "Adreno 530" | |
| 14402 internal_memory 32 | |
| 14402 multi_touch 2 | |
| 14402 nfc "true" | |
| 14402 order_date "2015-11-02" | |
| 14402 order_id "O-98967" | |
| 14402 os "android" | |
| 14402 os_version 4 | |
| 14402 quotation_id "PO-69650" | |
| 14402 serial "S-63695683" | |
| 14402 sim_quantity 1 | |
| 14402 sim_size "mini" | |
| 14402 touch_screen_type "capacitive" | |
| 14402 usb "true" | |
| 14402 wifi "true" | |
| 14402 date_broken "12/12/15" | |
| 14502 brand "Samsung" | |
| 14502 model "Galaxy S3" | |
| 14502 bluetooth "true" | |
| 14502 camera_primary "true" | |
| 14502 card_slot "micro_sd" | |
| 14502 card_slot_memory 8 | |
| 14502 chipset "Qualcomm MSM8996" | |
| 14502 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 14502 date_quotation "2015-12-06" | |
| 14502 display_type "TFT" | |
| 14502 entry_date "2016-01-16" | |
| 14502 fm_radio "true" | |
| 14502 gps "true" | |
| 14502 gpu "Adreno 530" | |
| 14502 internal_memory 16 | |
| 14502 multi_touch 5 | |
| 14502 nfc "true" | |
| 14502 order_date "2015-10-20" | |
| 14502 order_id "O-55038" | |
| 14502 os "android" | |
| 14502 os_version 6 | |
| 14502 quotation_id "PO-71972" | |
| 14502 serial "S-78827189" | |
| 14502 sim_quantity 1 | |
| 14502 sim_size "micro" | |
| 14502 touch_screen_type "capacitive" | |
| 14502 usb "true" | |
| 14502 wifi "true" | |
| 14502 date_broken "12/12/15" | |
| 14602 brand "Samsung" | |
| 14602 model "Galaxy Trend" | |
| 14602 bluetooth "true" | |
| 14602 camera_primary "true" | |
| 14602 card_slot "micro_sd" | |
| 14602 card_slot_memory 8 | |
| 14602 chipset "Qualcomm MSM8996" | |
| 14602 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 14602 date_quotation "2015-11-23" | |
| 14602 display_type "TFT" | |
| 14602 entry_date "2015-12-01" | |
| 14602 fm_radio "true" | |
| 14602 gps "true" | |
| 14602 gpu "Adreno 530" | |
| 14602 internal_memory 16 | |
| 14602 multi_touch 3 | |
| 14602 nfc "true" | |
| 14602 order_date "2015-07-01" | |
| 14602 order_id "O-24360" | |
| 14602 os "android" | |
| 14602 os_version 5 | |
| 14602 quotation_id "PO-26750" | |
| 14602 serial "S-70082200" | |
| 14602 sim_quantity 1 | |
| 14602 sim_size "mini" | |
| 14602 touch_screen_type "capacitive" | |
| 14602 usb "true" | |
| 14602 wifi "true" | |
| 14602 date_broken "12/12/15" | |
| 14702 brand "Samsung" | |
| 14702 model "Galaxy S3" | |
| 14702 bluetooth "true" | |
| 14702 camera_primary "true" | |
| 14702 card_slot "micro_sd" | |
| 14702 card_slot_memory 32 | |
| 14702 chipset "Exynos 7420 Octa" | |
| 14702 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 14702 date_quotation "2016-02-12" | |
| 14702 display_type "TFT" | |
| 14702 entry_date "2015-11-12" | |
| 14702 fm_radio "true" | |
| 14702 gps "true" | |
| 14702 gpu "Adreno 530" | |
| 14702 internal_memory 16 | |
| 14702 multi_touch 3 | |
| 14702 nfc "true" | |
| 14702 order_date "2016-01-21" | |
| 14702 order_id "O-87155" | |
| 14702 os "android" | |
| 14702 os_version 6 | |
| 14702 quotation_id "PO-60905" | |
| 14702 serial "S-48490656" | |
| 14702 sim_quantity 1 | |
| 14702 sim_size "mini" | |
| 14702 touch_screen_type "capacitive" | |
| 14702 usb "true" | |
| 14702 wifi "true" | |
| 14702 date_broken "12/12/15" | |
| 14802 brand "Samsung" | |
| 14802 model "Galaxy Trend" | |
| 14802 bluetooth "true" | |
| 14802 camera_primary "true" | |
| 14802 card_slot "micro_sd" | |
| 14802 card_slot_memory 64 | |
| 14802 chipset "Exynos 7420 Octa" | |
| 14802 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 14802 date_quotation "2016-01-30" | |
| 14802 display_type "TFT" | |
| 14802 entry_date "2015-12-20" | |
| 14802 fm_radio "true" | |
| 14802 gps "true" | |
| 14802 gpu "Adreno 530" | |
| 14802 internal_memory 8 | |
| 14802 multi_touch 3 | |
| 14802 nfc "true" | |
| 14802 order_date "2015-12-03" | |
| 14802 order_id "O-53715" | |
| 14802 os "android" | |
| 14802 os_version 4 | |
| 14802 quotation_id "PO-88510" | |
| 14802 serial "S-97866877" | |
| 14802 sim_quantity 1 | |
| 14802 sim_size "mini" | |
| 14802 touch_screen_type "capacitive" | |
| 14802 usb "true" | |
| 14802 wifi "true" | |
| 14802 date_broken "12/12/15" | |
| 14902 brand "Samsung" | |
| 14902 model "Galaxy S3" | |
| 14902 bluetooth "true" | |
| 14902 camera_primary "true" | |
| 14902 card_slot "micro_sd" | |
| 14902 card_slot_memory 4 | |
| 14902 chipset "Qualcomm MSM8996" | |
| 14902 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 14902 date_quotation "2015-12-03" | |
| 14902 display_type "TFT" | |
| 14902 entry_date "2016-01-21" | |
| 14902 fm_radio "true" | |
| 14902 gps "true" | |
| 14902 gpu "Adreno 530" | |
| 14902 internal_memory 16 | |
| 14902 multi_touch 3 | |
| 14902 nfc "true" | |
| 14902 order_date "2015-12-27" | |
| 14902 order_id "O-88535" | |
| 14902 os "android" | |
| 14902 os_version 6 | |
| 14902 quotation_id "PO-35534" | |
| 14902 serial "S-54331595" | |
| 14902 sim_quantity 1 | |
| 14902 sim_size "mini" | |
| 14902 touch_screen_type "capacitive" | |
| 14902 usb "true" | |
| 14902 wifi "true" | |
| 14902 date_broken "12/12/15" | |
| 15002 brand "Samsung" | |
| 15002 model "Galaxy Trend" | |
| 15002 bluetooth "true" | |
| 15002 camera_primary "true" | |
| 15002 card_slot "micro_sd" | |
| 15002 card_slot_memory 64 | |
| 15002 chipset "Qualcomm MSM8996" | |
| 15002 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 15002 date_quotation "2016-01-13" | |
| 15002 display_type "TFT" | |
| 15002 entry_date "2016-01-17" | |
| 15002 fm_radio "true" | |
| 15002 gps "true" | |
| 15002 gpu "Adreno 530" | |
| 15002 internal_memory 16 | |
| 15002 multi_touch 5 | |
| 15002 nfc "true" | |
| 15002 order_date "2016-01-10" | |
| 15002 order_id "O-86857" | |
| 15002 os "android" | |
| 15002 os_version 6 | |
| 15002 quotation_id "PO-66903" | |
| 15002 serial "S-93101043" | |
| 15002 sim_quantity 1 | |
| 15002 sim_size "mini" | |
| 15002 touch_screen_type "capacitive" | |
| 15002 usb "true" | |
| 15002 wifi "true" | |
| 15002 date_broken "12/12/15" | |
| 15102 brand "Samsung" | |
| 15102 model "Galaxy S3" | |
| 15102 bluetooth "true" | |
| 15102 camera_primary "true" | |
| 15102 card_slot "micro_sd" | |
| 15102 card_slot_memory 16 | |
| 15102 chipset "Qualcomm MSM8996" | |
| 15102 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 15102 date_quotation "2015-11-21" | |
| 15102 display_type "TFT" | |
| 15102 entry_date "2015-11-14" | |
| 15102 fm_radio "true" | |
| 15102 gps "true" | |
| 15102 gpu "Adreno 530" | |
| 15102 internal_memory 64 | |
| 15102 multi_touch 3 | |
| 15102 nfc "true" | |
| 15102 order_date "2015-12-20" | |
| 15102 order_id "O-91534" | |
| 15102 os "android" | |
| 15102 os_version 5 | |
| 15102 quotation_id "PO-18033" | |
| 15102 serial "S-21683678" | |
| 15102 sim_quantity 1 | |
| 15102 sim_size "micro" | |
| 15102 touch_screen_type "capacitive" | |
| 15102 usb "true" | |
| 15102 wifi "true" | |
| 15102 date_broken "12/12/15" | |
| 15202 brand "Samsung" | |
| 15202 model "Galaxy Trend" | |
| 15202 bluetooth "true" | |
| 15202 camera_primary "true" | |
| 15202 card_slot "micro_sd" | |
| 15202 card_slot_memory 32 | |
| 15202 chipset "Qualcomm MSM8996" | |
| 15202 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 15202 date_quotation "2016-01-02" | |
| 15202 display_type "TFT" | |
| 15202 entry_date "2015-12-20" | |
| 15202 fm_radio "true" | |
| 15202 gps "true" | |
| 15202 gpu "Adreno 530" | |
| 15202 internal_memory 64 | |
| 15202 multi_touch 2 | |
| 15202 nfc "true" | |
| 15202 order_date "2015-04-27" | |
| 15202 order_id "O-29564" | |
| 15202 os "android" | |
| 15202 os_version 6 | |
| 15202 quotation_id "PO-83322" | |
| 15202 serial "S-03984738" | |
| 15202 sim_quantity 1 | |
| 15202 sim_size "micro" | |
| 15202 touch_screen_type "capacitive" | |
| 15202 usb "true" | |
| 15202 wifi "true" | |
| 15202 date_broken "12/12/15" | |
| 15302 brand "Samsung" | |
| 15302 model "Galaxy S3" | |
| 15302 bluetooth "true" | |
| 15302 camera_primary "true" | |
| 15302 card_slot "micro_sd" | |
| 15302 card_slot_memory 64 | |
| 15302 chipset "Qualcomm MSM8996" | |
| 15302 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 15302 date_quotation "2016-01-12" | |
| 15302 display_type "TFT" | |
| 15302 entry_date "2016-02-12" | |
| 15302 fm_radio "true" | |
| 15302 gps "true" | |
| 15302 gpu "Adreno 530" | |
| 15302 internal_memory 16 | |
| 15302 multi_touch 3 | |
| 15302 nfc "true" | |
| 15302 order_date "2016-01-16" | |
| 15302 order_id "O-14536" | |
| 15302 os "android" | |
| 15302 os_version 6 | |
| 15302 quotation_id "PO-93034" | |
| 15302 serial "S-10435179" | |
| 15302 sim_quantity 1 | |
| 15302 sim_size "micro" | |
| 15302 touch_screen_type "capacitive" | |
| 15302 usb "true" | |
| 15302 wifi "true" | |
| 15302 date_broken "12/12/15" | |
| 15402 brand "Samsung" | |
| 15402 model "Galaxy Trend" | |
| 15402 bluetooth "true" | |
| 15402 camera_primary "true" | |
| 15402 card_slot "micro_sd" | |
| 15402 card_slot_memory 16 | |
| 15402 chipset "Qualcomm MSM8996" | |
| 15402 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 15402 date_quotation "2016-02-09" | |
| 15402 display_type "TFT" | |
| 15402 entry_date "2015-12-17" | |
| 15402 fm_radio "true" | |
| 15402 gps "true" | |
| 15402 gpu "Adreno 530" | |
| 15402 internal_memory 16 | |
| 15402 multi_touch 5 | |
| 15402 nfc "true" | |
| 15402 order_date "2015-08-29" | |
| 15402 order_id "O-90502" | |
| 15402 os "android" | |
| 15402 os_version 4 | |
| 15402 quotation_id "PO-53311" | |
| 15402 serial "S-98233611" | |
| 15402 sim_quantity 1 | |
| 15402 sim_size "micro" | |
| 15402 touch_screen_type "capacitive" | |
| 15402 usb "true" | |
| 15402 wifi "true" | |
| 15402 date_broken "12/12/15" | |
| 15502 brand "Samsung" | |
| 15502 model "Galaxy S3" | |
| 15502 bluetooth "true" | |
| 15502 camera_primary "true" | |
| 15502 card_slot "micro_sd" | |
| 15502 card_slot_memory 32 | |
| 15502 chipset "Qualcomm Snapdragon 617" | |
| 15502 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 15502 date_quotation "2015-12-03" | |
| 15502 display_type "TFT" | |
| 15502 entry_date "2016-01-04" | |
| 15502 fm_radio "true" | |
| 15502 gps "true" | |
| 15502 gpu "Adreno 530" | |
| 15502 internal_memory 64 | |
| 15502 multi_touch 5 | |
| 15502 nfc "true" | |
| 15502 order_date "2015-12-11" | |
| 15502 order_id "O-91892" | |
| 15502 os "android" | |
| 15502 os_version 6 | |
| 15502 quotation_id "PO-46935" | |
| 15502 serial "S-41136997" | |
| 15502 sim_quantity 1 | |
| 15502 sim_size "micro" | |
| 15502 touch_screen_type "capacitive" | |
| 15502 usb "true" | |
| 15502 wifi "true" | |
| 15502 date_broken "12/12/15" | |
| 15502 date_returned "2016-01-13" | |
| 15602 brand "Samsung" | |
| 15602 model "Galaxy Trend" | |
| 15602 bluetooth "true" | |
| 15602 camera_primary "true" | |
| 15602 card_slot "micro_sd" | |
| 15602 card_slot_memory 4 | |
| 15602 chipset "Qualcomm Snapdragon 617" | |
| 15602 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 15602 date_quotation "2016-01-15" | |
| 15602 display_type "TFT" | |
| 15602 entry_date "2015-11-19" | |
| 15602 fm_radio "true" | |
| 15602 gps "true" | |
| 15602 gpu "Adreno 530" | |
| 15602 internal_memory 8 | |
| 15602 multi_touch 3 | |
| 15602 nfc "true" | |
| 15602 order_date "2015-06-06" | |
| 15602 order_id "O-71536" | |
| 15602 os "android" | |
| 15602 os_version 4 | |
| 15602 quotation_id "PO-94766" | |
| 15602 serial "S-46521919" | |
| 15602 sim_quantity 1 | |
| 15602 sim_size "micro" | |
| 15602 touch_screen_type "capacitive" | |
| 15602 usb "true" | |
| 15602 wifi "true" | |
| 15602 date_broken "12/12/15" | |
| 15602 date_returned "2016-01-06" | |
| 15702 brand "Samsung" | |
| 15702 model "Galaxy S3" | |
| 15702 bluetooth "true" | |
| 15702 camera_primary "true" | |
| 15702 card_slot "micro_sd" | |
| 15702 card_slot_memory 16 | |
| 15702 chipset "Qualcomm Snapdragon 617" | |
| 15702 cpu "Mali-T760MP8" | |
| 15702 date_quotation "2015-11-12" | |
| 15702 display_type "TFT" | |
| 15702 entry_date "2015-12-23" | |
| 15702 fm_radio "true" | |
| 15702 gps "true" | |
| 15702 gpu "Adreno 530" | |
| 15702 internal_memory 16 | |
| 15702 multi_touch 3 | |
| 15702 nfc "true" | |
| 15702 order_date "2016-02-17" | |
| 15702 order_id "O-81139" | |
| 15702 os "android" | |
| 15702 os_version 4 | |
| 15702 quotation_id "PO-53814" | |
| 15702 serial "S-82446369" | |
| 15702 sim_quantity 1 | |
| 15702 sim_size "mini" | |
| 15702 touch_screen_type "capacitive" | |
| 15702 usb "true" | |
| 15702 wifi "true" | |
| 15702 date_broken "12/12/15" | |
| 15702 date_returned "2015-12-06" | |
| 15802 brand "Samsung" | |
| 15802 model "Galaxy Trend" | |
| 15802 bluetooth "true" | |
| 15802 camera_primary "true" | |
| 15802 card_slot "micro_sd" | |
| 15802 card_slot_memory 8 | |
| 15802 chipset "Qualcomm Snapdragon 617" | |
| 15802 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 15802 date_quotation "2016-01-03" | |
| 15802 display_type "TFT" | |
| 15802 entry_date "2016-01-01" | |
| 15802 fm_radio "true" | |
| 15802 gps "true" | |
| 15802 gpu "Adreno 530" | |
| 15802 internal_memory 32 | |
| 15802 multi_touch 4 | |
| 15802 nfc "true" | |
| 15802 order_date "2015-11-09" | |
| 15802 order_id "O-65903" | |
| 15802 os "android" | |
| 15802 os_version 4 | |
| 15802 quotation_id "PO-37042" | |
| 15802 serial "S-39496461" | |
| 15802 sim_quantity 1 | |
| 15802 sim_size "mini" | |
| 15802 touch_screen_type "capacitive" | |
| 15802 usb "true" | |
| 15802 wifi "true" | |
| 15802 date_broken "12/12/15" | |
| 15802 date_returned "2015-12-06" | |
| 15902 brand "Samsung" | |
| 15902 model "Galaxy S3" | |
| 15902 bluetooth "true" | |
| 15902 camera_primary "true" | |
| 15902 card_slot "micro_sd" | |
| 15902 card_slot_memory 32 | |
| 15902 chipset "Qualcomm Snapdragon 617" | |
| 15902 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 15902 date_quotation "2015-11-28" | |
| 15902 display_type "TFT" | |
| 15902 entry_date "2016-01-10" | |
| 15902 fm_radio "true" | |
| 15902 gps "true" | |
| 15902 gpu "Adreno 530" | |
| 15902 internal_memory 32 | |
| 15902 multi_touch 4 | |
| 15902 nfc "true" | |
| 15902 order_date "2015-08-20" | |
| 15902 order_id "O-61161" | |
| 15902 os "android" | |
| 15902 os_version 4 | |
| 15902 quotation_id "PO-31928" | |
| 15902 serial "S-63383755" | |
| 15902 sim_quantity 1 | |
| 15902 sim_size "mini" | |
| 15902 touch_screen_type "capacitive" | |
| 15902 usb "true" | |
| 15902 wifi "true" | |
| 15902 date_broken "12/12/15" | |
| 15902 date_returned "2015-12-06" | |
| 16002 brand "Samsung" | |
| 16002 model "Galaxy Trend" | |
| 16002 bluetooth "true" | |
| 16002 camera_primary "true" | |
| 16002 card_slot "micro_sd" | |
| 16002 card_slot_memory 64 | |
| 16002 chipset "Qualcomm Snapdragon 617" | |
| 16002 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 16002 date_quotation "2015-12-08" | |
| 16002 display_type "TFT" | |
| 16002 entry_date "2016-01-25" | |
| 16002 fm_radio "true" | |
| 16002 gps "true" | |
| 16002 gpu "Adreno 530" | |
| 16002 internal_memory 16 | |
| 16002 multi_touch 2 | |
| 16002 nfc "true" | |
| 16002 order_date "2015-11-26" | |
| 16002 order_id "O-63374" | |
| 16002 os "android" | |
| 16002 os_version 6 | |
| 16002 quotation_id "PO-91823" | |
| 16002 serial "S-27867535" | |
| 16002 sim_quantity 1 | |
| 16002 sim_size "mini" | |
| 16002 touch_screen_type "capacitive" | |
| 16002 usb "true" | |
| 16002 wifi "true" | |
| 16002 date_broken "12/12/15" | |
| 16002 date_returned "2015-12-06" | |
| 16102 brand "Samsung" | |
| 16102 model "Galaxy S3" | |
| 16102 bluetooth "true" | |
| 16102 camera_primary "true" | |
| 16102 card_slot "micro_sd" | |
| 16102 card_slot_memory 16 | |
| 16102 chipset "Qualcomm Snapdragon 617" | |
| 16102 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 16102 date_quotation "2016-01-19" | |
| 16102 display_type "TFT" | |
| 16102 entry_date "2016-02-04" | |
| 16102 fm_radio "true" | |
| 16102 gps "true" | |
| 16102 gpu "Mali-T880 MP12" | |
| 16102 internal_memory 64 | |
| 16102 multi_touch 2 | |
| 16102 nfc "true" | |
| 16102 order_date "2015-12-10" | |
| 16102 order_id "O-98114" | |
| 16102 os "android" | |
| 16102 os_version 6 | |
| 16102 quotation_id "PO-23731" | |
| 16102 serial "S-95873513" | |
| 16102 sim_quantity 2 | |
| 16102 sim_size "mini" | |
| 16102 touch_screen_type "capacitive" | |
| 16102 usb "true" | |
| 16102 wifi "true" | |
| 16102 date_broken "12/12/15" | |
| 16102 date_returned "2015-12-06" | |
| 16202 brand "Samsung" | |
| 16202 model "Galaxy Trend" | |
| 16202 bluetooth "true" | |
| 16202 camera_primary "true" | |
| 16202 card_slot "micro_sd" | |
| 16202 card_slot_memory 4 | |
| 16202 chipset "Qualcomm Snapdragon 617" | |
| 16202 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 16202 date_quotation "2016-02-01" | |
| 16202 display_type "TFT" | |
| 16202 entry_date "2015-12-04" | |
| 16202 fm_radio "true" | |
| 16202 gps "true" | |
| 16202 gpu "Mali-T880 MP12" | |
| 16202 internal_memory 64 | |
| 16202 multi_touch 5 | |
| 16202 nfc "true" | |
| 16202 order_date "2016-01-31" | |
| 16202 order_id "O-48241" | |
| 16202 os "android" | |
| 16202 os_version 5 | |
| 16202 quotation_id "PO-30362" | |
| 16202 serial "S-07281149" | |
| 16202 sim_quantity 2 | |
| 16202 sim_size "mini" | |
| 16202 touch_screen_type "capacitive" | |
| 16202 usb "true" | |
| 16202 wifi "true" | |
| 16202 date_broken "12/12/15" | |
| 16202 date_returned "2015-12-06" | |
| 16302 brand "Samsung" | |
| 16302 model "Galaxy S3" | |
| 16302 bluetooth "true" | |
| 16302 camera_primary "true" | |
| 16302 card_slot "micro_sd" | |
| 16302 card_slot_memory 8 | |
| 16302 chipset "Qualcomm Snapdragon 617" | |
| 16302 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 16302 date_quotation "2016-01-17" | |
| 16302 display_type "TFT" | |
| 16302 entry_date "2016-02-15" | |
| 16302 fm_radio "true" | |
| 16302 gps "true" | |
| 16302 gpu "Mali-T880 MP12" | |
| 16302 internal_memory 16 | |
| 16302 multi_touch 4 | |
| 16302 nfc "true" | |
| 16302 order_date "2016-01-15" | |
| 16302 order_id "O-72925" | |
| 16302 os "android" | |
| 16302 os_version 6 | |
| 16302 quotation_id "PO-46005" | |
| 16302 serial "S-02668151" | |
| 16302 sim_quantity 1 | |
| 16302 sim_size "mini" | |
| 16302 touch_screen_type "capacitive" | |
| 16302 usb "true" | |
| 16302 wifi "true" | |
| 16302 date_broken "12/12/15" | |
| 16302 date_returned "2015-12-06" | |
| 16402 brand "Samsung" | |
| 16402 model "Galaxy Trend" | |
| 16402 bluetooth "true" | |
| 16402 camera_primary "true" | |
| 16402 card_slot "micro_sd" | |
| 16402 card_slot_memory 32 | |
| 16402 chipset "Qualcomm Snapdragon 617" | |
| 16402 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 16402 date_quotation "2016-02-03" | |
| 16402 display_type "TFT" | |
| 16402 entry_date "2016-01-25" | |
| 16402 fm_radio "true" | |
| 16402 gps "true" | |
| 16402 gpu "Mali-T880 MP12" | |
| 16402 internal_memory 64 | |
| 16402 multi_touch 3 | |
| 16402 nfc "true" | |
| 16402 order_date "2015-12-30" | |
| 16402 order_id "O-36687" | |
| 16402 os "android" | |
| 16402 os_version 6 | |
| 16402 quotation_id "PO-67518" | |
| 16402 serial "S-22629811" | |
| 16402 sim_quantity 1 | |
| 16402 sim_size "mini" | |
| 16402 touch_screen_type "capacitive" | |
| 16402 usb "true" | |
| 16402 wifi "true" | |
| 16402 date_broken "12/12/15" | |
| 16402 date_returned "2015-12-06" | |
| 16502 brand "Samsung" | |
| 16502 model "Galaxy S3" | |
| 16502 bluetooth "true" | |
| 16502 camera_primary "true" | |
| 16502 card_slot "micro_sd" | |
| 16502 card_slot_memory 32 | |
| 16502 chipset "Qualcomm Snapdragon 617" | |
| 16502 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 16502 date_quotation "2016-01-28" | |
| 16502 display_type "TFT" | |
| 16502 entry_date "2016-01-03" | |
| 16502 fm_radio "true" | |
| 16502 gps "true" | |
| 16502 gpu "Mali-T880 MP12" | |
| 16502 internal_memory 16 | |
| 16502 multi_touch 2 | |
| 16502 nfc "true" | |
| 16502 order_date "2015-09-15" | |
| 16502 order_id "O-57545" | |
| 16502 os "android" | |
| 16502 os_version 5 | |
| 16502 quotation_id "PO-64000" | |
| 16502 serial "S-09032680" | |
| 16502 sim_quantity 1 | |
| 16502 sim_size "nano" | |
| 16502 touch_screen_type "capacitive" | |
| 16502 usb "true" | |
| 16502 wifi "true" | |
| 16502 date_broken "12/12/15" | |
| 16502 date_returned "2015-12-06" | |
| 16602 brand "Apple" | |
| 16602 model "iPhone 6" | |
| 16602 bluetooth "true" | |
| 16602 camera_primary "true" | |
| 16602 card_slot "micro_sd" | |
| 16602 card_slot_memory 64 | |
| 16602 chipset "Qualcomm Snapdragon 617" | |
| 16602 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 16602 date_quotation "2015-11-30" | |
| 16602 display_type "TFT" | |
| 16602 entry_date "2015-12-31" | |
| 16602 fm_radio "true" | |
| 16602 gps "true" | |
| 16602 gpu "Mali-T880 MP12" | |
| 16602 internal_memory 8 | |
| 16602 multi_touch 3 | |
| 16602 nfc "true" | |
| 16602 order_date "2015-10-04" | |
| 16602 order_id "O-57111" | |
| 16602 os "ios" | |
| 16602 os_version 5 | |
| 16602 quotation_id "PO-57541" | |
| 16602 serial "S-30668848" | |
| 16602 sim_quantity 1 | |
| 16602 sim_size "mini" | |
| 16602 touch_screen_type "capacitive" | |
| 16602 usb "true" | |
| 16602 wifi "true" | |
| 16602 date_broken "12/12/15" | |
| 16602 date_returned "2015-12-06" | |
| 16702 brand "Apple" | |
| 16702 model "iPhone 6" | |
| 16702 bluetooth "true" | |
| 16702 camera_primary "true" | |
| 16702 card_slot "micro_sd" | |
| 16702 card_slot_memory 32 | |
| 16702 chipset "Qualcomm Snapdragon 617" | |
| 16702 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 16702 date_quotation "2015-12-02" | |
| 16702 display_type "TFT" | |
| 16702 entry_date "2015-11-20" | |
| 16702 fm_radio "true" | |
| 16702 gps "true" | |
| 16702 gpu "Mali-T880 MP12" | |
| 16702 internal_memory 16 | |
| 16702 multi_touch 5 | |
| 16702 nfc "true" | |
| 16702 order_date "2015-10-23" | |
| 16702 order_id "O-64677" | |
| 16702 os "ios" | |
| 16702 os_version 5 | |
| 16702 quotation_id "PO-28754" | |
| 16702 serial "S-53706960" | |
| 16702 sim_quantity 1 | |
| 16702 sim_size "mini" | |
| 16702 touch_screen_type "capacitive" | |
| 16702 usb "true" | |
| 16702 wifi "true" | |
| 16702 date_broken "12/12/15" | |
| 16702 date_returned "2015-12-06" | |
| 16802 brand "Apple" | |
| 16802 model "iPhone 6" | |
| 16802 bluetooth "true" | |
| 16802 camera_primary "true" | |
| 16802 card_slot "micro_sd" | |
| 16802 card_slot_memory 16 | |
| 16802 chipset "Qualcomm MSM8996" | |
| 16802 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 16802 date_quotation "2016-01-22" | |
| 16802 display_type "TFT" | |
| 16802 entry_date "2015-11-12" | |
| 16802 fm_radio "true" | |
| 16802 gps "true" | |
| 16802 gpu "Mali-T880 MP12" | |
| 16802 internal_memory 16 | |
| 16802 multi_touch 4 | |
| 16802 nfc "true" | |
| 16802 order_date "2015-08-06" | |
| 16802 order_id "O-77442" | |
| 16802 os "ios" | |
| 16802 os_version 6 | |
| 16802 quotation_id "PO-21263" | |
| 16802 serial "S-40071935" | |
| 16802 sim_quantity 1 | |
| 16802 sim_size "mini" | |
| 16802 touch_screen_type "capacitive" | |
| 16802 usb "true" | |
| 16802 wifi "true" | |
| 16802 date_broken "12/12/15" | |
| 16802 date_returned "2015-12-06" | |
| 16902 brand "Apple" | |
| 16902 model "iPhone 6" | |
| 16902 bluetooth "true" | |
| 16902 camera_primary "true" | |
| 16902 card_slot "micro_sd" | |
| 16902 card_slot_memory 8 | |
| 16902 chipset "Qualcomm MSM8996" | |
| 16902 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 16902 date_quotation "2016-01-28" | |
| 16902 display_type "TFT" | |
| 16902 entry_date "2015-12-17" | |
| 16902 fm_radio "true" | |
| 16902 gps "true" | |
| 16902 gpu "Mali-T880 MP12" | |
| 16902 internal_memory 16 | |
| 16902 multi_touch 3 | |
| 16902 nfc "true" | |
| 16902 order_date "2015-06-25" | |
| 16902 order_id "O-21008" | |
| 16902 os "ios" | |
| 16902 os_version 5 | |
| 16902 quotation_id "PO-90715" | |
| 16902 serial "S-75657353" | |
| 16902 sim_quantity 1 | |
| 16902 sim_size "mini" | |
| 16902 touch_screen_type "capacitive" | |
| 16902 usb "true" | |
| 16902 wifi "true" | |
| 16902 date_broken "12/12/15" | |
| 16902 date_returned "2015-12-06" | |
| 17002 brand "Apple" | |
| 17002 model "iPhone 6" | |
| 17002 bluetooth "true" | |
| 17002 camera_primary "true" | |
| 17002 card_slot "micro_sd" | |
| 17002 card_slot_memory 64 | |
| 17002 chipset "Qualcomm MSM8996" | |
| 17002 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 17002 date_quotation "2016-01-13" | |
| 17002 display_type "TFT" | |
| 17002 entry_date "2016-01-11" | |
| 17002 fm_radio "true" | |
| 17002 gps "true" | |
| 17002 gpu "Mali-T880 MP12" | |
| 17002 internal_memory 8 | |
| 17002 multi_touch 4 | |
| 17002 nfc "true" | |
| 17002 order_date "2015-12-28" | |
| 17002 order_id "O-56448" | |
| 17002 os "ios" | |
| 17002 os_version 5 | |
| 17002 quotation_id "PO-75392" | |
| 17002 serial "S-08308686" | |
| 17002 sim_quantity 1 | |
| 17002 sim_size "mini" | |
| 17002 touch_screen_type "capacitive" | |
| 17002 usb "true" | |
| 17002 wifi "true" | |
| 17002 date_broken "12/12/15" | |
| 17002 date_returned "2015-11-25" | |
| 17102 brand "Apple" | |
| 17102 model "iPhone 6" | |
| 17102 bluetooth "true" | |
| 17102 camera_primary "true" | |
| 17102 card_slot "micro_sd" | |
| 17102 card_slot_memory 16 | |
| 17102 chipset "Qualcomm MSM8996" | |
| 17102 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 17102 date_quotation "2016-02-08" | |
| 17102 display_type "TFT" | |
| 17102 entry_date "2015-12-07" | |
| 17102 fm_radio "true" | |
| 17102 gps "true" | |
| 17102 gpu "Mali-T880 MP12" | |
| 17102 internal_memory 64 | |
| 17102 multi_touch 2 | |
| 17102 nfc "true" | |
| 17102 order_date "2015-05-29" | |
| 17102 order_id "O-96017" | |
| 17102 os "ios" | |
| 17102 os_version 4 | |
| 17102 quotation_id "PO-73707" | |
| 17102 serial "S-41430320" | |
| 17102 sim_quantity 1 | |
| 17102 sim_size "mini" | |
| 17102 touch_screen_type "capacitive" | |
| 17102 usb "true" | |
| 17102 wifi "true" | |
| 17102 date_broken "12/12/15" | |
| 17102 date_returned "2015-11-25" | |
| 17202 brand "Apple" | |
| 17202 model "iPhone 6" | |
| 17202 bluetooth "true" | |
| 17202 camera_primary "true" | |
| 17202 card_slot "micro_sd" | |
| 17202 card_slot_memory 4 | |
| 17202 chipset "Qualcomm MSM8996" | |
| 17202 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 17202 date_quotation "2015-12-31" | |
| 17202 display_type "TFT" | |
| 17202 entry_date "2016-01-18" | |
| 17202 fm_radio "true" | |
| 17202 gps "true" | |
| 17202 gpu "Mali-T880 MP12" | |
| 17202 internal_memory 32 | |
| 17202 multi_touch 4 | |
| 17202 nfc "true" | |
| 17202 order_date "2015-05-23" | |
| 17202 order_id "O-14359" | |
| 17202 os "ios" | |
| 17202 os_version 6 | |
| 17202 quotation_id "PO-60120" | |
| 17202 serial "S-07400834" | |
| 17202 sim_quantity 1 | |
| 17202 sim_size "mini" | |
| 17202 touch_screen_type "capacitive" | |
| 17202 usb "true" | |
| 17202 wifi "true" | |
| 17202 date_broken "12/12/15" | |
| 17202 date_returned "2015-11-25" | |
| 17302 brand "Apple" | |
| 17302 model "iPhone 6" | |
| 17302 bluetooth "true" | |
| 17302 camera_primary "true" | |
| 17302 card_slot "micro_sd" | |
| 17302 card_slot_memory 4 | |
| 17302 chipset "Exynos 7420 Octa" | |
| 17302 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 17302 date_quotation "2016-02-11" | |
| 17302 display_type "TFT" | |
| 17302 entry_date "2015-11-15" | |
| 17302 fm_radio "true" | |
| 17302 gps "true" | |
| 17302 gpu "Mali-T880 MP12" | |
| 17302 internal_memory 64 | |
| 17302 multi_touch 3 | |
| 17302 nfc "true" | |
| 17302 order_date "2016-01-01" | |
| 17302 order_id "O-45719" | |
| 17302 os "ios" | |
| 17302 os_version 5 | |
| 17302 quotation_id "PO-56103" | |
| 17302 serial "S-15867535" | |
| 17302 sim_quantity 1 | |
| 17302 sim_size "mini" | |
| 17302 touch_screen_type "capacitive" | |
| 17302 usb "true" | |
| 17302 wifi "true" | |
| 17302 date_broken "12/12/15" | |
| 17302 date_returned "2015-11-25" | |
| 17402 brand "Apple" | |
| 17402 model "iPhone 6" | |
| 17402 bluetooth "true" | |
| 17402 camera_primary "true" | |
| 17402 card_slot "micro_sd" | |
| 17402 card_slot_memory 8 | |
| 17402 chipset "Exynos 7420 Octa" | |
| 17402 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 17402 date_quotation "2015-12-22" | |
| 17402 display_type "TFT" | |
| 17402 entry_date "2015-11-30" | |
| 17402 fm_radio "true" | |
| 17402 gps "true" | |
| 17402 gpu "Mali-T880 MP12" | |
| 17402 internal_memory 32 | |
| 17402 multi_touch 3 | |
| 17402 nfc "true" | |
| 17402 order_date "2016-01-26" | |
| 17402 order_id "O-98817" | |
| 17402 os "ios" | |
| 17402 os_version 4 | |
| 17402 quotation_id "PO-89922" | |
| 17402 serial "S-74653392" | |
| 17402 sim_quantity 1 | |
| 17402 sim_size "nano" | |
| 17402 touch_screen_type "capacitive" | |
| 17402 usb "true" | |
| 17402 wifi "true" | |
| 17402 date_broken "12/12/15" | |
| 17402 date_returned "2015-11-25" | |
| 17502 brand "Microsoft" | |
| 17502 model "Lumia" | |
| 17502 bluetooth "true" | |
| 17502 camera_primary "true" | |
| 17502 card_slot "micro_sd" | |
| 17502 card_slot_memory 16 | |
| 17502 chipset "Exynos 7420 Octa" | |
| 17502 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 17502 date_quotation "2015-12-30" | |
| 17502 display_type "TFT" | |
| 17502 entry_date "2016-01-23" | |
| 17502 fm_radio "true" | |
| 17502 gps "true" | |
| 17502 gpu "Mali-T880 MP12" | |
| 17502 internal_memory 64 | |
| 17502 multi_touch 4 | |
| 17502 nfc "true" | |
| 17502 order_date "2015-12-03" | |
| 17502 order_id "O-55724" | |
| 17502 os "windows_phone_os" | |
| 17502 os_version 4 | |
| 17502 quotation_id "PO-15587" | |
| 17502 serial "S-18548267" | |
| 17502 sim_quantity 1 | |
| 17502 sim_size "mini" | |
| 17502 touch_screen_type "capacitive" | |
| 17502 usb "true" | |
| 17502 wifi "true" | |
| 17502 date_broken "12/12/15" | |
| 17502 date_returned "2015-11-25" | |
| 17602 brand "Microsoft" | |
| 17602 model "Lumia" | |
| 17602 bluetooth "true" | |
| 17602 camera_primary "true" | |
| 17602 card_slot "micro_sd" | |
| 17602 card_slot_memory 64 | |
| 17602 chipset "Exynos 7420 Octa" | |
| 17602 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 17602 date_quotation "2016-02-13" | |
| 17602 display_type "TFT" | |
| 17602 entry_date "2016-02-18" | |
| 17602 fm_radio "true" | |
| 17602 gps "true" | |
| 17602 gpu "Mali-T880 MP12" | |
| 17602 internal_memory 64 | |
| 17602 multi_touch 4 | |
| 17602 nfc "true" | |
| 17602 order_date "2015-05-06" | |
| 17602 order_id "O-63429" | |
| 17602 os "windows_phone_os" | |
| 17602 os_version 6 | |
| 17602 quotation_id "PO-28343" | |
| 17602 serial "S-01870548" | |
| 17602 sim_quantity 1 | |
| 17602 sim_size "mini" | |
| 17602 touch_screen_type "capacitive" | |
| 17602 usb "true" | |
| 17602 wifi "true" | |
| 17602 date_broken "12/12/15" | |
| 17602 date_returned "2015-11-25" | |
| 17702 brand "Microsoft" | |
| 17702 model "Lumia" | |
| 17702 bluetooth "true" | |
| 17702 camera_primary "true" | |
| 17702 card_slot "micro_sd" | |
| 17702 card_slot_memory 32 | |
| 17702 chipset "Qualcomm MSM8996" | |
| 17702 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 17702 date_quotation "2016-01-05" | |
| 17702 display_type "TFT" | |
| 17702 entry_date "2015-11-16" | |
| 17702 fm_radio "true" | |
| 17702 gps "true" | |
| 17702 gpu "Mali-T880 MP12" | |
| 17702 internal_memory 32 | |
| 17702 multi_touch 4 | |
| 17702 nfc "true" | |
| 17702 order_date "2016-02-19" | |
| 17702 order_id "O-73526" | |
| 17702 os "windows_phone_os" | |
| 17702 os_version 6 | |
| 17702 quotation_id "PO-49195" | |
| 17702 serial "S-86458383" | |
| 17702 sim_quantity 1 | |
| 17702 sim_size "mini" | |
| 17702 touch_screen_type "capacitive" | |
| 17702 usb "true" | |
| 17702 wifi "true" | |
| 17702 date_broken "12/12/15" | |
| 17702 date_returned "2015-11-25" | |
| 17802 brand "Microsoft" | |
| 17802 model "Lumia" | |
| 17802 bluetooth "true" | |
| 17802 camera_primary "true" | |
| 17802 card_slot "micro_sd" | |
| 17802 card_slot_memory 32 | |
| 17802 chipset "Qualcomm MSM8996" | |
| 17802 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 17802 date_quotation "2016-01-28" | |
| 17802 display_type "TFT" | |
| 17802 entry_date "2016-02-15" | |
| 17802 fm_radio "true" | |
| 17802 gps "true" | |
| 17802 gpu "Mali-T880 MP12" | |
| 17802 internal_memory 8 | |
| 17802 multi_touch 4 | |
| 17802 nfc "true" | |
| 17802 order_date "2015-08-31" | |
| 17802 order_id "O-99671" | |
| 17802 os "windows_phone_os" | |
| 17802 os_version 5 | |
| 17802 quotation_id "PO-34863" | |
| 17802 serial "S-77077344" | |
| 17802 sim_quantity 1 | |
| 17802 sim_size "mini" | |
| 17802 touch_screen_type "capacitive" | |
| 17802 usb "true" | |
| 17802 wifi "true" | |
| 17802 date_broken "12/12/15" | |
| 17802 date_returned "2016-01-26" | |
| 17802 inactivity_reason "Not usable (GPS not working)" | |
| 17902 brand "Microsoft" | |
| 17902 model "Lumia" | |
| 17902 bluetooth "true" | |
| 17902 camera_primary "true" | |
| 17902 card_slot "micro_sd" | |
| 17902 card_slot_memory 16 | |
| 17902 chipset "Qualcomm MSM8996" | |
| 17902 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 17902 date_quotation "2015-12-31" | |
| 17902 display_type "TFT" | |
| 17902 entry_date "2015-11-16" | |
| 17902 fm_radio "true" | |
| 17902 gps "true" | |
| 17902 gpu "Mali-T880 MP12" | |
| 17902 internal_memory 32 | |
| 17902 multi_touch 5 | |
| 17902 nfc "true" | |
| 17902 order_date "2015-10-14" | |
| 17902 order_id "O-73648" | |
| 17902 os "windows_phone_os" | |
| 17902 os_version 4 | |
| 17902 quotation_id "PO-76931" | |
| 17902 serial "S-34111866" | |
| 17902 sim_quantity 1 | |
| 17902 sim_size "mini" | |
| 17902 touch_screen_type "capacitive" | |
| 17902 usb "true" | |
| 17902 wifi "true" | |
| 17902 date_broken "12/12/15" | |
| 17902 date_returned "2015-12-19" | |
| 17902 inactivity_reason "Not usable (GPS not working)" | |
| 18002 brand "Microsoft" | |
| 18002 model "Lumia" | |
| 18002 bluetooth "true" | |
| 18002 camera_primary "true" | |
| 18002 card_slot "micro_sd" | |
| 18002 card_slot_memory 16 | |
| 18002 chipset "Qualcomm MSM8909" | |
| 18002 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 18002 date_quotation "2016-01-07" | |
| 18002 display_type "TFT" | |
| 18002 entry_date "2016-01-30" | |
| 18002 fm_radio "true" | |
| 18002 gps "true" | |
| 18002 gpu "Mali-T880 MP12" | |
| 18002 internal_memory 64 | |
| 18002 multi_touch 2 | |
| 18002 nfc "true" | |
| 18002 order_date "2015-07-04" | |
| 18002 order_id "O-36359" | |
| 18002 os "windows_phone_os" | |
| 18002 os_version 4 | |
| 18002 quotation_id "PO-60429" | |
| 18002 serial "S-74290240" | |
| 18002 sim_quantity 1 | |
| 18002 sim_size "mini" | |
| 18002 touch_screen_type "capacitive" | |
| 18002 usb "true" | |
| 18002 wifi "true" | |
| 18002 date_broken "12/12/15" | |
| 18002 date_returned "2016-01-17" | |
| 18002 inactivity_reason "Not usable (GPS not working)" | |
| 18102 brand "Microsoft" | |
| 18102 model "Lumia" | |
| 18102 bluetooth "true" | |
| 18102 camera_primary "true" | |
| 18102 card_slot "micro_sd" | |
| 18102 card_slot_memory 4 | |
| 18102 chipset "Qualcomm MSM8909" | |
| 18102 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 18102 date_quotation "2015-12-30" | |
| 18102 display_type "TFT" | |
| 18102 entry_date "2015-12-23" | |
| 18102 fm_radio "true" | |
| 18102 gps "true" | |
| 18102 gpu "Mali-T880 MP12" | |
| 18102 internal_memory 64 | |
| 18102 multi_touch 3 | |
| 18102 nfc "true" | |
| 18102 order_date "2015-05-04" | |
| 18102 order_id "O-29428" | |
| 18102 os "windows_phone_os" | |
| 18102 os_version 5 | |
| 18102 quotation_id "PO-51281" | |
| 18102 serial "S-11457778" | |
| 18102 sim_quantity 1 | |
| 18102 sim_size "mini" | |
| 18102 touch_screen_type "capacitive" | |
| 18102 usb "true" | |
| 18102 wifi "true" | |
| 18102 date_broken "12/12/15" | |
| 18102 date_returned "2016-01-17" | |
| 18102 inactivity_reason "Not usable (GPS not working)" | |
| 18202 brand "Microsoft" | |
| 18202 model "Lumia" | |
| 18202 bluetooth "true" | |
| 18202 camera_primary "true" | |
| 18202 card_slot "micro_sd" | |
| 18202 card_slot_memory 32 | |
| 18202 chipset "Qualcomm MSM8909" | |
| 18202 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 18202 date_quotation "2015-11-21" | |
| 18202 display_type "TFT" | |
| 18202 entry_date "2015-12-09" | |
| 18202 fm_radio "true" | |
| 18202 gps "true" | |
| 18202 gpu "Mali-T880 MP12" | |
| 18202 internal_memory 8 | |
| 18202 multi_touch 4 | |
| 18202 nfc "true" | |
| 18202 order_date "2015-07-27" | |
| 18202 order_id "O-12258" | |
| 18202 os "windows_phone_os" | |
| 18202 os_version 4 | |
| 18202 quotation_id "PO-81789" | |
| 18202 serial "S-43293000" | |
| 18202 sim_quantity 1 | |
| 18202 sim_size "mini" | |
| 18202 touch_screen_type "capacitive" | |
| 18202 usb "true" | |
| 18202 wifi "true" | |
| 18202 date_broken "12/12/15" | |
| 18202 date_returned "2016-01-17" | |
| 18202 inactivity_reason "Not usable (GPS not working)" | |
| 18302 brand "Microsoft" | |
| 18302 model "Lumia" | |
| 18302 bluetooth "true" | |
| 18302 camera_primary "true" | |
| 18302 card_slot "micro_sd" | |
| 18302 card_slot_memory 64 | |
| 18302 chipset "Qualcomm MSM8996" | |
| 18302 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 18302 date_quotation "2015-11-24" | |
| 18302 display_type "AMOLED" | |
| 18302 entry_date "2015-11-12" | |
| 18302 fm_radio "true" | |
| 18302 gps "false" | |
| 18302 gpu "Mali-T880 MP12" | |
| 18302 internal_memory 64 | |
| 18302 multi_touch 3 | |
| 18302 nfc "false" | |
| 18302 order_date "2016-01-19" | |
| 18302 order_id "O-93396" | |
| 18302 os "windows_phone_os" | |
| 18302 os_version 6 | |
| 18302 quotation_id "PO-44863" | |
| 18302 serial "S-16449606" | |
| 18302 sim_quantity 1 | |
| 18302 sim_size "mini" | |
| 18302 touch_screen_type "resistive" | |
| 18302 usb "false" | |
| 18302 wifi "false" | |
| 18302 date_broken "12/12/15" | |
| 18302 date_returned "2016-01-17" | |
| 18302 inactivity_reason "Not usable (GPS not working)" | |
| 18302 date_loss "2015-12-06" | |
| 18402 brand "Microsoft" | |
| 18402 model "Lumia" | |
| 18402 bluetooth "true" | |
| 18402 camera_primary "true" | |
| 18402 card_slot "micro_sd" | |
| 18402 card_slot_memory 32 | |
| 18402 chipset "Qualcomm MSM8996" | |
| 18402 cpu "Quad-core 1.1 GHz Cortex-A7" | |
| 18402 date_quotation "2015-12-17" | |
| 18402 display_type "AMOLED" | |
| 18402 entry_date "2015-12-31" | |
| 18402 fm_radio "true" | |
| 18402 gps "false" | |
| 18402 gpu "Mali-T880 MP12" | |
| 18402 internal_memory 16 | |
| 18402 multi_touch 5 | |
| 18402 nfc "false" | |
| 18402 order_date "2016-02-13" | |
| 18402 order_id "O-68232" | |
| 18402 os "windows_phone_os" | |
| 18402 os_version 6 | |
| 18402 quotation_id "PO-66654" | |
| 18402 serial "S-29714562" | |
| 18402 sim_quantity 1 | |
| 18402 sim_size "mini" | |
| 18402 touch_screen_type "resistive" | |
| 18402 usb "false" | |
| 18402 wifi "false" | |
| 18402 date_broken "12/12/15" | |
| 18402 date_returned "2016-01-17" | |
| 18402 inactivity_reason "Not usable (GPS not working)" | |
| 18402 date_loss "2015-11-17" | |
| 18502 brand "Brother" | |
| 18502 model "MFC-9970CDW" | |
| 18502 date_quotation "2016-02-05" | |
| 18502 entry_date "2016-01-13" | |
| 18502 order_date "2015-12-13" | |
| 18502 order_id "O-40290" | |
| 18502 quotation_id "PR-58954" | |
| 18502 serial "UDMY-9EVDF-JTHKN0" | |
| 18502 usb "true" | |
| 18502 wifi "true" | |
| 18602 brand "Canon" | |
| 18602 model "Océ VarioPrint 120" | |
| 18602 date_quotation "2016-02-19" | |
| 18602 entry_date "2016-01-17" | |
| 18602 order_date "2015-08-13" | |
| 18602 order_id "O-79731" | |
| 18602 quotation_id "PR-47627" | |
| 18602 serial "UDMY-9EVDF-JTHKNU1" | |
| 18602 usb "true" | |
| 18602 wifi "true" | |
| 18702 brand "Konica" | |
| 18702 model "Minolta Bizhub 215" | |
| 18702 date_quotation "2015-11-27" | |
| 18702 entry_date "2015-12-09" | |
| 18702 order_date "2015-08-16" | |
| 18702 order_id "O-64031" | |
| 18702 quotation_id "PR-51914" | |
| 18702 serial "UDMY-9EVDF-JTHKNU2" | |
| 18702 usb "true" | |
| 18702 wifi "true" | |
| 18802 brand "Xerox" | |
| 18802 model "WorkCentre 6505" | |
| 18802 date_quotation "2015-12-09" | |
| 18802 entry_date "2016-02-16" | |
| 18802 order_date "2015-09-10" | |
| 18802 order_id "O-88011" | |
| 18802 quotation_id "PR-45062" | |
| 18802 serial "UDMY-9EVDF-JTHKNU3" | |
| 18802 usb "true" | |
| 18802 wifi "true" | |
| 18902 brand "Ricoh" | |
| 18902 model "Aficio SG 3100SNw" | |
| 18902 date_quotation "2016-01-22" | |
| 18902 entry_date "2016-01-05" | |
| 18902 order_date "2015-11-07" | |
| 18902 order_id "O-96357" | |
| 18902 quotation_id "PR-30390" | |
| 18902 serial "UDMY-9EVDF-JTHKNU4" | |
| 18902 usb "true" | |
| 18902 wifi "true" | |
| 18902 date_broken "12/12/15" | |
| 19002 brand "Ricoh" | |
| 19002 model "Aficio SG 3100SNw" | |
| 19002 date_quotation "2016-01-27" | |
| 19002 entry_date "2016-02-14" | |
| 19002 order_date "2015-11-02" | |
| 19002 order_id "O-98967" | |
| 19002 quotation_id "PR-69650" | |
| 19002 serial "UDMY-9EVDF-JTHKNU5" | |
| 19002 usb "true" | |
| 19002 wifi "true" | |
| 19002 date_broken "12/12/15" | |
| 19102 brand "Ricoh" | |
| 19102 model "Aficio SG 3100SNw" | |
| 19102 date_quotation "2015-12-06" | |
| 19102 entry_date "2016-01-16" | |
| 19102 order_date "2015-10-20" | |
| 19102 order_id "O-55038" | |
| 19102 quotation_id "PR-71972" | |
| 19102 serial "UDMY-9EVDF-JTHKNU6" | |
| 19102 usb "true" | |
| 19102 wifi "true" | |
| 19102 date_broken "12/12/15" | |
| 19202 brand "Ricoh" | |
| 19202 model "Aficio SG 3100SNw" | |
| 19202 date_quotation "2015-11-23" | |
| 19202 entry_date "2015-12-01" | |
| 19202 order_date "2015-07-01" | |
| 19202 order_id "O-24360" | |
| 19202 quotation_id "PR-26750" | |
| 19202 serial "UDMY-9EVDF-JTHKNU7" | |
| 19202 usb "true" | |
| 19202 wifi "true" | |
| 19202 date_broken "12/12/15" | |
| 19302 brand "Brother" | |
| 19302 model "MFC-9970CDW" | |
| 19302 date_quotation "2016-02-12" | |
| 19302 entry_date "2015-11-12" | |
| 19302 order_date "2016-01-21" | |
| 19302 order_id "O-87155" | |
| 19302 quotation_id "PR-60905" | |
| 19302 serial "UDMY-9EVDF-JTHKNU8" | |
| 19302 usb "true" | |
| 19302 wifi "true" | |
| 19302 date_broken "12/12/15" | |
| 19402 brand "Brother" | |
| 19402 model "MFC-9970CDW" | |
| 19402 date_quotation "2016-01-30" | |
| 19402 entry_date "2015-12-20" | |
| 19402 order_date "2015-12-03" | |
| 19402 order_id "O-53715" | |
| 19402 quotation_id "PR-88510" | |
| 19402 serial "UDMY-9EVDF-JTHKNU9" | |
| 19402 usb "true" | |
| 19402 wifi "true" | |
| 19402 date_broken "12/12/15" | |
| 19502 brand "Brother" | |
| 19502 model "MFC-9970CDW" | |
| 19502 date_quotation "2015-12-03" | |
| 19502 entry_date "2016-01-21" | |
| 19502 order_date "2015-12-27" | |
| 19502 order_id "O-88535" | |
| 19502 quotation_id "PR-35534" | |
| 19502 serial "UDMY-9EVDF-JTHKN10" | |
| 19502 usb "true" | |
| 19502 wifi "true" | |
| 19502 date_broken "12/12/15" | |
| 19602 brand "Brother" | |
| 19602 model "MFC-9970CDW" | |
| 19602 date_quotation "2016-01-13" | |
| 19602 entry_date "2016-01-17" | |
| 19602 order_date "2016-01-10" | |
| 19602 order_id "O-86857" | |
| 19602 quotation_id "PR-66903" | |
| 19602 serial "UDMY-9EVDF-JTHKN11" | |
| 19602 usb "true" | |
| 19602 wifi "true" | |
| 19602 date_broken "12/12/15" | |
| 19702 brand "Brother" | |
| 19702 model "MFC-9970CDW" | |
| 19702 date_quotation "2015-11-21" | |
| 19702 entry_date "2015-11-14" | |
| 19702 order_date "2015-12-20" | |
| 19702 order_id "O-91534" | |
| 19702 quotation_id "PR-18033" | |
| 19702 serial "UDMY-9EVDF-JTHKN12" | |
| 19702 usb "true" | |
| 19702 wifi "true" | |
| 19702 date_broken "12/12/15" | |
| 19802 brand "Brother" | |
| 19802 model "MFC-9970CDW" | |
| 19802 date_quotation "2016-01-02" | |
| 19802 entry_date "2015-12-20" | |
| 19802 order_date "2015-04-27" | |
| 19802 order_id "O-29564" | |
| 19802 quotation_id "PR-83322" | |
| 19802 serial "UDMY-9EVDF-JTHKN13" | |
| 19802 usb "true" | |
| 19802 wifi "true" | |
| 19802 date_broken "12/12/15" | |
| 19902 brand "Ricoh" | |
| 19902 model "Aficio SG 3100SNw" | |
| 19902 date_quotation "2016-01-12" | |
| 19902 entry_date "2016-02-12" | |
| 19902 order_date "2016-01-16" | |
| 19902 order_id "O-14536" | |
| 19902 quotation_id "PR-93034" | |
| 19902 serial "UDMY-9EVDF-JTHKN14" | |
| 19902 usb "true" | |
| 19902 wifi "true" | |
| 19902 date_broken "12/12/15" | |
| 20002 brand "Ricoh" | |
| 20002 model "Aficio SG 3100SNw" | |
| 20002 date_quotation "2016-02-09" | |
| 20002 entry_date "2015-12-17" | |
| 20002 order_date "2015-08-29" | |
| 20002 order_id "O-90502" | |
| 20002 quotation_id "PR-53311" | |
| 20002 serial "UDMY-9EVDF-JTHKN15" | |
| 20002 usb "true" | |
| 20002 wifi "true" | |
| 20002 date_broken "12/12/15" | |
| 20102 brand "Ricoh" | |
| 20102 model "Aficio SG 3100SNw" | |
| 20102 date_quotation "2015-12-03" | |
| 20102 entry_date "2016-01-04" | |
| 20102 order_date "2015-12-11" | |
| 20102 order_id "O-91892" | |
| 20102 quotation_id "PR-46935" | |
| 20102 serial "UDMY-9EVDF-JTHKN16" | |
| 20102 usb "true" | |
| 20102 wifi "true" | |
| 20102 date_broken "12/12/15" | |
| 20102 date_returned "2016-01-13" | |
| 20202 brand "Ricoh" | |
| 20202 model "Aficio SG 3100SNw" | |
| 20202 date_quotation "2016-01-15" | |
| 20202 entry_date "2015-11-19" | |
| 20202 order_date "2015-06-06" | |
| 20202 order_id "O-71536" | |
| 20202 quotation_id "PR-94766" | |
| 20202 serial "UDMY-9EVDF-JTHKN17" | |
| 20202 usb "true" | |
| 20202 wifi "true" | |
| 20202 date_broken "12/12/15" | |
| 20202 date_returned "2016-01-06" | |
| 20302 brand "Ricoh" | |
| 20302 model "Aficio SG 3100SNw" | |
| 20302 date_quotation "2015-11-12" | |
| 20302 entry_date "2015-12-23" | |
| 20302 order_date "2016-02-17" | |
| 20302 order_id "O-81139" | |
| 20302 quotation_id "PR-53814" | |
| 20302 serial "UDMY-9EVDF-JTHKN18" | |
| 20302 usb "true" | |
| 20302 wifi "true" | |
| 20302 date_broken "12/12/15" | |
| 20302 date_returned "2015-12-06" | |
| 20402 brand "Ricoh" | |
| 20402 model "Aficio SG 3100SNw" | |
| 20402 date_quotation "2016-01-03" | |
| 20402 entry_date "2016-01-01" | |
| 20402 order_date "2015-11-09" | |
| 20402 order_id "O-65903" | |
| 20402 quotation_id "PR-37042" | |
| 20402 serial "UDMY-9EVDF-JTHKN19" | |
| 20402 usb "true" | |
| 20402 wifi "true" | |
| 20402 date_broken "12/12/15" | |
| 20402 date_returned "2015-12-06" | |
| 20502 brand "Ricoh" | |
| 20502 model "Aficio SG 3100SNw" | |
| 20502 date_quotation "2015-11-28" | |
| 20502 entry_date "2016-01-10" | |
| 20502 order_date "2015-08-20" | |
| 20502 order_id "O-61161" | |
| 20502 quotation_id "PR-31928" | |
| 20502 serial "UDMY-9EVDF-JTHKN20" | |
| 20502 usb "true" | |
| 20502 wifi "true" | |
| 20502 date_broken "12/12/15" | |
| 20502 date_returned "2015-12-06" | |
| 20602 brand "Xerox" | |
| 20602 model "WorkCentre 6505" | |
| 20602 date_quotation "2015-12-08" | |
| 20602 entry_date "2016-01-25" | |
| 20602 order_date "2015-11-26" | |
| 20602 order_id "O-63374" | |
| 20602 quotation_id "PR-91823" | |
| 20602 serial "UDMY-9EVDF-JTHKN21" | |
| 20602 usb "true" | |
| 20602 wifi "true" | |
| 20602 date_broken "12/12/15" | |
| 20602 date_returned "2015-12-06" | |
| 20702 brand "Xerox" | |
| 20702 model "WorkCentre 6506" | |
| 20702 date_quotation "2016-01-19" | |
| 20702 entry_date "2016-02-04" | |
| 20702 order_date "2015-12-10" | |
| 20702 order_id "O-98114" | |
| 20702 quotation_id "PR-23731" | |
| 20702 serial "UDMY-9EVDF-JTHKN22" | |
| 20702 usb "true" | |
| 20702 wifi "true" | |
| 20702 date_broken "12/12/15" | |
| 20702 date_returned "2015-12-06" | |
| 20802 brand "Xerox" | |
| 20802 model "WorkCentre 6507" | |
| 20802 date_quotation "2016-02-01" | |
| 20802 entry_date "2015-12-04" | |
| 20802 order_date "2016-01-31" | |
| 20802 order_id "O-48241" | |
| 20802 quotation_id "PR-30362" | |
| 20802 serial "UDMY-9EVDF-JTHKN23" | |
| 20802 usb "true" | |
| 20802 wifi "true" | |
| 20802 date_broken "12/12/15" | |
| 20802 date_returned "2015-12-06" | |
| 20902 brand "Xerox" | |
| 20902 model "WorkCentre 6508" | |
| 20902 date_quotation "2016-01-17" | |
| 20902 entry_date "2016-02-15" | |
| 20902 order_date "2016-01-15" | |
| 20902 order_id "O-72925" | |
| 20902 quotation_id "PR-46005" | |
| 20902 serial "UDMY-9EVDF-JTHKN24" | |
| 20902 usb "true" | |
| 20902 wifi "true" | |
| 20902 date_broken "12/12/15" | |
| 20902 date_returned "2015-12-06" | |
| 21002 brand "Xerox" | |
| 21002 model "WorkCentre 6509" | |
| 21002 date_quotation "2016-02-03" | |
| 21002 entry_date "2016-01-25" | |
| 21002 order_date "2015-12-30" | |
| 21002 order_id "O-36687" | |
| 21002 quotation_id "PR-67518" | |
| 21002 serial "UDMY-9EVDF-JTHKN25" | |
| 21002 usb "true" | |
| 21002 wifi "true" | |
| 21002 date_broken "12/12/15" | |
| 21002 date_returned "2015-12-06" | |
| 21102 brand "Xerox" | |
| 21102 model "WorkCentre 6510" | |
| 21102 date_quotation "2016-01-28" | |
| 21102 entry_date "2016-01-03" | |
| 21102 order_date "2015-09-15" | |
| 21102 order_id "O-57545" | |
| 21102 quotation_id "PR-64000" | |
| 21102 serial "UDMY-9EVDF-JTHKN26" | |
| 21102 usb "true" | |
| 21102 wifi "true" | |
| 21102 date_broken "12/12/15" | |
| 21102 date_returned "2015-12-06" | |
| 21202 brand "Xerox" | |
| 21202 model "WorkCentre 6511" | |
| 21202 date_quotation "2015-11-30" | |
| 21202 entry_date "2015-12-31" | |
| 21202 order_date "2015-10-04" | |
| 21202 order_id "O-57111" | |
| 21202 quotation_id "PR-57541" | |
| 21202 serial "UDMY-9EVDF-JTHKN27" | |
| 21202 usb "true" | |
| 21202 wifi "true" | |
| 21202 date_broken "12/12/15" | |
| 21202 date_returned "2015-12-06" | |
| 21302 brand "Xerox" | |
| 21302 model "WorkCentre 6512" | |
| 21302 date_quotation "2015-12-02" | |
| 21302 entry_date "2015-11-20" | |
| 21302 order_date "2015-10-23" | |
| 21302 order_id "O-64677" | |
| 21302 quotation_id "PR-28754" | |
| 21302 serial "UDMY-9EVDF-JTHKN28" | |
| 21302 usb "true" | |
| 21302 wifi "true" | |
| 21302 date_broken "12/12/15" | |
| 21302 date_returned "2015-12-06" | |
| 21402 brand "Xerox" | |
| 21402 model "WorkCentre 6513" | |
| 21402 date_quotation "2016-01-22" | |
| 21402 entry_date "2015-11-12" | |
| 21402 order_date "2015-08-06" | |
| 21402 order_id "O-77442" | |
| 21402 quotation_id "PR-21263" | |
| 21402 serial "UDMY-9EVDF-JTHKN29" | |
| 21402 usb "true" | |
| 21402 wifi "true" | |
| 21402 date_broken "12/12/15" | |
| 21402 date_returned "2015-12-06" | |
| 21502 brand "Xerox" | |
| 21502 model "WorkCentre 6514" | |
| 21502 date_quotation "2016-01-28" | |
| 21502 entry_date "2015-12-17" | |
| 21502 order_date "2015-06-25" | |
| 21502 order_id "O-21008" | |
| 21502 quotation_id "PR-90715" | |
| 21502 serial "UDMY-9EVDF-JTHKN30" | |
| 21502 usb "true" | |
| 21502 wifi "true" | |
| 21502 date_broken "12/12/15" | |
| 21502 date_returned "2015-12-06" | |
| 21602 brand "Xerox" | |
| 21602 model "WorkCentre 6515" | |
| 21602 date_quotation "2016-01-13" | |
| 21602 entry_date "2016-01-11" | |
| 21602 order_date "2015-12-28" | |
| 21602 order_id "O-56448" | |
| 21602 quotation_id "PR-75392" | |
| 21602 serial "UDMY-9EVDF-JTHKN31" | |
| 21602 usb "true" | |
| 21602 wifi "true" | |
| 21602 date_broken "12/12/15" | |
| 21602 date_returned "2015-11-25" | |
| 21702 brand "Xerox" | |
| 21702 model "WorkCentre 6516" | |
| 21702 date_quotation "2016-02-08" | |
| 21702 entry_date "2015-12-07" | |
| 21702 order_date "2015-05-29" | |
| 21702 order_id "O-96017" | |
| 21702 quotation_id "PR-73707" | |
| 21702 serial "UDMY-9EVDF-JTHKN32" | |
| 21702 usb "true" | |
| 21702 wifi "true" | |
| 21702 date_broken "12/12/15" | |
| 21702 date_returned "2015-11-25" | |
| 21802 brand "Konica" | |
| 21802 model "Minolta Bizhub 215" | |
| 21802 date_quotation "2015-12-31" | |
| 21802 entry_date "2016-01-18" | |
| 21802 order_date "2015-05-23" | |
| 21802 order_id "O-14359" | |
| 21802 quotation_id "PR-60120" | |
| 21802 serial "UDMY-9EVDF-JTHKN33" | |
| 21802 usb "true" | |
| 21802 wifi "true" | |
| 21802 date_broken "12/12/15" | |
| 21802 date_returned "2015-11-25" | |
| 21902 brand "Konica" | |
| 21902 model "Minolta Bizhub 215" | |
| 21902 date_quotation "2016-02-11" | |
| 21902 entry_date "2015-11-15" | |
| 21902 order_date "2016-01-01" | |
| 21902 order_id "O-45719" | |
| 21902 quotation_id "PR-56103" | |
| 21902 serial "UDMY-9EVDF-JTHKN34" | |
| 21902 usb "true" | |
| 21902 wifi "true" | |
| 21902 date_broken "12/12/15" | |
| 21902 date_returned "2015-11-25" | |
| 22002 brand "Konica" | |
| 22002 model "Minolta Bizhub 215" | |
| 22002 date_quotation "2015-12-22" | |
| 22002 entry_date "2015-11-30" | |
| 22002 order_date "2016-01-26" | |
| 22002 order_id "O-98817" | |
| 22002 quotation_id "PR-89922" | |
| 22002 serial "UDMY-9EVDF-JTHKN35" | |
| 22002 usb "true" | |
| 22002 wifi "true" | |
| 22002 date_broken "12/12/15" | |
| 22002 date_returned "2015-11-25" | |
| 22102 brand "Konica" | |
| 22102 model "Minolta Bizhub 215" | |
| 22102 date_quotation "2015-12-30" | |
| 22102 entry_date "2016-01-23" | |
| 22102 order_date "2015-12-03" | |
| 22102 order_id "O-55724" | |
| 22102 quotation_id "PR-15587" | |
| 22102 serial "UDMY-9EVDF-JTHKN36" | |
| 22102 usb "true" | |
| 22102 wifi "true" | |
| 22102 date_broken "12/12/15" | |
| 22102 date_returned "2015-11-25" | |
| 22202 brand "Konica" | |
| 22202 model "Minolta Bizhub 215" | |
| 22202 date_quotation "2016-02-13" | |
| 22202 entry_date "2016-02-18" | |
| 22202 order_date "2015-05-06" | |
| 22202 order_id "O-63429" | |
| 22202 quotation_id "PR-28343" | |
| 22202 serial "UDMY-9EVDF-JTHKN37" | |
| 22202 usb "true" | |
| 22202 wifi "true" | |
| 22202 date_broken "12/12/15" | |
| 22202 date_returned "2015-11-25" | |
| 22302 brand "Konica" | |
| 22302 model "Minolta Bizhub 215" | |
| 22302 date_quotation "2016-01-05" | |
| 22302 entry_date "2015-11-16" | |
| 22302 order_date "2016-02-19" | |
| 22302 order_id "O-73526" | |
| 22302 quotation_id "PR-49195" | |
| 22302 serial "UDMY-9EVDF-JTHKN38" | |
| 22302 usb "true" | |
| 22302 wifi "true" | |
| 22302 date_broken "12/12/15" | |
| 22302 date_returned "2015-11-25" | |
| 22402 brand "Konica" | |
| 22402 model "Minolta Bizhub 215" | |
| 22402 date_quotation "2016-01-28" | |
| 22402 entry_date "2016-02-15" | |
| 22402 order_date "2015-08-31" | |
| 22402 order_id "O-99671" | |
| 22402 quotation_id "PR-34863" | |
| 22402 serial "UDMY-9EVDF-JTHKN39" | |
| 22402 usb "true" | |
| 22402 wifi "true" | |
| 22402 date_broken "12/12/15" | |
| 22402 date_returned "2016-01-26" | |
| 22402 inactivity_reason "Not usable (Carriage not working)" | |
| 22502 brand "Canon" | |
| 22502 model "Océ VarioPrint 120" | |
| 22502 date_quotation "2015-12-31" | |
| 22502 entry_date "2015-11-16" | |
| 22502 order_date "2015-10-14" | |
| 22502 order_id "O-73648" | |
| 22502 quotation_id "PR-76931" | |
| 22502 serial "UDMY-9EVDF-JTHKN40" | |
| 22502 usb "true" | |
| 22502 wifi "true" | |
| 22502 date_broken "12/12/15" | |
| 22502 date_returned "2015-12-19" | |
| 22502 inactivity_reason "Not usable (Carriage not working)" | |
| 22602 brand "Canon" | |
| 22602 model "Océ VarioPrint 120" | |
| 22602 date_quotation "2016-01-07" | |
| 22602 entry_date "2016-01-30" | |
| 22602 order_date "2015-07-04" | |
| 22602 order_id "O-36359" | |
| 22602 quotation_id "PR-60429" | |
| 22602 serial "UDMY-9EVDF-JTHKN41" | |
| 22602 usb "true" | |
| 22602 wifi "true" | |
| 22602 date_broken "12/12/15" | |
| 22602 date_returned "2016-01-17" | |
| 22602 inactivity_reason "Not usable (Carriage not working)" | |
| 22702 brand "Canon" | |
| 22702 model "Océ VarioPrint 120" | |
| 22702 date_quotation "2015-12-30" | |
| 22702 entry_date "2015-12-23" | |
| 22702 order_date "2015-05-04" | |
| 22702 order_id "O-29428" | |
| 22702 quotation_id "PR-51281" | |
| 22702 serial "UDMY-9EVDF-JTHKN42" | |
| 22702 usb "true" | |
| 22702 wifi "true" | |
| 22702 date_broken "12/12/15" | |
| 22702 date_returned "2016-01-17" | |
| 22702 inactivity_reason "Not usable (Carriage not working)" | |
| 22802 brand "Brother" | |
| 22802 model "MFC-9970CDW" | |
| 22802 date_quotation "2015-11-21" | |
| 22802 entry_date "2015-12-09" | |
| 22802 order_date "2015-07-27" | |
| 22802 order_id "O-12258" | |
| 22802 quotation_id "PR-81789" | |
| 22802 serial "UDMY-9EVDF-JTHKN43" | |
| 22802 usb "true" | |
| 22802 wifi "true" | |
| 22802 date_broken "12/12/15" | |
| 22802 date_returned "2016-01-17" | |
| 22802 inactivity_reason "Not usable (Carriage not working)" | |
| 22902 brand "Brother" | |
| 22902 model "MFC-9970CDW" | |
| 22902 date_quotation "2015-11-24" | |
| 22902 entry_date "2015-11-12" | |
| 22902 order_date "2016-01-19" | |
| 22902 order_id "O-93396" | |
| 22902 quotation_id "PR-44863" | |
| 22902 serial "UDMY-9EVDF-JTHKN44" | |
| 22902 usb "false" | |
| 22902 wifi "false" | |
| 22902 date_broken "12/12/15" | |
| 22902 date_returned "2016-01-17" | |
| 22902 inactivity_reason "Not usable (Carriage not working)" | |
| 22902 date_loss "2015-12-06" | |
| 23002 brand "Brother" | |
| 23002 model "MFC-9970CDW" | |
| 23002 date_quotation "2015-12-17" | |
| 23002 entry_date "2015-12-31" | |
| 23002 order_date "2016-02-13" | |
| 23002 order_id "O-68232" | |
| 23002 quotation_id "PR-66654" | |
| 23002 serial "UDMY-9EVDF-JTHKN45" | |
| 23002 usb "false" | |
| 23002 wifi "false" | |
| 23002 date_broken "12/12/15" | |
| 23002 date_returned "2016-01-17" | |
| 23002 inactivity_reason "Not usable (Carriage not working)" | |
| 23002 date_loss "2015-11-17" | |
| 23102 brand "Samsung" | |
| 23102 model "Notebook 9 pro" | |
| 23102 mac_address "00:1B:44:11:3A:B1" | |
| 23102 computer_type "laptop" | |
| 23102 display_type "LCD" | |
| 23102 bluetooth "true" | |
| 23102 camera "true" | |
| 23102 cpu "Intel Core i7" | |
| 23102 date_quotation "2016-02-05" | |
| 23102 entry_date "2016-01-13" | |
| 23102 gpu "NVIDIA GTX 970m" | |
| 23102 internal_memory 512 | |
| 23102 order_date "2015-12-13" | |
| 23102 order_id "O-40290" | |
| 23102 os "Windows" | |
| 23102 os_version 8 | |
| 23102 quotation_id "BX-58954" | |
| 23102 serial "X-97419378" | |
| 23102 usb 2 | |
| 23102 wifi "true" | |
| 23202 brand "Samsung" | |
| 23202 model "Notebook 9 pro" | |
| 23202 mac_address "00:1B:44:11:3A:B2" | |
| 23202 computer_type "laptop" | |
| 23202 display_type "LCD" | |
| 23202 bluetooth "true" | |
| 23202 camera "true" | |
| 23202 cpu "Intel Core i7" | |
| 23202 date_quotation "2016-02-19" | |
| 23202 entry_date "2016-01-17" | |
| 23202 gpu "NVIDIA GTX 970m" | |
| 23202 internal_memory 512 | |
| 23202 order_date "2015-08-13" | |
| 23202 order_id "O-79731" | |
| 23202 os "Windows" | |
| 23202 os_version 8 | |
| 23202 quotation_id "BX-47627" | |
| 23202 serial "X-72046478" | |
| 23202 usb 2 | |
| 23202 wifi "true" | |
| 23302 brand "Apple" | |
| 23302 model "Macbook pro" | |
| 23302 mac_address "00:1B:44:11:3A:B3" | |
| 23302 computer_type "laptop" | |
| 23302 display_type "Retina" | |
| 23302 bluetooth "true" | |
| 23302 camera "true" | |
| 23302 cpu "Intel Core i7" | |
| 23302 date_quotation "2015-11-27" | |
| 23302 entry_date "2015-12-09" | |
| 23302 gpu "NVIDIA GTX 970m" | |
| 23302 internal_memory 512 | |
| 23302 order_date "2015-08-16" | |
| 23302 order_id "O-64031" | |
| 23302 os "OSX" | |
| 23302 os_version 10 | |
| 23302 quotation_id "BX-51914" | |
| 23302 serial "X-61411924" | |
| 23302 usb 2 | |
| 23302 wifi "true" | |
| 23402 brand "HP" | |
| 23402 model "Elitebook 8560p" | |
| 23402 mac_address "00:1B:44:11:3A:B4" | |
| 23402 computer_type "laptop" | |
| 23402 display_type "LCD" | |
| 23402 bluetooth "true" | |
| 23402 camera "true" | |
| 23402 cpu "Intel Core i7" | |
| 23402 date_quotation "2015-12-09" | |
| 23402 entry_date "2016-02-16" | |
| 23402 gpu "NVIDIA GTX 970m" | |
| 23402 internal_memory 512 | |
| 23402 order_date "2015-09-10" | |
| 23402 order_id "O-88011" | |
| 23402 os "OSX" | |
| 23402 os_version 10 | |
| 23402 quotation_id "BX-45062" | |
| 23402 serial "X-76615257" | |
| 23402 usb 2 | |
| 23402 wifi "true" | |
| 23502 brand "Samsung" | |
| 23502 model "Notebook 9 pro" | |
| 23502 mac_address "00:1B:44:11:3A:B5" | |
| 23502 computer_type "laptop" | |
| 23502 display_type "LCD" | |
| 23502 bluetooth "true" | |
| 23502 camera "true" | |
| 23502 cpu "Intel Core i7" | |
| 23502 date_quotation "2016-01-22" | |
| 23502 entry_date "2016-01-05" | |
| 23502 gpu "NVIDIA GTX 970m" | |
| 23502 internal_memory 512 | |
| 23502 order_date "2015-11-07" | |
| 23502 order_id "O-96357" | |
| 23502 os "Windows" | |
| 23502 os_version 8 | |
| 23502 quotation_id "BX-30390" | |
| 23502 serial "X-40505948" | |
| 23502 usb 2 | |
| 23502 wifi "true" | |
| 23502 date_broken "12/12/15" | |
| 23602 brand "Samsung" | |
| 23602 model "Notebook 9 pro" | |
| 23602 mac_address "00:1B:44:11:3A:B6" | |
| 23602 computer_type "laptop" | |
| 23602 display_type "LCD" | |
| 23602 bluetooth "true" | |
| 23602 camera "true" | |
| 23602 cpu "Intel Core i7" | |
| 23602 date_quotation "2016-01-27" | |
| 23602 entry_date "2016-02-14" | |
| 23602 gpu "NVIDIA GTX 970m" | |
| 23602 internal_memory 512 | |
| 23602 order_date "2015-11-02" | |
| 23602 order_id "O-98967" | |
| 23602 os "Windows" | |
| 23602 os_version 8 | |
| 23602 quotation_id "BX-69650" | |
| 23602 serial "X-63695683" | |
| 23602 usb 2 | |
| 23602 wifi "true" | |
| 23602 date_broken "12/12/15" | |
| 23702 brand "Samsung" | |
| 23702 model "Notebook 9 pro" | |
| 23702 mac_address "00:1B:44:11:3A:B7" | |
| 23702 computer_type "laptop" | |
| 23702 display_type "LCD" | |
| 23702 bluetooth "true" | |
| 23702 camera "true" | |
| 23702 cpu "Intel Core i7" | |
| 23702 date_quotation "2015-12-06" | |
| 23702 entry_date "2016-01-16" | |
| 23702 gpu "NVIDIA GTX 970m" | |
| 23702 internal_memory 512 | |
| 23702 order_date "2015-10-20" | |
| 23702 order_id "O-55038" | |
| 23702 os "Windows" | |
| 23702 os_version 8 | |
| 23702 quotation_id "BX-71972" | |
| 23702 serial "X-78827189" | |
| 23702 usb 2 | |
| 23702 wifi "true" | |
| 23702 date_broken "12/12/15" | |
| 23802 brand "Samsung" | |
| 23802 model "Notebook 9 pro" | |
| 23802 mac_address "00:1B:44:11:3A:B8" | |
| 23802 computer_type "laptop" | |
| 23802 display_type "LCD" | |
| 23802 bluetooth "true" | |
| 23802 camera "true" | |
| 23802 cpu "Intel Core i7" | |
| 23802 date_quotation "2015-11-23" | |
| 23802 entry_date "2015-12-01" | |
| 23802 gpu "NVIDIA GTX 970m" | |
| 23802 internal_memory 512 | |
| 23802 order_date "2015-07-01" | |
| 23802 order_id "O-24360" | |
| 23802 os "Windows" | |
| 23802 os_version 8 | |
| 23802 quotation_id "BX-26750" | |
| 23802 serial "X-70082200" | |
| 23802 usb 2 | |
| 23802 wifi "true" | |
| 23802 date_broken "12/12/15" | |
| 23902 brand "Samsung" | |
| 23902 model "Notebook 9 pro" | |
| 23902 mac_address "00:1B:44:11:3A:B9" | |
| 23902 computer_type "laptop" | |
| 23902 display_type "LCD" | |
| 23902 bluetooth "true" | |
| 23902 camera "true" | |
| 23902 cpu "Intel Core i7" | |
| 23902 date_quotation "2016-02-12" | |
| 23902 entry_date "2015-11-12" | |
| 23902 gpu "NVIDIA GTX 970m" | |
| 23902 internal_memory 512 | |
| 23902 order_date "2016-01-21" | |
| 23902 order_id "O-87155" | |
| 23902 os "Windows" | |
| 23902 os_version 8 | |
| 23902 quotation_id "BX-60905" | |
| 23902 serial "X-48490656" | |
| 23902 usb 3 | |
| 23902 wifi "true" | |
| 23902 date_broken "12/12/15" | |
| 24002 brand "Samsung" | |
| 24002 model "Notebook 9 pro" | |
| 24002 mac_address "00:1B:44:11:3A:A1" | |
| 24002 computer_type "laptop" | |
| 24002 display_type "LCD" | |
| 24002 bluetooth "true" | |
| 24002 camera "true" | |
| 24002 cpu "Intel Core i7" | |
| 24002 date_quotation "2016-01-30" | |
| 24002 entry_date "2015-12-20" | |
| 24002 gpu "NVIDIA GTX 970m" | |
| 24002 internal_memory 512 | |
| 24002 order_date "2015-12-03" | |
| 24002 order_id "O-53715" | |
| 24002 os "Windows" | |
| 24002 os_version 8 | |
| 24002 quotation_id "BX-88510" | |
| 24002 serial "G-97866877" | |
| 24002 usb 3 | |
| 24002 wifi "true" | |
| 24002 date_broken "12/12/15" | |
| 24102 brand "Samsung" | |
| 24102 model "Notebook 9 pro" | |
| 24102 mac_address "00:1B:44:11:3A:A2" | |
| 24102 computer_type "laptop" | |
| 24102 display_type "LCD" | |
| 24102 bluetooth "true" | |
| 24102 camera "true" | |
| 24102 cpu "Intel Core i7" | |
| 24102 date_quotation "2015-12-03" | |
| 24102 entry_date "2016-01-21" | |
| 24102 gpu "NVIDIA GTX 970m" | |
| 24102 internal_memory 512 | |
| 24102 order_date "2015-12-27" | |
| 24102 order_id "O-88535" | |
| 24102 os "Windows" | |
| 24102 os_version 8 | |
| 24102 quotation_id "BX-35534" | |
| 24102 serial "G-54331595" | |
| 24102 usb 3 | |
| 24102 wifi "true" | |
| 24102 date_broken "12/12/15" | |
| 24202 brand "Samsung" | |
| 24202 model "Notebook 9 pro" | |
| 24202 mac_address "00:1B:44:11:3A:A3" | |
| 24202 computer_type "laptop" | |
| 24202 display_type "LCD" | |
| 24202 bluetooth "true" | |
| 24202 camera "true" | |
| 24202 cpu "Intel Core i7" | |
| 24202 date_quotation "2016-01-13" | |
| 24202 entry_date "2016-01-17" | |
| 24202 gpu "NVIDIA GTX 970m" | |
| 24202 internal_memory 512 | |
| 24202 order_date "2016-01-10" | |
| 24202 order_id "O-86857" | |
| 24202 os "Windows" | |
| 24202 os_version 8 | |
| 24202 quotation_id "BX-66903" | |
| 24202 serial "G-93101043" | |
| 24202 usb 3 | |
| 24202 wifi "true" | |
| 24202 date_broken "12/12/15" | |
| 24302 brand "Samsung" | |
| 24302 model "Notebook 9 pro" | |
| 24302 mac_address "00:1B:44:11:3A:A4" | |
| 24302 computer_type "laptop" | |
| 24302 display_type "LCD" | |
| 24302 bluetooth "true" | |
| 24302 camera "true" | |
| 24302 cpu "Intel Core i7" | |
| 24302 date_quotation "2015-11-21" | |
| 24302 entry_date "2015-11-14" | |
| 24302 gpu "NVIDIA GTX 970m" | |
| 24302 internal_memory 512 | |
| 24302 order_date "2015-12-20" | |
| 24302 order_id "O-91534" | |
| 24302 os "Windows" | |
| 24302 os_version 7 | |
| 24302 quotation_id "BX-18033" | |
| 24302 serial "G-21683678" | |
| 24302 usb 3 | |
| 24302 wifi "true" | |
| 24302 date_broken "12/12/15" | |
| 24402 brand "Samsung" | |
| 24402 model "Notebook 9 pro" | |
| 24402 mac_address "00:1B:44:11:3A:A5" | |
| 24402 computer_type "laptop" | |
| 24402 display_type "LCD" | |
| 24402 bluetooth "true" | |
| 24402 camera "true" | |
| 24402 cpu "Intel Core i7" | |
| 24402 date_quotation "2016-01-02" | |
| 24402 entry_date "2015-12-20" | |
| 24402 gpu "NVIDIA GTX 970m" | |
| 24402 internal_memory 1024 | |
| 24402 order_date "2015-04-27" | |
| 24402 order_id "O-29564" | |
| 24402 os "Windows" | |
| 24402 os_version 7 | |
| 24402 quotation_id "BX-83322" | |
| 24402 serial "G-03984738" | |
| 24402 usb 3 | |
| 24402 wifi "true" | |
| 24402 date_broken "12/12/15" | |
| 24502 brand "Samsung" | |
| 24502 model "Notebook 9 pro" | |
| 24502 mac_address "00:1B:44:11:3A:A6" | |
| 24502 computer_type "laptop" | |
| 24502 display_type "LCD" | |
| 24502 bluetooth "true" | |
| 24502 camera "true" | |
| 24502 cpu "Intel Core i7" | |
| 24502 date_quotation "2016-01-12" | |
| 24502 entry_date "2016-02-12" | |
| 24502 gpu "NVIDIA GTX 970m" | |
| 24502 internal_memory 1024 | |
| 24502 order_date "2016-01-16" | |
| 24502 order_id "O-14536" | |
| 24502 os "Windows" | |
| 24502 os_version 7 | |
| 24502 quotation_id "BX-93034" | |
| 24502 serial "G-10435179" | |
| 24502 usb 3 | |
| 24502 wifi "true" | |
| 24502 date_broken "12/12/15" | |
| 24602 brand "Samsung" | |
| 24602 model "Notebook 9 pro" | |
| 24602 mac_address "00:1B:44:11:3A:A7" | |
| 24602 computer_type "laptop" | |
| 24602 display_type "LCD" | |
| 24602 bluetooth "true" | |
| 24602 camera "true" | |
| 24602 cpu "Intel Core i7" | |
| 24602 date_quotation "2016-02-09" | |
| 24602 entry_date "2015-12-17" | |
| 24602 gpu "NVIDIA GTX 970m" | |
| 24602 internal_memory 1024 | |
| 24602 order_date "2015-08-29" | |
| 24602 order_id "O-90502" | |
| 24602 os "Windows" | |
| 24602 os_version 7 | |
| 24602 quotation_id "BX-53311" | |
| 24602 serial "G-98233611" | |
| 24602 usb 3 | |
| 24602 wifi "true" | |
| 24602 date_broken "12/12/15" | |
| 24702 brand "Samsung" | |
| 24702 model "Notebook 9 pro" | |
| 24702 mac_address "00:1B:44:11:3A:A8" | |
| 24702 computer_type "laptop" | |
| 24702 display_type "LCD" | |
| 24702 bluetooth "true" | |
| 24702 camera "true" | |
| 24702 cpu "Intel Core i7" | |
| 24702 date_quotation "2015-12-03" | |
| 24702 entry_date "2016-01-04" | |
| 24702 gpu "NVIDIA GTX 970m" | |
| 24702 internal_memory 1024 | |
| 24702 order_date "2015-12-11" | |
| 24702 order_id "O-91892" | |
| 24702 os "Windows" | |
| 24702 os_version 7 | |
| 24702 quotation_id "BX-46935" | |
| 24702 serial "G-41136997" | |
| 24702 usb 3 | |
| 24702 wifi "true" | |
| 24702 date_broken "12/12/15" | |
| 24702 date_returned "2016-01-13" | |
| 24802 brand "Samsung" | |
| 24802 model "Notebook 9 pro" | |
| 24802 mac_address "00:1B:44:11:3A:A9" | |
| 24802 computer_type "laptop" | |
| 24802 display_type "LCD" | |
| 24802 bluetooth "true" | |
| 24802 camera "true" | |
| 24802 cpu "Intel Core i7" | |
| 24802 date_quotation "2016-01-15" | |
| 24802 entry_date "2015-11-19" | |
| 24802 gpu "NVIDIA GTX 970m" | |
| 24802 internal_memory 1024 | |
| 24802 order_date "2015-06-06" | |
| 24802 order_id "O-71536" | |
| 24802 os "Windows" | |
| 24802 os_version 7 | |
| 24802 quotation_id "BX-94766" | |
| 24802 serial "G-46521919" | |
| 24802 usb 3 | |
| 24802 wifi "true" | |
| 24802 date_broken "12/12/15" | |
| 24802 date_returned "2016-01-06" | |
| 24902 brand "Samsung" | |
| 24902 model "Notebook 9 pro" | |
| 24902 mac_address "00:1B:44:11:3A:C1" | |
| 24902 computer_type "laptop" | |
| 24902 display_type "LCD" | |
| 24902 bluetooth "true" | |
| 24902 camera "true" | |
| 24902 cpu "Intel Core i7" | |
| 24902 date_quotation "2015-11-12" | |
| 24902 entry_date "2015-12-23" | |
| 24902 gpu "NVIDIA GTX 970m" | |
| 24902 internal_memory 1024 | |
| 24902 order_date "2016-02-17" | |
| 24902 order_id "O-81139" | |
| 24902 os "Windows" | |
| 24902 os_version 7 | |
| 24902 quotation_id "BX-53814" | |
| 24902 serial "G-82446369" | |
| 24902 usb 3 | |
| 24902 wifi "true" | |
| 24902 date_broken "12/12/15" | |
| 24902 date_returned "2015-12-06" | |
| 25002 brand "Samsung" | |
| 25002 model "Notebook 9 pro" | |
| 25002 mac_address "00:1B:44:11:3A:C2" | |
| 25002 computer_type "laptop" | |
| 25002 display_type "LCD" | |
| 25002 bluetooth "true" | |
| 25002 camera "true" | |
| 25002 cpu "Intel Core i7" | |
| 25002 date_quotation "2016-01-03" | |
| 25002 entry_date "2016-01-01" | |
| 25002 gpu "NVIDIA GTX 970m" | |
| 25002 internal_memory 1024 | |
| 25002 order_date "2015-11-09" | |
| 25002 order_id "O-65903" | |
| 25002 os "Windows" | |
| 25002 os_version 7 | |
| 25002 quotation_id "BX-37042" | |
| 25002 serial "G-39496461" | |
| 25002 usb 3 | |
| 25002 wifi "true" | |
| 25002 date_broken "12/12/15" | |
| 25002 date_returned "2015-12-06" | |
| 25102 brand "Samsung" | |
| 25102 model "Notebook 9 pro" | |
| 25102 mac_address "00:1B:44:11:3A:C3" | |
| 25102 computer_type "laptop" | |
| 25102 display_type "LCD" | |
| 25102 bluetooth "true" | |
| 25102 camera "true" | |
| 25102 cpu "Intel Core i7" | |
| 25102 date_quotation "2015-11-28" | |
| 25102 entry_date "2016-01-10" | |
| 25102 gpu "NVIDIA GTX 970m" | |
| 25102 internal_memory 1024 | |
| 25102 order_date "2015-08-20" | |
| 25102 order_id "O-61161" | |
| 25102 os "Windows" | |
| 25102 os_version 7 | |
| 25102 quotation_id "BX-31928" | |
| 25102 serial "G-63383755" | |
| 25102 usb 3 | |
| 25102 wifi "true" | |
| 25102 date_broken "12/12/15" | |
| 25102 date_returned "2015-12-06" | |
| 25202 brand "Samsung" | |
| 25202 model "Notebook 9 pro" | |
| 25202 mac_address "00:1B:44:11:3A:C4" | |
| 25202 computer_type "laptop" | |
| 25202 display_type "LCD" | |
| 25202 bluetooth "true" | |
| 25202 camera "true" | |
| 25202 cpu "Intel Core i7" | |
| 25202 date_quotation "2015-12-08" | |
| 25202 entry_date "2016-01-25" | |
| 25202 gpu "NVIDIA GTX 970m" | |
| 25202 internal_memory 1024 | |
| 25202 order_date "2015-11-26" | |
| 25202 order_id "O-63374" | |
| 25202 os "Windows" | |
| 25202 os_version 7 | |
| 25202 quotation_id "BX-91823" | |
| 25202 serial "G-27867535" | |
| 25202 usb 3 | |
| 25202 wifi "true" | |
| 25202 date_broken "12/12/15" | |
| 25202 date_returned "2015-12-06" | |
| 25302 brand "Samsung" | |
| 25302 model "Notebook 9 pro" | |
| 25302 mac_address "00:1B:44:11:3A:C5" | |
| 25302 computer_type "laptop" | |
| 25302 display_type "LCD" | |
| 25302 bluetooth "true" | |
| 25302 camera "true" | |
| 25302 cpu "Intel Core i7" | |
| 25302 date_quotation "2016-01-19" | |
| 25302 entry_date "2016-02-04" | |
| 25302 gpu "NVIDIA GTX 970m" | |
| 25302 internal_memory 1024 | |
| 25302 order_date "2015-12-10" | |
| 25302 order_id "O-98114" | |
| 25302 os "Windows" | |
| 25302 os_version 7 | |
| 25302 quotation_id "BX-23731" | |
| 25302 serial "G-95873513" | |
| 25302 usb 3 | |
| 25302 wifi "true" | |
| 25302 date_broken "12/12/15" | |
| 25302 date_returned "2015-12-06" | |
| 25402 brand "Samsung" | |
| 25402 model "Notebook 9 pro" | |
| 25402 mac_address "00:1B:44:11:3A:C6" | |
| 25402 computer_type "laptop" | |
| 25402 display_type "LCD" | |
| 25402 bluetooth "true" | |
| 25402 camera "true" | |
| 25402 cpu "Intel Core i7" | |
| 25402 date_quotation "2016-02-01" | |
| 25402 entry_date "2015-12-04" | |
| 25402 gpu "NVIDIA GTX 970m" | |
| 25402 internal_memory 1024 | |
| 25402 order_date "2016-01-31" | |
| 25402 order_id "O-48241" | |
| 25402 os "Windows" | |
| 25402 os_version 7 | |
| 25402 quotation_id "BX-30362" | |
| 25402 serial "G-07281149" | |
| 25402 usb 3 | |
| 25402 wifi "true" | |
| 25402 date_broken "12/12/15" | |
| 25402 date_returned "2015-12-06" | |
| 25502 brand "Samsung" | |
| 25502 model "Notebook 9 pro" | |
| 25502 mac_address "00:1B:44:11:3A:C7" | |
| 25502 computer_type "laptop" | |
| 25502 display_type "LCD" | |
| 25502 bluetooth "true" | |
| 25502 camera "true" | |
| 25502 cpu "Intel Core i7" | |
| 25502 date_quotation "2016-01-17" | |
| 25502 entry_date "2016-02-15" | |
| 25502 gpu "NVIDIA GTX 970m" | |
| 25502 internal_memory 1024 | |
| 25502 order_date "2016-01-15" | |
| 25502 order_id "O-72925" | |
| 25502 os "Windows" | |
| 25502 os_version 7 | |
| 25502 quotation_id "BX-46005" | |
| 25502 serial "G-02668151" | |
| 25502 usb 3 | |
| 25502 wifi "true" | |
| 25502 date_broken "12/12/15" | |
| 25502 date_returned "2015-12-06" | |
| 25602 brand "Samsung" | |
| 25602 model "Notebook 9 pro" | |
| 25602 mac_address "00:1B:44:11:3A:C8" | |
| 25602 computer_type "laptop" | |
| 25602 display_type "LCD" | |
| 25602 bluetooth "true" | |
| 25602 camera "true" | |
| 25602 cpu "Intel Core i7" | |
| 25602 date_quotation "2016-02-03" | |
| 25602 entry_date "2016-01-25" | |
| 25602 gpu "NVIDIA GTX 970m" | |
| 25602 internal_memory 1024 | |
| 25602 order_date "2015-12-30" | |
| 25602 order_id "O-36687" | |
| 25602 os "Windows" | |
| 25602 os_version 7 | |
| 25602 quotation_id "BX-67518" | |
| 25602 serial "G-22629811" | |
| 25602 usb 3 | |
| 25602 wifi "true" | |
| 25602 date_broken "12/12/15" | |
| 25602 date_returned "2015-12-06" | |
| 25702 brand "Samsung" | |
| 25702 model "Notebook 9 pro" | |
| 25702 mac_address "00:1B:44:11:3A:C9" | |
| 25702 computer_type "laptop" | |
| 25702 display_type "LCD" | |
| 25702 bluetooth "true" | |
| 25702 camera "true" | |
| 25702 cpu "Intel Core i7" | |
| 25702 date_quotation "2016-01-28" | |
| 25702 entry_date "2016-01-03" | |
| 25702 gpu "NVIDIA GTX 970m" | |
| 25702 internal_memory 1024 | |
| 25702 order_date "2015-09-15" | |
| 25702 order_id "O-57545" | |
| 25702 os "Windows" | |
| 25702 os_version 7 | |
| 25702 quotation_id "BX-64000" | |
| 25702 serial "G-09032680" | |
| 25702 usb 3 | |
| 25702 wifi "true" | |
| 25702 date_broken "12/12/15" | |
| 25702 date_returned "2015-12-06" | |
| 25802 brand "Apple" | |
| 25802 model "Macbook pro" | |
| 25802 mac_address "00:1B:44:11:3A:D1" | |
| 25802 computer_type "laptop" | |
| 25802 display_type "Retina" | |
| 25802 bluetooth "true" | |
| 25802 camera "true" | |
| 25802 cpu "Intel Core i7" | |
| 25802 date_quotation "2015-11-30" | |
| 25802 entry_date "2015-12-31" | |
| 25802 gpu "NVIDIA GTX 970m" | |
| 25802 internal_memory 1024 | |
| 25802 order_date "2015-10-04" | |
| 25802 order_id "O-57111" | |
| 25802 os "OSX" | |
| 25802 os_version 10 | |
| 25802 quotation_id "BX-57541" | |
| 25802 serial "P-30668848" | |
| 25802 usb 3 | |
| 25802 wifi "true" | |
| 25802 date_broken "12/12/15" | |
| 25802 date_returned "2015-12-06" | |
| 25902 brand "Apple" | |
| 25902 model "Macbook pro" | |
| 25902 mac_address "00:1B:44:11:3A:D2" | |
| 25902 computer_type "laptop" | |
| 25902 display_type "Retina" | |
| 25902 bluetooth "true" | |
| 25902 camera "true" | |
| 25902 cpu "Intel Core i7" | |
| 25902 date_quotation "2015-12-02" | |
| 25902 entry_date "2015-11-20" | |
| 25902 gpu "NVIDIA GTX 970m" | |
| 25902 internal_memory 1024 | |
| 25902 order_date "2015-10-23" | |
| 25902 order_id "O-64677" | |
| 25902 os "OSX" | |
| 25902 os_version 10 | |
| 25902 quotation_id "BX-28754" | |
| 25902 serial "P-53706960" | |
| 25902 usb 3 | |
| 25902 wifi "true" | |
| 25902 date_broken "12/12/15" | |
| 25902 date_returned "2015-12-06" | |
| 26002 brand "Apple" | |
| 26002 model "Macbook pro" | |
| 26002 mac_address "00:1B:44:11:3A:D3" | |
| 26002 computer_type "laptop" | |
| 26002 display_type "Retina" | |
| 26002 bluetooth "true" | |
| 26002 camera "true" | |
| 26002 cpu "Intel Core i7" | |
| 26002 date_quotation "2016-01-22" | |
| 26002 entry_date "2015-11-12" | |
| 26002 gpu "NVIDIA GTX 970m" | |
| 26002 internal_memory 1024 | |
| 26002 order_date "2015-08-06" | |
| 26002 order_id "O-77442" | |
| 26002 os "OSX" | |
| 26002 os_version 10 | |
| 26002 quotation_id "BX-21263" | |
| 26002 serial "P-40071935" | |
| 26002 usb 3 | |
| 26002 wifi "true" | |
| 26002 date_broken "12/12/15" | |
| 26002 date_returned "2015-12-06" | |
| 26102 brand "Apple" | |
| 26102 model "Macbook pro" | |
| 26102 mac_address "00:1B:44:11:3A:D4" | |
| 26102 computer_type "laptop" | |
| 26102 display_type "Retina" | |
| 26102 bluetooth "true" | |
| 26102 camera "true" | |
| 26102 cpu "Intel Core i7" | |
| 26102 date_quotation "2016-01-28" | |
| 26102 entry_date "2015-12-17" | |
| 26102 gpu "NVIDIA GTX 970m" | |
| 26102 internal_memory 1024 | |
| 26102 order_date "2015-06-25" | |
| 26102 order_id "O-21008" | |
| 26102 os "OSX" | |
| 26102 os_version 10 | |
| 26102 quotation_id "BX-90715" | |
| 26102 serial "P-75657353" | |
| 26102 usb 3 | |
| 26102 wifi "true" | |
| 26102 date_broken "12/12/15" | |
| 26102 date_returned "2015-12-06" | |
| 26202 brand "Apple" | |
| 26202 model "Macbook pro" | |
| 26202 mac_address "00:1B:44:11:3A:D5" | |
| 26202 computer_type "laptop" | |
| 26202 display_type "Retina" | |
| 26202 bluetooth "true" | |
| 26202 camera "true" | |
| 26202 cpu "Intel Core i7" | |
| 26202 date_quotation "2016-01-13" | |
| 26202 entry_date "2016-01-11" | |
| 26202 gpu "NVIDIA GTX 970m" | |
| 26202 internal_memory 1024 | |
| 26202 order_date "2015-12-28" | |
| 26202 order_id "O-56448" | |
| 26202 os "OSX" | |
| 26202 os_version 10 | |
| 26202 quotation_id "BX-75392" | |
| 26202 serial "V-58308686" | |
| 26202 usb 3 | |
| 26202 wifi "true" | |
| 26202 date_broken "12/12/15" | |
| 26202 date_returned "2015-11-25" | |
| 26302 brand "Apple" | |
| 26302 model "Macbook pro" | |
| 26302 mac_address "00:1B:44:11:3A:D6" | |
| 26302 computer_type "laptop" | |
| 26302 display_type "Retina" | |
| 26302 bluetooth "true" | |
| 26302 camera "true" | |
| 26302 cpu "Intel Core i7" | |
| 26302 date_quotation "2016-02-08" | |
| 26302 entry_date "2015-12-07" | |
| 26302 gpu "NVIDIA GTX 970m" | |
| 26302 internal_memory 1024 | |
| 26302 order_date "2015-05-29" | |
| 26302 order_id "O-96017" | |
| 26302 os "OSX" | |
| 26302 os_version 10 | |
| 26302 quotation_id "BX-73707" | |
| 26302 serial "P-41430320" | |
| 26302 usb 3 | |
| 26302 wifi "true" | |
| 26302 date_broken "12/12/15" | |
| 26302 date_returned "2015-11-25" | |
| 26402 brand "Apple" | |
| 26402 model "Macbook pro" | |
| 26402 mac_address "00:1B:44:11:3A:D7" | |
| 26402 computer_type "laptop" | |
| 26402 display_type "Retina" | |
| 26402 bluetooth "true" | |
| 26402 camera "true" | |
| 26402 cpu "Intel Core i7" | |
| 26402 date_quotation "2015-12-31" | |
| 26402 entry_date "2016-01-18" | |
| 26402 gpu "NVIDIA GTX 970m" | |
| 26402 internal_memory 1024 | |
| 26402 order_date "2015-05-23" | |
| 26402 order_id "O-14359" | |
| 26402 os "OSX" | |
| 26402 os_version 10 | |
| 26402 quotation_id "BX-60120" | |
| 26402 serial "V-57400834" | |
| 26402 usb 4 | |
| 26402 wifi "true" | |
| 26402 date_broken "12/12/15" | |
| 26402 date_returned "2015-11-25" | |
| 26502 brand "Apple" | |
| 26502 model "Macbook pro" | |
| 26502 mac_address "00:1B:44:11:3A:D8" | |
| 26502 computer_type "laptop" | |
| 26502 display_type "Retina" | |
| 26502 bluetooth "true" | |
| 26502 camera "true" | |
| 26502 cpu "Intel Core i7" | |
| 26502 date_quotation "2016-02-11" | |
| 26502 entry_date "2015-11-15" | |
| 26502 gpu "NVIDIA GTX 970m" | |
| 26502 internal_memory 756 | |
| 26502 order_date "2016-01-01" | |
| 26502 order_id "O-45719" | |
| 26502 os "OSX" | |
| 26502 os_version 10 | |
| 26502 quotation_id "BX-56103" | |
| 26502 serial "V-05867535" | |
| 26502 usb 4 | |
| 26502 wifi "true" | |
| 26502 date_broken "12/12/15" | |
| 26502 date_returned "2015-11-25" | |
| 26602 brand "Apple" | |
| 26602 model "Macbook pro" | |
| 26602 mac_address "00:1B:44:11:3A:D9" | |
| 26602 computer_type "laptop" | |
| 26602 display_type "Retina" | |
| 26602 bluetooth "true" | |
| 26602 camera "true" | |
| 26602 cpu "Intel Core i7" | |
| 26602 date_quotation "2015-12-22" | |
| 26602 entry_date "2015-11-30" | |
| 26602 gpu "NVIDIA GTX 970m" | |
| 26602 internal_memory 756 | |
| 26602 order_date "2016-01-26" | |
| 26602 order_id "O-98817" | |
| 26602 os "OSX" | |
| 26602 os_version 10 | |
| 26602 quotation_id "BX-89922" | |
| 26602 serial "P-74653392" | |
| 26602 usb 4 | |
| 26602 wifi "true" | |
| 26602 date_broken "12/12/15" | |
| 26602 date_returned "2015-11-25" | |
| 26702 brand "HP" | |
| 26702 model "Elitebook 8560p" | |
| 26702 mac_address "00:1B:44:11:3A:E1" | |
| 26702 computer_type "laptop" | |
| 26702 display_type "LCD" | |
| 26702 bluetooth "true" | |
| 26702 camera "true" | |
| 26702 cpu "Intel Core i7" | |
| 26702 date_quotation "2015-12-30" | |
| 26702 entry_date "2016-01-23" | |
| 26702 gpu "NVIDIA GTX 970m" | |
| 26702 internal_memory 756 | |
| 26702 order_date "2015-12-03" | |
| 26702 order_id "O-55724" | |
| 26702 os "OSX" | |
| 26702 os_version 10 | |
| 26702 quotation_id "BX-15587" | |
| 26702 serial "V-08548267" | |
| 26702 usb 4 | |
| 26702 wifi "true" | |
| 26702 date_broken "12/12/15" | |
| 26702 date_returned "2015-11-25" | |
| 26802 brand "HP" | |
| 26802 model "Elitebook 8560p" | |
| 26802 mac_address "00:1B:44:11:3A:E2" | |
| 26802 computer_type "laptop" | |
| 26802 display_type "LCD" | |
| 26802 bluetooth "true" | |
| 26802 camera "true" | |
| 26802 cpu "Intel Core i7" | |
| 26802 date_quotation "2016-02-13" | |
| 26802 entry_date "2016-02-18" | |
| 26802 gpu "NVIDIA GTX 970m" | |
| 26802 internal_memory 756 | |
| 26802 order_date "2015-05-06" | |
| 26802 order_id "O-63429" | |
| 26802 os "Windows" | |
| 26802 os_version 10 | |
| 26802 quotation_id "BX-28343" | |
| 26802 serial "V-51870548" | |
| 26802 usb 4 | |
| 26802 wifi "true" | |
| 26802 date_broken "12/12/15" | |
| 26802 date_returned "2015-11-25" | |
| 26902 brand "HP" | |
| 26902 model "Elitebook 8560p" | |
| 26902 mac_address "00:1B:44:11:3A:E3" | |
| 26902 computer_type "laptop" | |
| 26902 display_type "LCD" | |
| 26902 bluetooth "true" | |
| 26902 camera "true" | |
| 26902 cpu "Intel Core i7" | |
| 26902 date_quotation "2016-01-05" | |
| 26902 entry_date "2015-11-16" | |
| 26902 gpu "NVIDIA GTX 970m" | |
| 26902 internal_memory 756 | |
| 26902 order_date "2016-02-19" | |
| 26902 order_id "O-73526" | |
| 26902 os "Windows" | |
| 26902 os_version 10 | |
| 26902 quotation_id "BX-49195" | |
| 26902 serial "P-86458383" | |
| 26902 usb 4 | |
| 26902 wifi "true" | |
| 26902 date_broken "12/12/15" | |
| 26902 date_returned "2015-11-25" | |
| 27002 brand "HP" | |
| 27002 model "Elitebook 8560p" | |
| 27002 mac_address "00:1B:44:11:3A:E4" | |
| 27002 computer_type "laptop" | |
| 27002 display_type "LCD" | |
| 27002 bluetooth "true" | |
| 27002 camera "true" | |
| 27002 cpu "Intel Core i7" | |
| 27002 date_quotation "2016-01-28" | |
| 27002 entry_date "2016-02-15" | |
| 27002 gpu "NVIDIA GTX 970m" | |
| 27002 internal_memory 756 | |
| 27002 order_date "2015-08-31" | |
| 27002 order_id "O-99671" | |
| 27002 os "Windows" | |
| 27002 os_version 10 | |
| 27002 quotation_id "BX-34863" | |
| 27002 serial "P-77077344" | |
| 27002 usb 4 | |
| 27002 wifi "true" | |
| 27002 date_broken "12/12/15" | |
| 27002 date_returned "2016-01-26" | |
| 27002 inactivity_reason "Not usable (Keyboard not working)" | |
| 27102 brand "HP" | |
| 27102 model "Elitebook 8560p" | |
| 27102 mac_address "00:1B:44:11:3A:E5" | |
| 27102 computer_type "laptop" | |
| 27102 display_type "LCD" | |
| 27102 bluetooth "true" | |
| 27102 camera "true" | |
| 27102 cpu "Intel Core i7" | |
| 27102 date_quotation "2015-12-31" | |
| 27102 entry_date "2015-11-16" | |
| 27102 gpu "NVIDIA GTX 970m" | |
| 27102 internal_memory 756 | |
| 27102 order_date "2015-10-14" | |
| 27102 order_id "O-73648" | |
| 27102 os "Windows" | |
| 27102 os_version 10 | |
| 27102 quotation_id "BX-76931" | |
| 27102 serial "P-34111866" | |
| 27102 usb 4 | |
| 27102 wifi "true" | |
| 27102 date_broken "12/12/15" | |
| 27102 date_returned "2015-12-19" | |
| 27102 inactivity_reason "Not usable (Keyboard not working)" | |
| 27202 brand "HP" | |
| 27202 model "Elitebook 8560p" | |
| 27202 mac_address "00:1B:44:11:3A:E6" | |
| 27202 computer_type "laptop" | |
| 27202 display_type "LCD" | |
| 27202 bluetooth "true" | |
| 27202 camera "true" | |
| 27202 cpu "Intel Core i7" | |
| 27202 date_quotation "2016-01-07" | |
| 27202 entry_date "2016-01-30" | |
| 27202 gpu "NVIDIA GTX 970m" | |
| 27202 internal_memory 756 | |
| 27202 order_date "2015-07-04" | |
| 27202 order_id "O-36359" | |
| 27202 os "Windows" | |
| 27202 os_version 10 | |
| 27202 quotation_id "BX-60429" | |
| 27202 serial "P-74290240" | |
| 27202 usb 4 | |
| 27202 wifi "true" | |
| 27202 date_broken "12/12/15" | |
| 27202 date_returned "2016-01-17" | |
| 27202 inactivity_reason "Not usable (Keyboard not working)" | |
| 27302 brand "HP" | |
| 27302 model "Elitebook 8560p" | |
| 27302 mac_address "00:1B:44:11:3A:E7" | |
| 27302 computer_type "laptop" | |
| 27302 display_type "LCD" | |
| 27302 bluetooth "true" | |
| 27302 camera "true" | |
| 27302 cpu "Intel Core i7" | |
| 27302 date_quotation "2015-12-30" | |
| 27302 entry_date "2015-12-23" | |
| 27302 gpu "NVIDIA GTX 970m" | |
| 27302 internal_memory 756 | |
| 27302 order_date "2015-05-04" | |
| 27302 order_id "O-29428" | |
| 27302 os "Windows" | |
| 27302 os_version 10 | |
| 27302 quotation_id "BX-51281" | |
| 27302 serial "V-01457778" | |
| 27302 usb 4 | |
| 27302 wifi "true" | |
| 27302 date_broken "12/12/15" | |
| 27302 date_returned "2016-01-17" | |
| 27302 inactivity_reason "Not usable (Keyboard not working)" | |
| 27402 brand "HP" | |
| 27402 model "Elitebook 8560p" | |
| 27402 mac_address "00:1B:44:11:3A:E8" | |
| 27402 computer_type "laptop" | |
| 27402 display_type "LCD" | |
| 27402 bluetooth "true" | |
| 27402 camera "true" | |
| 27402 cpu "Intel Core i7" | |
| 27402 date_quotation "2015-11-21" | |
| 27402 entry_date "2015-12-09" | |
| 27402 gpu "NVIDIA GTX 970m" | |
| 27402 internal_memory 756 | |
| 27402 order_date "2015-07-27" | |
| 27402 order_id "O-12258" | |
| 27402 os "Windows" | |
| 27402 os_version 10 | |
| 27402 quotation_id "BX-81789" | |
| 27402 serial "P-43293000" | |
| 27402 usb 4 | |
| 27402 wifi "true" | |
| 27402 date_broken "12/12/15" | |
| 27402 date_returned "2016-01-17" | |
| 27402 inactivity_reason "Not usable (Keyboard not working)" | |
| 27502 brand "HP" | |
| 27502 model "Elitebook 8560p" | |
| 27502 mac_address "00:1B:44:11:3A:E9" | |
| 27502 computer_type "laptop" | |
| 27502 display_type "LCD" | |
| 27502 bluetooth "true" | |
| 27502 camera "true" | |
| 27502 cpu "Intel Core i7" | |
| 27502 date_quotation "2015-11-24" | |
| 27502 entry_date "2015-11-12" | |
| 27502 gpu "NVIDIA GTX 970m" | |
| 27502 internal_memory 756 | |
| 27502 order_date "2016-01-19" | |
| 27502 order_id "O-93396" | |
| 27502 os "Windows" | |
| 27502 os_version 10 | |
| 27502 quotation_id "BX-44863" | |
| 27502 serial "V-06449606" | |
| 27502 usb 4 | |
| 27502 wifi "true" | |
| 27502 date_broken "12/12/15" | |
| 27502 date_returned "2016-01-17" | |
| 27502 inactivity_reason "Not usable (Keyboard not working)" | |
| 27502 date_loss "2015-12-06" | |
| 27602 brand "HP" | |
| 27602 model "Elitebook 8560p" | |
| 27602 mac_address "00:1B:44:11:3A:F1" | |
| 27602 computer_type "laptop" | |
| 27602 display_type "LCD" | |
| 27602 bluetooth "true" | |
| 27602 camera "true" | |
| 27602 cpu "Intel Core i7" | |
| 27602 date_quotation "2015-12-17" | |
| 27602 entry_date "2015-12-31" | |
| 27602 gpu "NVIDIA GTX 970m" | |
| 27602 internal_memory 756 | |
| 27602 order_date "2016-02-13" | |
| 27602 order_id "O-68232" | |
| 27602 os "Windows" | |
| 27602 os_version 10 | |
| 27602 quotation_id "BX-66654" | |
| 27602 serial "P-29714562" | |
| 27602 usb 4 | |
| 27602 wifi "true" | |
| 27602 date_broken "12/12/15" | |
| 27602 date_returned "2016-01-17" | |
| 27602 inactivity_reason "Not usable (Keyboard not working)" | |
| 27602 date_loss "2015-11-17" | |
| 27702 brand "Epson" | |
| 27702 model "EB X31" | |
| 27702 category "Projector" | |
| 27702 reference "B-97419378" | |
| 27702 entry_date "2015-01-29" | |
| 27702 order_date "2015-12-13" | |
| 27702 order_id "O-40290" | |
| 27802 brand "Hitachi" | |
| 27802 model "CP X3041WN" | |
| 27802 category "Projector" | |
| 27802 reference "B-72046478" | |
| 27802 entry_date "2015-01-30" | |
| 27802 order_date "2015-08-13" | |
| 27802 order_id "O-79731" | |
| 27902 brand "Sony" | |
| 27902 model "VPL DX142" | |
| 27902 category "Projector" | |
| 27902 reference "B-61411924" | |
| 27902 entry_date "2015-06-26" | |
| 27902 order_date "2015-08-16" | |
| 27902 order_id "O-64031" | |
| 28002 brand "LG" | |
| 28002 model "KS9000" | |
| 28002 category "TV" | |
| 28002 reference "B-76615257" | |
| 28002 entry_date "2015-05-18" | |
| 28002 order_date "2015-09-10" | |
| 28002 order_id "O-88011" | |
| 28102 brand "Sony" | |
| 28102 model "X930D" | |
| 28102 category "TV" | |
| 28102 reference "B-40505948" | |
| 28102 entry_date "2015-03-26" | |
| 28102 order_date "2015-11-07" | |
| 28102 order_id "O-96357" | |
| 28202 brand "Samsung" | |
| 28202 model "KS8000" | |
| 28202 category "TV" | |
| 28202 reference "B-63695683" | |
| 28202 entry_date "2015-06-14" | |
| 28202 order_date "2015-11-02" | |
| 28202 order_id "O-98967" | |
| 28302 brand "Samsung" | |
| 28302 model "JS8500" | |
| 28302 category "TV" | |
| 28302 reference "B-78827189" | |
| 28302 entry_date "2015-02-24" | |
| 28302 order_date "2015-10-20" | |
| 28302 order_id "O-55038" | |
| 28402 brand "Samsung" | |
| 28402 model "RF34H9960S4" | |
| 28402 category "Refrigerator" | |
| 28402 reference "B-70082200" | |
| 28402 entry_date "2015-06-15" | |
| 28402 order_date "2015-07-01" | |
| 28402 order_id "O-24360" | |
| 28502 brand "LG" | |
| 28502 model "LDC24370ST" | |
| 28502 category "Refrigerator" | |
| 28502 reference "B-48490656" | |
| 28502 entry_date "2015-01-07" | |
| 28502 order_date "2016-01-21" | |
| 28502 order_id "O-87155" | |
| 28602 brand "LG" | |
| 28602 model "LSXS26326S" | |
| 28602 category "Refrigerator" | |
| 28602 reference "A-97866877" | |
| 28602 entry_date "2015-03-15" | |
| 28602 order_date "2015-12-03" | |
| 28602 order_id "O-53715" | |
| 28702 brand "LG" | |
| 28702 model "VPL DX142" | |
| 28702 category "Refrigerator" | |
| 28702 reference "A-54331595" | |
| 28702 entry_date "2015-05-19" | |
| 28702 order_date "2015-12-27" | |
| 28702 order_id "O-88535" | |
| 28802 brand "Samsung" | |
| 28802 model "RS7567BHCBC" | |
| 28802 category "Refrigerator" | |
| 28802 reference "A-93101043" | |
| 28802 entry_date "2015-05-16" | |
| 28802 order_date "2016-01-10" | |
| 28802 order_id "O-86857" | |
| 28902 brand "Honda" | |
| 28902 model "CBR500R" | |
| 28902 category "2-Wheeler" | |
| 28902 reference "A-21683678" | |
| 28902 entry_date "2015-06-06" | |
| 28902 order_date "2015-12-20" | |
| 28902 order_id "O-91534" | |
| 29002 brand "BMW" | |
| 29002 model "G310R" | |
| 29002 category "2-Wheeler" | |
| 29002 reference "A-03984738" | |
| 29002 entry_date "2015-05-03" | |
| 29002 order_date "2015-04-27" | |
| 29002 order_id "O-29564" | |
| 29102 brand "BMW" | |
| 29102 model "R nineT Scrambler" | |
| 29102 category "2-Wheeler" | |
| 29102 reference "A-10435179" | |
| 29102 entry_date "2015-04-24" | |
| 29102 order_date "2016-01-16" | |
| 29102 order_id "O-14536" | |
| 29202 brand "Dell" | |
| 29202 model 1220 | |
| 29202 category "Projector" | |
| 29202 reference "A-98233611" | |
| 29202 entry_date "2015-03-11" | |
| 29202 order_date "2015-08-29" | |
| 29202 order_id "O-90502" | |
| 29302 brand "Epson" | |
| 29302 model "EB X31" | |
| 29302 category "Projector" | |
| 29302 reference "B-97412345" | |
| 29302 entry_date "2015-06-08" | |
| 29302 order_date "2015-12-11" | |
| 29302 order_id "O-91892" | |
| 29402 brand "Hitachi" | |
| 29402 model "CP X3041WN" | |
| 29402 category "Projector" | |
| 29402 reference "B-72046000" | |
| 29402 entry_date "2015-05-04" | |
| 29402 order_date "2015-06-06" | |
| 29402 order_id "O-71536" | |
| 29502 brand "Sony" | |
| 29502 model "VPL DX142" | |
| 29502 category "Projector" | |
| 29502 reference "B-61413241" | |
| 29502 entry_date "2015-04-09" | |
| 29502 order_date "2016-02-17" | |
| 29502 order_id "O-81139" | |
| 5702 total_tco 0 | |
| 5702 avg_tco_per_month 0 | |
| 10302 total_tco 0 | |
| 10302 avg_tco_per_month 0 | |
| 15202 total_tco 0 | |
| 15202 avg_tco_per_month 0 | |
| 28902 total_tco 0 | |
| 28902 avg_tco_per_month 0 | |
| 8402 total_tco 0 | |
| 8402 avg_tco_per_month 0 | |
| 28202 total_tco 0 | |
| 28202 avg_tco_per_month 0 | |
| 10802 total_tco 0 | |
| 10802 avg_tco_per_month 0 | |
| 10802 mileage_consumption 192 | |
| 10802 contract_consumption 53 | |
| 10802 prospect_mileage_consumption 57962 | |
| 10802 prospect_contract_fulfillment "2016-03-24T18:51:29.724Z" | |
| 10802 avg_mileage_month 2377 | |
| 10802 mileage_inside_contract 30665 | |
| 10802 contract_payment_period "monthly" | |
| 10802 contract_mileage 16000 | |
| 10802 contract_start "2015-09-04T23:59:00.000Z" | |
| 10802 contract_end "2017-09-04T23:58:59.000Z" | |
| 10802 total_net 223 | |
| 10802 total_gross 185 | |
| 10802 months_since_contract_start 13 | |
| 10802 contract_duration "24 month" | |
| 7902 total_tco 0 | |
| 7902 avg_tco_per_month 0 | |
| 19702 total_tco 0 | |
| 19702 avg_tco_per_month 0 | |
| 14902 contract_consumption 66 | |
| 14902 contract_start "2015-06-04T23:59:00.000Z" | |
| 14902 contract_end "2017-06-04T23:58:59.000Z" | |
| 16002 total_tco 0 | |
| 16002 avg_tco_per_month 0 | |
| 21802 total_tco 0 | |
| 21802 avg_tco_per_month 0 | |
| 19402 total_tco 0 | |
| 19402 avg_tco_per_month 0 | |
| 14702 total_tco 0 | |
| 14702 avg_tco_per_month 0 | |
| 14702 contract_consumption 74 | |
| 14702 contract_start "2015-04-04T23:59:00.000Z" | |
| 14702 contract_end "2017-04-04T23:58:59.000Z" | |
| 14902 total_tco 0 | |
| 14902 avg_tco_per_month 0 | |
| 1902 total_tco 0 | |
| 1902 avg_tco_per_month 0 | |
| 15802 total_tco 0 | |
| 15802 avg_tco_per_month 0 | |
| 12302 total_tco 0 | |
| 12302 avg_tco_per_month 0 | |
| 13002 total_tco 0 | |
| 13002 avg_tco_per_month 0 | |
| 21302 total_tco 0 | |
| 21302 avg_tco_per_month 0 | |
| 14102 total_tco 0 | |
| 14102 avg_tco_per_month 0 | |
| 6902 total_tco 0 | |
| 6902 avg_tco_per_month 0 | |
| 29402 total_tco 0 | |
| 29402 avg_tco_per_month 0 | |
| 28402 total_tco 0 | |
| 28402 avg_tco_per_month 0 | |
| \. | |
| -- | |
| -- Name: assetid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('assetid', 29502, true); | |
| -- | |
| -- Data for Name: assets; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY assets (id, classname, created, updated, active, statecode, nextcheck, source) FROM stdin; | |
| 2 vehicle.car 2016-09-26 09:39:50.649845 2016-09-26 09:39:50.649845 t pre_ordered 2015-06-24 00:00:00 demo | |
| 102 vehicle.car 2016-09-26 09:39:50.668801 2016-09-26 09:39:50.668801 t ordered 2015-06-24 00:00:00 demo | |
| 202 vehicle.car 2016-09-26 09:39:50.687482 2016-09-26 09:39:50.687482 t active 2015-06-24 00:00:00 demo | |
| 302 vehicle.car 2016-09-26 09:39:50.712377 2016-09-26 09:39:50.712377 t active 2015-06-24 00:00:00 demo | |
| 402 vehicle.car 2016-09-26 09:39:50.73429 2016-09-26 09:39:50.73429 t active 2015-06-24 00:00:00 demo | |
| 502 vehicle.car 2016-09-26 09:39:50.758572 2016-09-26 09:39:50.758572 t active 2015-06-24 00:00:00 demo | |
| 602 vehicle.car 2016-09-26 09:39:50.786924 2016-09-26 09:39:50.786924 t active 2015-06-24 00:00:00 demo | |
| 702 vehicle.car 2016-09-26 09:39:50.80886 2016-09-26 09:39:50.80886 t active 2015-06-24 00:00:00 demo | |
| 802 vehicle.car 2016-09-26 09:39:50.83433 2016-09-26 09:39:50.83433 t active 2015-06-24 00:00:00 demo | |
| 902 vehicle.car 2016-09-26 09:39:50.860779 2016-09-26 09:39:50.860779 t active 2015-06-24 00:00:00 demo | |
| 1002 vehicle.car 2016-09-26 09:39:50.882893 2016-09-26 09:39:50.882893 t active 2015-06-24 00:00:00 demo | |
| 1102 vehicle.car 2016-09-26 09:39:50.907885 2016-09-26 09:39:50.907885 t active 2015-06-24 00:00:00 demo | |
| 1202 vehicle.car 2016-09-26 09:39:50.931088 2016-09-26 09:39:50.931088 t active 2015-06-24 00:00:00 demo | |
| 1302 vehicle.car 2016-09-26 09:39:50.952774 2016-09-26 09:39:50.952774 t active 2015-06-24 00:00:00 demo | |
| 1402 vehicle.car 2016-09-26 09:39:50.974184 2016-09-26 09:39:50.974184 t active 2015-06-24 00:00:00 demo | |
| 1502 vehicle.car 2016-09-26 09:39:50.995228 2016-09-26 09:39:50.995228 t active 2015-06-24 00:00:00 demo | |
| 1602 vehicle.car 2016-09-26 09:39:51.016493 2016-09-26 09:39:51.016493 t active 2015-06-24 00:00:00 demo | |
| 1702 vehicle.car 2016-09-26 09:39:51.037006 2016-09-26 09:39:51.037006 t active 2015-06-24 00:00:00 demo | |
| 1802 vehicle.car 2016-09-26 09:39:51.058031 2016-09-26 09:39:51.058031 t active 2015-06-24 00:00:00 demo | |
| 2002 vehicle.car 2016-09-26 09:39:51.117713 2016-09-26 09:39:51.117713 t active 2015-06-24 00:00:00 demo | |
| 2102 vehicle.car 2016-09-26 09:39:51.140404 2016-09-26 09:39:51.140404 t active 2015-06-24 00:00:00 demo | |
| 2202 vehicle.car 2016-09-26 09:39:51.16619 2016-09-26 09:39:51.16619 t active 2015-06-24 00:00:00 demo | |
| 2302 vehicle.car 2016-09-26 09:39:51.189413 2016-09-26 09:39:51.189413 t active 2015-06-24 00:00:00 demo | |
| 2402 vehicle.car 2016-09-26 09:39:51.215533 2016-09-26 09:39:51.215533 t active 2015-06-24 00:00:00 demo | |
| 2502 vehicle.car 2016-09-26 09:39:51.237919 2016-09-26 09:39:51.237919 t active 2015-06-24 00:00:00 demo | |
| 2602 vehicle.car 2016-09-26 09:39:51.259848 2016-09-26 09:39:51.259848 t active 2015-06-24 00:00:00 demo | |
| 2702 vehicle.car 2016-09-26 09:39:51.281377 2016-09-26 09:39:51.281377 t active 2015-06-24 00:00:00 demo | |
| 2802 vehicle.car 2016-09-26 09:39:51.30357 2016-09-26 09:39:51.30357 t active 2015-06-24 00:00:00 demo | |
| 2902 vehicle.car 2016-09-26 09:39:51.325534 2016-09-26 09:39:51.325534 t active 2015-06-24 00:00:00 demo | |
| 3002 vehicle.car 2016-09-26 09:39:51.348278 2016-09-26 09:39:51.348278 t active 2015-06-24 00:00:00 demo | |
| 3102 vehicle.car 2016-09-26 09:39:51.370917 2016-09-26 09:39:51.370917 t active 2015-06-24 00:00:00 demo | |
| 3202 vehicle.car 2016-09-26 09:39:51.395722 2016-09-26 09:39:51.395722 t active 2015-06-24 00:00:00 demo | |
| 3302 vehicle.car 2016-09-26 09:39:51.419431 2016-09-26 09:39:51.419431 t active 2015-06-24 00:00:00 demo | |
| 3402 vehicle.car 2016-09-26 09:39:51.445441 2016-09-26 09:39:51.445441 t active 2015-06-24 00:00:00 demo | |
| 3502 vehicle.car 2016-09-26 09:39:51.472146 2016-09-26 09:39:51.472146 t active 2015-06-24 00:00:00 demo | |
| 3602 vehicle.car 2016-09-26 09:39:51.494443 2016-09-26 09:39:51.494443 t active 2015-06-24 00:00:00 demo | |
| 3702 vehicle.car 2016-09-26 09:39:51.517357 2016-09-26 09:39:51.517357 t active 2015-06-24 00:00:00 demo | |
| 3802 vehicle.car 2016-09-26 09:39:51.538331 2016-09-26 09:39:51.538331 t active 2015-06-24 00:00:00 demo | |
| 3902 vehicle.car 2016-09-26 09:39:51.559638 2016-09-26 09:39:51.559638 t active 2015-06-24 00:00:00 demo | |
| 4002 vehicle.car 2016-09-26 09:39:51.587607 2016-09-26 09:39:51.587607 t active 2015-06-24 00:00:00 demo | |
| 4102 vehicle.car 2016-09-26 09:39:51.610837 2016-09-26 09:39:51.610837 t active 2015-06-24 00:00:00 demo | |
| 4202 vehicle.car 2016-09-26 09:39:51.63429 2016-09-26 09:39:51.63429 t active 2015-06-24 00:00:00 demo | |
| 4302 vehicle.car 2016-09-26 09:39:51.655163 2016-09-26 09:39:51.655163 t active 2015-06-24 00:00:00 demo | |
| 4402 vehicle.car 2016-09-26 09:39:51.67907 2016-09-26 09:39:51.67907 t active 2015-06-24 00:00:00 demo | |
| 4502 vehicle.car 2016-09-26 09:39:51.699819 2016-09-26 09:39:51.699819 t active 2015-06-24 00:00:00 demo | |
| 4602 vehicle.car 2016-09-26 09:39:51.724123 2016-09-26 09:39:51.724123 t active 2015-06-24 00:00:00 demo | |
| 4702 vehicle.car 2016-09-26 09:39:51.747853 2016-09-26 09:39:51.747853 t active 2015-06-24 00:00:00 demo | |
| 4802 vehicle.car 2016-09-26 09:39:51.768766 2016-09-26 09:39:51.768766 t active 2015-06-24 00:00:00 demo | |
| 4902 vehicle.car 2016-09-26 09:39:51.792125 2016-09-26 09:39:51.792125 t active 2015-06-24 00:00:00 demo | |
| 5002 vehicle.car 2016-09-26 09:39:51.815649 2016-09-26 09:39:51.815649 t active 2015-06-24 00:00:00 demo | |
| 5102 vehicle.car 2016-09-26 09:39:51.836765 2016-09-26 09:39:51.836765 t active 2015-06-24 00:00:00 demo | |
| 5202 vehicle.car 2016-09-26 09:39:51.860576 2016-09-26 09:39:51.860576 t active 2015-06-24 00:00:00 demo | |
| 5302 vehicle.car 2016-09-26 09:39:51.881529 2016-09-26 09:39:51.881529 t active 2015-06-24 00:00:00 demo | |
| 5402 vehicle.car 2016-09-26 09:39:51.901971 2016-09-26 09:39:51.901971 t active 2015-06-24 00:00:00 demo | |
| 5502 vehicle.car 2016-09-26 09:39:51.922826 2016-09-26 09:39:51.922826 t active 2015-06-24 00:00:00 demo | |
| 5602 vehicle.car 2016-09-26 09:39:51.943623 2016-09-26 09:39:51.943623 t active 2015-06-24 00:00:00 demo | |
| 5802 vehicle.car 2016-09-26 09:39:51.983802 2016-09-26 09:39:51.983802 t active 2015-06-24 00:00:00 demo | |
| 5902 vehicle.car 2016-09-26 09:39:52.005811 2016-09-26 09:39:52.005811 t active 2015-06-24 00:00:00 demo | |
| 6002 vehicle.car 2016-09-26 09:39:52.031926 2016-09-26 09:39:52.031926 t active 2015-06-24 00:00:00 demo | |
| 6102 vehicle.car 2016-09-26 09:39:52.055224 2016-09-26 09:39:52.055224 t active 2015-06-24 00:00:00 demo | |
| 6202 vehicle.car 2016-09-26 09:39:52.076276 2016-09-26 09:39:52.076276 t active 2015-06-24 00:00:00 demo | |
| 6302 vehicle.car 2016-09-26 09:39:52.10012 2016-09-26 09:39:52.10012 t active 2015-06-24 00:00:00 demo | |
| 6402 vehicle.car 2016-09-26 09:39:52.120952 2016-09-26 09:39:52.120952 t active 2015-06-24 00:00:00 demo | |
| 6502 vehicle.car 2016-09-26 09:39:52.145665 2016-09-26 09:39:52.145665 t active 2015-06-24 00:00:00 demo | |
| 6602 vehicle.car 2016-09-26 09:39:52.16798 2016-09-26 09:39:52.16798 t active 2015-06-24 00:00:00 demo | |
| 6702 vehicle.car 2016-09-26 09:39:52.18857 2016-09-26 09:39:52.18857 t active 2015-06-24 00:00:00 demo | |
| 6802 vehicle.car 2016-09-26 09:39:52.209236 2016-09-26 09:39:52.209236 t active 2015-06-24 00:00:00 demo | |
| 7002 vehicle.car 2016-09-26 09:39:52.250746 2016-09-26 09:39:52.250746 t active 2015-06-24 00:00:00 demo | |
| 7102 vehicle.car 2016-09-26 09:39:52.271445 2016-09-26 09:39:52.271445 t active 2015-06-24 00:00:00 demo | |
| 7202 vehicle.car 2016-09-26 09:39:52.295285 2016-09-26 09:39:52.295285 t active 2015-06-24 00:00:00 demo | |
| 7302 vehicle.car 2016-09-26 09:39:52.316117 2016-09-26 09:39:52.316117 t active 2015-06-24 00:00:00 demo | |
| 7402 vehicle.car 2016-09-26 09:39:52.33675 2016-09-26 09:39:52.33675 t active 2015-06-24 00:00:00 demo | |
| 7502 vehicle.car 2016-09-26 09:39:52.360367 2016-09-26 09:39:52.360367 t active 2015-06-24 00:00:00 demo | |
| 7602 vehicle.car 2016-09-26 09:39:52.383971 2016-09-26 09:39:52.383971 t active 2015-06-24 00:00:00 demo | |
| 7702 vehicle.car 2016-09-26 09:39:52.404881 2016-09-26 09:39:52.404881 t active 2015-06-24 00:00:00 demo | |
| 7802 vehicle.car 2016-09-26 09:39:52.425214 2016-09-26 09:39:52.425214 t active 2015-06-24 00:00:00 demo | |
| 8002 vehicle.car 2016-09-26 09:39:52.464751 2016-09-26 09:39:52.464751 t active 2015-06-24 00:00:00 demo | |
| 8102 vehicle.car 2016-09-26 09:39:52.488512 2016-09-26 09:39:52.488512 t active 2015-06-24 00:00:00 demo | |
| 8202 vehicle.car 2016-09-26 09:39:52.511813 2016-09-26 09:39:52.511813 t active 2015-06-24 00:00:00 demo | |
| 8302 vehicle.car 2016-09-26 09:39:52.535639 2016-09-26 09:39:52.535639 t active 2015-06-24 00:00:00 demo | |
| 8502 vehicle.car 2016-09-26 09:39:52.579681 2016-09-26 09:39:52.579681 t active 2015-06-24 00:00:00 demo | |
| 8602 vehicle.car 2016-09-26 09:39:52.60018 2016-09-26 09:39:52.60018 t active 2015-06-24 00:00:00 demo | |
| 8702 vehicle.car 2016-09-26 09:39:52.623791 2016-09-26 09:39:52.623791 t active 2015-06-24 00:00:00 demo | |
| 8402 vehicle.car 2016-09-26 09:39:52.55908 2016-09-26 09:41:27.021927 t active 2016-09-27 08:41:27.021 demo | |
| 7902 vehicle.car 2016-09-26 09:39:52.445407 2016-09-26 09:41:32.989493 t active 2016-09-27 08:41:32.988 demo | |
| 1902 vehicle.car 2016-09-26 09:39:51.092691 2016-09-26 09:41:47.084251 t active 2016-09-27 08:41:47.083 demo | |
| 6902 vehicle.car 2016-09-26 09:39:52.230049 2016-09-26 09:41:57.125071 t active 2016-09-27 08:41:57.124 demo | |
| 8802 vehicle.car 2016-09-26 09:39:52.650675 2016-09-26 09:39:52.650675 t active 2015-06-24 00:00:00 demo | |
| 8902 vehicle.car 2016-09-26 09:39:52.673598 2016-09-26 09:39:52.673598 t active 2015-06-24 00:00:00 demo | |
| 9002 vehicle.car 2016-09-26 09:39:52.699735 2016-09-26 09:39:52.699735 t active 2015-06-24 00:00:00 demo | |
| 9102 vehicle.car 2016-09-26 09:39:52.724749 2016-09-26 09:39:52.724749 t active 2015-06-24 00:00:00 demo | |
| 9202 vehicle.car 2016-09-26 09:39:52.746685 2016-09-26 09:39:52.746685 t active 2015-06-24 00:00:00 demo | |
| 9302 vehicle.car 2016-09-26 09:39:52.770604 2016-09-26 09:39:52.770604 t active 2015-06-24 00:00:00 demo | |
| 9402 vehicle.car 2016-09-26 09:39:52.792671 2016-09-26 09:39:52.792671 t active 2015-06-24 00:00:00 demo | |
| 9502 vehicle.car 2016-09-26 09:39:52.814286 2016-09-26 09:39:52.814286 t active 2015-06-24 00:00:00 demo | |
| 9602 vehicle.car 2016-09-26 09:39:52.834696 2016-09-26 09:39:52.834696 t active 2015-06-24 00:00:00 demo | |
| 9702 vehicle.car 2016-09-26 09:39:52.855162 2016-09-26 09:39:52.855162 t active 2015-06-24 00:00:00 demo | |
| 9802 vehicle.car 2016-09-26 09:39:52.877161 2016-09-26 09:39:52.877161 t active 2015-06-24 00:00:00 demo | |
| 9902 vehicle.car 2016-09-26 09:39:52.899396 2016-09-26 09:39:52.899396 t active 2015-06-24 00:00:00 demo | |
| 10002 vehicle.car 2016-09-26 09:39:52.927871 2016-09-26 09:39:52.927871 t active 2015-06-24 00:00:00 demo | |
| 10102 vehicle.car 2016-09-26 09:39:52.953311 2016-09-26 09:39:52.953311 t active 2015-06-24 00:00:00 demo | |
| 10202 vehicle.car 2016-09-26 09:39:52.974456 2016-09-26 09:39:52.974456 t active 2015-06-24 00:00:00 demo | |
| 10402 vehicle.car 2016-09-26 09:39:53.023655 2016-09-26 09:39:53.023655 t active 2015-06-24 00:00:00 demo | |
| 10502 vehicle.car 2016-09-26 09:39:53.047487 2016-09-26 09:39:53.047487 t active 2015-06-24 00:00:00 demo | |
| 10602 vehicle.car 2016-09-26 09:39:53.070219 2016-09-26 09:39:53.070219 t active 2015-06-24 00:00:00 demo | |
| 10702 vehicle.car 2016-09-26 09:39:53.093568 2016-09-26 09:39:53.093568 t active 2015-06-24 00:00:00 demo | |
| 10902 vehicle.car 2016-09-26 09:39:53.140896 2016-09-26 09:39:53.140896 t active 2015-06-24 00:00:00 demo | |
| 11002 vehicle.car 2016-09-26 09:39:53.16438 2016-09-26 09:39:53.16438 t active 2015-06-24 00:00:00 demo | |
| 11102 vehicle.car 2016-09-26 09:39:53.188225 2016-09-26 09:39:53.188225 t active 2015-06-24 00:00:00 demo | |
| 11202 vehicle.car 2016-09-26 09:39:53.210731 2016-09-26 09:39:53.210731 t active 2015-06-24 00:00:00 demo | |
| 11302 vehicle.car 2016-09-26 09:39:53.236055 2016-09-26 09:39:53.236055 t active 2015-06-24 00:00:00 demo | |
| 11402 vehicle.car 2016-09-26 09:39:53.259943 2016-09-26 09:39:53.259943 t active 2015-06-24 00:00:00 demo | |
| 11502 vehicle.car 2016-09-26 09:39:53.285192 2016-09-26 09:39:53.285192 t active 2015-06-24 00:00:00 demo | |
| 11602 vehicle.car 2016-09-26 09:39:53.313552 2016-09-26 09:39:53.313552 t active 2015-06-24 00:00:00 demo | |
| 11702 vehicle.car 2016-09-26 09:39:53.336463 2016-09-26 09:39:53.336463 t active 2015-06-24 00:00:00 demo | |
| 11802 vehicle.car 2016-09-26 09:39:53.357964 2016-09-26 09:39:53.357964 t active 2015-06-24 00:00:00 demo | |
| 11902 vehicle.car 2016-09-26 09:39:53.379188 2016-09-26 09:39:53.379188 t active 2015-06-24 00:00:00 demo | |
| 12002 vehicle.car 2016-09-26 09:39:53.400179 2016-09-26 09:39:53.400179 t active 2015-06-24 00:00:00 demo | |
| 12102 vehicle.car 2016-09-26 09:39:53.423017 2016-09-26 09:39:53.423017 t active 2015-06-24 00:00:00 demo | |
| 12202 vehicle.car 2016-09-26 09:39:53.446678 2016-09-26 09:39:53.446678 t active 2015-06-24 00:00:00 demo | |
| 12402 vehicle.car 2016-09-26 09:39:53.495773 2016-09-26 09:39:53.495773 t active 2015-06-24 00:00:00 demo | |
| 12502 vehicle.car 2016-09-26 09:39:53.520919 2016-09-26 09:39:53.520919 t active 2015-06-24 00:00:00 demo | |
| 12602 vehicle.car 2016-09-26 09:39:53.542544 2016-09-26 09:39:53.542544 t active 2015-06-24 00:00:00 demo | |
| 12702 vehicle.car 2016-09-26 09:39:53.564035 2016-09-26 09:39:53.564035 t active 2015-06-24 00:00:00 demo | |
| 12802 vehicle.car 2016-09-26 09:39:53.588526 2016-09-26 09:39:53.588526 t active 2015-06-24 00:00:00 demo | |
| 12902 vehicle.car 2016-09-26 09:39:53.615524 2016-09-26 09:39:53.615524 t active 2015-06-24 00:00:00 demo | |
| 13102 vehicle.car 2016-09-26 09:39:53.662407 2016-09-26 09:39:53.662407 t active 2015-06-24 00:00:00 demo | |
| 13202 vehicle.car 2016-09-26 09:39:53.687722 2016-09-26 09:39:53.687722 t active 2015-06-24 00:00:00 demo | |
| 13302 vehicle.car 2016-09-26 09:39:53.712133 2016-09-26 09:39:53.712133 t active 2015-06-24 00:00:00 demo | |
| 13402 vehicle.car 2016-09-26 09:39:53.735837 2016-09-26 09:39:53.735837 t active 2015-06-24 00:00:00 demo | |
| 13502 vehicle.car 2016-09-26 09:39:53.75879 2016-09-26 09:39:53.75879 t active 2015-06-24 00:00:00 demo | |
| 13602 vehicle.car 2016-09-26 09:39:53.782216 2016-09-26 09:39:53.782216 t active 2015-06-24 00:00:00 demo | |
| 13702 vehicle.car 2016-09-26 09:39:53.803799 2016-09-26 09:39:53.803799 t active 2015-06-24 00:00:00 demo | |
| 13802 vehicle.car 2016-09-26 09:39:53.82555 2016-09-26 09:39:53.82555 t active 2015-06-24 00:00:00 demo | |
| 13902 electronic.phone 2016-09-26 09:39:53.847732 2016-09-26 09:39:53.847732 t ordered 2015-06-01 00:00:00 demo | |
| 14002 electronic.phone 2016-09-26 09:39:53.886295 2016-09-26 09:39:53.886295 t active 2015-06-01 00:00:00 demo | |
| 14202 electronic.phone 2016-09-26 09:39:53.940463 2016-09-26 09:39:53.940463 t active 2015-06-01 00:00:00 demo | |
| 14302 electronic.phone 2016-09-26 09:39:53.972624 2016-09-26 09:39:53.972624 t broken 2015-06-01 00:00:00 demo | |
| 14402 electronic.phone 2016-09-26 09:39:54.007476 2016-09-26 09:39:54.007476 t active 2015-06-01 00:00:00 demo | |
| 14502 electronic.phone 2016-09-26 09:39:54.033958 2016-09-26 09:39:54.033958 t active 2015-06-01 00:00:00 demo | |
| 14602 electronic.phone 2016-09-26 09:39:54.060299 2016-09-26 09:39:54.060299 t active 2015-06-01 00:00:00 demo | |
| 14802 electronic.phone 2016-09-26 09:39:54.119904 2016-09-26 09:39:54.119904 t active 2015-06-01 00:00:00 demo | |
| 15002 electronic.phone 2016-09-26 09:39:54.177858 2016-09-26 09:39:54.177858 t active 2015-06-01 00:00:00 demo | |
| 15102 electronic.phone 2016-09-26 09:39:54.207635 2016-09-26 09:39:54.207635 t active 2015-06-01 00:00:00 demo | |
| 15302 electronic.phone 2016-09-26 09:39:54.272695 2016-09-26 09:39:54.272695 t active 2015-06-01 00:00:00 demo | |
| 15402 electronic.phone 2016-09-26 09:39:54.300485 2016-09-26 09:39:54.300485 t active 2015-06-01 00:00:00 demo | |
| 15502 electronic.phone 2016-09-26 09:39:54.328628 2016-09-26 09:39:54.328628 t returned 2015-06-01 00:00:00 demo | |
| 15602 electronic.phone 2016-09-26 09:39:54.36235 2016-09-26 09:39:54.36235 t returned 2015-06-01 00:00:00 demo | |
| 15702 electronic.phone 2016-09-26 09:39:54.394808 2016-09-26 09:39:54.394808 t returned 2015-06-01 00:00:00 demo | |
| 15902 electronic.phone 2016-09-26 09:39:54.456429 2016-09-26 09:39:54.456429 t active 2015-06-01 00:00:00 demo | |
| 16102 electronic.phone 2016-09-26 09:39:54.519416 2016-09-26 09:39:54.519416 t active 2015-06-01 00:00:00 demo | |
| 16202 electronic.phone 2016-09-26 09:39:54.551871 2016-09-26 09:39:54.551871 t active 2015-06-01 00:00:00 demo | |
| 16302 electronic.phone 2016-09-26 09:39:54.583453 2016-09-26 09:39:54.583453 t active 2015-06-01 00:00:00 demo | |
| 16402 electronic.phone 2016-09-26 09:39:54.616442 2016-09-26 09:39:54.616442 t active 2015-06-01 00:00:00 demo | |
| 16502 electronic.phone 2016-09-26 09:39:54.653579 2016-09-26 09:39:54.653579 t active 2015-06-01 00:00:00 demo | |
| 16602 electronic.phone 2016-09-26 09:39:54.696391 2016-09-26 09:39:54.696391 t active 2015-06-01 00:00:00 demo | |
| 16702 electronic.phone 2016-09-26 09:39:54.72844 2016-09-26 09:39:54.72844 t active 2015-06-01 00:00:00 demo | |
| 16802 electronic.phone 2016-09-26 09:39:54.757722 2016-09-26 09:39:54.757722 t active 2015-06-01 00:00:00 demo | |
| 16902 electronic.phone 2016-09-26 09:39:54.786581 2016-09-26 09:39:54.786581 t active 2015-06-01 00:00:00 demo | |
| 17002 electronic.phone 2016-09-26 09:39:54.815662 2016-09-26 09:39:54.815662 t returned 2015-06-01 00:00:00 demo | |
| 17102 electronic.phone 2016-09-26 09:39:54.846382 2016-09-26 09:39:54.846382 t active 2015-06-01 00:00:00 demo | |
| 17202 electronic.phone 2016-09-26 09:39:54.880655 2016-09-26 09:39:54.880655 t active 2015-06-01 00:00:00 demo | |
| 10802 vehicle.car 2016-09-26 09:39:53.117373 2016-09-26 09:41:31.019424 t active 2016-09-27 08:41:31.018 demo | |
| 15202 electronic.phone 2016-09-26 09:39:54.244256 2016-09-26 09:41:22.960262 t active 2016-09-27 08:41:22.959 demo | |
| 14702 electronic.phone 2016-09-26 09:39:54.087625 2016-09-26 09:41:39.03664 t active 2016-09-27 08:41:39.035 demo | |
| 16002 electronic.phone 2016-09-26 09:39:54.488348 2016-09-26 09:41:37.028798 t active 2016-09-27 08:41:37.027 demo | |
| 14902 electronic.phone 2016-09-26 09:39:54.148278 2016-09-26 09:41:43.054753 t active 2016-09-27 08:41:43.054 demo | |
| 15802 electronic.phone 2016-09-26 09:39:54.425032 2016-09-26 09:41:51.087717 t active 2016-09-27 08:41:51.085 demo | |
| 12302 vehicle.car 2016-09-26 09:39:53.467608 2016-09-26 09:41:53.083853 t active 2016-09-27 08:41:53.082 demo | |
| 13002 vehicle.car 2016-09-26 09:39:53.639556 2016-09-26 09:42:01.100624 t active 2016-09-27 08:42:01.099 demo | |
| 17302 electronic.phone 2016-09-26 09:39:54.911111 2016-09-26 09:39:54.911111 t active 2015-06-01 00:00:00 demo | |
| 17402 electronic.phone 2016-09-26 09:39:54.94498 2016-09-26 09:39:54.94498 t active 2015-06-01 00:00:00 demo | |
| 17502 electronic.phone 2016-09-26 09:39:54.973263 2016-09-26 09:39:54.973263 t active 2015-06-01 00:00:00 demo | |
| 17602 electronic.phone 2016-09-26 09:39:55.00274 2016-09-26 09:39:55.00274 t active 2015-06-01 00:00:00 demo | |
| 17702 electronic.phone 2016-09-26 09:39:55.03362 2016-09-26 09:39:55.03362 t active 2015-06-01 00:00:00 demo | |
| 17802 electronic.phone 2016-09-26 09:39:55.06385 2016-09-26 09:39:55.06385 f returned 2015-06-01 00:00:00 demo | |
| 17902 electronic.phone 2016-09-26 09:39:55.093805 2016-09-26 09:39:55.093805 t returned 2015-06-01 00:00:00 demo | |
| 18002 electronic.phone 2016-09-26 09:39:55.123321 2016-09-26 09:39:55.123321 t returned 2015-06-01 00:00:00 demo | |
| 18102 electronic.phone 2016-09-26 09:39:55.155935 2016-09-26 09:39:55.155935 t active 2015-06-01 00:00:00 demo | |
| 18202 electronic.phone 2016-09-26 09:39:55.186039 2016-09-26 09:39:55.186039 t active 2015-06-01 00:00:00 demo | |
| 18302 electronic.phone 2016-09-26 09:39:55.2207 2016-09-26 09:39:55.2207 t stolen 2015-06-01 00:00:00 demo | |
| 18402 electronic.phone 2016-09-26 09:39:55.253348 2016-09-26 09:39:55.253348 t stolen 2015-06-01 00:00:00 demo | |
| 18502 electronic.printer 2016-09-26 09:39:55.288304 2016-09-26 09:39:55.288304 t ordered 2015-06-01 00:00:00 demo | |
| 18602 electronic.printer 2016-09-26 09:39:55.303945 2016-09-26 09:39:55.303945 t active 2015-06-01 00:00:00 demo | |
| 18702 electronic.printer 2016-09-26 09:39:55.318802 2016-09-26 09:39:55.318802 t active 2015-06-01 00:00:00 demo | |
| 18802 electronic.printer 2016-09-26 09:39:55.332135 2016-09-26 09:39:55.332135 t active 2015-06-01 00:00:00 demo | |
| 18902 electronic.printer 2016-09-26 09:39:55.346708 2016-09-26 09:39:55.346708 t broken 2015-06-01 00:00:00 demo | |
| 19002 electronic.printer 2016-09-26 09:39:55.360936 2016-09-26 09:39:55.360936 t active 2015-06-01 00:00:00 demo | |
| 19102 electronic.printer 2016-09-26 09:39:55.371703 2016-09-26 09:39:55.371703 t active 2015-06-01 00:00:00 demo | |
| 19202 electronic.printer 2016-09-26 09:39:55.385223 2016-09-26 09:39:55.385223 t active 2015-06-01 00:00:00 demo | |
| 19302 electronic.printer 2016-09-26 09:39:55.396311 2016-09-26 09:39:55.396311 t active 2015-06-01 00:00:00 demo | |
| 19502 electronic.printer 2016-09-26 09:39:55.419694 2016-09-26 09:39:55.419694 t active 2015-06-01 00:00:00 demo | |
| 19602 electronic.printer 2016-09-26 09:39:55.433691 2016-09-26 09:39:55.433691 t active 2015-06-01 00:00:00 demo | |
| 19802 electronic.printer 2016-09-26 09:39:55.455383 2016-09-26 09:39:55.455383 t active 2015-06-01 00:00:00 demo | |
| 19902 electronic.printer 2016-09-26 09:39:55.469468 2016-09-26 09:39:55.469468 t active 2015-06-01 00:00:00 demo | |
| 20002 electronic.printer 2016-09-26 09:39:55.480101 2016-09-26 09:39:55.480101 t active 2015-06-01 00:00:00 demo | |
| 20102 electronic.printer 2016-09-26 09:39:55.494022 2016-09-26 09:39:55.494022 t returned 2015-06-01 00:00:00 demo | |
| 20202 electronic.printer 2016-09-26 09:39:55.505753 2016-09-26 09:39:55.505753 t returned 2015-06-01 00:00:00 demo | |
| 20302 electronic.printer 2016-09-26 09:39:55.517608 2016-09-26 09:39:55.517608 t returned 2015-06-01 00:00:00 demo | |
| 20402 electronic.printer 2016-09-26 09:39:55.53755 2016-09-26 09:39:55.53755 t active 2015-06-01 00:00:00 demo | |
| 20502 electronic.printer 2016-09-26 09:39:55.556205 2016-09-26 09:39:55.556205 t active 2015-06-01 00:00:00 demo | |
| 20602 electronic.printer 2016-09-26 09:39:55.573454 2016-09-26 09:39:55.573454 t active 2015-06-01 00:00:00 demo | |
| 20702 electronic.printer 2016-09-26 09:39:55.586278 2016-09-26 09:39:55.586278 t active 2015-06-01 00:00:00 demo | |
| 20802 electronic.printer 2016-09-26 09:39:55.59854 2016-09-26 09:39:55.59854 t active 2015-06-01 00:00:00 demo | |
| 20902 electronic.printer 2016-09-26 09:39:55.613507 2016-09-26 09:39:55.613507 t active 2015-06-01 00:00:00 demo | |
| 21002 electronic.printer 2016-09-26 09:39:55.625747 2016-09-26 09:39:55.625747 t active 2015-06-01 00:00:00 demo | |
| 21102 electronic.printer 2016-09-26 09:39:55.640126 2016-09-26 09:39:55.640126 t active 2015-06-01 00:00:00 demo | |
| 21202 electronic.printer 2016-09-26 09:39:55.65243 2016-09-26 09:39:55.65243 t active 2015-06-01 00:00:00 demo | |
| 21402 electronic.printer 2016-09-26 09:39:55.681715 2016-09-26 09:39:55.681715 t active 2015-06-01 00:00:00 demo | |
| 21502 electronic.printer 2016-09-26 09:39:55.694152 2016-09-26 09:39:55.694152 t active 2015-06-01 00:00:00 demo | |
| 21602 electronic.printer 2016-09-26 09:39:55.706286 2016-09-26 09:39:55.706286 t returned 2015-06-01 00:00:00 demo | |
| 21702 electronic.printer 2016-09-26 09:39:55.718652 2016-09-26 09:39:55.718652 t active 2015-06-01 00:00:00 demo | |
| 21902 electronic.printer 2016-09-26 09:39:55.742158 2016-09-26 09:39:55.742158 t active 2015-06-01 00:00:00 demo | |
| 22002 electronic.printer 2016-09-26 09:39:55.754037 2016-09-26 09:39:55.754037 t active 2015-06-01 00:00:00 demo | |
| 22102 electronic.printer 2016-09-26 09:39:55.765727 2016-09-26 09:39:55.765727 t active 2015-06-01 00:00:00 demo | |
| 22202 electronic.printer 2016-09-26 09:39:55.777321 2016-09-26 09:39:55.777321 t active 2015-06-01 00:00:00 demo | |
| 22302 electronic.printer 2016-09-26 09:39:55.789055 2016-09-26 09:39:55.789055 t active 2015-06-01 00:00:00 demo | |
| 22402 electronic.printer 2016-09-26 09:39:55.800616 2016-09-26 09:39:55.800616 f returned 2015-06-01 00:00:00 demo | |
| 22502 electronic.printer 2016-09-26 09:39:55.813414 2016-09-26 09:39:55.813414 t returned 2015-06-01 00:00:00 demo | |
| 22602 electronic.printer 2016-09-26 09:39:55.826017 2016-09-26 09:39:55.826017 t returned 2015-06-01 00:00:00 demo | |
| 22702 electronic.printer 2016-09-26 09:39:55.841706 2016-09-26 09:39:55.841706 t active 2015-06-01 00:00:00 demo | |
| 22802 electronic.printer 2016-09-26 09:39:55.860191 2016-09-26 09:39:55.860191 t active 2015-06-01 00:00:00 demo | |
| 22902 electronic.printer 2016-09-26 09:39:55.873149 2016-09-26 09:39:55.873149 t stolen 2015-06-01 00:00:00 demo | |
| 23002 electronic.printer 2016-09-26 09:39:55.887492 2016-09-26 09:39:55.887492 t stolen 2015-06-01 00:00:00 demo | |
| 23102 electronic.computer 2016-09-26 09:39:55.901631 2016-09-26 09:39:55.901631 t ordered 2015-06-01 00:00:00 demo | |
| 23202 electronic.computer 2016-09-26 09:39:55.921923 2016-09-26 09:39:55.921923 t active 2015-06-01 00:00:00 demo | |
| 23302 electronic.computer 2016-09-26 09:39:55.944016 2016-09-26 09:39:55.944016 t active 2015-06-01 00:00:00 demo | |
| 23402 electronic.computer 2016-09-26 09:39:55.963295 2016-09-26 09:39:55.963295 t active 2015-06-01 00:00:00 demo | |
| 23502 electronic.computer 2016-09-26 09:39:55.984743 2016-09-26 09:39:55.984743 t broken 2015-06-01 00:00:00 demo | |
| 23602 electronic.computer 2016-09-26 09:39:56.004086 2016-09-26 09:39:56.004086 t active 2015-06-01 00:00:00 demo | |
| 23702 electronic.computer 2016-09-26 09:39:56.02347 2016-09-26 09:39:56.02347 t active 2015-06-01 00:00:00 demo | |
| 23802 electronic.computer 2016-09-26 09:39:56.046435 2016-09-26 09:39:56.046435 t active 2015-06-01 00:00:00 demo | |
| 23902 electronic.computer 2016-09-26 09:39:56.068318 2016-09-26 09:39:56.068318 t active 2015-06-01 00:00:00 demo | |
| 24002 electronic.computer 2016-09-26 09:39:56.090141 2016-09-26 09:39:56.090141 t active 2015-06-01 00:00:00 demo | |
| 24102 electronic.computer 2016-09-26 09:39:56.112198 2016-09-26 09:39:56.112198 t active 2015-06-01 00:00:00 demo | |
| 24202 electronic.computer 2016-09-26 09:39:56.133849 2016-09-26 09:39:56.133849 t active 2015-06-01 00:00:00 demo | |
| 24302 electronic.computer 2016-09-26 09:39:56.15821 2016-09-26 09:39:56.15821 t active 2015-06-01 00:00:00 demo | |
| 24402 electronic.computer 2016-09-26 09:39:56.178821 2016-09-26 09:39:56.178821 t active 2015-06-01 00:00:00 demo | |
| 24502 electronic.computer 2016-09-26 09:39:56.201465 2016-09-26 09:39:56.201465 t active 2015-06-01 00:00:00 demo | |
| 24602 electronic.computer 2016-09-26 09:39:56.227581 2016-09-26 09:39:56.227581 t active 2015-06-01 00:00:00 demo | |
| 24702 electronic.computer 2016-09-26 09:39:56.252983 2016-09-26 09:39:56.252983 t returned 2015-06-01 00:00:00 demo | |
| 24802 electronic.computer 2016-09-26 09:39:56.274254 2016-09-26 09:39:56.274254 t returned 2015-06-01 00:00:00 demo | |
| 24902 electronic.computer 2016-09-26 09:39:56.295728 2016-09-26 09:39:56.295728 t returned 2015-06-01 00:00:00 demo | |
| 25002 electronic.computer 2016-09-26 09:39:56.317206 2016-09-26 09:39:56.317206 t active 2015-06-01 00:00:00 demo | |
| 25102 electronic.computer 2016-09-26 09:39:56.33865 2016-09-26 09:39:56.33865 t active 2015-06-01 00:00:00 demo | |
| 25202 electronic.computer 2016-09-26 09:39:56.363061 2016-09-26 09:39:56.363061 t active 2015-06-01 00:00:00 demo | |
| 21802 electronic.printer 2016-09-26 09:39:55.730348 2016-09-26 09:41:41.02345 t active 2016-09-27 08:41:41.022 demo | |
| 19402 electronic.printer 2016-09-26 09:39:55.408184 2016-09-26 09:41:45.059015 t active 2016-09-27 08:41:45.057 demo | |
| 21302 electronic.printer 2016-09-26 09:39:55.665787 2016-09-26 09:41:49.173911 t active 2016-09-27 08:41:49.172 demo | |
| 25302 electronic.computer 2016-09-26 09:39:56.385945 2016-09-26 09:39:56.385945 t active 2015-06-01 00:00:00 demo | |
| 25402 electronic.computer 2016-09-26 09:39:56.411203 2016-09-26 09:39:56.411203 t active 2015-06-01 00:00:00 demo | |
| 25502 electronic.computer 2016-09-26 09:39:56.432465 2016-09-26 09:39:56.432465 t active 2015-06-01 00:00:00 demo | |
| 25602 electronic.computer 2016-09-26 09:39:56.456362 2016-09-26 09:39:56.456362 t active 2015-06-01 00:00:00 demo | |
| 25702 electronic.computer 2016-09-26 09:39:56.477825 2016-09-26 09:39:56.477825 t active 2015-06-01 00:00:00 demo | |
| 25802 electronic.computer 2016-09-26 09:39:56.498071 2016-09-26 09:39:56.498071 t active 2015-06-01 00:00:00 demo | |
| 25902 electronic.computer 2016-09-26 09:39:56.521118 2016-09-26 09:39:56.521118 t active 2015-06-01 00:00:00 demo | |
| 26002 electronic.computer 2016-09-26 09:39:56.549149 2016-09-26 09:39:56.549149 t active 2015-06-01 00:00:00 demo | |
| 26102 electronic.computer 2016-09-26 09:39:56.573026 2016-09-26 09:39:56.573026 t active 2015-06-01 00:00:00 demo | |
| 26202 electronic.computer 2016-09-26 09:39:56.593326 2016-09-26 09:39:56.593326 t returned 2015-06-01 00:00:00 demo | |
| 26302 electronic.computer 2016-09-26 09:39:56.618423 2016-09-26 09:39:56.618423 t active 2015-06-01 00:00:00 demo | |
| 26402 electronic.computer 2016-09-26 09:39:56.640861 2016-09-26 09:39:56.640861 t active 2015-06-01 00:00:00 demo | |
| 26502 electronic.computer 2016-09-26 09:39:56.665779 2016-09-26 09:39:56.665779 t active 2015-06-01 00:00:00 demo | |
| 26602 electronic.computer 2016-09-26 09:39:56.688916 2016-09-26 09:39:56.688916 t active 2015-06-01 00:00:00 demo | |
| 26702 electronic.computer 2016-09-26 09:39:56.710314 2016-09-26 09:39:56.710314 t active 2015-06-01 00:00:00 demo | |
| 26802 electronic.computer 2016-09-26 09:39:56.731642 2016-09-26 09:39:56.731642 t active 2015-06-01 00:00:00 demo | |
| 26902 electronic.computer 2016-09-26 09:39:56.751617 2016-09-26 09:39:56.751617 t active 2015-06-01 00:00:00 demo | |
| 27002 electronic.computer 2016-09-26 09:39:56.771747 2016-09-26 09:39:56.771747 f returned 2015-06-01 00:00:00 demo | |
| 27102 electronic.computer 2016-09-26 09:39:56.795488 2016-09-26 09:39:56.795488 t returned 2015-06-01 00:00:00 demo | |
| 27202 electronic.computer 2016-09-26 09:39:56.822693 2016-09-26 09:39:56.822693 t returned 2015-06-01 00:00:00 demo | |
| 27302 electronic.computer 2016-09-26 09:39:56.854497 2016-09-26 09:39:56.854497 t active 2015-06-01 00:00:00 demo | |
| 27402 electronic.computer 2016-09-26 09:39:56.877727 2016-09-26 09:39:56.877727 t active 2015-06-01 00:00:00 demo | |
| 27502 electronic.computer 2016-09-26 09:39:56.900606 2016-09-26 09:39:56.900606 t stolen 2015-06-01 00:00:00 demo | |
| 27602 electronic.computer 2016-09-26 09:39:56.929091 2016-09-26 09:39:56.929091 t stolen 2015-06-01 00:00:00 demo | |
| 27702 generic.generic 2016-09-26 09:39:56.95642 2016-09-26 09:39:56.95642 t ordered 2016-09-26 09:39:56.95642 demo | |
| 27802 generic.generic 2016-09-26 09:39:56.964975 2016-09-26 09:39:56.964975 t active 2016-09-26 09:39:56.964975 demo | |
| 27902 generic.generic 2016-09-26 09:39:56.973254 2016-09-26 09:39:56.973254 t active 2016-09-26 09:39:56.973254 demo | |
| 28002 generic.generic 2016-09-26 09:39:56.981271 2016-09-26 09:39:56.981271 t active 2016-09-26 09:39:56.981271 demo | |
| 28102 generic.generic 2016-09-26 09:39:56.988641 2016-09-26 09:39:56.988641 t active 2016-09-26 09:39:56.988641 demo | |
| 28302 generic.generic 2016-09-26 09:39:57.003191 2016-09-26 09:39:57.003191 t active 2016-09-26 09:39:57.003191 demo | |
| 28502 generic.generic 2016-09-26 09:39:57.020718 2016-09-26 09:39:57.020718 t active 2016-09-26 09:39:57.020718 demo | |
| 28602 generic.generic 2016-09-26 09:39:57.02806 2016-09-26 09:39:57.02806 t active 2016-09-26 09:39:57.02806 demo | |
| 28702 generic.generic 2016-09-26 09:39:57.035364 2016-09-26 09:39:57.035364 t active 2016-09-26 09:39:57.035364 demo | |
| 28802 generic.generic 2016-09-26 09:39:57.042681 2016-09-26 09:39:57.042681 t active 2016-09-26 09:39:57.042681 demo | |
| 29002 generic.generic 2016-09-26 09:39:57.060436 2016-09-26 09:39:57.060436 t active 2016-09-26 09:39:57.060436 demo | |
| 29102 generic.generic 2016-09-26 09:39:57.068545 2016-09-26 09:39:57.068545 t active 2016-09-26 09:39:57.068545 demo | |
| 29202 generic.generic 2016-09-26 09:39:57.076753 2016-09-26 09:39:57.076753 t active 2016-09-26 09:39:57.076753 demo | |
| 29302 generic.generic 2016-09-26 09:39:57.084266 2016-09-26 09:39:57.084266 t ordered 2016-09-26 09:39:57.084266 demo | |
| 29502 generic.generic 2016-09-26 09:39:57.099354 2016-09-26 09:39:57.099354 t active 2016-09-26 09:39:57.099354 demo | |
| 5702 vehicle.car 2016-09-26 09:39:51.963748 2016-09-26 09:41:18.961648 t active 2016-09-27 08:41:18.96 demo | |
| 10302 vehicle.car 2016-09-26 09:39:52.998593 2016-09-26 09:41:20.957112 t active 2016-09-27 08:41:20.956 demo | |
| 28902 generic.generic 2016-09-26 09:39:57.052872 2016-09-26 09:41:24.954322 t active 2016-09-27 08:41:24.953 demo | |
| 28202 generic.generic 2016-09-26 09:39:56.99585 2016-09-26 09:41:29.001895 t active 2016-09-27 08:41:29 demo | |
| 19702 electronic.printer 2016-09-26 09:39:55.444846 2016-09-26 09:41:35.031287 t active 2016-09-27 08:41:35.03 demo | |
| 14102 electronic.phone 2016-09-26 09:39:53.91372 2016-09-26 09:41:55.126334 t active 2016-09-27 08:41:55.124 demo | |
| 29402 generic.generic 2016-09-26 09:39:57.091711 2016-09-26 09:41:59.095924 t active 2016-09-27 08:41:59.095 demo | |
| 28402 generic.generic 2016-09-26 09:39:57.012621 2016-09-26 09:42:03.098847 t active 2016-09-27 08:42:03.097 demo | |
| \. | |
| -- | |
| -- Name: assettypeid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('assettypeid', 1010, true); | |
| -- | |
| -- Data for Name: assettypes; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY assettypes (id, classname, description, created, updated) FROM stdin; | |
| 10 vehicle.car Car 2016-09-26 09:39:57.133759 2016-09-26 09:39:57.133759 | |
| 110 electronic.phone Phone 2016-09-26 09:39:57.135137 2016-09-26 09:39:57.135137 | |
| 210 electronic.printer Printer 2016-09-26 09:39:57.136361 2016-09-26 09:39:57.136361 | |
| 310 electronic.computer Computer 2016-09-26 09:39:57.137528 2016-09-26 09:39:57.137528 | |
| 410 generic.generic Custom 2016-09-26 09:39:57.138617 2016-09-26 09:39:57.138617 | |
| 510 vehicle.truck Trucks vehicles workflow 2016-09-26 09:41:11.033872 2016-09-26 09:41:11.033872 | |
| \. | |
| -- | |
| -- Name: assignment_id; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('assignment_id', 28408, true); | |
| -- | |
| -- Data for Name: attributetypes; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY attributetypes (assetname, statecode, name, class, label, help, userdef, required, readonly, validation, settings) FROM stdin; | |
| electronic.phone \N uuid string UUID UUID used for Qr code f f f \N {"fixed": true, "states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.phone \N brand string Brand Brand of the phone (Samsung, Apple, etc.) f f f \N {"fixed": true, "states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"], "required": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.phone \N model string Model Model of the phone. (related to the brand) f f f \N {"fixed": true, "states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"], "required": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"], "reference": {"parent": "brand"}} | |
| electronic.phone \N colour string Colour Colour of the phone. (related to the brand) f f f \N {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"], "required": ["pre_ordered", "quotation", "ordered"], "reference": {"parent": "model"}} | |
| electronic.phone \N imei_number string IMEI Number The IMEI number of the phone, used to identify it. f f f \N {"states": ["active", "inactive", "returned", "broken", "stolen"], "required": ["active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.phone \N sim_number string SIM Number The SIM number used to call to this phone. f f f \N {"states": ["active", "inactive", "returned", "broken", "stolen"], "required": ["active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.phone \N puk_number string PUK Number The PUK number of the sim, used to unlock it. f f f \N {"states": ["active", "inactive", "returned", "broken", "stolen"], "required": ["active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.phone \N sim_quantity integer SIM Quantity Number of sim cards the phone can user f f f {"list": ["1", "2", "3", "4"], "type": "list", "caseSensitive": false} {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N sim_size string SIM Size Size of SIM card used f f f {"list": ["full", "mini", "micro", "nano", "embedded"], "type": "list", "caseSensitive": false} {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N display_type string Display Type Technology used for the display f f f {"list": ["CSTN", "TFT", "TFD", "OLED", "AMOLED"], "type": "list", "caseSensitive": false} {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N touch_screen_type string Touch Screen Type The technology used for the touch screen, if applicable f f f {"list": ["Capacitive", "Resistive", "N/A"], "type": "list", "caseSensitive": false} {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N screen_resolution dimension Resolution The width in pixel of the screen f f f {"type": "range", "range": [1, 9999]} {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N screen_size double Screen size Size of the screen (in inches) f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N multi_touch integer Multi touch Number of points of contact on the touch screen, if applicable f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N os string Operating System The operating system of the phone (Android, iOS, etc.) f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N os_version string OS Version The operating system version f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N chipset string Chipset Embedded chipsets used on the phone f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N cpu string CPU CPU (Central Processing Unit) - otherwise known as a processor f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N gpu string GPU The GPU (Graphics Processing Unit) f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N internal_memory integer Internal Internal memory f f f \N {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"], "required": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.phone \N card_slot_memory integer Card slot capacity Card slot capacity, in Gb f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N card_slot string Card slot Card slot type, if present f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N camera_primary boolean Primary Camera The phone has a primary camera included f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N camera_secondary boolean Secondary Camera The phone has a secondary camera included f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N wifi boolean Wifi The phone has wifi included f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N bluetooth boolean Bluetooth The phone has bluetooth included f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N gps boolean GPS The phone has a GPS included f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N nfc boolean NFC The phone has NFS included (Near Field Communication) f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N fm_radio boolean FM Radio The phone has an FM radio included f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N usb boolean USB The phone has a USB socket included f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.phone \N contract_order_supplier string Contract supplier The type of the contract to ask for f f f \N {"states": ["ordered"], "required": ["ordered"]} | |
| electronic.phone \N contract_type string Contract type The type of the contract to ask for f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| electronic.printer active entry_date date Entry date Date the printer entered in the stock f t f \N \N | |
| electronic.phone \N contract_payment_period_order string Payment period The payment period for the contract f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| electronic.phone \N minutes_contract_order integer Minutes The minutes to use for the contract f f f \N {"states": ["quotation", "ordered"], "required": ["quotation", "ordered"]} | |
| electronic.phone \N megabytes_contract_order integer MB data The megabytes to use for the contract f f f \N {"states": ["quotation", "ordered"], "required": ["quotation", "ordered"]} | |
| electronic.phone \N contract_duration_unit string Duration unit The duration unit to use f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| electronic.phone \N contract_duration_value integer Duration value The duration value related to the duration unit used f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| electronic.phone \N contract_currency string Contract currency The currency of the contract f f f \N {"states": ["ordered"], "required": ["ordered"]} | |
| electronic.phone \N extras_options string Options Options to order for the car f f f \N {"states": ["pre_ordered", "quotation", "ordered"]} | |
| electronic.phone \N extras_accessories string Accessories Accessories to order for the car f f f \N {"states": ["pre_ordered", "quotation", "ordered"]} | |
| electronic.phone \N contract_service_1 string Contract service 1 The contract service 1 for the order of the car f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| electronic.phone \N service_1_fees integer Service 1 fees Service 1 fees f f f \N {"states": ["ordered"], "required": ["ordered"]} | |
| electronic.phone \N contract_service_2 string Contract service 2 The contract service 2 for the order of the car f f f \N {"states": ["quotation", "ordered"]} | |
| electronic.phone \N service_2_fees integer Service 2 fees The service 2 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| electronic.phone \N contract_service_3 string Contract service 3 The contract service 3 for the order of the car f f f \N {"states": ["quotation", "ordered"]} | |
| electronic.phone \N service_3_fees integer Service 3 fees The service 3 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| electronic.phone \N contract_service_4 string Contract service 4 The contract service 4 for the order of the car f f f \N {"states": ["quotation", "ordered"]} | |
| electronic.phone \N service_4_fees integer Service 4 fees The service 4 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| electronic.phone \N contract_service_5 string Contract service 5 The contract service 5 for the order of the car f f f \N {"states": ["quotation", "ordered"]} | |
| electronic.phone \N service_5_fees integer Service 5 fees The service 5 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| electronic.phone \N comment string Comment Free comment f f f \N {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.phone \N total_tco integer Total TCO Total tco from start date f f t \N \N | |
| electronic.phone \N avg_tco_per_month integer Average TCO per month Average TCO per month f f t \N \N | |
| electronic.phone \N contract_start date Contract start Day the contract starts f f t \N \N | |
| electronic.phone \N contract_end date Contract end Day the contract ends f f t \N \N | |
| electronic.phone \N avg_minutes_consumption integer Average Minutes Consumption (~3 Month) Average of minutes consumption during the last 3 month f f t \N \N | |
| electronic.phone \N avg_data_consumption integer Average Data Consumption (~3 Month) Average of data consumption during the last 3 month f f t \N \N | |
| electronic.phone \N contract_consumption integer % Contract duration Percentage of the contract duration already done. f f t \N \N | |
| electronic.phone \N next_maintenance_date date Next Update The date of the next update f f t \N \N | |
| electronic.phone pre_ordered request_id string Request reference Preorder reference number f t f \N \N | |
| electronic.phone pre_ordered date_pre_order date Date pre-order Date the preorder has been placed f t f \N \N | |
| electronic.phone quotation quotation_id string Quotation reference Quotation reference number f t f \N \N | |
| electronic.phone quotation date_quotation date Date quotation Date the quotation has been placed f t f \N \N | |
| electronic.phone quotation supplier string Supplier Supplier for the ordering process f f f \N \N | |
| electronic.phone quotation supplier_id string Supplier ID Supplier ID f f f \N \N | |
| electronic.phone quotation supplier_email string Supplier Email Supplier contact person email ID f f f \N \N | |
| electronic.phone ordered order_id string Order reference Internal order reference number f t f \N \N | |
| electronic.phone ordered order_date date Order date Date the order has been placed f t f \N \N | |
| electronic.phone active custom_id string Custom ID We automatically generate a unique ID for each asset that you create. You can use this field if you need to track your asset using your own ID f f f \N \N | |
| electronic.phone active serial string Serial Number Serial number of the phone f t f \N \N | |
| electronic.phone active phone_number string Phone number Phone number f t f \N \N | |
| electronic.phone active entry_date date Entry date Date the phone entered in the stock f t f \N \N | |
| electronic.phone active first_user_date date First use date The first day the phone has been used f t f \N \N | |
| electronic.phone inactive inactivity_reason string Inactivity reason Reason why the phone is not active, if applicable. f f f \N \N | |
| electronic.phone broken date_broken date Date broken The date the phone was broken f f f \N \N | |
| electronic.phone returned date_returned date Date returned The date the phone was returned f f f \N \N | |
| electronic.phone stolen date_loss date Date loss The date the phone was stolen f f f \N \N | |
| vehicle.car \N uuid string UUID UUID used for Qr code f f f \N {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| vehicle.car \N make string Make Make of the car (Peugeot, Renault, etc.) f f f \N {"fixed": true, "states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "sold", "stolen"], "required": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N model string Model Model of the car, according to the make f f f \N {"fixed": true, "states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "sold", "stolen"], "required": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "sold", "stolen"], "reference": {"parent": "make"}} | |
| vehicle.car \N variant string Type variant version Variant: (e.g. 1.6 TD, Coupé, etc.) f f f \N {"fixed": true, "states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "sold", "stolen"], "required": ["quotation", "ordered"], "reference": {"parent": "model"}} | |
| vehicle.car \N colour string Colour Colour of the vehicle f f f \N {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "sold", "stolen"], "required": ["pre_ordered", "quotation", "ordered"]} | |
| vehicle.car \N tax_horsepower integer Tax horsepower Tax horsepower of the vehicle f f f \N {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "sold", "stolen"], "required": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N co2_rejection integer CO2 emission Rejection of carbon dioxide (g/km) f f f \N {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "sold", "stolen"], "required": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N license string License plate License plate (example: AB-128-TU) f f f {"mask": "^.+$", "type": "mask", "caseSensitive": false} {"states": ["active", "inactive", "returned", "sold", "stolen"], "required": ["active", "inactive", "returned", "sold", "stolen"], "create_category": "main"} | |
| vehicle.car \N vin string VIN Vehicle Identification Number f f f {"mask": "^[a-zA-Z0-9]{17}$", "type": "mask", "caseSensitive": false} {"states": ["active", "inactive", "returned", "sold", "stolen"], "required": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N type string Type Type of the vehicle (format is PV and CV for Private Vehicle and Commercial vehicle) f f f {"list": ["PV", "CV"], "type": "list", "caseSensitive": false} {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "sold", "stolen"], "required": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N energy string Energy Energy used for the vehicle (format is D, E, H, P for Diesel, Electric, Hybrid and Petrol) f f f {"list": ["D", "E", "H", "P"], "type": "list", "caseSensitive": false} {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "sold", "stolen"], "required": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N mileage_at_delivery integer Mileage at delivery The mileage the car has when delivered, used to calculate contract consumption. f f f {"step": 0.01, "type": "step"} {"states": ["active", "inactive", "returned", "sold", "stolen"], "required": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N mileage integer Mileage Current mileage of the car f f f {"step": 0.01, "type": "step"} {"states": ["active", "inactive", "returned", "sold", "stolen"], "required": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N seats integer Seats Number of seats of the car f f f {"type": "range", "range": [1, 9]} {"states": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N gross_weight integer Gross weight Current weights of the car f f f {"type": "range", "range": [0, 3000]} \N | |
| vehicle.car \N unladen_weight integer Unladen weight Weight of the vehicle when it’s not carrying any passengers, goods or other items f f f \N {"states": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N tank integer Tank capacity Tank capacity f f f \N {"states": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N pool integer Pool Current pool f f f \N {"states": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N parking_place string Parking place Last known position of the car in the parking f f f \N {"states": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N transmission string Transmission type Name of the transmission type, provided by the manufacturer f f f \N {"states": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N certificate_date date Date of certificate Date when the certificate was issued f f f \N {"states": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N first_registration date First registration Date when the registration first occured f f f \N {"states": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N owner_details string Certificate's owner Name and surname of the certificate's owner f f f \N {"states": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N commercial_name string Commercial name Commercial name of the car f f f \N {"states": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N max_laden_mass integer Maximum laden mass Maximum laden mass of the vehicle f f f \N {"states": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N max_laden_mass_rolling integer Max laden mass in service Maximum laden mass of the vehicle in service f f f \N {"states": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N max_whole_laden_mass_rolling integer Max laden mass as a whole Maximum laden mass as a whole in service f f f \N {"states": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N max_authorized_weight integer Maximum authorized weight Maximum authorized weight of the vehicle in service f f f \N {"states": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N national_body_name string National body name Name of the body nationally specified f f f \N {"states": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N cylinder integer Cylinder (cm3) Cylinder of the vehicle's engine f f f \N {"states": ["active", "inactive", "returned", "sold", "stolen"]} | |
| vehicle.car \N contract_type string Contract type The type of the contract to ask for f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| vehicle.car \N contract_payment_period_order string Payment period The payment period for the contract f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| vehicle.car \N mileage_forecast integer Mileage forecast per year The mileage forecast for this car per year f f f \N {"states": ["quotation", "ordered"], "required": ["quotation", "ordered"]} | |
| vehicle.car \N contract_duration_unit string Duration unit The duration unit to use f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| vehicle.car \N contract_duration_value integer Duration value The duration value related to the duration unit used f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| vehicle.car \N contract_mileage_order integer Contract mileage The mileage of the contract f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| vehicle.car \N contract_currency string Contract currency The currency of the contract f f f \N {"states": ["ordered"], "required": ["ordered"]} | |
| vehicle.car \N extras_options string Options Options to order for the car f f f \N {"states": ["pre_ordered", "quotation", "ordered"], "required": ["quotation", "ordered"]} | |
| vehicle.car \N extras_accessories string Accessories Accessories to order for the car f f f \N {"states": ["pre_ordered", "quotation", "ordered"]} | |
| vehicle.car \N contract_service_1 string Contract service 1 The contract service 1 for the order of the car f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| vehicle.car \N service_1_fees integer Service 1 fees Service 1 fees f f f \N {"states": ["ordered"], "required": ["ordered"]} | |
| vehicle.car \N contract_service_2 string Contract service 2 The contract service 2 for the order of the car f f f \N {"states": ["quotation", "ordered"]} | |
| vehicle.car \N service_2_fees integer Service 2 fees The service 2 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| vehicle.car \N contract_service_3 string Contract service 3 The contract service 3 for the order of the car f f f \N {"states": ["quotation", "ordered"]} | |
| vehicle.car \N service_3_fees integer Service 3 fees The service 3 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| vehicle.car \N contract_service_4 string Contract service 4 The contract service 4 for the order of the car f f f \N {"states": ["quotation", "ordered"]} | |
| vehicle.car \N service_4_fees integer Service 4 fees The service 4 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| vehicle.car \N contract_service_5 string Contract service 5 The contract service 5 for the order of the car f f f \N {"states": ["quotation", "ordered"]} | |
| vehicle.car \N service_5_fees integer Service 5 fees The service 5 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| vehicle.car \N comment string Comment Free comment f f f \N {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| vehicle.car \N total_tco integer Total TCO Total tco from start date f f t \N \N | |
| vehicle.car \N avg_tco_per_month integer Average TCO per month Average TCO per month f f t \N \N | |
| vehicle.car \N mileage_inside_contract integer Mileage in current contract Mileage consumption inside the actual contract, calculated by mileage at delivery f f t \N \N | |
| vehicle.car \N mileage_consumption integer % Mileage Mileage consumption of the contract, in percentage f f t \N \N | |
| vehicle.car \N contract_consumption integer % Contract Period consumption of the contract, in percentage f f t \N \N | |
| vehicle.car \N prospect_mileage_consumption integer Prospective Mileage Consumption Estimation of the mileage consumption at the end of the contract f f t \N \N | |
| vehicle.car \N prospect_contract_fulfillment date Prospective Contract Fulfillment Estimation of the date we will reach the mileage specified in the contract f f t \N \N | |
| vehicle.car \N avg_mileage_month integer Average mileage per month Average mileage per month from start date of the contract f f t \N \N | |
| vehicle.car \N contract_start date Contract start Day the contract starts f f t \N \N | |
| vehicle.car \N contract_end date Contract end Day the contract ends f f t \N \N | |
| vehicle.car \N contract_duration string Contract duration Total duration of the contract f f t \N \N | |
| vehicle.car \N months_since_contract_start integer Month Current month from contract start f f t \N \N | |
| vehicle.car \N contract_mileage integer Contract Mileage Total mileage of the contract f f t \N \N | |
| vehicle.car \N contract_payment_period string Contract payment period Payment period of the contract f f t \N \N | |
| vehicle.car \N total_net integer Contract fees net Payment period of the contract f f t \N \N | |
| vehicle.car \N total_gross integer Contract fees gross Payment period of the contract f f t \N \N | |
| vehicle.car \N next_maintenance_date date Next maintenance date The date of the next maintenance for the car f f t \N \N | |
| vehicle.car \N estimated_mileage_at_maintenance_date integer Estimated mileage at next maintenance The date of the next maintenance for the car f f t \N \N | |
| vehicle.car \N next_mileage_for_maintenance integer Mileage for next maintenance The mileage for the next maintenance f f t \N \N | |
| vehicle.car \N date_maintenance_mileage_reached date Estimated date when maintenance mileage reached The estimated date when the maintenance mileage will be reached f f t \N \N | |
| vehicle.car \N next_control_date date Next control date The date when the next control will happen f f t \N \N | |
| vehicle.car \N estimated_mileage_at_control_date integer Estimated mileage at next control The date of the next maintenance for the car f f t \N \N | |
| vehicle.car pre_ordered pre_order_id string Request reference Preorder reference number f t f \N \N | |
| vehicle.car pre_ordered date_pre_order date Date request Date the request has been placed f t f \N \N | |
| vehicle.car quotation quotation_id string Quotation reference Quotation reference number f t f \N \N | |
| vehicle.car quotation date_quotation date Date quotation Date the quotation has been placed f t f \N \N | |
| vehicle.car quotation supplier string Supplier Supplier for the ordering process f f f \N \N | |
| vehicle.car quotation supplier_id string Supplier ID Supplier ID f f f \N \N | |
| vehicle.car quotation supplier_email string Supplier Email Supplier contact person email ID f f f \N \N | |
| vehicle.car ordered order_id string Order reference Internal order reference number f t f \N \N | |
| vehicle.car ordered order_date date Order date Date the order has been placed f t f \N \N | |
| vehicle.car ordered forecast_delivery_date date Forecast delivery date Forecast date in which the asset will be delivered f t f \N \N | |
| vehicle.car ordered delivery_place string Delivery place Delivery place or garage to get the vehicle f f f \N \N | |
| vehicle.car active custom_id string Custom ID We automatically generate a unique ID for each asset that you create. You can use this field if you need to track your asset using your own ID f f f \N \N | |
| vehicle.car active entry_date date Entry date Date the vehicle entered in the fleet f t f \N \N | |
| vehicle.car active registration_date date Registration date Date the vehicle has been registered f t f \N \N | |
| vehicle.car inactive reason string Last reason inactivity Reason why the car is not active. f f f \N \N | |
| vehicle.car sold date_sold date Date sold The date the car was sold f f f \N \N | |
| vehicle.car returned date_returned date Date returned The date the car was returned f f f \N \N | |
| vehicle.car stolen date_loss date Date loss The date the car was stolen f f f \N \N | |
| generic.generic \N uuid string UUID UUID used for Qr code f f f \N {"fixed": true, "states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| generic.generic \N brand string Brand Brand of the asset f f f \N {"fixed": true, "states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"], "required": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| generic.generic \N model string Model Model of the printer. (related to the brand) f f f \N {"fixed": true, "states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"], "required": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"], "reference": {"parent": "brand"}} | |
| generic.generic \N category string Category Category of the asset f f f \N {"fixed": true, "states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"], "required": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| generic.generic \N colour string Colour Colour of the asset f f f \N {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "sold", "stolen"], "required": ["pre_ordered", "quotation", "ordered"]} | |
| electronic.printer active custom_id string Custom ID We automatically generate a unique ID for each asset that you create. You can use this field if you need to track your asset using your own ID f f f \N \N | |
| generic.generic \N energy string Energy Type of energy f f f {"list": ["EL", "SO", "MO", "MA", "OTHER"], "type": "list", "caseSensitive": false} {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "sold", "stolen"]} | |
| generic.generic \N contract_order_supplier string Contract supplier The type of the contract to ask for f f f \N {"states": ["ordered"], "required": ["ordered"]} | |
| generic.generic \N contract_type string Contract type The type of the contract to ask for f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| generic.generic \N contract_payment_period_order string Payment period The payment period for the contract f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| generic.generic \N contract_duration_unit string Duration unit The duration unit to use f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| generic.generic \N contract_duration_value integer Duration value The duration value related to the duration unit used f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| generic.generic \N contract_currency string Contract currency The currency of the contract f f f \N {"states": ["ordered"], "required": ["ordered"]} | |
| generic.generic \N contract_service_1 string Contract service 1 The contract service 1 for the order of the printer f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| generic.generic \N service_1_fees integer Service 1 fees Service 1 fees f f f \N {"states": ["ordered"], "required": ["ordered"]} | |
| generic.generic \N contract_service_2 string Contract service 2 The contract service 2 for the order of the printer f f f \N {"states": ["quotation", "ordered"]} | |
| generic.generic \N service_2_fees integer Service 2 fees The service 2 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| generic.generic \N contract_service_3 string Contract service 3 The contract service 3 for the order of the printer f f f \N {"states": ["quotation", "ordered"]} | |
| generic.generic \N service_3_fees integer Service 3 fees The service 3 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| generic.generic \N contract_service_4 string Contract service 4 The contract service 4 for the order of the printer f f f \N {"states": ["quotation", "ordered"]} | |
| generic.generic \N service_4_fees integer Service 4 fees The service 4 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| generic.generic \N contract_service_5 string Contract service 5 The contract service 5 for the order of the printer f f f \N {"states": ["quotation", "ordered"]} | |
| generic.generic \N service_5_fees integer Service 5 fees The service 5 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| generic.generic \N comment string Comment Free comment f f f \N {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| generic.generic \N total_tco integer Total TCO Total tco from start date f f t \N \N | |
| generic.generic \N avg_tco_per_month integer Average TCO per month Average TCO per month f f t \N \N | |
| generic.generic \N contract_start date Contract start Day the contract starts f f t \N \N | |
| generic.generic \N contract_end date Contract end Day the contract ends f f t \N \N | |
| generic.generic \N contract_consumption integer Contract consumption Percentage of contract period consumed f f t \N \N | |
| generic.generic pre_ordered request_id string Request reference Preorder reference number f t f \N \N | |
| generic.generic pre_ordered date_pre_order date Date pre-order Date the preorder has been placed f t f \N \N | |
| generic.generic quotation quotation_id string Quotation reference Quotation reference number f t f \N \N | |
| generic.generic quotation date_quotation date Date quotation Date the quotation has been placed f t f \N \N | |
| generic.generic quotation supplier string Supplier Supplier for the ordering process f f f \N \N | |
| generic.generic quotation supplier_id string Supplier ID Supplier ID f f f \N \N | |
| generic.generic quotation supplier_email string Supplier Email Supplier contact person email ID f f f \N \N | |
| generic.generic ordered order_id string Order reference Internal order reference number f t f \N \N | |
| generic.generic ordered order_date date Order date Date the order has been placed f t f \N \N | |
| generic.generic active reference string Reference Reference of the generic asset must be unique f t f \N \N | |
| generic.generic active entry_date date Entry date Date the generic asset entered in the stock f t f \N \N | |
| generic.generic active first_user_date date First use date The first day the generic asset has been used f t f \N \N | |
| generic.generic inactive inactivity_reason string Inactivity reason Reason why the generic asset is not active, if applicable. f f f \N \N | |
| generic.generic broken date_broken date Date broken The date the generic asset was broken f f f \N \N | |
| generic.generic returned date_returned date Date returned The date the generic asset was returned f f f \N \N | |
| generic.generic stolen date_loss date Date loss The date the generic asset was stolen f f f \N \N | |
| electronic.printer \N uuid string UUID UUID used for Qr code f f f \N {"fixed": true, "states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.printer \N brand string Brand Brand of the printer (Samsung, Apple, etc.) f f f \N {"fixed": true, "states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"], "required": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.printer \N model string Model Model of the printer. (related to the brand) f f f \N {"fixed": true, "states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"], "required": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"], "reference": {"parent": "brand"}} | |
| electronic.printer \N type string Type Type of the printer. (e.g Laser/Inkjet) f f f \N {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"], "required": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.printer active serial string Serial Number Serial number of the printer f t f \N \N | |
| electronic.printer \N usage string Usage (Multi / Single function) The usage of the printer (Multifunction / Singlefunction) f f f \N {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"], "required": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.printer \N card_slot boolean Card slot Card slot f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.printer \N wifi boolean Wifi The printer has wifi included f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.printer \N usb boolean USB The printer has a USB port included f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.printer \N printing_speed integer Printing speed (ppm) The printing speed, in pages per minutes f f f \N {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.printer \N paper_trays integer Paper trays Number of paper trays f f f \N {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.printer \N max_paper_format dimension Max paper format (width x height mm) Max paper format (ex : 297 x 432 mm) f f f {"type": "range", "range": [1, 9999]} {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.printer \N max_resolution dimension Max resolution (width x height dpi) Max resolution (ex : 600 x 600 dpi) f f f {"type": "range", "range": [1, 9999]} {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.printer \N contract_order_supplier string Contract supplier The type of the contract to ask for f f f \N {"states": ["ordered"], "required": ["ordered"]} | |
| electronic.printer \N contract_type string Contract type The type of the contract to ask for f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| electronic.printer \N contract_payment_period_order string Payment period The payment period for the contract f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| electronic.printer \N copies_contract_order integer Number of copies The number of copies to use for the contract f f f \N {"states": ["quotation", "ordered"], "required": ["quotation", "ordered"]} | |
| electronic.printer \N contract_duration_unit string Duration unit The duration unit to use f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| electronic.printer \N contract_duration_value integer Duration value The duration value related to the duration unit used f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| electronic.printer \N contract_currency string Contract currency The currency of the contract f f f \N {"states": ["ordered"], "required": ["ordered"]} | |
| electronic.printer \N contract_service_1 string Contract service 1 The contract service 1 for the order of the printer f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| electronic.printer \N service_1_fees integer Service 1 fees Service 1 fees f f f \N {"states": ["ordered"], "required": ["ordered"]} | |
| electronic.printer \N contract_service_2 string Contract service 2 The contract service 2 for the order of the printer f f f \N {"states": ["quotation", "ordered"]} | |
| electronic.printer \N service_2_fees integer Service 2 fees The service 2 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| electronic.printer \N contract_service_3 string Contract service 3 The contract service 3 for the order of the printer f f f \N {"states": ["quotation", "ordered"]} | |
| electronic.printer \N service_3_fees integer Service 3 fees The service 3 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| electronic.printer \N contract_service_4 string Contract service 4 The contract service 4 for the order of the printer f f f \N {"states": ["quotation", "ordered"]} | |
| electronic.printer \N service_4_fees integer Service 4 fees The service 4 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| electronic.printer \N contract_service_5 string Contract service 5 The contract service 5 for the order of the printer f f f \N {"states": ["quotation", "ordered"]} | |
| electronic.printer \N service_5_fees integer Service 5 fees The service 5 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| electronic.printer \N comment string Comment Free comment f f f \N {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.printer \N total_tco integer Total TCO Total tco from start date f f t \N \N | |
| electronic.printer \N avg_tco_per_month integer Average TCO per month Average TCO per month f f t \N \N | |
| electronic.printer \N contract_start date Contract start Day the contract starts f f t \N \N | |
| electronic.printer \N contract_end date Contract end Day the contract ends f f t \N \N | |
| electronic.printer \N avg_copy_consumption integer Average Copies Consumption (~3 Month) Average of copies consumption during the last 3 month f f t \N \N | |
| electronic.printer \N contract_consumption integer % Contract duration Percentage of the contract duration already done. f f t \N \N | |
| electronic.printer \N next_maintenance_date date Next Update The date of the next update f f t \N \N | |
| electronic.printer pre_ordered request_id string Request reference Preorder reference number f t f \N \N | |
| electronic.printer pre_ordered date_pre_order date Date pre-order Date the preorder has been placed f t f \N \N | |
| electronic.printer quotation quotation_id string Quotation reference Quotation reference number f t f \N \N | |
| electronic.printer quotation date_quotation date Date quotation Date the quotation has been placed f t f \N \N | |
| electronic.printer quotation supplier string Supplier Supplier for the ordering process f f f \N \N | |
| electronic.printer quotation supplier_id string Supplier ID Supplier ID f f f \N \N | |
| electronic.printer quotation supplier_email string Supplier Email Supplier contact person email ID f f f \N \N | |
| electronic.printer ordered order_id string Order reference Internal order reference number f t f \N \N | |
| electronic.printer ordered order_date date Order date Date the order has been placed f t f \N \N | |
| electronic.printer active first_user_date date First use date The first day the printer has been used f t f \N \N | |
| electronic.printer inactive inactivity_reason string Inactivity reason Reason why the printer is not active, if applicable. f f f \N \N | |
| electronic.printer broken date_broken date Date broken The date the printer was broken f f f \N \N | |
| electronic.printer returned date_returned date Date returned The date the printer was returned f f f \N \N | |
| electronic.printer stolen date_loss date Date loss The date the printer was stolen f f f \N \N | |
| electronic.computer \N uuid string UUID UUID used for Qr code f f f \N {"fixed": true, "states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.computer \N brand string Brand Brand of the computer (Samsung, Apple, etc.) f f f \N {"fixed": true, "states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"], "required": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.computer \N model string Model Model of the computer. (related to the brand) f f f \N {"fixed": true, "states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"], "required": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"], "reference": {"parent": "brand"}} | |
| electronic.computer \N colour string Colour Colour of the computer. (related to the brand) f f f \N {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"], "required": ["pre_ordered", "quotation", "ordered"], "reference": {"parent": "model"}} | |
| electronic.computer \N computer_type string Computer type Type of computer (Laptop / Desktop) f f f {"list": ["Laptop", "Desktop"], "type": "list", "caseSensitive": false} {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.computer \N mac_address string MAC Address The MAC Address of the computer, used to identify it. f f f {"mask": "^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$", "type": "mask", "caseSensitive": false} {"states": ["active", "inactive", "returned", "broken", "stolen"], "required": ["active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.computer \N display_type string Display Type Technology used for the display f f f {"list": ["LCD", "LED", "VGA", "Retina"], "type": "list", "caseSensitive": false} {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.computer \N touch_screen_type string Touch Screen Type The technology used for the touch screen, if applicable f f f {"list": ["Capacitive", "Resistive", "N/A"], "type": "list", "caseSensitive": false} {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.computer \N screen_resolution dimension Resolution The width in pixel of the screen f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.computer \N screen_size double Screen size Size of the screen (in inches) f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.computer \N os string Operating System The operating system of the computer (Windows, OSX, Linux) f f f {"list": ["windows", "osx", "linux"], "type": "list", "caseSensitive": false} {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.computer \N os_version string OS Version The operating system version f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.computer \N chipset string Chipset Embedded chipsets used on the computer f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.computer \N cpu string CPU CPU (Central Processing Unit) - otherwise known as a processor f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.computer \N gpu string GPU The GPU (Graphics Processing Unit) f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.computer \N internal_memory integer Internal Internal memory f f f \N {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.computer \N keyboard string Keyboard type Keyboard layout (AZERTY, QWERTY, QWERTZ) f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.computer \N camera boolean Camera The computer has a camera included f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.computer \N wifi boolean Wifi The computer has wifi included f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.computer \N bluetooth boolean Bluetooth The computer has bluetooth included f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.computer \N nb_usb integer Nb of USB ports Number of USB ports f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.computer \N hdmi boolean HDMI HDMI included f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.computer \N vga boolean VGA VGA included f f f \N {"states": ["active", "inactive", "returned", "stolen", "broken"]} | |
| electronic.computer \N contract_order_supplier string Contract supplier The type of the contract to ask for f f f \N {"states": ["ordered"], "required": ["ordered"]} | |
| electronic.computer \N contract_type string Contract type The type of the contract to ask for f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| electronic.computer \N contract_payment_period_order string Payment period The payment period for the contract f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| electronic.computer \N contract_duration_unit string Duration unit The duration unit to use f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| electronic.computer \N contract_duration_value integer Duration value The duration value related to the duration unit used f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| electronic.computer \N contract_currency string Contract currency The currency of the contract f f f \N {"states": ["ordered"], "required": ["ordered"]} | |
| electronic.computer \N extras_options string Options Options to order for the car f f f \N {"states": ["pre_ordered", "quotation", "ordered"]} | |
| electronic.computer \N extras_accessories string Accessories Accessories to order for the car f f f \N {"states": ["pre_ordered", "quotation", "ordered"]} | |
| electronic.computer \N contract_service_1 string Contract service 1 The contract service 1 for the order of the car f f f \N {"states": ["quotation", "ordered"], "required": ["ordered"]} | |
| electronic.computer \N service_1_fees integer Service 1 fees Service 1 fees f f f \N {"states": ["ordered"], "required": ["ordered"]} | |
| electronic.computer \N contract_service_2 string Contract service 2 The contract service 2 for the order of the car f f f \N {"states": ["quotation", "ordered"]} | |
| electronic.computer \N service_2_fees integer Service 2 fees The service 2 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| electronic.computer \N contract_service_3 string Contract service 3 The contract service 3 for the order of the car f f f \N {"states": ["quotation", "ordered"]} | |
| electronic.computer \N service_3_fees integer Service 3 fees The service 3 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| electronic.computer \N contract_service_4 string Contract service 4 The contract service 4 for the order of the car f f f \N {"states": ["quotation", "ordered"]} | |
| electronic.computer \N service_4_fees integer Service 4 fees The service 4 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| electronic.computer \N contract_service_5 string Contract service 5 The contract service 5 for the order of the car f f f \N {"states": ["quotation", "ordered"]} | |
| electronic.computer \N service_5_fees integer Service 5 fees The service 5 fees in the currency specified f f f \N {"states": ["ordered"]} | |
| electronic.computer \N comment string Comment Free comment f f f \N {"states": ["pre_ordered", "quotation", "ordered", "active", "inactive", "returned", "broken", "stolen"]} | |
| electronic.computer \N total_tco integer Total TCO Total tco from start date f f t \N \N | |
| electronic.computer \N avg_tco_per_month integer Average TCO per month Average TCO per month f f t \N \N | |
| electronic.computer \N contract_start date Contract start Day the contract starts f f t \N \N | |
| electronic.computer \N contract_end date Contract end Day the contract ends f f t \N \N | |
| electronic.computer \N contract_consumption integer % Contract duration Percentage of the contract duration already done. f f t \N \N | |
| electronic.computer \N next_maintenance_date date Next Update The date of the next update f f t \N \N | |
| electronic.computer pre_ordered request_id string Request reference Preorder reference number f t f \N \N | |
| electronic.computer pre_ordered date_pre_order date Date pre-order Date the preorder has been placed f t f \N \N | |
| electronic.computer quotation quotation_id string Quotation reference Quotation reference number f t f \N \N | |
| electronic.computer quotation date_quotation date Date quotation Date the quotation has been placed f t f \N \N | |
| electronic.computer quotation supplier string Supplier Supplier for the ordering process f f f \N \N | |
| electronic.computer quotation supplier_id string Supplier ID Supplier ID f f f \N \N | |
| electronic.computer quotation supplier_email string Supplier Email Supplier contact person email ID f f f \N \N | |
| electronic.computer ordered order_id string Order reference Internal order reference number f t f \N \N | |
| electronic.computer ordered order_date date Order date Date the order has been placed f t f \N \N | |
| electronic.computer active custom_id string Custom ID We automatically generate a unique ID for each asset that you create. You can use this field if you need to track your asset using your own ID f f f \N \N | |
| electronic.computer active serial string Serial Number Serial number of the computer f t f \N \N | |
| electronic.computer active entry_date date Entry date Date the computer entered in the stock f t f \N \N | |
| electronic.computer active first_user_date date First use date The first day the computer has been used f t f \N \N | |
| electronic.computer inactive inactivity_reason string Inactivity reason Reason why the computer is not active, if applicable. f f f \N \N | |
| electronic.computer broken date_broken date Date broken The date the computer was broken f f f \N \N | |
| electronic.computer returned date_returned date Date returned The date the computer was returned f f f \N \N | |
| electronic.computer stolen date_loss date Date loss The date the computer was stolen f f f \N \N | |
| \. | |
| -- | |
| -- Data for Name: authentication_tokens; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY authentication_tokens (token, expiring, "userID", source) FROM stdin; | |
| \. | |
| -- | |
| -- Name: cardid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('cardid', 122, true); | |
| -- | |
| -- Data for Name: cards; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY cards (id, type, supplier, card_no, period, active, serial_number, attributes) FROM stdin; | |
| 22 fuel total 2435 ["2015-01-01 09:00:00+00","2016-01-01 09:00:00+00"] f 11134456789 \N | |
| 122 fuel shell 3456 ["2016-01-01 09:00:00+00","2017-01-01 09:00:00+00"] t 123456789094 \N | |
| \. | |
| -- | |
| -- Data for Name: cards_mapping; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY cards_mapping (card_id, entity_id) FROM stdin; | |
| 22 102 | |
| 122 202 | |
| \. | |
| -- | |
| -- Name: cards_mapping_card_id_seq; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('cards_mapping_card_id_seq', 1, false); | |
| -- | |
| -- Name: consumptionid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('consumptionid', 3026, true); | |
| -- | |
| -- Data for Name: consumptions; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY consumptions (id, asset_id, source, source_id, date, value, type, group_type, unit, confidence) FROM stdin; | |
| 26 14602 user 4 2015-09-06 17:31:50+01 18.00 Calls \N Minutes 75 | |
| 126 14602 user 4 2015-10-04 17:31:50+01 15.00 Calls \N Minutes 75 | |
| 226 14602 user 4 2015-11-07 17:31:50+00 42.00 Calls \N Minutes 75 | |
| 326 14602 user 4 2015-12-05 17:31:50+00 13.00 Calls \N Minutes 75 | |
| 426 14602 user 4 2016-01-04 17:31:50+00 15.00 Calls \N Minutes 75 | |
| 526 14602 user 4 2016-02-06 17:31:50+00 12.00 Calls \N Minutes 75 | |
| 626 14602 user 4 2016-03-09 17:31:50+00 33.00 Calls \N Minutes 75 | |
| 726 14602 user 4 2016-04-08 17:31:50+01 38.00 Calls \N Minutes 75 | |
| 826 14602 user 4 2016-05-02 17:31:50+01 57.00 Calls \N Minutes 75 | |
| 926 14702 user 4 2015-01-19 17:31:50+00 18.00 Calls \N Minutes 75 | |
| 1026 14702 user 4 2015-09-09 17:31:50+01 15.00 Calls \N Minutes 75 | |
| 1126 14702 user 4 2014-10-27 17:31:50+00 42.00 International calls \N Minutes 75 | |
| 1226 14702 user 4 2015-03-30 17:31:50+01 13.00 International calls \N Minutes 75 | |
| 1326 14702 user 4 2015-02-07 17:31:50+00 15.00 Calls \N Minutes 75 | |
| 1426 14702 user 4 2015-09-10 17:31:50+01 12.00 Calls \N Minutes 75 | |
| 1526 14702 user 4 2015-06-24 17:31:50+01 33.00 MMS \N Unit 75 | |
| 1626 14702 user 4 2014-11-02 17:31:50+00 38.00 MMS \N Unit 75 | |
| 1726 14702 user 4 2015-07-24 17:31:50+01 57.00 Internalional SMS/MMS \N Unit 75 | |
| 1826 14702 user 4 2015-08-06 17:31:50+01 48.00 Internalional SMS/MMS \N Unit 75 | |
| 1926 14702 user 4 2015-10-29 17:31:50+00 20.00 Data \N Mb 75 | |
| 2026 14702 user 4 2015-09-17 17:31:50+01 18.00 Data \N Mb 75 | |
| 2126 14702 user 4 2015-03-01 17:31:50+00 38.00 International data \N Mb 75 | |
| 2226 14702 user 4 2015-07-18 17:31:50+01 44.00 International data \N Mb 75 | |
| 2326 14702 user 4 2014-11-05 17:31:50+00 29.00 International data \N Mb 75 | |
| 2426 14702 user 4 2015-10-03 17:31:50+01 37.00 Data \N Mb 75 | |
| 2526 14702 user 4 2015-05-12 17:31:50+01 33.00 Data \N Mb 75 | |
| 2626 14702 user 4 2015-01-26 17:31:50+00 30.00 International data \N Mb 75 | |
| 2726 14702 user 4 2015-05-23 17:31:50+01 20.00 International data \N Mb 75 | |
| 2826 14702 user 4 2014-11-10 17:31:50+00 35.00 International data \N Mb 75 | |
| 2926 14702 user 4 2014-12-07 17:31:50+00 19.00 Data \N Mb 75 | |
| 3026 14702 user 4 2014-11-26 17:31:50+00 54.00 Data \N Mb 75 | |
| \. | |
| -- | |
| -- Name: contactid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('contactid', 214, true); | |
| -- | |
| -- Data for Name: contacts; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY contacts (id, first_name, last_name, parent, address, notes, created, updated, search) FROM stdin; | |
| 14 Lara Croft 9 Coworking Space 1 She is the adventurer one. 2016-09-26 09:40:09.499066 2016-09-26 09:40:09.499066 '1':5 'adventur':9 'cowork':3 'croft':2 'lara':1 'one':10 'space':4 | |
| 114 Diana Hance 9 Coworking Space 2 She saved my lots of troubles with assets. 2016-09-26 09:40:09.500455 2016-09-26 09:40:09.500455 '2':5 'asset':13 'cowork':3 'diana':1 'hanc':2 'lot':9 'save':7 'space':4 'troubl':11 | |
| 214 Inge Marlen 109 In a train between UK and France She is always travelling. 2016-09-26 09:40:09.501552 2016-09-26 09:40:09.501552 'alway':12 'franc':9 'ing':1 'marlen':2 'train':5 'travel':13 'uk':7 | |
| \. | |
| -- | |
| -- Data for Name: contract_asset; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY contract_asset (contract_id, asset_id, nextcheck) FROM stdin; | |
| 115 202 2020-12-31 20:40:00 | |
| 215 302 2020-12-31 20:40:00 | |
| 315 402 2020-12-31 20:40:00 | |
| 415 502 2020-12-31 20:40:00 | |
| 515 602 2020-12-31 20:40:00 | |
| 615 702 2020-12-31 20:40:00 | |
| 715 802 2020-12-31 20:40:00 | |
| 815 2702 2020-12-31 20:40:00 | |
| 915 902 2020-12-31 20:40:00 | |
| 1015 1102 2020-12-31 20:40:00 | |
| 1115 1202 2020-12-31 20:40:00 | |
| 1215 1302 2020-12-31 20:40:00 | |
| 1315 1402 2020-12-31 20:40:00 | |
| 1415 1502 2020-12-31 20:40:00 | |
| 1515 10802 2020-12-31 20:40:00 | |
| 1615 1602 2020-12-31 20:40:00 | |
| 1715 1702 2020-12-31 20:40:00 | |
| 1815 1802 2020-12-31 20:40:00 | |
| 1915 1002 2020-12-31 20:40:00 | |
| 2015 2402 2020-12-31 20:40:00 | |
| 2115 2602 2020-12-31 20:40:00 | |
| 2215 2302 2020-12-31 20:40:00 | |
| 2315 2802 2020-12-31 20:40:00 | |
| 2415 2002 2020-12-31 20:40:00 | |
| 2515 2902 2020-12-31 20:40:00 | |
| 2615 3102 2020-12-31 20:40:00 | |
| 3815 3202 2020-12-31 20:40:00 | |
| 3915 2502 2020-12-31 20:40:00 | |
| 4015 3402 2020-12-31 20:40:00 | |
| 4115 3502 2020-12-31 20:40:00 | |
| 4215 3702 2020-12-31 20:40:00 | |
| 6415 4202 2020-12-31 20:40:00 | |
| 6515 4602 2020-12-31 20:40:00 | |
| 6615 4402 2020-12-31 20:40:00 | |
| 6715 4502 2020-12-31 20:40:00 | |
| 6815 4802 2020-12-31 20:40:00 | |
| 6915 4702 2020-12-31 20:40:00 | |
| 7015 4902 2020-12-31 20:40:00 | |
| 7115 5502 2020-12-31 20:40:00 | |
| 7215 4002 2020-12-31 20:40:00 | |
| 7315 4102 2020-12-31 20:40:00 | |
| 15 4202 2020-12-31 20:40:00 | |
| 2715 18402 2020-12-31 20:40:00 | |
| 2815 14602 2020-12-31 20:40:00 | |
| 2915 15102 2020-12-31 20:40:00 | |
| 3015 15302 2020-12-31 20:40:00 | |
| 3115 14502 2020-12-31 20:40:00 | |
| 3215 14702 2020-12-31 20:40:00 | |
| 3315 15602 2020-12-31 20:40:00 | |
| 3415 15702 2020-12-31 20:40:00 | |
| 3515 16502 2020-12-31 20:40:00 | |
| 3615 15502 2020-12-31 20:40:00 | |
| 3715 16602 2020-12-31 20:40:00 | |
| 4315 17102 2020-12-31 20:40:00 | |
| 4415 16702 2020-12-31 20:40:00 | |
| 4515 16102 2020-12-31 20:40:00 | |
| 4615 16402 2020-12-31 20:40:00 | |
| 4715 17202 2020-12-31 20:40:00 | |
| 4815 16302 2020-12-31 20:40:00 | |
| 4915 17502 2020-12-31 20:40:00 | |
| 5015 17802 2020-12-31 20:40:00 | |
| 5115 17302 2020-12-31 20:40:00 | |
| 5215 17702 2020-12-31 20:40:00 | |
| 5315 17602 2020-12-31 20:40:00 | |
| 5415 14202 2020-12-31 20:40:00 | |
| 5515 18302 2020-12-31 20:40:00 | |
| 5615 14002 2020-12-31 20:40:00 | |
| 5715 17402 2020-12-31 20:40:00 | |
| 5815 18502 2020-12-31 20:40:00 | |
| 5915 14402 2020-12-31 20:40:00 | |
| 6015 18002 2020-12-31 20:40:00 | |
| 6115 18102 2020-12-31 20:40:00 | |
| 6215 14802 2020-12-31 20:40:00 | |
| 6315 14902 2020-12-31 20:40:00 | |
| \. | |
| -- | |
| -- Data for Name: contract_changes; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY contract_changes (id, contract_id, title, description, created, changes) FROM stdin; | |
| 16 15 Renewal Maintenance Add 1 year span to contract 2016-01-03 00:00:00 {"duration": {"unit": "month", "number": 12}} | |
| 116 15 Renewal Maintenance Add 1 year span to contract 2017-01-03 00:00:00 {"duration": {"unit": "month", "number": 12}} | |
| 216 315 Renewal Maintenance Add 1 year span to contract 2016-01-03 00:00:00 {"duration": {"unit": "month", "number": 12}} | |
| 316 315 Renewal Maintenance Add 1 year span to contract 2017-01-03 00:00:00 {"duration": {"unit": "month", "number": 12}} | |
| 416 415 Renewal Maintenance Add 1 year span to contract 2016-01-03 00:00:00 {"duration": {"unit": "month", "number": 12}} | |
| \. | |
| -- | |
| -- Data for Name: contract_services; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY contract_services (id, contract_id, type, title, description, created, updated, deleted, gross_price, net_price, vat, attributes) FROM stdin; | |
| 18 15 maintenance Maintenance Maintenance of the car 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 130.000000 156.780000 20.6000000000000014 \N | |
| 118 15 financial Financial Financial 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 110.000000 132.660000 20.6000000000000014 \N | |
| 218 15 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 318 15 tyres Tyres Replacement 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 120.000000 144.720000 20.6000000000000014 \N | |
| 418 115 maintenance Maintenance Maintenance 2015-03-10 00:00:00 2015-03-10 00:00:00 \N 130.000000 156.780000 20.6000000000000014 \N | |
| 518 115 financial Financial Financial 2015-03-10 00:00:00 2015-03-10 00:00:00 \N 110.000000 132.660000 20.6000000000000014 \N | |
| 618 115 assistance Assistance Assistance 2015-03-10 00:00:00 2015-03-10 00:00:00 \N 150.000000 180.900000 20.6000000000000014 \N | |
| 718 915 tyres Tyres replacement Tyres replacement (4 tyres max) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 120.000000 144.720000 20.6000000000000014 \N | |
| 818 915 maintenance Windshield Maintenance Windshield Maintenance (protection against impacts included) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 918 915 financial Wheel Maintenance Wheel Maintenance and wheel cover replacement 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 1018 915 assistance Seat Maintenance Seat Maintenance (electric seats included) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 30.000000 36.180000 20.6000000000000014 \N | |
| 1118 915 insurance Car Maintenance Car Maintenance (generic car maintenance) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 30.000000 36.180000 20.6000000000000014 \N | |
| 1218 1015 maintenance Window Maintenance Window Maintenance (electric window system included) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 65.000000 78.390000 20.6000000000000014 \N | |
| 1318 1015 financial Boot Maintenance Boot Maintenance (electric socked included) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 60.000000 72.360000 20.6000000000000014 \N | |
| 1418 1015 tyres Door lock Maintenance Door lock Maintenance (cover against electric default) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 35.000000 42.210000 20.6000000000000014 \N | |
| 1518 1115 financial Rear Window Maintenance Rear Window Maintenance (protection against impacts included) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 25.000000 30.150000 20.6000000000000014 \N | |
| 1618 1115 tyres indicator light Maintenance indicator light Maintenance (electric lights replacement) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 1718 1215 financial Hubcap Maintenance Hubcap Maintenance (replacement every 6 months) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 1818 1215 replacement Outside Mirror Maintenance Outside Mirror Maintenance (breakage cover, electric motor check) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 25.000000 30.150000 20.6000000000000014 \N | |
| 1918 1215 maintenance Calandre Maintenance Calandre Maintenance (replacement every 6 months) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 55.000000 66.330000 20.6000000000000014 \N | |
| 2018 1215 insurance Aerial Maintenance Aerial Maintenance (filter replacement every 6 months) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 25.000000 30.150000 20.6000000000000014 \N | |
| 2118 15 insurance Aerial Maintenance Aerial Maintenance (filter replacement every 6 months) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 25.000000 30.150000 20.6000000000000014 \N | |
| 2218 15 assistance Seat Maintenance Seat Maintenance (electric seats included) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 30.000000 36.180000 20.6000000000000014 \N | |
| 2318 15 insurance Car Maintenance Car Maintenance (generic car maintenance) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 30.000000 36.180000 20.6000000000000014 \N | |
| 2418 15 maintenance Window Maintenance Window Maintenance (electric window system included) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 65.000000 78.390000 20.6000000000000014 \N | |
| 2518 215 maintenance Maintenance Maintenance of the car 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 130.000000 156.780000 20.6000000000000014 \N | |
| 2618 215 financial Financial Financial 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 110.000000 132.660000 20.6000000000000014 \N | |
| 2718 215 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 2818 315 maintenance Maintenance Maintenance of the car 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 120.000000 144.720000 20.6000000000000014 \N | |
| 2918 315 financial Financial Financial 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 110.000000 132.660000 20.6000000000000014 \N | |
| 3018 315 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 3118 415 maintenance Maintenance Maintenance of the car 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 120.000000 144.720000 20.6000000000000014 \N | |
| 3218 415 financial Financial Financial 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 110.000000 132.660000 20.6000000000000014 \N | |
| 3318 415 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 3418 515 maintenance Maintenance Maintenance of the car 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 120.000000 144.720000 20.6000000000000014 \N | |
| 3518 515 financial Financial Financial 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 110.000000 132.660000 20.6000000000000014 \N | |
| 3618 515 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 3718 1915 tyres indicator light Maintenance indicator light Maintenance (electric lights replacement) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 3818 1915 financial Hubcap Maintenance Hubcap Maintenance (replacement every 6 months) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 3918 1915 replacement Outside Mirror Maintenance Outside Mirror Maintenance (breakage cover, electric motor check) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 25.000000 30.150000 20.6000000000000014 \N | |
| 4018 2015 maintenance Maintenance Maintenance of the car 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 120.000000 144.720000 20.6000000000000014 \N | |
| 4118 2015 financial Financial Financial 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 110.000000 132.660000 20.6000000000000014 \N | |
| 4218 2015 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 4318 2315 tyres indicator light Maintenance indicator light Maintenance (electric lights replacement) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 4418 2315 financial Hubcap Maintenance Hubcap Maintenance (replacement every 6 months) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 4518 1715 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 4618 1715 tyres indicator light Maintenance indicator light Maintenance (electric lights replacement) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 4718 1815 assistance Seat Maintenance Seat Maintenance (electric seats included) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 30.000000 36.180000 20.6000000000000014 \N | |
| 4818 1815 insurance Car Maintenance Car Maintenance (generic car maintenance) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 30.000000 36.180000 20.6000000000000014 \N | |
| 4918 1815 maintenance Window Maintenance Window Maintenance (electric window system included) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 65.000000 78.390000 20.6000000000000014 \N | |
| 5018 1815 financial Boot Maintenance Boot Maintenance (electric socked included) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 60.000000 72.360000 20.6000000000000014 \N | |
| 5118 1315 financial Hubcap Maintenance Hubcap Maintenance (replacement every 6 months) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 5218 1315 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 5318 1315 tyres indicator light Maintenance indicator light Maintenance (electric lights replacement) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 5418 1315 assistance Seat Maintenance Seat Maintenance (electric seats included) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 30.000000 36.180000 20.6000000000000014 \N | |
| 5518 1415 maintenance Maintenance Maintenance of the car 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 120.000000 144.720000 20.6000000000000014 \N | |
| 5618 1415 financial Financial Financial 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 110.000000 132.660000 20.6000000000000014 \N | |
| 5718 1415 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 5818 1515 financial Hubcap Maintenance Hubcap Maintenance (replacement every 6 months) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 5918 1515 replacement Outside Mirror Maintenance Outside Mirror Maintenance (breakage cover, electric motor check) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 25.000000 30.150000 20.6000000000000014 \N | |
| 6018 1515 maintenance Maintenance Maintenance of the car 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 120.000000 144.720000 20.6000000000000014 \N | |
| 6118 1615 maintenance Window Maintenance Window Maintenance (electric window system included) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 65.000000 78.390000 20.6000000000000014 \N | |
| 6218 1615 financial Boot Maintenance Boot Maintenance (electric socked included) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 60.000000 72.360000 20.6000000000000014 \N | |
| 6318 2115 maintenance Window Maintenance Window Maintenance (electric window system included) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 65.000000 78.390000 20.6000000000000014 \N | |
| 6418 2115 financial Boot Maintenance Boot Maintenance (electric socked included) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 60.000000 72.360000 20.6000000000000014 \N | |
| 6518 2215 maintenance Maintenance Maintenance of the car 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 120.000000 144.720000 20.6000000000000014 \N | |
| 6618 2215 financial Financial Financial 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 110.000000 132.660000 20.6000000000000014 \N | |
| 6718 2215 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 6818 2215 tyres indicator light Maintenance indicator light Maintenance (electric lights replacement) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 6918 2415 maintenance Maintenance Maintenance of the car 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 120.000000 144.720000 20.6000000000000014 \N | |
| 7018 2415 financial Financial Financial 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 110.000000 132.660000 20.6000000000000014 \N | |
| 7118 2415 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 7218 2515 maintenance Maintenance Maintenance of the car 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 130.000000 156.780000 20.6000000000000014 \N | |
| 7318 2515 financial Financial Financial 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 110.000000 132.660000 20.6000000000000014 \N | |
| 7418 2515 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 7518 2515 tyres Tyres Replacement 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 120.000000 144.720000 20.6000000000000014 \N | |
| 7618 2615 tyres indicator light Maintenance indicator light Maintenance (electric lights replacement) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 7718 2615 financial Hubcap Maintenance Hubcap Maintenance (replacement every 6 months) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 7818 2615 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 7918 6415 tyres indicator light Maintenance indicator light Maintenance (electric lights replacement) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 8018 6415 financial Hubcap Maintenance Hubcap Maintenance (replacement every 6 months) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 8118 6415 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 8218 6515 tyres indicator light Maintenance indicator light Maintenance (electric lights replacement) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 8318 6515 maintenance Maintenance Maintenance of the car 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 120.000000 144.720000 20.6000000000000014 \N | |
| 8418 6515 financial Financial Financial 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 110.000000 132.660000 20.6000000000000014 \N | |
| 8518 6515 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 8618 7015 financial Financial Financial 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 110.000000 132.660000 20.6000000000000014 \N | |
| 8718 7015 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 8818 1915 replacement Outside Mirror Maintenance Outside Mirror Maintenance (breakage cover, electric motor check) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 25.000000 30.150000 20.6000000000000014 \N | |
| 8918 2015 maintenance Maintenance Maintenance of the car 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 120.000000 144.720000 20.6000000000000014 \N | |
| 9018 2015 financial Financial Financial 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 110.000000 132.660000 20.6000000000000014 \N | |
| 9118 2015 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 9218 6815 maintenance Maintenance Maintenance of the car 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 120.000000 144.720000 20.6000000000000014 \N | |
| 9318 6815 financial Financial Financial 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 110.000000 132.660000 20.6000000000000014 \N | |
| 9418 7115 financial Hubcap Maintenance Hubcap Maintenance (replacement every 6 months) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 9518 7115 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 9618 7115 tyres indicator light Maintenance indicator light Maintenance (electric lights replacement) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 9718 7115 assistance Seat Maintenance Seat Maintenance (electric seats included) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 30.000000 36.180000 20.6000000000000014 \N | |
| 9818 7215 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 9918 7215 tyres indicator light Maintenance indicator light Maintenance (electric lights replacement) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 10018 7215 maintenance Maintenance Maintenance of the car 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 120.000000 144.720000 20.6000000000000014 \N | |
| 10118 7315 tyres indicator light Maintenance indicator light Maintenance (electric lights replacement) 2015-01-04 00:00:00 2015-01-04 00:00:00 \N 40.000000 48.240000 20.6000000000000014 \N | |
| 10218 7315 maintenance Maintenance Maintenance of the car 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 120.000000 144.720000 20.6000000000000014 \N | |
| 10318 7315 financial Financial Financial 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 110.000000 132.660000 20.6000000000000014 \N | |
| 10418 7315 replacement Replacement Replacement in case of emergency 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 10518 2715 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 10618 2815 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 10718 2915 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 10818 3015 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 10918 3115 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 11018 3215 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 11118 3315 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 11218 3415 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 11318 3515 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 11418 3615 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 11518 3715 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 11618 3815 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 11718 3915 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 11818 4015 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 11918 4115 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 12018 4215 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 12118 4315 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 12218 4415 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 12318 4515 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 12418 4615 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 12518 4715 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 12618 4815 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 12718 4915 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 12818 5015 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 12918 5115 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 13018 5215 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 13118 5315 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 13218 5415 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 13318 5515 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 13418 5615 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 13518 5715 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 13618 5815 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 13718 5915 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 13818 6015 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 13918 6115 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 14018 6215 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| 14118 6315 mp_fees Monthly Plan Fees Monthly Plan Fees 2015-01-14 00:00:00 2015-01-14 00:00:00 \N 45.000000 54.270000 20.6000000000000014 \N | |
| \. | |
| -- | |
| -- Name: contractchangeid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('contractchangeid', 416, true); | |
| -- | |
| -- Name: contractid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('contractid', 7315, true); | |
| -- | |
| -- Data for Name: contracts; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY contracts (id, title, type, reference, version, asset_type, supplier, thirdparty_id, created, updated, period, deleted, active, attributes, effective, payment_time, payment_period, currency) FROM stdin; | |
| 15 none contract-hire WAUSI-93 0 vehicle.car ALD \N 2016-09-26 09:40:11.243553 2016-09-26 09:40:11.243553 ["2015-01-05 00:00:00+00","2018-01-04 23:59:59+00"] f t {"mileage": 20000, "duration": {"unit": "month", "number": 26}} ["2015-01-05 00:00:00+00","2018-01-04 23:59:59+00"] prepaid monthly GBP | |
| 115 none contract-hire 738L-PIEH 0 vehicle.car RFP \N 2016-09-26 09:40:11.244787 2016-09-26 09:40:11.244787 ["2015-01-05 00:00:00+00","2017-01-04 23:59:59+00"] f t {"mileage": 15000, "duration": {"unit": "month", "number": 24}} ["2015-01-05 00:00:00+00","2017-01-04 23:59:59+00"] prepaid monthly GBP | |
| 215 none contract-hire 001-001 0 vehicle.car RFP \N 2016-09-26 09:40:11.245791 2016-09-26 09:40:11.245791 ["2015-04-05 00:00:00+01","2017-04-04 23:59:59+01"] f t {"mileage": 33000, "duration": {"unit": "month", "number": 24}} ["2015-04-05 00:00:00+01","2017-04-04 23:59:59+01"] prepaid monthly GBP | |
| 315 none contract-hire 001-002 0 vehicle.car RFP \N 2016-09-26 09:40:11.246784 2016-09-26 09:40:11.246784 ["2015-05-05 00:00:00+01","2017-05-04 23:59:59+01"] f t {"mileage": 22000, "duration": {"unit": "month", "number": 24}} ["2015-05-05 00:00:00+01","2017-05-04 23:59:59+01"] prepaid monthly GBP | |
| 415 none contract-hire 001-003 0 vehicle.car RFP \N 2016-09-26 09:40:11.247767 2016-09-26 09:40:11.247767 ["2015-05-05 00:00:00+01","2017-05-04 23:59:59+01"] f t {"mileage": 12000, "duration": {"unit": "month", "number": 24}} ["2015-05-05 00:00:00+01","2017-05-04 23:59:59+01"] prepaid monthly GBP | |
| 515 none contract-hire 001-004 0 vehicle.car RFP \N 2016-09-26 09:40:11.248752 2016-09-26 09:40:11.248752 ["2015-08-05 00:00:00+01","2017-08-04 23:59:59+01"] f t {"mileage": 13000, "duration": {"unit": "month", "number": 24}} ["2015-08-05 00:00:00+01","2017-08-04 23:59:59+01"] prepaid monthly GBP | |
| 615 none contract-hire 005-001 0 vehicle.car RFK \N 2016-09-26 09:40:11.249718 2016-09-26 09:40:11.249718 ["2015-03-05 00:00:00+00","2018-03-04 23:59:59+00"] f t {"mileage": 14000, "duration": {"unit": "month", "number": 36}} ["2015-03-05 00:00:00+00","2018-03-04 23:59:59+00"] prepaid monthly GBP | |
| 715 none contract-hire 001-006 0 vehicle.car RFP \N 2016-09-26 09:40:11.250678 2016-09-26 09:40:11.250678 ["2015-02-05 00:00:00+00","2018-02-04 23:59:59+00"] f t {"mileage": 30000, "duration": {"unit": "month", "number": 36}} ["2015-02-05 00:00:00+00","2018-02-04 23:59:59+00"] prepaid monthly GBP | |
| 815 none contract-hire 001-007 0 vehicle.car RPY \N 2016-09-26 09:40:11.251638 2016-09-26 09:40:11.251638 ["2015-01-05 00:00:00+00","2017-01-04 23:59:59+00"] f t {"mileage": 44000, "duration": {"unit": "month", "number": 24}} ["2015-01-05 00:00:00+00","2017-01-04 23:59:59+00"] prepaid monthly GBP | |
| 915 none contract-hire 001-008 0 vehicle.car RFR \N 2016-09-26 09:40:11.252584 2016-09-26 09:40:11.252584 ["2015-05-05 00:00:00+01","2017-05-04 23:59:59+01"] f t {"mileage": 22000, "duration": {"unit": "month", "number": 24}} ["2015-05-05 00:00:00+01","2017-05-04 23:59:59+01"] prepaid monthly GBP | |
| 1015 none contract-hire 001-009 0 vehicle.car RFP \N 2016-09-26 09:40:11.25353 2016-09-26 09:40:11.25353 ["2015-01-05 00:00:00+00","2017-01-04 23:59:59+00"] f t {"mileage": 32000, "duration": {"unit": "month", "number": 24}} ["2015-01-05 00:00:00+00","2017-01-04 23:59:59+00"] prepaid monthly GBP | |
| 1115 none contract-hire 001-010 0 vehicle.car RLP \N 2016-09-26 09:40:11.254481 2016-09-26 09:40:11.254481 ["2015-10-05 00:00:00+01","2017-10-04 23:59:59+01"] f t {"mileage": 16000, "duration": {"unit": "month", "number": 24}} ["2015-10-05 00:00:00+01","2017-10-04 23:59:59+01"] prepaid monthly GBP | |
| 1215 none contract-hire 001-011 0 vehicle.car RFP \N 2016-09-26 09:40:11.255436 2016-09-26 09:40:11.255436 ["2015-11-05 00:00:00+00","2017-11-04 23:59:59+00"] f t {"mileage": 18000, "duration": {"unit": "month", "number": 24}} ["2015-12-05 00:00:00+00","2017-12-04 23:59:59+00"] prepaid monthly GBP | |
| 1315 none contract-hire 001-012 0 vehicle.car RFP \N 2016-09-26 09:40:11.256375 2016-09-26 09:40:11.256375 ["2015-12-05 00:00:00+00","2017-12-04 23:59:59+00"] f t {"mileage": 17000, "duration": {"unit": "month", "number": 24}} ["2015-01-05 00:00:00+00","2016-01-04 23:59:59+00"] prepaid monthly GBP | |
| 1415 none contract-hire 001-013 0 vehicle.car RFP \N 2016-09-26 09:40:11.257316 2016-09-26 09:40:11.257316 ["2015-08-05 00:00:00+01","2017-08-04 23:59:59+01"] f t {"mileage": 18000, "duration": {"unit": "month", "number": 24}} ["2015-08-05 00:00:00+01","2017-08-04 23:59:59+01"] prepaid monthly GBP | |
| 1515 none contract-hire 001-014 0 vehicle.car RTP \N 2016-09-26 09:40:11.25825 2016-09-26 09:40:11.25825 ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] f t {"mileage": 16000, "duration": {"unit": "month", "number": 24}} ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] prepaid monthly GBP | |
| 1615 none contract-hire 001-015 0 vehicle.car RFP \N 2016-09-26 09:40:11.259178 2016-09-26 09:40:11.259178 ["2015-01-06 00:00:00+00","2017-01-05 23:59:59+00"] f t {"mileage": 17000, "duration": {"unit": "month", "number": 24}} ["2015-01-06 00:00:00+00","2017-01-05 23:59:59+00"] prepaid monthly GBP | |
| 1715 none contract-hire 001-016 0 vehicle.car RFP \N 2016-09-26 09:40:11.260121 2016-09-26 09:40:11.260121 ["2015-02-05 00:00:00+00","2017-02-04 23:59:59+00"] f t {"mileage": 18000, "duration": {"unit": "month", "number": 24}} ["2015-02-05 00:00:00+00","2017-02-04 23:59:59+00"] prepaid monthly GBP | |
| 1815 none contract-hire 001-017 0 vehicle.car RFP \N 2016-09-26 09:40:11.261122 2016-09-26 09:40:11.261122 ["2015-02-05 00:00:00+00","2017-02-04 23:59:59+00"] f t {"mileage": 19000, "duration": {"unit": "month", "number": 24}} ["2015-02-05 00:00:00+00","2017-02-04 23:59:59+00"] prepaid monthly GBP | |
| 1915 none contract-hire 001-018 0 vehicle.car RFO \N 2016-09-26 09:40:11.262065 2016-09-26 09:40:11.262065 ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] f t {"mileage": 23000, "duration": {"unit": "month", "number": 24}} ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] prepaid monthly GBP | |
| 2015 none contract-hire 001-019 0 vehicle.car RFP \N 2016-09-26 09:40:11.26301 2016-09-26 09:40:11.26301 ["2015-07-05 00:00:00+01","2017-07-04 23:59:59+01"] f t {"mileage": 28000, "duration": {"unit": "month", "number": 24}} ["2015-07-05 00:00:00+01","2017-07-04 23:59:59+01"] prepaid monthly GBP | |
| 2115 none contract-hire 001-016X 0 vehicle.car RFP \N 2016-09-26 09:40:11.263942 2016-09-26 09:40:11.263942 ["2015-02-05 00:00:00+00","2017-02-04 23:59:59+00"] f t {"mileage": 17000, "duration": {"unit": "month", "number": 24}} ["2015-02-05 00:00:00+00","2017-02-04 23:59:59+00"] prepaid monthly GBP | |
| 2215 none contract-hire 001-017X 0 vehicle.car RFP \N 2016-09-26 09:40:11.264889 2016-09-26 09:40:11.264889 ["2015-02-05 00:00:00+00","2017-02-04 23:59:59+00"] f t {"mileage": 19000, "duration": {"unit": "month", "number": 24}} ["2015-02-05 00:00:00+00","2017-02-04 23:59:59+00"] prepaid monthly GBP | |
| 2315 none contract-hire 001-018X 0 vehicle.car RFO \N 2016-09-26 09:40:11.265825 2016-09-26 09:40:11.265825 ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] f t {"mileage": 34000, "duration": {"unit": "month", "number": 24}} ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] prepaid monthly GBP | |
| 2415 none contract-hire 001-016Y 0 vehicle.car RFP \N 2016-09-26 09:40:11.26676 2016-09-26 09:40:11.26676 ["2015-02-05 00:00:00+00","2017-02-04 23:59:59+00"] f t {"mileage": 19000, "duration": {"unit": "month", "number": 24}} ["2015-02-05 00:00:00+00","2017-02-04 23:59:59+00"] prepaid monthly GBP | |
| 2515 none contract-hire 001-017Y 0 vehicle.car RFP \N 2016-09-26 09:40:11.267697 2016-09-26 09:40:11.267697 ["2015-02-05 00:00:00+00","2017-02-04 23:59:59+00"] f t {"mileage": 23000, "duration": {"unit": "month", "number": 24}} ["2015-02-05 00:00:00+00","2017-02-04 23:59:59+00"] prepaid monthly GBP | |
| 2615 none contract-hire 001-018Y 0 vehicle.car RFO \N 2016-09-26 09:40:11.268633 2016-09-26 09:40:11.268633 ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] f t {"mileage": 12000, "duration": {"unit": "month", "number": 24}} ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] prepaid monthly GBP | |
| 2715 none monthly-plan 001-024 0 electronic.phone STL \N 2016-09-26 09:40:11.269663 2016-09-26 09:40:11.269663 ["2015-04-06 00:00:00+01","2017-04-05 23:59:59+01"] f t {"data": 30000, "minutes": 300, "duration": {"unit": "month", "number": 24}} ["2015-04-06 00:00:00+01","2017-04-05 23:59:59+01"] prepaid monthly GBP | |
| 2815 none monthly-plan 001-025 0 electronic.phone KPR \N 2016-09-26 09:40:11.270686 2016-09-26 09:40:11.270686 ["2015-08-05 00:00:00+01","2017-08-04 23:59:59+01"] f t {"data": 20000, "minutes": 400, "duration": {"unit": "month", "number": 24}} ["2015-08-05 00:00:00+01","2017-08-04 23:59:59+01"] prepaid monthly GBP | |
| 2915 none monthly-plan 001-026 0 electronic.phone RLP \N 2016-09-26 09:40:11.271688 2016-09-26 09:40:11.271688 ["2015-04-05 00:00:00+01","2017-04-04 23:59:59+01"] f t {"data": 20000, "minutes": 400, "duration": {"unit": "month", "number": 24}} ["2015-04-05 00:00:00+01","2017-04-04 23:59:59+01"] prepaid monthly GBP | |
| 3015 none monthly-plan 001-027 0 electronic.phone STL \N 2016-09-26 09:40:11.272662 2016-09-26 09:40:11.272662 ["2015-04-06 00:00:00+01","2017-04-05 23:59:59+01"] f t {"data": 30000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-04-06 00:00:00+01","2017-04-05 23:59:59+01"] prepaid monthly GBP | |
| 3115 none monthly-plan 001-028 0 electronic.phone KPR \N 2016-09-26 09:40:11.273634 2016-09-26 09:40:11.273634 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 20000, "minutes": 400, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 3215 none monthly-plan 001-029 0 electronic.phone RLP \N 2016-09-26 09:40:11.274747 2016-09-26 09:40:11.274747 ["2015-04-05 00:00:00+01","2017-04-04 23:59:59+01"] f t {"data": 20000, "minutes": 400, "duration": {"unit": "month", "number": 24}} ["2015-04-05 00:00:00+01","2017-04-04 23:59:59+01"] prepaid monthly GBP | |
| 3315 none monthly-plan 002-020 0 electronic.phone STL \N 2016-09-26 09:40:11.275717 2016-09-26 09:40:11.275717 ["2015-04-06 00:00:00+01","2017-04-05 23:59:59+01"] f t {"data": 30000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-04-06 00:00:00+01","2017-04-05 23:59:59+01"] prepaid monthly GBP | |
| 3415 none monthly-plan 003-020 0 electronic.phone KPR \N 2016-09-26 09:40:11.277118 2016-09-26 09:40:11.277118 ["2015-06-06 00:00:00+01","2017-06-05 23:59:59+01"] f t {"data": 20000, "minutes": 400, "duration": {"unit": "month", "number": 24}} ["2015-06-06 00:00:00+01","2017-06-05 23:59:59+01"] prepaid monthly GBP | |
| 3515 none monthly-plan 004-020 0 electronic.phone RLP \N 2016-09-26 09:40:11.27813 2016-09-26 09:40:11.27813 ["2015-04-05 00:00:00+01","2017-04-04 23:59:59+01"] f t {"data": 20000, "minutes": 400, "duration": {"unit": "month", "number": 24}} ["2015-04-05 00:00:00+01","2017-04-04 23:59:59+01"] prepaid monthly GBP | |
| 3615 none monthly-plan 005-020 0 electronic.phone STL \N 2016-09-26 09:40:11.279099 2016-09-26 09:40:11.279099 ["2015-04-06 00:00:00+01","2017-04-05 23:59:59+01"] f t {"data": 30000, "minutes": 400, "duration": {"unit": "month", "number": 24}} ["2015-04-06 00:00:00+01","2017-04-05 23:59:59+01"] prepaid monthly GBP | |
| 3715 none monthly-plan 006-020 0 electronic.phone KPR \N 2016-09-26 09:40:11.28008 2016-09-26 09:40:11.28008 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 3815 none monthly-plan 006-A 0 electronic.phone KPR \N 2016-09-26 09:40:11.281046 2016-09-26 09:40:11.281046 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 3915 none monthly-plan 006-B 0 electronic.phone KPR \N 2016-09-26 09:40:11.281991 2016-09-26 09:40:11.281991 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 4015 none monthly-plan 006-C 0 electronic.phone KPR \N 2016-09-26 09:40:11.282939 2016-09-26 09:40:11.282939 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 4115 none monthly-plan 006-D 0 electronic.phone STL \N 2016-09-26 09:40:11.283888 2016-09-26 09:40:11.283888 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 4215 none monthly-plan 006-E 0 electronic.phone KPR \N 2016-09-26 09:40:11.284828 2016-09-26 09:40:11.284828 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 4315 none monthly-plan 006-F 0 electronic.phone KPR \N 2016-09-26 09:40:11.285767 2016-09-26 09:40:11.285767 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 4415 none monthly-plan 006-G 0 electronic.phone RLP \N 2016-09-26 09:40:11.286705 2016-09-26 09:40:11.286705 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 4515 none monthly-plan 006-H 0 electronic.phone RLP \N 2016-09-26 09:40:11.287646 2016-09-26 09:40:11.287646 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 4615 none monthly-plan 006-I 0 electronic.phone STL \N 2016-09-26 09:40:11.288591 2016-09-26 09:40:11.288591 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 4715 none monthly-plan 006-J 0 electronic.phone STL \N 2016-09-26 09:40:11.289524 2016-09-26 09:40:11.289524 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 4815 none monthly-plan 006-K 0 electronic.phone STL \N 2016-09-26 09:40:11.290452 2016-09-26 09:40:11.290452 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 4915 none monthly-plan 006-L 0 electronic.phone STL \N 2016-09-26 09:40:11.29145 2016-09-26 09:40:11.29145 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 5015 none monthly-plan 006-M 0 electronic.phone STL \N 2016-09-26 09:40:11.292392 2016-09-26 09:40:11.292392 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 5115 none monthly-plan 006-N 0 electronic.phone STL \N 2016-09-26 09:40:11.293337 2016-09-26 09:40:11.293337 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 5215 none monthly-plan 006-O 0 electronic.phone STL \N 2016-09-26 09:40:11.294305 2016-09-26 09:40:11.294305 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 5315 none monthly-plan 006-P 0 electronic.phone STL \N 2016-09-26 09:40:11.295251 2016-09-26 09:40:11.295251 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 5415 none monthly-plan 006-Q 0 electronic.phone STL \N 2016-09-26 09:40:11.296195 2016-09-26 09:40:11.296195 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 5515 none monthly-plan 006-R 0 electronic.phone STL \N 2016-09-26 09:40:11.297143 2016-09-26 09:40:11.297143 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 5615 none monthly-plan 006-S 0 electronic.phone STL \N 2016-09-26 09:40:11.298129 2016-09-26 09:40:11.298129 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 5715 none monthly-plan 006-T 0 electronic.phone STL \N 2016-09-26 09:40:11.299112 2016-09-26 09:40:11.299112 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 5815 none monthly-plan 006-U 0 electronic.phone STL \N 2016-09-26 09:40:11.300083 2016-09-26 09:40:11.300083 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 5915 none monthly-plan 006-V 0 electronic.phone STL \N 2016-09-26 09:40:11.301036 2016-09-26 09:40:11.301036 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 6015 none monthly-plan 006-W 0 electronic.phone STL \N 2016-09-26 09:40:11.302009 2016-09-26 09:40:11.302009 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 6115 none monthly-plan 006-X 0 electronic.phone STL \N 2016-09-26 09:40:11.302945 2016-09-26 09:40:11.302945 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 6215 none monthly-plan 006-Y 0 electronic.phone STL \N 2016-09-26 09:40:11.303931 2016-09-26 09:40:11.303931 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 6315 none monthly-plan 006-Z 0 electronic.phone STL \N 2016-09-26 09:40:11.304916 2016-09-26 09:40:11.304916 ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] f t {"data": 40000, "minutes": 500, "duration": {"unit": "month", "number": 24}} ["2015-06-05 00:00:00+01","2017-06-04 23:59:59+01"] prepaid monthly GBP | |
| 6415 none contract-hire 001-A 0 vehicle.car ALD \N 2016-09-26 09:40:11.305882 2016-09-26 09:40:11.305882 ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] f t {"mileage": 19000, "duration": {"unit": "month", "number": 24}} ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] prepaid monthly GBP | |
| 6515 none contract-hire 001-B 0 vehicle.car RFO \N 2016-09-26 09:40:11.306897 2016-09-26 09:40:11.306897 ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] f t {"mileage": 100000, "duration": {"unit": "month", "number": 24}} ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] prepaid monthly GBP | |
| 6615 none contract-hire 001-C 0 vehicle.car RFO \N 2016-09-26 09:40:11.307893 2016-09-26 09:40:11.307893 ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] f t {"mileage": 100000, "duration": {"unit": "month", "number": 24}} ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] prepaid monthly GBP | |
| 6715 none contract-hire 001-D 0 vehicle.car RFO \N 2016-09-26 09:40:11.308877 2016-09-26 09:40:11.308877 ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] f t {"mileage": 100000, "duration": {"unit": "month", "number": 24}} ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] prepaid monthly GBP | |
| 6815 none contract-hire 001-E 0 vehicle.car RFO \N 2016-09-26 09:40:11.309836 2016-09-26 09:40:11.309836 ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] f t {"mileage": 100000, "duration": {"unit": "month", "number": 24}} ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] prepaid monthly GBP | |
| 6915 none contract-hire 001-F 0 vehicle.car ALD \N 2016-09-26 09:40:11.310785 2016-09-26 09:40:11.310785 ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] f t {"mileage": 100000, "duration": {"unit": "month", "number": 24}} ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] prepaid monthly GBP | |
| 7015 none contract-hire 001-G 0 vehicle.car ALD \N 2016-09-26 09:40:11.311735 2016-09-26 09:40:11.311735 ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] f t {"mileage": 100000, "duration": {"unit": "month", "number": 24}} ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] prepaid monthly GBP | |
| 7115 none contract-hire 001-H 0 vehicle.car RFO \N 2016-09-26 09:40:11.312659 2016-09-26 09:40:11.312659 ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] f t {"mileage": 100000, "duration": {"unit": "month", "number": 24}} ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] prepaid monthly GBP | |
| 7215 none contract-hire 001-I 0 vehicle.car ALD \N 2016-09-26 09:40:11.313608 2016-09-26 09:40:11.313608 ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] f t {"mileage": 100000, "duration": {"unit": "month", "number": 24}} ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] prepaid monthly GBP | |
| 7315 none contract-hire 001-J 0 vehicle.car ALD \N 2016-09-26 09:40:11.314541 2016-09-26 09:40:11.314541 ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] f t {"mileage": 100000, "duration": {"unit": "month", "number": 24}} ["2015-09-05 00:00:00+01","2017-09-04 23:59:59+01"] prepaid monthly GBP | |
| \. | |
| -- | |
| -- Name: contractserviceid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('contractserviceid', 14118, true); | |
| -- | |
| -- Data for Name: cost_assets; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY cost_assets (cost_id, asset_id) FROM stdin; | |
| 3 202 | |
| 503 202 | |
| 1003 202 | |
| 1503 302 | |
| 2003 302 | |
| 2503 302 | |
| 3003 402 | |
| 3503 402 | |
| 4003 402 | |
| 4503 502 | |
| 5003 602 | |
| 5503 702 | |
| 6003 802 | |
| 6503 902 | |
| 7003 1002 | |
| 7503 502 | |
| 8003 602 | |
| 8503 702 | |
| 9003 802 | |
| 9503 902 | |
| 10003 1002 | |
| 10503 502 | |
| 11003 602 | |
| 11503 702 | |
| 12003 802 | |
| 12503 902 | |
| 13003 1002 | |
| 13503 502 | |
| 14003 602 | |
| 14503 702 | |
| 15003 802 | |
| 15503 902 | |
| 16003 1002 | |
| 16503 202 | |
| 16803 302 | |
| 17103 402 | |
| 17403 502 | |
| 17703 602 | |
| 18003 702 | |
| 18303 802 | |
| 18603 902 | |
| 18903 1002 | |
| \. | |
| -- | |
| -- Data for Name: cost_assoc; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY cost_assoc (cost_id) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: cost_consumptions; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY cost_consumptions (cost_id, consumption_id) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: cost_contract_services; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY cost_contract_services (cost_id, contract_service_id) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: cost_costs; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY cost_costs (cost_id, subcost_id) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: cost_fines; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY cost_fines (cost_id, fine_id) FROM stdin; | |
| 16503 37 | |
| 16803 137 | |
| 17103 237 | |
| 17403 337 | |
| 17703 437 | |
| 18003 537 | |
| 18303 637 | |
| 18603 737 | |
| 18903 837 | |
| \. | |
| -- | |
| -- Data for Name: cost_structures; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY cost_structures (cost_id, structure_id) FROM stdin; | |
| 303 401 | |
| 3 2201 | |
| 803 401 | |
| 503 2201 | |
| 1303 401 | |
| 1003 2801 | |
| 1803 401 | |
| 1503 2801 | |
| 2303 401 | |
| 2003 2701 | |
| 2803 401 | |
| 2503 3101 | |
| 3303 401 | |
| 3003 3201 | |
| 3803 401 | |
| 3503 2901 | |
| 4303 401 | |
| 4003 3301 | |
| 4803 401 | |
| 4503 2301 | |
| 5303 401 | |
| 5003 2301 | |
| 5803 401 | |
| 5503 2301 | |
| 6303 401 | |
| 6003 2301 | |
| 6803 401 | |
| 6503 2301 | |
| 7303 401 | |
| 7003 2301 | |
| 7803 401 | |
| 7503 2301 | |
| 8303 401 | |
| 8003 2301 | |
| 8803 401 | |
| 8503 2301 | |
| 9303 401 | |
| 9003 2301 | |
| 9803 401 | |
| 9503 2301 | |
| 10303 401 | |
| 10003 2301 | |
| 10803 401 | |
| 10503 2301 | |
| 11303 401 | |
| 11003 2301 | |
| 11803 401 | |
| 11503 2301 | |
| 12303 401 | |
| 12003 2301 | |
| 12803 401 | |
| 12503 2301 | |
| 13303 401 | |
| 13003 2301 | |
| 13803 401 | |
| 13503 2301 | |
| 14303 401 | |
| 14003 2301 | |
| 14803 401 | |
| 14503 2301 | |
| 15303 401 | |
| 15003 2301 | |
| 15803 401 | |
| 15503 2301 | |
| 16303 401 | |
| 16003 2301 | |
| 16503 2901 | |
| 16803 2901 | |
| 17103 2901 | |
| 17403 2901 | |
| 17703 2901 | |
| 18003 2901 | |
| 18303 2901 | |
| 18603 2901 | |
| 18903 2901 | |
| \. | |
| -- | |
| -- Data for Name: cost_users; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY cost_users (cost_id, user_id) FROM stdin; | |
| 403 204 | |
| 903 204 | |
| 1403 204 | |
| 1903 304 | |
| 2403 304 | |
| 2903 304 | |
| 3403 404 | |
| 3903 404 | |
| 4404 404 | |
| 4904 504 | |
| 5404 604 | |
| 5904 704 | |
| 6404 804 | |
| 6904 904 | |
| 7404 1004 | |
| 7904 504 | |
| 8404 604 | |
| 8904 704 | |
| 9404 804 | |
| 9904 904 | |
| 10404 1004 | |
| 10904 504 | |
| 11404 604 | |
| 11904 704 | |
| 12404 804 | |
| 12904 904 | |
| 13404 1004 | |
| 13904 504 | |
| 14404 604 | |
| 14904 704 | |
| 15404 804 | |
| 15904 904 | |
| 16404 1004 | |
| 16503 204 | |
| 16803 304 | |
| 17103 404 | |
| 17403 504 | |
| 17703 604 | |
| 18003 704 | |
| 18303 804 | |
| 18603 904 | |
| 18903 1004 | |
| \. | |
| -- | |
| -- Name: costid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('costid', 19103, true); | |
| -- | |
| -- Data for Name: costs; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY costs (id, classname, parent, label, invoice_ref, description, created, updated, paydate, period, amount, exactamount, tcoamount, currency, tcoamount_legal, currency_legal, tcoamount_reference, currency_reference, taxes, attributes) FROM stdin; | |
| 3 root \N fuel 284982-022-347 Ordinary unleaded - 95 2016-09-26 09:40:09.079615+01 2016-09-26 09:40:09.079615+01 2016-04-12 01:00:00+01 ["2016-04-12 00:00:00+01","2016-04-12 00:00:00+01"] 10 10.000000 12 GBP 12 GBP 12 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 10, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 10} | |
| 103 tax 3 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.081688+01 2016-09-26 09:40:09.081688+01 2016-04-12 01:00:00+01 ["2016-04-12 00:00:00+01","2016-04-12 00:00:00+01"] 2 2.000000 \N GBP \N \N \N \N \N \N | |
| 203 tax 3 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.082831+01 2016-09-26 09:40:09.082831+01 2016-04-12 01:00:00+01 ["2016-04-12 00:00:00+01","2016-04-12 00:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 303 standard 3 fuel (structure 401) \N Portion of cost fuel" (cost ID 3)" 2016-09-26 09:40:09.083965+01 2016-09-26 09:40:09.083965+01 2016-04-12 01:00:00+01 ["2016-04-12 00:00:00+01","2016-04-12 00:00:00+01"] 10 10.000000 12 GBP 12 GBP 12 GBP \N \N | |
| 403 standard 3 fuel (user 204) \N Portion of cost fuel" (cost ID 3)" 2016-09-26 09:40:09.085118+01 2016-09-26 09:40:09.085118+01 2016-04-12 01:00:00+01 ["2016-04-12 00:00:00+01","2016-04-12 00:00:00+01"] 10 10.000000 12 GBP 12 GBP 12 GBP \N \N | |
| 503 root \N fuel 37883hc03 Super unleaded - 98 2016-09-26 09:40:09.086226+01 2016-09-26 09:40:09.086226+01 2016-04-13 01:00:00+01 ["2016-04-13 00:00:00+01","2016-04-13 00:00:00+01"] 10 10.000000 12 GBP 12 GBP 12 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 10, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 10} | |
| 603 tax 503 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.087338+01 2016-09-26 09:40:09.087338+01 2016-04-13 01:00:00+01 ["2016-04-13 00:00:00+01","2016-04-13 00:00:00+01"] 2 2.000000 \N GBP \N \N \N \N \N \N | |
| 703 tax 503 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.08842+01 2016-09-26 09:40:09.08842+01 2016-04-13 01:00:00+01 ["2016-04-13 00:00:00+01","2016-04-13 00:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 803 standard 503 fuel (structure 401) \N Portion of cost fuel" (cost ID 503)" 2016-09-26 09:40:09.089525+01 2016-09-26 09:40:09.089525+01 2016-04-13 01:00:00+01 ["2016-04-13 00:00:00+01","2016-04-13 00:00:00+01"] 10 10.000000 12 GBP 12 GBP 12 GBP \N \N | |
| 903 standard 503 fuel (user 204) \N Portion of cost fuel" (cost ID 503)" 2016-09-26 09:40:09.090613+01 2016-09-26 09:40:09.090613+01 2016-04-12 01:00:00+01 ["2016-04-12 00:00:00+01","2016-04-12 00:00:00+01"] 10 10.000000 12 GBP 12 GBP 12 GBP \N \N | |
| 1003 root \N parking 368290942-3 Parking 2016-09-26 09:40:09.091707+01 2016-09-26 09:40:09.091707+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 10 10.000000 12 GBP 12 GBP 12 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 10, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 10} | |
| 1103 tax 1003 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.0928+01 2016-09-26 09:40:09.0928+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2 2.000000 \N GBP \N \N \N \N \N \N | |
| 1203 tax 1003 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.093858+01 2016-09-26 09:40:09.093858+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 1303 standard 1003 parking (structure 401) \N Portion of cost parking" (cost ID 1003)" 2016-09-26 09:40:09.094918+01 2016-09-26 09:40:09.094918+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 10 10.000000 12 GBP 12 GBP 12 GBP \N \N | |
| 1403 standard 1003 parking (user 204) \N Portion of cost parking" (cost ID 1003)" 2016-09-26 09:40:09.095989+01 2016-09-26 09:40:09.095989+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 10 10.000000 12 GBP 12 GBP 12 GBP \N \N | |
| 1503 root \N parking 33738djn392 Parking 2016-09-26 09:40:09.09704+01 2016-09-26 09:40:09.09704+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 10 10.000000 12 GBP 12 GBP 12 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 10, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 10} | |
| 1603 tax 1503 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.098119+01 2016-09-26 09:40:09.098119+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2 2.000000 \N GBP \N \N \N \N \N \N | |
| 1703 tax 1503 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.099156+01 2016-09-26 09:40:09.099156+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 1803 standard 1503 parking (structure 401) \N Portion of cost parking" (cost ID 1503)" 2016-09-26 09:40:09.100212+01 2016-09-26 09:40:09.100212+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 10 10.000000 12 GBP 12 GBP 12 GBP \N \N | |
| 1903 standard 1503 parking (user 304) \N Portion of cost parking" (cost ID 1503)" 2016-09-26 09:40:09.101269+01 2016-09-26 09:40:09.101269+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 10 10.000000 12 GBP 12 GBP 12 GBP \N \N | |
| 2003 root \N tolls 2odldmo8933 Tolls 2016-09-26 09:40:09.102391+01 2016-09-26 09:40:09.102391+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 100 100.000000 120 GBP 120 GBP 120 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 100, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 100} | |
| 2103 tax 2003 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.103416+01 2016-09-26 09:40:09.103416+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 12 12.000000 \N GBP \N \N \N \N \N \N | |
| 2203 tax 2003 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.104459+01 2016-09-26 09:40:09.104459+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 2303 standard 2003 tolls (structure 401) \N Portion of cost tolls" (cost ID 2003)" 2016-09-26 09:40:09.105469+01 2016-09-26 09:40:09.105469+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 100 100.000000 120 GBP 120 GBP 120 GBP \N \N | |
| 2403 standard 2003 tolls (user 304) \N Portion of cost tolls" (cost ID 2003)" 2016-09-26 09:40:09.10664+01 2016-09-26 09:40:09.10664+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 100 100.000000 120 GBP 120 GBP 120 GBP \N \N | |
| 2503 root \N assistance 2k347dndl2 Assistance 2016-09-26 09:40:09.107714+01 2016-09-26 09:40:09.107714+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 2603 tax 2503 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.108746+01 2016-09-26 09:40:09.108746+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 120 120.000000 \N GBP \N \N \N \N \N \N | |
| 2703 tax 2503 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.109742+01 2016-09-26 09:40:09.109742+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 2803 standard 2503 assistance (structure 401) \N Portion of cost assistance" (cost ID 2503)" 2016-09-26 09:40:09.110755+01 2016-09-26 09:40:09.110755+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 2903 standard 2503 assistance (user 304) \N Portion of cost assistance" (cost ID 2503)" 2016-09-26 09:40:09.111773+01 2016-09-26 09:40:09.111773+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 3003 root \N repairs 12313223ff Repairs 2016-09-26 09:40:09.112797+01 2016-09-26 09:40:09.112797+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 3103 tax 3003 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.113828+01 2016-09-26 09:40:09.113828+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 120 120.000000 \N GBP \N \N \N \N \N \N | |
| 3203 tax 3003 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.114842+01 2016-09-26 09:40:09.114842+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 3303 standard 3003 repairs (structure 401) \N Portion of cost repairs" (cost ID 3003)" 2016-09-26 09:40:09.115976+01 2016-09-26 09:40:09.115976+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 3403 standard 3003 repairs (user 404) \N Portion of cost repairs" (cost ID 3003)" 2016-09-26 09:40:09.116976+01 2016-09-26 09:40:09.116976+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 3503 root \N fines 490-3-do33 Fines 2016-09-26 09:40:09.118122+01 2016-09-26 09:40:09.118122+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 3603 tax 3503 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.119207+01 2016-09-26 09:40:09.119207+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 120 120.000000 \N GBP \N \N \N \N \N \N | |
| 3703 tax 3503 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.120274+01 2016-09-26 09:40:09.120274+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 3803 standard 3503 fines (structure 401) \N Portion of cost fines" (cost ID 3503)" 2016-09-26 09:40:09.121327+01 2016-09-26 09:40:09.121327+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 3903 standard 3503 fines (user 404) \N Portion of cost fines" (cost ID 3503)" 2016-09-26 09:40:09.122373+01 2016-09-26 09:40:09.122373+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 4003 root \N cleaning 3kkdkk3df00 Cleaning 2016-09-26 09:40:09.123469+01 2016-09-26 09:40:09.123469+01 2016-02-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 4103 tax 4003 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.124529+01 2016-09-26 09:40:09.124529+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 120 120.000000 \N GBP \N \N \N \N \N \N | |
| 4203 tax 4003 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.125555+01 2016-09-26 09:40:09.125555+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 4303 standard 4003 cleaning (structure 401) \N Portion of cost cleaning" (cost ID 4003)" 2016-09-26 09:40:09.126602+01 2016-09-26 09:40:09.126602+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 4403 standard 4003 cleaning (user 404) \N Portion of cost cleaning" (cost ID 4003)" 2016-09-26 09:40:09.12763+01 2016-09-26 09:40:09.12763+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 4503 root \N rent ss88822kjd Rent 2016-09-26 09:40:09.12867+01 2016-09-26 09:40:09.12867+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 2000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 2000} | |
| 4603 tax 4503 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.129721+01 2016-09-26 09:40:09.129721+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 400 400.000000 \N GBP \N \N \N \N \N \N | |
| 4703 tax 4503 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.130685+01 2016-09-26 09:40:09.130685+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 4803 standard 4503 rent (structure 401) \N Portion of cost rent" (cost ID 4503)" 2016-09-26 09:40:09.131687+01 2016-09-26 09:40:09.131687+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP \N \N | |
| 4903 standard 4503 rent (user 504) \N Portion of cost rent" (cost ID 4503)" 2016-09-26 09:40:09.13266+01 2016-09-26 09:40:09.13266+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP \N \N | |
| 5003 root \N rent 4589301093fbd Rent 2016-09-26 09:40:09.133655+01 2016-09-26 09:40:09.133655+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 2000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 2000} | |
| 5103 tax 5003 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.134662+01 2016-09-26 09:40:09.134662+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 400 400.000000 \N GBP \N \N \N \N \N \N | |
| 5203 tax 5003 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.135643+01 2016-09-26 09:40:09.135643+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 5303 standard 5003 rent (structure 401) \N Portion of cost rent" (cost ID 5003)" 2016-09-26 09:40:09.139319+01 2016-09-26 09:40:09.139319+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP \N \N | |
| 5403 standard 5003 rent (user 604) \N Portion of cost rent" (cost ID 5003)" 2016-09-26 09:40:09.140504+01 2016-09-26 09:40:09.140504+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP \N \N | |
| 5503 root \N rent snljnl3833ff Rent 2016-09-26 09:40:09.141844+01 2016-09-26 09:40:09.141844+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 5603 tax 5503 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.143109+01 2016-09-26 09:40:09.143109+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 200 200.000000 \N GBP \N \N \N \N \N \N | |
| 5703 tax 5503 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.144231+01 2016-09-26 09:40:09.144231+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 5803 standard 5503 rent (structure 401) \N Portion of cost rent" (cost ID 5503)" 2016-09-26 09:40:09.145371+01 2016-09-26 09:40:09.145371+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 5903 standard 5503 rent (user 704) \N Portion of cost rent" (cost ID 5503)" 2016-09-26 09:40:09.146479+01 2016-09-26 09:40:09.146479+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 6003 root \N rent 27872giyl22 Rent 2016-09-26 09:40:09.147634+01 2016-09-26 09:40:09.147634+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 6103 tax 6003 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.148702+01 2016-09-26 09:40:09.148702+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 200 200.000000 \N GBP \N \N \N \N \N \N | |
| 6203 tax 6003 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.149752+01 2016-09-26 09:40:09.149752+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 6303 standard 6003 rent (structure 401) \N Portion of cost rent" (cost ID 6003)" 2016-09-26 09:40:09.150758+01 2016-09-26 09:40:09.150758+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 6403 standard 6003 rent (user 804) \N Portion of cost rent" (cost ID 6003)" 2016-09-26 09:40:09.151794+01 2016-09-26 09:40:09.151794+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 6503 root \N rent sjj2k33903dhh Rent 2016-09-26 09:40:09.152875+01 2016-09-26 09:40:09.152875+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 6603 tax 6503 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.153935+01 2016-09-26 09:40:09.153935+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 200 200.000000 \N GBP \N \N \N \N \N \N | |
| 6703 tax 6503 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.154903+01 2016-09-26 09:40:09.154903+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 6803 standard 6503 rent (structure 401) \N Portion of cost rent" (cost ID 6503)" 2016-09-26 09:40:09.155903+01 2016-09-26 09:40:09.155903+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 6903 standard 6503 rent (user 904) \N Portion of cost rent" (cost ID 6503)" 2016-09-26 09:40:09.156879+01 2016-09-26 09:40:09.156879+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 7003 root \N rent sjl3893389dkjd Rent 2016-09-26 09:40:09.157877+01 2016-09-26 09:40:09.157877+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 7103 tax 7003 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.158884+01 2016-09-26 09:40:09.158884+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 200 200.000000 \N GBP \N \N \N \N \N \N | |
| 7203 tax 7003 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.159843+01 2016-09-26 09:40:09.159843+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 7303 standard 7003 rent (structure 401) \N Portion of cost rent" (cost ID 7003)" 2016-09-26 09:40:09.160835+01 2016-09-26 09:40:09.160835+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 7403 standard 7003 rent (user 1004) \N Portion of cost rent" (cost ID 7003)" 2016-09-26 09:40:09.161874+01 2016-09-26 09:40:09.161874+01 2016-01-14 00:00:00+00 ["2016-01-14 00:00:00+00","2016-01-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 7503 root \N rent 2ldlld30doHudl Rent 2016-09-26 09:40:09.162893+01 2016-09-26 09:40:09.162893+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 7603 tax 7503 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.163875+01 2016-09-26 09:40:09.163875+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 200 200.000000 \N GBP \N \N \N \N \N \N | |
| 7703 tax 7503 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.164823+01 2016-09-26 09:40:09.164823+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 7803 standard 7503 rent (structure 401) \N Portion of cost rent" (cost ID 7503)" 2016-09-26 09:40:09.165802+01 2016-09-26 09:40:09.165802+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 7903 standard 7503 rent (user 504) \N Portion of cost rent" (cost ID 7503)" 2016-09-26 09:40:09.166832+01 2016-09-26 09:40:09.166832+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 8003 root \N rent JDN3dfo30i Rent 2016-09-26 09:40:09.167918+01 2016-09-26 09:40:09.167918+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 8103 tax 8003 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.168936+01 2016-09-26 09:40:09.168936+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 200 200.000000 \N GBP \N \N \N \N \N \N | |
| 8203 tax 8003 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.1699+01 2016-09-26 09:40:09.1699+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 8303 standard 8003 rent (structure 401) \N Portion of cost rent" (cost ID 8003)" 2016-09-26 09:40:09.170868+01 2016-09-26 09:40:09.170868+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 8403 standard 8003 rent (user 604) \N Portion of cost rent" (cost ID 8003)" 2016-09-26 09:40:09.171889+01 2016-09-26 09:40:09.171889+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 8503 root \N rent skkndHDK2d Rent 2016-09-26 09:40:09.172938+01 2016-09-26 09:40:09.172938+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 8603 tax 8503 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.17397+01 2016-09-26 09:40:09.17397+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 200 200.000000 \N GBP \N \N \N \N \N \N | |
| 8703 tax 8503 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.174973+01 2016-09-26 09:40:09.174973+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 8803 standard 8503 rent (structure 401) \N Portion of cost rent" (cost ID 8503)" 2016-09-26 09:40:09.178721+01 2016-09-26 09:40:09.178721+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 8903 standard 8503 rent (user 704) \N Portion of cost rent" (cost ID 8503)" 2016-09-26 09:40:09.179835+01 2016-09-26 09:40:09.179835+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 9003 root \N rent BJSuuHHS62H Rent 2016-09-26 09:40:09.180952+01 2016-09-26 09:40:09.180952+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 9103 tax 9003 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.182019+01 2016-09-26 09:40:09.182019+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 200 200.000000 \N GBP \N \N \N \N \N \N | |
| 9203 tax 9003 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.183013+01 2016-09-26 09:40:09.183013+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 9303 standard 9003 rent (structure 401) \N Portion of cost rent" (cost ID 9003)" 2016-09-26 09:40:09.184067+01 2016-09-26 09:40:09.184067+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 9403 standard 9003 rent (user 804) \N Portion of cost rent" (cost ID 9003)" 2016-09-26 09:40:09.185178+01 2016-09-26 09:40:09.185178+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 9503 root \N rent Hk3j8302iijd82 Rent 2016-09-26 09:40:09.186271+01 2016-09-26 09:40:09.186271+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 9603 tax 9503 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.187342+01 2016-09-26 09:40:09.187342+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 200 200.000000 \N GBP \N \N \N \N \N \N | |
| 9703 tax 9503 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.188395+01 2016-09-26 09:40:09.188395+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 9803 standard 9503 rent (structure 401) \N Portion of cost rent" (cost ID 9503)" 2016-09-26 09:40:09.189458+01 2016-09-26 09:40:09.189458+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 9903 standard 9503 rent (user 904) \N Portion of cost rent" (cost ID 9503)" 2016-09-26 09:40:09.190514+01 2016-09-26 09:40:09.190514+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 10003 root \N rent sklk2hhdy2i Rent 2016-09-26 09:40:09.191639+01 2016-09-26 09:40:09.191639+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 10103 tax 10003 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.192683+01 2016-09-26 09:40:09.192683+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 200 200.000000 \N GBP \N \N \N \N \N \N | |
| 10203 tax 10003 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.193653+01 2016-09-26 09:40:09.193653+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 10303 standard 10003 rent (structure 401) \N Portion of cost rent" (cost ID 10003)" 2016-09-26 09:40:09.194653+01 2016-09-26 09:40:09.194653+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 10403 standard 10003 rent (user 1004) \N Portion of cost rent" (cost ID 10003)" 2016-09-26 09:40:09.19568+01 2016-09-26 09:40:09.19568+01 2016-02-14 00:00:00+00 ["2016-02-14 00:00:00+00","2016-02-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 10503 root \N rent skkldlk2o209dub Rent 2016-09-26 09:40:09.196709+01 2016-09-26 09:40:09.196709+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 10603 tax 10503 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.197729+01 2016-09-26 09:40:09.197729+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 200 200.000000 \N GBP \N \N \N \N \N \N | |
| 10703 tax 10503 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.198709+01 2016-09-26 09:40:09.198709+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 10803 standard 10503 rent (structure 401) \N Portion of cost rent" (cost ID 10503)" 2016-09-26 09:40:09.199725+01 2016-09-26 09:40:09.199725+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 10903 standard 10503 rent (user 504) \N Portion of cost rent" (cost ID 10503)" 2016-09-26 09:40:09.201202+01 2016-09-26 09:40:09.201202+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 11003 root \N rent nj23KJBK38 Rent 2016-09-26 09:40:09.202311+01 2016-09-26 09:40:09.202311+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 11103 tax 11003 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.203361+01 2016-09-26 09:40:09.203361+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 200 200.000000 \N GBP \N \N \N \N \N \N | |
| 11203 tax 11003 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.204457+01 2016-09-26 09:40:09.204457+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 11303 standard 11003 rent (structure 401) \N Portion of cost rent" (cost ID 11003)" 2016-09-26 09:40:09.205557+01 2016-09-26 09:40:09.205557+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 11403 standard 11003 rent (user 604) \N Portion of cost rent" (cost ID 11003)" 2016-09-26 09:40:09.206657+01 2016-09-26 09:40:09.206657+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 11503 root \N rent nj23KJBK38 Rent 2016-09-26 09:40:09.207719+01 2016-09-26 09:40:09.207719+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 11603 tax 11503 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.208752+01 2016-09-26 09:40:09.208752+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 200 200.000000 \N GBP \N \N \N \N \N \N | |
| 11703 tax 11503 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.209753+01 2016-09-26 09:40:09.209753+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 11803 standard 11503 rent (structure 401) \N Portion of cost rent" (cost ID 11503)" 2016-09-26 09:40:09.210754+01 2016-09-26 09:40:09.210754+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 11903 standard 11503 rent (user 704) \N Portion of cost rent" (cost ID 11503)" 2016-09-26 09:40:09.211795+01 2016-09-26 09:40:09.211795+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 12003 root \N rent 290029jelndu Rent 2016-09-26 09:40:09.212829+01 2016-09-26 09:40:09.212829+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 12103 tax 12003 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.213933+01 2016-09-26 09:40:09.213933+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 200 200.000000 \N GBP \N \N \N \N \N \N | |
| 12203 tax 12003 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.214981+01 2016-09-26 09:40:09.214981+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 12303 standard 12003 rent (structure 401) \N Portion of cost rent" (cost ID 12003)" 2016-09-26 09:40:09.21601+01 2016-09-26 09:40:09.21601+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 12403 standard 12003 rent (user 804) \N Portion of cost rent" (cost ID 12003)" 2016-09-26 09:40:09.217104+01 2016-09-26 09:40:09.217104+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 12503 root \N rent 20093dnjn200d Rent 2016-09-26 09:40:09.218194+01 2016-09-26 09:40:09.218194+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 12603 tax 12503 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.219297+01 2016-09-26 09:40:09.219297+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 200 200.000000 \N GBP \N \N \N \N \N \N | |
| 12703 tax 12503 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.22036+01 2016-09-26 09:40:09.22036+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 12803 standard 12503 rent (structure 401) \N Portion of cost rent" (cost ID 12503)" 2016-09-26 09:40:09.221431+01 2016-09-26 09:40:09.221431+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 12903 standard 12503 rent (user 904) \N Portion of cost rent" (cost ID 12503)" 2016-09-26 09:40:09.222522+01 2016-09-26 09:40:09.222522+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 13003 root \N rent dkldll3300dbdqs Rent 2016-09-26 09:40:09.223615+01 2016-09-26 09:40:09.223615+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 1000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 1000} | |
| 13103 tax 13003 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.224722+01 2016-09-26 09:40:09.224722+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 200 200.000000 \N GBP \N \N \N \N \N \N | |
| 13203 tax 13003 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.225786+01 2016-09-26 09:40:09.225786+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 13303 standard 13003 rent (structure 401) \N Portion of cost rent" (cost ID 13003)" 2016-09-26 09:40:09.226857+01 2016-09-26 09:40:09.226857+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 13403 standard 13003 rent (user 1004) \N Portion of cost rent" (cost ID 13003)" 2016-09-26 09:40:09.22792+01 2016-09-26 09:40:09.22792+01 2016-03-14 00:00:00+00 ["2016-03-14 00:00:00+00","2016-03-14 00:00:00+00"] 1000 1000.000000 1200 GBP 1200 GBP 1200 GBP \N \N | |
| 13503 root \N rent 28364yiDKJ390d Rent 2016-09-26 09:40:09.228998+01 2016-09-26 09:40:09.228998+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 2000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 2000} | |
| 13603 tax 13503 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.230069+01 2016-09-26 09:40:09.230069+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 400 400.000000 \N GBP \N \N \N \N \N \N | |
| 13703 tax 13503 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.231106+01 2016-09-26 09:40:09.231106+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 13803 standard 13503 rent (structure 401) \N Portion of cost rent" (cost ID 13503)" 2016-09-26 09:40:09.232154+01 2016-09-26 09:40:09.232154+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP \N \N | |
| 13903 standard 13503 rent (user 504) \N Portion of cost rent" (cost ID 13503)" 2016-09-26 09:40:09.233195+01 2016-09-26 09:40:09.233195+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP \N \N | |
| 14003 root \N rent skdjfillkkl Rent 2016-09-26 09:40:09.234286+01 2016-09-26 09:40:09.234286+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 2000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 2000} | |
| 14103 tax 14003 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.235413+01 2016-09-26 09:40:09.235413+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 400 400.000000 \N GBP \N \N \N \N \N \N | |
| 14203 tax 14003 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.236455+01 2016-09-26 09:40:09.236455+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 14303 standard 14003 rent (structure 401) \N Portion of cost rent" (cost ID 14003)" 2016-09-26 09:40:09.237447+01 2016-09-26 09:40:09.237447+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP \N \N | |
| 14403 standard 14003 rent (user 604) \N Portion of cost rent" (cost ID 14003)" 2016-09-26 09:40:09.238454+01 2016-09-26 09:40:09.238454+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP \N \N | |
| 14503 root \N rent nk38938HDl Rent 2016-09-26 09:40:09.239517+01 2016-09-26 09:40:09.239517+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 2000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 2000} | |
| 14603 tax 14503 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.240576+01 2016-09-26 09:40:09.240576+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 400 400.000000 \N GBP \N \N \N \N \N \N | |
| 14703 tax 14503 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.241613+01 2016-09-26 09:40:09.241613+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 14803 standard 14503 rent (structure 401) \N Portion of cost rent" (cost ID 14503)" 2016-09-26 09:40:09.242654+01 2016-09-26 09:40:09.242654+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP \N \N | |
| 14903 standard 14503 rent (user 704) \N Portion of cost rent" (cost ID 14503)" 2016-09-26 09:40:09.243709+01 2016-09-26 09:40:09.243709+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP \N \N | |
| 15003 root \N rent kdjjnk82930-3 Rent 2016-09-26 09:40:09.244795+01 2016-09-26 09:40:09.244795+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 2000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 2000} | |
| 15103 tax 15003 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.245848+01 2016-09-26 09:40:09.245848+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 400 400.000000 \N GBP \N \N \N \N \N \N | |
| 15203 tax 15003 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.246884+01 2016-09-26 09:40:09.246884+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 15303 standard 15003 rent (structure 401) \N Portion of cost rent" (cost ID 15003)" 2016-09-26 09:40:09.247942+01 2016-09-26 09:40:09.247942+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP \N \N | |
| 15403 standard 15003 rent (user 804) \N Portion of cost rent" (cost ID 15003)" 2016-09-26 09:40:09.248989+01 2016-09-26 09:40:09.248989+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP \N \N | |
| 15503 root \N rent 28984ubndkj Rent 2016-09-26 09:40:09.250059+01 2016-09-26 09:40:09.250059+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 2000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 2000} | |
| 15603 tax 15503 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.251121+01 2016-09-26 09:40:09.251121+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 400 400.000000 \N GBP \N \N \N \N \N \N | |
| 15703 tax 15503 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.252156+01 2016-09-26 09:40:09.252156+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 15803 standard 15503 rent (structure 401) \N Portion of cost rent" (cost ID 15503)" 2016-09-26 09:40:09.253218+01 2016-09-26 09:40:09.253218+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP \N \N | |
| 15903 standard 15503 rent (user 904) \N Portion of cost rent" (cost ID 15503)" 2016-09-26 09:40:09.254293+01 2016-09-26 09:40:09.254293+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP \N \N | |
| 16003 root \N rent aaqioqo234 Rent 2016-09-26 09:40:09.255376+01 2016-09-26 09:40:09.255376+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP {vat,dedvat} {"taxes": {"vat": 20, "dedvat": 0}, "initial": {"amount": 2000, "currency": "GBP"}, "quantity": 1, "supplier": "supplier 1", "unitCost": 2000} | |
| 16103 tax 16003 vat \N Tax 'vat' for the cost 2016-09-26 09:40:09.256508+01 2016-09-26 09:40:09.256508+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 400 400.000000 \N GBP \N \N \N \N \N \N | |
| 16203 tax 16003 dedvat \N Tax 'dedvat' for the cost 2016-09-26 09:40:09.257549+01 2016-09-26 09:40:09.257549+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 16303 standard 16003 rent (structure 401) \N Portion of cost rent" (cost ID 16003)" 2016-09-26 09:40:09.258587+01 2016-09-26 09:40:09.258587+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP \N \N | |
| 16403 standard 16003 rent (user 1004) \N Portion of cost rent" (cost ID 16003)" 2016-09-26 09:40:09.259597+01 2016-09-26 09:40:09.259597+01 2016-04-14 01:00:00+01 ["2016-04-14 00:00:00+01","2016-04-14 00:00:00+01"] 2000 2000.000000 2400 GBP 2400 GBP 2400 GBP \N \N | |
| 16503 root \N Fine Cost \N 2016-09-26 09:40:09.260648+01 2016-09-26 09:40:09.260648+01 2016-08-18 00:00:00+01 ["2016-08-17 23:00:00+01","2016-08-17 23:00:00+01"] 132 132.000000 132 GBP 132 GBP 132 GBP {vat,dedvat} {"user": {"id": 204, "ratio": 50, "lastname": "Egner", "firstname": "Demarcus"}, "taxes": {"vat": 0, "dedvat": 0}, "initial": {"amount": 132, "currency": "GBP"}, "quantity": 1, "unitCost": 132} | |
| 16603 tax 16503 vat \N Tax "vat" for the cost 2016-09-26 09:40:09.261733+01 2016-09-26 09:40:09.261733+01 2016-08-18 00:00:00+01 ["2016-08-17 23:00:00+01","2016-08-17 23:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 16703 tax 16503 dedvat \N Tax "dedvat" for the cost 2016-09-26 09:40:09.262772+01 2016-09-26 09:40:09.262772+01 2016-08-18 00:00:00+01 ["2016-08-17 23:00:00+01","2016-08-17 23:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 16803 root \N Fine Cost \N 2016-09-26 09:40:09.263776+01 2016-09-26 09:40:09.263776+01 2016-09-15 00:00:00+01 ["2016-09-14 23:00:00+01","2016-09-14 23:00:00+01"] 120 120.000000 120 GBP 120 GBP 120 GBP {vat,dedvat} {"user": {"id": 304, "ratio": 66.84210533391354, "lastname": "Casa", "firstname": "Mariano"}, "taxes": {"vat": 0, "dedvat": 0}, "initial": {"amount": 120, "currency": "GBP"}, "quantity": 1, "unitCost": 120} | |
| 16903 tax 16803 vat \N Tax "vat" for the cost 2016-09-26 09:40:09.264851+01 2016-09-26 09:40:09.264851+01 2016-09-15 00:00:00+01 ["2016-09-14 23:00:00+01","2016-09-14 23:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 17003 tax 16803 dedvat \N Tax "dedvat" for the cost 2016-09-26 09:40:09.265892+01 2016-09-26 09:40:09.265892+01 2016-09-15 00:00:00+01 ["2016-09-14 23:00:00+01","2016-09-14 23:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 17103 root \N Fine Cost \N 2016-09-26 09:40:09.266952+01 2016-09-26 09:40:09.266952+01 2016-08-09 00:00:00+01 ["2016-08-08 23:00:00+01","2016-08-08 23:00:00+01"] 50 50.000000 50 GBP 50 GBP 50 GBP {vat,dedvat} {"user": {"id": 404, "ratio": 66.84210533391354, "lastname": "Denver", "firstname": "Gordon"}, "taxes": {"vat": 0, "dedvat": 0}, "initial": {"amount": 50, "currency": "GBP"}, "quantity": 1, "unitCost": 50} | |
| 17203 tax 17103 vat \N Tax "vat" for the cost 2016-09-26 09:40:09.268019+01 2016-09-26 09:40:09.268019+01 2016-08-09 00:00:00+01 ["2016-08-08 23:00:00+01","2016-08-08 23:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 17303 tax 17103 dedvat \N Tax "dedvat" for the cost 2016-09-26 09:40:09.269079+01 2016-09-26 09:40:09.269079+01 2016-08-09 00:00:00+01 ["2016-08-08 23:00:00+01","2016-08-08 23:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 17403 root \N Fine Cost \N 2016-09-26 09:40:09.270102+01 2016-09-26 09:40:09.270102+01 2016-09-17 00:00:00+01 ["2016-09-16 23:00:00+01","2016-09-16 23:00:00+01"] 120 120.000000 120 GBP 120 GBP 120 GBP {vat,dedvat} {"user": {"id": 504, "ratio": 66.84210533391354, "lastname": "Amarante", "firstname": "Stuart"}, "taxes": {"vat": 0, "dedvat": 0}, "initial": {"amount": 120, "currency": "GBP"}, "quantity": 1, "unitCost": 120} | |
| 17503 tax 17403 vat \N Tax "vat" for the cost 2016-09-26 09:40:09.271095+01 2016-09-26 09:40:09.271095+01 2016-09-17 00:00:00+01 ["2016-09-16 23:00:00+01","2016-09-16 23:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 17603 tax 17403 dedvat \N Tax "dedvat" for the cost 2016-09-26 09:40:09.272049+01 2016-09-26 09:40:09.272049+01 2016-09-17 00:00:00+01 ["2016-09-16 23:00:00+01","2016-09-16 23:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 17703 root \N Fine Cost \N 2016-09-26 09:40:09.27303+01 2016-09-26 09:40:09.27303+01 2016-09-01 00:00:00+01 ["2016-08-31 23:00:00+01","2016-08-31 23:00:00+01"] 250 250.000000 250 GBP 250 GBP 250 GBP {vat,dedvat} {"user": {"id": 604, "ratio": 66.84210533391354, "lastname": "Pauling", "firstname": "Charley"}, "taxes": {"vat": 0, "dedvat": 0}, "initial": {"amount": 250, "currency": "GBP"}, "quantity": 1, "unitCost": 250} | |
| 17803 tax 17703 vat \N Tax "vat" for the cost 2016-09-26 09:40:09.274029+01 2016-09-26 09:40:09.274029+01 2016-09-01 00:00:00+01 ["2016-08-31 23:00:00+01","2016-08-31 23:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 17903 tax 17703 dedvat \N Tax "dedvat" for the cost 2016-09-26 09:40:09.275023+01 2016-09-26 09:40:09.275023+01 2016-09-01 00:00:00+01 ["2016-08-31 23:00:00+01","2016-08-31 23:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 18003 root \N Fine Cost \N 2016-09-26 09:40:09.276071+01 2016-09-26 09:40:09.276071+01 2016-08-18 00:00:00+01 ["2016-08-17 23:00:00+01","2016-08-17 23:00:00+01"] 132 132.000000 132 GBP 132 GBP 132 GBP {vat,dedvat} {"user": {"id": 704, "ratio": 50, "lastname": "Perillo", "firstname": "Wes"}, "taxes": {"vat": 0, "dedvat": 0}, "initial": {"amount": 132, "currency": "GBP"}, "quantity": 1, "unitCost": 132} | |
| 18103 tax 18003 vat \N Tax "vat" for the cost 2016-09-26 09:40:09.277062+01 2016-09-26 09:40:09.277062+01 2016-08-18 00:00:00+01 ["2016-08-17 23:00:00+01","2016-08-17 23:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 18203 tax 18003 dedvat \N Tax "dedvat" for the cost 2016-09-26 09:40:09.278054+01 2016-09-26 09:40:09.278054+01 2016-08-18 00:00:00+01 ["2016-08-17 23:00:00+01","2016-08-17 23:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 18303 root \N Fine Cost \N 2016-09-26 09:40:09.279039+01 2016-09-26 09:40:09.279039+01 2016-09-15 00:00:00+01 ["2016-09-14 23:00:00+01","2016-09-14 23:00:00+01"] 120 120.000000 120 GBP 120 GBP 120 GBP {vat,dedvat} {"user": {"id": 804, "ratio": 66.84210533391354, "lastname": "Lacey", "firstname": "Bruno"}, "taxes": {"vat": 0, "dedvat": 0}, "initial": {"amount": 120, "currency": "GBP"}, "quantity": 1, "unitCost": 120} | |
| 18403 tax 18303 vat \N Tax "vat" for the cost 2016-09-26 09:40:09.280044+01 2016-09-26 09:40:09.280044+01 2016-09-15 00:00:00+01 ["2016-09-14 23:00:00+01","2016-09-14 23:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 18503 tax 18303 dedvat \N Tax "dedvat" for the cost 2016-09-26 09:40:09.281022+01 2016-09-26 09:40:09.281022+01 2016-09-15 00:00:00+01 ["2016-09-14 23:00:00+01","2016-09-14 23:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 18603 root \N Fine Cost \N 2016-09-26 09:40:09.28203+01 2016-09-26 09:40:09.28203+01 2016-08-09 00:00:00+01 ["2016-08-08 23:00:00+01","2016-08-08 23:00:00+01"] 50 50.000000 50 GBP 50 GBP 50 GBP {vat,dedvat} {"user": {"id": 904, "ratio": 66.84210533391354, "lastname": "Damron", "firstname": "Rodger"}, "taxes": {"vat": 0, "dedvat": 0}, "initial": {"amount": 50, "currency": "GBP"}, "quantity": 1, "unitCost": 50} | |
| 18703 tax 18603 vat \N Tax "vat" for the cost 2016-09-26 09:40:09.283024+01 2016-09-26 09:40:09.283024+01 2016-08-09 00:00:00+01 ["2016-08-08 23:00:00+01","2016-08-08 23:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 18803 tax 18603 dedvat \N Tax "dedvat" for the cost 2016-09-26 09:40:09.283997+01 2016-09-26 09:40:09.283997+01 2016-08-09 00:00:00+01 ["2016-08-08 23:00:00+01","2016-08-08 23:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 18903 root \N Fine Cost \N 2016-09-26 09:40:09.285005+01 2016-09-26 09:40:09.285005+01 2016-09-17 00:00:00+01 ["2016-09-16 23:00:00+01","2016-09-16 23:00:00+01"] 120 120.000000 120 GBP 120 GBP 120 GBP {vat,dedvat} {"user": {"id": 1004, "ratio": 66.84210533391354, "lastname": "Addario", "firstname": "Preston"}, "taxes": {"vat": 0, "dedvat": 0}, "initial": {"amount": 120, "currency": "GBP"}, "quantity": 1, "unitCost": 120} | |
| 19003 tax 18903 vat \N Tax "vat" for the cost 2016-09-26 09:40:09.286079+01 2016-09-26 09:40:09.286079+01 2016-09-17 00:00:00+01 ["2016-09-16 23:00:00+01","2016-09-16 23:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| 19103 tax 18903 dedvat \N Tax "dedvat" for the cost 2016-09-26 09:40:09.287112+01 2016-09-26 09:40:09.287112+01 2016-09-17 00:00:00+01 ["2016-09-16 23:00:00+01","2016-09-16 23:00:00+01"] 0 0.000000 \N GBP \N \N \N \N \N \N | |
| \. | |
| -- | |
| -- Data for Name: countries; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY countries (id, code, name, attributes, created, updated) FROM stdin; | |
| 31 GB United Kingdom {} 2016-09-26 09:39:57.141835 2016-09-26 09:39:57.141835 | |
| 131 AE United Arab Emirates {} 2016-09-26 09:41:11.3038 2016-09-26 09:41:11.3038 | |
| 231 AD Andorra {} 2016-09-26 09:41:11.30442 2016-09-26 09:41:11.30442 | |
| 331 AL Albania {} 2016-09-26 09:41:11.305109 2016-09-26 09:41:11.305109 | |
| 431 CY Cyprus {} 2016-09-26 09:41:11.325759 2016-09-26 09:41:11.325759 | |
| 531 CZ Czech Republic {} 2016-09-26 09:41:11.326305 2016-09-26 09:41:11.326305 | |
| 631 DE Germany {} 2016-09-26 09:41:11.328377 2016-09-26 09:41:11.328377 | |
| 731 AT Austria {} 2016-09-26 09:41:11.329007 2016-09-26 09:41:11.329007 | |
| 831 BA Bosnia and Herzegovina {} 2016-09-26 09:41:11.329535 2016-09-26 09:41:11.329535 | |
| 931 BE Belgium {} 2016-09-26 09:41:11.332749 2016-09-26 09:41:11.332749 | |
| 1031 BY Belarus {} 2016-09-26 09:41:11.333154 2016-09-26 09:41:11.333154 | |
| 1131 BG Bulgaria {} 2016-09-26 09:41:11.333544 2016-09-26 09:41:11.333544 | |
| 1231 CH Switzerland {} 2016-09-26 09:41:11.333797 2016-09-26 09:41:11.333797 | |
| 1331 BH Bahrain {} 2016-09-26 09:41:11.335217 2016-09-26 09:41:11.335217 | |
| 1431 DK Denmark {} 2016-09-26 09:41:11.336649 2016-09-26 09:41:11.336649 | |
| 1531 DZ Algeria {} 2016-09-26 09:41:11.337664 2016-09-26 09:41:11.337664 | |
| 1631 EE Estonia {} 2016-09-26 09:41:11.337902 2016-09-26 09:41:11.337902 | |
| 1731 ES Spain {} 2016-09-26 09:41:11.338121 2016-09-26 09:41:11.338121 | |
| 1831 FI Finland {} 2016-09-26 09:41:11.338406 2016-09-26 09:41:11.338406 | |
| 1931 FR France {} 2016-09-26 09:41:11.33865 2016-09-26 09:41:11.33865 | |
| 2031 GR Greece {} 2016-09-26 09:41:11.338856 2016-09-26 09:41:11.338856 | |
| 2131 HR Croatia {} 2016-09-26 09:41:11.339617 2016-09-26 09:41:11.339617 | |
| 2231 HU Hungary {} 2016-09-26 09:41:11.339981 2016-09-26 09:41:11.339981 | |
| 2331 IE Ireland {} 2016-09-26 09:41:11.340498 2016-09-26 09:41:11.340498 | |
| 2431 IS Iceland {} 2016-09-26 09:41:11.340717 2016-09-26 09:41:11.340717 | |
| 2531 IT Italy {} 2016-09-26 09:41:11.341157 2016-09-26 09:41:11.341157 | |
| 2631 LI Liechtenstein {} 2016-09-26 09:41:11.341398 2016-09-26 09:41:11.341398 | |
| 2731 LT Lithuania {} 2016-09-26 09:41:11.341679 2016-09-26 09:41:11.341679 | |
| 2831 LU Luxembourg {} 2016-09-26 09:41:11.341867 2016-09-26 09:41:11.341867 | |
| 2931 LV Latvia {} 2016-09-26 09:41:11.342247 2016-09-26 09:41:11.342247 | |
| 3031 MA Morocco {} 2016-09-26 09:41:11.34275 2016-09-26 09:41:11.34275 | |
| 3131 MC Monaco {} 2016-09-26 09:41:11.342961 2016-09-26 09:41:11.342961 | |
| 3231 MD Moldova {} 2016-09-26 09:41:11.343253 2016-09-26 09:41:11.343253 | |
| 3331 ME Montenegro {} 2016-09-26 09:41:11.343469 2016-09-26 09:41:11.343469 | |
| 3431 MK Macedonia {} 2016-09-26 09:41:11.343754 2016-09-26 09:41:11.343754 | |
| 3531 MT Malta {} 2016-09-26 09:41:11.343985 2016-09-26 09:41:11.343985 | |
| 3631 NL Netherlands {} 2016-09-26 09:41:11.34417 2016-09-26 09:41:11.34417 | |
| 3731 NO Norway {} 2016-09-26 09:41:11.344352 2016-09-26 09:41:11.344352 | |
| 3831 PL Poland {} 2016-09-26 09:41:11.344536 2016-09-26 09:41:11.344536 | |
| 3931 PT Portugal {} 2016-09-26 09:41:11.344754 2016-09-26 09:41:11.344754 | |
| 4031 QA Qatar {} 2016-09-26 09:41:11.344939 2016-09-26 09:41:11.344939 | |
| 4131 RO Romania {} 2016-09-26 09:41:11.345118 2016-09-26 09:41:11.345118 | |
| 4231 RS Serbia {} 2016-09-26 09:41:11.345302 2016-09-26 09:41:11.345302 | |
| 4331 RU Russia {} 2016-09-26 09:41:11.351406 2016-09-26 09:41:11.351406 | |
| 4431 SE Sweden {} 2016-09-26 09:41:11.352768 2016-09-26 09:41:11.352768 | |
| 4531 SK Slovakia {} 2016-09-26 09:41:11.352999 2016-09-26 09:41:11.352999 | |
| 4631 SI Slovenia {} 2016-09-26 09:41:11.353734 2016-09-26 09:41:11.353734 | |
| 4731 TN Tunisia {} 2016-09-26 09:41:11.354016 2016-09-26 09:41:11.354016 | |
| 4831 UA Ukraine {} 2016-09-26 09:41:11.35419 2016-09-26 09:41:11.35419 | |
| \. | |
| -- | |
| -- Name: countryid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('countryid', 4831, true); | |
| -- | |
| -- Data for Name: damages; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY damages (id, damage_date, asset_id, cost_id, attributes, created, updated) FROM stdin; | |
| \. | |
| -- | |
| -- Name: damagesid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('damagesid', 28, false); | |
| -- | |
| -- Data for Name: dbchanges; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY dbchanges (filename, applied, success, error_log) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: emails; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY emails (id, entity_id, email, search) FROM stdin; | |
| 1 9 [email protected] '[email protected]':1 | |
| 2 9 [email protected] '[email protected]':1 | |
| 3 109 [email protected] '[email protected]':1 | |
| 4 14 [email protected] '[email protected]':1 | |
| 5 114 [email protected] '[email protected]':1 | |
| \. | |
| -- | |
| -- Name: emails_id_seq; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('emails_id_seq', 5, true); | |
| -- | |
| -- Name: eventid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('eventid', 167913, true); | |
| -- | |
| -- Data for Name: events; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY events (id, eventstype, type, title, description, created, occurs, notify_at, notified, attributes) FROM stdin; | |
| 13 20 accident Accident on the M25 Accident on the M25 with a truck. 2015-12-02 10:56:33 2015-10-01 10:32:00+01 \N t \N | |
| 113 20 accident Accident on the M20 Accident on the M20 with a motorbike. 2015-12-02 10:56:33 2015-10-04 13:12:00+01 \N t \N | |
| 213 120 insurance Insurance renewal Insurance renewal 2015-12-02 10:56:33 2017-11-01 00:00:00+00 \N t \N | |
| 313 220 maintenance MOT due MOT due with company A 2015-12-02 10:56:33 2016-01-01 00:00:00+00 \N t \N | |
| 413 320 fine Bad parking place Bad parking place in Cheshunt 2015-12-11 10:32:33 2015-12-11 10:32:33+00 \N t \N | |
| 513 320 fine Bad parking place Bad parking place in Broxbourne 2015-12-11 10:32:33 2015-12-11 10:32:33+00 \N t \N | |
| 613 320 fine Bad parking place Bad parking place in Enfield 2015-12-11 10:32:33 2015-12-11 10:32:33+00 \N t \N | |
| 713 320 fine Speed camera Caught on speed camera at 64mph instead of 50mph 2015-11-01 08:32:33 2015-11-01 08:32:33+00 \N t \N | |
| 813 320 fine Speed camera Caught on speed camera at 80mph instead of 50mph 2015-11-10 09:32:33 2015-11-10 09:32:33+00 \N t \N | |
| 913 220 maintenance MOT due MOT due with Renault 2012-02-02 10:48:00 2013-02-01 11:26:00+00 \N f \N | |
| 1013 220 maintenance MOT due MOT due with Alfa Romeo 2012-05-28 10:05:00 2013-05-28 19:59:00+01 \N f \N | |
| 1113 220 maintenance MOT due MOT due with Audi 2011-02-03 11:46:00 2012-02-03 15:19:00+00 \N f \N | |
| 1213 220 maintenance MOT due MOT due with Audi 2011-03-20 12:02:00 2012-03-19 17:14:00+00 \N f \N | |
| 1313 220 maintenance MOT due MOT due with Audi 2013-02-21 17:06:00 2014-02-21 16:46:00+00 \N f \N | |
| 1413 220 maintenance MOT due MOT due with Audi 2011-06-14 16:26:00 2012-06-13 17:03:00+01 \N f \N | |
| 1513 220 maintenance MOT due MOT due with Audi 2013-02-13 17:48:00 2014-02-13 13:46:00+00 \N f \N | |
| 1613 220 maintenance MOT due MOT due with Audi 2011-11-16 16:39:00 2012-11-15 09:29:00+00 \N f \N | |
| 1713 220 maintenance MOT due MOT due with Bmw 2011-05-20 15:57:00 2012-05-19 12:06:00+01 \N f \N | |
| 1813 220 maintenance MOT due MOT due with Bmw 2011-10-18 08:06:00 2012-10-17 12:44:00+01 \N f \N | |
| 1913 220 maintenance MOT due MOT due with Citroen 2012-07-22 17:45:00 2013-07-22 19:42:00+01 \N f \N | |
| 2013 220 maintenance MOT due MOT due with Citroen 2013-06-29 08:04:00 2014-06-29 12:24:00+01 \N f \N | |
| 2113 220 maintenance MOT due MOT due with Fiat 2013-01-06 13:14:00 2014-01-06 17:49:00+00 \N f \N | |
| 2213 220 maintenance MOT due MOT due with Fiat 2012-03-21 12:50:00 2013-03-21 17:12:00+00 \N f \N | |
| 2313 220 maintenance MOT due MOT due with Ford 2012-12-01 08:47:00 2013-12-01 12:08:00+00 \N f \N | |
| 2413 220 maintenance MOT due MOT due with Ford 2013-02-24 11:17:00 2014-02-24 15:22:00+00 \N f \N | |
| 2513 220 maintenance MOT due MOT due with Ford 2012-04-03 15:26:00 2013-04-03 18:20:00+01 \N f \N | |
| 2613 220 maintenance MOT due MOT due with Ford 2012-10-19 12:54:00 2013-10-19 18:28:00+01 \N f \N | |
| 2713 220 maintenance MOT due MOT due with Ford 2013-03-30 10:44:00 2014-03-30 11:02:00+01 \N f \N | |
| 2813 220 maintenance MOT due MOT due with Honda 2012-02-21 19:01:00 2013-02-20 12:21:00+00 \N f \N | |
| 2913 220 maintenance MOT due MOT due with Honda 2011-11-05 18:38:00 2012-11-04 13:06:00+00 \N f \N | |
| 3013 220 maintenance MOT due MOT due with Honda 2011-08-17 13:41:00 2012-08-16 13:51:00+01 \N f \N | |
| 3113 220 maintenance MOT due MOT due with Honda 2011-09-07 13:12:00 2012-09-06 18:34:00+01 \N f \N | |
| 3213 220 maintenance MOT due MOT due with Hyundai 2011-06-22 12:03:00 2012-06-21 12:13:00+01 \N f \N | |
| 3313 220 maintenance MOT due MOT due with Hyundai 2013-06-04 10:24:00 2014-06-04 16:44:00+01 \N f \N | |
| 3413 220 maintenance MOT due MOT due with Hyundai 2012-08-22 09:55:00 2013-08-22 19:39:00+01 \N f \N | |
| 3513 220 maintenance MOT due MOT due with Hyundai 2012-07-23 09:10:00 2013-07-23 13:21:00+01 \N f \N | |
| 3613 220 maintenance MOT due MOT due with Jeep 2011-11-21 19:37:00 2012-11-20 08:12:00+00 \N f \N | |
| 3713 220 maintenance MOT due MOT due with Kia 2011-08-20 12:20:00 2012-08-19 10:51:00+01 \N f \N | |
| 3813 220 maintenance MOT due MOT due with Kia 2011-04-30 13:27:00 2012-04-29 13:33:00+01 \N f \N | |
| 3913 220 maintenance MOT due MOT due with Kia 2012-12-13 09:43:00 2013-12-13 19:05:00+00 \N f \N | |
| 4013 220 maintenance MOT due MOT due with Kia 2011-08-10 16:43:00 2012-08-09 19:50:00+01 \N f \N | |
| 4113 220 maintenance MOT due MOT due with Kia 2012-02-02 10:07:00 2013-02-01 13:49:00+00 \N f \N | |
| 4213 220 maintenance MOT due MOT due with Kia 2013-05-08 15:24:00 2014-05-08 11:41:00+01 \N f \N | |
| 4313 220 maintenance MOT due MOT due with Kia 2013-03-21 18:34:00 2014-03-21 18:39:00+00 \N f \N | |
| 4413 220 maintenance MOT due MOT due with Mazda 2011-01-11 13:43:00 2012-01-11 08:18:00+00 \N f \N | |
| 4513 220 maintenance MOT due MOT due with Mazda 2011-02-18 10:54:00 2012-02-18 17:28:00+00 \N f \N | |
| 4613 220 maintenance MOT due MOT due with Mazda 2012-01-29 12:40:00 2013-01-28 09:39:00+00 \N f \N | |
| 4713 220 maintenance MOT due MOT due with Mazda 2010-12-26 09:45:00 2011-12-26 08:30:00+00 \N f \N | |
| 4813 220 maintenance MOT due MOT due with Mazda 2010-11-25 16:17:00 2011-11-25 18:43:00+00 \N f \N | |
| 4913 220 maintenance MOT due MOT due with Mercedes-Benz 2012-04-09 09:53:00 2013-04-09 10:50:00+01 \N f \N | |
| 5013 220 maintenance MOT due MOT due with Mercedes-Benz 2011-12-28 10:18:00 2012-12-27 12:41:00+00 \N f \N | |
| 5113 220 maintenance MOT due MOT due with Mercedes-Benz 2011-07-21 08:11:00 2012-07-20 10:28:00+01 \N f \N | |
| 5213 220 maintenance MOT due MOT due with Mercedes-Benz 2012-09-27 19:28:00 2013-09-27 18:21:00+01 \N f \N | |
| 5313 220 maintenance MOT due MOT due with Mercedes-Benz 2012-02-02 14:24:00 2013-02-01 11:19:00+00 \N f \N | |
| 5413 220 maintenance MOT due MOT due with Mercedes-Benz 2013-01-09 19:41:00 2014-01-09 19:19:00+00 \N f \N | |
| 5513 220 maintenance MOT due MOT due with Mercedes-Benz 2012-12-04 09:39:00 2013-12-04 12:50:00+00 \N f \N | |
| 5613 220 maintenance MOT due MOT due with Mercedes-Benz 2011-10-02 13:19:00 2012-10-01 10:50:00+01 \N f \N | |
| 5713 220 maintenance MOT due MOT due with Mitsubishi 2011-06-19 17:03:00 2012-06-18 16:29:00+01 \N f \N | |
| 5813 220 maintenance MOT due MOT due with Mitsubishi 2012-04-30 16:38:00 2013-04-30 14:32:00+01 \N f \N | |
| 5913 220 maintenance MOT due MOT due with Mitsubishi 2012-06-23 15:09:00 2013-06-23 09:35:00+01 \N f \N | |
| 6013 220 maintenance MOT due MOT due with Opel 2011-07-22 12:51:00 2012-07-21 18:55:00+01 \N f \N | |
| 6113 220 maintenance MOT due MOT due with Opel 2011-06-30 08:46:00 2012-06-29 08:00:00+01 \N f \N | |
| 6213 220 maintenance MOT due MOT due with Opel 2011-04-11 14:11:00 2012-04-10 14:06:00+01 \N f \N | |
| 6313 220 maintenance MOT due MOT due with Opel 2012-08-26 14:15:00 2013-08-26 14:27:00+01 \N f \N | |
| 6413 220 maintenance MOT due MOT due with Peugeot 2012-12-16 13:41:00 2013-12-16 18:45:00+00 \N f \N | |
| 6513 220 maintenance MOT due MOT due with Peugeot 2013-07-14 09:40:00 2014-07-14 11:14:00+01 \N f \N | |
| 6613 220 maintenance MOT due MOT due with Renault 2013-03-21 08:12:00 2014-03-21 13:29:00+00 \N f \N | |
| 6713 220 maintenance MOT due MOT due with Renault 2013-06-20 18:57:00 2014-06-20 16:21:00+01 \N f \N | |
| 6813 220 maintenance MOT due MOT due with Renault 2011-09-19 16:25:00 2012-09-18 18:02:00+01 \N f \N | |
| 6913 220 maintenance MOT due MOT due with Skoda 2011-03-27 12:35:00 2012-03-26 16:45:00+01 \N f \N | |
| 7013 220 maintenance MOT due MOT due with Skoda 2011-03-24 09:30:00 2012-03-23 12:05:00+00 \N f \N | |
| 7113 220 maintenance MOT due MOT due with Skoda 2011-05-20 11:31:00 2012-05-19 15:31:00+01 \N f \N | |
| 7213 220 maintenance MOT due MOT due with Suzuki 2012-05-14 17:02:00 2013-05-14 19:17:00+01 \N f \N | |
| 7313 220 maintenance MOT due MOT due with Suzuki 2013-06-29 15:32:00 2014-06-29 08:27:00+01 \N f \N | |
| 7413 220 maintenance MOT due MOT due with Toyota 2011-04-30 16:13:00 2012-04-29 18:10:00+01 \N f \N | |
| 7513 220 maintenance MOT due MOT due with Volkswagen 2013-05-03 16:03:00 2014-05-03 08:41:00+01 \N f \N | |
| 7613 220 maintenance MOT due MOT due with Volkswagen 2012-01-03 08:46:00 2013-01-02 09:06:00+00 \N f \N | |
| 7713 220 maintenance MOT due MOT due with Volvo 2011-06-20 18:36:00 2012-06-19 16:40:00+01 \N f \N | |
| 7813 220 maintenance MOT due MOT due with Alfa Romeo 2013-06-23 19:22:00 2014-06-23 10:13:00+01 \N f \N | |
| 7913 220 maintenance MOT due MOT due with Audi 2011-03-04 18:26:00 2012-03-03 09:04:00+00 \N f \N | |
| 8013 220 maintenance MOT due MOT due with Audi 2012-10-16 08:01:00 2013-10-16 19:25:00+01 \N f \N | |
| 8113 220 maintenance MOT due MOT due with Audi 2013-02-03 09:05:00 2014-02-03 11:26:00+00 \N f \N | |
| 8213 220 maintenance MOT due MOT due with Audi 2012-12-24 10:59:00 2013-12-24 18:01:00+00 \N f \N | |
| 8313 220 maintenance MOT due MOT due with Audi 2013-07-07 08:54:00 2014-07-07 17:45:00+01 \N f \N | |
| 8413 220 maintenance MOT due MOT due with Audi 2013-04-09 13:23:00 2014-04-09 08:30:00+01 \N f \N | |
| 8513 220 maintenance MOT due MOT due with Bmw 2011-05-16 13:32:00 2012-05-15 14:25:00+01 \N f \N | |
| 8613 220 maintenance MOT due MOT due with Bmw 2010-12-09 18:45:00 2011-12-09 15:07:00+00 \N f \N | |
| 8713 220 maintenance MOT due MOT due with Citroen 2012-10-27 08:42:00 2013-10-27 19:32:00+00 \N f \N | |
| 8813 220 maintenance MOT due MOT due with Citroen 2012-08-14 17:39:00 2013-08-14 13:57:00+01 \N f \N | |
| 8913 220 maintenance MOT due MOT due with Fiat 2012-01-17 11:28:00 2013-01-16 19:15:00+00 \N f \N | |
| 9013 220 maintenance MOT due MOT due with Fiat 2012-05-06 18:57:00 2013-05-06 09:02:00+01 \N f \N | |
| 9113 220 maintenance MOT due MOT due with Ford 2011-05-22 14:57:00 2012-05-21 19:13:00+01 \N f \N | |
| 9213 220 maintenance MOT due MOT due with Ford 2012-08-12 16:22:00 2013-08-12 09:39:00+01 \N f \N | |
| 9313 220 maintenance MOT due MOT due with Ford 2013-02-21 14:41:00 2014-02-21 18:23:00+00 \N f \N | |
| 9413 220 maintenance MOT due MOT due with Ford 2012-01-22 17:26:00 2013-01-21 18:01:00+00 \N f \N | |
| 9513 220 maintenance MOT due MOT due with Ford 2013-03-13 09:49:00 2014-03-13 13:51:00+00 \N f \N | |
| 9613 220 maintenance MOT due MOT due with Honda 2010-11-25 13:14:00 2011-11-25 13:47:00+00 \N f \N | |
| 9713 220 maintenance MOT due MOT due with Honda 2012-01-27 18:41:00 2013-01-26 11:22:00+00 \N f \N | |
| 9813 220 maintenance MOT due MOT due with Honda 2011-04-10 10:56:00 2012-04-09 17:06:00+01 \N f \N | |
| 9913 220 maintenance MOT due MOT due with Honda 2012-04-18 15:39:00 2013-04-18 09:53:00+01 \N f \N | |
| 10013 220 maintenance MOT due MOT due with Hyundai 2012-01-27 12:05:00 2013-01-26 15:38:00+00 \N f \N | |
| 10113 220 maintenance MOT due MOT due with Hyundai 2012-01-13 10:14:00 2013-01-12 11:13:00+00 \N f \N | |
| 10213 220 maintenance MOT due MOT due with Hyundai 2012-01-06 18:16:00 2013-01-05 17:14:00+00 \N f \N | |
| 10313 220 maintenance MOT due MOT due with Hyundai 2011-04-19 19:38:00 2012-04-18 17:12:00+01 \N f \N | |
| 10413 220 maintenance MOT due MOT due with Jeep 2012-02-15 19:13:00 2013-02-14 10:45:00+00 \N f \N | |
| 10513 220 maintenance MOT due MOT due with Kia 2011-09-29 09:48:00 2012-09-28 13:19:00+01 \N f \N | |
| 10613 220 maintenance MOT due MOT due with Kia 2010-12-02 10:39:00 2011-12-02 17:24:00+00 \N f \N | |
| 10713 220 maintenance MOT due MOT due with Kia 2013-07-22 17:54:00 2014-07-22 14:58:00+01 \N f \N | |
| 10813 220 maintenance MOT due MOT due with Kia 2010-12-09 08:20:00 2011-12-09 08:26:00+00 \N f \N | |
| 10913 220 maintenance MOT due MOT due with Kia 2013-03-25 15:46:00 2014-03-25 12:56:00+00 \N f \N | |
| 11013 220 maintenance MOT due MOT due with Kia 2011-05-15 17:42:00 2012-05-14 13:50:00+01 \N f \N | |
| 11113 220 maintenance MOT due MOT due with Kia 2011-04-04 15:15:00 2012-04-03 17:56:00+01 \N f \N | |
| 11213 220 maintenance MOT due MOT due with Mazda 2011-07-28 19:30:00 2012-07-27 15:05:00+01 \N f \N | |
| 11313 220 maintenance MOT due MOT due with Mazda 2012-07-27 19:11:00 2013-07-27 11:27:00+01 \N f \N | |
| 11413 220 maintenance MOT due MOT due with Mazda 2010-10-28 13:31:00 2011-10-28 10:25:00+01 \N f \N | |
| 11513 220 maintenance MOT due MOT due with Mazda 2011-09-16 18:48:00 2012-09-15 12:49:00+01 \N f \N | |
| 11613 220 maintenance MOT due MOT due with Mazda 2013-01-26 15:03:00 2014-01-26 08:39:00+00 \N f \N | |
| 11713 220 maintenance MOT due MOT due with Mercedes-Benz 2011-03-30 08:27:00 2012-03-29 08:51:00+01 \N f \N | |
| 11813 220 maintenance MOT due MOT due with Mercedes-Benz 2012-09-12 12:00:00 2013-09-12 18:48:00+01 \N f \N | |
| 11913 220 maintenance MOT due MOT due with Mercedes-Benz 2011-01-06 09:16:00 2012-01-06 08:06:00+00 \N f \N | |
| 12013 220 maintenance MOT due MOT due with Mercedes-Benz 2012-05-01 10:12:00 2013-05-01 14:31:00+01 \N f \N | |
| 12113 220 maintenance MOT due MOT due with Mercedes-Benz 2012-04-29 09:24:00 2013-04-29 13:22:00+01 \N f \N | |
| 12213 220 maintenance MOT due MOT due with Mercedes-Benz 2010-12-10 18:51:00 2011-12-10 19:59:00+00 \N f \N | |
| 12313 220 maintenance MOT due MOT due with Mercedes-Benz 2011-02-25 11:53:00 2012-02-25 12:59:00+00 \N f \N | |
| 12413 220 maintenance MOT due MOT due with Mercedes-Benz 2011-05-19 10:54:00 2012-05-18 13:42:00+01 \N f \N | |
| 12513 220 maintenance MOT due MOT due with Mitsubishi 2013-01-21 16:00:00 2014-01-21 19:55:00+00 \N f \N | |
| 12613 220 maintenance MOT due MOT due with Mitsubishi 2011-08-09 15:16:00 2012-08-08 14:43:00+01 \N f \N | |
| 12713 220 maintenance MOT due MOT due with Mitsubishi 2012-11-02 11:33:00 2013-11-02 18:11:00+00 \N f \N | |
| 12813 220 maintenance MOT due MOT due with Opel 2013-03-09 17:11:00 2014-03-09 17:09:00+00 \N f \N | |
| 12913 220 maintenance MOT due MOT due with Opel 2012-10-09 17:14:00 2013-10-09 15:01:00+01 \N f \N | |
| 13013 220 maintenance MOT due MOT due with Opel 2012-01-18 16:36:00 2013-01-17 15:59:00+00 \N f \N | |
| 13113 220 maintenance MOT due MOT due with Opel 2012-03-17 08:19:00 2013-03-17 18:40:00+00 \N f \N | |
| 13213 220 maintenance MOT due MOT due with Peugeot 2012-01-10 15:06:00 2013-01-09 15:54:00+00 \N f \N | |
| 13313 220 maintenance MOT due MOT due with Peugeot 2013-01-13 17:59:00 2014-01-13 14:33:00+00 \N f \N | |
| 13413 220 maintenance MOT due MOT due with Renault 2011-05-29 09:52:00 2012-05-28 16:35:00+01 \N f \N | |
| 13513 220 maintenance MOT due MOT due with Renault 2013-05-05 11:21:00 2014-05-05 16:17:00+01 \N f \N | |
| 13613 220 maintenance MOT due MOT due with Renault 2013-01-01 09:21:00 2014-01-01 09:06:00+00 \N f \N | |
| 13713 220 maintenance MOT due MOT due with Skoda 2010-12-15 17:56:00 2011-12-15 15:01:00+00 \N f \N | |
| 13813 220 maintenance MOT due MOT due with Skoda 2012-08-23 10:04:00 2013-08-23 09:00:00+01 \N f \N | |
| 13913 220 maintenance MOT due MOT due with Skoda 2011-06-22 18:25:00 2012-06-21 08:31:00+01 \N f \N | |
| 14013 220 maintenance MOT due MOT due with Suzuki 2012-10-23 19:30:00 2013-10-23 16:57:00+01 \N f \N | |
| 14113 220 maintenance MOT due MOT due with Suzuki 2012-10-22 13:35:00 2013-10-22 13:16:00+01 \N f \N | |
| 14213 220 maintenance MOT due MOT due with Toyota 2012-12-22 17:40:00 2013-12-22 16:18:00+00 \N f \N | |
| 14313 220 maintenance MOT due MOT due with Volkswagen 2011-06-04 09:33:00 2012-06-03 13:29:00+01 \N f \N | |
| 14413 220 maintenance MOT due MOT due with Volkswagen 2013-02-06 18:54:00 2014-02-06 13:06:00+00 \N f \N | |
| 14513 220 maintenance MOT due MOT due with Volvo 2013-02-13 17:34:00 2014-02-13 14:03:00+00 \N f \N | |
| 14613 220 maintenance MOT due MOT due with Renault 2012-02-02 14:50:00 2014-02-01 09:22:00+00 \N f \N | |
| 14713 220 maintenance MOT due MOT due with Alfa Romeo 2012-05-28 18:10:00 2014-05-28 16:45:00+01 \N f \N | |
| 14813 220 maintenance MOT due MOT due with Audi 2011-02-03 19:41:00 2013-02-02 11:15:00+00 \N f \N | |
| 14913 220 maintenance MOT due MOT due with Audi 2011-03-20 09:04:00 2013-03-19 11:00:00+00 \N f \N | |
| 15013 220 maintenance MOT due MOT due with Audi 2013-02-21 14:25:00 2015-02-21 18:59:00+00 \N f \N | |
| 15113 220 maintenance MOT due MOT due with Audi 2011-06-14 13:38:00 2013-06-13 11:56:00+01 \N f \N | |
| 15213 220 maintenance MOT due MOT due with Audi 2013-02-13 17:10:00 2015-02-13 09:57:00+00 \N f \N | |
| 15313 220 maintenance MOT due MOT due with Audi 2011-11-16 15:00:00 2013-11-15 19:10:00+00 \N f \N | |
| 15413 220 maintenance MOT due MOT due with Bmw 2011-05-20 11:26:00 2013-05-19 19:00:00+01 \N f \N | |
| 15513 220 maintenance MOT due MOT due with Bmw 2011-10-18 13:14:00 2013-10-17 16:40:00+01 \N f \N | |
| 15613 220 maintenance MOT due MOT due with Citroen 2012-07-22 19:52:00 2014-07-22 19:09:00+01 \N f \N | |
| 15713 220 maintenance MOT due MOT due with Citroen 2013-06-29 17:42:00 2015-06-29 19:37:00+01 \N f \N | |
| 15813 220 maintenance MOT due MOT due with Fiat 2013-01-06 14:59:00 2015-01-06 13:24:00+00 \N f \N | |
| 15913 220 maintenance MOT due MOT due with Fiat 2012-03-21 11:25:00 2014-03-21 09:56:00+00 \N f \N | |
| 16013 220 maintenance MOT due MOT due with Ford 2012-12-01 18:04:00 2014-12-01 14:37:00+00 \N f \N | |
| 16113 220 maintenance MOT due MOT due with Ford 2013-02-24 08:25:00 2015-02-24 19:37:00+00 \N f \N | |
| 16213 220 maintenance MOT due MOT due with Ford 2012-04-03 19:54:00 2014-04-03 08:43:00+01 \N f \N | |
| 16313 220 maintenance MOT due MOT due with Ford 2012-10-19 15:52:00 2014-10-19 12:17:00+01 \N f \N | |
| 16413 220 maintenance MOT due MOT due with Ford 2013-03-30 15:45:00 2015-03-30 19:42:00+01 \N f \N | |
| 16513 220 maintenance MOT due MOT due with Honda 2012-02-21 19:09:00 2014-02-20 11:50:00+00 \N f \N | |
| 16613 220 maintenance MOT due MOT due with Honda 2011-11-05 10:21:00 2013-11-04 16:36:00+00 \N f \N | |
| 16713 220 maintenance MOT due MOT due with Honda 2011-08-17 17:58:00 2013-08-16 17:46:00+01 \N f \N | |
| 16813 220 maintenance MOT due MOT due with Honda 2011-09-07 14:24:00 2013-09-06 14:45:00+01 \N f \N | |
| 16913 220 maintenance MOT due MOT due with Hyundai 2011-06-22 19:48:00 2013-06-21 19:31:00+01 \N f \N | |
| 17013 220 maintenance MOT due MOT due with Hyundai 2013-06-04 18:25:00 2015-06-04 17:39:00+01 \N f \N | |
| 17113 220 maintenance MOT due MOT due with Hyundai 2012-08-22 08:46:00 2014-08-22 10:42:00+01 \N f \N | |
| 17213 220 maintenance MOT due MOT due with Hyundai 2012-07-23 11:52:00 2014-07-23 17:09:00+01 \N f \N | |
| 17313 220 maintenance MOT due MOT due with Jeep 2011-11-21 13:50:00 2013-11-20 12:17:00+00 \N f \N | |
| 17413 220 maintenance MOT due MOT due with Kia 2011-08-20 18:45:00 2013-08-19 14:27:00+01 \N f \N | |
| 17513 220 maintenance MOT due MOT due with Kia 2011-04-30 11:46:00 2013-04-29 10:05:00+01 \N f \N | |
| 17613 220 maintenance MOT due MOT due with Kia 2012-12-13 18:16:00 2014-12-13 09:13:00+00 \N f \N | |
| 17713 220 maintenance MOT due MOT due with Kia 2011-08-10 10:45:00 2013-08-09 16:05:00+01 \N f \N | |
| 17813 220 maintenance MOT due MOT due with Kia 2012-02-02 10:46:00 2014-02-01 19:05:00+00 \N f \N | |
| 17913 220 maintenance MOT due MOT due with Kia 2013-05-08 15:47:00 2015-05-08 12:56:00+01 \N f \N | |
| 18013 220 maintenance MOT due MOT due with Kia 2013-03-21 14:34:00 2015-03-21 17:42:00+00 \N f \N | |
| 18113 220 maintenance MOT due MOT due with Mazda 2011-01-11 19:42:00 2013-01-10 17:29:00+00 \N f \N | |
| 18213 220 maintenance MOT due MOT due with Mazda 2011-02-18 19:45:00 2013-02-17 11:34:00+00 \N f \N | |
| 18313 220 maintenance MOT due MOT due with Mazda 2012-01-29 16:29:00 2014-01-28 11:52:00+00 \N f \N | |
| 18413 220 maintenance MOT due MOT due with Mazda 2010-12-26 09:40:00 2012-12-25 12:12:00+00 \N f \N | |
| 18513 220 maintenance MOT due MOT due with Mazda 2010-11-25 11:59:00 2012-11-24 12:05:00+00 \N f \N | |
| 18613 220 maintenance MOT due MOT due with Mercedes-Benz 2012-04-09 09:19:00 2014-04-09 18:36:00+01 \N f \N | |
| 18713 220 maintenance MOT due MOT due with Mercedes-Benz 2011-12-28 17:23:00 2013-12-27 17:42:00+00 \N f \N | |
| 18813 220 maintenance MOT due MOT due with Mercedes-Benz 2011-07-21 10:16:00 2013-07-20 17:09:00+01 \N f \N | |
| 18913 220 maintenance MOT due MOT due with Mercedes-Benz 2012-09-27 10:03:00 2014-09-27 19:20:00+01 \N f \N | |
| 19013 220 maintenance MOT due MOT due with Mercedes-Benz 2012-02-02 08:30:00 2014-02-01 15:12:00+00 \N f \N | |
| 19113 220 maintenance MOT due MOT due with Mercedes-Benz 2013-01-09 17:52:00 2015-01-09 13:41:00+00 \N f \N | |
| 19213 220 maintenance MOT due MOT due with Mercedes-Benz 2012-12-04 17:00:00 2014-12-04 13:08:00+00 \N f \N | |
| 19313 220 maintenance MOT due MOT due with Mercedes-Benz 2011-10-02 15:58:00 2013-10-01 17:22:00+01 \N f \N | |
| 19413 220 maintenance MOT due MOT due with Mitsubishi 2011-06-19 17:16:00 2013-06-18 10:10:00+01 \N f \N | |
| 19513 220 maintenance MOT due MOT due with Mitsubishi 2012-04-30 17:18:00 2014-04-30 11:02:00+01 \N f \N | |
| 19613 220 maintenance MOT due MOT due with Mitsubishi 2012-06-23 18:42:00 2014-06-23 18:06:00+01 \N f \N | |
| 19713 220 maintenance MOT due MOT due with Opel 2011-07-22 08:47:00 2013-07-21 14:11:00+01 \N f \N | |
| 19813 220 maintenance MOT due MOT due with Opel 2011-06-30 13:43:00 2013-06-29 16:47:00+01 \N f \N | |
| 19913 220 maintenance MOT due MOT due with Opel 2011-04-11 11:37:00 2013-04-10 08:00:00+01 \N f \N | |
| 20013 220 maintenance MOT due MOT due with Opel 2012-08-26 12:33:00 2014-08-26 08:28:00+01 \N f \N | |
| 20113 220 maintenance MOT due MOT due with Peugeot 2012-12-16 15:29:00 2014-12-16 09:52:00+00 \N f \N | |
| 20213 220 maintenance MOT due MOT due with Peugeot 2013-07-14 18:24:00 2015-07-14 09:55:00+01 \N f \N | |
| 20313 220 maintenance MOT due MOT due with Renault 2013-03-21 18:04:00 2015-03-21 15:51:00+00 \N f \N | |
| 20413 220 maintenance MOT due MOT due with Renault 2013-06-20 16:06:00 2015-06-20 08:34:00+01 \N f \N | |
| 20513 220 maintenance MOT due MOT due with Renault 2011-09-19 09:42:00 2013-09-18 10:40:00+01 \N f \N | |
| 20613 220 maintenance MOT due MOT due with Skoda 2011-03-27 15:57:00 2013-03-26 17:38:00+00 \N f \N | |
| 20713 220 maintenance MOT due MOT due with Skoda 2011-03-24 15:24:00 2013-03-23 12:12:00+00 \N f \N | |
| 20813 220 maintenance MOT due MOT due with Skoda 2011-05-20 19:13:00 2013-05-19 17:09:00+01 \N f \N | |
| 20913 220 maintenance MOT due MOT due with Suzuki 2012-05-14 12:45:00 2014-05-14 14:01:00+01 \N f \N | |
| 21013 220 maintenance MOT due MOT due with Suzuki 2013-06-29 13:08:00 2015-06-29 12:53:00+01 \N f \N | |
| 21113 220 maintenance MOT due MOT due with Toyota 2011-04-30 08:19:00 2013-04-29 08:13:00+01 \N f \N | |
| 21213 220 maintenance MOT due MOT due with Volkswagen 2013-05-03 18:05:00 2015-05-03 19:35:00+01 \N f \N | |
| 21313 220 maintenance MOT due MOT due with Volkswagen 2012-01-03 09:20:00 2014-01-02 13:39:00+00 \N f \N | |
| 21413 220 maintenance MOT due MOT due with Volvo 2011-06-20 17:23:00 2013-06-19 12:30:00+01 \N f \N | |
| 21513 220 maintenance MOT due MOT due with Alfa Romeo 2013-06-23 19:12:00 2015-06-23 16:22:00+01 \N f \N | |
| 21613 220 maintenance MOT due MOT due with Audi 2011-03-04 19:35:00 2013-03-03 19:46:00+00 \N f \N | |
| 21713 220 maintenance MOT due MOT due with Audi 2012-10-16 16:49:00 2014-10-16 11:04:00+01 \N f \N | |
| 21813 220 maintenance MOT due MOT due with Audi 2013-02-03 08:34:00 2015-02-03 16:50:00+00 \N f \N | |
| 21913 220 maintenance MOT due MOT due with Audi 2012-12-24 18:40:00 2014-12-24 19:45:00+00 \N f \N | |
| 22013 220 maintenance MOT due MOT due with Audi 2013-07-07 16:01:00 2015-07-07 12:09:00+01 \N f \N | |
| 22113 220 maintenance MOT due MOT due with Audi 2013-04-09 12:18:00 2015-04-09 13:11:00+01 \N f \N | |
| 22213 220 maintenance MOT due MOT due with Bmw 2011-05-16 19:58:00 2013-05-15 17:48:00+01 \N f \N | |
| 22313 220 maintenance MOT due MOT due with Bmw 2010-12-09 16:56:00 2012-12-08 12:33:00+00 \N f \N | |
| 22413 220 maintenance MOT due MOT due with Citroen 2012-10-27 10:06:00 2014-10-27 19:58:00+00 \N f \N | |
| 22513 220 maintenance MOT due MOT due with Citroen 2012-08-14 16:40:00 2014-08-14 15:18:00+01 \N f \N | |
| 22613 220 maintenance MOT due MOT due with Fiat 2012-01-17 11:45:00 2014-01-16 18:38:00+00 \N f \N | |
| 22713 220 maintenance MOT due MOT due with Fiat 2012-05-06 08:07:00 2014-05-06 14:51:00+01 \N f \N | |
| 22813 220 maintenance MOT due MOT due with Ford 2011-05-22 18:07:00 2013-05-21 10:57:00+01 \N f \N | |
| 22913 220 maintenance MOT due MOT due with Ford 2012-08-12 13:39:00 2014-08-12 14:36:00+01 \N f \N | |
| 23013 220 maintenance MOT due MOT due with Ford 2013-02-21 14:25:00 2015-02-21 13:11:00+00 \N f \N | |
| 23113 220 maintenance MOT due MOT due with Ford 2012-01-22 18:27:00 2014-01-21 19:27:00+00 \N f \N | |
| 23213 220 maintenance MOT due MOT due with Ford 2013-03-13 08:33:00 2015-03-13 19:14:00+00 \N f \N | |
| 23313 220 maintenance MOT due MOT due with Honda 2010-11-25 11:01:00 2012-11-24 14:38:00+00 \N f \N | |
| 23413 220 maintenance MOT due MOT due with Honda 2012-01-27 09:10:00 2014-01-26 08:29:00+00 \N f \N | |
| 23513 220 maintenance MOT due MOT due with Honda 2011-04-10 16:49:00 2013-04-09 12:29:00+01 \N f \N | |
| 23613 220 maintenance MOT due MOT due with Honda 2012-04-18 10:05:00 2014-04-18 15:50:00+01 \N f \N | |
| 23713 220 maintenance MOT due MOT due with Hyundai 2012-01-27 09:09:00 2014-01-26 16:25:00+00 \N f \N | |
| 23813 220 maintenance MOT due MOT due with Hyundai 2012-01-13 08:51:00 2014-01-12 15:04:00+00 \N f \N | |
| 23913 220 maintenance MOT due MOT due with Hyundai 2012-01-06 09:16:00 2014-01-05 19:37:00+00 \N f \N | |
| 24013 220 maintenance MOT due MOT due with Hyundai 2011-04-19 19:47:00 2013-04-18 08:34:00+01 \N f \N | |
| 24113 220 maintenance MOT due MOT due with Jeep 2012-02-15 19:13:00 2014-02-14 19:53:00+00 \N f \N | |
| 24213 220 maintenance MOT due MOT due with Kia 2011-09-29 14:58:00 2013-09-28 10:28:00+01 \N f \N | |
| 24313 220 maintenance MOT due MOT due with Kia 2010-12-02 12:23:00 2012-12-01 17:27:00+00 \N f \N | |
| 24413 220 maintenance MOT due MOT due with Kia 2013-07-22 09:48:00 2015-07-22 13:16:00+01 \N f \N | |
| 24513 220 maintenance MOT due MOT due with Kia 2010-12-09 08:37:00 2012-12-08 08:54:00+00 \N f \N | |
| 24613 220 maintenance MOT due MOT due with Kia 2013-03-25 10:55:00 2015-03-25 13:01:00+00 \N f \N | |
| 24713 220 maintenance MOT due MOT due with Kia 2011-05-15 09:14:00 2013-05-14 12:24:00+01 \N f \N | |
| 24813 220 maintenance MOT due MOT due with Kia 2011-04-04 13:22:00 2013-04-03 11:54:00+01 \N f \N | |
| 24913 220 maintenance MOT due MOT due with Mazda 2011-07-28 11:36:00 2013-07-27 08:20:00+01 \N f \N | |
| 25013 220 maintenance MOT due MOT due with Mazda 2012-07-27 14:58:00 2014-07-27 12:28:00+01 \N f \N | |
| 25113 220 maintenance MOT due MOT due with Mazda 2010-10-28 13:44:00 2012-10-27 17:02:00+01 \N f \N | |
| 25213 220 maintenance MOT due MOT due with Mazda 2011-09-16 08:34:00 2013-09-15 11:30:00+01 \N f \N | |
| 25313 220 maintenance MOT due MOT due with Mazda 2013-01-26 18:08:00 2015-01-26 13:58:00+00 \N f \N | |
| 25413 220 maintenance MOT due MOT due with Mercedes-Benz 2011-03-30 13:00:00 2013-03-29 15:28:00+00 \N f \N | |
| 25513 220 maintenance MOT due MOT due with Mercedes-Benz 2012-09-12 13:24:00 2014-09-12 15:37:00+01 \N f \N | |
| 25613 220 maintenance MOT due MOT due with Mercedes-Benz 2011-01-06 17:22:00 2013-01-05 08:32:00+00 \N f \N | |
| 25713 220 maintenance MOT due MOT due with Mercedes-Benz 2012-05-01 15:20:00 2014-05-01 14:16:00+01 \N f \N | |
| 25813 220 maintenance MOT due MOT due with Mercedes-Benz 2012-04-29 12:59:00 2014-04-29 08:16:00+01 \N f \N | |
| 25913 220 maintenance MOT due MOT due with Mercedes-Benz 2010-12-10 16:26:00 2012-12-09 16:27:00+00 \N f \N | |
| 26013 220 maintenance MOT due MOT due with Mercedes-Benz 2011-02-25 17:48:00 2013-02-24 14:47:00+00 \N f \N | |
| 26113 220 maintenance MOT due MOT due with Mercedes-Benz 2011-05-19 08:00:00 2013-05-18 12:59:00+01 \N f \N | |
| 26213 220 maintenance MOT due MOT due with Mitsubishi 2013-01-21 16:09:00 2015-01-21 17:44:00+00 \N f \N | |
| 26313 220 maintenance MOT due MOT due with Mitsubishi 2011-08-09 11:12:00 2013-08-08 12:04:00+01 \N f \N | |
| 26413 220 maintenance MOT due MOT due with Mitsubishi 2012-11-02 14:30:00 2014-11-02 15:28:00+00 \N f \N | |
| 26513 220 maintenance MOT due MOT due with Opel 2013-03-09 17:04:00 2015-03-09 13:03:00+00 \N f \N | |
| 26613 220 maintenance MOT due MOT due with Opel 2012-10-09 13:15:00 2014-10-09 19:14:00+01 \N f \N | |
| 26713 220 maintenance MOT due MOT due with Opel 2012-01-18 17:33:00 2014-01-17 09:15:00+00 \N f \N | |
| 26813 220 maintenance MOT due MOT due with Opel 2012-03-17 17:42:00 2014-03-17 17:34:00+00 \N f \N | |
| 26913 220 maintenance MOT due MOT due with Peugeot 2012-01-10 16:16:00 2014-01-09 10:20:00+00 \N f \N | |
| 27013 220 maintenance MOT due MOT due with Peugeot 2013-01-13 16:06:00 2015-01-13 08:49:00+00 \N f \N | |
| 27113 220 maintenance MOT due MOT due with Renault 2011-05-29 16:30:00 2013-05-28 19:06:00+01 \N f \N | |
| 27213 220 maintenance MOT due MOT due with Renault 2013-05-05 13:18:00 2015-05-05 12:29:00+01 \N f \N | |
| 27313 220 maintenance MOT due MOT due with Renault 2013-01-01 18:49:00 2015-01-01 12:23:00+00 \N f \N | |
| 27413 220 maintenance MOT due MOT due with Skoda 2010-12-15 11:36:00 2012-12-14 17:07:00+00 \N f \N | |
| 27513 220 maintenance MOT due MOT due with Skoda 2012-08-23 11:05:00 2014-08-23 18:19:00+01 \N f \N | |
| 27613 220 maintenance MOT due MOT due with Skoda 2011-06-22 12:21:00 2013-06-21 18:13:00+01 \N f \N | |
| 27713 220 maintenance MOT due MOT due with Suzuki 2012-10-23 09:08:00 2014-10-23 11:43:00+01 \N f \N | |
| 27813 220 maintenance MOT due MOT due with Suzuki 2012-10-22 14:21:00 2014-10-22 19:43:00+01 \N f \N | |
| 27913 220 maintenance MOT due MOT due with Toyota 2012-12-22 12:02:00 2014-12-22 17:37:00+00 \N f \N | |
| 28013 220 maintenance MOT due MOT due with Volkswagen 2011-06-04 18:09:00 2013-06-03 10:13:00+01 \N f \N | |
| 28113 220 maintenance MOT due MOT due with Volkswagen 2013-02-06 09:21:00 2015-02-06 16:08:00+00 \N f \N | |
| 28213 220 maintenance MOT due MOT due with Volvo 2013-02-13 13:56:00 2015-02-13 13:47:00+00 \N f \N | |
| 28313 220 maintenance MOT due MOT due with Renault 2012-02-02 18:14:00 2015-02-01 12:13:00+00 \N f \N | |
| 28413 220 maintenance MOT due MOT due with Alfa Romeo 2012-05-28 15:36:00 2015-05-28 12:37:00+01 \N f \N | |
| 28513 220 maintenance MOT due MOT due with Audi 2011-02-03 14:21:00 2014-02-02 14:24:00+00 \N f \N | |
| 28613 220 maintenance MOT due MOT due with Audi 2011-03-20 16:11:00 2014-03-19 13:32:00+00 \N f \N | |
| 28713 220 maintenance MOT due MOT due with Audi 2013-02-21 18:11:00 2016-02-21 14:49:00+00 \N f \N | |
| 28813 220 maintenance MOT due MOT due with Audi 2011-06-14 14:43:00 2014-06-13 08:54:00+01 \N f \N | |
| 28913 220 maintenance MOT due MOT due with Audi 2013-02-13 08:48:00 2016-02-13 10:49:00+00 \N f \N | |
| 29013 220 maintenance MOT due MOT due with Audi 2011-11-16 11:18:00 2014-11-15 08:03:00+00 \N f \N | |
| 29113 220 maintenance MOT due MOT due with Bmw 2011-05-20 18:44:00 2014-05-19 09:55:00+01 \N f \N | |
| 29213 220 maintenance MOT due MOT due with Bmw 2011-10-18 15:00:00 2014-10-17 11:27:00+01 \N f \N | |
| 29313 220 maintenance MOT due MOT due with Citroen 2012-07-22 18:10:00 2015-07-22 15:15:00+01 \N f \N | |
| 29413 220 maintenance MOT due MOT due with Citroen 2013-06-29 12:13:00 2016-06-28 10:27:00+01 \N f \N | |
| 29513 220 maintenance MOT due MOT due with Fiat 2013-01-06 10:13:00 2016-01-06 18:23:00+00 \N f \N | |
| 29613 220 maintenance MOT due MOT due with Fiat 2012-03-21 12:21:00 2015-03-21 16:34:00+00 \N f \N | |
| 29713 220 maintenance MOT due MOT due with Ford 2012-12-01 14:48:00 2015-12-01 14:08:00+00 \N f \N | |
| 29813 220 maintenance MOT due MOT due with Ford 2013-02-24 11:28:00 2016-02-24 12:54:00+00 \N f \N | |
| 29913 220 maintenance MOT due MOT due with Ford 2012-04-03 08:56:00 2015-04-03 12:43:00+01 \N f \N | |
| 30013 220 maintenance MOT due MOT due with Ford 2012-10-19 08:34:00 2015-10-19 14:57:00+01 \N f \N | |
| 30113 220 maintenance MOT due MOT due with Ford 2013-03-30 11:47:00 2016-03-29 09:58:00+01 \N f \N | |
| 30213 220 maintenance MOT due MOT due with Honda 2012-02-21 17:09:00 2015-02-20 13:38:00+00 \N f \N | |
| 30313 220 maintenance MOT due MOT due with Honda 2011-11-05 19:17:00 2014-11-04 17:32:00+00 \N f \N | |
| 30413 220 maintenance MOT due MOT due with Honda 2011-08-17 18:01:00 2014-08-16 14:01:00+01 \N f \N | |
| 30513 220 maintenance MOT due MOT due with Honda 2011-09-07 09:12:00 2014-09-06 12:34:00+01 \N f \N | |
| 30613 220 maintenance MOT due MOT due with Hyundai 2011-06-22 11:00:00 2014-06-21 08:30:00+01 \N f \N | |
| 30713 220 maintenance MOT due MOT due with Hyundai 2013-06-04 19:59:00 2016-06-03 14:22:00+01 \N f \N | |
| 30813 220 maintenance MOT due MOT due with Hyundai 2012-08-22 08:50:00 2015-08-22 19:09:00+01 \N f \N | |
| 30913 220 maintenance MOT due MOT due with Hyundai 2012-07-23 09:22:00 2015-07-23 15:10:00+01 \N f \N | |
| 31013 220 maintenance MOT due MOT due with Jeep 2011-11-21 08:23:00 2014-11-20 15:31:00+00 \N f \N | |
| 31113 220 maintenance MOT due MOT due with Kia 2011-08-20 15:27:00 2014-08-19 14:17:00+01 \N f \N | |
| 31213 220 maintenance MOT due MOT due with Kia 2011-04-30 16:10:00 2014-04-29 09:05:00+01 \N f \N | |
| 31313 220 maintenance MOT due MOT due with Kia 2012-12-13 11:01:00 2015-12-13 13:26:00+00 \N f \N | |
| 31413 220 maintenance MOT due MOT due with Kia 2011-08-10 15:20:00 2014-08-09 08:49:00+01 \N f \N | |
| 31513 220 maintenance MOT due MOT due with Kia 2012-02-02 19:44:00 2015-02-01 09:32:00+00 \N f \N | |
| 31613 220 maintenance MOT due MOT due with Kia 2013-05-08 19:15:00 2016-05-07 17:17:00+01 \N f \N | |
| 31713 220 maintenance MOT due MOT due with Kia 2013-03-21 14:41:00 2016-03-20 14:16:00+00 \N f \N | |
| 31813 220 maintenance MOT due MOT due with Mazda 2011-01-11 12:31:00 2014-01-10 19:19:00+00 \N f \N | |
| 31913 220 maintenance MOT due MOT due with Mazda 2011-02-18 19:17:00 2014-02-17 17:29:00+00 \N f \N | |
| 32013 220 maintenance MOT due MOT due with Mazda 2012-01-29 14:06:00 2015-01-28 12:11:00+00 \N f \N | |
| 32113 220 maintenance MOT due MOT due with Mazda 2010-12-26 14:52:00 2013-12-25 08:25:00+00 \N f \N | |
| 32213 220 maintenance MOT due MOT due with Mazda 2010-11-25 09:27:00 2013-11-24 16:33:00+00 \N f \N | |
| 32313 220 maintenance MOT due MOT due with Mercedes-Benz 2012-04-09 18:08:00 2015-04-09 17:40:00+01 \N f \N | |
| 32413 220 maintenance MOT due MOT due with Mercedes-Benz 2011-12-28 11:01:00 2014-12-27 16:25:00+00 \N f \N | |
| 32513 220 maintenance MOT due MOT due with Mercedes-Benz 2011-07-21 14:21:00 2014-07-20 18:20:00+01 \N f \N | |
| 32613 220 maintenance MOT due MOT due with Mercedes-Benz 2012-09-27 13:06:00 2015-09-27 19:25:00+01 \N f \N | |
| 32713 220 maintenance MOT due MOT due with Mercedes-Benz 2012-02-02 17:09:00 2015-02-01 15:02:00+00 \N f \N | |
| 32813 220 maintenance MOT due MOT due with Mercedes-Benz 2013-01-09 11:05:00 2016-01-09 14:04:00+00 \N f \N | |
| 32913 220 maintenance MOT due MOT due with Mercedes-Benz 2012-12-04 10:56:00 2015-12-04 13:31:00+00 \N f \N | |
| 33013 220 maintenance MOT due MOT due with Mercedes-Benz 2011-10-02 13:08:00 2014-10-01 18:38:00+01 \N f \N | |
| 33113 220 maintenance MOT due MOT due with Mitsubishi 2011-06-19 16:20:00 2014-06-18 08:40:00+01 \N f \N | |
| 33213 220 maintenance MOT due MOT due with Mitsubishi 2012-04-30 12:12:00 2015-04-30 19:35:00+01 \N f \N | |
| 33313 220 maintenance MOT due MOT due with Mitsubishi 2012-06-23 08:48:00 2015-06-23 19:52:00+01 \N f \N | |
| 33413 220 maintenance MOT due MOT due with Opel 2011-07-22 16:01:00 2014-07-21 19:45:00+01 \N f \N | |
| 33513 220 maintenance MOT due MOT due with Opel 2011-06-30 09:17:00 2014-06-29 12:16:00+01 \N f \N | |
| 33613 220 maintenance MOT due MOT due with Opel 2011-04-11 09:36:00 2014-04-10 19:24:00+01 \N f \N | |
| 33713 220 maintenance MOT due MOT due with Opel 2012-08-26 10:15:00 2015-08-26 16:39:00+01 \N f \N | |
| 33813 220 maintenance MOT due MOT due with Peugeot 2012-12-16 08:02:00 2015-12-16 19:30:00+00 \N f \N | |
| 33913 220 maintenance MOT due MOT due with Peugeot 2013-07-14 12:20:00 2016-07-13 11:41:00+01 \N f \N | |
| 34013 220 maintenance MOT due MOT due with Renault 2013-03-21 08:53:00 2016-03-20 19:11:00+00 \N f \N | |
| 34113 220 maintenance MOT due MOT due with Renault 2013-06-20 16:29:00 2016-06-19 08:53:00+01 \N f \N | |
| 34213 220 maintenance MOT due MOT due with Renault 2011-09-19 08:30:00 2014-09-18 15:39:00+01 \N f \N | |
| 34313 220 maintenance MOT due MOT due with Skoda 2011-03-27 15:17:00 2014-03-26 19:07:00+00 \N f \N | |
| 34413 220 maintenance MOT due MOT due with Skoda 2011-03-24 15:50:00 2014-03-23 16:24:00+00 \N f \N | |
| 34513 220 maintenance MOT due MOT due with Skoda 2011-05-20 10:00:00 2014-05-19 15:37:00+01 \N f \N | |
| 34613 220 maintenance MOT due MOT due with Suzuki 2012-05-14 19:54:00 2015-05-14 08:42:00+01 \N f \N | |
| 34713 220 maintenance MOT due MOT due with Suzuki 2013-06-29 12:23:00 2016-06-28 11:59:00+01 \N f \N | |
| 34813 220 maintenance MOT due MOT due with Toyota 2011-04-30 09:23:00 2014-04-29 11:14:00+01 \N f \N | |
| 34913 220 maintenance MOT due MOT due with Volkswagen 2013-05-03 10:51:00 2016-05-02 18:13:00+01 \N f \N | |
| 35013 220 maintenance MOT due MOT due with Volkswagen 2012-01-03 13:17:00 2015-01-02 08:13:00+00 \N f \N | |
| 35113 220 maintenance MOT due MOT due with Volvo 2011-06-20 09:33:00 2014-06-19 13:57:00+01 \N f \N | |
| 35213 220 maintenance MOT due MOT due with Alfa Romeo 2013-06-23 18:20:00 2016-06-22 15:12:00+01 \N f \N | |
| 35313 220 maintenance MOT due MOT due with Audi 2011-03-04 17:57:00 2014-03-03 15:36:00+00 \N f \N | |
| 35413 220 maintenance MOT due MOT due with Audi 2012-10-16 12:12:00 2015-10-16 16:56:00+01 \N f \N | |
| 35513 220 maintenance MOT due MOT due with Audi 2013-02-03 11:28:00 2016-02-03 11:38:00+00 \N f \N | |
| 35613 220 maintenance MOT due MOT due with Audi 2012-12-24 09:59:00 2015-12-24 09:19:00+00 \N f \N | |
| 35713 220 maintenance MOT due MOT due with Audi 2013-07-07 19:06:00 2016-07-06 14:43:00+01 \N f \N | |
| 35813 220 maintenance MOT due MOT due with Audi 2013-04-09 13:37:00 2016-04-08 19:26:00+01 \N f \N | |
| 35913 220 maintenance MOT due MOT due with Bmw 2011-05-16 12:04:00 2014-05-15 18:42:00+01 \N f \N | |
| 36013 220 maintenance MOT due MOT due with Bmw 2010-12-09 13:36:00 2013-12-08 18:29:00+00 \N f \N | |
| 36113 220 maintenance MOT due MOT due with Citroen 2012-10-27 09:26:00 2015-10-27 12:54:00+00 \N f \N | |
| 36213 220 maintenance MOT due MOT due with Citroen 2012-08-14 14:26:00 2015-08-14 10:38:00+01 \N f \N | |
| 36313 220 maintenance MOT due MOT due with Fiat 2012-01-17 17:38:00 2015-01-16 18:29:00+00 \N f \N | |
| 36413 220 maintenance MOT due MOT due with Fiat 2012-05-06 17:01:00 2015-05-06 18:45:00+01 \N f \N | |
| 36513 220 maintenance MOT due MOT due with Ford 2011-05-22 14:15:00 2014-05-21 16:53:00+01 \N f \N | |
| 36613 220 maintenance MOT due MOT due with Ford 2012-08-12 11:40:00 2015-08-12 19:13:00+01 \N f \N | |
| 36713 220 maintenance MOT due MOT due with Ford 2013-02-21 17:12:00 2016-02-21 18:37:00+00 \N f \N | |
| 36813 220 maintenance MOT due MOT due with Ford 2012-01-22 08:37:00 2015-01-21 13:28:00+00 \N f \N | |
| 36913 220 maintenance MOT due MOT due with Ford 2013-03-13 09:24:00 2016-03-12 10:07:00+00 \N f \N | |
| 37013 220 maintenance MOT due MOT due with Honda 2010-11-25 17:27:00 2013-11-24 12:32:00+00 \N f \N | |
| 37113 220 maintenance MOT due MOT due with Honda 2012-01-27 18:55:00 2015-01-26 17:32:00+00 \N f \N | |
| 37213 220 maintenance MOT due MOT due with Honda 2011-04-10 13:50:00 2014-04-09 18:17:00+01 \N f \N | |
| 37313 220 maintenance MOT due MOT due with Honda 2012-04-18 08:56:00 2015-04-18 11:51:00+01 \N f \N | |
| 37413 220 maintenance MOT due MOT due with Hyundai 2012-01-27 13:24:00 2015-01-26 16:07:00+00 \N f \N | |
| 37513 220 maintenance MOT due MOT due with Hyundai 2012-01-13 08:55:00 2015-01-12 14:34:00+00 \N f \N | |
| 37613 220 maintenance MOT due MOT due with Hyundai 2012-01-06 08:06:00 2015-01-05 15:55:00+00 \N f \N | |
| 37713 220 maintenance MOT due MOT due with Hyundai 2011-04-19 12:32:00 2014-04-18 13:48:00+01 \N f \N | |
| 37813 220 maintenance MOT due MOT due with Jeep 2012-02-15 14:11:00 2015-02-14 14:22:00+00 \N f \N | |
| 37913 220 maintenance MOT due MOT due with Kia 2011-09-29 10:23:00 2014-09-28 11:27:00+01 \N f \N | |
| 38013 220 maintenance MOT due MOT due with Kia 2010-12-02 10:41:00 2013-12-01 09:01:00+00 \N f \N | |
| 38113 220 maintenance MOT due MOT due with Kia 2013-07-22 15:32:00 2016-07-21 12:07:00+01 \N f \N | |
| 38213 220 maintenance MOT due MOT due with Kia 2010-12-09 12:27:00 2013-12-08 10:12:00+00 \N f \N | |
| 38313 220 maintenance MOT due MOT due with Kia 2013-03-25 17:22:00 2016-03-24 16:40:00+00 \N f \N | |
| 38413 220 maintenance MOT due MOT due with Kia 2011-05-15 08:55:00 2014-05-14 16:59:00+01 \N f \N | |
| 38513 220 maintenance MOT due MOT due with Kia 2011-04-04 17:54:00 2014-04-03 17:05:00+01 \N f \N | |
| 38613 220 maintenance MOT due MOT due with Mazda 2011-07-28 12:38:00 2014-07-27 14:33:00+01 \N f \N | |
| 38713 220 maintenance MOT due MOT due with Mazda 2012-07-27 17:49:00 2015-07-27 15:24:00+01 \N f \N | |
| 38813 220 maintenance MOT due MOT due with Mazda 2010-10-28 13:51:00 2013-10-27 18:54:00+00 \N f \N | |
| 38913 220 maintenance MOT due MOT due with Mazda 2011-09-16 17:56:00 2014-09-15 11:34:00+01 \N f \N | |
| 39013 220 maintenance MOT due MOT due with Mazda 2013-01-26 11:47:00 2016-01-26 08:50:00+00 \N f \N | |
| 39113 220 maintenance MOT due MOT due with Mercedes-Benz 2011-03-30 18:17:00 2014-03-29 09:39:00+00 \N f \N | |
| 39213 220 maintenance MOT due MOT due with Mercedes-Benz 2012-09-12 18:13:00 2015-09-12 17:38:00+01 \N f \N | |
| 39313 220 maintenance MOT due MOT due with Mercedes-Benz 2011-01-06 18:27:00 2014-01-05 13:19:00+00 \N f \N | |
| 39413 220 maintenance MOT due MOT due with Mercedes-Benz 2012-05-01 12:01:00 2015-05-01 08:46:00+01 \N f \N | |
| 39513 220 maintenance MOT due MOT due with Mercedes-Benz 2012-04-29 18:38:00 2015-04-29 17:08:00+01 \N f \N | |
| 39613 220 maintenance MOT due MOT due with Mercedes-Benz 2010-12-10 16:29:00 2013-12-09 17:08:00+00 \N f \N | |
| 39713 220 maintenance MOT due MOT due with Mercedes-Benz 2011-02-25 10:05:00 2014-02-24 11:03:00+00 \N f \N | |
| 39813 220 maintenance MOT due MOT due with Mercedes-Benz 2011-05-19 19:56:00 2014-05-18 12:59:00+01 \N f \N | |
| 39913 220 maintenance MOT due MOT due with Mitsubishi 2013-01-21 13:01:00 2016-01-21 16:01:00+00 \N f \N | |
| 40013 220 maintenance MOT due MOT due with Mitsubishi 2011-08-09 18:14:00 2014-08-08 19:30:00+01 \N f \N | |
| 40113 220 maintenance MOT due MOT due with Mitsubishi 2012-11-02 19:14:00 2015-11-02 09:31:00+00 \N f \N | |
| 40213 220 maintenance MOT due MOT due with Opel 2013-03-09 18:45:00 2016-03-08 08:45:00+00 \N f \N | |
| 40313 220 maintenance MOT due MOT due with Opel 2012-10-09 08:21:00 2015-10-09 19:54:00+01 \N f \N | |
| 40413 220 maintenance MOT due MOT due with Opel 2012-01-18 15:50:00 2015-01-17 15:11:00+00 \N f \N | |
| 40513 220 maintenance MOT due MOT due with Opel 2012-03-17 11:52:00 2015-03-17 13:41:00+00 \N f \N | |
| 40613 220 maintenance MOT due MOT due with Peugeot 2012-01-10 15:09:00 2015-01-09 08:38:00+00 \N f \N | |
| 40713 220 maintenance MOT due MOT due with Peugeot 2013-01-13 10:32:00 2016-01-13 12:47:00+00 \N f \N | |
| 40813 220 maintenance MOT due MOT due with Renault 2011-05-29 12:01:00 2014-05-28 11:48:00+01 \N f \N | |
| 40913 220 maintenance MOT due MOT due with Renault 2013-05-05 08:47:00 2016-05-04 09:16:00+01 \N f \N | |
| 41013 220 maintenance MOT due MOT due with Renault 2013-01-01 08:51:00 2016-01-01 15:54:00+00 \N f \N | |
| 41113 220 maintenance MOT due MOT due with Skoda 2010-12-15 13:46:00 2013-12-14 12:23:00+00 \N f \N | |
| 41213 220 maintenance MOT due MOT due with Skoda 2012-08-23 12:36:00 2015-08-23 08:39:00+01 \N f \N | |
| 41313 220 maintenance MOT due MOT due with Skoda 2011-06-22 18:18:00 2014-06-21 13:23:00+01 \N f \N | |
| 41413 220 maintenance MOT due MOT due with Suzuki 2012-10-23 14:18:00 2015-10-23 15:10:00+01 \N f \N | |
| 41513 220 maintenance MOT due MOT due with Suzuki 2012-10-22 12:24:00 2015-10-22 12:39:00+01 \N f \N | |
| 41613 220 maintenance MOT due MOT due with Toyota 2012-12-22 14:16:00 2015-12-22 16:31:00+00 \N f \N | |
| 41713 220 maintenance MOT due MOT due with Volkswagen 2011-06-04 15:25:00 2014-06-03 10:45:00+01 \N f \N | |
| 41813 220 maintenance MOT due MOT due with Volkswagen 2013-02-06 08:43:00 2016-02-06 11:05:00+00 \N f \N | |
| 41913 220 maintenance MOT due MOT due with Volvo 2013-02-13 17:39:00 2016-02-13 16:56:00+00 \N f \N | |
| 42013 20 accident Accident on the M19 Accident on the M19 (TYPE 18) 2013-10-28 14:06:00 2013-10-23 11:08:00+01 \N t \N | |
| 42113 320 fine Bad parking place Bad parking place (REF 3550285) 2012-03-11 14:11:00 2012-03-09 15:19:00+00 \N t \N | |
| 42213 320 fine Speed camera Caught on speed camera at 58mph instead of 50mph 2011-05-11 11:42:00 2011-05-10 17:58:00+01 \N t \N | |
| 42313 20 accident Accident on the M10 Accident on the M10 (TYPE 13) 2014-02-02 16:38:00 2014-01-31 09:03:00+00 \N t \N | |
| 42413 320 fine Bad parking place Bad parking place (REF 7640736) 2014-04-19 16:45:00 2014-04-16 17:15:00+01 \N t \N | |
| 42513 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2013-04-08 13:46:00 2013-04-05 11:23:00+01 \N t \N | |
| 42613 20 accident Accident on the M15 Accident on the M15 (TYPE 19) 2013-03-26 15:52:00 2013-03-23 09:44:00+00 \N t \N | |
| 42713 320 fine Bad parking place Bad parking place (REF 4247651) 2015-01-14 14:58:00 2015-01-14 17:12:00+00 \N t \N | |
| 42813 320 fine Speed camera Caught on speed camera at 56mph instead of 50mph 2013-11-16 13:24:00 2013-11-14 12:13:00+00 \N t \N | |
| 42913 20 accident Accident on the M10 Accident on the M10 (TYPE 12) 2011-09-03 11:02:00 2011-09-02 15:03:00+01 \N t \N | |
| 43013 320 fine Bad parking place Bad parking place (REF 2219206) 2013-12-15 16:37:00 2013-12-10 12:00:00+00 \N t \N | |
| 43113 320 fine Speed camera Caught on speed camera at 71mph instead of 50mph 2014-05-14 13:16:00 2014-05-11 16:05:00+01 \N t \N | |
| 43213 20 accident Accident on the M21 Accident on the M21 (TYPE 10) 2013-05-31 18:05:00 2013-05-29 14:53:00+01 \N t \N | |
| 43313 320 fine Bad parking place Bad parking place (REF 4218231) 2013-03-18 16:56:00 2013-03-13 18:47:00+00 \N t \N | |
| 43413 320 fine Speed camera Caught on speed camera at 63mph instead of 50mph 2014-04-16 17:30:00 2014-04-16 19:31:00+01 \N t \N | |
| 43513 20 accident Accident on the M17 Accident on the M17 (TYPE 11) 2013-02-06 15:22:00 2013-02-06 16:16:00+00 \N t \N | |
| 43613 320 fine Bad parking place Bad parking place (REF 5017303) 2014-05-11 15:07:00 2014-05-06 16:21:00+01 \N t \N | |
| 43713 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2014-05-06 14:52:00 2014-05-03 15:27:00+01 \N t \N | |
| 43813 20 accident Accident on the M12 Accident on the M12 (TYPE 16) 2012-10-20 18:18:00 2012-10-19 12:44:00+01 \N t \N | |
| 43913 320 fine Bad parking place Bad parking place (REF 6609389) 2012-09-12 14:34:00 2012-09-08 14:08:00+01 \N t \N | |
| 44013 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2012-12-06 08:57:00 2012-12-02 19:50:00+00 \N t \N | |
| 44113 20 accident Accident on the M19 Accident on the M19 (TYPE 17) 2013-09-13 12:40:00 2013-09-10 14:09:00+01 \N t \N | |
| 44213 320 fine Bad parking place Bad parking place (REF 6708352) 2012-01-04 17:54:00 2011-12-30 14:18:00+00 \N t \N | |
| 44313 320 fine Speed camera Caught on speed camera at 59mph instead of 50mph 2012-02-28 15:19:00 2012-02-27 12:58:00+00 \N t \N | |
| 44413 20 accident Accident on the M11 Accident on the M11 (TYPE 18) 2013-10-28 11:56:00 2013-10-28 14:57:00+00 \N t \N | |
| 44513 320 fine Bad parking place Bad parking place (REF 5266356) 2013-08-20 12:02:00 2013-08-19 08:56:00+01 \N t \N | |
| 44613 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2012-02-12 14:48:00 2012-02-09 19:45:00+00 \N t \N | |
| 44713 20 accident Accident on the M12 Accident on the M12 (TYPE 13) 2013-12-19 11:28:00 2013-12-14 08:28:00+00 \N t \N | |
| 44813 320 fine Bad parking place Bad parking place (REF 9570411) 2011-08-24 18:01:00 2011-08-21 15:54:00+01 \N t \N | |
| 44913 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2013-05-07 12:42:00 2013-05-05 11:37:00+01 \N t \N | |
| 45013 20 accident Accident on the M19 Accident on the M19 (TYPE 11) 2014-01-04 14:00:00 2014-01-04 13:00:00+00 \N t \N | |
| 45113 320 fine Bad parking place Bad parking place (REF 4218220) 2013-08-12 09:08:00 2013-08-10 18:06:00+01 \N t \N | |
| 45213 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2012-01-30 09:39:00 2012-01-26 12:29:00+00 \N t \N | |
| 45313 20 accident Accident on the M15 Accident on the M15 (TYPE 17) 2012-10-14 08:58:00 2012-10-12 14:43:00+01 \N t \N | |
| 45413 320 fine Bad parking place Bad parking place (REF 8297207) 2013-06-27 19:32:00 2013-06-22 10:04:00+01 \N t \N | |
| 45513 320 fine Speed camera Caught on speed camera at 70mph instead of 50mph 2013-03-07 14:02:00 2013-03-05 18:13:00+00 \N t \N | |
| 45613 20 accident Accident on the M25 Accident on the M25 (TYPE 12) 2013-01-14 13:54:00 2013-01-09 18:22:00+00 \N t \N | |
| 45713 320 fine Bad parking place Bad parking place (REF 8182315) 2011-05-14 16:19:00 2011-05-11 12:28:00+01 \N t \N | |
| 45813 320 fine Speed camera Caught on speed camera at 56mph instead of 50mph 2011-07-22 17:22:00 2011-07-20 16:44:00+01 \N t \N | |
| 45913 20 accident Accident on the M16 Accident on the M16 (TYPE 13) 2013-07-06 15:07:00 2013-07-04 13:13:00+01 \N t \N | |
| 46013 320 fine Bad parking place Bad parking place (REF 1380191) 2012-12-28 11:59:00 2012-12-24 16:29:00+00 \N t \N | |
| 46113 320 fine Speed camera Caught on speed camera at 59mph instead of 50mph 2013-04-09 09:53:00 2013-04-08 10:39:00+01 \N t \N | |
| 46213 20 accident Accident on the M11 Accident on the M11 (TYPE 11) 2013-10-28 17:29:00 2013-10-23 10:12:00+01 \N t \N | |
| 46313 320 fine Bad parking place Bad parking place (REF 1449407) 2012-11-30 12:41:00 2012-11-29 09:52:00+00 \N t \N | |
| 46413 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2012-07-19 14:45:00 2012-07-18 09:24:00+01 \N t \N | |
| 46513 20 accident Accident on the M22 Accident on the M22 (TYPE 15) 2012-10-10 12:03:00 2012-10-05 14:32:00+01 \N t \N | |
| 46613 320 fine Bad parking place Bad parking place (REF 2358901) 2013-10-02 17:28:00 2013-09-30 13:23:00+01 \N t \N | |
| 46713 320 fine Speed camera Caught on speed camera at 75mph instead of 50mph 2013-10-23 10:54:00 2013-10-23 15:48:00+01 \N t \N | |
| 46813 20 accident Accident on the M17 Accident on the M17 (TYPE 12) 2012-02-12 09:13:00 2012-02-09 18:12:00+00 \N t \N | |
| 46913 320 fine Bad parking place Bad parking place (REF 8022429) 2014-10-06 18:06:00 2014-10-03 14:07:00+01 \N t \N | |
| 47013 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2012-05-20 17:25:00 2012-05-15 11:22:00+01 \N t \N | |
| 47113 20 accident Accident on the M20 Accident on the M20 (TYPE 19) 2013-02-08 09:14:00 2013-02-07 12:10:00+00 \N t \N | |
| 47213 320 fine Bad parking place Bad parking place (REF 6140412) 2013-10-27 11:52:00 2013-10-27 17:43:00+00 \N t \N | |
| 47313 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2014-08-09 14:08:00 2014-08-04 15:26:00+01 \N t \N | |
| 47413 20 accident Accident on the M24 Accident on the M24 (TYPE 11) 2013-11-17 11:12:00 2013-11-14 13:06:00+00 \N t \N | |
| 47513 320 fine Bad parking place Bad parking place (REF 4709241) 2014-05-11 11:34:00 2014-05-11 15:09:00+01 \N t \N | |
| 47613 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2014-05-17 10:25:00 2014-05-16 15:50:00+01 \N t \N | |
| 47713 20 accident Accident on the M24 Accident on the M24 (TYPE 14) 2012-02-18 13:59:00 2012-02-18 17:50:00+00 \N t \N | |
| 47813 320 fine Bad parking place Bad parking place (REF 7654777) 2013-03-09 18:48:00 2013-03-09 08:56:00+00 \N t \N | |
| 47913 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2014-01-24 16:25:00 2014-01-20 16:09:00+00 \N t \N | |
| 48013 20 accident Accident on the M18 Accident on the M18 (TYPE 14) 2013-09-18 14:04:00 2013-09-15 12:13:00+01 \N t \N | |
| 48113 320 fine Bad parking place Bad parking place (REF 9370814) 2012-10-24 13:21:00 2012-10-23 16:46:00+01 \N t \N | |
| 48213 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2014-03-17 14:41:00 2014-03-16 15:20:00+00 \N t \N | |
| 48313 20 accident Accident on the M21 Accident on the M21 (TYPE 17) 2013-12-29 11:41:00 2013-12-27 14:30:00+00 \N t \N | |
| 48413 320 fine Bad parking place Bad parking place (REF 6785569) 2011-11-21 18:08:00 2011-11-18 14:05:00+00 \N t \N | |
| 48513 320 fine Speed camera Caught on speed camera at 72mph instead of 50mph 2012-02-15 17:40:00 2012-02-14 15:49:00+00 \N t \N | |
| 48613 20 accident Accident on the M18 Accident on the M18 (TYPE 15) 2012-11-14 14:57:00 2012-11-10 13:58:00+00 \N t \N | |
| 48713 320 fine Bad parking place Bad parking place (REF 9389391) 2014-01-08 19:53:00 2014-01-05 19:13:00+00 \N t \N | |
| 48813 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2014-01-25 18:29:00 2014-01-21 16:39:00+00 \N t \N | |
| 48913 20 accident Accident on the M22 Accident on the M22 (TYPE 15) 2012-10-28 08:05:00 2012-10-27 16:09:00+01 \N t \N | |
| 49013 320 fine Bad parking place Bad parking place (REF 3907122) 2012-01-13 16:16:00 2012-01-08 17:20:00+00 \N t \N | |
| 49113 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2012-11-19 15:53:00 2012-11-16 11:21:00+00 \N t \N | |
| 49213 20 accident Accident on the M25 Accident on the M25 (TYPE 18) 2013-10-05 16:07:00 2013-10-02 10:06:00+01 \N t \N | |
| 49313 320 fine Bad parking place Bad parking place (REF 5378706) 2011-06-06 18:36:00 2011-06-02 10:13:00+01 \N t \N | |
| 49413 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2014-10-29 19:33:00 2014-10-25 08:56:00+01 \N t \N | |
| 49513 20 accident Accident on the M25 Accident on the M25 (TYPE 13) 2014-01-05 08:31:00 2014-01-01 12:23:00+00 \N t \N | |
| 49613 320 fine Bad parking place Bad parking place (REF 1531680) 2013-05-14 15:30:00 2013-05-11 10:05:00+01 \N t \N | |
| 49713 320 fine Speed camera Caught on speed camera at 72mph instead of 50mph 2012-01-30 18:11:00 2012-01-30 10:47:00+00 \N t \N | |
| 49813 20 accident Accident on the M22 Accident on the M22 (TYPE 13) 2014-04-02 10:07:00 2014-03-28 13:45:00+00 \N t \N | |
| 49913 320 fine Bad parking place Bad parking place (REF 3667834) 2012-06-30 18:07:00 2012-06-29 11:59:00+01 \N t \N | |
| 50013 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2014-02-09 11:41:00 2014-02-05 18:57:00+00 \N t \N | |
| 50113 20 accident Accident on the M25 Accident on the M25 (TYPE 19) 2013-10-13 17:50:00 2013-10-09 17:19:00+01 \N t \N | |
| 50213 320 fine Bad parking place Bad parking place (REF 3002626) 2013-08-14 15:43:00 2013-08-12 19:48:00+01 \N t \N | |
| 50313 320 fine Speed camera Caught on speed camera at 58mph instead of 50mph 2011-12-04 16:29:00 2011-11-29 14:37:00+00 \N t \N | |
| 50413 20 accident Accident on the M15 Accident on the M15 (TYPE 12) 2012-07-02 10:45:00 2012-06-28 13:13:00+01 \N t \N | |
| 50513 320 fine Bad parking place Bad parking place (REF 4315918) 2012-03-02 15:54:00 2012-03-02 17:14:00+00 \N t \N | |
| 50613 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2014-02-07 08:15:00 2014-02-07 14:05:00+00 \N t \N | |
| 50713 20 accident Accident on the M22 Accident on the M22 (TYPE 19) 2012-03-31 17:44:00 2012-03-26 15:43:00+01 \N t \N | |
| 50813 320 fine Bad parking place Bad parking place (REF 7956829) 2014-03-30 12:41:00 2014-03-30 10:48:00+01 \N t \N | |
| 50913 320 fine Speed camera Caught on speed camera at 61mph instead of 50mph 2014-01-23 12:18:00 2014-01-23 19:14:00+00 \N t \N | |
| 51013 20 accident Accident on the M15 Accident on the M15 (TYPE 15) 2012-03-08 10:23:00 2012-03-05 17:20:00+00 \N t \N | |
| 51113 320 fine Bad parking place Bad parking place (REF 2981607) 2011-09-13 18:52:00 2011-09-09 15:55:00+01 \N t \N | |
| 51213 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2012-06-23 18:42:00 2012-06-21 13:49:00+01 \N t \N | |
| 51313 20 accident Accident on the M10 Accident on the M10 (TYPE 15) 2012-03-11 08:06:00 2012-03-06 16:52:00+00 \N t \N | |
| 51413 320 fine Bad parking place Bad parking place (REF 9979631) 2014-03-20 18:57:00 2014-03-20 14:02:00+00 \N t \N | |
| 51513 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2014-07-30 10:06:00 2014-07-25 18:25:00+01 \N t \N | |
| 51613 20 accident Accident on the M18 Accident on the M18 (TYPE 14) 2014-12-01 15:01:00 2014-12-01 19:41:00+00 \N t \N | |
| 51713 320 fine Bad parking place Bad parking place (REF 5678389) 2013-06-03 19:18:00 2013-05-30 16:55:00+01 \N t \N | |
| 51813 320 fine Speed camera Caught on speed camera at 71mph instead of 50mph 2013-11-06 17:40:00 2013-11-03 14:17:00+00 \N t \N | |
| 51913 20 accident Accident on the M21 Accident on the M21 (TYPE 10) 2013-04-09 17:58:00 2013-04-05 14:58:00+01 \N t \N | |
| 52013 320 fine Bad parking place Bad parking place (REF 2103309) 2013-06-25 13:24:00 2013-06-25 14:20:00+01 \N t \N | |
| 52113 320 fine Speed camera Caught on speed camera at 57mph instead of 50mph 2014-03-01 18:27:00 2014-02-27 10:03:00+00 \N t \N | |
| 52213 20 accident Accident on the M11 Accident on the M11 (TYPE 16) 2014-02-10 15:40:00 2014-02-08 13:48:00+00 \N t \N | |
| 52313 320 fine Bad parking place Bad parking place (REF 9251378) 2013-07-10 10:01:00 2013-07-07 17:37:00+01 \N t \N | |
| 52413 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2012-11-18 12:32:00 2012-11-17 15:44:00+00 \N t \N | |
| 52513 20 accident Accident on the M14 Accident on the M14 (TYPE 13) 2012-09-06 12:36:00 2012-09-06 18:22:00+01 \N t \N | |
| 52613 320 fine Bad parking place Bad parking place (REF 3563047) 2013-08-12 19:10:00 2013-08-11 09:30:00+01 \N t \N | |
| 52713 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2014-02-22 13:50:00 2014-02-17 11:31:00+00 \N t \N | |
| 52813 20 accident Accident on the M13 Accident on the M13 (TYPE 11) 2012-04-28 18:33:00 2012-04-27 11:02:00+01 \N t \N | |
| 52913 320 fine Bad parking place Bad parking place (REF 6722288) 2013-07-03 19:43:00 2013-07-02 12:54:00+01 \N t \N | |
| 53013 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2012-06-20 14:10:00 2012-06-20 08:16:00+01 \N t \N | |
| 53113 20 accident Accident on the M14 Accident on the M14 (TYPE 17) 2014-11-25 18:10:00 2014-11-20 11:04:00+00 \N t \N | |
| 53213 320 fine Bad parking place Bad parking place (REF 6449601) 2014-03-19 10:46:00 2014-03-19 19:03:00+00 \N t \N | |
| 53313 320 fine Speed camera Caught on speed camera at 58mph instead of 50mph 2012-10-22 13:57:00 2012-10-19 08:28:00+01 \N t \N | |
| 53413 20 accident Accident on the M23 Accident on the M23 (TYPE 19) 2014-09-21 13:17:00 2014-09-16 12:33:00+01 \N t \N | |
| 53513 320 fine Bad parking place Bad parking place (REF 8342228) 2013-04-22 19:51:00 2013-04-18 13:51:00+01 \N t \N | |
| 53613 320 fine Speed camera Caught on speed camera at 65mph instead of 50mph 2014-05-26 16:47:00 2014-05-23 18:39:00+01 \N t \N | |
| 53713 20 accident Accident on the M14 Accident on the M14 (TYPE 15) 2013-04-17 11:21:00 2013-04-12 19:19:00+01 \N t \N | |
| 53813 320 fine Bad parking place Bad parking place (REF 7666525) 2012-12-06 13:31:00 2012-12-02 13:42:00+00 \N t \N | |
| 53913 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2013-04-25 12:50:00 2013-04-21 19:05:00+01 \N t \N | |
| 54013 20 accident Accident on the M16 Accident on the M16 (TYPE 18) 2014-10-15 08:43:00 2014-10-15 13:49:00+01 \N t \N | |
| 54113 320 fine Bad parking place Bad parking place (REF 3992903) 2011-05-16 13:00:00 2011-05-14 13:32:00+01 \N t \N | |
| 54213 320 fine Speed camera Caught on speed camera at 65mph instead of 50mph 2014-02-09 18:56:00 2014-02-07 12:46:00+00 \N t \N | |
| 54313 20 accident Accident on the M17 Accident on the M17 (TYPE 10) 2011-07-19 18:47:00 2011-07-17 08:40:00+01 \N t \N | |
| 54413 320 fine Bad parking place Bad parking place (REF 9317360) 2014-03-20 14:47:00 2014-03-19 17:28:00+00 \N t \N | |
| 54513 320 fine Speed camera Caught on speed camera at 65mph instead of 50mph 2013-02-26 14:00:00 2013-02-24 14:53:00+00 \N t \N | |
| 54613 20 accident Accident on the M19 Accident on the M19 (TYPE 19) 2011-12-23 19:21:00 2011-12-21 16:54:00+00 \N t \N | |
| 54713 320 fine Bad parking place Bad parking place (REF 4159328) 2012-04-10 10:10:00 2012-04-09 19:42:00+01 \N t \N | |
| 54813 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2012-10-20 09:39:00 2012-10-19 19:58:00+01 \N t \N | |
| 54913 20 accident Accident on the M15 Accident on the M15 (TYPE 17) 2012-05-25 09:34:00 2012-05-20 10:18:00+01 \N t \N | |
| 55013 320 fine Bad parking place Bad parking place (REF 4478899) 2014-06-24 19:02:00 2014-06-24 14:38:00+01 \N t \N | |
| 55113 320 fine Speed camera Caught on speed camera at 57mph instead of 50mph 2014-05-05 13:39:00 2014-05-04 09:25:00+01 \N t \N | |
| 55213 20 accident Accident on the M24 Accident on the M24 (TYPE 18) 2013-08-29 18:44:00 2013-08-27 11:04:00+01 \N t \N | |
| 55313 320 fine Bad parking place Bad parking place (REF 1656266) 2014-04-18 08:19:00 2014-04-16 17:45:00+01 \N t \N | |
| 55413 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2012-05-11 11:23:00 2012-05-07 17:42:00+01 \N t \N | |
| 55513 20 accident Accident on the M21 Accident on the M21 (TYPE 14) 2013-03-21 10:20:00 2013-03-18 18:15:00+00 \N t \N | |
| 55613 320 fine Bad parking place Bad parking place (REF 4918614) 2012-02-29 09:37:00 2012-02-26 14:18:00+00 \N t \N | |
| 55713 320 fine Speed camera Caught on speed camera at 61mph instead of 50mph 2013-08-28 12:00:00 2013-08-28 17:53:00+01 \N t \N | |
| 55813 20 accident Accident on the M12 Accident on the M12 (TYPE 11) 2015-07-18 14:10:00 2015-07-15 08:52:00+01 \N t \N | |
| 55913 320 fine Bad parking place Bad parking place (REF 6624845) 2014-03-17 17:04:00 2014-03-13 14:53:00+00 \N t \N | |
| 56013 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2014-04-16 19:19:00 2014-04-14 12:09:00+01 \N t \N | |
| 56113 20 accident Accident on the M15 Accident on the M15 (TYPE 10) 2014-02-16 09:56:00 2014-02-13 17:05:00+00 \N t \N | |
| 56213 320 fine Bad parking place Bad parking place (REF 4797388) 2015-04-02 16:16:00 2015-03-29 08:45:00+01 \N t \N | |
| 56313 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2013-11-22 09:47:00 2013-11-19 17:01:00+00 \N t \N | |
| 56413 20 accident Accident on the M16 Accident on the M16 (TYPE 12) 2014-11-09 19:13:00 2014-11-08 16:59:00+00 \N t \N | |
| 56513 320 fine Bad parking place Bad parking place (REF 4465544) 2015-05-10 12:53:00 2015-05-06 12:14:00+01 \N t \N | |
| 56613 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2014-05-07 11:47:00 2014-05-06 15:29:00+01 \N t \N | |
| 56713 20 accident Accident on the M10 Accident on the M10 (TYPE 17) 2014-11-15 14:06:00 2014-11-11 16:55:00+00 \N t \N | |
| 56813 320 fine Bad parking place Bad parking place (REF 9227444) 2013-12-02 14:33:00 2013-11-29 14:25:00+00 \N t \N | |
| 56913 320 fine Speed camera Caught on speed camera at 56mph instead of 50mph 2013-08-13 13:48:00 2013-08-13 16:22:00+01 \N t \N | |
| 57013 20 accident Accident on the M14 Accident on the M14 (TYPE 10) 2015-09-29 19:35:00 2015-09-26 09:30:00+01 \N t \N | |
| 57113 320 fine Bad parking place Bad parking place (REF 7848976) 2013-09-10 09:03:00 2013-09-06 15:41:00+01 \N t \N | |
| 57213 320 fine Speed camera Caught on speed camera at 63mph instead of 50mph 2015-09-13 10:29:00 2015-09-11 17:26:00+01 \N t \N | |
| 57313 20 accident Accident on the M24 Accident on the M24 (TYPE 15) 2015-06-14 08:47:00 2015-06-09 14:53:00+01 \N t \N | |
| 57413 320 fine Bad parking place Bad parking place (REF 8589844) 2014-02-09 16:52:00 2014-02-09 11:09:00+00 \N t \N | |
| 57513 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2015-08-29 18:38:00 2015-08-26 17:39:00+01 \N t \N | |
| 57613 20 accident Accident on the M21 Accident on the M21 (TYPE 10) 2015-04-22 10:57:00 2015-04-20 11:33:00+01 \N t \N | |
| 57713 320 fine Bad parking place Bad parking place (REF 8235616) 2015-09-08 14:52:00 2015-09-06 17:22:00+01 \N t \N | |
| 57813 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2015-11-20 10:41:00 2015-11-15 11:33:00+00 \N t \N | |
| 57913 20 accident Accident on the M22 Accident on the M22 (TYPE 10) 2014-04-26 16:09:00 2014-04-22 12:01:00+01 \N t \N | |
| 58013 320 fine Bad parking place Bad parking place (REF 6175685) 2015-08-01 19:02:00 2015-07-30 14:44:00+01 \N t \N | |
| 58113 320 fine Speed camera Caught on speed camera at 56mph instead of 50mph 2015-05-07 08:11:00 2015-05-02 11:10:00+01 \N t \N | |
| 58213 20 accident Accident on the M20 Accident on the M20 (TYPE 11) 2015-04-12 17:35:00 2015-04-07 10:56:00+01 \N t \N | |
| 58313 320 fine Bad parking place Bad parking place (REF 5206061) 2015-07-19 11:22:00 2015-07-15 09:49:00+01 \N t \N | |
| 58413 320 fine Speed camera Caught on speed camera at 57mph instead of 50mph 2015-06-05 09:44:00 2015-06-03 12:46:00+01 \N t \N | |
| 58513 20 accident Accident on the M21 Accident on the M21 (TYPE 11) 2015-04-24 10:05:00 2015-04-20 10:30:00+01 \N t \N | |
| 58613 320 fine Bad parking place Bad parking place (REF 9594342) 2014-08-17 11:20:00 2014-08-15 11:49:00+01 \N t \N | |
| 58713 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2015-01-31 09:33:00 2015-01-26 10:05:00+00 \N t \N | |
| 58813 20 accident Accident on the M22 Accident on the M22 (TYPE 14) 2014-08-22 17:12:00 2014-08-17 11:46:00+01 \N t \N | |
| 58913 320 fine Bad parking place Bad parking place (REF 1983317) 2014-03-27 12:29:00 2014-03-22 19:35:00+00 \N t \N | |
| 59013 320 fine Speed camera Caught on speed camera at 58mph instead of 50mph 2015-09-07 08:13:00 2015-09-03 19:45:00+01 \N t \N | |
| 59113 20 accident Accident on the M16 Accident on the M16 (TYPE 13) 2016-01-10 09:16:00 2016-01-08 10:15:00+00 \N t \N | |
| 59213 320 fine Bad parking place Bad parking place (REF 2707490) 2015-08-04 10:42:00 2015-08-01 11:59:00+01 \N t \N | |
| 59313 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2014-06-30 09:25:00 2014-06-27 15:38:00+01 \N t \N | |
| 59413 20 accident Accident on the M21 Accident on the M21 (TYPE 19) 2014-07-27 12:48:00 2014-07-22 14:02:00+01 \N t \N | |
| 59513 320 fine Bad parking place Bad parking place (REF 4769486) 2015-01-27 15:19:00 2015-01-23 16:06:00+00 \N t \N | |
| 59613 320 fine Speed camera Caught on speed camera at 75mph instead of 50mph 2015-09-26 18:38:00 2015-09-25 17:56:00+01 \N t \N | |
| 59713 20 accident Accident on the M11 Accident on the M11 (TYPE 12) 2014-09-29 14:40:00 2014-09-29 11:00:00+01 \N t \N | |
| 59813 320 fine Bad parking place Bad parking place (REF 2485223) 2014-05-15 10:49:00 2014-05-12 18:23:00+01 \N t \N | |
| 59913 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2016-01-19 08:23:00 2016-01-14 18:16:00+00 \N t \N | |
| 60013 20 accident Accident on the M13 Accident on the M13 (TYPE 13) 2015-09-20 14:14:00 2015-09-20 09:01:00+01 \N t \N | |
| 60113 320 fine Bad parking place Bad parking place (REF 2700421) 2014-11-10 13:53:00 2014-11-10 17:26:00+00 \N t \N | |
| 60213 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2014-01-08 14:36:00 2014-01-05 18:58:00+00 \N t \N | |
| 60313 20 accident Accident on the M11 Accident on the M11 (TYPE 17) 2014-03-30 13:24:00 2014-03-27 14:08:00+00 \N t \N | |
| 60413 320 fine Bad parking place Bad parking place (REF 7285576) 2014-06-18 17:48:00 2014-06-18 17:30:00+01 \N t \N | |
| 60513 320 fine Speed camera Caught on speed camera at 64mph instead of 50mph 2014-06-23 18:53:00 2014-06-20 16:42:00+01 \N t \N | |
| 60613 20 accident Accident on the M12 Accident on the M12 (TYPE 11) 2014-05-14 08:00:00 2014-05-14 11:58:00+01 \N t \N | |
| 60713 320 fine Bad parking place Bad parking place (REF 7331432) 2014-04-21 09:13:00 2014-04-18 19:35:00+01 \N t \N | |
| 60813 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2014-05-24 16:18:00 2014-05-24 19:35:00+01 \N t \N | |
| 60913 20 accident Accident on the M21 Accident on the M21 (TYPE 18) 2015-08-31 15:07:00 2015-08-26 10:31:00+01 \N t \N | |
| 61013 320 fine Bad parking place Bad parking place (REF 7405265) 2014-06-11 09:14:00 2014-06-10 15:53:00+01 \N t \N | |
| 61113 320 fine Speed camera Caught on speed camera at 72mph instead of 50mph 2015-06-29 13:58:00 2015-06-27 15:24:00+01 \N t \N | |
| 61213 20 accident Accident on the M22 Accident on the M22 (TYPE 18) 2015-12-29 18:58:00 2015-12-25 18:56:00+00 \N t \N | |
| 61313 320 fine Bad parking place Bad parking place (REF 8499276) 2015-01-29 15:07:00 2015-01-28 13:44:00+00 \N t \N | |
| 61413 320 fine Speed camera Caught on speed camera at 61mph instead of 50mph 2014-10-01 17:42:00 2014-10-01 12:15:00+01 \N t \N | |
| 61513 20 accident Accident on the M14 Accident on the M14 (TYPE 19) 2014-08-25 14:20:00 2014-08-25 08:30:00+01 \N t \N | |
| 61613 320 fine Bad parking place Bad parking place (REF 9864842) 2015-01-17 19:58:00 2015-01-17 11:47:00+00 \N t \N | |
| 61713 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2013-09-16 10:32:00 2013-09-13 19:09:00+01 \N t \N | |
| 61813 20 accident Accident on the M25 Accident on the M25 (TYPE 15) 2015-03-21 14:40:00 2015-03-21 17:28:00+00 \N t \N | |
| 61913 320 fine Bad parking place Bad parking place (REF 5065011) 2014-10-05 19:23:00 2014-09-30 11:32:00+01 \N t \N | |
| 62013 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2015-07-09 13:49:00 2015-07-06 19:00:00+01 \N t \N | |
| 62113 20 accident Accident on the M25 Accident on the M25 (TYPE 17) 2016-01-11 11:31:00 2016-01-07 10:15:00+00 \N t \N | |
| 62213 320 fine Bad parking place Bad parking place (REF 8599850) 2015-06-20 18:26:00 2015-06-19 19:11:00+01 \N t \N | |
| 62313 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2015-01-22 16:34:00 2015-01-22 18:57:00+00 \N t \N | |
| 62413 20 accident Accident on the M18 Accident on the M18 (TYPE 12) 2015-02-02 16:23:00 2015-01-31 17:04:00+00 \N t \N | |
| 62513 320 fine Bad parking place Bad parking place (REF 8030071) 2015-07-13 16:51:00 2015-07-13 13:25:00+01 \N t \N | |
| 62613 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2014-11-28 15:08:00 2014-11-23 19:07:00+00 \N t \N | |
| 62713 20 accident Accident on the M23 Accident on the M23 (TYPE 12) 2014-09-19 17:30:00 2014-09-16 17:49:00+01 \N t \N | |
| 62813 320 fine Bad parking place Bad parking place (REF 1697903) 2014-06-03 09:28:00 2014-06-02 08:14:00+01 \N t \N | |
| 62913 320 fine Speed camera Caught on speed camera at 57mph instead of 50mph 2015-04-09 15:54:00 2015-04-06 14:24:00+01 \N t \N | |
| 63013 20 accident Accident on the M13 Accident on the M13 (TYPE 11) 2015-10-03 10:08:00 2015-09-30 14:33:00+01 \N t \N | |
| 63113 320 fine Bad parking place Bad parking place (REF 5047650) 2013-12-14 11:08:00 2013-12-12 18:47:00+00 \N t \N | |
| 63213 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2015-02-27 09:29:00 2015-02-23 12:50:00+00 \N t \N | |
| 63313 20 accident Accident on the M24 Accident on the M24 (TYPE 17) 2015-02-06 16:41:00 2015-02-06 19:07:00+00 \N t \N | |
| 63413 320 fine Bad parking place Bad parking place (REF 3183324) 2014-03-21 10:37:00 2014-03-16 11:14:00+00 \N t \N | |
| 63513 320 fine Speed camera Caught on speed camera at 75mph instead of 50mph 2015-11-10 09:39:00 2015-11-06 15:18:00+00 \N t \N | |
| 63613 20 accident Accident on the M14 Accident on the M14 (TYPE 12) 2013-12-05 13:21:00 2013-12-01 11:54:00+00 \N t \N | |
| 63713 320 fine Bad parking place Bad parking place (REF 4311177) 2015-08-03 10:18:00 2015-08-03 14:14:00+01 \N t \N | |
| 63813 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2015-09-26 17:55:00 2015-09-24 09:25:00+01 \N t \N | |
| 63913 20 accident Accident on the M23 Accident on the M23 (TYPE 14) 2015-07-17 18:32:00 2015-07-13 10:53:00+01 \N t \N | |
| 64013 320 fine Bad parking place Bad parking place (REF 2590536) 2015-03-13 11:34:00 2015-03-08 14:40:00+00 \N t \N | |
| 64113 320 fine Speed camera Caught on speed camera at 63mph instead of 50mph 2015-05-10 12:57:00 2015-05-07 11:29:00+01 \N t \N | |
| 64213 20 accident Accident on the M14 Accident on the M14 (TYPE 13) 2014-06-20 16:14:00 2014-06-20 17:08:00+01 \N t \N | |
| 64313 320 fine Bad parking place Bad parking place (REF 1389189) 2013-10-03 13:50:00 2013-09-29 11:52:00+01 \N t \N | |
| 64413 320 fine Speed camera Caught on speed camera at 59mph instead of 50mph 2016-03-11 16:05:00 2016-03-07 12:52:00+00 \N t \N | |
| 64513 20 accident Accident on the M12 Accident on the M12 (TYPE 16) 2015-02-02 16:54:00 2015-02-01 11:53:00+00 \N t \N | |
| 64613 320 fine Bad parking place Bad parking place (REF 1252293) 2015-02-23 10:59:00 2015-02-18 13:10:00+00 \N t \N | |
| 64713 320 fine Speed camera Caught on speed camera at 59mph instead of 50mph 2016-03-31 08:20:00 2016-03-27 16:47:00+01 \N t \N | |
| 64813 20 accident Accident on the M18 Accident on the M18 (TYPE 19) 2013-12-21 13:43:00 2013-12-17 08:38:00+00 \N t \N | |
| 64913 320 fine Bad parking place Bad parking place (REF 5987351) 2015-07-10 08:39:00 2015-07-05 19:21:00+01 \N t \N | |
| 65013 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2015-08-06 12:07:00 2015-08-02 18:34:00+01 \N t \N | |
| 65113 20 accident Accident on the M16 Accident on the M16 (TYPE 12) 2015-06-15 11:48:00 2015-06-14 15:07:00+01 \N t \N | |
| 65213 320 fine Bad parking place Bad parking place (REF 3330320) 2015-02-13 13:30:00 2015-02-09 13:14:00+00 \N t \N | |
| 65313 320 fine Speed camera Caught on speed camera at 65mph instead of 50mph 2013-05-12 09:17:00 2013-05-12 12:35:00+01 \N t \N | |
| 65413 20 accident Accident on the M17 Accident on the M17 (TYPE 17) 2015-05-24 13:59:00 2015-05-22 15:33:00+01 \N t \N | |
| 65513 320 fine Bad parking place Bad parking place (REF 5856365) 2014-11-21 18:44:00 2014-11-20 13:10:00+00 \N t \N | |
| 65613 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2014-08-28 14:15:00 2014-08-28 10:48:00+01 \N t \N | |
| 65713 20 accident Accident on the M24 Accident on the M24 (TYPE 17) 2015-02-20 16:16:00 2015-02-18 15:02:00+00 \N t \N | |
| 65813 320 fine Bad parking place Bad parking place (REF 8031031) 2015-03-24 13:09:00 2015-03-19 19:58:00+00 \N t \N | |
| 65913 320 fine Speed camera Caught on speed camera at 61mph instead of 50mph 2015-05-18 09:12:00 2015-05-16 18:20:00+01 \N t \N | |
| 66013 20 accident Accident on the M17 Accident on the M17 (TYPE 18) 2014-05-09 11:51:00 2014-05-04 18:10:00+01 \N t \N | |
| 66113 320 fine Bad parking place Bad parking place (REF 9081763) 2015-07-11 09:29:00 2015-07-09 10:16:00+01 \N t \N | |
| 66213 320 fine Speed camera Caught on speed camera at 71mph instead of 50mph 2013-10-26 18:09:00 2013-10-21 12:55:00+01 \N t \N | |
| 66313 20 accident Accident on the M21 Accident on the M21 (TYPE 11) 2013-11-13 18:20:00 2013-11-09 08:23:00+00 \N t \N | |
| 66413 320 fine Bad parking place Bad parking place (REF 6857538) 2016-02-18 18:53:00 2016-02-16 14:58:00+00 \N t \N | |
| 66513 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2013-09-18 08:14:00 2013-09-13 16:27:00+01 \N t \N | |
| 66613 20 accident Accident on the M22 Accident on the M22 (TYPE 11) 2015-08-19 08:20:00 2015-08-16 14:24:00+01 \N t \N | |
| 66713 320 fine Bad parking place Bad parking place (REF 8837088) 2014-08-26 08:30:00 2014-08-25 14:02:00+01 \N t \N | |
| 66813 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2014-10-15 18:09:00 2014-10-10 15:56:00+01 \N t \N | |
| 66913 20 accident Accident on the M12 Accident on the M12 (TYPE 17) 2013-09-12 17:16:00 2013-09-07 15:18:00+01 \N t \N | |
| 67013 320 fine Bad parking place Bad parking place (REF 4367141) 2015-07-01 09:39:00 2015-06-26 14:07:00+01 \N t \N | |
| 67113 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2014-02-08 08:42:00 2014-02-04 13:44:00+00 \N t \N | |
| 67213 20 accident Accident on the M18 Accident on the M18 (TYPE 11) 2013-11-11 18:43:00 2013-11-09 19:08:00+00 \N t \N | |
| 67313 320 fine Bad parking place Bad parking place (REF 7401161) 2015-03-02 19:23:00 2015-03-02 17:52:00+00 \N t \N | |
| 67413 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2013-05-31 18:05:00 2013-05-28 09:40:00+01 \N t \N | |
| 67513 20 accident Accident on the M17 Accident on the M17 (TYPE 13) 2016-03-04 15:08:00 2016-03-03 10:56:00+00 \N t \N | |
| 67613 320 fine Bad parking place Bad parking place (REF 4256320) 2013-07-16 19:42:00 2013-07-15 18:26:00+01 \N t \N | |
| 67713 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2015-07-20 15:48:00 2015-07-18 10:13:00+01 \N t \N | |
| 67813 20 accident Accident on the M24 Accident on the M24 (TYPE 15) 2015-10-09 18:29:00 2015-10-09 12:16:00+01 \N t \N | |
| 67913 320 fine Bad parking place Bad parking place (REF 3415849) 2013-12-30 09:44:00 2013-12-30 15:57:00+00 \N t \N | |
| 68013 320 fine Speed camera Caught on speed camera at 57mph instead of 50mph 2013-05-05 12:09:00 2013-05-04 11:21:00+01 \N t \N | |
| 68113 20 accident Accident on the M15 Accident on the M15 (TYPE 12) 2014-05-13 19:23:00 2014-05-09 12:49:00+01 \N t \N | |
| 68213 320 fine Bad parking place Bad parking place (REF 5751956) 2015-08-05 13:01:00 2015-08-03 17:59:00+01 \N t \N | |
| 68313 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2013-10-15 18:19:00 2013-10-15 18:25:00+01 \N t \N | |
| 68413 20 accident Accident on the M23 Accident on the M23 (TYPE 17) 2016-03-30 10:42:00 2016-03-26 19:30:00+00 \N t \N | |
| 68513 320 fine Bad parking place Bad parking place (REF 3972130) 2015-01-03 15:20:00 2015-12-29 16:26:00+00 \N t \N | |
| 68613 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2015-07-14 12:37:00 2015-07-13 15:13:00+01 \N t \N | |
| 68713 20 accident Accident on the M20 Accident on the M20 (TYPE 19) 2015-10-12 08:16:00 2015-10-07 10:33:00+01 \N t \N | |
| 68813 320 fine Bad parking place Bad parking place (REF 1734747) 2015-03-02 12:02:00 2015-03-01 12:56:00+00 \N t \N | |
| 68913 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2015-01-18 16:13:00 2015-01-18 13:28:00+00 \N t \N | |
| 69013 20 accident Accident on the M17 Accident on the M17 (TYPE 13) 2016-03-13 09:16:00 2016-03-11 15:38:00+00 \N t \N | |
| 69113 320 fine Bad parking place Bad parking place (REF 9302809) 2013-06-28 12:05:00 2013-06-27 13:28:00+01 \N t \N | |
| 69213 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2015-11-07 19:00:00 2015-11-04 09:38:00+00 \N t \N | |
| 69313 20 accident Accident on the M11 Accident on the M11 (TYPE 10) 2016-03-09 18:50:00 2016-03-08 16:28:00+00 \N t \N | |
| 69413 320 fine Bad parking place Bad parking place (REF 1598958) 2013-12-12 14:02:00 2013-12-07 18:19:00+00 \N t \N | |
| 69513 320 fine Speed camera Caught on speed camera at 59mph instead of 50mph 2015-09-05 14:53:00 2015-09-05 13:10:00+01 \N t \N | |
| 69613 20 accident Accident on the M21 Accident on the M21 (TYPE 11) 2015-05-18 10:33:00 2015-05-18 16:49:00+01 \N t \N | |
| 69713 320 fine Bad parking place Bad parking place (REF 2575439) 2016-02-25 11:40:00 2016-02-22 19:27:00+00 \N t \N | |
| 69813 320 fine Speed camera Caught on speed camera at 57mph instead of 50mph 2015-03-17 15:11:00 2015-03-16 17:51:00+00 \N t \N | |
| 69913 20 accident Accident on the M19 Accident on the M19 (TYPE 14) 2015-06-24 08:47:00 2015-06-24 18:44:00+01 \N t \N | |
| 70013 320 fine Bad parking place Bad parking place (REF 9563685) 2014-11-02 18:36:00 2014-10-31 12:37:00+00 \N t \N | |
| 70113 320 fine Speed camera Caught on speed camera at 64mph instead of 50mph 2015-05-16 09:16:00 2015-05-16 10:59:00+01 \N t \N | |
| 70213 20 accident Accident on the M23 Accident on the M23 (TYPE 10) 2015-12-29 10:11:00 2015-12-25 18:21:00+00 \N t \N | |
| 70313 320 fine Bad parking place Bad parking place (REF 2191182) 2015-08-15 14:33:00 2015-08-10 14:13:00+01 \N t \N | |
| 70413 320 fine Speed camera Caught on speed camera at 58mph instead of 50mph 2015-09-26 10:13:00 2015-09-25 11:59:00+01 \N t \N | |
| 70513 20 accident Accident on the M18 Accident on the M18 (TYPE 15) 2015-01-30 17:22:00 2015-01-28 16:54:00+00 \N t \N | |
| 70613 320 fine Bad parking place Bad parking place (REF 5623875) 2015-04-16 13:08:00 2015-04-16 15:06:00+01 \N t \N | |
| 70713 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2015-12-18 13:28:00 2015-12-15 12:42:00+00 \N t \N | |
| 70813 20 accident Accident on the M24 Accident on the M24 (TYPE 11) 2014-09-27 09:21:00 2014-09-23 16:05:00+01 \N t \N | |
| 70913 320 fine Bad parking place Bad parking place (REF 1948828) 2015-09-21 11:40:00 2015-09-21 10:39:00+01 \N t \N | |
| 71013 320 fine Speed camera Caught on speed camera at 71mph instead of 50mph 2015-11-01 12:53:00 2015-10-29 13:36:00+00 \N t \N | |
| 71113 20 accident Accident on the M23 Accident on the M23 (TYPE 12) 2014-10-23 14:34:00 2014-10-23 18:06:00+01 \N t \N | |
| 71213 320 fine Bad parking place Bad parking place (REF 4008830) 2015-05-07 13:49:00 2015-05-02 13:49:00+01 \N t \N | |
| 71313 320 fine Speed camera Caught on speed camera at 61mph instead of 50mph 2015-12-31 11:02:00 2015-12-31 14:15:00+00 \N t \N | |
| 71413 20 accident Accident on the M18 Accident on the M18 (TYPE 16) 2015-01-25 08:15:00 2015-01-24 16:27:00+00 \N t \N | |
| 71513 320 fine Bad parking place Bad parking place (REF 1514844) 2015-01-16 17:54:00 2015-01-13 19:03:00+00 \N t \N | |
| 71613 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2015-07-22 18:57:00 2015-07-22 09:10:00+01 \N t \N | |
| 71713 20 accident Accident on the M17 Accident on the M17 (TYPE 15) 2015-05-04 10:04:00 2015-05-02 08:56:00+01 \N t \N | |
| 71813 320 fine Bad parking place Bad parking place (REF 1385830) 2015-12-23 09:43:00 2015-12-20 14:36:00+00 \N t \N | |
| 71913 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2015-08-21 15:23:00 2015-08-19 09:49:00+01 \N t \N | |
| 72013 20 accident Accident on the M20 Accident on the M20 (TYPE 12) 2015-03-17 19:25:00 2015-03-14 15:51:00+00 \N t \N | |
| 72113 320 fine Bad parking place Bad parking place (REF 4208580) 2015-04-26 17:25:00 2015-04-21 16:13:00+01 \N t \N | |
| 72213 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2015-07-27 14:13:00 2015-07-23 19:07:00+01 \N t \N | |
| 72313 20 accident Accident on the M21 Accident on the M21 (TYPE 18) 2015-09-16 18:44:00 2015-09-15 19:43:00+01 \N t \N | |
| 72413 320 fine Bad parking place Bad parking place (REF 5030745) 2015-10-31 14:12:00 2015-10-30 10:07:00+00 \N t \N | |
| 72513 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2016-01-20 12:58:00 2016-01-16 12:38:00+00 \N t \N | |
| 72613 20 accident Accident on the M15 Accident on the M15 (TYPE 10) 2015-06-15 09:57:00 2015-06-14 16:13:00+01 \N t \N | |
| 72713 320 fine Bad parking place Bad parking place (REF 5924540) 2015-08-14 14:32:00 2015-08-12 17:10:00+01 \N t \N | |
| 72813 320 fine Speed camera Caught on speed camera at 72mph instead of 50mph 2015-06-02 17:48:00 2015-06-01 08:19:00+01 \N t \N | |
| 72913 20 accident Accident on the M24 Accident on the M24 (TYPE 11) 2015-11-24 14:48:00 2015-11-22 13:44:00+00 \N t \N | |
| 73013 320 fine Bad parking place Bad parking place (REF 1201141) 2015-09-03 08:24:00 2015-09-01 17:25:00+01 \N t \N | |
| 73113 320 fine Speed camera Caught on speed camera at 71mph instead of 50mph 2014-11-28 16:54:00 2014-11-25 17:52:00+00 \N t \N | |
| 73213 20 accident Accident on the M18 Accident on the M18 (TYPE 16) 2015-01-10 12:53:00 2015-01-07 15:51:00+00 \N t \N | |
| 73313 320 fine Bad parking place Bad parking place (REF 1228862) 2015-07-21 19:30:00 2015-07-20 17:07:00+01 \N t \N | |
| 73413 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2015-05-11 15:38:00 2015-05-09 13:58:00+01 \N t \N | |
| 73513 20 accident Accident on the M20 Accident on the M20 (TYPE 18) 2015-03-15 18:33:00 2015-03-11 19:03:00+00 \N t \N | |
| 73613 320 fine Bad parking place Bad parking place (REF 6285782) 2015-01-09 08:39:00 2015-01-06 18:40:00+00 \N t \N | |
| 73713 320 fine Speed camera Caught on speed camera at 63mph instead of 50mph 2015-02-18 19:37:00 2015-02-15 11:48:00+00 \N t \N | |
| 73813 20 accident Accident on the M10 Accident on the M10 (TYPE 13) 2015-11-28 18:53:00 2015-11-27 17:13:00+00 \N t \N | |
| 73913 320 fine Bad parking place Bad parking place (REF 7624195) 2015-01-16 12:28:00 2015-01-15 14:01:00+00 \N t \N | |
| 74013 320 fine Speed camera Caught on speed camera at 65mph instead of 50mph 2015-07-23 09:46:00 2015-07-20 12:54:00+01 \N t \N | |
| 74113 20 accident Accident on the M11 Accident on the M11 (TYPE 11) 2014-11-29 13:12:00 2014-11-24 16:04:00+00 \N t \N | |
| 74213 320 fine Bad parking place Bad parking place (REF 1231453) 2015-03-14 16:59:00 2015-03-13 09:25:00+00 \N t \N | |
| 74313 320 fine Speed camera Caught on speed camera at 72mph instead of 50mph 2015-05-17 16:30:00 2015-05-14 11:11:00+01 \N t \N | |
| 74413 20 accident Accident on the M11 Accident on the M11 (TYPE 14) 2015-06-07 17:19:00 2015-06-07 17:41:00+01 \N t \N | |
| 74513 320 fine Bad parking place Bad parking place (REF 7104543) 2015-05-22 11:51:00 2015-05-20 19:32:00+01 \N t \N | |
| 74613 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2015-12-10 16:01:00 2015-12-09 09:44:00+00 \N t \N | |
| 74713 20 accident Accident on the M18 Accident on the M18 (TYPE 11) 2015-10-31 17:05:00 2015-10-30 13:42:00+00 \N t \N | |
| 74813 320 fine Bad parking place Bad parking place (REF 3322052) 2015-05-15 19:46:00 2015-05-10 15:14:00+01 \N t \N | |
| 74913 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2015-11-30 15:32:00 2015-11-26 18:03:00+00 \N t \N | |
| 75013 20 accident Accident on the M25 Accident on the M25 (TYPE 18) 2014-12-18 12:30:00 2014-12-15 10:47:00+00 \N t \N | |
| 75113 320 fine Bad parking place Bad parking place (REF 5692789) 2016-03-02 09:28:00 2016-02-28 09:03:00+00 \N t \N | |
| 75213 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2015-05-04 10:06:00 2015-04-30 13:24:00+01 \N t \N | |
| 75313 20 accident Accident on the M18 Accident on the M18 (TYPE 14) 2016-01-24 09:03:00 2016-01-23 18:16:00+00 \N t \N | |
| 75413 320 fine Bad parking place Bad parking place (REF 4409631) 2016-03-16 08:28:00 2016-03-12 15:24:00+00 \N t \N | |
| 75513 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2014-10-18 14:06:00 2014-10-13 11:58:00+01 \N t \N | |
| 75613 20 accident Accident on the M13 Accident on the M13 (TYPE 11) 2016-03-11 10:58:00 2016-03-06 11:58:00+00 \N t \N | |
| 75713 320 fine Bad parking place Bad parking place (REF 5219004) 2015-05-09 11:57:00 2015-05-09 08:27:00+01 \N t \N | |
| 75813 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2015-05-26 19:03:00 2015-05-25 12:18:00+01 \N t \N | |
| 75913 20 accident Accident on the M22 Accident on the M22 (TYPE 19) 2015-04-19 13:46:00 2015-04-18 15:10:00+01 \N t \N | |
| 76013 320 fine Bad parking place Bad parking place (REF 6957996) 2015-05-06 12:47:00 2015-05-04 08:35:00+01 \N t \N | |
| 76113 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2015-10-10 15:06:00 2015-10-07 16:06:00+01 \N t \N | |
| 76213 20 accident Accident on the M21 Accident on the M21 (TYPE 17) 2015-09-20 17:24:00 2015-09-16 11:08:00+01 \N t \N | |
| 76313 320 fine Bad parking place Bad parking place (REF 3993750) 2015-01-04 10:44:00 2015-01-04 17:54:00+00 \N t \N | |
| 76413 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2016-02-06 10:47:00 2016-02-02 12:40:00+00 \N t \N | |
| 76513 20 accident Accident on the M22 Accident on the M22 (TYPE 16) 2015-03-17 11:34:00 2015-03-16 19:36:00+00 \N t \N | |
| 76613 320 fine Bad parking place Bad parking place (REF 2616314) 2016-03-21 11:23:00 2016-03-16 13:06:00+00 \N t \N | |
| 76713 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2015-02-09 08:28:00 2015-02-08 16:56:00+00 \N t \N | |
| 76813 20 accident Accident on the M13 Accident on the M13 (TYPE 11) 2016-01-11 13:09:00 2016-01-07 14:33:00+00 \N t \N | |
| 76913 320 fine Bad parking place Bad parking place (REF 5970900) 2015-02-20 14:29:00 2015-02-19 10:08:00+00 \N t \N | |
| 77013 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2015-07-01 15:03:00 2015-06-28 19:31:00+01 \N t \N | |
| 77113 20 accident Accident on the M19 Accident on the M19 (TYPE 16) 2015-09-20 15:51:00 2015-09-19 09:17:00+01 \N t \N | |
| 77213 320 fine Bad parking place Bad parking place (REF 7473355) 2018-02-26 08:54:00 2018-02-25 14:11:00+00 \N t \N | |
| 77313 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2015-01-18 17:01:00 2015-01-13 16:55:00+00 \N t \N | |
| 77413 20 accident Accident on the M11 Accident on the M11 (TYPE 14) 2016-03-26 19:17:00 2016-03-21 14:24:00+00 \N t \N | |
| 77513 320 fine Bad parking place Bad parking place (REF 2875638) 2015-04-19 17:21:00 2015-04-18 09:30:00+01 \N t \N | |
| 77613 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2015-10-06 08:25:00 2015-10-05 19:49:00+01 \N t \N | |
| 77713 20 accident Accident on the M11 Accident on the M11 (TYPE 13) 2015-02-06 13:53:00 2015-02-06 15:18:00+00 \N t \N | |
| 77813 320 fine Bad parking place Bad parking place (REF 3927657) 2018-03-10 18:39:00 2018-03-07 19:26:00+00 \N t \N | |
| 77913 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2015-06-14 15:00:00 2015-06-13 10:21:00+01 \N t \N | |
| 78013 20 accident Accident on the M14 Accident on the M14 (TYPE 13) 2015-06-24 13:53:00 2015-06-20 09:11:00+01 \N t \N | |
| 78113 320 fine Bad parking place Bad parking place (REF 2364160) 2016-01-07 15:45:00 2016-01-07 19:35:00+00 \N t \N | |
| 78213 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2015-06-26 11:38:00 2015-06-22 11:39:00+01 \N t \N | |
| 78313 20 accident Accident on the M18 Accident on the M18 (TYPE 15) 2015-08-31 10:45:00 2015-08-29 14:48:00+01 \N t \N | |
| 78413 320 fine Bad parking place Bad parking place (REF 6376844) 2016-02-03 17:46:00 2016-02-01 10:44:00+00 \N t \N | |
| 78513 320 fine Speed camera Caught on speed camera at 63mph instead of 50mph 2014-12-23 11:24:00 2014-12-20 19:10:00+00 \N t \N | |
| 78613 20 accident Accident on the M12 Accident on the M12 (TYPE 12) 2015-06-25 18:51:00 2015-06-23 11:05:00+01 \N t \N | |
| 78713 320 fine Bad parking place Bad parking place (REF 7564669) 2015-11-16 11:52:00 2015-11-14 13:45:00+00 \N t \N | |
| 78813 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2015-04-23 17:05:00 2015-04-20 11:12:00+01 \N t \N | |
| 78913 20 accident Accident on the M10 Accident on the M10 (TYPE 15) 2015-08-03 18:44:00 2015-07-31 16:46:00+01 \N t \N | |
| 79013 320 fine Bad parking place Bad parking place (REF 7391963) 2015-05-13 12:41:00 2015-05-10 15:46:00+01 \N t \N | |
| 79113 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2015-05-26 09:26:00 2015-05-26 11:35:00+01 \N t \N | |
| 79213 20 accident Accident on the M12 Accident on the M12 (TYPE 18) 2014-12-03 09:33:00 2014-12-02 15:53:00+00 \N t \N | |
| 79313 320 fine Bad parking place Bad parking place (REF 5422411) 2015-10-30 11:57:00 2015-10-29 18:33:00+00 \N t \N | |
| 79413 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2015-04-05 10:56:00 2015-04-05 12:07:00+01 \N t \N | |
| 79513 20 accident Accident on the M10 Accident on the M10 (TYPE 10) 2015-08-23 19:41:00 2015-08-18 19:27:00+01 \N t \N | |
| 79613 320 fine Bad parking place Bad parking place (REF 2736086) 2015-05-02 18:34:00 2015-04-30 11:53:00+01 \N t \N | |
| 79713 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2015-04-20 13:07:00 2015-04-15 08:36:00+01 \N t \N | |
| 79813 20 accident Accident on the M18 Accident on the M18 (TYPE 19) 2015-04-19 10:41:00 2015-04-18 14:34:00+01 \N t \N | |
| 79913 320 fine Bad parking place Bad parking place (REF 3845752) 2015-11-02 18:01:00 2015-11-01 13:44:00+00 \N t \N | |
| 80013 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2015-09-04 13:08:00 2015-09-03 11:22:00+01 \N t \N | |
| 80113 20 accident Accident on the M10 Accident on the M10 (TYPE 15) 2015-04-23 13:18:00 2015-04-18 19:34:00+01 \N t \N | |
| 80213 320 fine Bad parking place Bad parking place (REF 9589126) 2014-05-15 19:42:00 2014-05-12 13:22:00+01 \N t \N | |
| 80313 320 fine Speed camera Caught on speed camera at 61mph instead of 50mph 2015-10-01 10:45:00 2015-09-29 12:43:00+01 \N t \N | |
| 80413 20 accident Accident on the M23 Accident on the M23 (TYPE 11) 2015-12-11 17:05:00 2015-12-07 14:01:00+00 \N t \N | |
| 80513 320 fine Bad parking place Bad parking place (REF 5086151) 2015-01-27 13:10:00 2015-01-25 14:11:00+00 \N t \N | |
| 80613 320 fine Speed camera Caught on speed camera at 65mph instead of 50mph 2015-04-04 17:35:00 2015-04-01 17:46:00+01 \N t \N | |
| 80713 20 accident Accident on the M10 Accident on the M10 (TYPE 14) 2016-01-01 15:54:00 2016-01-01 17:23:00+00 \N t \N | |
| 80813 320 fine Bad parking place Bad parking place (REF 8518337) 2015-03-11 09:56:00 2015-03-09 15:40:00+00 \N t \N | |
| 80913 320 fine Speed camera Caught on speed camera at 71mph instead of 50mph 2015-05-18 18:22:00 2015-05-18 19:59:00+01 \N t \N | |
| 81013 20 accident Accident on the M17 Accident on the M17 (TYPE 19) 2015-07-17 18:51:00 2015-07-16 17:52:00+01 \N t \N | |
| 81113 320 fine Bad parking place Bad parking place (REF 2382625) 2015-03-21 08:44:00 2015-03-20 13:06:00+00 \N t \N | |
| 81213 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2015-07-13 13:30:00 2015-07-12 17:29:00+01 \N t \N | |
| 81313 20 accident Accident on the M17 Accident on the M17 (TYPE 10) 2014-06-03 18:39:00 2014-06-03 16:18:00+01 \N t \N | |
| 81413 320 fine Bad parking place Bad parking place (REF 7554264) 2015-11-21 10:44:00 2015-11-17 08:08:00+00 \N t \N | |
| 81513 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2015-12-28 16:40:00 2015-12-25 08:22:00+00 \N t \N | |
| 81613 20 accident Accident on the M22 Accident on the M22 (TYPE 14) 2014-11-26 18:07:00 2014-11-22 14:58:00+00 \N t \N | |
| 81713 320 fine Bad parking place Bad parking place (REF 1286220) 2014-08-25 19:52:00 2014-08-25 19:58:00+01 \N t \N | |
| 81813 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2015-09-22 17:09:00 2015-09-22 12:17:00+01 \N t \N | |
| 81913 20 accident Accident on the M23 Accident on the M23 (TYPE 12) 2015-05-04 15:37:00 2015-05-03 16:55:00+01 \N t \N | |
| 82013 320 fine Bad parking place Bad parking place (REF 6169702) 2015-06-15 10:07:00 2015-06-12 11:12:00+01 \N t \N | |
| 82113 320 fine Speed camera Caught on speed camera at 75mph instead of 50mph 2015-09-24 17:01:00 2015-09-21 09:06:00+01 \N t \N | |
| 82213 20 accident Accident on the M16 Accident on the M16 (TYPE 18) 2015-10-05 16:24:00 2015-10-03 19:53:00+01 \N t \N | |
| 82313 320 fine Bad parking place Bad parking place (REF 4516962) 2015-03-28 19:51:00 2015-03-23 14:38:00+00 \N t \N | |
| 82413 320 fine Speed camera Caught on speed camera at 64mph instead of 50mph 2015-06-09 12:49:00 2015-06-04 14:28:00+01 \N t \N | |
| 82513 20 accident Accident on the M15 Accident on the M15 (TYPE 16) 2015-12-07 10:14:00 2015-12-05 15:22:00+00 \N t \N | |
| 82613 320 fine Bad parking place Bad parking place (REF 5334639) 2015-03-03 16:17:00 2015-02-27 12:06:00+00 \N t \N | |
| 82713 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2015-10-24 19:07:00 2015-10-23 13:07:00+01 \N t \N | |
| 82813 20 accident Accident on the M18 Accident on the M18 (TYPE 17) 2015-03-16 17:50:00 2015-03-14 15:12:00+00 \N t \N | |
| 82913 320 fine Bad parking place Bad parking place (REF 4908518) 2015-08-10 17:00:00 2015-08-10 13:39:00+01 \N t \N | |
| 83013 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2015-11-03 15:27:00 2015-10-31 12:28:00+00 \N t \N | |
| 83113 20 accident Accident on the M17 Accident on the M17 (TYPE 13) 2014-08-05 16:28:00 2014-08-02 08:51:00+01 \N t \N | |
| 83213 320 fine Bad parking place Bad parking place (REF 9751683) 2015-09-30 14:39:00 2015-09-25 13:59:00+01 \N t \N | |
| 83313 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2014-10-22 12:24:00 2014-10-22 17:47:00+01 \N t \N | |
| 83413 20 accident Accident on the M16 Accident on the M16 (TYPE 15) 2016-01-20 17:58:00 2016-01-15 11:32:00+00 \N t \N | |
| 83513 320 fine Bad parking place Bad parking place (REF 2206699) 2015-06-07 08:04:00 2015-06-04 16:34:00+01 \N t \N | |
| 83613 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2015-02-02 09:48:00 2015-01-31 16:49:00+00 \N t \N | |
| 83713 20 accident Accident on the M19 Accident on the M19 (TYPE 10) 2015-04-20 09:47:00 2015-04-17 16:43:00+01 \N t \N | |
| 83813 320 fine Bad parking place Bad parking place (REF 6044776) 2016-03-28 10:02:00 2016-03-25 16:11:00+00 \N t \N | |
| 83913 320 fine Speed camera Caught on speed camera at 58mph instead of 50mph 2015-09-07 15:34:00 2015-09-03 12:17:00+01 \N t \N | |
| 84013 20 accident Accident on the M19 Accident on the M19 (TYPE 18) 2013-10-28 18:52:00 2013-10-23 15:01:00+01 \N t \N | |
| 84113 320 fine Bad parking place Bad parking place (REF 3550285) 2012-03-11 17:33:00 2012-03-09 15:00:00+00 \N t \N | |
| 84213 320 fine Speed camera Caught on speed camera at 58mph instead of 50mph 2011-05-11 10:48:00 2011-05-10 09:08:00+01 \N t \N | |
| 84313 20 accident Accident on the M10 Accident on the M10 (TYPE 13) 2014-02-02 16:58:00 2014-01-31 09:42:00+00 \N t \N | |
| 84413 320 fine Bad parking place Bad parking place (REF 7640736) 2014-04-19 15:26:00 2014-04-16 12:33:00+01 \N t \N | |
| 84513 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2013-04-08 19:14:00 2013-04-05 12:41:00+01 \N t \N | |
| 84613 20 accident Accident on the M15 Accident on the M15 (TYPE 19) 2013-03-26 18:40:00 2013-03-23 08:24:00+00 \N t \N | |
| 84713 320 fine Bad parking place Bad parking place (REF 4247651) 2015-01-14 16:28:00 2015-01-14 14:28:00+00 \N t \N | |
| 84813 320 fine Speed camera Caught on speed camera at 56mph instead of 50mph 2013-11-16 11:03:00 2013-11-14 12:23:00+00 \N t \N | |
| 84913 20 accident Accident on the M10 Accident on the M10 (TYPE 12) 2011-09-03 18:08:00 2011-09-02 11:40:00+01 \N t \N | |
| 85013 320 fine Bad parking place Bad parking place (REF 2219206) 2013-12-15 08:54:00 2013-12-10 19:59:00+00 \N t \N | |
| 85113 320 fine Speed camera Caught on speed camera at 71mph instead of 50mph 2014-05-14 10:06:00 2014-05-11 10:39:00+01 \N t \N | |
| 85213 20 accident Accident on the M21 Accident on the M21 (TYPE 10) 2013-05-31 16:19:00 2013-05-29 17:56:00+01 \N t \N | |
| 85313 320 fine Bad parking place Bad parking place (REF 4218231) 2013-03-18 18:56:00 2013-03-13 12:32:00+00 \N t \N | |
| 85413 320 fine Speed camera Caught on speed camera at 63mph instead of 50mph 2014-04-16 12:32:00 2014-04-16 09:45:00+01 \N t \N | |
| 85513 20 accident Accident on the M17 Accident on the M17 (TYPE 11) 2013-02-06 14:14:00 2013-02-06 18:47:00+00 \N t \N | |
| 85613 320 fine Bad parking place Bad parking place (REF 5017303) 2014-05-11 13:20:00 2014-05-06 17:30:00+01 \N t \N | |
| 85713 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2014-05-06 17:35:00 2014-05-03 17:53:00+01 \N t \N | |
| 85813 20 accident Accident on the M12 Accident on the M12 (TYPE 16) 2012-10-20 09:27:00 2012-10-19 15:55:00+01 \N t \N | |
| 85913 320 fine Bad parking place Bad parking place (REF 6609389) 2012-09-12 14:48:00 2012-09-08 15:00:00+01 \N t \N | |
| 86013 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2012-12-06 18:34:00 2012-12-02 13:58:00+00 \N t \N | |
| 86113 20 accident Accident on the M19 Accident on the M19 (TYPE 17) 2013-09-13 08:48:00 2013-09-10 16:30:00+01 \N t \N | |
| 86213 320 fine Bad parking place Bad parking place (REF 6708352) 2012-01-04 10:46:00 2011-12-30 12:14:00+00 \N t \N | |
| 86313 320 fine Speed camera Caught on speed camera at 59mph instead of 50mph 2012-02-28 11:34:00 2012-02-27 19:47:00+00 \N t \N | |
| 86413 20 accident Accident on the M11 Accident on the M11 (TYPE 18) 2013-10-28 17:10:00 2013-10-28 15:16:00+00 \N t \N | |
| 86513 320 fine Bad parking place Bad parking place (REF 5266356) 2013-08-20 16:51:00 2013-08-19 13:33:00+01 \N t \N | |
| 86613 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2012-02-12 09:56:00 2012-02-09 11:43:00+00 \N t \N | |
| 86713 20 accident Accident on the M12 Accident on the M12 (TYPE 13) 2013-12-19 19:48:00 2013-12-14 10:05:00+00 \N t \N | |
| 86813 320 fine Bad parking place Bad parking place (REF 9570411) 2011-08-24 11:51:00 2011-08-21 15:35:00+01 \N t \N | |
| 86913 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2013-05-07 17:37:00 2013-05-05 15:46:00+01 \N t \N | |
| 87013 20 accident Accident on the M19 Accident on the M19 (TYPE 11) 2014-01-04 12:17:00 2014-01-04 12:29:00+00 \N t \N | |
| 87113 320 fine Bad parking place Bad parking place (REF 4218220) 2013-08-12 18:49:00 2013-08-10 14:06:00+01 \N t \N | |
| 87213 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2012-01-30 15:39:00 2012-01-26 19:22:00+00 \N t \N | |
| 87313 20 accident Accident on the M15 Accident on the M15 (TYPE 17) 2012-10-14 13:47:00 2012-10-12 19:38:00+01 \N t \N | |
| 87413 320 fine Bad parking place Bad parking place (REF 8297207) 2013-06-27 09:00:00 2013-06-22 11:36:00+01 \N t \N | |
| 87513 320 fine Speed camera Caught on speed camera at 70mph instead of 50mph 2013-03-07 15:01:00 2013-03-05 15:47:00+00 \N t \N | |
| 87613 20 accident Accident on the M25 Accident on the M25 (TYPE 12) 2013-01-14 14:39:00 2013-01-09 15:20:00+00 \N t \N | |
| 87713 320 fine Bad parking place Bad parking place (REF 8182315) 2011-05-14 18:48:00 2011-05-11 11:58:00+01 \N t \N | |
| 87813 320 fine Speed camera Caught on speed camera at 56mph instead of 50mph 2011-07-22 13:07:00 2011-07-20 15:17:00+01 \N t \N | |
| 87913 20 accident Accident on the M16 Accident on the M16 (TYPE 13) 2013-07-06 12:14:00 2013-07-04 17:13:00+01 \N t \N | |
| 88013 320 fine Bad parking place Bad parking place (REF 1380191) 2012-12-28 11:06:00 2012-12-24 14:14:00+00 \N t \N | |
| 88113 320 fine Speed camera Caught on speed camera at 59mph instead of 50mph 2013-04-09 09:24:00 2013-04-08 17:50:00+01 \N t \N | |
| 88213 20 accident Accident on the M11 Accident on the M11 (TYPE 11) 2013-10-28 08:03:00 2013-10-23 19:58:00+01 \N t \N | |
| 88313 320 fine Bad parking place Bad parking place (REF 1449407) 2012-11-30 10:18:00 2012-11-29 19:37:00+00 \N t \N | |
| 88413 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2012-07-19 18:59:00 2012-07-18 14:34:00+01 \N t \N | |
| 88513 20 accident Accident on the M22 Accident on the M22 (TYPE 15) 2012-10-10 19:19:00 2012-10-05 12:54:00+01 \N t \N | |
| 88613 320 fine Bad parking place Bad parking place (REF 2358901) 2013-10-02 11:47:00 2013-09-30 08:58:00+01 \N t \N | |
| 88713 320 fine Speed camera Caught on speed camera at 75mph instead of 50mph 2013-10-23 09:54:00 2013-10-23 08:03:00+01 \N t \N | |
| 88813 20 accident Accident on the M17 Accident on the M17 (TYPE 12) 2012-02-12 13:34:00 2012-02-09 12:01:00+00 \N t \N | |
| 88913 320 fine Bad parking place Bad parking place (REF 8022429) 2014-10-06 16:33:00 2014-10-03 16:39:00+01 \N t \N | |
| 89013 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2012-05-20 15:17:00 2012-05-15 15:20:00+01 \N t \N | |
| 89113 20 accident Accident on the M20 Accident on the M20 (TYPE 19) 2013-02-08 14:10:00 2013-02-07 13:12:00+00 \N t \N | |
| 89213 320 fine Bad parking place Bad parking place (REF 6140412) 2013-10-27 19:24:00 2013-10-27 16:44:00+00 \N t \N | |
| 89313 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2014-08-09 19:22:00 2014-08-04 10:16:00+01 \N t \N | |
| 89413 20 accident Accident on the M24 Accident on the M24 (TYPE 11) 2013-11-17 14:22:00 2013-11-14 08:58:00+00 \N t \N | |
| 89513 320 fine Bad parking place Bad parking place (REF 4709241) 2014-05-11 15:51:00 2014-05-11 13:36:00+01 \N t \N | |
| 89613 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2014-05-17 13:42:00 2014-05-16 10:15:00+01 \N t \N | |
| 89713 20 accident Accident on the M24 Accident on the M24 (TYPE 14) 2012-02-18 11:31:00 2012-02-18 13:10:00+00 \N t \N | |
| 89813 320 fine Bad parking place Bad parking place (REF 7654777) 2013-03-09 17:29:00 2013-03-09 10:22:00+00 \N t \N | |
| 89913 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2014-01-24 17:41:00 2014-01-20 17:48:00+00 \N t \N | |
| 90013 20 accident Accident on the M18 Accident on the M18 (TYPE 14) 2013-09-18 13:45:00 2013-09-15 19:12:00+01 \N t \N | |
| 90113 320 fine Bad parking place Bad parking place (REF 9370814) 2012-10-24 08:44:00 2012-10-23 16:01:00+01 \N t \N | |
| 90213 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2014-03-17 14:09:00 2014-03-16 10:45:00+00 \N t \N | |
| 90313 20 accident Accident on the M21 Accident on the M21 (TYPE 17) 2013-12-29 15:58:00 2013-12-27 09:31:00+00 \N t \N | |
| 90413 320 fine Bad parking place Bad parking place (REF 6785569) 2011-11-21 16:20:00 2011-11-18 17:47:00+00 \N t \N | |
| 90513 320 fine Speed camera Caught on speed camera at 72mph instead of 50mph 2012-02-15 14:20:00 2012-02-14 10:24:00+00 \N t \N | |
| 90613 20 accident Accident on the M18 Accident on the M18 (TYPE 15) 2012-11-14 15:06:00 2012-11-10 09:37:00+00 \N t \N | |
| 90713 320 fine Bad parking place Bad parking place (REF 9389391) 2014-01-08 14:35:00 2014-01-05 15:49:00+00 \N t \N | |
| 90813 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2014-01-25 14:29:00 2014-01-21 12:48:00+00 \N t \N | |
| 90913 20 accident Accident on the M22 Accident on the M22 (TYPE 15) 2012-10-28 19:03:00 2012-10-27 09:24:00+01 \N t \N | |
| 91013 320 fine Bad parking place Bad parking place (REF 3907122) 2012-01-13 18:34:00 2012-01-08 17:34:00+00 \N t \N | |
| 91113 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2012-11-19 18:20:00 2012-11-16 08:59:00+00 \N t \N | |
| 91213 20 accident Accident on the M25 Accident on the M25 (TYPE 18) 2013-10-05 11:10:00 2013-10-02 18:27:00+01 \N t \N | |
| 91313 320 fine Bad parking place Bad parking place (REF 5378706) 2011-06-06 18:03:00 2011-06-02 10:04:00+01 \N t \N | |
| 91413 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2014-10-29 15:41:00 2014-10-25 18:58:00+01 \N t \N | |
| 91513 20 accident Accident on the M25 Accident on the M25 (TYPE 13) 2014-01-05 17:07:00 2014-01-01 18:47:00+00 \N t \N | |
| 91613 320 fine Bad parking place Bad parking place (REF 1531680) 2013-05-14 13:45:00 2013-05-11 10:37:00+01 \N t \N | |
| 91713 320 fine Speed camera Caught on speed camera at 72mph instead of 50mph 2012-01-30 18:59:00 2012-01-30 17:21:00+00 \N t \N | |
| 91813 20 accident Accident on the M22 Accident on the M22 (TYPE 13) 2014-04-02 19:31:00 2014-03-28 12:55:00+00 \N t \N | |
| 91913 320 fine Bad parking place Bad parking place (REF 3667834) 2012-06-30 19:40:00 2012-06-29 18:09:00+01 \N t \N | |
| 92013 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2014-02-09 18:30:00 2014-02-05 16:04:00+00 \N t \N | |
| 92113 20 accident Accident on the M25 Accident on the M25 (TYPE 19) 2013-10-13 08:30:00 2013-10-09 14:51:00+01 \N t \N | |
| 92213 320 fine Bad parking place Bad parking place (REF 3002626) 2013-08-14 15:30:00 2013-08-12 16:10:00+01 \N t \N | |
| 92313 320 fine Speed camera Caught on speed camera at 58mph instead of 50mph 2011-12-04 09:07:00 2011-11-29 16:04:00+00 \N t \N | |
| 92413 20 accident Accident on the M15 Accident on the M15 (TYPE 12) 2012-07-02 19:02:00 2012-06-28 19:46:00+01 \N t \N | |
| 92513 320 fine Bad parking place Bad parking place (REF 4315918) 2012-03-02 10:51:00 2012-03-02 13:45:00+00 \N t \N | |
| 92613 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2014-02-07 15:06:00 2014-02-07 12:30:00+00 \N t \N | |
| 92713 20 accident Accident on the M22 Accident on the M22 (TYPE 19) 2012-03-31 10:54:00 2012-03-26 17:11:00+01 \N t \N | |
| 92813 320 fine Bad parking place Bad parking place (REF 7956829) 2014-03-30 11:03:00 2014-03-30 19:56:00+01 \N t \N | |
| 92913 320 fine Speed camera Caught on speed camera at 61mph instead of 50mph 2014-01-23 19:56:00 2014-01-23 11:47:00+00 \N t \N | |
| 93013 20 accident Accident on the M15 Accident on the M15 (TYPE 15) 2012-03-08 16:43:00 2012-03-05 19:10:00+00 \N t \N | |
| 93113 320 fine Bad parking place Bad parking place (REF 2981607) 2011-09-13 08:11:00 2011-09-09 15:06:00+01 \N t \N | |
| 93213 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2012-06-23 13:56:00 2012-06-21 17:24:00+01 \N t \N | |
| 93313 20 accident Accident on the M10 Accident on the M10 (TYPE 15) 2012-03-11 10:24:00 2012-03-06 13:10:00+00 \N t \N | |
| 93413 320 fine Bad parking place Bad parking place (REF 9979631) 2014-03-20 13:09:00 2014-03-20 11:21:00+00 \N t \N | |
| 93513 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2014-07-30 08:20:00 2014-07-25 11:02:00+01 \N t \N | |
| 93613 20 accident Accident on the M18 Accident on the M18 (TYPE 14) 2014-12-01 16:05:00 2014-12-01 13:52:00+00 \N t \N | |
| 93713 320 fine Bad parking place Bad parking place (REF 5678389) 2013-06-03 18:16:00 2013-05-30 18:08:00+01 \N t \N | |
| 93813 320 fine Speed camera Caught on speed camera at 71mph instead of 50mph 2013-11-06 15:56:00 2013-11-03 08:34:00+00 \N t \N | |
| 93913 20 accident Accident on the M21 Accident on the M21 (TYPE 10) 2013-04-09 12:35:00 2013-04-05 10:02:00+01 \N t \N | |
| 94013 320 fine Bad parking place Bad parking place (REF 2103309) 2013-06-25 19:35:00 2013-06-25 12:41:00+01 \N t \N | |
| 94113 320 fine Speed camera Caught on speed camera at 57mph instead of 50mph 2014-03-01 13:36:00 2014-02-27 17:41:00+00 \N t \N | |
| 94213 20 accident Accident on the M11 Accident on the M11 (TYPE 16) 2014-02-10 16:38:00 2014-02-08 10:33:00+00 \N t \N | |
| 94313 320 fine Bad parking place Bad parking place (REF 9251378) 2013-07-10 14:58:00 2013-07-07 18:09:00+01 \N t \N | |
| 94413 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2012-11-18 16:29:00 2012-11-17 13:09:00+00 \N t \N | |
| 94513 20 accident Accident on the M14 Accident on the M14 (TYPE 13) 2012-09-06 18:27:00 2012-09-06 19:25:00+01 \N t \N | |
| 94613 320 fine Bad parking place Bad parking place (REF 3563047) 2013-08-12 10:59:00 2013-08-11 12:31:00+01 \N t \N | |
| 94713 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2014-02-22 15:41:00 2014-02-17 14:07:00+00 \N t \N | |
| 94813 20 accident Accident on the M13 Accident on the M13 (TYPE 11) 2012-04-28 19:50:00 2012-04-27 19:59:00+01 \N t \N | |
| 94913 320 fine Bad parking place Bad parking place (REF 6722288) 2013-07-03 09:24:00 2013-07-02 11:15:00+01 \N t \N | |
| 95013 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2012-06-20 08:11:00 2012-06-20 12:37:00+01 \N t \N | |
| 95113 20 accident Accident on the M14 Accident on the M14 (TYPE 17) 2014-11-25 16:40:00 2014-11-20 11:47:00+00 \N t \N | |
| 95213 320 fine Bad parking place Bad parking place (REF 6449601) 2014-03-19 11:35:00 2014-03-19 14:11:00+00 \N t \N | |
| 95313 320 fine Speed camera Caught on speed camera at 58mph instead of 50mph 2012-10-22 19:52:00 2012-10-19 19:33:00+01 \N t \N | |
| 95413 20 accident Accident on the M23 Accident on the M23 (TYPE 19) 2014-09-21 14:21:00 2014-09-16 17:08:00+01 \N t \N | |
| 95513 320 fine Bad parking place Bad parking place (REF 8342228) 2013-04-22 13:31:00 2013-04-18 15:07:00+01 \N t \N | |
| 95613 320 fine Speed camera Caught on speed camera at 65mph instead of 50mph 2014-05-26 19:55:00 2014-05-23 18:24:00+01 \N t \N | |
| 95713 20 accident Accident on the M14 Accident on the M14 (TYPE 15) 2013-04-17 09:38:00 2013-04-12 17:01:00+01 \N t \N | |
| 95813 320 fine Bad parking place Bad parking place (REF 7666525) 2012-12-06 14:39:00 2012-12-02 19:42:00+00 \N t \N | |
| 95913 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2013-04-25 15:17:00 2013-04-21 10:27:00+01 \N t \N | |
| 96013 20 accident Accident on the M16 Accident on the M16 (TYPE 18) 2014-10-15 09:31:00 2014-10-15 18:08:00+01 \N t \N | |
| 96113 320 fine Bad parking place Bad parking place (REF 3992903) 2011-05-16 16:22:00 2011-05-14 18:12:00+01 \N t \N | |
| 96213 320 fine Speed camera Caught on speed camera at 65mph instead of 50mph 2014-02-09 14:23:00 2014-02-07 16:24:00+00 \N t \N | |
| 96313 20 accident Accident on the M17 Accident on the M17 (TYPE 10) 2011-07-19 08:26:00 2011-07-17 11:36:00+01 \N t \N | |
| 96413 320 fine Bad parking place Bad parking place (REF 9317360) 2014-03-20 10:10:00 2014-03-19 12:37:00+00 \N t \N | |
| 96513 320 fine Speed camera Caught on speed camera at 65mph instead of 50mph 2013-02-26 18:13:00 2013-02-24 18:44:00+00 \N t \N | |
| 96613 20 accident Accident on the M19 Accident on the M19 (TYPE 19) 2011-12-23 12:35:00 2011-12-21 10:10:00+00 \N t \N | |
| 96713 320 fine Bad parking place Bad parking place (REF 4159328) 2012-04-10 18:38:00 2012-04-09 14:45:00+01 \N t \N | |
| 96813 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2012-10-20 10:51:00 2012-10-19 12:27:00+01 \N t \N | |
| 96913 20 accident Accident on the M15 Accident on the M15 (TYPE 17) 2012-05-25 14:44:00 2012-05-20 11:09:00+01 \N t \N | |
| 97013 320 fine Bad parking place Bad parking place (REF 4478899) 2014-06-24 10:59:00 2014-06-24 15:54:00+01 \N t \N | |
| 97113 320 fine Speed camera Caught on speed camera at 57mph instead of 50mph 2014-05-05 11:09:00 2014-05-04 11:25:00+01 \N t \N | |
| 97213 20 accident Accident on the M24 Accident on the M24 (TYPE 18) 2013-08-29 19:24:00 2013-08-27 11:05:00+01 \N t \N | |
| 97313 320 fine Bad parking place Bad parking place (REF 1656266) 2014-04-18 17:30:00 2014-04-16 13:17:00+01 \N t \N | |
| 97413 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2012-05-11 08:25:00 2012-05-07 17:38:00+01 \N t \N | |
| 97513 20 accident Accident on the M21 Accident on the M21 (TYPE 14) 2013-03-21 17:14:00 2013-03-18 16:39:00+00 \N t \N | |
| 97613 320 fine Bad parking place Bad parking place (REF 4918614) 2012-02-29 19:31:00 2012-02-26 17:37:00+00 \N t \N | |
| 97713 320 fine Speed camera Caught on speed camera at 61mph instead of 50mph 2013-08-28 15:27:00 2013-08-28 18:26:00+01 \N t \N | |
| 97813 20 accident Accident on the M12 Accident on the M12 (TYPE 11) 2015-07-18 19:40:00 2015-07-15 08:11:00+01 \N t \N | |
| 97913 320 fine Bad parking place Bad parking place (REF 6624845) 2014-03-17 18:09:00 2014-03-13 08:25:00+00 \N t \N | |
| 98013 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2014-04-16 18:45:00 2014-04-14 17:56:00+01 \N t \N | |
| 98113 20 accident Accident on the M15 Accident on the M15 (TYPE 10) 2014-02-16 12:12:00 2014-02-13 09:04:00+00 \N t \N | |
| 98213 320 fine Bad parking place Bad parking place (REF 4797388) 2015-04-02 12:17:00 2015-03-29 09:41:00+01 \N t \N | |
| 98313 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2013-11-22 18:32:00 2013-11-19 17:30:00+00 \N t \N | |
| 98413 20 accident Accident on the M16 Accident on the M16 (TYPE 12) 2014-11-09 09:21:00 2014-11-08 09:07:00+00 \N t \N | |
| 98513 320 fine Bad parking place Bad parking place (REF 4465544) 2015-05-10 11:20:00 2015-05-06 15:43:00+01 \N t \N | |
| 98613 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2014-05-07 12:33:00 2014-05-06 08:55:00+01 \N t \N | |
| 98713 20 accident Accident on the M10 Accident on the M10 (TYPE 17) 2014-11-15 14:15:00 2014-11-11 09:21:00+00 \N t \N | |
| 98813 320 fine Bad parking place Bad parking place (REF 9227444) 2013-12-02 19:18:00 2013-11-29 08:36:00+00 \N t \N | |
| 98913 320 fine Speed camera Caught on speed camera at 56mph instead of 50mph 2013-08-13 17:02:00 2013-08-13 15:49:00+01 \N t \N | |
| 99013 20 accident Accident on the M14 Accident on the M14 (TYPE 10) 2015-09-29 16:33:00 2015-09-26 11:23:00+01 \N t \N | |
| 99113 320 fine Bad parking place Bad parking place (REF 7848976) 2013-09-10 11:41:00 2013-09-06 13:01:00+01 \N t \N | |
| 99213 320 fine Speed camera Caught on speed camera at 63mph instead of 50mph 2015-09-13 08:53:00 2015-09-11 08:21:00+01 \N t \N | |
| 99313 20 accident Accident on the M24 Accident on the M24 (TYPE 15) 2015-06-14 09:00:00 2015-06-09 13:03:00+01 \N t \N | |
| 99413 320 fine Bad parking place Bad parking place (REF 8589844) 2014-02-09 14:03:00 2014-02-09 14:32:00+00 \N t \N | |
| 99513 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2015-08-29 09:24:00 2015-08-26 13:22:00+01 \N t \N | |
| 99613 20 accident Accident on the M21 Accident on the M21 (TYPE 10) 2015-04-22 17:32:00 2015-04-20 13:38:00+01 \N t \N | |
| 99713 320 fine Bad parking place Bad parking place (REF 8235616) 2015-09-08 15:09:00 2015-09-06 13:35:00+01 \N t \N | |
| 99813 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2015-11-20 17:28:00 2015-11-15 12:15:00+00 \N t \N | |
| 99913 20 accident Accident on the M22 Accident on the M22 (TYPE 10) 2014-04-26 16:57:00 2014-04-22 09:28:00+01 \N t \N | |
| 100013 320 fine Bad parking place Bad parking place (REF 6175685) 2015-08-01 17:59:00 2015-07-30 12:45:00+01 \N t \N | |
| 100113 320 fine Speed camera Caught on speed camera at 56mph instead of 50mph 2015-05-07 11:10:00 2015-05-02 10:25:00+01 \N t \N | |
| 100213 20 accident Accident on the M20 Accident on the M20 (TYPE 11) 2015-04-12 14:49:00 2015-04-07 16:22:00+01 \N t \N | |
| 100313 320 fine Bad parking place Bad parking place (REF 5206061) 2015-07-19 13:30:00 2015-07-15 17:42:00+01 \N t \N | |
| 100413 320 fine Speed camera Caught on speed camera at 57mph instead of 50mph 2015-06-05 09:11:00 2015-06-03 19:26:00+01 \N t \N | |
| 100513 20 accident Accident on the M21 Accident on the M21 (TYPE 11) 2015-04-24 14:52:00 2015-04-20 14:13:00+01 \N t \N | |
| 100613 320 fine Bad parking place Bad parking place (REF 9594342) 2014-08-17 16:49:00 2014-08-15 18:00:00+01 \N t \N | |
| 100713 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2015-01-31 14:49:00 2015-01-26 11:52:00+00 \N t \N | |
| 100813 20 accident Accident on the M22 Accident on the M22 (TYPE 14) 2014-08-22 16:42:00 2014-08-17 12:44:00+01 \N t \N | |
| 100913 320 fine Bad parking place Bad parking place (REF 1983317) 2014-03-27 17:16:00 2014-03-22 19:54:00+00 \N t \N | |
| 101013 320 fine Speed camera Caught on speed camera at 58mph instead of 50mph 2015-09-07 17:59:00 2015-09-03 11:23:00+01 \N t \N | |
| 101113 20 accident Accident on the M16 Accident on the M16 (TYPE 13) 2016-01-10 16:33:00 2016-01-08 11:44:00+00 \N t \N | |
| 101213 320 fine Bad parking place Bad parking place (REF 2707490) 2015-08-04 14:18:00 2015-08-01 08:42:00+01 \N t \N | |
| 101313 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2014-06-30 16:20:00 2014-06-27 12:22:00+01 \N t \N | |
| 101413 20 accident Accident on the M21 Accident on the M21 (TYPE 19) 2014-07-27 17:25:00 2014-07-22 19:26:00+01 \N t \N | |
| 101513 320 fine Bad parking place Bad parking place (REF 4769486) 2015-01-27 11:36:00 2015-01-23 18:21:00+00 \N t \N | |
| 101613 320 fine Speed camera Caught on speed camera at 75mph instead of 50mph 2015-09-26 12:36:00 2015-09-25 10:04:00+01 \N t \N | |
| 101713 20 accident Accident on the M11 Accident on the M11 (TYPE 12) 2014-09-29 17:57:00 2014-09-29 17:52:00+01 \N t \N | |
| 101813 320 fine Bad parking place Bad parking place (REF 2485223) 2014-05-15 13:11:00 2014-05-12 13:34:00+01 \N t \N | |
| 101913 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2016-01-19 13:33:00 2016-01-14 14:25:00+00 \N t \N | |
| 102013 20 accident Accident on the M13 Accident on the M13 (TYPE 13) 2015-09-20 12:59:00 2015-09-20 08:05:00+01 \N t \N | |
| 102113 320 fine Bad parking place Bad parking place (REF 2700421) 2014-11-10 13:08:00 2014-11-10 15:52:00+00 \N t \N | |
| 102213 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2014-01-08 17:59:00 2014-01-05 09:54:00+00 \N t \N | |
| 102313 20 accident Accident on the M11 Accident on the M11 (TYPE 17) 2014-03-30 19:31:00 2014-03-27 16:27:00+00 \N t \N | |
| 102413 320 fine Bad parking place Bad parking place (REF 7285576) 2014-06-18 16:48:00 2014-06-18 15:39:00+01 \N t \N | |
| 102513 320 fine Speed camera Caught on speed camera at 64mph instead of 50mph 2014-06-23 17:27:00 2014-06-20 12:54:00+01 \N t \N | |
| 102613 20 accident Accident on the M12 Accident on the M12 (TYPE 11) 2014-05-14 17:29:00 2014-05-14 08:37:00+01 \N t \N | |
| 102713 320 fine Bad parking place Bad parking place (REF 7331432) 2014-04-21 08:18:00 2014-04-18 15:05:00+01 \N t \N | |
| 102813 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2014-05-24 17:44:00 2014-05-24 11:59:00+01 \N t \N | |
| 102913 20 accident Accident on the M21 Accident on the M21 (TYPE 18) 2015-08-31 15:34:00 2015-08-26 13:17:00+01 \N t \N | |
| 103013 320 fine Bad parking place Bad parking place (REF 7405265) 2014-06-11 10:57:00 2014-06-10 13:20:00+01 \N t \N | |
| 103113 320 fine Speed camera Caught on speed camera at 72mph instead of 50mph 2015-06-29 10:34:00 2015-06-27 15:37:00+01 \N t \N | |
| 103213 20 accident Accident on the M22 Accident on the M22 (TYPE 18) 2015-12-29 14:56:00 2015-12-25 13:25:00+00 \N t \N | |
| 103313 320 fine Bad parking place Bad parking place (REF 8499276) 2015-01-29 14:00:00 2015-01-28 13:52:00+00 \N t \N | |
| 103413 320 fine Speed camera Caught on speed camera at 61mph instead of 50mph 2014-10-01 09:59:00 2014-10-01 08:03:00+01 \N t \N | |
| 103513 20 accident Accident on the M14 Accident on the M14 (TYPE 19) 2014-08-25 14:32:00 2014-08-25 11:02:00+01 \N t \N | |
| 103613 320 fine Bad parking place Bad parking place (REF 9864842) 2015-01-17 19:00:00 2015-01-17 09:56:00+00 \N t \N | |
| 103713 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2013-09-16 16:48:00 2013-09-13 18:14:00+01 \N t \N | |
| 103813 20 accident Accident on the M25 Accident on the M25 (TYPE 15) 2015-03-21 19:38:00 2015-03-21 18:38:00+00 \N t \N | |
| 103913 320 fine Bad parking place Bad parking place (REF 5065011) 2014-10-05 12:41:00 2014-09-30 16:29:00+01 \N t \N | |
| 104013 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2015-07-09 13:08:00 2015-07-06 11:02:00+01 \N t \N | |
| 104113 20 accident Accident on the M25 Accident on the M25 (TYPE 17) 2016-01-11 09:14:00 2016-01-07 12:21:00+00 \N t \N | |
| 104213 320 fine Bad parking place Bad parking place (REF 8599850) 2015-06-20 15:10:00 2015-06-19 16:03:00+01 \N t \N | |
| 104313 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2015-01-22 14:26:00 2015-01-22 13:59:00+00 \N t \N | |
| 104413 20 accident Accident on the M18 Accident on the M18 (TYPE 12) 2015-02-02 18:12:00 2015-01-31 08:56:00+00 \N t \N | |
| 104513 320 fine Bad parking place Bad parking place (REF 8030071) 2015-07-13 08:04:00 2015-07-13 11:29:00+01 \N t \N | |
| 104613 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2014-11-28 10:11:00 2014-11-23 11:56:00+00 \N t \N | |
| 104713 20 accident Accident on the M23 Accident on the M23 (TYPE 12) 2014-09-19 15:45:00 2014-09-16 09:42:00+01 \N t \N | |
| 104813 320 fine Bad parking place Bad parking place (REF 1697903) 2014-06-03 09:11:00 2014-06-02 12:35:00+01 \N t \N | |
| 104913 320 fine Speed camera Caught on speed camera at 57mph instead of 50mph 2015-04-09 17:17:00 2015-04-06 14:22:00+01 \N t \N | |
| 105013 20 accident Accident on the M13 Accident on the M13 (TYPE 11) 2015-10-03 10:19:00 2015-09-30 15:52:00+01 \N t \N | |
| 105113 320 fine Bad parking place Bad parking place (REF 5047650) 2013-12-14 17:10:00 2013-12-12 12:48:00+00 \N t \N | |
| 105213 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2015-02-27 12:30:00 2015-02-23 17:18:00+00 \N t \N | |
| 105313 20 accident Accident on the M24 Accident on the M24 (TYPE 17) 2015-02-06 19:19:00 2015-02-06 08:39:00+00 \N t \N | |
| 105413 320 fine Bad parking place Bad parking place (REF 3183324) 2014-03-21 09:18:00 2014-03-16 19:44:00+00 \N t \N | |
| 105513 320 fine Speed camera Caught on speed camera at 75mph instead of 50mph 2015-11-10 08:35:00 2015-11-06 09:15:00+00 \N t \N | |
| 105613 20 accident Accident on the M14 Accident on the M14 (TYPE 12) 2013-12-05 13:10:00 2013-12-01 17:33:00+00 \N t \N | |
| 105713 320 fine Bad parking place Bad parking place (REF 4311177) 2015-08-03 17:05:00 2015-08-03 15:27:00+01 \N t \N | |
| 105813 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2015-09-26 12:22:00 2015-09-24 15:04:00+01 \N t \N | |
| 105913 20 accident Accident on the M23 Accident on the M23 (TYPE 14) 2015-07-17 14:15:00 2015-07-13 13:40:00+01 \N t \N | |
| 106013 320 fine Bad parking place Bad parking place (REF 2590536) 2015-03-13 15:32:00 2015-03-08 08:45:00+00 \N t \N | |
| 106113 320 fine Speed camera Caught on speed camera at 63mph instead of 50mph 2015-05-10 12:46:00 2015-05-07 10:17:00+01 \N t \N | |
| 106213 20 accident Accident on the M14 Accident on the M14 (TYPE 13) 2014-06-20 16:00:00 2014-06-20 16:16:00+01 \N t \N | |
| 106313 320 fine Bad parking place Bad parking place (REF 1389189) 2013-10-03 14:51:00 2013-09-29 19:03:00+01 \N t \N | |
| 106413 320 fine Speed camera Caught on speed camera at 59mph instead of 50mph 2016-03-11 10:17:00 2016-03-07 18:34:00+00 \N t \N | |
| 106513 20 accident Accident on the M12 Accident on the M12 (TYPE 16) 2015-02-02 09:23:00 2015-02-01 13:32:00+00 \N t \N | |
| 106613 320 fine Bad parking place Bad parking place (REF 1252293) 2015-02-23 15:58:00 2015-02-18 13:49:00+00 \N t \N | |
| 106713 320 fine Speed camera Caught on speed camera at 59mph instead of 50mph 2016-03-31 14:57:00 2016-03-27 12:15:00+01 \N t \N | |
| 106813 20 accident Accident on the M18 Accident on the M18 (TYPE 19) 2013-12-21 13:31:00 2013-12-17 09:23:00+00 \N t \N | |
| 106913 320 fine Bad parking place Bad parking place (REF 5987351) 2015-07-10 11:37:00 2015-07-05 19:05:00+01 \N t \N | |
| 107013 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2015-08-06 18:18:00 2015-08-02 09:05:00+01 \N t \N | |
| 107113 20 accident Accident on the M16 Accident on the M16 (TYPE 12) 2015-06-15 10:17:00 2015-06-14 12:55:00+01 \N t \N | |
| 107213 320 fine Bad parking place Bad parking place (REF 3330320) 2015-02-13 13:03:00 2015-02-09 15:57:00+00 \N t \N | |
| 107313 320 fine Speed camera Caught on speed camera at 65mph instead of 50mph 2013-05-12 12:50:00 2013-05-12 12:15:00+01 \N t \N | |
| 107413 20 accident Accident on the M17 Accident on the M17 (TYPE 17) 2015-05-24 13:53:00 2015-05-22 08:51:00+01 \N t \N | |
| 107513 320 fine Bad parking place Bad parking place (REF 5856365) 2014-11-21 09:01:00 2014-11-20 19:02:00+00 \N t \N | |
| 107613 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2014-08-28 13:27:00 2014-08-28 15:07:00+01 \N t \N | |
| 107713 20 accident Accident on the M24 Accident on the M24 (TYPE 17) 2015-02-20 17:09:00 2015-02-18 11:18:00+00 \N t \N | |
| 107813 320 fine Bad parking place Bad parking place (REF 8031031) 2015-03-24 13:19:00 2015-03-19 12:19:00+00 \N t \N | |
| 107913 320 fine Speed camera Caught on speed camera at 61mph instead of 50mph 2015-05-18 08:40:00 2015-05-16 12:16:00+01 \N t \N | |
| 108013 20 accident Accident on the M17 Accident on the M17 (TYPE 18) 2014-05-09 15:10:00 2014-05-04 18:46:00+01 \N t \N | |
| 108113 320 fine Bad parking place Bad parking place (REF 9081763) 2015-07-11 08:14:00 2015-07-09 17:20:00+01 \N t \N | |
| 108213 320 fine Speed camera Caught on speed camera at 71mph instead of 50mph 2013-10-26 09:37:00 2013-10-21 15:09:00+01 \N t \N | |
| 108313 20 accident Accident on the M21 Accident on the M21 (TYPE 11) 2013-11-13 10:37:00 2013-11-09 15:43:00+00 \N t \N | |
| 108413 320 fine Bad parking place Bad parking place (REF 6857538) 2016-02-18 09:29:00 2016-02-16 14:32:00+00 \N t \N | |
| 108513 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2013-09-18 11:59:00 2013-09-13 17:40:00+01 \N t \N | |
| 108613 20 accident Accident on the M22 Accident on the M22 (TYPE 11) 2015-08-19 17:28:00 2015-08-16 15:09:00+01 \N t \N | |
| 108713 320 fine Bad parking place Bad parking place (REF 8837088) 2014-08-26 11:17:00 2014-08-25 15:15:00+01 \N t \N | |
| 108813 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2014-10-15 14:39:00 2014-10-10 09:00:00+01 \N t \N | |
| 108913 20 accident Accident on the M12 Accident on the M12 (TYPE 17) 2013-09-12 09:58:00 2013-09-07 14:07:00+01 \N t \N | |
| 109013 320 fine Bad parking place Bad parking place (REF 4367141) 2015-07-01 14:14:00 2015-06-26 18:28:00+01 \N t \N | |
| 109113 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2014-02-08 08:59:00 2014-02-04 09:28:00+00 \N t \N | |
| 109213 20 accident Accident on the M18 Accident on the M18 (TYPE 11) 2013-11-11 16:48:00 2013-11-09 15:29:00+00 \N t \N | |
| 109313 320 fine Bad parking place Bad parking place (REF 7401161) 2015-03-02 09:08:00 2015-03-02 17:59:00+00 \N t \N | |
| 109413 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2013-05-31 09:10:00 2013-05-28 17:07:00+01 \N t \N | |
| 109513 20 accident Accident on the M17 Accident on the M17 (TYPE 13) 2016-03-04 17:45:00 2016-03-03 11:43:00+00 \N t \N | |
| 109613 320 fine Bad parking place Bad parking place (REF 4256320) 2013-07-16 12:52:00 2013-07-15 18:05:00+01 \N t \N | |
| 109713 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2015-07-20 08:29:00 2015-07-18 08:29:00+01 \N t \N | |
| 109813 20 accident Accident on the M24 Accident on the M24 (TYPE 15) 2015-10-09 14:11:00 2015-10-09 10:40:00+01 \N t \N | |
| 109913 320 fine Bad parking place Bad parking place (REF 3415849) 2013-12-30 09:39:00 2013-12-30 10:46:00+00 \N t \N | |
| 110013 320 fine Speed camera Caught on speed camera at 57mph instead of 50mph 2013-05-05 16:22:00 2013-05-04 10:01:00+01 \N t \N | |
| 110113 20 accident Accident on the M15 Accident on the M15 (TYPE 12) 2014-05-13 15:28:00 2014-05-09 13:49:00+01 \N t \N | |
| 110213 320 fine Bad parking place Bad parking place (REF 5751956) 2015-08-05 18:56:00 2015-08-03 10:04:00+01 \N t \N | |
| 110313 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2013-10-15 17:22:00 2013-10-15 09:17:00+01 \N t \N | |
| 110413 20 accident Accident on the M23 Accident on the M23 (TYPE 17) 2016-03-30 15:54:00 2016-03-26 08:37:00+00 \N t \N | |
| 110513 320 fine Bad parking place Bad parking place (REF 3972130) 2015-01-03 12:09:00 2015-12-29 12:56:00+00 \N t \N | |
| 110613 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2015-07-14 09:20:00 2015-07-13 09:34:00+01 \N t \N | |
| 110713 20 accident Accident on the M20 Accident on the M20 (TYPE 19) 2015-10-12 09:49:00 2015-10-07 12:41:00+01 \N t \N | |
| 110813 320 fine Bad parking place Bad parking place (REF 1734747) 2015-03-02 09:18:00 2015-03-01 08:11:00+00 \N t \N | |
| 110913 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2015-01-18 19:17:00 2015-01-18 16:52:00+00 \N t \N | |
| 111013 20 accident Accident on the M17 Accident on the M17 (TYPE 13) 2016-03-13 13:47:00 2016-03-11 11:56:00+00 \N t \N | |
| 111113 320 fine Bad parking place Bad parking place (REF 9302809) 2013-06-28 08:48:00 2013-06-27 15:12:00+01 \N t \N | |
| 111213 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2015-11-07 16:03:00 2015-11-04 08:40:00+00 \N t \N | |
| 111313 20 accident Accident on the M11 Accident on the M11 (TYPE 10) 2016-03-09 11:10:00 2016-03-08 16:16:00+00 \N t \N | |
| 111413 320 fine Bad parking place Bad parking place (REF 1598958) 2013-12-12 11:25:00 2013-12-07 12:54:00+00 \N t \N | |
| 111513 320 fine Speed camera Caught on speed camera at 59mph instead of 50mph 2015-09-05 17:56:00 2015-09-05 08:33:00+01 \N t \N | |
| 111613 20 accident Accident on the M21 Accident on the M21 (TYPE 11) 2015-05-18 17:28:00 2015-05-18 19:30:00+01 \N t \N | |
| 111713 320 fine Bad parking place Bad parking place (REF 2575439) 2016-02-25 13:38:00 2016-02-22 12:07:00+00 \N t \N | |
| 111813 320 fine Speed camera Caught on speed camera at 57mph instead of 50mph 2015-03-17 13:11:00 2015-03-16 14:28:00+00 \N t \N | |
| 111913 20 accident Accident on the M19 Accident on the M19 (TYPE 14) 2015-06-24 08:01:00 2015-06-24 12:39:00+01 \N t \N | |
| 112013 320 fine Bad parking place Bad parking place (REF 9563685) 2014-11-02 09:21:00 2014-10-31 09:49:00+00 \N t \N | |
| 112113 320 fine Speed camera Caught on speed camera at 64mph instead of 50mph 2015-05-16 10:14:00 2015-05-16 15:11:00+01 \N t \N | |
| 112213 20 accident Accident on the M23 Accident on the M23 (TYPE 10) 2015-12-29 16:19:00 2015-12-25 12:59:00+00 \N t \N | |
| 112313 320 fine Bad parking place Bad parking place (REF 2191182) 2015-08-15 08:51:00 2015-08-10 18:27:00+01 \N t \N | |
| 112413 320 fine Speed camera Caught on speed camera at 58mph instead of 50mph 2015-09-26 15:03:00 2015-09-25 10:33:00+01 \N t \N | |
| 112513 20 accident Accident on the M18 Accident on the M18 (TYPE 15) 2015-01-30 09:06:00 2015-01-28 12:29:00+00 \N t \N | |
| 112613 320 fine Bad parking place Bad parking place (REF 5623875) 2015-04-16 18:13:00 2015-04-16 14:56:00+01 \N t \N | |
| 112713 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2015-12-18 19:32:00 2015-12-15 16:32:00+00 \N t \N | |
| 112813 20 accident Accident on the M24 Accident on the M24 (TYPE 11) 2014-09-27 11:13:00 2014-09-23 15:23:00+01 \N t \N | |
| 112913 320 fine Bad parking place Bad parking place (REF 1948828) 2015-09-21 16:31:00 2015-09-21 17:56:00+01 \N t \N | |
| 113013 320 fine Speed camera Caught on speed camera at 71mph instead of 50mph 2015-11-01 15:32:00 2015-10-29 11:52:00+00 \N t \N | |
| 113113 20 accident Accident on the M23 Accident on the M23 (TYPE 12) 2014-10-23 13:25:00 2014-10-23 14:15:00+01 \N t \N | |
| 113213 320 fine Bad parking place Bad parking place (REF 4008830) 2015-05-07 08:52:00 2015-05-02 12:53:00+01 \N t \N | |
| 113313 320 fine Speed camera Caught on speed camera at 61mph instead of 50mph 2015-12-31 08:26:00 2015-12-31 12:57:00+00 \N t \N | |
| 113413 20 accident Accident on the M18 Accident on the M18 (TYPE 16) 2015-01-25 08:05:00 2015-01-24 12:47:00+00 \N t \N | |
| 113513 320 fine Bad parking place Bad parking place (REF 1514844) 2015-01-16 13:10:00 2015-01-13 15:27:00+00 \N t \N | |
| 113613 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2015-07-22 13:38:00 2015-07-22 15:12:00+01 \N t \N | |
| 113713 20 accident Accident on the M17 Accident on the M17 (TYPE 15) 2015-05-04 13:09:00 2015-05-02 15:59:00+01 \N t \N | |
| 113813 320 fine Bad parking place Bad parking place (REF 1385830) 2015-12-23 19:29:00 2015-12-20 10:32:00+00 \N t \N | |
| 113913 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2015-08-21 08:36:00 2015-08-19 13:23:00+01 \N t \N | |
| 114013 20 accident Accident on the M20 Accident on the M20 (TYPE 12) 2015-03-17 14:11:00 2015-03-14 09:47:00+00 \N t \N | |
| 114113 320 fine Bad parking place Bad parking place (REF 4208580) 2015-04-26 16:24:00 2015-04-21 18:37:00+01 \N t \N | |
| 114213 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2015-07-27 12:37:00 2015-07-23 16:35:00+01 \N t \N | |
| 114313 20 accident Accident on the M21 Accident on the M21 (TYPE 18) 2015-09-16 19:40:00 2015-09-15 10:20:00+01 \N t \N | |
| 114413 320 fine Bad parking place Bad parking place (REF 5030745) 2015-10-31 18:39:00 2015-10-30 19:59:00+00 \N t \N | |
| 114513 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2016-01-20 10:29:00 2016-01-16 11:17:00+00 \N t \N | |
| 114613 20 accident Accident on the M15 Accident on the M15 (TYPE 10) 2015-06-15 10:39:00 2015-06-14 18:47:00+01 \N t \N | |
| 114713 320 fine Bad parking place Bad parking place (REF 5924540) 2015-08-14 19:13:00 2015-08-12 14:14:00+01 \N t \N | |
| 114813 320 fine Speed camera Caught on speed camera at 72mph instead of 50mph 2015-06-02 14:59:00 2015-06-01 16:55:00+01 \N t \N | |
| 114913 20 accident Accident on the M24 Accident on the M24 (TYPE 11) 2015-11-24 16:37:00 2015-11-22 10:02:00+00 \N t \N | |
| 115013 320 fine Bad parking place Bad parking place (REF 1201141) 2015-09-03 08:08:00 2015-09-01 16:49:00+01 \N t \N | |
| 115113 320 fine Speed camera Caught on speed camera at 71mph instead of 50mph 2014-11-28 17:31:00 2014-11-25 14:19:00+00 \N t \N | |
| 115213 20 accident Accident on the M18 Accident on the M18 (TYPE 16) 2015-01-10 17:12:00 2015-01-07 08:10:00+00 \N t \N | |
| 115313 320 fine Bad parking place Bad parking place (REF 1228862) 2015-07-21 16:44:00 2015-07-20 11:14:00+01 \N t \N | |
| 115413 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2015-05-11 16:42:00 2015-05-09 16:46:00+01 \N t \N | |
| 115513 20 accident Accident on the M20 Accident on the M20 (TYPE 18) 2015-03-15 12:15:00 2015-03-11 15:49:00+00 \N t \N | |
| 115613 320 fine Bad parking place Bad parking place (REF 6285782) 2015-01-09 18:04:00 2015-01-06 14:30:00+00 \N t \N | |
| 115713 320 fine Speed camera Caught on speed camera at 63mph instead of 50mph 2015-02-18 16:17:00 2015-02-15 13:18:00+00 \N t \N | |
| 115813 20 accident Accident on the M10 Accident on the M10 (TYPE 13) 2015-11-28 16:37:00 2015-11-27 09:37:00+00 \N t \N | |
| 115913 320 fine Bad parking place Bad parking place (REF 7624195) 2015-01-16 19:32:00 2015-01-15 15:04:00+00 \N t \N | |
| 116013 320 fine Speed camera Caught on speed camera at 65mph instead of 50mph 2015-07-23 11:09:00 2015-07-20 15:55:00+01 \N t \N | |
| 116113 20 accident Accident on the M11 Accident on the M11 (TYPE 11) 2014-11-29 08:29:00 2014-11-24 12:28:00+00 \N t \N | |
| 116213 320 fine Bad parking place Bad parking place (REF 1231453) 2015-03-14 17:58:00 2015-03-13 16:55:00+00 \N t \N | |
| 116313 320 fine Speed camera Caught on speed camera at 72mph instead of 50mph 2015-05-17 16:22:00 2015-05-14 16:23:00+01 \N t \N | |
| 116413 20 accident Accident on the M11 Accident on the M11 (TYPE 14) 2015-06-07 19:23:00 2015-06-07 18:56:00+01 \N t \N | |
| 116513 320 fine Bad parking place Bad parking place (REF 7104543) 2015-05-22 19:02:00 2015-05-20 13:34:00+01 \N t \N | |
| 116613 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2015-12-10 14:47:00 2015-12-09 17:57:00+00 \N t \N | |
| 116713 20 accident Accident on the M18 Accident on the M18 (TYPE 11) 2015-10-31 14:18:00 2015-10-30 18:47:00+00 \N t \N | |
| 116813 320 fine Bad parking place Bad parking place (REF 3322052) 2015-05-15 08:15:00 2015-05-10 09:13:00+01 \N t \N | |
| 116913 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2015-11-30 08:42:00 2015-11-26 08:50:00+00 \N t \N | |
| 117013 20 accident Accident on the M25 Accident on the M25 (TYPE 18) 2014-12-18 19:24:00 2014-12-15 19:39:00+00 \N t \N | |
| 117113 320 fine Bad parking place Bad parking place (REF 5692789) 2016-03-02 19:51:00 2016-02-28 15:33:00+00 \N t \N | |
| 117213 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2015-05-04 13:39:00 2015-04-30 09:06:00+01 \N t \N | |
| 117313 20 accident Accident on the M18 Accident on the M18 (TYPE 14) 2016-01-24 09:10:00 2016-01-23 18:14:00+00 \N t \N | |
| 117413 320 fine Bad parking place Bad parking place (REF 4409631) 2016-03-16 11:06:00 2016-03-12 16:29:00+00 \N t \N | |
| 117513 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2014-10-18 16:34:00 2014-10-13 11:20:00+01 \N t \N | |
| 117613 20 accident Accident on the M13 Accident on the M13 (TYPE 11) 2016-03-11 11:45:00 2016-03-06 13:41:00+00 \N t \N | |
| 117713 320 fine Bad parking place Bad parking place (REF 5219004) 2015-05-09 08:06:00 2015-05-09 17:08:00+01 \N t \N | |
| 117813 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2015-05-26 16:47:00 2015-05-25 15:32:00+01 \N t \N | |
| 117913 20 accident Accident on the M22 Accident on the M22 (TYPE 19) 2015-04-19 13:41:00 2015-04-18 14:29:00+01 \N t \N | |
| 118013 320 fine Bad parking place Bad parking place (REF 6957996) 2015-05-06 10:28:00 2015-05-04 13:59:00+01 \N t \N | |
| 118113 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2015-10-10 16:43:00 2015-10-07 08:14:00+01 \N t \N | |
| 118213 20 accident Accident on the M21 Accident on the M21 (TYPE 17) 2015-09-20 11:18:00 2015-09-16 19:57:00+01 \N t \N | |
| 118313 320 fine Bad parking place Bad parking place (REF 3993750) 2015-01-04 08:15:00 2015-01-04 08:03:00+00 \N t \N | |
| 118413 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2016-02-06 14:05:00 2016-02-02 10:04:00+00 \N t \N | |
| 118513 20 accident Accident on the M22 Accident on the M22 (TYPE 16) 2015-03-17 19:31:00 2015-03-16 18:10:00+00 \N t \N | |
| 118613 320 fine Bad parking place Bad parking place (REF 2616314) 2016-03-21 14:57:00 2016-03-16 16:34:00+00 \N t \N | |
| 118713 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2015-02-09 12:58:00 2015-02-08 16:53:00+00 \N t \N | |
| 118813 20 accident Accident on the M13 Accident on the M13 (TYPE 11) 2016-01-11 15:31:00 2016-01-07 16:35:00+00 \N t \N | |
| 118913 320 fine Bad parking place Bad parking place (REF 5970900) 2015-02-20 09:53:00 2015-02-19 09:25:00+00 \N t \N | |
| 119013 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2015-07-01 15:52:00 2015-06-28 09:27:00+01 \N t \N | |
| 119113 20 accident Accident on the M19 Accident on the M19 (TYPE 16) 2015-09-20 13:54:00 2015-09-19 17:30:00+01 \N t \N | |
| 119213 320 fine Bad parking place Bad parking place (REF 7473355) 2018-02-26 15:32:00 2018-02-25 09:35:00+00 \N t \N | |
| 119313 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2015-01-18 08:22:00 2015-01-13 15:47:00+00 \N t \N | |
| 119413 20 accident Accident on the M11 Accident on the M11 (TYPE 14) 2016-03-26 11:28:00 2016-03-21 09:12:00+00 \N t \N | |
| 119513 320 fine Bad parking place Bad parking place (REF 2875638) 2015-04-19 08:31:00 2015-04-18 11:37:00+01 \N t \N | |
| 119613 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2015-10-06 19:48:00 2015-10-05 10:20:00+01 \N t \N | |
| 119713 20 accident Accident on the M11 Accident on the M11 (TYPE 13) 2015-02-06 11:13:00 2015-02-06 18:07:00+00 \N t \N | |
| 119813 320 fine Bad parking place Bad parking place (REF 3927657) 2018-03-10 09:17:00 2018-03-07 11:55:00+00 \N t \N | |
| 119913 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2015-06-14 13:41:00 2015-06-13 10:29:00+01 \N t \N | |
| 120013 20 accident Accident on the M14 Accident on the M14 (TYPE 13) 2015-06-24 12:27:00 2015-06-20 19:05:00+01 \N t \N | |
| 120113 320 fine Bad parking place Bad parking place (REF 2364160) 2016-01-07 10:52:00 2016-01-07 15:43:00+00 \N t \N | |
| 120213 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2015-06-26 12:36:00 2015-06-22 15:23:00+01 \N t \N | |
| 120313 20 accident Accident on the M18 Accident on the M18 (TYPE 15) 2015-08-31 18:01:00 2015-08-29 15:20:00+01 \N t \N | |
| 120413 320 fine Bad parking place Bad parking place (REF 6376844) 2016-02-03 09:01:00 2016-02-01 19:45:00+00 \N t \N | |
| 120513 320 fine Speed camera Caught on speed camera at 63mph instead of 50mph 2014-12-23 18:45:00 2014-12-20 17:04:00+00 \N t \N | |
| 120613 20 accident Accident on the M12 Accident on the M12 (TYPE 12) 2015-06-25 18:22:00 2015-06-23 10:31:00+01 \N t \N | |
| 120713 320 fine Bad parking place Bad parking place (REF 7564669) 2015-11-16 15:32:00 2015-11-14 15:22:00+00 \N t \N | |
| 120813 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2015-04-23 18:39:00 2015-04-20 09:15:00+01 \N t \N | |
| 120913 20 accident Accident on the M10 Accident on the M10 (TYPE 15) 2015-08-03 19:14:00 2015-07-31 09:15:00+01 \N t \N | |
| 121013 320 fine Bad parking place Bad parking place (REF 7391963) 2015-05-13 09:59:00 2015-05-10 13:26:00+01 \N t \N | |
| 121113 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2015-05-26 17:06:00 2015-05-26 18:39:00+01 \N t \N | |
| 121213 20 accident Accident on the M12 Accident on the M12 (TYPE 18) 2014-12-03 17:00:00 2014-12-02 17:46:00+00 \N t \N | |
| 121313 320 fine Bad parking place Bad parking place (REF 5422411) 2015-10-30 11:54:00 2015-10-29 17:05:00+00 \N t \N | |
| 121413 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2015-04-05 11:48:00 2015-04-05 16:58:00+01 \N t \N | |
| 121513 20 accident Accident on the M10 Accident on the M10 (TYPE 10) 2015-08-23 15:40:00 2015-08-18 14:41:00+01 \N t \N | |
| 121613 320 fine Bad parking place Bad parking place (REF 2736086) 2015-05-02 11:49:00 2015-04-30 08:14:00+01 \N t \N | |
| 121713 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2015-04-20 14:40:00 2015-04-15 12:44:00+01 \N t \N | |
| 121813 20 accident Accident on the M18 Accident on the M18 (TYPE 19) 2015-04-19 13:25:00 2015-04-18 15:01:00+01 \N t \N | |
| 121913 320 fine Bad parking place Bad parking place (REF 3845752) 2015-11-02 16:32:00 2015-11-01 08:37:00+00 \N t \N | |
| 122013 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2015-09-04 13:35:00 2015-09-03 17:50:00+01 \N t \N | |
| 122113 20 accident Accident on the M10 Accident on the M10 (TYPE 15) 2015-04-23 11:21:00 2015-04-18 16:59:00+01 \N t \N | |
| 122213 320 fine Bad parking place Bad parking place (REF 9589126) 2014-05-15 19:57:00 2014-05-12 12:17:00+01 \N t \N | |
| 122313 320 fine Speed camera Caught on speed camera at 61mph instead of 50mph 2015-10-01 18:53:00 2015-09-29 12:30:00+01 \N t \N | |
| 122413 20 accident Accident on the M23 Accident on the M23 (TYPE 11) 2015-12-11 15:48:00 2015-12-07 14:31:00+00 \N t \N | |
| 122513 320 fine Bad parking place Bad parking place (REF 5086151) 2015-01-27 09:46:00 2015-01-25 17:00:00+00 \N t \N | |
| 122613 320 fine Speed camera Caught on speed camera at 65mph instead of 50mph 2015-04-04 17:53:00 2015-04-01 19:39:00+01 \N t \N | |
| 122713 20 accident Accident on the M10 Accident on the M10 (TYPE 14) 2016-01-01 18:35:00 2016-01-01 15:45:00+00 \N t \N | |
| 122813 320 fine Bad parking place Bad parking place (REF 8518337) 2015-03-11 18:11:00 2015-03-09 13:26:00+00 \N t \N | |
| 122913 320 fine Speed camera Caught on speed camera at 71mph instead of 50mph 2015-05-18 14:12:00 2015-05-18 18:07:00+01 \N t \N | |
| 123013 20 accident Accident on the M17 Accident on the M17 (TYPE 19) 2015-07-17 19:06:00 2015-07-16 13:25:00+01 \N t \N | |
| 123113 320 fine Bad parking place Bad parking place (REF 2382625) 2015-03-21 18:15:00 2015-03-20 17:29:00+00 \N t \N | |
| 123213 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2015-07-13 19:27:00 2015-07-12 16:12:00+01 \N t \N | |
| 123313 20 accident Accident on the M17 Accident on the M17 (TYPE 10) 2014-06-03 19:21:00 2014-06-03 10:18:00+01 \N t \N | |
| 123413 320 fine Bad parking place Bad parking place (REF 7554264) 2015-11-21 18:36:00 2015-11-17 10:18:00+00 \N t \N | |
| 123513 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2015-12-28 18:19:00 2015-12-25 19:00:00+00 \N t \N | |
| 123613 20 accident Accident on the M22 Accident on the M22 (TYPE 14) 2014-11-26 10:11:00 2014-11-22 09:38:00+00 \N t \N | |
| 123713 320 fine Bad parking place Bad parking place (REF 1286220) 2014-08-25 16:10:00 2014-08-25 19:32:00+01 \N t \N | |
| 123813 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2015-09-22 09:34:00 2015-09-22 19:21:00+01 \N t \N | |
| 123913 20 accident Accident on the M23 Accident on the M23 (TYPE 12) 2015-05-04 08:46:00 2015-05-03 08:29:00+01 \N t \N | |
| 124013 320 fine Bad parking place Bad parking place (REF 6169702) 2015-06-15 12:11:00 2015-06-12 18:48:00+01 \N t \N | |
| 124113 320 fine Speed camera Caught on speed camera at 75mph instead of 50mph 2015-09-24 14:11:00 2015-09-21 14:51:00+01 \N t \N | |
| 124213 20 accident Accident on the M16 Accident on the M16 (TYPE 18) 2015-10-05 08:25:00 2015-10-03 13:10:00+01 \N t \N | |
| 124313 320 fine Bad parking place Bad parking place (REF 4516962) 2015-03-28 17:59:00 2015-03-23 15:54:00+00 \N t \N | |
| 124413 320 fine Speed camera Caught on speed camera at 64mph instead of 50mph 2015-06-09 15:17:00 2015-06-04 15:27:00+01 \N t \N | |
| 124513 20 accident Accident on the M15 Accident on the M15 (TYPE 16) 2015-12-07 10:36:00 2015-12-05 08:03:00+00 \N t \N | |
| 124613 320 fine Bad parking place Bad parking place (REF 5334639) 2015-03-03 12:04:00 2015-02-27 18:50:00+00 \N t \N | |
| 124713 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2015-10-24 18:20:00 2015-10-23 14:32:00+01 \N t \N | |
| 124813 20 accident Accident on the M18 Accident on the M18 (TYPE 17) 2015-03-16 14:47:00 2015-03-14 08:46:00+00 \N t \N | |
| 124913 320 fine Bad parking place Bad parking place (REF 4908518) 2015-08-10 16:24:00 2015-08-10 18:17:00+01 \N t \N | |
| 125013 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2015-11-03 12:35:00 2015-10-31 09:47:00+00 \N t \N | |
| 125113 20 accident Accident on the M17 Accident on the M17 (TYPE 13) 2014-08-05 16:36:00 2014-08-02 11:15:00+01 \N t \N | |
| 125213 320 fine Bad parking place Bad parking place (REF 9751683) 2015-09-30 17:25:00 2015-09-25 13:18:00+01 \N t \N | |
| 125313 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2014-10-22 17:56:00 2014-10-22 17:22:00+01 \N t \N | |
| 125413 20 accident Accident on the M16 Accident on the M16 (TYPE 15) 2016-01-20 19:51:00 2016-01-15 16:50:00+00 \N t \N | |
| 125513 320 fine Bad parking place Bad parking place (REF 2206699) 2015-06-07 16:22:00 2015-06-04 18:33:00+01 \N t \N | |
| 125613 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2015-02-02 08:16:00 2015-01-31 15:22:00+00 \N t \N | |
| 125713 20 accident Accident on the M19 Accident on the M19 (TYPE 10) 2015-04-20 14:07:00 2015-04-17 13:07:00+01 \N t \N | |
| 125813 320 fine Bad parking place Bad parking place (REF 6044776) 2016-03-28 16:21:00 2016-03-25 14:01:00+00 \N t \N | |
| 125913 320 fine Speed camera Caught on speed camera at 58mph instead of 50mph 2015-09-07 09:19:00 2015-09-03 08:11:00+01 \N t \N | |
| 126013 20 accident Accident on the M19 Accident on the M19 (TYPE 18) 2013-10-28 15:18:00 2013-10-23 13:03:00+01 \N t \N | |
| 126113 320 fine Bad parking place Bad parking place (REF 3550285) 2012-03-11 19:03:00 2012-03-09 10:21:00+00 \N t \N | |
| 126213 320 fine Speed camera Caught on speed camera at 58mph instead of 50mph 2011-05-11 12:48:00 2011-05-10 18:47:00+01 \N t \N | |
| 126313 20 accident Accident on the M10 Accident on the M10 (TYPE 13) 2014-02-02 12:55:00 2014-01-31 18:56:00+00 \N t \N | |
| 126413 320 fine Bad parking place Bad parking place (REF 7640736) 2014-04-19 15:05:00 2014-04-16 14:46:00+01 \N t \N | |
| 126513 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2013-04-08 12:59:00 2013-04-05 10:40:00+01 \N t \N | |
| 126613 20 accident Accident on the M15 Accident on the M15 (TYPE 19) 2013-03-26 16:04:00 2013-03-23 14:32:00+00 \N t \N | |
| 126713 320 fine Bad parking place Bad parking place (REF 4247651) 2015-01-14 15:28:00 2015-01-14 19:59:00+00 \N t \N | |
| 126813 320 fine Speed camera Caught on speed camera at 56mph instead of 50mph 2013-11-16 13:23:00 2013-11-14 18:43:00+00 \N t \N | |
| 126913 20 accident Accident on the M10 Accident on the M10 (TYPE 12) 2011-09-03 12:29:00 2011-09-02 12:31:00+01 \N t \N | |
| 127013 320 fine Bad parking place Bad parking place (REF 2219206) 2013-12-15 11:07:00 2013-12-10 14:14:00+00 \N t \N | |
| 127113 320 fine Speed camera Caught on speed camera at 71mph instead of 50mph 2014-05-14 18:18:00 2014-05-11 08:11:00+01 \N t \N | |
| 127213 20 accident Accident on the M21 Accident on the M21 (TYPE 10) 2013-05-31 12:26:00 2013-05-29 15:29:00+01 \N t \N | |
| 127313 320 fine Bad parking place Bad parking place (REF 4218231) 2013-03-18 13:05:00 2013-03-13 11:11:00+00 \N t \N | |
| 127413 320 fine Speed camera Caught on speed camera at 63mph instead of 50mph 2014-04-16 17:33:00 2014-04-16 14:20:00+01 \N t \N | |
| 127513 20 accident Accident on the M17 Accident on the M17 (TYPE 11) 2013-02-06 12:27:00 2013-02-06 12:00:00+00 \N t \N | |
| 127613 320 fine Bad parking place Bad parking place (REF 5017303) 2014-05-11 18:20:00 2014-05-06 12:36:00+01 \N t \N | |
| 127713 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2014-05-06 14:15:00 2014-05-03 12:17:00+01 \N t \N | |
| 127813 20 accident Accident on the M12 Accident on the M12 (TYPE 16) 2012-10-20 09:56:00 2012-10-19 12:17:00+01 \N t \N | |
| 127913 320 fine Bad parking place Bad parking place (REF 6609389) 2012-09-12 10:44:00 2012-09-08 10:58:00+01 \N t \N | |
| 128013 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2012-12-06 08:31:00 2012-12-02 08:29:00+00 \N t \N | |
| 128113 20 accident Accident on the M19 Accident on the M19 (TYPE 17) 2013-09-13 16:43:00 2013-09-10 15:37:00+01 \N t \N | |
| 128213 320 fine Bad parking place Bad parking place (REF 6708352) 2012-01-04 15:20:00 2011-12-30 08:33:00+00 \N t \N | |
| 128313 320 fine Speed camera Caught on speed camera at 59mph instead of 50mph 2012-02-28 10:05:00 2012-02-27 15:52:00+00 \N t \N | |
| 128413 20 accident Accident on the M11 Accident on the M11 (TYPE 18) 2013-10-28 16:35:00 2013-10-28 11:59:00+00 \N t \N | |
| 128513 320 fine Bad parking place Bad parking place (REF 5266356) 2013-08-20 15:59:00 2013-08-19 12:50:00+01 \N t \N | |
| 128613 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2012-02-12 16:27:00 2012-02-09 10:28:00+00 \N t \N | |
| 128713 20 accident Accident on the M12 Accident on the M12 (TYPE 13) 2013-12-19 11:07:00 2013-12-14 08:52:00+00 \N t \N | |
| 128813 320 fine Bad parking place Bad parking place (REF 9570411) 2011-08-24 18:44:00 2011-08-21 19:21:00+01 \N t \N | |
| 128913 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2013-05-07 10:42:00 2013-05-05 08:29:00+01 \N t \N | |
| 129013 20 accident Accident on the M19 Accident on the M19 (TYPE 11) 2014-01-04 11:37:00 2014-01-04 16:26:00+00 \N t \N | |
| 129113 320 fine Bad parking place Bad parking place (REF 4218220) 2013-08-12 10:10:00 2013-08-10 14:06:00+01 \N t \N | |
| 129213 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2012-01-30 19:42:00 2012-01-26 08:52:00+00 \N t \N | |
| 129313 20 accident Accident on the M15 Accident on the M15 (TYPE 17) 2012-10-14 13:07:00 2012-10-12 12:26:00+01 \N t \N | |
| 129413 320 fine Bad parking place Bad parking place (REF 8297207) 2013-06-27 15:37:00 2013-06-22 10:39:00+01 \N t \N | |
| 129513 320 fine Speed camera Caught on speed camera at 70mph instead of 50mph 2013-03-07 18:40:00 2013-03-05 13:13:00+00 \N t \N | |
| 129613 20 accident Accident on the M25 Accident on the M25 (TYPE 12) 2013-01-14 09:36:00 2013-01-09 09:03:00+00 \N t \N | |
| 129713 320 fine Bad parking place Bad parking place (REF 8182315) 2011-05-14 12:44:00 2011-05-11 18:10:00+01 \N t \N | |
| 129813 320 fine Speed camera Caught on speed camera at 56mph instead of 50mph 2011-07-22 19:35:00 2011-07-20 15:28:00+01 \N t \N | |
| 129913 20 accident Accident on the M16 Accident on the M16 (TYPE 13) 2013-07-06 17:41:00 2013-07-04 08:54:00+01 \N t \N | |
| 130013 320 fine Bad parking place Bad parking place (REF 1380191) 2012-12-28 10:24:00 2012-12-24 13:26:00+00 \N t \N | |
| 130113 320 fine Speed camera Caught on speed camera at 59mph instead of 50mph 2013-04-09 16:54:00 2013-04-08 16:43:00+01 \N t \N | |
| 130213 20 accident Accident on the M11 Accident on the M11 (TYPE 11) 2013-10-28 18:59:00 2013-10-23 19:46:00+01 \N t \N | |
| 130313 320 fine Bad parking place Bad parking place (REF 1449407) 2012-11-30 08:46:00 2012-11-29 15:53:00+00 \N t \N | |
| 130413 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2012-07-19 16:14:00 2012-07-18 09:39:00+01 \N t \N | |
| 130513 20 accident Accident on the M22 Accident on the M22 (TYPE 15) 2012-10-10 13:03:00 2012-10-05 12:49:00+01 \N t \N | |
| 130613 320 fine Bad parking place Bad parking place (REF 2358901) 2013-10-02 18:40:00 2013-09-30 09:52:00+01 \N t \N | |
| 130713 320 fine Speed camera Caught on speed camera at 75mph instead of 50mph 2013-10-23 10:49:00 2013-10-23 19:08:00+01 \N t \N | |
| 130813 20 accident Accident on the M17 Accident on the M17 (TYPE 12) 2012-02-12 12:40:00 2012-02-09 17:20:00+00 \N t \N | |
| 130913 320 fine Bad parking place Bad parking place (REF 8022429) 2014-10-06 19:02:00 2014-10-03 15:55:00+01 \N t \N | |
| 131013 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2012-05-20 11:48:00 2012-05-15 19:01:00+01 \N t \N | |
| 131113 20 accident Accident on the M20 Accident on the M20 (TYPE 19) 2013-02-08 16:26:00 2013-02-07 09:07:00+00 \N t \N | |
| 131213 320 fine Bad parking place Bad parking place (REF 6140412) 2013-10-27 13:07:00 2013-10-27 08:00:00+00 \N t \N | |
| 131313 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2014-08-09 10:22:00 2014-08-04 11:42:00+01 \N t \N | |
| 131413 20 accident Accident on the M24 Accident on the M24 (TYPE 11) 2013-11-17 16:59:00 2013-11-14 13:20:00+00 \N t \N | |
| 131513 320 fine Bad parking place Bad parking place (REF 4709241) 2014-05-11 08:54:00 2014-05-11 15:58:00+01 \N t \N | |
| 131613 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2014-05-17 12:45:00 2014-05-16 17:20:00+01 \N t \N | |
| 131713 20 accident Accident on the M24 Accident on the M24 (TYPE 14) 2012-02-18 17:17:00 2012-02-18 16:41:00+00 \N t \N | |
| 131813 320 fine Bad parking place Bad parking place (REF 7654777) 2013-03-09 17:50:00 2013-03-09 09:17:00+00 \N t \N | |
| 131913 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2014-01-24 08:30:00 2014-01-20 14:14:00+00 \N t \N | |
| 132013 20 accident Accident on the M18 Accident on the M18 (TYPE 14) 2013-09-18 09:34:00 2013-09-15 19:57:00+01 \N t \N | |
| 132113 320 fine Bad parking place Bad parking place (REF 9370814) 2012-10-24 14:56:00 2012-10-23 08:02:00+01 \N t \N | |
| 132213 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2014-03-17 11:47:00 2014-03-16 18:59:00+00 \N t \N | |
| 132313 20 accident Accident on the M21 Accident on the M21 (TYPE 17) 2013-12-29 17:38:00 2013-12-27 10:35:00+00 \N t \N | |
| 132413 320 fine Bad parking place Bad parking place (REF 6785569) 2011-11-21 13:43:00 2011-11-18 11:47:00+00 \N t \N | |
| 132513 320 fine Speed camera Caught on speed camera at 72mph instead of 50mph 2012-02-15 16:45:00 2012-02-14 14:18:00+00 \N t \N | |
| 132613 20 accident Accident on the M18 Accident on the M18 (TYPE 15) 2012-11-14 14:23:00 2012-11-10 17:41:00+00 \N t \N | |
| 132713 320 fine Bad parking place Bad parking place (REF 9389391) 2014-01-08 10:57:00 2014-01-05 13:53:00+00 \N t \N | |
| 132813 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2014-01-25 14:22:00 2014-01-21 16:42:00+00 \N t \N | |
| 132913 20 accident Accident on the M22 Accident on the M22 (TYPE 15) 2012-10-28 12:14:00 2012-10-27 15:12:00+01 \N t \N | |
| 133013 320 fine Bad parking place Bad parking place (REF 3907122) 2012-01-13 12:23:00 2012-01-08 08:11:00+00 \N t \N | |
| 133113 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2012-11-19 09:47:00 2012-11-16 10:49:00+00 \N t \N | |
| 133213 20 accident Accident on the M25 Accident on the M25 (TYPE 18) 2013-10-05 09:57:00 2013-10-02 14:51:00+01 \N t \N | |
| 133313 320 fine Bad parking place Bad parking place (REF 5378706) 2011-06-06 08:54:00 2011-06-02 14:38:00+01 \N t \N | |
| 133413 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2014-10-29 17:08:00 2014-10-25 09:06:00+01 \N t \N | |
| 133513 20 accident Accident on the M25 Accident on the M25 (TYPE 13) 2014-01-05 12:53:00 2014-01-01 18:05:00+00 \N t \N | |
| 133613 320 fine Bad parking place Bad parking place (REF 1531680) 2013-05-14 16:58:00 2013-05-11 08:56:00+01 \N t \N | |
| 133713 320 fine Speed camera Caught on speed camera at 72mph instead of 50mph 2012-01-30 18:58:00 2012-01-30 09:53:00+00 \N t \N | |
| 133813 20 accident Accident on the M22 Accident on the M22 (TYPE 13) 2014-04-02 17:37:00 2014-03-28 19:19:00+00 \N t \N | |
| 133913 320 fine Bad parking place Bad parking place (REF 3667834) 2012-06-30 15:13:00 2012-06-29 13:14:00+01 \N t \N | |
| 134013 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2014-02-09 12:17:00 2014-02-05 09:01:00+00 \N t \N | |
| 134113 20 accident Accident on the M25 Accident on the M25 (TYPE 19) 2013-10-13 19:53:00 2013-10-09 14:55:00+01 \N t \N | |
| 134213 320 fine Bad parking place Bad parking place (REF 3002626) 2013-08-14 16:11:00 2013-08-12 16:58:00+01 \N t \N | |
| 134313 320 fine Speed camera Caught on speed camera at 58mph instead of 50mph 2011-12-04 18:12:00 2011-11-29 17:25:00+00 \N t \N | |
| 134413 20 accident Accident on the M15 Accident on the M15 (TYPE 12) 2012-07-02 14:11:00 2012-06-28 16:24:00+01 \N t \N | |
| 134513 320 fine Bad parking place Bad parking place (REF 4315918) 2012-03-02 13:56:00 2012-03-02 15:43:00+00 \N t \N | |
| 134613 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2014-02-07 15:35:00 2014-02-07 15:48:00+00 \N t \N | |
| 134713 20 accident Accident on the M22 Accident on the M22 (TYPE 19) 2012-03-31 16:44:00 2012-03-26 14:07:00+01 \N t \N | |
| 134813 320 fine Bad parking place Bad parking place (REF 7956829) 2014-03-30 14:48:00 2014-03-30 16:04:00+01 \N t \N | |
| 134913 320 fine Speed camera Caught on speed camera at 61mph instead of 50mph 2014-01-23 15:21:00 2014-01-23 17:48:00+00 \N t \N | |
| 135013 20 accident Accident on the M15 Accident on the M15 (TYPE 15) 2012-03-08 19:04:00 2012-03-05 10:39:00+00 \N t \N | |
| 135113 320 fine Bad parking place Bad parking place (REF 2981607) 2011-09-13 11:39:00 2011-09-09 18:14:00+01 \N t \N | |
| 135213 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2012-06-23 08:06:00 2012-06-21 15:01:00+01 \N t \N | |
| 135313 20 accident Accident on the M10 Accident on the M10 (TYPE 15) 2012-03-11 15:47:00 2012-03-06 09:30:00+00 \N t \N | |
| 135413 320 fine Bad parking place Bad parking place (REF 9979631) 2014-03-20 16:14:00 2014-03-20 12:37:00+00 \N t \N | |
| 135513 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2014-07-30 08:04:00 2014-07-25 17:28:00+01 \N t \N | |
| 135613 20 accident Accident on the M18 Accident on the M18 (TYPE 14) 2014-12-01 14:01:00 2014-12-01 15:18:00+00 \N t \N | |
| 135713 320 fine Bad parking place Bad parking place (REF 5678389) 2013-06-03 19:12:00 2013-05-30 12:23:00+01 \N t \N | |
| 135813 320 fine Speed camera Caught on speed camera at 71mph instead of 50mph 2013-11-06 10:49:00 2013-11-03 11:12:00+00 \N t \N | |
| 135913 20 accident Accident on the M21 Accident on the M21 (TYPE 10) 2013-04-09 12:48:00 2013-04-05 17:57:00+01 \N t \N | |
| 136013 320 fine Bad parking place Bad parking place (REF 2103309) 2013-06-25 08:51:00 2013-06-25 15:27:00+01 \N t \N | |
| 136113 320 fine Speed camera Caught on speed camera at 57mph instead of 50mph 2014-03-01 16:37:00 2014-02-27 16:12:00+00 \N t \N | |
| 136213 20 accident Accident on the M11 Accident on the M11 (TYPE 16) 2014-02-10 13:28:00 2014-02-08 11:14:00+00 \N t \N | |
| 136313 320 fine Bad parking place Bad parking place (REF 9251378) 2013-07-10 12:00:00 2013-07-07 12:55:00+01 \N t \N | |
| 136413 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2012-11-18 11:01:00 2012-11-17 11:06:00+00 \N t \N | |
| 136513 20 accident Accident on the M14 Accident on the M14 (TYPE 13) 2012-09-06 12:13:00 2012-09-06 16:30:00+01 \N t \N | |
| 136613 320 fine Bad parking place Bad parking place (REF 3563047) 2013-08-12 09:37:00 2013-08-11 17:38:00+01 \N t \N | |
| 136713 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2014-02-22 18:07:00 2014-02-17 16:21:00+00 \N t \N | |
| 136813 20 accident Accident on the M13 Accident on the M13 (TYPE 11) 2012-04-28 16:30:00 2012-04-27 16:53:00+01 \N t \N | |
| 136913 320 fine Bad parking place Bad parking place (REF 6722288) 2013-07-03 19:27:00 2013-07-02 18:01:00+01 \N t \N | |
| 137013 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2012-06-20 17:57:00 2012-06-20 14:38:00+01 \N t \N | |
| 137113 20 accident Accident on the M14 Accident on the M14 (TYPE 17) 2014-11-25 14:16:00 2014-11-20 14:10:00+00 \N t \N | |
| 137213 320 fine Bad parking place Bad parking place (REF 6449601) 2014-03-19 19:30:00 2014-03-19 19:53:00+00 \N t \N | |
| 137313 320 fine Speed camera Caught on speed camera at 58mph instead of 50mph 2012-10-22 13:13:00 2012-10-19 14:12:00+01 \N t \N | |
| 137413 20 accident Accident on the M23 Accident on the M23 (TYPE 19) 2014-09-21 12:54:00 2014-09-16 09:22:00+01 \N t \N | |
| 137513 320 fine Bad parking place Bad parking place (REF 8342228) 2013-04-22 08:21:00 2013-04-18 10:42:00+01 \N t \N | |
| 137613 320 fine Speed camera Caught on speed camera at 65mph instead of 50mph 2014-05-26 17:45:00 2014-05-23 17:51:00+01 \N t \N | |
| 137713 20 accident Accident on the M14 Accident on the M14 (TYPE 15) 2013-04-17 19:12:00 2013-04-12 19:05:00+01 \N t \N | |
| 137813 320 fine Bad parking place Bad parking place (REF 7666525) 2012-12-06 10:20:00 2012-12-02 09:15:00+00 \N t \N | |
| 137913 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2013-04-25 10:30:00 2013-04-21 08:26:00+01 \N t \N | |
| 138013 20 accident Accident on the M16 Accident on the M16 (TYPE 18) 2014-10-15 12:34:00 2014-10-15 12:45:00+01 \N t \N | |
| 138113 320 fine Bad parking place Bad parking place (REF 3992903) 2011-05-16 16:28:00 2011-05-14 19:08:00+01 \N t \N | |
| 138213 320 fine Speed camera Caught on speed camera at 65mph instead of 50mph 2014-02-09 10:36:00 2014-02-07 12:41:00+00 \N t \N | |
| 138313 20 accident Accident on the M17 Accident on the M17 (TYPE 10) 2011-07-19 15:56:00 2011-07-17 14:04:00+01 \N t \N | |
| 138413 320 fine Bad parking place Bad parking place (REF 9317360) 2014-03-20 09:31:00 2014-03-19 15:23:00+00 \N t \N | |
| 138513 320 fine Speed camera Caught on speed camera at 65mph instead of 50mph 2013-02-26 12:53:00 2013-02-24 09:06:00+00 \N t \N | |
| 138613 20 accident Accident on the M19 Accident on the M19 (TYPE 19) 2011-12-23 13:55:00 2011-12-21 08:36:00+00 \N t \N | |
| 138713 320 fine Bad parking place Bad parking place (REF 4159328) 2012-04-10 10:28:00 2012-04-09 11:57:00+01 \N t \N | |
| 138813 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2012-10-20 13:39:00 2012-10-19 14:50:00+01 \N t \N | |
| 138913 20 accident Accident on the M15 Accident on the M15 (TYPE 17) 2012-05-25 16:46:00 2012-05-20 10:36:00+01 \N t \N | |
| 139013 320 fine Bad parking place Bad parking place (REF 4478899) 2014-06-24 14:42:00 2014-06-24 10:20:00+01 \N t \N | |
| 139113 320 fine Speed camera Caught on speed camera at 57mph instead of 50mph 2014-05-05 09:20:00 2014-05-04 11:03:00+01 \N t \N | |
| 139213 20 accident Accident on the M24 Accident on the M24 (TYPE 18) 2013-08-29 13:06:00 2013-08-27 10:14:00+01 \N t \N | |
| 139313 320 fine Bad parking place Bad parking place (REF 1656266) 2014-04-18 14:42:00 2014-04-16 09:18:00+01 \N t \N | |
| 139413 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2012-05-11 13:46:00 2012-05-07 14:10:00+01 \N t \N | |
| 139513 20 accident Accident on the M21 Accident on the M21 (TYPE 14) 2013-03-21 10:49:00 2013-03-18 16:53:00+00 \N t \N | |
| 139613 320 fine Bad parking place Bad parking place (REF 4918614) 2012-02-29 12:56:00 2012-02-26 19:41:00+00 \N t \N | |
| 139713 320 fine Speed camera Caught on speed camera at 61mph instead of 50mph 2013-08-28 11:33:00 2013-08-28 08:19:00+01 \N t \N | |
| 139813 20 accident Accident on the M12 Accident on the M12 (TYPE 11) 2015-07-18 14:53:00 2015-07-15 12:32:00+01 \N t \N | |
| 139913 320 fine Bad parking place Bad parking place (REF 6624845) 2014-03-17 14:41:00 2014-03-13 12:58:00+00 \N t \N | |
| 140013 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2014-04-16 13:53:00 2014-04-14 19:31:00+01 \N t \N | |
| 140113 20 accident Accident on the M15 Accident on the M15 (TYPE 10) 2014-02-16 14:54:00 2014-02-13 08:57:00+00 \N t \N | |
| 140213 320 fine Bad parking place Bad parking place (REF 4797388) 2015-04-02 17:44:00 2015-03-29 09:21:00+01 \N t \N | |
| 140313 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2013-11-22 12:16:00 2013-11-19 19:38:00+00 \N t \N | |
| 140413 20 accident Accident on the M16 Accident on the M16 (TYPE 12) 2014-11-09 12:03:00 2014-11-08 10:05:00+00 \N t \N | |
| 140513 320 fine Bad parking place Bad parking place (REF 4465544) 2015-05-10 08:59:00 2015-05-06 11:25:00+01 \N t \N | |
| 140613 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2014-05-07 17:10:00 2014-05-06 13:35:00+01 \N t \N | |
| 140713 20 accident Accident on the M10 Accident on the M10 (TYPE 17) 2014-11-15 11:15:00 2014-11-11 13:37:00+00 \N t \N | |
| 140813 320 fine Bad parking place Bad parking place (REF 9227444) 2013-12-02 11:53:00 2013-11-29 18:37:00+00 \N t \N | |
| 140913 320 fine Speed camera Caught on speed camera at 56mph instead of 50mph 2013-08-13 19:43:00 2013-08-13 19:20:00+01 \N t \N | |
| 141013 20 accident Accident on the M14 Accident on the M14 (TYPE 10) 2015-09-29 15:10:00 2015-09-26 17:40:00+01 \N t \N | |
| 141113 320 fine Bad parking place Bad parking place (REF 7848976) 2013-09-10 14:01:00 2013-09-06 10:43:00+01 \N t \N | |
| 141213 320 fine Speed camera Caught on speed camera at 63mph instead of 50mph 2015-09-13 09:51:00 2015-09-11 12:16:00+01 \N t \N | |
| 141313 20 accident Accident on the M24 Accident on the M24 (TYPE 15) 2015-06-14 14:41:00 2015-06-09 08:45:00+01 \N t \N | |
| 141413 320 fine Bad parking place Bad parking place (REF 8589844) 2014-02-09 17:05:00 2014-02-09 17:28:00+00 \N t \N | |
| 141513 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2015-08-29 12:10:00 2015-08-26 16:45:00+01 \N t \N | |
| 141613 20 accident Accident on the M21 Accident on the M21 (TYPE 10) 2015-04-22 19:57:00 2015-04-20 19:49:00+01 \N t \N | |
| 141713 320 fine Bad parking place Bad parking place (REF 8235616) 2015-09-08 08:48:00 2015-09-06 16:07:00+01 \N t \N | |
| 141813 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2015-11-20 16:26:00 2015-11-15 10:38:00+00 \N t \N | |
| 141913 20 accident Accident on the M22 Accident on the M22 (TYPE 10) 2014-04-26 08:06:00 2014-04-22 17:23:00+01 \N t \N | |
| 142013 320 fine Bad parking place Bad parking place (REF 6175685) 2015-08-01 14:07:00 2015-07-30 16:01:00+01 \N t \N | |
| 142113 320 fine Speed camera Caught on speed camera at 56mph instead of 50mph 2015-05-07 09:17:00 2015-05-02 17:10:00+01 \N t \N | |
| 142213 20 accident Accident on the M20 Accident on the M20 (TYPE 11) 2015-04-12 11:25:00 2015-04-07 15:17:00+01 \N t \N | |
| 142313 320 fine Bad parking place Bad parking place (REF 5206061) 2015-07-19 14:33:00 2015-07-15 17:26:00+01 \N t \N | |
| 142413 320 fine Speed camera Caught on speed camera at 57mph instead of 50mph 2015-06-05 11:29:00 2015-06-03 19:43:00+01 \N t \N | |
| 142513 20 accident Accident on the M21 Accident on the M21 (TYPE 11) 2015-04-24 11:57:00 2015-04-20 17:43:00+01 \N t \N | |
| 142613 320 fine Bad parking place Bad parking place (REF 9594342) 2014-08-17 16:51:00 2014-08-15 12:00:00+01 \N t \N | |
| 142713 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2015-01-31 19:48:00 2015-01-26 13:47:00+00 \N t \N | |
| 142813 20 accident Accident on the M22 Accident on the M22 (TYPE 14) 2014-08-22 16:34:00 2014-08-17 11:30:00+01 \N t \N | |
| 142913 320 fine Bad parking place Bad parking place (REF 1983317) 2014-03-27 13:28:00 2014-03-22 14:05:00+00 \N t \N | |
| 143013 320 fine Speed camera Caught on speed camera at 58mph instead of 50mph 2015-09-07 15:51:00 2015-09-03 19:17:00+01 \N t \N | |
| 143113 20 accident Accident on the M16 Accident on the M16 (TYPE 13) 2016-01-10 15:38:00 2016-01-08 18:58:00+00 \N t \N | |
| 143213 320 fine Bad parking place Bad parking place (REF 2707490) 2015-08-04 17:42:00 2015-08-01 09:34:00+01 \N t \N | |
| 143313 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2014-06-30 13:30:00 2014-06-27 09:17:00+01 \N t \N | |
| 143413 20 accident Accident on the M21 Accident on the M21 (TYPE 19) 2014-07-27 09:31:00 2014-07-22 10:51:00+01 \N t \N | |
| 143513 320 fine Bad parking place Bad parking place (REF 4769486) 2015-01-27 15:39:00 2015-01-23 16:57:00+00 \N t \N | |
| 143613 320 fine Speed camera Caught on speed camera at 75mph instead of 50mph 2015-09-26 15:42:00 2015-09-25 18:29:00+01 \N t \N | |
| 143713 20 accident Accident on the M11 Accident on the M11 (TYPE 12) 2014-09-29 19:55:00 2014-09-29 09:28:00+01 \N t \N | |
| 143813 320 fine Bad parking place Bad parking place (REF 2485223) 2014-05-15 09:29:00 2014-05-12 17:56:00+01 \N t \N | |
| 143913 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2016-01-19 13:26:00 2016-01-14 18:43:00+00 \N t \N | |
| 144013 20 accident Accident on the M13 Accident on the M13 (TYPE 13) 2015-09-20 19:47:00 2015-09-20 15:41:00+01 \N t \N | |
| 144113 320 fine Bad parking place Bad parking place (REF 2700421) 2014-11-10 12:39:00 2014-11-10 13:04:00+00 \N t \N | |
| 144213 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2014-01-08 15:23:00 2014-01-05 16:54:00+00 \N t \N | |
| 144313 20 accident Accident on the M11 Accident on the M11 (TYPE 17) 2014-03-30 13:21:00 2014-03-27 18:58:00+00 \N t \N | |
| 144413 320 fine Bad parking place Bad parking place (REF 7285576) 2014-06-18 19:57:00 2014-06-18 13:24:00+01 \N t \N | |
| 144513 320 fine Speed camera Caught on speed camera at 64mph instead of 50mph 2014-06-23 17:36:00 2014-06-20 08:24:00+01 \N t \N | |
| 144613 20 accident Accident on the M12 Accident on the M12 (TYPE 11) 2014-05-14 17:28:00 2014-05-14 16:55:00+01 \N t \N | |
| 144713 320 fine Bad parking place Bad parking place (REF 7331432) 2014-04-21 10:37:00 2014-04-18 12:49:00+01 \N t \N | |
| 144813 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2014-05-24 10:40:00 2014-05-24 14:28:00+01 \N t \N | |
| 144913 20 accident Accident on the M21 Accident on the M21 (TYPE 18) 2015-08-31 09:19:00 2015-08-26 09:44:00+01 \N t \N | |
| 145013 320 fine Bad parking place Bad parking place (REF 7405265) 2014-06-11 10:45:00 2014-06-10 11:48:00+01 \N t \N | |
| 145113 320 fine Speed camera Caught on speed camera at 72mph instead of 50mph 2015-06-29 19:51:00 2015-06-27 16:11:00+01 \N t \N | |
| 145213 20 accident Accident on the M22 Accident on the M22 (TYPE 18) 2015-12-29 13:56:00 2015-12-25 11:50:00+00 \N t \N | |
| 145313 320 fine Bad parking place Bad parking place (REF 8499276) 2015-01-29 17:35:00 2015-01-28 15:05:00+00 \N t \N | |
| 145413 320 fine Speed camera Caught on speed camera at 61mph instead of 50mph 2014-10-01 13:16:00 2014-10-01 17:34:00+01 \N t \N | |
| 145513 20 accident Accident on the M14 Accident on the M14 (TYPE 19) 2014-08-25 08:24:00 2014-08-25 17:26:00+01 \N t \N | |
| 145613 320 fine Bad parking place Bad parking place (REF 9864842) 2015-01-17 08:25:00 2015-01-17 11:16:00+00 \N t \N | |
| 145713 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2013-09-16 08:42:00 2013-09-13 14:57:00+01 \N t \N | |
| 145813 20 accident Accident on the M25 Accident on the M25 (TYPE 15) 2015-03-21 17:31:00 2015-03-21 10:22:00+00 \N t \N | |
| 145913 320 fine Bad parking place Bad parking place (REF 5065011) 2014-10-05 08:46:00 2014-09-30 19:36:00+01 \N t \N | |
| 146013 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2015-07-09 13:53:00 2015-07-06 17:00:00+01 \N t \N | |
| 146113 20 accident Accident on the M25 Accident on the M25 (TYPE 17) 2016-01-11 12:17:00 2016-01-07 08:30:00+00 \N t \N | |
| 146213 320 fine Bad parking place Bad parking place (REF 8599850) 2015-06-20 12:36:00 2015-06-19 19:24:00+01 \N t \N | |
| 146313 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2015-01-22 19:32:00 2015-01-22 11:26:00+00 \N t \N | |
| 146413 20 accident Accident on the M18 Accident on the M18 (TYPE 12) 2015-02-02 11:04:00 2015-01-31 18:27:00+00 \N t \N | |
| 146513 320 fine Bad parking place Bad parking place (REF 8030071) 2015-07-13 18:29:00 2015-07-13 10:11:00+01 \N t \N | |
| 146613 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2014-11-28 17:51:00 2014-11-23 11:53:00+00 \N t \N | |
| 146713 20 accident Accident on the M23 Accident on the M23 (TYPE 12) 2014-09-19 12:18:00 2014-09-16 12:32:00+01 \N t \N | |
| 146813 320 fine Bad parking place Bad parking place (REF 1697903) 2014-06-03 17:08:00 2014-06-02 16:03:00+01 \N t \N | |
| 146913 320 fine Speed camera Caught on speed camera at 57mph instead of 50mph 2015-04-09 18:12:00 2015-04-06 15:30:00+01 \N t \N | |
| 147013 20 accident Accident on the M13 Accident on the M13 (TYPE 11) 2015-10-03 13:56:00 2015-09-30 15:26:00+01 \N t \N | |
| 147113 320 fine Bad parking place Bad parking place (REF 5047650) 2013-12-14 15:29:00 2013-12-12 19:52:00+00 \N t \N | |
| 147213 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2015-02-27 12:41:00 2015-02-23 16:27:00+00 \N t \N | |
| 147313 20 accident Accident on the M24 Accident on the M24 (TYPE 17) 2015-02-06 10:11:00 2015-02-06 17:54:00+00 \N t \N | |
| 147413 320 fine Bad parking place Bad parking place (REF 3183324) 2014-03-21 10:15:00 2014-03-16 18:45:00+00 \N t \N | |
| 147513 320 fine Speed camera Caught on speed camera at 75mph instead of 50mph 2015-11-10 19:42:00 2015-11-06 14:38:00+00 \N t \N | |
| 147613 20 accident Accident on the M14 Accident on the M14 (TYPE 12) 2013-12-05 09:19:00 2013-12-01 17:32:00+00 \N t \N | |
| 147713 320 fine Bad parking place Bad parking place (REF 4311177) 2015-08-03 08:31:00 2015-08-03 09:41:00+01 \N t \N | |
| 147813 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2015-09-26 19:55:00 2015-09-24 19:28:00+01 \N t \N | |
| 147913 20 accident Accident on the M23 Accident on the M23 (TYPE 14) 2015-07-17 08:13:00 2015-07-13 09:48:00+01 \N t \N | |
| 148013 320 fine Bad parking place Bad parking place (REF 2590536) 2015-03-13 08:56:00 2015-03-08 19:19:00+00 \N t \N | |
| 148113 320 fine Speed camera Caught on speed camera at 63mph instead of 50mph 2015-05-10 16:49:00 2015-05-07 08:10:00+01 \N t \N | |
| 148213 20 accident Accident on the M14 Accident on the M14 (TYPE 13) 2014-06-20 17:04:00 2014-06-20 10:24:00+01 \N t \N | |
| 148313 320 fine Bad parking place Bad parking place (REF 1389189) 2013-10-03 09:35:00 2013-09-29 16:55:00+01 \N t \N | |
| 148413 320 fine Speed camera Caught on speed camera at 59mph instead of 50mph 2016-03-11 10:01:00 2016-03-07 13:21:00+00 \N t \N | |
| 148513 20 accident Accident on the M12 Accident on the M12 (TYPE 16) 2015-02-02 17:38:00 2015-02-01 13:04:00+00 \N t \N | |
| 148613 320 fine Bad parking place Bad parking place (REF 1252293) 2015-02-23 19:25:00 2015-02-18 17:22:00+00 \N t \N | |
| 148713 320 fine Speed camera Caught on speed camera at 59mph instead of 50mph 2016-03-31 09:19:00 2016-03-27 19:31:00+01 \N t \N | |
| 148813 20 accident Accident on the M18 Accident on the M18 (TYPE 19) 2013-12-21 09:18:00 2013-12-17 18:47:00+00 \N t \N | |
| 148913 320 fine Bad parking place Bad parking place (REF 5987351) 2015-07-10 14:19:00 2015-07-05 13:40:00+01 \N t \N | |
| 149013 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2015-08-06 14:28:00 2015-08-02 14:56:00+01 \N t \N | |
| 149113 20 accident Accident on the M16 Accident on the M16 (TYPE 12) 2015-06-15 08:44:00 2015-06-14 11:18:00+01 \N t \N | |
| 149213 320 fine Bad parking place Bad parking place (REF 3330320) 2015-02-13 17:01:00 2015-02-09 13:26:00+00 \N t \N | |
| 149313 320 fine Speed camera Caught on speed camera at 65mph instead of 50mph 2013-05-12 11:43:00 2013-05-12 19:25:00+01 \N t \N | |
| 149413 20 accident Accident on the M17 Accident on the M17 (TYPE 17) 2015-05-24 19:19:00 2015-05-22 18:07:00+01 \N t \N | |
| 149513 320 fine Bad parking place Bad parking place (REF 5856365) 2014-11-21 19:57:00 2014-11-20 10:50:00+00 \N t \N | |
| 149613 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2014-08-28 11:40:00 2014-08-28 13:15:00+01 \N t \N | |
| 149713 20 accident Accident on the M24 Accident on the M24 (TYPE 17) 2015-02-20 17:03:00 2015-02-18 08:38:00+00 \N t \N | |
| 149813 320 fine Bad parking place Bad parking place (REF 8031031) 2015-03-24 17:55:00 2015-03-19 15:44:00+00 \N t \N | |
| 149913 320 fine Speed camera Caught on speed camera at 61mph instead of 50mph 2015-05-18 15:58:00 2015-05-16 14:06:00+01 \N t \N | |
| 150013 20 accident Accident on the M17 Accident on the M17 (TYPE 18) 2014-05-09 19:26:00 2014-05-04 09:00:00+01 \N t \N | |
| 150113 320 fine Bad parking place Bad parking place (REF 9081763) 2015-07-11 15:54:00 2015-07-09 10:53:00+01 \N t \N | |
| 150213 320 fine Speed camera Caught on speed camera at 71mph instead of 50mph 2013-10-26 18:43:00 2013-10-21 12:09:00+01 \N t \N | |
| 150313 20 accident Accident on the M21 Accident on the M21 (TYPE 11) 2013-11-13 10:58:00 2013-11-09 13:13:00+00 \N t \N | |
| 150413 320 fine Bad parking place Bad parking place (REF 6857538) 2016-02-18 08:45:00 2016-02-16 19:51:00+00 \N t \N | |
| 150513 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2013-09-18 11:37:00 2013-09-13 18:29:00+01 \N t \N | |
| 150613 20 accident Accident on the M22 Accident on the M22 (TYPE 11) 2015-08-19 10:19:00 2015-08-16 17:12:00+01 \N t \N | |
| 150713 320 fine Bad parking place Bad parking place (REF 8837088) 2014-08-26 12:01:00 2014-08-25 17:17:00+01 \N t \N | |
| 150813 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2014-10-15 12:37:00 2014-10-10 15:47:00+01 \N t \N | |
| 150913 20 accident Accident on the M12 Accident on the M12 (TYPE 17) 2013-09-12 17:18:00 2013-09-07 16:33:00+01 \N t \N | |
| 151013 320 fine Bad parking place Bad parking place (REF 4367141) 2015-07-01 19:42:00 2015-06-26 18:57:00+01 \N t \N | |
| 151113 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2014-02-08 11:13:00 2014-02-04 12:21:00+00 \N t \N | |
| 151213 20 accident Accident on the M18 Accident on the M18 (TYPE 11) 2013-11-11 12:03:00 2013-11-09 10:25:00+00 \N t \N | |
| 151313 320 fine Bad parking place Bad parking place (REF 7401161) 2015-03-02 11:08:00 2015-03-02 08:52:00+00 \N t \N | |
| 151413 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2013-05-31 19:55:00 2013-05-28 09:34:00+01 \N t \N | |
| 151513 20 accident Accident on the M17 Accident on the M17 (TYPE 13) 2016-03-04 09:55:00 2016-03-03 19:14:00+00 \N t \N | |
| 151613 320 fine Bad parking place Bad parking place (REF 4256320) 2013-07-16 12:44:00 2013-07-15 15:11:00+01 \N t \N | |
| 151713 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2015-07-20 17:14:00 2015-07-18 09:59:00+01 \N t \N | |
| 151813 20 accident Accident on the M24 Accident on the M24 (TYPE 15) 2015-10-09 13:04:00 2015-10-09 12:33:00+01 \N t \N | |
| 151913 320 fine Bad parking place Bad parking place (REF 3415849) 2013-12-30 10:30:00 2013-12-30 10:17:00+00 \N t \N | |
| 152013 320 fine Speed camera Caught on speed camera at 57mph instead of 50mph 2013-05-05 18:31:00 2013-05-04 13:06:00+01 \N t \N | |
| 152113 20 accident Accident on the M15 Accident on the M15 (TYPE 12) 2014-05-13 09:04:00 2014-05-09 17:13:00+01 \N t \N | |
| 152213 320 fine Bad parking place Bad parking place (REF 5751956) 2015-08-05 18:30:00 2015-08-03 11:34:00+01 \N t \N | |
| 152313 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2013-10-15 09:12:00 2013-10-15 14:57:00+01 \N t \N | |
| 152413 20 accident Accident on the M23 Accident on the M23 (TYPE 17) 2016-03-30 09:51:00 2016-03-26 12:13:00+00 \N t \N | |
| 152513 320 fine Bad parking place Bad parking place (REF 3972130) 2015-01-03 14:05:00 2015-12-29 14:16:00+00 \N t \N | |
| 152613 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2015-07-14 14:47:00 2015-07-13 10:55:00+01 \N t \N | |
| 152713 20 accident Accident on the M20 Accident on the M20 (TYPE 19) 2015-10-12 11:57:00 2015-10-07 15:24:00+01 \N t \N | |
| 152813 320 fine Bad parking place Bad parking place (REF 1734747) 2015-03-02 18:35:00 2015-03-01 12:37:00+00 \N t \N | |
| 152913 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2015-01-18 09:48:00 2015-01-18 11:29:00+00 \N t \N | |
| 153013 20 accident Accident on the M17 Accident on the M17 (TYPE 13) 2016-03-13 14:13:00 2016-03-11 10:16:00+00 \N t \N | |
| 153113 320 fine Bad parking place Bad parking place (REF 9302809) 2013-06-28 16:53:00 2013-06-27 16:48:00+01 \N t \N | |
| 153213 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2015-11-07 19:34:00 2015-11-04 13:52:00+00 \N t \N | |
| 153313 20 accident Accident on the M11 Accident on the M11 (TYPE 10) 2016-03-09 09:25:00 2016-03-08 17:48:00+00 \N t \N | |
| 153413 320 fine Bad parking place Bad parking place (REF 1598958) 2013-12-12 15:22:00 2013-12-07 13:59:00+00 \N t \N | |
| 153513 320 fine Speed camera Caught on speed camera at 59mph instead of 50mph 2015-09-05 19:28:00 2015-09-05 09:51:00+01 \N t \N | |
| 153613 20 accident Accident on the M21 Accident on the M21 (TYPE 11) 2015-05-18 18:05:00 2015-05-18 09:52:00+01 \N t \N | |
| 153713 320 fine Bad parking place Bad parking place (REF 2575439) 2016-02-25 14:45:00 2016-02-22 08:24:00+00 \N t \N | |
| 153813 320 fine Speed camera Caught on speed camera at 57mph instead of 50mph 2015-03-17 15:38:00 2015-03-16 13:34:00+00 \N t \N | |
| 153913 20 accident Accident on the M19 Accident on the M19 (TYPE 14) 2015-06-24 19:42:00 2015-06-24 12:48:00+01 \N t \N | |
| 154013 320 fine Bad parking place Bad parking place (REF 9563685) 2014-11-02 14:29:00 2014-10-31 17:53:00+00 \N t \N | |
| 154113 320 fine Speed camera Caught on speed camera at 64mph instead of 50mph 2015-05-16 17:04:00 2015-05-16 09:59:00+01 \N t \N | |
| 154213 20 accident Accident on the M23 Accident on the M23 (TYPE 10) 2015-12-29 11:06:00 2015-12-25 17:43:00+00 \N t \N | |
| 154313 320 fine Bad parking place Bad parking place (REF 2191182) 2015-08-15 08:07:00 2015-08-10 12:09:00+01 \N t \N | |
| 154413 320 fine Speed camera Caught on speed camera at 58mph instead of 50mph 2015-09-26 16:08:00 2015-09-25 12:41:00+01 \N t \N | |
| 154513 20 accident Accident on the M18 Accident on the M18 (TYPE 15) 2015-01-30 19:12:00 2015-01-28 15:33:00+00 \N t \N | |
| 154613 320 fine Bad parking place Bad parking place (REF 5623875) 2015-04-16 12:40:00 2015-04-16 19:23:00+01 \N t \N | |
| 154713 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2015-12-18 09:20:00 2015-12-15 12:25:00+00 \N t \N | |
| 154813 20 accident Accident on the M24 Accident on the M24 (TYPE 11) 2014-09-27 10:15:00 2014-09-23 11:09:00+01 \N t \N | |
| 154913 320 fine Bad parking place Bad parking place (REF 1948828) 2015-09-21 17:53:00 2015-09-21 10:41:00+01 \N t \N | |
| 155013 320 fine Speed camera Caught on speed camera at 71mph instead of 50mph 2015-11-01 15:42:00 2015-10-29 09:19:00+00 \N t \N | |
| 155113 20 accident Accident on the M23 Accident on the M23 (TYPE 12) 2014-10-23 12:31:00 2014-10-23 14:16:00+01 \N t \N | |
| 155213 320 fine Bad parking place Bad parking place (REF 4008830) 2015-05-07 17:54:00 2015-05-02 10:36:00+01 \N t \N | |
| 155313 320 fine Speed camera Caught on speed camera at 61mph instead of 50mph 2015-12-31 11:22:00 2015-12-31 16:38:00+00 \N t \N | |
| 155413 20 accident Accident on the M18 Accident on the M18 (TYPE 16) 2015-01-25 14:14:00 2015-01-24 10:03:00+00 \N t \N | |
| 155513 320 fine Bad parking place Bad parking place (REF 1514844) 2015-01-16 09:03:00 2015-01-13 13:00:00+00 \N t \N | |
| 155613 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2015-07-22 16:53:00 2015-07-22 19:33:00+01 \N t \N | |
| 155713 20 accident Accident on the M17 Accident on the M17 (TYPE 15) 2015-05-04 09:01:00 2015-05-02 08:45:00+01 \N t \N | |
| 155813 320 fine Bad parking place Bad parking place (REF 1385830) 2015-12-23 19:09:00 2015-12-20 11:24:00+00 \N t \N | |
| 155913 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2015-08-21 09:41:00 2015-08-19 19:37:00+01 \N t \N | |
| 156013 20 accident Accident on the M20 Accident on the M20 (TYPE 12) 2015-03-17 11:05:00 2015-03-14 09:34:00+00 \N t \N | |
| 156113 320 fine Bad parking place Bad parking place (REF 4208580) 2015-04-26 18:40:00 2015-04-21 10:04:00+01 \N t \N | |
| 156213 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2015-07-27 17:00:00 2015-07-23 19:33:00+01 \N t \N | |
| 156313 20 accident Accident on the M21 Accident on the M21 (TYPE 18) 2015-09-16 08:00:00 2015-09-15 14:13:00+01 \N t \N | |
| 156413 320 fine Bad parking place Bad parking place (REF 5030745) 2015-10-31 11:46:00 2015-10-30 16:44:00+00 \N t \N | |
| 156513 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2016-01-20 18:52:00 2016-01-16 18:52:00+00 \N t \N | |
| 156613 20 accident Accident on the M15 Accident on the M15 (TYPE 10) 2015-06-15 13:15:00 2015-06-14 08:27:00+01 \N t \N | |
| 156713 320 fine Bad parking place Bad parking place (REF 5924540) 2015-08-14 12:16:00 2015-08-12 09:15:00+01 \N t \N | |
| 156813 320 fine Speed camera Caught on speed camera at 72mph instead of 50mph 2015-06-02 10:40:00 2015-06-01 08:49:00+01 \N t \N | |
| 156913 20 accident Accident on the M24 Accident on the M24 (TYPE 11) 2015-11-24 15:44:00 2015-11-22 18:16:00+00 \N t \N | |
| 157013 320 fine Bad parking place Bad parking place (REF 1201141) 2015-09-03 19:45:00 2015-09-01 18:22:00+01 \N t \N | |
| 157113 320 fine Speed camera Caught on speed camera at 71mph instead of 50mph 2014-11-28 17:39:00 2014-11-25 11:49:00+00 \N t \N | |
| 157213 20 accident Accident on the M18 Accident on the M18 (TYPE 16) 2015-01-10 15:56:00 2015-01-07 19:16:00+00 \N t \N | |
| 157313 320 fine Bad parking place Bad parking place (REF 1228862) 2015-07-21 16:38:00 2015-07-20 14:11:00+01 \N t \N | |
| 157413 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2015-05-11 09:49:00 2015-05-09 16:30:00+01 \N t \N | |
| 157513 20 accident Accident on the M20 Accident on the M20 (TYPE 18) 2015-03-15 11:24:00 2015-03-11 17:47:00+00 \N t \N | |
| 157613 320 fine Bad parking place Bad parking place (REF 6285782) 2015-01-09 19:13:00 2015-01-06 08:00:00+00 \N t \N | |
| 157713 320 fine Speed camera Caught on speed camera at 63mph instead of 50mph 2015-02-18 08:40:00 2015-02-15 18:02:00+00 \N t \N | |
| 157813 20 accident Accident on the M10 Accident on the M10 (TYPE 13) 2015-11-28 10:05:00 2015-11-27 14:21:00+00 \N t \N | |
| 157913 320 fine Bad parking place Bad parking place (REF 7624195) 2015-01-16 16:28:00 2015-01-15 11:16:00+00 \N t \N | |
| 158013 320 fine Speed camera Caught on speed camera at 65mph instead of 50mph 2015-07-23 18:34:00 2015-07-20 09:10:00+01 \N t \N | |
| 158113 20 accident Accident on the M11 Accident on the M11 (TYPE 11) 2014-11-29 12:20:00 2014-11-24 09:09:00+00 \N t \N | |
| 158213 320 fine Bad parking place Bad parking place (REF 1231453) 2015-03-14 18:44:00 2015-03-13 15:18:00+00 \N t \N | |
| 158313 320 fine Speed camera Caught on speed camera at 72mph instead of 50mph 2015-05-17 15:00:00 2015-05-14 13:42:00+01 \N t \N | |
| 158413 20 accident Accident on the M11 Accident on the M11 (TYPE 14) 2015-06-07 12:17:00 2015-06-07 09:20:00+01 \N t \N | |
| 158513 320 fine Bad parking place Bad parking place (REF 7104543) 2015-05-22 16:20:00 2015-05-20 19:00:00+01 \N t \N | |
| 158613 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2015-12-10 08:33:00 2015-12-09 16:14:00+00 \N t \N | |
| 158713 20 accident Accident on the M18 Accident on the M18 (TYPE 11) 2015-10-31 08:40:00 2015-10-30 17:39:00+00 \N t \N | |
| 158813 320 fine Bad parking place Bad parking place (REF 3322052) 2015-05-15 13:41:00 2015-05-10 14:24:00+01 \N t \N | |
| 158913 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2015-11-30 11:35:00 2015-11-26 18:11:00+00 \N t \N | |
| 159013 20 accident Accident on the M25 Accident on the M25 (TYPE 18) 2014-12-18 14:38:00 2014-12-15 18:40:00+00 \N t \N | |
| 159113 320 fine Bad parking place Bad parking place (REF 5692789) 2016-03-02 19:26:00 2016-02-28 19:58:00+00 \N t \N | |
| 159213 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2015-05-04 18:03:00 2015-04-30 16:50:00+01 \N t \N | |
| 159313 20 accident Accident on the M18 Accident on the M18 (TYPE 14) 2016-01-24 09:04:00 2016-01-23 08:13:00+00 \N t \N | |
| 159413 320 fine Bad parking place Bad parking place (REF 4409631) 2016-03-16 09:48:00 2016-03-12 10:16:00+00 \N t \N | |
| 159513 320 fine Speed camera Caught on speed camera at 69mph instead of 50mph 2014-10-18 14:00:00 2014-10-13 14:18:00+01 \N t \N | |
| 159613 20 accident Accident on the M13 Accident on the M13 (TYPE 11) 2016-03-11 12:53:00 2016-03-06 13:39:00+00 \N t \N | |
| 159713 320 fine Bad parking place Bad parking place (REF 5219004) 2015-05-09 12:14:00 2015-05-09 13:05:00+01 \N t \N | |
| 159813 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2015-05-26 15:58:00 2015-05-25 19:53:00+01 \N t \N | |
| 159913 20 accident Accident on the M22 Accident on the M22 (TYPE 19) 2015-04-19 10:02:00 2015-04-18 17:05:00+01 \N t \N | |
| 160013 320 fine Bad parking place Bad parking place (REF 6957996) 2015-05-06 11:59:00 2015-05-04 10:45:00+01 \N t \N | |
| 160113 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2015-10-10 12:18:00 2015-10-07 09:57:00+01 \N t \N | |
| 160213 20 accident Accident on the M21 Accident on the M21 (TYPE 17) 2015-09-20 14:23:00 2015-09-16 08:55:00+01 \N t \N | |
| 160313 320 fine Bad parking place Bad parking place (REF 3993750) 2015-01-04 19:01:00 2015-01-04 15:31:00+00 \N t \N | |
| 160413 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2016-02-06 09:18:00 2016-02-02 11:27:00+00 \N t \N | |
| 160513 20 accident Accident on the M22 Accident on the M22 (TYPE 16) 2015-03-17 15:37:00 2015-03-16 16:13:00+00 \N t \N | |
| 160613 320 fine Bad parking place Bad parking place (REF 2616314) 2016-03-21 19:36:00 2016-03-16 09:42:00+00 \N t \N | |
| 160713 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2015-02-09 08:48:00 2015-02-08 10:47:00+00 \N t \N | |
| 160813 20 accident Accident on the M13 Accident on the M13 (TYPE 11) 2016-01-11 16:11:00 2016-01-07 14:13:00+00 \N t \N | |
| 160913 320 fine Bad parking place Bad parking place (REF 5970900) 2015-02-20 18:49:00 2015-02-19 08:45:00+00 \N t \N | |
| 161013 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2015-07-01 08:25:00 2015-06-28 13:32:00+01 \N t \N | |
| 161113 20 accident Accident on the M19 Accident on the M19 (TYPE 16) 2015-09-20 17:24:00 2015-09-19 08:56:00+01 \N t \N | |
| 161213 320 fine Bad parking place Bad parking place (REF 7473355) 2018-02-26 11:10:00 2018-02-25 10:31:00+00 \N t \N | |
| 161313 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2015-01-18 15:57:00 2015-01-13 08:09:00+00 \N t \N | |
| 161413 20 accident Accident on the M11 Accident on the M11 (TYPE 14) 2016-03-26 09:52:00 2016-03-21 13:49:00+00 \N t \N | |
| 161513 320 fine Bad parking place Bad parking place (REF 2875638) 2015-04-19 08:25:00 2015-04-18 11:39:00+01 \N t \N | |
| 161613 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2015-10-06 18:23:00 2015-10-05 15:21:00+01 \N t \N | |
| 161713 20 accident Accident on the M11 Accident on the M11 (TYPE 13) 2015-02-06 16:25:00 2015-02-06 15:35:00+00 \N t \N | |
| 161813 320 fine Bad parking place Bad parking place (REF 3927657) 2018-03-10 17:41:00 2018-03-07 11:13:00+00 \N t \N | |
| 161913 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2015-06-14 13:52:00 2015-06-13 09:36:00+01 \N t \N | |
| 162013 20 accident Accident on the M14 Accident on the M14 (TYPE 13) 2015-06-24 08:04:00 2015-06-20 16:51:00+01 \N t \N | |
| 162113 320 fine Bad parking place Bad parking place (REF 2364160) 2016-01-07 13:56:00 2016-01-07 18:48:00+00 \N t \N | |
| 162213 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2015-06-26 16:33:00 2015-06-22 14:02:00+01 \N t \N | |
| 162313 20 accident Accident on the M18 Accident on the M18 (TYPE 15) 2015-08-31 16:20:00 2015-08-29 15:06:00+01 \N t \N | |
| 162413 320 fine Bad parking place Bad parking place (REF 6376844) 2016-02-03 16:37:00 2016-02-01 11:38:00+00 \N t \N | |
| 162513 320 fine Speed camera Caught on speed camera at 63mph instead of 50mph 2014-12-23 09:45:00 2014-12-20 18:45:00+00 \N t \N | |
| 162613 20 accident Accident on the M12 Accident on the M12 (TYPE 12) 2015-06-25 08:59:00 2015-06-23 10:55:00+01 \N t \N | |
| 162713 320 fine Bad parking place Bad parking place (REF 7564669) 2015-11-16 09:23:00 2015-11-14 16:22:00+00 \N t \N | |
| 162813 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2015-04-23 09:47:00 2015-04-20 13:44:00+01 \N t \N | |
| 162913 20 accident Accident on the M10 Accident on the M10 (TYPE 15) 2015-08-03 12:19:00 2015-07-31 14:51:00+01 \N t \N | |
| 163013 320 fine Bad parking place Bad parking place (REF 7391963) 2015-05-13 16:20:00 2015-05-10 14:48:00+01 \N t \N | |
| 163113 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2015-05-26 16:32:00 2015-05-26 14:08:00+01 \N t \N | |
| 163213 20 accident Accident on the M12 Accident on the M12 (TYPE 18) 2014-12-03 16:27:00 2014-12-02 09:08:00+00 \N t \N | |
| 163313 320 fine Bad parking place Bad parking place (REF 5422411) 2015-10-30 19:30:00 2015-10-29 16:26:00+00 \N t \N | |
| 163413 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2015-04-05 09:25:00 2015-04-05 12:52:00+01 \N t \N | |
| 163513 20 accident Accident on the M10 Accident on the M10 (TYPE 10) 2015-08-23 12:09:00 2015-08-18 08:03:00+01 \N t \N | |
| 163613 320 fine Bad parking place Bad parking place (REF 2736086) 2015-05-02 14:52:00 2015-04-30 16:53:00+01 \N t \N | |
| 163713 320 fine Speed camera Caught on speed camera at 55mph instead of 50mph 2015-04-20 09:10:00 2015-04-15 18:16:00+01 \N t \N | |
| 163813 20 accident Accident on the M18 Accident on the M18 (TYPE 19) 2015-04-19 13:50:00 2015-04-18 19:28:00+01 \N t \N | |
| 163913 320 fine Bad parking place Bad parking place (REF 3845752) 2015-11-02 14:10:00 2015-11-01 12:12:00+00 \N t \N | |
| 164013 320 fine Speed camera Caught on speed camera at 67mph instead of 50mph 2015-09-04 13:40:00 2015-09-03 09:15:00+01 \N t \N | |
| 164113 20 accident Accident on the M10 Accident on the M10 (TYPE 15) 2015-04-23 19:32:00 2015-04-18 19:18:00+01 \N t \N | |
| 164213 320 fine Bad parking place Bad parking place (REF 9589126) 2014-05-15 16:04:00 2014-05-12 10:40:00+01 \N t \N | |
| 164313 320 fine Speed camera Caught on speed camera at 61mph instead of 50mph 2015-10-01 19:50:00 2015-09-29 16:37:00+01 \N t \N | |
| 164413 20 accident Accident on the M23 Accident on the M23 (TYPE 11) 2015-12-11 18:15:00 2015-12-07 12:13:00+00 \N t \N | |
| 164513 320 fine Bad parking place Bad parking place (REF 5086151) 2015-01-27 09:31:00 2015-01-25 13:58:00+00 \N t \N | |
| 164613 320 fine Speed camera Caught on speed camera at 65mph instead of 50mph 2015-04-04 15:53:00 2015-04-01 08:00:00+01 \N t \N | |
| 164713 20 accident Accident on the M10 Accident on the M10 (TYPE 14) 2016-01-01 08:19:00 2016-01-01 09:12:00+00 \N t \N | |
| 164813 320 fine Bad parking place Bad parking place (REF 8518337) 2015-03-11 12:03:00 2015-03-09 09:51:00+00 \N t \N | |
| 164913 320 fine Speed camera Caught on speed camera at 71mph instead of 50mph 2015-05-18 18:30:00 2015-05-18 15:30:00+01 \N t \N | |
| 165013 20 accident Accident on the M17 Accident on the M17 (TYPE 19) 2015-07-17 13:13:00 2015-07-16 16:42:00+01 \N t \N | |
| 165113 320 fine Bad parking place Bad parking place (REF 2382625) 2015-03-21 15:59:00 2015-03-20 14:26:00+00 \N t \N | |
| 165213 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2015-07-13 09:45:00 2015-07-12 15:25:00+01 \N t \N | |
| 165313 20 accident Accident on the M17 Accident on the M17 (TYPE 10) 2014-06-03 09:30:00 2014-06-03 16:32:00+01 \N t \N | |
| 165413 320 fine Bad parking place Bad parking place (REF 7554264) 2015-11-21 15:40:00 2015-11-17 18:06:00+00 \N t \N | |
| 165513 320 fine Speed camera Caught on speed camera at 66mph instead of 50mph 2015-12-28 16:04:00 2015-12-25 16:02:00+00 \N t \N | |
| 165613 20 accident Accident on the M22 Accident on the M22 (TYPE 14) 2014-11-26 12:36:00 2014-11-22 12:42:00+00 \N t \N | |
| 165713 320 fine Bad parking place Bad parking place (REF 1286220) 2014-08-25 15:01:00 2014-08-25 12:33:00+01 \N t \N | |
| 165813 320 fine Speed camera Caught on speed camera at 60mph instead of 50mph 2015-09-22 16:32:00 2015-09-22 12:01:00+01 \N t \N | |
| 165913 20 accident Accident on the M23 Accident on the M23 (TYPE 12) 2015-05-04 18:32:00 2015-05-03 10:47:00+01 \N t \N | |
| 166013 320 fine Bad parking place Bad parking place (REF 6169702) 2015-06-15 17:01:00 2015-06-12 11:39:00+01 \N t \N | |
| 166113 320 fine Speed camera Caught on speed camera at 75mph instead of 50mph 2015-09-24 08:24:00 2015-09-21 17:17:00+01 \N t \N | |
| 166213 20 accident Accident on the M16 Accident on the M16 (TYPE 18) 2015-10-05 18:08:00 2015-10-03 16:52:00+01 \N t \N | |
| 166313 320 fine Bad parking place Bad parking place (REF 4516962) 2015-03-28 16:15:00 2015-03-23 13:49:00+00 \N t \N | |
| 166413 320 fine Speed camera Caught on speed camera at 64mph instead of 50mph 2015-06-09 10:33:00 2015-06-04 16:08:00+01 \N t \N | |
| 166513 20 accident Accident on the M15 Accident on the M15 (TYPE 16) 2015-12-07 17:40:00 2015-12-05 11:27:00+00 \N t \N | |
| 166613 320 fine Bad parking place Bad parking place (REF 5334639) 2015-03-03 17:25:00 2015-02-27 18:53:00+00 \N t \N | |
| 166713 320 fine Speed camera Caught on speed camera at 68mph instead of 50mph 2015-10-24 15:52:00 2015-10-23 18:27:00+01 \N t \N | |
| 166813 20 accident Accident on the M18 Accident on the M18 (TYPE 17) 2015-03-16 10:49:00 2015-03-14 11:37:00+00 \N t \N | |
| 166913 320 fine Bad parking place Bad parking place (REF 4908518) 2015-08-10 12:47:00 2015-08-10 19:14:00+01 \N t \N | |
| 167013 320 fine Speed camera Caught on speed camera at 74mph instead of 50mph 2015-11-03 14:04:00 2015-10-31 16:44:00+00 \N t \N | |
| 167113 20 accident Accident on the M17 Accident on the M17 (TYPE 13) 2014-08-05 18:51:00 2014-08-02 11:07:00+01 \N t \N | |
| 167213 320 fine Bad parking place Bad parking place (REF 9751683) 2015-09-30 16:29:00 2015-09-25 13:37:00+01 \N t \N | |
| 167313 320 fine Speed camera Caught on speed camera at 73mph instead of 50mph 2014-10-22 18:21:00 2014-10-22 16:49:00+01 \N t \N | |
| 167413 20 accident Accident on the M16 Accident on the M16 (TYPE 15) 2016-01-20 08:45:00 2016-01-15 15:50:00+00 \N t \N | |
| 167513 320 fine Bad parking place Bad parking place (REF 2206699) 2015-06-07 18:50:00 2015-06-04 15:54:00+01 \N t \N | |
| 167613 320 fine Speed camera Caught on speed camera at 62mph instead of 50mph 2015-02-02 17:57:00 2015-01-31 14:22:00+00 \N t \N | |
| 167713 20 accident Accident on the M19 Accident on the M19 (TYPE 10) 2015-04-20 10:42:00 2015-04-17 10:11:00+01 \N t \N | |
| 167813 320 fine Bad parking place Bad parking place (REF 6044776) 2016-03-28 09:57:00 2016-03-25 10:41:00+00 \N t \N | |
| 167913 320 fine Speed camera Caught on speed camera at 58mph instead of 50mph 2015-09-07 19:17:00 2015-09-03 08:58:00+01 \N t \N | |
| \. | |
| -- | |
| -- Data for Name: events_mapping; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY events_mapping (event_id, entity_id) FROM stdin; | |
| 13 204 | |
| 13 304 | |
| 13 102 | |
| 113 504 | |
| 113 604 | |
| 113 202 | |
| 213 502 | |
| 313 602 | |
| 413 2202 | |
| 513 302 | |
| 613 402 | |
| 713 502 | |
| 813 602 | |
| 913 702 | |
| 1013 802 | |
| 1113 902 | |
| 1213 1002 | |
| 1313 1102 | |
| 1413 1202 | |
| 1513 1302 | |
| 1613 1402 | |
| 1713 1502 | |
| 1813 1602 | |
| 1913 1702 | |
| 2013 1802 | |
| 2113 1902 | |
| 2213 2002 | |
| 2313 2102 | |
| 2413 2202 | |
| 2513 2302 | |
| 2613 2402 | |
| 2713 2502 | |
| 2813 2602 | |
| 2913 2702 | |
| 3013 2802 | |
| 3113 2902 | |
| 3213 3002 | |
| 3313 3102 | |
| 3413 3202 | |
| 3513 3302 | |
| 3613 3402 | |
| 3713 3502 | |
| 3813 3602 | |
| 3913 3702 | |
| 4013 3802 | |
| 4113 3902 | |
| 4213 4002 | |
| 4313 4102 | |
| 4413 4202 | |
| 4513 4302 | |
| 4613 4402 | |
| 4713 4502 | |
| 4813 4602 | |
| 4913 4702 | |
| 5013 4802 | |
| 5113 4902 | |
| 5213 5002 | |
| 5313 5102 | |
| 5413 5202 | |
| 5513 5302 | |
| 5613 5402 | |
| 5713 5502 | |
| 5813 5602 | |
| 5913 5702 | |
| 6013 5802 | |
| 6113 5902 | |
| 6213 6002 | |
| 6313 6102 | |
| 6413 6202 | |
| 6513 6302 | |
| 6613 6402 | |
| 6713 6502 | |
| 6813 6602 | |
| 6913 6702 | |
| 7013 6802 | |
| 7113 6902 | |
| 7213 7002 | |
| 7313 7102 | |
| 7413 7202 | |
| 7513 7302 | |
| 7613 7402 | |
| 7713 7502 | |
| 7813 7602 | |
| 7913 7702 | |
| 8013 7802 | |
| 8113 7902 | |
| 8213 8002 | |
| 8313 8102 | |
| 8413 8202 | |
| 8513 8302 | |
| 8613 8402 | |
| 8713 8502 | |
| 8813 8602 | |
| 8913 8702 | |
| 9013 8802 | |
| 9113 8902 | |
| 9213 9002 | |
| 9313 9102 | |
| 9413 9202 | |
| 9513 9302 | |
| 9613 9402 | |
| 9713 9502 | |
| 9813 9602 | |
| 9913 9702 | |
| 10013 9802 | |
| 10113 9902 | |
| 10213 10002 | |
| 10313 10102 | |
| 10413 10202 | |
| 10513 10302 | |
| 10613 10402 | |
| 10713 10502 | |
| 10813 10602 | |
| 10913 10702 | |
| 11013 10802 | |
| 11113 10902 | |
| 11213 11002 | |
| 11313 11102 | |
| 11413 11202 | |
| 11513 11302 | |
| 11613 11402 | |
| 11713 11502 | |
| 11813 11602 | |
| 11913 11702 | |
| 12013 11802 | |
| 12113 11902 | |
| 12213 12002 | |
| 12313 12102 | |
| 12413 12202 | |
| 12513 12302 | |
| 12613 12402 | |
| 12713 12502 | |
| 12813 12602 | |
| 12913 12702 | |
| 13013 12802 | |
| 13113 12902 | |
| 13213 13002 | |
| 13313 13102 | |
| 13413 13202 | |
| 13513 13302 | |
| 13613 13402 | |
| 13713 13502 | |
| 13813 13602 | |
| 13913 13702 | |
| 14013 13802 | |
| 14113 202 | |
| 14213 502 | |
| 14313 602 | |
| 14413 202 | |
| 14513 302 | |
| 14613 402 | |
| 14713 502 | |
| 14813 602 | |
| 14913 702 | |
| 15013 802 | |
| 15113 902 | |
| 15213 1002 | |
| 15313 1102 | |
| 15413 1202 | |
| 15513 1302 | |
| 15613 1402 | |
| 15713 1502 | |
| 15813 1602 | |
| 15913 1702 | |
| 16013 1802 | |
| 16113 1902 | |
| 16213 2002 | |
| 16313 2102 | |
| 16413 2202 | |
| 16513 2302 | |
| 16613 2402 | |
| 16713 2502 | |
| 16813 2602 | |
| 16913 2702 | |
| 17013 2802 | |
| 17113 2902 | |
| 17213 3002 | |
| 17313 3102 | |
| 17413 3202 | |
| 17513 3302 | |
| 17613 3402 | |
| 17713 3502 | |
| 17813 3602 | |
| 17913 3702 | |
| 18013 3802 | |
| 18113 3902 | |
| 18213 4002 | |
| 18313 4102 | |
| 18413 4202 | |
| 18513 4302 | |
| 18613 4402 | |
| 18713 4502 | |
| 18813 4602 | |
| 18913 4702 | |
| 19013 4802 | |
| 19113 4902 | |
| 19213 5002 | |
| 19313 5102 | |
| 19413 5202 | |
| 19513 5302 | |
| 19613 5402 | |
| 19713 5502 | |
| 19813 5602 | |
| 19913 5702 | |
| 20013 5802 | |
| 20113 5902 | |
| 20213 6002 | |
| 20313 6102 | |
| 20413 6202 | |
| 20513 6302 | |
| 20613 6402 | |
| 20713 6502 | |
| 20813 6602 | |
| 20913 6702 | |
| 21013 6802 | |
| 21113 6902 | |
| 21213 7002 | |
| 21313 7102 | |
| 21413 7202 | |
| 21513 7302 | |
| 21613 7402 | |
| 21713 7502 | |
| 21813 7602 | |
| 21913 7702 | |
| 22013 7802 | |
| 22113 7902 | |
| 22213 8002 | |
| 22313 8102 | |
| 22413 8202 | |
| 22513 8302 | |
| 22613 8402 | |
| 22713 8502 | |
| 22813 8602 | |
| 22913 8702 | |
| 23013 8802 | |
| 23113 8902 | |
| 23213 9002 | |
| 23313 9102 | |
| 23413 9202 | |
| 23513 9302 | |
| 23613 9402 | |
| 23713 9502 | |
| 23813 9602 | |
| 23913 9702 | |
| 24013 9802 | |
| 24113 9902 | |
| 24213 10002 | |
| 24313 10102 | |
| 24413 10202 | |
| 24513 10302 | |
| 24613 10402 | |
| 24713 10502 | |
| 24813 10602 | |
| 24913 10702 | |
| 25013 10802 | |
| 25113 10902 | |
| 25213 11002 | |
| 25313 11102 | |
| 25413 11202 | |
| 25513 11302 | |
| 25613 11402 | |
| 25713 11502 | |
| 25813 11602 | |
| 25913 11702 | |
| 26013 11802 | |
| 26113 11902 | |
| 26213 12002 | |
| 26313 12102 | |
| 26413 12202 | |
| 26513 12302 | |
| 26613 12402 | |
| 26713 12502 | |
| 26813 12602 | |
| 26913 12702 | |
| 27013 12802 | |
| 27113 12902 | |
| 27213 13002 | |
| 27313 13102 | |
| 27413 13202 | |
| 27513 13302 | |
| 27613 13402 | |
| 27713 13502 | |
| 27813 13602 | |
| 27913 13702 | |
| 28013 13802 | |
| 28113 202 | |
| 28213 502 | |
| 28313 602 | |
| 28413 202 | |
| 28513 302 | |
| 28613 402 | |
| 28713 502 | |
| 28813 602 | |
| 28913 702 | |
| 29013 802 | |
| 29113 902 | |
| 29213 1002 | |
| 29313 1102 | |
| 29413 1202 | |
| 29513 1302 | |
| 29613 1402 | |
| 29713 1502 | |
| 29813 1602 | |
| 29913 1702 | |
| 30013 1802 | |
| 30113 1902 | |
| 30213 2002 | |
| 30313 2102 | |
| 30413 2202 | |
| 30513 2302 | |
| 30613 2402 | |
| 30713 2502 | |
| 30813 2602 | |
| 30913 2702 | |
| 31013 2802 | |
| 31113 2902 | |
| 31213 3002 | |
| 31313 3102 | |
| 31413 3202 | |
| 31513 3302 | |
| 31613 3402 | |
| 31713 3502 | |
| 31813 3602 | |
| 31913 3702 | |
| 32013 3802 | |
| 32113 3902 | |
| 32213 4002 | |
| 32313 4102 | |
| 32413 4202 | |
| 32513 4302 | |
| 32613 4402 | |
| 32713 4502 | |
| 32813 4602 | |
| 32913 4702 | |
| 33013 4802 | |
| 33113 4902 | |
| 33213 5002 | |
| 33313 5102 | |
| 33413 5202 | |
| 33513 5302 | |
| 33613 5402 | |
| 33713 5502 | |
| 33813 5602 | |
| 33913 5702 | |
| 34013 5802 | |
| 34113 5902 | |
| 34213 6002 | |
| 34313 6102 | |
| 34413 6202 | |
| 34513 6302 | |
| 34613 6402 | |
| 34713 6502 | |
| 34813 6602 | |
| 34913 6702 | |
| 35013 6802 | |
| 35113 6902 | |
| 35213 7002 | |
| 35313 7102 | |
| 35413 7202 | |
| 35513 7302 | |
| 35613 7402 | |
| 35713 7502 | |
| 35813 7602 | |
| 35913 7702 | |
| 36013 7802 | |
| 36113 7902 | |
| 36213 8002 | |
| 36313 8102 | |
| 36413 8202 | |
| 36513 8302 | |
| 36613 8402 | |
| 36713 8502 | |
| 36813 8602 | |
| 36913 8702 | |
| 37013 8802 | |
| 37113 8902 | |
| 37213 9002 | |
| 37313 9102 | |
| 37413 9202 | |
| 37513 9302 | |
| 37613 9402 | |
| 37713 9502 | |
| 37813 9602 | |
| 37913 9702 | |
| 38013 9802 | |
| 38113 9902 | |
| 38213 10002 | |
| 38313 10102 | |
| 38413 10202 | |
| 38513 10302 | |
| 38613 10402 | |
| 38713 10502 | |
| 38813 10602 | |
| 38913 10702 | |
| 39013 10802 | |
| 39113 10902 | |
| 39213 11002 | |
| 39313 11102 | |
| 39413 11202 | |
| 39513 11302 | |
| 39613 11402 | |
| 39713 11502 | |
| 39813 11602 | |
| 39913 11702 | |
| 40013 11802 | |
| 40113 11902 | |
| 40213 12002 | |
| 40313 12102 | |
| 40413 12202 | |
| 40513 12302 | |
| 40613 12402 | |
| 40713 12502 | |
| 40813 12602 | |
| 40913 12702 | |
| 41013 12802 | |
| 41113 12902 | |
| 41213 13002 | |
| 41313 13102 | |
| 41413 13202 | |
| 41513 13302 | |
| 41613 13402 | |
| 41713 13502 | |
| 41813 13602 | |
| 41913 13702 | |
| 42013 1202 | |
| 42113 2002 | |
| 42213 2802 | |
| 42313 3502 | |
| 42413 1802 | |
| 42513 3302 | |
| 42613 1002 | |
| 42713 4702 | |
| 42813 1802 | |
| 42913 3402 | |
| 43013 4502 | |
| 43113 602 | |
| 43213 1002 | |
| 43313 4302 | |
| 43413 3102 | |
| 43513 1202 | |
| 43613 4302 | |
| 43713 902 | |
| 43813 5002 | |
| 43913 1402 | |
| 44013 4902 | |
| 44113 2502 | |
| 44213 5102 | |
| 44313 1702 | |
| 44413 2302 | |
| 44513 4902 | |
| 44613 4202 | |
| 44713 302 | |
| 44813 3502 | |
| 44913 1502 | |
| 45013 1302 | |
| 45113 4602 | |
| 45213 3402 | |
| 45313 4002 | |
| 45413 2802 | |
| 45513 5102 | |
| 45613 2102 | |
| 45713 3702 | |
| 45813 4502 | |
| 45913 3702 | |
| 46013 1902 | |
| 46113 3802 | |
| 46213 4102 | |
| 46313 2702 | |
| 46413 2802 | |
| 46513 2002 | |
| 46613 3802 | |
| 46713 1902 | |
| 46813 2802 | |
| 46913 3602 | |
| 47013 3102 | |
| 47113 2402 | |
| 47213 802 | |
| 47313 2902 | |
| 47413 4002 | |
| 47513 3002 | |
| 47613 2502 | |
| 47713 3002 | |
| 47813 3102 | |
| 47913 802 | |
| 48013 4302 | |
| 48113 4302 | |
| 48213 5202 | |
| 48313 2502 | |
| 48413 3102 | |
| 48513 2702 | |
| 48613 2302 | |
| 48713 5002 | |
| 48813 1202 | |
| 48913 1602 | |
| 49013 3502 | |
| 49113 2902 | |
| 49213 5202 | |
| 49313 2302 | |
| 49413 302 | |
| 49513 2702 | |
| 49613 4202 | |
| 49713 3902 | |
| 49813 4402 | |
| 49913 1802 | |
| 50013 2202 | |
| 50113 2302 | |
| 50213 4002 | |
| 50313 2902 | |
| 50413 5002 | |
| 50513 2802 | |
| 50613 602 | |
| 50713 2302 | |
| 50813 502 | |
| 50913 3502 | |
| 51013 2902 | |
| 51113 4702 | |
| 51213 2502 | |
| 51313 2802 | |
| 51413 1902 | |
| 51513 402 | |
| 51613 302 | |
| 51713 4102 | |
| 51813 5202 | |
| 51913 1302 | |
| 52013 402 | |
| 52113 3402 | |
| 52213 4102 | |
| 52313 302 | |
| 52413 502 | |
| 52513 4202 | |
| 52613 2902 | |
| 52713 4602 | |
| 52813 2902 | |
| 52913 2102 | |
| 53013 1102 | |
| 53113 5002 | |
| 53213 4202 | |
| 53313 5002 | |
| 53413 2602 | |
| 53513 3902 | |
| 53613 2502 | |
| 53713 3002 | |
| 53813 902 | |
| 53913 2902 | |
| 54013 1202 | |
| 54113 3702 | |
| 54213 2302 | |
| 54313 3602 | |
| 54413 1202 | |
| 54513 4102 | |
| 54613 3802 | |
| 54713 1402 | |
| 54813 2902 | |
| 54913 3802 | |
| 55013 2602 | |
| 55113 3202 | |
| 55213 1902 | |
| 55313 1402 | |
| 55413 3302 | |
| 55513 2302 | |
| 55613 302 | |
| 55713 902 | |
| 55813 1602 | |
| 55913 3102 | |
| 56013 2902 | |
| 56113 2602 | |
| 56213 2802 | |
| 56313 1802 | |
| 56413 2302 | |
| 56513 5202 | |
| 56613 502 | |
| 56713 4702 | |
| 56813 2902 | |
| 56913 1302 | |
| 57013 2302 | |
| 57113 4002 | |
| 57213 4802 | |
| 57313 4502 | |
| 57413 2402 | |
| 57513 802 | |
| 57613 3302 | |
| 57713 1002 | |
| 57813 2002 | |
| 57913 1002 | |
| 58013 4602 | |
| 58113 4402 | |
| 58213 4002 | |
| 58313 1302 | |
| 58413 602 | |
| 58513 2002 | |
| 58613 3502 | |
| 58713 802 | |
| 58813 2802 | |
| 58913 5002 | |
| 59013 3702 | |
| 59113 402 | |
| 59213 2302 | |
| 59313 1202 | |
| 59413 2102 | |
| 59513 4402 | |
| 59613 1202 | |
| 59713 2402 | |
| 59813 3902 | |
| 59913 4002 | |
| 60013 3502 | |
| 60113 902 | |
| 60213 2802 | |
| 60313 3102 | |
| 60413 5202 | |
| 60513 5002 | |
| 60613 3702 | |
| 60713 3202 | |
| 60813 802 | |
| 60913 502 | |
| 61013 4002 | |
| 61113 202 | |
| 61213 4802 | |
| 61313 2702 | |
| 61413 1402 | |
| 61513 5202 | |
| 61613 4602 | |
| 61713 4702 | |
| 61813 702 | |
| 61913 2102 | |
| 62013 4402 | |
| 62113 4302 | |
| 62213 2402 | |
| 62313 1502 | |
| 62413 202 | |
| 62513 4402 | |
| 62613 602 | |
| 62713 1302 | |
| 62813 1502 | |
| 62913 4302 | |
| 63013 5102 | |
| 63113 4902 | |
| 63213 5102 | |
| 63313 2602 | |
| 63413 2802 | |
| 63513 5002 | |
| 63613 2402 | |
| 63713 1202 | |
| 63813 3002 | |
| 63913 3102 | |
| 64013 1502 | |
| 64113 1802 | |
| 64213 3102 | |
| 64313 1102 | |
| 64413 4402 | |
| 64513 4302 | |
| 64613 1002 | |
| 64713 3802 | |
| 64813 3802 | |
| 64913 1602 | |
| 65013 702 | |
| 65113 2902 | |
| 65213 602 | |
| 65313 2902 | |
| 65413 4202 | |
| 65513 702 | |
| 65613 2002 | |
| 65713 4702 | |
| 65813 1802 | |
| 65913 3402 | |
| 66013 3802 | |
| 66113 1702 | |
| 66213 3102 | |
| 66313 3702 | |
| 66413 4202 | |
| 66513 602 | |
| 66613 3502 | |
| 66713 1302 | |
| 66813 1702 | |
| 66913 1302 | |
| 67013 4202 | |
| 67113 3102 | |
| 67213 2902 | |
| 67313 2102 | |
| 67413 4002 | |
| 67513 2102 | |
| 67613 1202 | |
| 67713 4802 | |
| 67813 602 | |
| 67913 4802 | |
| 68013 1102 | |
| 68113 1102 | |
| 68213 2502 | |
| 68313 1602 | |
| 68413 3902 | |
| 68513 1502 | |
| 68613 2102 | |
| 68713 702 | |
| 68813 1002 | |
| 68913 3702 | |
| 69013 4002 | |
| 69113 4602 | |
| 69213 202 | |
| 69313 1802 | |
| 69413 3102 | |
| 69513 4202 | |
| 69613 2302 | |
| 69713 1302 | |
| 69813 202 | |
| 69913 3802 | |
| 70013 2402 | |
| 70113 4302 | |
| 70213 1702 | |
| 70313 5202 | |
| 70413 1202 | |
| 70513 402 | |
| 70613 2002 | |
| 70713 2202 | |
| 70813 5002 | |
| 70913 2502 | |
| 71013 1702 | |
| 71113 902 | |
| 71213 3502 | |
| 71313 4002 | |
| 71413 2402 | |
| 71513 2202 | |
| 71613 202 | |
| 71713 4302 | |
| 71813 2702 | |
| 71913 1002 | |
| 72013 2802 | |
| 72113 1502 | |
| 72213 402 | |
| 72313 2802 | |
| 72413 3202 | |
| 72513 3302 | |
| 72613 1702 | |
| 72713 202 | |
| 72813 4502 | |
| 72913 1802 | |
| 73013 3902 | |
| 73113 1602 | |
| 73213 902 | |
| 73313 302 | |
| 73413 1602 | |
| 73513 1902 | |
| 73613 602 | |
| 73713 3502 | |
| 73813 4002 | |
| 73913 402 | |
| 74013 702 | |
| 74113 402 | |
| 74213 1202 | |
| 74313 4102 | |
| 74413 4302 | |
| 74513 3402 | |
| 74613 1002 | |
| 74713 4402 | |
| 74813 2402 | |
| 74913 3602 | |
| 75013 5202 | |
| 75113 5102 | |
| 75213 4902 | |
| 75313 402 | |
| 75413 2602 | |
| 75513 2902 | |
| 75613 3602 | |
| 75713 4202 | |
| 75813 2902 | |
| 75913 2902 | |
| 76013 802 | |
| 76113 1602 | |
| 76213 4402 | |
| 76313 1602 | |
| 76413 1802 | |
| 76513 702 | |
| 76613 3402 | |
| 76713 2302 | |
| 76813 4002 | |
| 76913 2102 | |
| 77013 2502 | |
| 77113 4602 | |
| 77213 2302 | |
| 77313 3502 | |
| 77413 3402 | |
| 77513 1402 | |
| 77613 1602 | |
| 77713 4302 | |
| 77813 502 | |
| 77913 3902 | |
| 78013 2602 | |
| 78113 502 | |
| 78213 3702 | |
| 78313 2302 | |
| 78413 702 | |
| 78513 1002 | |
| 78613 5002 | |
| 78713 4202 | |
| 78813 5102 | |
| 78913 2702 | |
| 79013 1802 | |
| 79113 702 | |
| 79213 4202 | |
| 79313 902 | |
| 79413 2102 | |
| 79513 802 | |
| 79613 1402 | |
| 79713 202 | |
| 79813 2902 | |
| 79913 202 | |
| 80013 2102 | |
| 80113 5202 | |
| 80213 4602 | |
| 80313 4302 | |
| 80413 3402 | |
| 80513 2802 | |
| 80613 402 | |
| 80713 4902 | |
| 80813 1902 | |
| 80913 702 | |
| 81013 3502 | |
| 81113 4302 | |
| 81213 1002 | |
| 81313 1902 | |
| 81413 1402 | |
| 81513 1602 | |
| 81613 2802 | |
| 81713 1102 | |
| 81813 502 | |
| 81913 2702 | |
| 82013 3702 | |
| 82113 2202 | |
| 82213 3202 | |
| 82313 2602 | |
| 82413 2902 | |
| 82513 5102 | |
| 82613 3302 | |
| 82713 4202 | |
| 82813 5202 | |
| 82913 902 | |
| 83013 4302 | |
| 83113 2102 | |
| 83213 902 | |
| 83313 3702 | |
| 83413 1102 | |
| 83513 4202 | |
| 83613 1202 | |
| 83713 1402 | |
| 83813 3802 | |
| 83913 2902 | |
| 84013 802 | |
| 84113 4202 | |
| 84213 4702 | |
| 84313 1402 | |
| 84413 4402 | |
| 84513 5002 | |
| 84613 1202 | |
| 84713 1302 | |
| 84813 3102 | |
| 84913 1602 | |
| 85013 4302 | |
| 85113 1302 | |
| 85213 4802 | |
| 85313 3302 | |
| 85413 3402 | |
| 85513 2102 | |
| 85613 1902 | |
| 85713 802 | |
| 85813 2402 | |
| 85913 2802 | |
| 86013 4602 | |
| 86113 1002 | |
| 86213 1902 | |
| 86313 4902 | |
| 86413 3102 | |
| 86513 2402 | |
| 86613 1002 | |
| 86713 2302 | |
| 86813 1802 | |
| 86913 1302 | |
| 87013 3702 | |
| 87113 2502 | |
| 87213 302 | |
| 87313 3202 | |
| 87413 3702 | |
| 87513 4502 | |
| 87613 2902 | |
| 87713 4802 | |
| 87813 602 | |
| 87913 702 | |
| 88013 1202 | |
| 88113 4702 | |
| 88213 1902 | |
| 88313 702 | |
| 88413 2702 | |
| 88513 5202 | |
| 88613 2602 | |
| 88713 4402 | |
| 88813 702 | |
| 88913 4802 | |
| 89013 2002 | |
| 89113 5202 | |
| 89213 602 | |
| 89313 3702 | |
| 89413 4802 | |
| 89513 3502 | |
| 89613 902 | |
| 89713 502 | |
| 89813 602 | |
| 89913 2602 | |
| 90013 1702 | |
| 90113 4102 | |
| 90213 4902 | |
| 90313 1902 | |
| 90413 2002 | |
| 90513 3402 | |
| 90613 1102 | |
| 90713 4802 | |
| 90813 2902 | |
| 90913 1502 | |
| 91013 202 | |
| 91113 3902 | |
| 91213 1002 | |
| 91313 1902 | |
| 91413 4502 | |
| 91513 3502 | |
| 91613 1802 | |
| 91713 1802 | |
| 91813 2702 | |
| 91913 2402 | |
| 92013 1402 | |
| 92113 4502 | |
| 92213 2302 | |
| 92313 1802 | |
| 92413 3002 | |
| 92513 1902 | |
| 92613 5202 | |
| 92713 3702 | |
| 92813 2302 | |
| 92913 502 | |
| 93013 1102 | |
| 93113 3802 | |
| 93213 4502 | |
| 93313 702 | |
| 93413 402 | |
| 93513 1202 | |
| 93613 3902 | |
| 93713 1402 | |
| 93813 702 | |
| 93913 1502 | |
| 94013 2802 | |
| 94113 802 | |
| 94213 202 | |
| 94313 3602 | |
| 94413 2602 | |
| 94513 4502 | |
| 94613 1902 | |
| 94713 4302 | |
| 94813 1102 | |
| 94913 4402 | |
| 95013 1402 | |
| 95113 2302 | |
| 95213 3702 | |
| 95313 3602 | |
| 95413 4002 | |
| 95513 1502 | |
| 95613 202 | |
| 95713 4002 | |
| 95813 5102 | |
| 95913 2302 | |
| 96013 4302 | |
| 96113 902 | |
| 96213 902 | |
| 96313 3602 | |
| 96413 1402 | |
| 96513 1202 | |
| 96613 4602 | |
| 96713 5202 | |
| 96813 2502 | |
| 96913 5202 | |
| 97013 1502 | |
| 97113 5102 | |
| 97213 702 | |
| 97313 1502 | |
| 97413 3502 | |
| 97513 3202 | |
| 97613 802 | |
| 97713 5202 | |
| 97813 2202 | |
| 97913 1802 | |
| 98013 4402 | |
| 98113 3502 | |
| 98213 4002 | |
| 98313 2902 | |
| 98413 1802 | |
| 98513 2702 | |
| 98613 4202 | |
| 98713 1802 | |
| 98813 1402 | |
| 98913 4002 | |
| 99013 4002 | |
| 99113 502 | |
| 99213 4702 | |
| 99313 4702 | |
| 99413 3902 | |
| 99513 902 | |
| 99613 602 | |
| 99713 3302 | |
| 99813 802 | |
| 99913 3002 | |
| 100013 3302 | |
| 100113 2102 | |
| 100213 2802 | |
| 100313 3802 | |
| 100413 3502 | |
| 100513 1102 | |
| 100613 1802 | |
| 100713 4202 | |
| 100813 1002 | |
| 100913 3802 | |
| 101013 702 | |
| 101113 202 | |
| 101213 2002 | |
| 101313 4502 | |
| 101413 2902 | |
| 101513 3702 | |
| 101613 1902 | |
| 101713 1902 | |
| 101813 202 | |
| 101913 3202 | |
| 102013 602 | |
| 102113 4102 | |
| 102213 3602 | |
| 102313 5202 | |
| 102413 3602 | |
| 102513 2302 | |
| 102613 902 | |
| 102713 4102 | |
| 102813 302 | |
| 102913 1602 | |
| 103013 1802 | |
| 103113 3402 | |
| 103213 3602 | |
| 103313 4402 | |
| 103413 2002 | |
| 103513 1802 | |
| 103613 202 | |
| 103713 3702 | |
| 103813 702 | |
| 103913 1102 | |
| 104013 2202 | |
| 104113 1202 | |
| 104213 1202 | |
| 104313 4102 | |
| 104413 402 | |
| 104513 3902 | |
| 104613 2602 | |
| 104713 2202 | |
| 104813 602 | |
| 104913 2702 | |
| 105013 202 | |
| 105113 1102 | |
| 105213 1502 | |
| 105313 3602 | |
| 105413 1002 | |
| 105513 4902 | |
| 105613 602 | |
| 105713 1802 | |
| 105813 3702 | |
| 105913 802 | |
| 106013 3202 | |
| 106113 202 | |
| 106213 4102 | |
| 106313 1502 | |
| 106413 4502 | |
| 106513 902 | |
| 106613 3202 | |
| 106713 4602 | |
| 106813 4402 | |
| 106913 3802 | |
| 107013 402 | |
| 107113 1402 | |
| 107213 4802 | |
| 107313 1502 | |
| 107413 302 | |
| 107513 5102 | |
| 107613 202 | |
| 107713 2702 | |
| 107813 2102 | |
| 107913 602 | |
| 108013 5202 | |
| 108113 2102 | |
| 108213 1502 | |
| 108313 1502 | |
| 108413 502 | |
| 108513 2402 | |
| 108613 1102 | |
| 108713 1002 | |
| 108813 4002 | |
| 108913 4702 | |
| 109013 1602 | |
| 109113 2002 | |
| 109213 4702 | |
| 109313 402 | |
| 109413 3302 | |
| 109513 3902 | |
| 109613 1202 | |
| 109713 1302 | |
| 109813 3202 | |
| 109913 302 | |
| 110013 4902 | |
| 110113 3502 | |
| 110213 1502 | |
| 110313 4502 | |
| 110413 4802 | |
| 110513 1702 | |
| 110613 4302 | |
| 110713 4802 | |
| 110813 4202 | |
| 110913 1202 | |
| 111013 202 | |
| 111113 4202 | |
| 111213 3202 | |
| 111313 1502 | |
| 111413 402 | |
| 111513 3502 | |
| 111613 3702 | |
| 111713 1402 | |
| 111813 4302 | |
| 111913 2402 | |
| 112013 802 | |
| 112113 702 | |
| 112213 4302 | |
| 112313 302 | |
| 112413 1002 | |
| 112513 2402 | |
| 112613 4002 | |
| 112713 2002 | |
| 112813 3502 | |
| 112913 2002 | |
| 113013 2102 | |
| 113113 3102 | |
| 113213 302 | |
| 113313 3502 | |
| 113413 2302 | |
| 113513 5002 | |
| 113613 5002 | |
| 113713 1402 | |
| 113813 4602 | |
| 113913 4002 | |
| 114013 2502 | |
| 114113 4602 | |
| 114213 2902 | |
| 114313 402 | |
| 114413 802 | |
| 114513 3102 | |
| 114613 3802 | |
| 114713 4402 | |
| 114813 4302 | |
| 114913 2802 | |
| 115013 1602 | |
| 115113 5002 | |
| 115213 3302 | |
| 115313 602 | |
| 115413 5102 | |
| 115513 4102 | |
| 115613 2802 | |
| 115713 3902 | |
| 115813 902 | |
| 115913 1002 | |
| 116013 702 | |
| 116113 2802 | |
| 116213 4002 | |
| 116313 802 | |
| 116413 1102 | |
| 116513 1102 | |
| 116613 602 | |
| 116713 802 | |
| 116813 2402 | |
| 116913 5002 | |
| 117013 4602 | |
| 117113 4702 | |
| 117213 4302 | |
| 117313 2302 | |
| 117413 5002 | |
| 117513 5002 | |
| 117613 202 | |
| 117713 3502 | |
| 117813 4102 | |
| 117913 4402 | |
| 118013 1102 | |
| 118113 402 | |
| 118213 4102 | |
| 118313 4302 | |
| 118413 802 | |
| 118513 3902 | |
| 118613 3102 | |
| 118713 3502 | |
| 118813 2502 | |
| 118913 3802 | |
| 119013 4402 | |
| 119113 3002 | |
| 119213 1402 | |
| 119313 3102 | |
| 119413 3702 | |
| 119513 2302 | |
| 119613 4102 | |
| 119713 4202 | |
| 119813 3002 | |
| 119913 1202 | |
| 120013 3902 | |
| 120113 2402 | |
| 120213 702 | |
| 120313 3002 | |
| 120413 4502 | |
| 120513 402 | |
| 120613 2802 | |
| 120713 4602 | |
| 120813 3802 | |
| 120913 1602 | |
| 121013 3702 | |
| 121113 4702 | |
| 121213 1902 | |
| 121313 2502 | |
| 121413 3702 | |
| 121513 2602 | |
| 121613 1202 | |
| 121713 1602 | |
| 121813 802 | |
| 121913 3602 | |
| 122013 202 | |
| 122113 5102 | |
| 122213 1402 | |
| 122313 1402 | |
| 122413 2902 | |
| 122513 4902 | |
| 122613 3602 | |
| 122713 1702 | |
| 122813 3802 | |
| 122913 1402 | |
| 123013 2802 | |
| 123113 2502 | |
| 123213 3702 | |
| 123313 3302 | |
| 123413 302 | |
| 123513 3002 | |
| 123613 3602 | |
| 123713 2902 | |
| 123813 2302 | |
| 123913 2102 | |
| 124013 4402 | |
| 124113 702 | |
| 124213 1502 | |
| 124313 1102 | |
| 124413 3102 | |
| 124513 5102 | |
| 124613 3502 | |
| 124713 4102 | |
| 124813 1402 | |
| 124913 4202 | |
| 125013 2402 | |
| 125113 1402 | |
| 125213 4002 | |
| 125313 3602 | |
| 125413 2702 | |
| 125513 1702 | |
| 125613 3302 | |
| 125713 1102 | |
| 125813 3302 | |
| 125913 1902 | |
| 126013 2402 | |
| 126113 802 | |
| 126213 4202 | |
| 126313 802 | |
| 126413 4002 | |
| 126513 4402 | |
| 126613 3602 | |
| 126713 2302 | |
| 126813 2002 | |
| 126913 702 | |
| 127013 4302 | |
| 127113 1202 | |
| 127213 1202 | |
| 127313 502 | |
| 127413 2102 | |
| 127513 4102 | |
| 127613 302 | |
| 127713 402 | |
| 127813 3002 | |
| 127913 1602 | |
| 128013 4502 | |
| 128113 5202 | |
| 128213 2802 | |
| 128313 3302 | |
| 128413 3502 | |
| 128513 202 | |
| 128613 4902 | |
| 128713 1602 | |
| 128813 1202 | |
| 128913 2902 | |
| 129013 3302 | |
| 129113 3402 | |
| 129213 3602 | |
| 129313 2302 | |
| 129413 4002 | |
| 129513 2402 | |
| 129613 1402 | |
| 129713 2402 | |
| 129813 4602 | |
| 129913 3302 | |
| 130013 2902 | |
| 130113 3602 | |
| 130213 4302 | |
| 130313 3902 | |
| 130413 4002 | |
| 130513 1202 | |
| 130613 2802 | |
| 130713 4202 | |
| 130813 1502 | |
| 130913 502 | |
| 131013 502 | |
| 131113 702 | |
| 131213 502 | |
| 131313 3202 | |
| 131413 3902 | |
| 131513 3802 | |
| 131613 3302 | |
| 131713 3502 | |
| 131813 202 | |
| 131913 4302 | |
| 132013 1202 | |
| 132113 3302 | |
| 132213 2402 | |
| 132313 4602 | |
| 132413 302 | |
| 132513 1202 | |
| 132613 1802 | |
| 132713 1502 | |
| 132813 3402 | |
| 132913 1102 | |
| 133013 4602 | |
| 133113 1102 | |
| 133213 4602 | |
| 133313 3702 | |
| 133413 4902 | |
| 133513 3302 | |
| 133613 4802 | |
| 133713 2402 | |
| 133813 2302 | |
| 133913 1002 | |
| 134013 2802 | |
| 134113 2702 | |
| 134213 1602 | |
| 134313 3102 | |
| 134413 602 | |
| 134513 202 | |
| 134613 1702 | |
| 134713 3702 | |
| 134813 3502 | |
| 134913 1702 | |
| 135013 2802 | |
| 135113 4502 | |
| 135213 4902 | |
| 135313 5102 | |
| 135413 3902 | |
| 135513 5002 | |
| 135613 1102 | |
| 135713 502 | |
| 135813 1302 | |
| 135913 4302 | |
| 136013 1402 | |
| 136113 702 | |
| 136213 202 | |
| 136313 802 | |
| 136413 4302 | |
| 136513 4902 | |
| 136613 4002 | |
| 136713 3802 | |
| 136813 2102 | |
| 136913 1002 | |
| 137013 4602 | |
| 137113 4702 | |
| 137213 3502 | |
| 137313 1002 | |
| 137413 2602 | |
| 137513 4002 | |
| 137613 1002 | |
| 137713 4202 | |
| 137813 2502 | |
| 137913 4402 | |
| 138013 702 | |
| 138113 5102 | |
| 138213 3602 | |
| 138313 302 | |
| 138413 5002 | |
| 138513 2302 | |
| 138613 5102 | |
| 138713 802 | |
| 138813 2702 | |
| 138913 1202 | |
| 139013 5002 | |
| 139113 3902 | |
| 139213 1702 | |
| 139313 5002 | |
| 139413 4602 | |
| 139513 702 | |
| 139613 4602 | |
| 139713 3302 | |
| 139813 4302 | |
| 139913 1502 | |
| 140013 4202 | |
| 140113 3702 | |
| 140213 1002 | |
| 140313 2402 | |
| 140413 4502 | |
| 140513 3402 | |
| 140613 1202 | |
| 140713 202 | |
| 140813 2402 | |
| 140913 3502 | |
| 141013 4502 | |
| 141113 2902 | |
| 141213 3402 | |
| 141313 2902 | |
| 141413 3002 | |
| 141513 3102 | |
| 141613 5002 | |
| 141713 2902 | |
| 141813 3802 | |
| 141913 2402 | |
| 142013 3902 | |
| 142113 3502 | |
| 142213 1102 | |
| 142313 402 | |
| 142413 3302 | |
| 142513 502 | |
| 142613 902 | |
| 142713 2702 | |
| 142813 3602 | |
| 142913 5102 | |
| 143013 4002 | |
| 143113 2502 | |
| 143213 3602 | |
| 143313 4802 | |
| 143413 4802 | |
| 143513 2802 | |
| 143613 3002 | |
| 143713 802 | |
| 143813 2902 | |
| 143913 5202 | |
| 144013 4102 | |
| 144113 2102 | |
| 144213 2802 | |
| 144313 2302 | |
| 144413 4802 | |
| 144513 602 | |
| 144613 202 | |
| 144713 4602 | |
| 144813 3402 | |
| 144913 3802 | |
| 145013 1802 | |
| 145113 2102 | |
| 145213 2102 | |
| 145313 2802 | |
| 145413 2402 | |
| 145513 5202 | |
| 145613 3102 | |
| 145713 3102 | |
| 145813 2702 | |
| 145913 1502 | |
| 146013 3002 | |
| 146113 1402 | |
| 146213 3802 | |
| 146313 1302 | |
| 146413 902 | |
| 146513 3402 | |
| 146613 4002 | |
| 146713 3802 | |
| 146813 4002 | |
| 146913 1602 | |
| 147013 3702 | |
| 147113 2902 | |
| 147213 3602 | |
| 147313 1302 | |
| 147413 5102 | |
| 147513 3202 | |
| 147613 1802 | |
| 147713 5102 | |
| 147813 2502 | |
| 147913 5102 | |
| 148013 3702 | |
| 148113 4202 | |
| 148213 1902 | |
| 148313 602 | |
| 148413 1702 | |
| 148513 4102 | |
| 148613 602 | |
| 148713 4702 | |
| 148813 2002 | |
| 148913 3102 | |
| 149013 902 | |
| 149113 4902 | |
| 149213 4302 | |
| 149313 4602 | |
| 149413 1002 | |
| 149513 5102 | |
| 149613 2702 | |
| 149713 4802 | |
| 149813 3602 | |
| 149913 1502 | |
| 150013 1202 | |
| 150113 2102 | |
| 150213 4202 | |
| 150313 4702 | |
| 150413 3302 | |
| 150513 4002 | |
| 150613 2602 | |
| 150713 4902 | |
| 150813 3902 | |
| 150913 5002 | |
| 151013 4702 | |
| 151113 2302 | |
| 151213 3902 | |
| 151313 1402 | |
| 151413 2702 | |
| 151513 402 | |
| 151613 302 | |
| 151713 3102 | |
| 151813 4902 | |
| 151913 2202 | |
| 152013 902 | |
| 152113 502 | |
| 152213 1802 | |
| 152313 5102 | |
| 152413 4902 | |
| 152513 2602 | |
| 152613 5002 | |
| 152713 2402 | |
| 152813 2202 | |
| 152913 3402 | |
| 153013 3702 | |
| 153113 3202 | |
| 153213 202 | |
| 153313 2602 | |
| 153413 2602 | |
| 153513 3302 | |
| 153613 1402 | |
| 153713 5002 | |
| 153813 3002 | |
| 153913 5102 | |
| 154013 4702 | |
| 154113 2502 | |
| 154213 2202 | |
| 154313 3402 | |
| 154413 3702 | |
| 154513 4802 | |
| 154613 3602 | |
| 154713 3902 | |
| 154813 2602 | |
| 154913 3302 | |
| 155013 802 | |
| 155113 3402 | |
| 155213 3602 | |
| 155313 2502 | |
| 155413 3302 | |
| 155513 3302 | |
| 155613 4902 | |
| 155713 3002 | |
| 155813 402 | |
| 155913 1802 | |
| 156013 1102 | |
| 156113 3902 | |
| 156213 4902 | |
| 156313 1202 | |
| 156413 1302 | |
| 156513 2202 | |
| 156613 4402 | |
| 156713 2502 | |
| 156813 2002 | |
| 156913 2102 | |
| 157013 2402 | |
| 157113 1502 | |
| 157213 4402 | |
| 157313 4402 | |
| 157413 4802 | |
| 157513 2902 | |
| 157613 3902 | |
| 157713 3102 | |
| 157813 1502 | |
| 157913 1302 | |
| 158013 1102 | |
| 158113 2202 | |
| 158213 4502 | |
| 158313 4602 | |
| 158413 4502 | |
| 158513 2602 | |
| 158613 2602 | |
| 158713 4202 | |
| 158813 402 | |
| 158913 2802 | |
| 159013 802 | |
| 159113 1402 | |
| 159213 1502 | |
| 159313 402 | |
| 159413 2402 | |
| 159513 2602 | |
| 159613 2502 | |
| 159713 1502 | |
| 159813 5002 | |
| 159913 4302 | |
| 160013 3502 | |
| 160113 2102 | |
| 160213 602 | |
| 160313 2702 | |
| 160413 1202 | |
| 160513 5202 | |
| 160613 402 | |
| 160713 4902 | |
| 160813 3102 | |
| 160913 1802 | |
| 161013 1002 | |
| 161113 4002 | |
| 161213 3802 | |
| 161313 302 | |
| 161413 3402 | |
| 161513 3102 | |
| 161613 2702 | |
| 161713 802 | |
| 161813 2002 | |
| 161913 2902 | |
| 162013 3402 | |
| 162113 2602 | |
| 162213 4102 | |
| 162313 4802 | |
| 162413 2802 | |
| 162513 1302 | |
| 162613 2202 | |
| 162713 5202 | |
| 162813 2702 | |
| 162913 1902 | |
| 163013 4202 | |
| 163113 1002 | |
| 163213 3802 | |
| 163313 4702 | |
| 163413 3502 | |
| 163513 4902 | |
| 163613 4602 | |
| 163713 3802 | |
| 163813 4602 | |
| 163913 2402 | |
| 164013 302 | |
| 164113 302 | |
| 164213 1202 | |
| 164313 3902 | |
| 164413 402 | |
| 164513 4402 | |
| 164613 1702 | |
| 164713 3002 | |
| 164813 5002 | |
| 164913 3602 | |
| 165013 602 | |
| 165113 3202 | |
| 165213 902 | |
| 165313 4602 | |
| 165413 2802 | |
| 165513 3602 | |
| 165613 702 | |
| 165713 4802 | |
| 165813 3502 | |
| 165913 3202 | |
| 166013 1402 | |
| 166113 2502 | |
| 166213 4002 | |
| 166313 5102 | |
| 166413 1902 | |
| 166513 2302 | |
| 166613 4702 | |
| 166713 1202 | |
| 166813 802 | |
| 166913 4102 | |
| 167013 3502 | |
| 167113 902 | |
| 167213 4202 | |
| 167313 4502 | |
| 167413 4702 | |
| 167513 4402 | |
| 167613 3702 | |
| 167713 1202 | |
| 167813 2102 | |
| 167913 3502 | |
| \. | |
| -- | |
| -- Data for Name: eventstype; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY eventstype (id, asset_type, name, system, description, notify_at) FROM stdin; | |
| 20 10 accident t accident 01:00:00 | |
| 120 10 insurance t insurance -1 days | |
| 220 10 maintenance t maintenance -7 days | |
| 320 10 fine t fine 1 day | |
| 420 10 damage t damage 1 day | |
| 520 10 prospective_maintenance t prospective maintenance -7 days | |
| 620 110 accident t accident 01:00:00 | |
| 720 110 insurance t insurance -1 days | |
| 820 110 maintenance t maintenance -7 days | |
| 920 110 fine t fine 1 day | |
| 1020 110 damage t damage 1 day | |
| 1120 210 broken t broken 01:00:00 | |
| 1220 210 stolen t stolen 01:00:00 | |
| 1320 \N asset-state-changed t The asset has changed from one state to another. 00:00:00 | |
| 1420 \N message t Send a message to a user 00:00:05 | |
| 1520 \N import-finished t Import finished -00:01:00 | |
| 1620 \N admin-created t New admin created 00:00:01 | |
| 1720 \N user-created t New user created -1 days | |
| 1820 \N asset-order f New asset ordered 00:00:00 | |
| 1920 \N asset-quotation f New asset requested for quotation 00:00:00 | |
| 2020 \N start-allocation t Called when an entity is assigned to another -1 days | |
| 2120 \N end-allocation t Called when an entity is unassigned from an another -1 days | |
| \. | |
| -- | |
| -- Name: eventstypeid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('eventstypeid', 2120, true); | |
| -- | |
| -- Data for Name: exchange_rates; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY exchange_rates (period, "from", "to", rate) FROM stdin; | |
| ["2015-01-01 00:00:00+00","2015-12-31 23:59:59+00"] GBP EUR 1.38989999999999991 | |
| ["2015-01-01 00:00:00+00","2015-12-31 23:59:59+00"] GBP USD 1.56879999999999997 | |
| ["2015-01-01 00:00:00+00","2015-12-31 23:59:59+00"] GBP CHF 1.4968999999999999 | |
| ["2015-01-01 00:00:00+00","2015-12-31 23:59:59+00"] GBP CNY 10.0284999999999993 | |
| ["2015-01-01 00:00:00+00","2015-12-31 23:59:59+00"] GBP TWD 51.1721000000000004 | |
| ["2015-01-01 00:00:00+00","2015-12-31 23:59:59+00"] GBP GIP 1.00029999999999997 | |
| ["2015-01-01 00:00:00+00","2015-12-31 23:59:59+00"] GBP GNF 11379.1095000000005 | |
| ["2015-01-01 00:00:00+00","2015-12-31 23:59:59+00"] GBP HKD 12.1607000000000003 | |
| ["2015-01-01 00:00:00+00","2015-12-31 23:59:59+00"] GBP DJF 278.854499999999973 | |
| ["2015-01-01 00:00:00+00","2015-12-31 23:59:59+00"] GBP SLL 7275.07589999999982 | |
| ["2014-01-01 00:00:00+00","2014-12-31 23:59:59+00"] GBP EUR 1.44769999999999999 | |
| ["2014-01-01 00:00:00+00","2014-12-31 23:59:59+00"] GBP USD 1.3297000000000001 | |
| ["2014-01-01 00:00:00+00","2014-12-31 23:59:59+00"] GBP CHF 1.33539999999999992 | |
| ["2014-01-01 00:00:00+00","2014-12-31 23:59:59+00"] GBP CNY 9.54679999999999929 | |
| ["2014-01-01 00:00:00+00","2014-12-31 23:59:59+00"] GBP TWD 47.4512 | |
| ["2014-01-01 00:00:00+00","2014-12-31 23:59:59+00"] GBP GIP 0.998800000000000021 | |
| ["2014-01-01 00:00:00+00","2014-12-31 23:59:59+00"] GBP GNF 10779.4125000000004 | |
| ["2014-01-01 00:00:00+00","2014-12-31 23:59:59+00"] GBP HKD 11.1507000000000005 | |
| ["2014-01-01 00:00:00+00","2014-12-31 23:59:59+00"] GBP DJF 257.412500000000023 | |
| ["2014-01-01 00:00:00+00","2014-12-31 23:59:59+00"] GBP SLL 8111.01540000000023 | |
| ["2016-01-01 00:00:00+00","2016-12-31 23:59:59+00"] GBP EUR 1.38989999999999991 | |
| ["2016-01-01 00:00:00+00","2016-12-31 23:59:59+00"] GBP USD 1.56879999999999997 | |
| ["2016-01-01 00:00:00+00","2016-12-31 23:59:59+00"] GBP CHF 1.4968999999999999 | |
| ["2016-01-01 00:00:00+00","2016-12-31 23:59:59+00"] GBP CNY 10.0284999999999993 | |
| ["2016-01-01 00:00:00+00","2016-12-31 23:59:59+00"] GBP TWD 51.1721000000000004 | |
| ["2016-01-01 00:00:00+00","2016-12-31 23:59:59+00"] GBP GIP 1.00029999999999997 | |
| ["2016-01-01 00:00:00+00","2016-12-31 23:59:59+00"] GBP GNF 11379.1095000000005 | |
| ["2016-01-01 00:00:00+00","2016-12-31 23:59:59+00"] GBP HKD 12.1607000000000003 | |
| ["2016-01-01 00:00:00+00","2016-12-31 23:59:59+00"] GBP DJF 278.854499999999973 | |
| ["2016-01-01 00:00:00+00","2016-12-31 23:59:59+00"] GBP SLL 7275.07589999999982 | |
| \. | |
| -- | |
| -- Name: fineid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('fineid', 837, true); | |
| -- | |
| -- Data for Name: fines; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY fines (id, asset_id, date_received, date_processed, date_paid, date_fine, custom_id, authority, authority_ref, additional_ref, fine_type, status, fine_notes, location, notes, attributes, created, updated) FROM stdin; | |
| 37 202 2016-08-31 23:00:00 2016-09-07 23:00:00 2016-09-07 23:00:00 2016-08-17 23:00:00 FEE-01-DE Oxford City Council ED0099 AB586985609GB Speed Paid 30MPH more than allowed in Built-up Areas \N \N {"user": {"id": 204, "ratio": 50, "lastname": "Egner", "firstname": "Demarcus"}, "amount": 150, "is_admin": true, "admin_fee": 12, "optimal_speed": 54, "measured_speed": 60, "upgrade_amount": 120} 2016-09-24 15:45:58.736483 \N | |
| 137 302 2016-09-14 23:00:00 \N \N 2016-09-14 23:00:00 \N Renfrewshire Council ED-0101 \N Speed New \N \N \N {"user": {"id": 304, "ratio": 66.84210533391354, "lastname": "Casa", "firstname": "Mariano"}, "amount": 120, "optimal_speed": 47.7, "measured_speed": 53} 2016-09-24 15:52:50.328629 \N | |
| 237 402 2016-09-04 23:00:00 \N \N 2016-08-08 23:00:00 \N Oxford City Council ED-0113 \N Parking In Progress Parking in not allowed area \N \N {"user": {"id": 404, "ratio": 66.84210533391354, "lastname": "Denver", "firstname": "Gordon"}, "amount": 50} 2016-09-24 15:56:53.14245 \N | |
| 337 502 2016-09-23 23:00:00 \N \N 2016-09-16 23:00:00 \N London City Council ED-0145 \N Speed In Progress \N \N \N {"user": {"id": 504, "ratio": 66.84210533391354, "lastname": "Amarante", "firstname": "Stuart"}, "amount": 120, "optimal_speed": 40.5, "measured_speed": 45} 2016-09-24 15:58:05.537404 \N | |
| 437 602 2016-09-14 23:00:00 2016-09-14 23:00:00 2016-09-14 23:00:00 2016-08-31 23:00:00 FINE-9087 London City Council ED-1660 \N Speed New \N \N \N {"user": {"id": 604, "ratio": 66.84210533391354, "lastname": "Pauling", "firstname": "Charley"}, "amount": 300, "optimal_speed": 49.5, "measured_speed": 55, "upgrade_amount": 250} 2016-09-24 16:14:29.538659 \N | |
| 537 702 2016-08-31 23:00:00 2016-09-07 23:00:00 2016-09-07 23:00:00 2016-08-17 23:00:00 FEE-01-DE Oxford City Council ED0099 AB586985609GB Speed Paid 30MPH more than allowed in Built-up Areas \N \N {"user": {"id": 704, "ratio": 50, "lastname": "Perillo", "firstname": "Wes"}, "amount": 150, "is_admin": true, "admin_fee": 12, "optimal_speed": 54, "measured_speed": 60, "upgrade_amount": 120} 2016-09-24 15:45:58.736483 \N | |
| 637 802 2016-09-14 23:00:00 \N \N 2016-09-14 23:00:00 \N Renfrewshire Council ED-0101 \N Speed New \N \N \N {"user": {"id": 804, "ratio": 66.84210533391354, "lastname": "Lacey", "firstname": "Bruno"}, "amount": 120, "optimal_speed": 47.7, "measured_speed": 53} 2016-09-24 15:52:50.328629 \N | |
| 737 902 2016-09-04 23:00:00 \N \N 2016-08-08 23:00:00 \N Oxford City Council ED-0113 \N Parking In Progress Parking in not allowed area \N \N {"user": {"id": 904, "ratio": 66.84210533391354, "lastname": "Damron", "firstname": "Rodger"}, "amount": 50} 2016-09-24 15:56:53.14245 \N | |
| 837 1002 2016-09-23 23:00:00 \N \N 2016-09-16 23:00:00 \N London City Council ED-0145 \N Speed In Progress \N \N \N {"user": {"id": 1004, "ratio": 66.84210533391354, "lastname": "Addario", "firstname": "Preston"}, "amount": 120, "optimal_speed": 40.5, "measured_speed": 45} 2016-09-24 15:58:05.537404 \N | |
| \. | |
| -- | |
| -- Data for Name: import_queue; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY import_queue (store_id, digest, created, imported, step, cells, report) FROM stdin; | |
| \. | |
| -- | |
| -- Name: job_id; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('job_id', 321, true); | |
| -- | |
| -- Data for Name: jobs; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY jobs (id, user_id, running, service, callback, reference, instance, type, state, priority, progress, started, finished, params, maxreport, report) FROM stdin; | |
| 321 \N f jobs monitor system-monitor 1 system started 10 0 2016-09-26 09:41:16.89038 \N {} 5 [null, null, null, null] | |
| 21 \N f contracts backgroundCheck contract-checker 1 core started 10 0 2016-09-26 09:41:10.97402 \N null 5 [{"message": "No contract to check"}, {"message": "No contract to check"}, {"message": "No contract to check"}, {"message": "No contract to check"}] | |
| 121 \N f events sendNotifications events-notifications 1 core started 10 0 2016-09-26 09:41:11.160625 \N null 5 [false, false, false, false] | |
| 221 \N f asset backgroundCheck asset-checker 1 core started 1 0 2016-09-26 09:41:11.465391 \N null 5 [null, null, null] | |
| \. | |
| -- | |
| -- Data for Name: logs; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY logs (level, user_id, ip, message, details, module, created) FROM stdin; | |
| notice \N \N Server started {"serverUrl": "http://0.0.0.0:22252", "serverName": "restify"} core 2015-12-27 18:34:46 | |
| info 4 127.0.0.1 Successful authentication for user {email} (id: {id}) {"id": "4", "ip": "127.0.0.1", "email": "[email protected]"} core 2015-12-27 18:33:26 | |
| error \N \N Unauthorised request {request} for user ID {uid}: {action} {"action": "block", "request": "GET /logs?count=20&page=1"} core 2015-12-27 18:33:14 | |
| notice 2504 \N Matched request {request} for user ID {uid}: {action} {"uid": 2504, "action": "pass", "request": "DELETE /assignments/3408"} core 2015-12-27 18:32:38 | |
| notice \N \N Server started {"serverUrl": "http://0.0.0.0:22252", "serverName": "restify"} core 2015-12-27 18:32:08 | |
| notice \N \N Server started {"serverUrl": "http://0.0.0.0:22252", "serverName": "restify"} core 2015-12-27 18:31:32 | |
| notice \N \N Server started {"serverUrl": "http://0.0.0.0:22252", "serverName": "restify"} core 2015-12-27 18:29:53 | |
| notice \N \N Server started {"serverUrl": "http://0.0.0.0:22252", "serverName": "restify"} core 2015-12-27 18:28:08 | |
| notice \N \N Server started {"serverUrl": "http://0.0.0.0:22252", "serverName": "restify"} core 2015-12-27 18:26:02 | |
| info 2504 127.0.0.1 Successful authentication for user {email} (id: {id}) {"id": "2504", "ip": "127.0.0.1", "email": "[email protected]"} core 2015-12-27 18:21:33 | |
| info 2504 127.0.0.1 Successful authentication for user {email} (id: {id}) {"id": "2504", "ip": "127.0.0.1", "email": "[email protected]"} core 2015-12-27 18:20:33 | |
| notice \N \N Server started {"serverUrl": "http://0.0.0.0:22252", "serverName": "restify"} core 2015-12-27 18:18:01 | |
| notice \N \N Server started {"serverUrl": "http://0.0.0.0:22252", "serverName": "restify"} core 2015-12-27 18:16:33 | |
| notice \N \N Server started {"serverUrl": "http://0.0.0.0:22252", "serverName": "restify"} core 2015-12-27 18:16:05 | |
| info 4 127.0.0.1 Successful authentication for user {email} (id: {id}) {"id": "4", "ip": "127.0.0.1", "email": "[email protected]"} core 2015-12-27 18:14:06 | |
| info 2504 127.0.0.1 Successful authentication for user {email} (id: {id}) {"id": "2504", "ip": "127.0.0.1", "email": "[email protected]"} core 2015-12-27 18:13:55 | |
| info 104 127.0.0.1 Successful authentication for user {email} (id: {id}) {"id": "104", "ip": "127.0.0.1", "email": "[email protected]"} core 2015-12-27 18:13:41 | |
| info 4 127.0.0.1 Successful authentication for user {email} (id: {id}) {"id": "4", "ip": "127.0.0.1", "email": "[email protected]"} core 2015-12-27 18:13:21 | |
| info 104 127.0.0.1 Successful authentication for user {email} (id: {id}) {"id": "104", "ip": "127.0.0.1", "email": "[email protected]"} core 2015-12-27 18:13:16 | |
| info 104 127.0.0.1 Successful authentication for user {email} (id: {id}) {"id": "104", "ip": "127.0.0.1", "email": "[email protected]"} core 2015-12-27 18:13:14 | |
| notice \N \N Server started {"serverUrl": "http://0.0.0.0:22252", "serverName": "restify"} core 2015-12-27 18:12:47 | |
| info 4 127.0.0.1 Successful authentication for user {email} (id: {id}) {"id": "4", "ip": "127.0.0.1", "email": "[email protected]"} core 2015-12-27 18:10:31 | |
| notice \N \N Server started {"serverUrl": "http://0.0.0.0:22252", "serverName": "restify"} core 2015-12-27 18:10:08 | |
| info 4 127.0.0.1 Successful authentication for user {email} (id: {id}) {"id": "4", "ip": "127.0.0.1", "email": "[email protected]"} core 2015-12-27 17:58:46 | |
| error \N 127.0.0.1 Failed authentication with email "{email}" from {ip} {"ip": "127.0.0.1", "email": "[email protected]"} core 2015-12-27 17:58:20 | |
| notice \N \N Server started {"serverUrl": "http://0.0.0.0:22252", "serverName": "restify"} core 2015-12-27 17:58:13 | |
| error \N \N Failed authentication with email "{email}" from {ip} {"ip": "127.0.0.1", "email": "[email protected]"} core 2015-12-27 17:57:35 | |
| info 4 \N Successful authentication for user {email} (id: {id}) {"id": "4", "ip": "127.0.0.1", "email": "[email protected]"} core 2015-12-27 17:54:57 | |
| error \N \N Failed authentication with email "{email}" from {ip} {"ip": "127.0.0.1", "email": "[email protected]"} core 2015-12-27 17:54:56 | |
| notice \N \N Server started {"serverUrl": "http://0.0.0.0:22252", "serverName": "restify"} core 2015-12-27 17:54:50 | |
| info 4 \N Successful authentication for user {email} (id: {id}) {"id": "4", "ip": "127.0.0.1", "email": "[email protected]"} core 2015-12-27 17:53:47 | |
| error \N \N Failed authentication with email "{email}" from {ip} {"ip": "127.0.0.1", "email": "[email protected]"} core 2015-12-27 17:53:42 | |
| notice \N \N Server started {"serverUrl": "http://0.0.0.0:22252", "serverName": "restify"} core 2015-12-27 17:53:26 | |
| notice \N \N Server started {"serverUrl": "http://[::]:22252", "serverName": "restify"} core 2016-09-26 09:41:10.896541 | |
| notice \N \N Starting job {id} instance {instance}, already started {"type": "core", "state": "started", "params": null, "running": false, "service": "contracts", "started": "NOW()", "user_id": null, "callback": "backgroundCheck", "priority": 10, "reference": "contract-checker"} jobs 2016-09-26 09:41:10.973802 | |
| notice \N \N Contracts checking background job created {"id": "21", "type": "core", "state": "started", "params": null, "report": [], "running": false, "service": "contracts", "started": "2016-09-26T09:41:10.974Z", "user_id": null, "callback": "backgroundCheck", "finished": null, "instance": 1, "priority": 10, "progress": 0, "maxreport": 5, "reference": "contract-checker"} core 2016-09-26 09:41:11.039357 | |
| notice \N \N Starting job {id} instance {instance}, already started {"type": "core", "state": "started", "params": null, "running": false, "service": "events", "started": "NOW()", "user_id": null, "callback": "sendNotifications", "priority": 10, "reference": "events-notifications"} jobs 2016-09-26 09:41:11.16057 | |
| notice \N \N Events notification background job started {"id": "121", "type": "core", "state": "started", "params": null, "report": [], "running": false, "service": "events", "started": "2016-09-26T09:41:11.160Z", "user_id": null, "callback": "sendNotifications", "finished": null, "instance": 1, "priority": 10, "progress": 0, "maxreport": 5, "reference": "events-notifications"} core 2016-09-26 09:41:11.166618 | |
| notice \N \N Starting job {id} instance {instance}, already started {"type": "core", "state": "started", "params": null, "running": false, "service": "asset", "started": "NOW()", "user_id": null, "callback": "backgroundCheck", "priority": 1, "reference": "asset-checker"} jobs 2016-09-26 09:41:11.465325 | |
| notice \N \N Asset checking background job created {"id": "221", "type": "core", "state": "started", "params": null, "report": [], "running": false, "service": "asset", "started": "2016-09-26T09:41:11.465Z", "user_id": null, "callback": "backgroundCheck", "finished": null, "instance": 1, "priority": 1, "progress": 0, "maxreport": 5, "reference": "asset-checker"} core 2016-09-26 09:41:11.469042 | |
| notice \N \N Starting job {id} instance {instance}, already started {"type": "system", "state": "started", "params": {}, "service": "jobs", "started": "NOW()", "user_id": null, "callback": "monitor", "instance": 1, "priority": 10, "reference": "system-monitor"} jobs 2016-09-26 09:41:16.889231 | |
| \. | |
| -- | |
| -- Name: maintenanceid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('maintenanceid', 29, false); | |
| -- | |
| -- Data for Name: maintenances; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY maintenances (id, comment, cost_id, asset_id, mtnc_service_id, next_date, meter, next_meter_value, prospective_cost, created, updated, state, type) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: maintenanceservices; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY maintenanceservices (id, type, assettype, label, meter_frequency, meter_threshold, meter_unit, time_frequency, time_threshold, created, updated) FROM stdin; | |
| 30 normal vehicle.car Interim Service \N \N \N \N \N 2016-09-26 09:41:11.359062+01 2016-09-26 09:41:11.359062+01 | |
| 130 normal vehicle.car Full Service \N \N \N \N \N 2016-09-26 09:41:11.360529+01 2016-09-26 09:41:11.360529+01 | |
| 230 normal electronic.phone OS Update \N \N \N \N \N 2016-09-26 09:41:11.360731+01 2016-09-26 09:41:11.360731+01 | |
| 330 control vehicle.car MOT \N \N \N \N \N 2016-09-26 09:41:11.360904+01 2016-09-26 09:41:11.360904+01 | |
| 430 normal electronic.printer Clean up \N \N \N \N \N 2016-09-26 09:41:11.431118+01 2016-09-26 09:41:11.431118+01 | |
| 530 normal electronic.computer OS Update \N \N \N \N \N 2016-09-26 09:41:11.431311+01 2016-09-26 09:41:11.431311+01 | |
| 630 normal electronic.computer Security Patch \N \N \N \N \N 2016-09-26 09:41:11.431675+01 2016-09-26 09:41:11.431675+01 | |
| 730 normal electronic.phone Security Patch \N \N \N \N \N 2016-09-26 09:41:11.43202+01 2016-09-26 09:41:11.43202+01 | |
| \. | |
| -- | |
| -- Data for Name: message_user; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY message_user (message_id, user_id, read) FROM stdin; | |
| 17 104 f | |
| 17 304 f | |
| 117 104 f | |
| 217 4 f | |
| \. | |
| -- | |
| -- Name: messageid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('messageid', 217, true); | |
| -- | |
| -- Data for Name: messages; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY messages (id, subject, body, created) FROM stdin; | |
| 17 Contract AA-BBB-CC end soon Beware : The contract AA-BBB-CC will end up very shortly. Don't forget to update your contract list 2016-09-26 09:40:11.552231 | |
| 117 New contract Renewal Take note that your contract AA-BBB-DD has been reviewed with you suppliers 2016-09-26 09:40:11.553291 | |
| 217 Contract CC-DDD-EE end soon Beware : The contract CC-DDD-EE will end up very shortly. Don't forget to update your contract list 2016-09-26 09:40:11.554274 | |
| \. | |
| -- | |
| -- Data for Name: meters; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY meters (id, asset_id, source, source_id, type, date, value, diff, confidence) FROM stdin; | |
| \. | |
| -- | |
| -- Name: metersid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('metersid', 36, false); | |
| -- | |
| -- Name: mtncservicesid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('mtncservicesid', 730, true); | |
| -- | |
| -- Name: notificationid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('notificationid', 27, false); | |
| -- | |
| -- Data for Name: notifications; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY notifications (id, event_id, subject, text, created, attributes) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: notifications_mapping; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY notifications_mapping (notification_id, user_id, acknowledge) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: pgmigrations; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY pgmigrations (id, name, run_on) FROM stdin; | |
| 1 1462529379801_init 2016-09-26 09:39:50.11437 | |
| 2 1462539558317_add_demo_flag 2016-09-26 09:39:50.543175 | |
| 3 1462869390841_system_table 2016-09-26 09:39:50.566906 | |
| 4 1463306923210_ref-types 2016-09-26 09:39:50.569144 | |
| 5 1463396088228_store-keys-change 2016-09-26 09:39:50.571003 | |
| 6 1464783218913_system-extra-types 2016-09-26 09:39:50.572665 | |
| 7 1464794139386_add-plans-table 2016-09-26 09:39:50.577362 | |
| 8 1464879142137_multicountry-plan-test 2016-09-26 09:39:50.584763 | |
| 9 1473860009218_suppliers 2016-09-26 09:39:50.593095 | |
| 10 1473934286852_fines 2016-09-26 09:39:50.613722 | |
| \. | |
| -- | |
| -- Name: pgmigrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('pgmigrations_id_seq', 10, true); | |
| -- | |
| -- Data for Name: phones; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY phones (id, entity_id, label, phone_number, country_code) FROM stdin; | |
| 1 9 HR department 07056980007 +44 | |
| 2 14 work 07062233020 +44 | |
| 3 14 home 07062244030 +44 | |
| \. | |
| -- | |
| -- Name: phones_id_seq; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('phones_id_seq', 3, true); | |
| -- | |
| -- Name: planid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('planid', 133, true); | |
| -- | |
| -- Data for Name: plans; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY plans (id, name, weight, active) FROM stdin; | |
| 33 free 10 t | |
| 133 multi_country 100 t | |
| \. | |
| -- | |
| -- Data for Name: plans_history; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY plans_history (plan_id, start, "end") FROM stdin; | |
| 33 2016-09-26 09:39:50.577362 \N | |
| \. | |
| -- | |
| -- Data for Name: reftype; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY reftype (id, name) FROM stdin; | |
| 23 vehicle.car.make | |
| 123 vehicle.car.model | |
| 223 vehicle.car.variant | |
| 323 vehicle.car.colour | |
| 423 geo.country | |
| 523 geo.county | |
| 623 electronic.phone.brand | |
| 723 electronic.printer.brand | |
| 823 electronic.phone.model | |
| 923 electronic.printer.model | |
| 1023 electronic.computer.brand | |
| 1123 electronic.computer.model | |
| \. | |
| -- | |
| -- Name: reftypeid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('reftypeid', 1123, true); | |
| -- | |
| -- Data for Name: refval; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY refval (id, type, parent, alias, value, searchable, custom, attributes) FROM stdin; | |
| 24 423 \N \N Afghanistan f t \N | |
| 124 423 \N \N Akrotiri f t \N | |
| 224 423 \N \N Albania f t \N | |
| 324 423 \N \N Algeria f t \N | |
| 424 423 \N \N American Samoa f t \N | |
| 524 423 \N \N Andorra f t \N | |
| 624 423 \N \N Angola f t \N | |
| 724 423 \N \N Anguilla f t \N | |
| 824 423 \N \N Antarctica f t \N | |
| 924 423 \N \N Antigua and Barbuda f t \N | |
| 1024 423 \N \N Argentina f t \N | |
| 1124 423 \N \N Armenia f t \N | |
| 1224 423 \N \N Aruba f t \N | |
| 1324 423 \N \N Ashmore and Cartier Islands f t \N | |
| 1424 423 \N \N Australia f t \N | |
| 1524 423 \N \N Austria f t \N | |
| 1624 423 \N \N Azerbaijan f t \N | |
| 1724 423 \N \N Bahamas, The f t \N | |
| 1824 423 \N \N Bahrain f t \N | |
| 1924 423 \N \N Bangladesh f t \N | |
| 2024 423 \N \N Barbados f t \N | |
| 2124 423 \N \N Bassas da India f t \N | |
| 2224 423 \N \N Belarus f t \N | |
| 2324 423 \N \N Belgium f t \N | |
| 2424 423 \N \N Belize f t \N | |
| 2524 423 \N \N Benin f t \N | |
| 2624 423 \N \N Bermuda f t \N | |
| 2724 423 \N \N Bhutan f t \N | |
| 2824 423 \N \N Bolivia f t \N | |
| 2924 423 \N \N Bosnia and Herzegovina f t \N | |
| 3024 423 \N \N Botswana f t \N | |
| 3124 423 \N \N Bouvet Island f t \N | |
| 3224 423 \N \N Brazil f t \N | |
| 3324 423 \N \N British Indian Ocean Territory t t \N | |
| 3424 423 \N \N British Virgin Islands t t \N | |
| 3524 423 \N \N Brunei f t \N | |
| 3624 423 \N \N Bulgaria f t \N | |
| 3724 423 \N \N Burkina Faso f t \N | |
| 3824 423 \N \N Burma f t \N | |
| 3924 423 \N \N Burundi f t \N | |
| 4024 423 \N \N Cambodia f t \N | |
| 4124 423 \N \N Cameroon f t \N | |
| 4224 423 \N \N Canada f t \N | |
| 4324 423 \N \N Cape Verde f t \N | |
| 4424 423 \N \N Cayman Islands f t \N | |
| 4524 423 \N \N Central African Republic f t \N | |
| 4624 423 \N \N Chad f t \N | |
| 4724 423 \N \N Chile f t \N | |
| 4824 423 \N \N China f t \N | |
| 4924 423 \N \N Christmas Island f t \N | |
| 5024 423 \N \N Clipperton Island f t \N | |
| 5124 423 \N \N Cocos (Keeling) Islands f t \N | |
| 5224 423 \N \N Colombia f t \N | |
| 5324 423 \N \N Comoros f t \N | |
| 5424 423 \N \N Congo, Democratic Republic of the f t \N | |
| 5524 423 \N \N Congo, Republic of the f t \N | |
| 5624 423 \N \N Cook Islands f t \N | |
| 5724 423 \N \N Coral Sea Islands f t \N | |
| 5824 423 \N \N Costa Rica f t \N | |
| 5924 423 \N \N Cote d'Ivoire f t \N | |
| 6024 423 \N \N Croatia f t \N | |
| 6124 423 \N \N Cuba f t \N | |
| 6224 423 \N \N Cyprus f t \N | |
| 6324 423 \N \N Czech Republic f t \N | |
| 6424 423 \N \N Denmark f t \N | |
| 6524 423 \N \N Dhekelia f t \N | |
| 6624 423 \N \N Djibouti f t \N | |
| 6724 423 \N \N Dominica f t \N | |
| 6824 423 \N \N Dominican Republic f t \N | |
| 6924 423 \N \N Ecuador f t \N | |
| 7024 423 \N \N Egypt f t \N | |
| 7124 423 \N \N El Salvador f t \N | |
| 7224 423 \N \N Equatorial Guinea f t \N | |
| 7324 423 \N \N Eritrea f t \N | |
| 7424 423 \N \N Estonia f t \N | |
| 7524 423 \N \N Ethiopia f t \N | |
| 7624 423 \N \N Europa Island f t \N | |
| 7724 423 \N \N Falkland Islands (Islas Malvinas) f t \N | |
| 7824 423 \N \N Faroe Islands f t \N | |
| 7924 423 \N \N Fiji f t \N | |
| 8024 423 \N \N Finland f t \N | |
| 8124 423 \N \N France t t \N | |
| 8224 423 \N \N French Guiana f t \N | |
| 8324 423 \N \N French Polynesia f t \N | |
| 8424 423 \N \N French Southern and Antarctic Lands f t \N | |
| 8524 423 \N \N Gabon f t \N | |
| 8624 423 \N \N Gambia, The f t \N | |
| 8724 423 \N \N Gaza Strip f t \N | |
| 8824 423 \N \N Georgia f t \N | |
| 8924 423 \N \N Germany f t \N | |
| 9024 423 \N \N Ghana f t \N | |
| 9124 423 \N \N Gibraltar f t \N | |
| 9224 423 \N \N Glorioso Islands f t \N | |
| 9324 423 \N \N Greece f t \N | |
| 9424 423 \N \N Greenland f t \N | |
| 9524 423 \N \N Grenada f t \N | |
| 9624 423 \N \N Guadeloupe f t \N | |
| 9724 423 \N \N Guam f t \N | |
| 9824 423 \N \N Guatemala f t \N | |
| 9924 423 \N \N Guernsey f t \N | |
| 10024 423 \N \N Guinea f t \N | |
| 10124 423 \N \N Guinea-Bissau f t \N | |
| 10224 423 \N \N Guyana f t \N | |
| 10324 423 \N \N Haiti f t \N | |
| 10424 423 \N \N Heard Island and McDonald Islands f t \N | |
| 10524 423 \N \N Holy See (Vatican City) f t \N | |
| 10624 423 \N \N Honduras f t \N | |
| 10724 423 \N \N Hong Kong f t \N | |
| 10824 423 \N \N Hungary f t \N | |
| 10924 423 \N \N Iceland f t \N | |
| 11024 423 \N \N India f t \N | |
| 11124 423 \N \N Indonesia f t \N | |
| 11224 423 \N \N Iran f t \N | |
| 11324 423 \N \N Iraq f t \N | |
| 11424 423 \N \N Ireland t t \N | |
| 11524 423 \N \N Isle of Man f t \N | |
| 11624 423 \N \N Israel f t \N | |
| 11724 423 \N \N Italy f t \N | |
| 11824 423 \N \N Jamaica f t \N | |
| 11924 423 \N \N Jan Mayen f t \N | |
| 12024 423 \N \N Japan f t \N | |
| 12124 423 \N \N Jersey f t \N | |
| 12224 423 \N \N Jordan f t \N | |
| 12324 423 \N \N Juan de Nova Island f t \N | |
| 12424 423 \N \N Kazakhstan f t \N | |
| 12524 423 \N \N Kenya f t \N | |
| 12624 423 \N \N Kiribati f t \N | |
| 12724 423 \N \N Korea, North f t \N | |
| 12824 423 \N \N Korea, South f t \N | |
| 12924 423 \N \N Kuwait f t \N | |
| 13024 423 \N \N Kyrgyzstan f t \N | |
| 13124 423 \N \N Laos f t \N | |
| 13224 423 \N \N Latvia f t \N | |
| 13324 423 \N \N Lebanon f t \N | |
| 13424 423 \N \N Lesotho f t \N | |
| 13524 423 \N \N Liberia f t \N | |
| 13624 423 \N \N Libya f t \N | |
| 13724 423 \N \N Liechtenstein f t \N | |
| 13824 423 \N \N Lithuania f t \N | |
| 13924 423 \N \N Luxembourg f t \N | |
| 14024 423 \N \N Macau f t \N | |
| 14124 423 \N \N Macedonia f t \N | |
| 14224 423 \N \N Madagascar f t \N | |
| 14324 423 \N \N Malawi f t \N | |
| 14424 423 \N \N Malaysia f t \N | |
| 14524 423 \N \N Maldives f t \N | |
| 14624 423 \N \N Mali f t \N | |
| 14724 423 \N \N Malta f t \N | |
| 14824 423 \N \N Marshall Islands f t \N | |
| 14924 423 \N \N Martinique f t \N | |
| 15024 423 \N \N Mauritania f t \N | |
| 15124 423 \N \N Mauritius f t \N | |
| 15224 423 \N \N Mayotte f t \N | |
| 15324 423 \N \N Mexico f t \N | |
| 15424 423 \N \N Micronesia, Federated States of f t \N | |
| 15524 423 \N \N Moldova f t \N | |
| 15624 423 \N \N Monaco f t \N | |
| 15724 423 \N \N Mongolia f t \N | |
| 15824 423 \N \N Montserrat f t \N | |
| 15924 423 \N \N Morocco f t \N | |
| 16024 423 \N \N Mozambique f t \N | |
| 16124 423 \N \N Namibia f t \N | |
| 16224 423 \N \N Nauru f t \N | |
| 16324 423 \N \N Navassa Island f t \N | |
| 16424 423 \N \N Nepal f t \N | |
| 16524 423 \N \N Netherlands f t \N | |
| 16624 423 \N \N Netherlands Antilles f t \N | |
| 16724 423 \N \N New Caledonia f t \N | |
| 16824 423 \N \N New Zealand f t \N | |
| 16924 423 \N \N Nicaragua f t \N | |
| 17024 423 \N \N Niger f t \N | |
| 17124 423 \N \N Nigeria f t \N | |
| 17224 423 \N \N Niue f t \N | |
| 17324 423 \N \N Norfolk Island f t \N | |
| 17424 423 \N \N Northern Mariana Islands f t \N | |
| 17524 423 \N \N Norway f t \N | |
| 17624 423 \N \N Oman f t \N | |
| 17724 423 \N \N Pakistan f t \N | |
| 17824 423 \N \N Palau f t \N | |
| 17924 423 \N \N Panama f t \N | |
| 18024 423 \N \N Papua New Guinea f t \N | |
| 18124 423 \N \N Paracel Islands f t \N | |
| 18224 423 \N \N Paraguay f t \N | |
| 18324 423 \N \N Peru f t \N | |
| 18424 423 \N \N Philippines f t \N | |
| 18524 423 \N \N Pitcairn Islands f t \N | |
| 18624 423 \N \N Poland f t \N | |
| 18724 423 \N \N Portugal f t \N | |
| 18824 423 \N \N Puerto Rico f t \N | |
| 18924 423 \N \N Qatar f t \N | |
| 19024 423 \N \N Reunion f t \N | |
| 19124 423 \N \N Romania f t \N | |
| 19224 423 \N \N Russia f t \N | |
| 19324 423 \N \N Rwanda f t \N | |
| 19424 423 \N \N Saint Helena f t \N | |
| 19524 423 \N \N Saint Kitts and Nevis f t \N | |
| 19624 423 \N \N Saint Lucia f t \N | |
| 19724 423 \N \N Saint Pierre and Miquelon f t \N | |
| 19824 423 \N \N Saint Vincent and the Grenadines f t \N | |
| 19924 423 \N \N Samoa f t \N | |
| 20024 423 \N \N San Marino f t \N | |
| 20124 423 \N \N Sao Tome and Principe f t \N | |
| 20224 423 \N \N Saudi Arabia f t \N | |
| 20324 423 \N \N Senegal f t \N | |
| 20424 423 \N \N Serbia and Montenegro f t \N | |
| 20524 423 \N \N Seychelles f t \N | |
| 20624 423 \N \N Sierra Leone f t \N | |
| 20724 423 \N \N Singapore f t \N | |
| 20824 423 \N \N Slovakia f t \N | |
| 20924 423 \N \N Slovenia f t \N | |
| 21024 423 \N \N Solomon Islands f t \N | |
| 21124 423 \N \N Somalia f t \N | |
| 21224 423 \N \N South Africa f t \N | |
| 21324 423 \N \N South Georgia and the South Sandwich Islands f t \N | |
| 21424 423 \N \N Spain f t \N | |
| 21524 423 \N \N Spratly Islands f t \N | |
| 21624 423 \N \N Sri Lanka f t \N | |
| 21724 423 \N \N Sudan f t \N | |
| 21824 423 \N \N Suriname f t \N | |
| 21924 423 \N \N Svalbard f t \N | |
| 22024 423 \N \N Swaziland f t \N | |
| 22124 423 \N \N Sweden f t \N | |
| 22224 423 \N \N Switzerland f t \N | |
| 22324 423 \N \N Syria f t \N | |
| 22424 423 \N \N Taiwan f t \N | |
| 22524 423 \N \N Tajikistan f t \N | |
| 22624 423 \N \N Tanzania f t \N | |
| 22724 423 \N \N Thailand f t \N | |
| 22824 423 \N \N Timor-Leste f t \N | |
| 22924 423 \N \N Togo f t \N | |
| 23024 423 \N \N Tokelau f t \N | |
| 23124 423 \N \N Tonga f t \N | |
| 23224 423 \N \N Trinidad and Tobago f t \N | |
| 23324 423 \N \N Tromelin Island f t \N | |
| 23424 423 \N \N Tunisia f t \N | |
| 23524 423 \N \N Turkey f t \N | |
| 23624 423 \N \N Turkmenistan f t \N | |
| 23724 423 \N \N Turks and Caicos Islands f t \N | |
| 23824 423 \N \N Tuvalu f t \N | |
| 23924 423 \N \N Uganda f t \N | |
| 24024 423 \N \N Ukraine f t \N | |
| 24124 423 \N \N United Arab Emirates f t \N | |
| 24224 423 \N \N United Kingdom t t \N | |
| 24324 423 \N \N United States f t \N | |
| 24424 423 \N \N Uruguay f t \N | |
| 24524 423 \N \N Uzbekistan f t \N | |
| 24624 423 \N \N Vanuatu f t \N | |
| 24724 423 \N \N Venezuela f t \N | |
| 24824 423 \N \N Vietnam f t \N | |
| 24924 423 \N \N Virgin Islands f t \N | |
| 25024 423 \N \N Wake Island f t \N | |
| 25124 423 \N \N Wallis and Futuna f t \N | |
| 25224 423 \N \N West Bank f t \N | |
| 25324 423 \N \N Western Sahara f t \N | |
| 25424 423 \N \N Yemen f t \N | |
| 25524 423 \N \N Zambia f t \N | |
| 25624 423 \N \N Zimbabwe f t \N | |
| 25724 423 \N 24224 England t t \N | |
| 25824 423 \N 24224 Great Britain t t \N | |
| 25924 423 \N \N XXX01 f t \N | |
| 26024 423 \N \N XXX02 f t \N | |
| 26124 423 \N \N XXX03 f t \N | |
| 26224 423 \N \N XXX04 f t \N | |
| 26324 423 \N \N XXX05 f t \N | |
| 26424 423 \N \N XXX06 f t \N | |
| 26524 423 \N \N XXX07 f t \N | |
| 26624 423 \N \N XXX08 f t \N | |
| 26724 423 \N \N XXX09 f t \N | |
| 26824 423 \N \N XXX10 f t \N | |
| 26924 423 \N \N XXX11 f t \N | |
| 27024 423 \N \N XXX12 f t \N | |
| 27124 423 \N \N XXX13 f t \N | |
| 27224 423 \N \N XXX14 f t \N | |
| 27324 423 \N \N XXX15 f t \N | |
| 27424 423 \N \N XXX16 f t \N | |
| 27524 423 \N \N XXX17 f t \N | |
| 27624 423 \N \N XXX18 f t \N | |
| 27724 423 \N \N XXX19 f t \N | |
| 27824 423 \N \N XXX20 f t \N | |
| 27924 523 8124 \N Ain t f \N | |
| 28024 523 8124 \N Aisne t f \N | |
| 28124 523 8124 \N Allier t f \N | |
| 28224 523 8124 \N Alpes-de-Haute-Provence t f \N | |
| 28324 523 8124 \N Hautes-Alpes t f \N | |
| 28424 523 8124 \N Alpes-Maritimes t f \N | |
| 28524 523 8124 \N Ardèche t f \N | |
| 28624 523 8124 \N Ardennes t f \N | |
| 28724 523 8124 \N Ariège t f \N | |
| 28824 523 8124 \N Aube t f \N | |
| 28924 523 8124 \N Aude t f \N | |
| 29024 523 8124 \N Aveyron t f \N | |
| 29124 523 8124 \N Bouches-du-Rhône t f \N | |
| 29224 523 8124 \N Calvados t f \N | |
| 29324 523 8124 \N Cantal t f \N | |
| 29424 523 8124 \N Charente t f \N | |
| 29524 523 8124 \N Charente-Maritime t f \N | |
| 29624 523 8124 \N Cher t f \N | |
| 29724 523 8124 \N Corrèze t f \N | |
| 29824 523 8124 \N Corse-du-Sud t f \N | |
| 29924 523 8124 \N Haute-Corse t f \N | |
| 30024 523 8124 \N Côte-d'Or t f \N | |
| 30124 523 8124 \N Côtes d'Armor t f \N | |
| 30224 523 8124 \N Creuse t f \N | |
| 30324 523 8124 \N Dordogne t f \N | |
| 30424 523 8124 \N Doubs t f \N | |
| 30524 523 8124 \N Drôme t f \N | |
| 30624 523 8124 \N Eure t f \N | |
| 30724 523 8124 \N Eure-et-Loir t f \N | |
| 30824 523 8124 \N Finistère t f \N | |
| 30924 523 8124 \N Gard t f \N | |
| 31024 523 8124 \N Haute-Garonne t f \N | |
| 31124 523 8124 \N Gers t f \N | |
| 31224 523 8124 \N Gironde t f \N | |
| 31324 523 8124 \N Hérault t f \N | |
| 31424 523 8124 \N Ille-et-Vilaine t f \N | |
| 31524 523 8124 \N Indre t f \N | |
| 31624 523 8124 \N Indre-et-Loire t f \N | |
| 31724 523 8124 \N Isère t f \N | |
| 31824 523 8124 \N Jura t f \N | |
| 31924 523 8124 \N Landes t f \N | |
| 32024 523 8124 \N Loir-et-Cher t f \N | |
| 32124 523 8124 \N Loire t f \N | |
| 32224 523 8124 \N Haute-Loire t f \N | |
| 32324 523 8124 \N Loire-Atlantique t f \N | |
| 32424 523 8124 \N Loiret t f \N | |
| 32524 523 8124 \N Lot t f \N | |
| 32624 523 8124 \N Lot-et-Garonne t f \N | |
| 32724 523 8124 \N Lozère t f \N | |
| 32824 523 8124 \N Maine-et-Loire t f \N | |
| 32924 523 8124 \N Manche t f \N | |
| 33024 523 8124 \N Marne t f \N | |
| 33124 523 8124 \N Haute-Marne t f \N | |
| 33224 523 8124 \N Mayenne t f \N | |
| 33324 523 8124 \N Meurthe-et-Moselle t f \N | |
| 33424 523 8124 \N Meuse t f \N | |
| 33524 523 8124 \N Morbihan t f \N | |
| 33624 523 8124 \N Moselle t f \N | |
| 33724 523 8124 \N Nièvre t f \N | |
| 33824 523 8124 \N Nord t f \N | |
| 33924 523 8124 \N Oise t f \N | |
| 34024 523 8124 \N Orne t f \N | |
| 34124 523 8124 \N Pas-de-Calais t f \N | |
| 34224 523 8124 \N Puy-de-Dôme t f \N | |
| 34324 523 8124 \N Pyrénées-Atlantiques t f \N | |
| 34424 523 8124 \N Hautes-Pyrénées t f \N | |
| 34524 523 8124 \N Pyrénées-Orientales t f \N | |
| 34624 523 8124 \N Bas-Rhin t f \N | |
| 34724 523 8124 \N Haut-Rhin t f \N | |
| 34824 523 8124 \N Rhône t f \N | |
| 34924 523 8124 \N Haute-Saône t f \N | |
| 35024 523 8124 \N Saône-et-Loire t f \N | |
| 35124 523 8124 \N Sarthe t f \N | |
| 35224 523 8124 \N Savoie t f \N | |
| 35324 523 8124 \N Haute-Savoie t f \N | |
| 35424 523 8124 \N Paris t f \N | |
| 35524 523 8124 \N Seine-Maritime t f \N | |
| 35624 523 8124 \N Seine-et-Marne t f \N | |
| 35724 523 8124 \N Yvelines t f \N | |
| 35824 523 8124 \N Deux-Sèvres t f \N | |
| 35924 523 8124 \N Somme t f \N | |
| 36024 523 8124 \N Tarn t f \N | |
| 36124 523 8124 \N Tarn-et-Garonne t f \N | |
| 36224 523 8124 \N Var t f \N | |
| 36324 523 8124 \N Vaucluse t f \N | |
| 36424 523 8124 \N Vendée t f \N | |
| 36524 523 8124 \N Vienne t f \N | |
| 36624 523 8124 \N Haute-Vienne t f \N | |
| 36724 523 8124 \N Vosges t f \N | |
| 36824 523 8124 \N Yonne t f \N | |
| 36924 523 8124 \N Terr. de Belfort t f \N | |
| 37024 523 8124 \N Essonne t f \N | |
| 37124 523 8124 \N Hauts-de-Seine t f \N | |
| 37224 523 8124 \N Seine-St-Denis t f \N | |
| 37324 523 8124 \N Val-de-Marne t f \N | |
| 37424 523 8124 \N Val-D'Oise t f \N | |
| 37524 523 24224 \N Avon t f \N | |
| 37624 523 24224 \N Bedfordshire t f \N | |
| 37724 523 24224 \N Berkshire t f \N | |
| 37824 523 24224 \N Borders t f \N | |
| 37924 523 24224 \N Buckinghamshire t f \N | |
| 38024 523 24224 \N Cambridgeshire t f \N | |
| 38124 523 24224 \N Central t f \N | |
| 38224 523 24224 \N Cheshire t f \N | |
| 38324 523 24224 \N Cleveland t f \N | |
| 38424 523 24224 \N Clwyd t f \N | |
| 38524 523 24224 \N Cornwall t f \N | |
| 38624 523 24224 \N County Antrim t f \N | |
| 38724 523 24224 \N County Armagh t f \N | |
| 38824 523 24224 \N County Down t f \N | |
| 38924 523 24224 \N County Fermanagh t f \N | |
| 39024 523 24224 \N County Londonderry t f \N | |
| 39124 523 24224 \N County Tyrone t f \N | |
| 39224 523 24224 \N Cumbria t f \N | |
| 39324 523 24224 \N Derbyshire t f \N | |
| 39424 523 24224 \N Devon t f \N | |
| 39524 523 24224 \N Dorset t f \N | |
| 39624 523 24224 \N Dumfries and Galloway t f \N | |
| 39724 523 24224 \N Durham t f \N | |
| 39824 523 24224 \N Dyfed t f \N | |
| 39924 523 24224 \N East Sussex t f \N | |
| 40024 523 24224 \N Essex t f \N | |
| 40124 523 24224 \N Fife t f \N | |
| 40224 523 24224 \N Gloucestershire t f \N | |
| 40324 523 24224 \N Grampian t f \N | |
| 40424 523 24224 \N Greater Manchester t f \N | |
| 40524 523 24224 \N Gwent t f \N | |
| 40624 523 24224 \N Gwynedd County t f \N | |
| 40724 523 24224 \N Hampshire t f \N | |
| 40824 523 24224 \N Herefordshire t f \N | |
| 40924 523 24224 \N Hertfordshire t f \N | |
| 41024 523 24224 \N Highlands and Islands t f \N | |
| 41124 523 24224 \N Humberside t f \N | |
| 41224 523 24224 \N Isle of Wight t f \N | |
| 41324 523 24224 \N Kent t f \N | |
| 41424 523 24224 \N Lancashire t f \N | |
| 41524 523 24224 \N Leicestershire t f \N | |
| 41624 523 24224 \N Lincolnshire t f \N | |
| 41724 523 24224 \N Lothian t f \N | |
| 41824 523 24224 \N Merseyside t f \N | |
| 41924 523 24224 \N Mid Glamorgan t f \N | |
| 42024 523 24224 \N Norfolk t f \N | |
| 42124 523 24224 \N North Yorkshire t f \N | |
| 42224 523 24224 \N Northamptonshire t f \N | |
| 42324 523 24224 \N Northumberland t f \N | |
| 42424 523 24224 \N Nottinghamshire t f \N | |
| 42524 523 24224 \N Oxfordshire t f \N | |
| 42624 523 24224 \N Powys t f \N | |
| 42724 523 24224 \N Rutland t f \N | |
| 42824 523 24224 \N Shropshire t f \N | |
| 42924 523 24224 \N Somerset t f \N | |
| 43024 523 24224 \N South Glamorgan t f \N | |
| 43124 523 24224 \N South Yorkshire t f \N | |
| 43224 523 24224 \N Staffordshire t f \N | |
| 43324 523 24224 \N Strathclyde t f \N | |
| 43424 523 24224 \N Suffolk t f \N | |
| 43524 523 24224 \N Surrey t f \N | |
| 43624 523 24224 \N Tayside t f \N | |
| 43724 523 24224 \N Tyne and Wear t f \N | |
| 43824 523 24224 \N Warwickshire t f \N | |
| 43924 523 24224 \N West Glamorgan t f \N | |
| 44024 523 24224 \N West Midlands t f \N | |
| 44124 523 24224 \N West Sussex t f \N | |
| 44224 523 24224 \N West Yorkshire t f \N | |
| 44324 523 24224 \N Wiltshire t f \N | |
| 44424 523 24224 \N Worcestershire t f \N | |
| 44524 23 \N \N AC Cars Group Ltd. f f \N | |
| 44624 23 \N \N AC t f \N | |
| 44724 23 \N \N Acura t f \N | |
| 44824 23 \N \N Adler t f \N | |
| 44924 23 \N \N Alfa Romeo t f \N | |
| 45024 23 \N \N Alvis Cars t f \N | |
| 45124 23 \N \N AMC t f \N | |
| 45224 23 \N \N American Motors t f \N | |
| 45324 23 \N \N Amilcar t f \N | |
| 45424 23 \N \N Armstrong Siddeley t f \N | |
| 45524 23 \N \N Aston Martin t f \N | |
| 45624 23 \N \N Auburn t f \N | |
| 45724 23 \N \N Audi t f \N | |
| 45824 23 \N \N Austin t f \N | |
| 45924 23 \N \N Austin Motor Company f f \N | |
| 46024 23 \N \N Autobianchi t f \N | |
| 46124 23 \N \N Avions Voisin t f \N | |
| 46224 23 \N \N Ballot t f \N | |
| 46324 23 \N \N Bandini t f \N | |
| 46424 23 \N \N Bentley t f \N | |
| 46524 23 \N \N BMC t f \N | |
| 46624 23 \N \N BMW t f \N | |
| 46724 23 \N \N BMW New Class t f \N | |
| 46824 23 \N \N Borgward t f \N | |
| 46924 23 \N \N Bristol Cars t f \N | |
| 47024 23 \N \N British Leyland Motor Corporation t f \N | |
| 47124 23 \N \N British Motor Corporation (Australia) f f \N | |
| 47224 23 \N \N British Motor Corporation f f \N | |
| 47324 23 \N \N Bucciali t f \N | |
| 47424 23 \N \N Bugatti t f \N | |
| 47524 23 \N \N Buick t f \N | |
| 47624 23 \N \N BYD t f \N | |
| 47724 23 \N \N Cadillac t f \N | |
| 47824 23 \N \N Carroll Shelby t f \N | |
| 47924 23 \N \N Chenard-Walcker t f \N | |
| 48024 23 \N \N Chery t f \N | |
| 48124 23 \N \N Chevrolet t f \N | |
| 48224 23 \N \N Chrysler t f \N | |
| 48324 23 \N \N Citroën t f \N | |
| 48424 23 \N \N Dacia t f \N | |
| 48524 23 \N \N Daewoo t f \N | |
| 48624 23 \N \N DAF t f \N | |
| 48724 23 \N \N Daihatsu Motor Company t f \N | |
| 48824 23 \N \N Daimler Motor Company t f \N | |
| 48924 23 \N \N Darracq t f \N | |
| 49024 23 \N \N Datsun t f \N | |
| 49124 23 \N \N De Tomaso t f \N | |
| 49224 23 \N \N Delage t f \N | |
| 49324 23 \N \N Delahaye t f \N | |
| 49424 23 \N \N DeSoto t f \N | |
| 49524 23 \N \N DKW t f \N | |
| 49624 23 \N \N Dodge t f \N | |
| 49724 23 \N \N Duesenberg t f \N | |
| 49824 23 \N \N Eagle t f \N | |
| 49924 23 \N \N Edsel t f \N | |
| 50024 23 \N \N Elcat t f \N | |
| 50124 23 \N \N Fabrique Nationale de Herstal t f \N | |
| 50224 23 \N \N Ferrari t f \N | |
| 50324 23 \N \N Ferrari S.p.A. t f \N | |
| 50424 23 \N \N Fiat t f \N | |
| 50524 23 \N \N Ford t f \N | |
| 50624 23 \N \N GAZ t f \N | |
| 50724 23 \N \N General Motors t f \N | |
| 50824 23 \N \N Geo t f \N | |
| 50924 23 \N \N GMC t f \N | |
| 51024 23 \N \N Graham-Paige t f \N | |
| 51124 23 \N \N Hillman t f \N | |
| 51224 23 \N \N Hispano-Suiza t f \N | |
| 51324 23 \N \N Holden t f \N | |
| 51424 23 \N \N Honda t f \N | |
| 51524 23 \N \N Horch t f \N | |
| 51624 23 \N \N Hotchkiss t f \N | |
| 51724 23 \N \N HSV t f \N | |
| 51824 23 \N \N Hudson Motor Car Company t f \N | |
| 51924 23 \N \N Humber t f \N | |
| 52024 23 \N \N Hummer t f \N | |
| 52124 23 \N \N Hyundai t f \N | |
| 52224 23 \N \N Hyundai Motor Company t f \N | |
| 52324 23 \N \N Infiniti t f \N | |
| 52424 23 \N \N Iso Rivolta t f \N | |
| 52524 23 \N \N Isuzu t f \N | |
| 52624 23 \N \N Jaguar t f \N | |
| 52724 23 \N \N Jeep t f \N | |
| 52824 23 \N \N Jensen t f \N | |
| 52924 23 \N \N Jensen Motors t f \N | |
| 53024 23 \N \N Jordan t f \N | |
| 53124 23 \N \N Jordan Motor Car Company t f \N | |
| 53224 23 \N \N Kia t f \N | |
| 53324 23 \N \N Kia Motors t f \N | |
| 53424 23 \N \N Lada t f \N | |
| 53524 23 \N \N Lagonda t f \N | |
| 53624 23 \N \N Lamborghini t f \N | |
| 53724 23 \N \N Lanchester Motor Company t f \N | |
| 53824 23 \N \N Lancia t f \N | |
| 53924 23 \N \N Land Rover t f \N | |
| 54024 23 \N \N Lexus t f \N | |
| 54124 23 \N \N Lincoln t f \N | |
| 54224 23 \N \N Locomobile t f \N | |
| 54324 23 \N \N Lotus Car t f \N | |
| 54424 23 \N \N Maserati t f \N | |
| 54524 23 \N \N Maybach t f \N | |
| 54624 23 \N \N Mazda t f \N | |
| 54724 23 \N \N Mercedes-Benz t f \N | |
| 54824 23 \N \N Mercury t f \N | |
| 54924 23 \N \N MG t f \N | |
| 55024 23 \N \N Minerva automobile t f \N | |
| 55124 23 \N \N MINI t f \N | |
| 55224 23 \N \N Mitsubishi t f \N | |
| 55324 23 \N \N Morgan t f \N | |
| 55424 23 \N \N Morris Commercial Cars t f \N | |
| 55524 23 \N \N Morris t f \N | |
| 55624 23 \N \N Morris Motor Company t f \N | |
| 55724 23 \N \N NAG t f \N | |
| 55824 23 \N \N Nash t f \N | |
| 55924 23 \N \N Nissan t f \N | |
| 56024 23 \N \N Oldsmobile t f \N | |
| 56124 23 \N \N Opel t f \N | |
| 56224 23 \N \N Packard t f \N | |
| 56324 23 \N \N Panhard t f \N | |
| 56424 23 \N \N Panoz t f \N | |
| 56524 23 \N \N Panther t f \N | |
| 56624 23 \N \N Peerless t f \N | |
| 56724 23 \N \N Perodua t f \N | |
| 56824 23 \N \N Peugeot t f \N | |
| 56924 23 \N \N Pierce-Arrow t f \N | |
| 57024 23 \N \N Plymouth t f \N | |
| 57124 23 \N \N Pontiac t f \N | |
| 57224 23 \N \N Porsche t f \N | |
| 57324 23 \N \N Proton t f \N | |
| 57424 23 \N \N Rambler t f \N | |
| 57524 23 \N \N Reliant t f \N | |
| 57624 23 \N \N Renault t f \N | |
| 57724 23 \N \N Rinspeed t f \N | |
| 57824 23 \N \N Roamer t f \N | |
| 57924 23 \N \N Rohr t f \N | |
| 58024 23 \N \N Rolls-Royce t f \N | |
| 58124 23 \N \N Rover t f \N | |
| 58224 23 \N \N Saab t f \N | |
| 58324 23 \N \N Saturn t f \N | |
| 58424 23 \N \N Scion t f \N | |
| 58524 23 \N \N SEAT t f \N | |
| 58624 23 \N \N Shelby t f \N | |
| 58724 23 \N \N Simca t f \N | |
| 58824 23 \N \N Smart t f \N | |
| 58924 23 \N \N SsangYong Motor Company t f \N | |
| 59024 23 \N \N Stearns-Knight t f \N | |
| 59124 23 \N \N Steyr t f \N | |
| 59224 23 \N \N Studebaker t f \N | |
| 59324 23 \N \N Subaru t f \N | |
| 59424 23 \N \N Sunbeam Car Company t f \N | |
| 59524 23 \N \N Suzuki t f \N | |
| 59624 23 \N \N Suzuki Motor Corporation t f \N | |
| 59724 23 \N \N Talbot t f \N | |
| 59824 23 \N \N Talbot-Lago t f \N | |
| 59924 23 \N \N Tata t f \N | |
| 60024 23 \N \N Tatra t f \N | |
| 60124 23 \N \N Toyota t f \N | |
| 60224 23 \N \N Toyota Motor Corporation t f \N | |
| 60324 23 \N \N Triumph Motor Company t f \N | |
| 60424 23 \N \N TVR t f \N | |
| 60524 23 \N \N Vauxhall t f \N | |
| 60624 23 \N \N Vauxhall Motors f f \N | |
| 60724 23 \N \N Vector t f \N | |
| 60824 23 \N \N Volkswagen t f \N | |
| 60924 23 \N \N Volkswagen Passenger Cars t f \N | |
| 61024 23 \N \N Volvo Cars t f \N | |
| 61124 23 \N \N Volvo t f \N | |
| 61224 23 \N \N Willys-Knight t f \N | |
| 61324 23 \N \N Wolseley t f \N | |
| 61424 23 \N \N Zastava t f \N | |
| 61524 23 \N \N Zavod Imeni Likhacheva f f \N | |
| 61624 23 \N \N XXX01 f f \N | |
| 61724 23 \N \N XXX02 f f \N | |
| 61824 23 \N \N XXX03 f f \N | |
| 61924 23 \N \N XXX04 f f \N | |
| 62024 23 \N \N XXX05 f f \N | |
| 62124 23 \N \N XXX06 f f \N | |
| 62224 23 \N \N XXX07 f f \N | |
| 62324 23 \N \N XXX08 f f \N | |
| 62424 23 \N \N XXX09 f f \N | |
| 62524 23 \N \N XXX10 f f \N | |
| 62624 23 \N \N XXX11 f f \N | |
| 62724 23 \N \N XXX12 f f \N | |
| 62824 23 \N \N XXX13 f f \N | |
| 62924 23 \N \N XXX14 f f \N | |
| 63024 23 \N \N XXX15 f f \N | |
| 63124 23 \N \N XXX16 f f \N | |
| 63224 23 \N \N XXX17 f f \N | |
| 63324 23 \N \N XXX18 f f \N | |
| 63424 23 \N \N XXX19 f f \N | |
| 63524 23 \N \N XXX20 f f \N | |
| 63624 23 \N \N XXX21 f f \N | |
| 63724 23 \N \N XXX22 f f \N | |
| 63824 23 \N \N XXX23 f f \N | |
| 63924 23 \N \N XXX24 f f \N | |
| 64024 23 \N \N XXX25 f f \N | |
| 64124 23 \N \N XXX26 f f \N | |
| 64224 23 \N \N XXX27 f f \N | |
| 64324 23 \N \N XXX28 f f \N | |
| 64424 23 \N \N XXX29 f f \N | |
| 64524 23 \N \N XXX30 f f \N | |
| 64624 23 \N \N XXX31 f f \N | |
| 64724 23 \N \N XXX32 f f \N | |
| 64824 23 \N \N XXX33 f f \N | |
| 64924 23 \N \N XXX34 f f \N | |
| 65024 23 \N \N XXX35 f f \N | |
| 65124 23 \N \N XXX36 f f \N | |
| 65224 23 \N \N XXX37 f f \N | |
| 65324 23 \N \N XXX38 f f \N | |
| 65424 23 \N \N XXX39 f f \N | |
| 65524 23 \N \N XXX40 f f \N | |
| 65624 23 \N \N XXX41 f f \N | |
| 65724 23 \N \N XXX42 f f \N | |
| 65824 23 \N \N XXX43 f f \N | |
| 65924 23 \N \N XXX44 f f \N | |
| 66024 23 \N \N XXX45 f f \N | |
| 66124 23 \N \N XXX46 f f \N | |
| 66224 23 \N \N XXX47 f f \N | |
| 66324 23 \N \N XXX48 f f \N | |
| 66424 23 \N \N XXX49 f f \N | |
| 66524 23 \N \N XXX50 f f \N | |
| 66624 23 \N \N XXX51 f f \N | |
| 66724 23 \N \N XXX52 f f \N | |
| 66824 23 \N \N XXX53 f f \N | |
| 66924 23 \N \N XXX54 f f \N | |
| 67024 23 \N \N XXX55 f f \N | |
| 67124 23 \N \N XXX56 f f \N | |
| 67224 23 \N \N XXX57 f f \N | |
| 67324 23 \N \N XXX58 f f \N | |
| 67424 23 \N \N XXX59 f f \N | |
| 67524 23 \N \N XXX60 f f \N | |
| 67624 23 \N \N XXX61 f f \N | |
| 67724 23 \N \N XXX62 f f \N | |
| 67824 23 \N \N XXX63 f f \N | |
| 67924 23 \N \N XXX64 f f \N | |
| 68024 23 \N \N XXX65 f f \N | |
| 68124 23 \N \N XXX66 f f \N | |
| 68224 23 \N \N XXX67 f f \N | |
| 68324 23 \N \N XXX68 f f \N | |
| 68424 23 \N \N XXX69 f f \N | |
| 68524 23 \N \N XXX70 f f \N | |
| 68624 23 \N \N XXX71 f f \N | |
| 68724 23 \N \N XXX72 f f \N | |
| 68824 23 \N \N XXX73 f f \N | |
| 68924 23 \N \N XXX74 f f \N | |
| 69024 23 \N \N XXX75 f f \N | |
| 69124 23 \N \N XXX76 f f \N | |
| 69224 23 \N \N XXX77 f f \N | |
| 69324 23 \N \N XXX78 f f \N | |
| 69424 23 \N \N XXX79 f f \N | |
| 69524 23 \N \N XXX80 f f \N | |
| 69624 23 \N \N XXX81 f f \N | |
| 69724 23 \N \N XXX82 f f \N | |
| 69824 23 \N \N XXX83 f f \N | |
| 69924 23 \N \N XXX84 f f \N | |
| 70024 23 \N \N XXX85 f f \N | |
| 70124 23 \N \N XXX86 f f \N | |
| 70224 23 \N \N XXX87 f f \N | |
| 70324 23 \N \N XXX88 f f \N | |
| 70424 23 \N \N XXX89 f f \N | |
| 70524 23 \N \N XXX90 f f \N | |
| 70624 23 \N \N XXX91 f f \N | |
| 70724 23 \N \N XXX92 f f \N | |
| 70824 23 \N \N XXX93 f f \N | |
| 70924 23 \N \N XXX94 f f \N | |
| 71024 23 \N \N XXX95 f f \N | |
| 71124 23 \N \N XXX96 f f \N | |
| 71224 23 \N \N XXX97 f f \N | |
| 71324 23 \N \N XXX98 f f \N | |
| 71424 23 \N \N XXX99 f f \N | |
| 71524 23 \N \N XXX100 f f \N | |
| 71624 23 \N \N XXX101 f f \N | |
| 71724 23 \N \N XXX102 f f \N | |
| 71824 23 \N \N XXX103 f f \N | |
| 71924 23 \N \N XXX104 f f \N | |
| 72024 23 \N \N XXX105 f f \N | |
| 72124 23 \N \N XXX106 f f \N | |
| 72224 23 \N \N XXX107 f f \N | |
| 72324 23 \N \N XXX108 f f \N | |
| 72424 23 \N \N XXX109 f f \N | |
| 72524 23 \N \N XXX110 f f \N | |
| 72624 23 \N \N XXX111 f f \N | |
| 72724 23 \N \N XXX112 f f \N | |
| 72824 23 \N \N XXX113 f f \N | |
| 72924 23 \N \N XXX114 f f \N | |
| 73024 23 \N \N XXX115 f f \N | |
| 73124 23 \N \N XXX116 f f \N | |
| 73224 23 \N \N XXX117 f f \N | |
| 73324 23 \N \N XXX118 f f \N | |
| 73424 23 \N \N XXX119 f f \N | |
| 73524 23 \N \N XXX120 f f \N | |
| 73624 23 \N \N XXX121 f f \N | |
| 73724 23 \N \N XXX122 f f \N | |
| 73824 23 \N \N XXX123 f f \N | |
| 73924 23 \N \N XXX124 f f \N | |
| 74024 23 \N \N XXX125 f f \N | |
| 74124 23 \N \N XXX126 f f \N | |
| 74224 23 \N \N XXX127 f f \N | |
| 74324 23 \N \N XXX128 f f \N | |
| 74424 23 \N \N XXX129 f f \N | |
| 74524 23 \N \N XXX130 f f \N | |
| 74624 23 \N \N XXX131 f f \N | |
| 74724 23 \N \N XXX132 f f \N | |
| 74824 23 \N \N XXX133 f f \N | |
| 74924 23 \N \N XXX134 f f \N | |
| 75024 23 \N \N XXX135 f f \N | |
| 75124 23 \N \N XXX136 f f \N | |
| 75224 23 \N \N XXX137 f f \N | |
| 75324 23 \N \N XXX138 f f \N | |
| 75424 23 \N \N XXX139 f f \N | |
| 75524 23 \N \N XXX140 f f \N | |
| 75624 23 \N \N XXX141 f f \N | |
| 75724 23 \N \N XXX142 f f \N | |
| 75824 23 \N \N XXX143 f f \N | |
| 75924 23 \N \N XXX144 f f \N | |
| 76024 23 \N \N XXX145 f f \N | |
| 76124 23 \N \N XXX146 f f \N | |
| 76224 23 \N \N XXX147 f f \N | |
| 76324 23 \N \N XXX148 f f \N | |
| 76424 23 \N \N XXX149 f f \N | |
| 76524 23 \N \N XXX150 f f \N | |
| 76624 23 \N \N XXX151 f f \N | |
| 76724 23 \N \N XXX152 f f \N | |
| 76824 23 \N \N XXX153 f f \N | |
| 76924 23 \N \N XXX154 f f \N | |
| 77024 23 \N \N XXX155 f f \N | |
| 77124 23 \N \N XXX156 f f \N | |
| 77224 23 \N \N XXX157 f f \N | |
| 77324 23 \N \N XXX158 f f \N | |
| 77424 23 \N \N XXX159 f f \N | |
| 77524 23 \N \N XXX160 f f \N | |
| 77624 23 \N \N XXX161 f f \N | |
| 77724 23 \N \N XXX162 f f \N | |
| 77824 23 \N \N XXX163 f f \N | |
| 77924 23 \N \N XXX164 f f \N | |
| 78024 23 \N \N XXX165 f f \N | |
| 78124 23 \N \N XXX166 f f \N | |
| 78224 23 \N \N XXX167 f f \N | |
| 78324 23 \N \N XXX168 f f \N | |
| 78424 23 \N \N XXX169 f f \N | |
| 78524 23 \N \N XXX170 f f \N | |
| 78624 23 \N \N XXX171 f f \N | |
| 78724 23 \N \N XXX172 f f \N | |
| 78824 23 \N \N XXX173 f f \N | |
| 78924 23 \N \N XXX174 f f \N | |
| 79024 23 \N \N XXX175 f f \N | |
| 79124 23 \N \N XXX176 f f \N | |
| 79224 23 \N \N XXX177 f f \N | |
| 79324 23 \N \N XXX178 f f \N | |
| 79424 23 \N \N XXX179 f f \N | |
| 79524 23 \N \N XXX180 f f \N | |
| 79624 23 \N \N XXX181 f f \N | |
| 79724 23 \N \N XXX182 f f \N | |
| 79824 23 \N \N XXX183 f f \N | |
| 79924 23 \N \N XXX184 f f \N | |
| 80024 23 \N \N XXX185 f f \N | |
| 80124 23 \N \N XXX186 f f \N | |
| 80224 23 \N \N XXX187 f f \N | |
| 80324 23 \N \N XXX188 f f \N | |
| 80424 23 \N \N XXX189 f f \N | |
| 80524 23 \N \N XXX190 f f \N | |
| 80624 23 \N \N XXX191 f f \N | |
| 80724 23 \N \N XXX192 f f \N | |
| 80824 23 \N \N XXX193 f f \N | |
| 80924 23 \N \N XXX194 f f \N | |
| 81024 23 \N \N XXX195 f f \N | |
| 81124 23 \N \N XXX196 f f \N | |
| 81224 23 \N \N XXX197 f f \N | |
| 81324 23 \N \N XXX198 f f \N | |
| 81424 23 \N \N XXX199 f f \N | |
| 81524 23 \N \N XXX200 f f \N | |
| 81624 23 \N \N XXX201 f f \N | |
| 81724 23 \N \N XXX202 f f \N | |
| 81824 23 \N \N XXX203 f f \N | |
| 81924 23 \N \N XXX204 f f \N | |
| 82024 23 \N \N XXX205 f f \N | |
| 82124 23 \N \N XXX206 f f \N | |
| 82224 23 \N \N XXX207 f f \N | |
| 82324 23 \N \N XXX208 f f \N | |
| 82424 23 \N \N XXX209 f f \N | |
| 82524 23 \N \N XXX210 f f \N | |
| 82624 23 \N \N XXX211 f f \N | |
| 82724 23 \N \N XXX212 f f \N | |
| 82824 23 \N \N XXX213 f f \N | |
| 82924 23 \N \N XXX214 f f \N | |
| 83024 23 \N \N XXX215 f f \N | |
| 83124 23 \N \N XXX216 f f \N | |
| 83224 23 \N \N XXX217 f f \N | |
| 83324 23 \N \N XXX218 f f \N | |
| 83424 23 \N \N XXX219 f f \N | |
| 83524 23 \N \N XXX220 f f \N | |
| 83624 23 \N \N XXX221 f f \N | |
| 83724 23 \N \N XXX222 f f \N | |
| 83824 23 \N \N XXX223 f f \N | |
| 83924 23 \N \N XXX224 f f \N | |
| 84024 23 \N \N XXX225 f f \N | |
| 84124 23 \N \N XXX226 f f \N | |
| 84224 23 \N \N XXX227 f f \N | |
| 84324 23 \N \N XXX228 f f \N | |
| 84424 23 \N \N XXX229 f f \N | |
| 84524 23 \N \N XXX230 f f \N | |
| 84624 23 \N \N XXX231 f f \N | |
| 84724 23 \N \N XXX232 f f \N | |
| 84824 23 \N \N XXX233 f f \N | |
| 84924 23 \N \N XXX234 f f \N | |
| 85024 23 \N \N XXX235 f f \N | |
| 85124 23 \N \N XXX236 f f \N | |
| 85224 23 \N \N XXX237 f f \N | |
| 85324 23 \N \N XXX238 f f \N | |
| 85424 23 \N \N XXX239 f f \N | |
| 85524 23 \N \N XXX240 f f \N | |
| 85624 23 \N \N XXX241 f f \N | |
| 85724 23 \N \N XXX242 f f \N | |
| 85824 23 \N \N XXX243 f f \N | |
| 85924 23 \N \N XXX244 f f \N | |
| 86024 23 \N \N XXX245 f f \N | |
| 86124 23 \N \N XXX246 f f \N | |
| 86224 23 \N \N XXX247 f f \N | |
| 86324 23 \N \N XXX248 f f \N | |
| 86424 23 \N \N XXX249 f f \N | |
| 86524 23 \N \N XXX250 f f \N | |
| 86624 23 \N \N XXX251 f f \N | |
| 86724 23 \N \N XXX252 f f \N | |
| 86824 23 \N \N XXX253 f f \N | |
| 86924 23 \N \N XXX254 f f \N | |
| 87024 23 \N \N XXX255 f f \N | |
| 87124 23 \N \N XXX256 f f \N | |
| 87224 23 \N \N XXX257 f f \N | |
| 87324 23 \N \N XXX258 f f \N | |
| 87424 23 \N \N XXX259 f f \N | |
| 87524 23 \N \N XXX260 f f \N | |
| 87624 23 \N \N XXX261 f f \N | |
| 87724 23 \N \N XXX262 f f \N | |
| 87824 23 \N \N XXX263 f f \N | |
| 87924 23 \N \N XXX264 f f \N | |
| 88024 23 \N \N XXX265 f f \N | |
| 88124 23 \N \N XXX266 f f \N | |
| 88224 23 \N \N XXX267 f f \N | |
| 88324 23 \N \N XXX268 f f \N | |
| 88424 23 \N \N XXX269 f f \N | |
| 88524 23 \N \N XXX270 f f \N | |
| 88624 23 \N \N XXX271 f f \N | |
| 88724 23 \N \N XXX272 f f \N | |
| 88824 23 \N \N XXX273 f f \N | |
| 88924 23 \N \N XXX274 f f \N | |
| 89024 23 \N \N XXX275 f f \N | |
| 89124 23 \N \N XXX276 f f \N | |
| 89224 23 \N \N XXX277 f f \N | |
| 89324 23 \N \N XXX278 f f \N | |
| 89424 23 \N \N XXX279 f f \N | |
| 89524 23 \N \N XXX280 f f \N | |
| 89624 23 \N \N XXX281 f f \N | |
| 89724 23 \N \N XXX282 f f \N | |
| 89824 23 \N \N XXX283 f f \N | |
| 89924 23 \N \N XXX284 f f \N | |
| 90024 23 \N \N XXX285 f f \N | |
| 90124 23 \N \N XXX286 f f \N | |
| 90224 23 \N \N XXX287 f f \N | |
| 90324 23 \N \N XXX288 f f \N | |
| 90424 23 \N \N XXX289 f f \N | |
| 90524 23 \N \N XXX290 f f \N | |
| 90624 23 \N \N XXX291 f f \N | |
| 90724 23 \N \N XXX292 f f \N | |
| 90824 23 \N \N XXX293 f f \N | |
| 90924 23 \N \N XXX294 f f \N | |
| 91024 23 \N \N XXX295 f f \N | |
| 91124 23 \N \N XXX296 f f \N | |
| 91224 23 \N \N XXX297 f f \N | |
| 91324 23 \N \N XXX298 f f \N | |
| 91424 23 \N \N XXX299 f f \N | |
| 91524 23 \N \N XXX300 f f \N | |
| 91624 23 \N \N XXX301 f f \N | |
| 91724 23 \N \N XXX302 f f \N | |
| 91824 23 \N \N XXX303 f f \N | |
| 91924 23 \N \N XXX304 f f \N | |
| 92024 23 \N \N XXX305 f f \N | |
| 92124 23 \N \N XXX306 f f \N | |
| 92224 23 \N \N XXX307 f f \N | |
| 92324 23 \N \N XXX308 f f \N | |
| 92424 23 \N \N XXX309 f f \N | |
| 92524 23 \N \N XXX310 f f \N | |
| 92624 23 \N \N XXX311 f f \N | |
| 92724 23 \N \N XXX312 f f \N | |
| 92824 23 \N \N XXX313 f f \N | |
| 92924 23 \N \N XXX314 f f \N | |
| 93024 23 \N \N XXX315 f f \N | |
| 93124 23 \N \N XXX316 f f \N | |
| 93224 23 \N \N XXX317 f f \N | |
| 93324 23 \N \N XXX318 f f \N | |
| 93424 23 \N \N XXX319 f f \N | |
| 93524 23 \N \N XXX320 f f \N | |
| 93624 23 \N \N XXX321 f f \N | |
| 93724 23 \N \N XXX322 f f \N | |
| 93824 23 \N \N XXX323 f f \N | |
| 93924 23 \N \N XXX324 f f \N | |
| 94024 23 \N \N XXX325 f f \N | |
| 94124 23 \N \N XXX326 f f \N | |
| 94224 23 \N \N XXX327 f f \N | |
| 94324 23 \N \N XXX328 f f \N | |
| 94424 23 \N \N XXX329 f f \N | |
| 94524 123 56824 \N 1007 t f \N | |
| 94624 123 56824 \N 104 t f \N | |
| 94724 123 56824 \N 106 t f \N | |
| 94824 123 56824 \N 107 t f \N | |
| 94924 123 56824 \N 108 t f \N | |
| 95024 123 56824 \N 2008 t f \N | |
| 95124 123 56824 \N 201 t f \N | |
| 95224 123 56824 \N 202 t f \N | |
| 95324 123 56824 \N 203 t f \N | |
| 95424 123 56824 \N 204 t f \N | |
| 95524 123 56824 \N 205 t f \N | |
| 95624 123 56824 \N 206 t f \N | |
| 95724 123 56824 \N 206 WRC t f \N | |
| 95824 123 56824 \N 207 t f \N | |
| 95924 123 56824 \N 207 S2000 t f \N | |
| 96024 123 56824 \N 208 t f \N | |
| 96124 123 56824 \N 208 T16 t f \N | |
| 96224 123 56824 \N 3008 t f \N | |
| 96324 123 56824 \N 301 t f \N | |
| 96424 123 56824 \N 301-2 f f \N | |
| 96524 123 56824 \N 302 t f \N | |
| 96624 123 56824 \N 304 t f \N | |
| 96724 123 56824 \N 305 t f \N | |
| 96824 123 56824 \N 306 t f \N | |
| 96924 123 56824 \N 307 t f \N | |
| 97024 123 56824 \N BTC-T Peugeot 307 t f \N | |
| 97124 123 56824 \N 308 t f \N | |
| 97224 123 56824 \N 309 t f \N | |
| 97324 123 56824 \N 4002 t f \N | |
| 97424 123 56824 \N 4007 t f \N | |
| 97524 123 56824 \N 4008 t f \N | |
| 97624 123 56824 \N 401 t f \N | |
| 97724 123 56824 \N 402 t f \N | |
| 97824 123 56824 \N 403 t f \N | |
| 97924 123 56824 \N 404 t f \N | |
| 98024 123 56824 \N 405 t f \N | |
| 98124 123 56824 \N 405 Turbo-16 t f \N | |
| 98224 123 56824 \N 406 t f \N | |
| 98324 123 56824 \N BTC-T Peugeot 406 Coupé t f \N | |
| 98424 123 56824 \N 407 t f \N | |
| 98524 123 56824 \N 408 t f \N | |
| 98624 123 56824 \N 500 M t f \N | |
| 98724 123 56824 \N 5008 t f \N | |
| 98824 123 56824 \N 504 t f \N | |
| 98924 123 56824 \N 505 t f \N | |
| 99024 123 56824 \N 508 t f \N | |
| 99124 123 56824 \N 5CV t f \N | |
| 99224 123 56824 \N 601 t f \N | |
| 99324 123 56824 \N 604 t f \N | |
| 99424 123 56824 \N 605 t f \N | |
| 99524 123 56824 \N 607 t f \N | |
| 99624 123 56824 \N 802 t f \N | |
| 99724 123 56824 \N 806 t f \N | |
| 99824 123 56824 \N 807 t f \N | |
| 99924 123 56824 \N 905 t f \N | |
| 100024 123 56824 \N 908 t f \N | |
| 100124 123 56824 \N 908 HDi FAP t f \N | |
| 100224 123 56824 \N Bébé t f \N | |
| 100324 123 56824 \N Bipper t f \N | |
| 100424 123 56824 \N Boxer t f \N | |
| 100524 123 56824 \N D3 and D4 t f \N | |
| 100624 123 56824 \N DMA t f \N | |
| 100724 123 56824 \N EX3 t f \N | |
| 100824 123 56824 \N Expert t f \N | |
| 100924 123 56824 \N H2Origin t f \N | |
| 101024 123 56824 \N Hoggar t f \N | |
| 101124 123 56824 \N J5 t f \N | |
| 101224 123 56824 \N J7 t f \N | |
| 101324 123 56824 \N J9 t f \N | |
| 101424 123 56824 \N JetForce t f \N | |
| 101524 123 56824 \N Ludix t f \N | |
| 101624 123 56824 \N P4 t f \N | |
| 101724 123 56824 \N Partner t f \N | |
| 101824 123 56824 \N Velv t f \N | |
| 101924 123 56824 \N Quadrilette t f \N | |
| 102024 123 56824 \N Rapido t f \N | |
| 102124 123 56824 \N RCZ t f \N | |
| 102224 123 56824 \N Satelis Compressor t f \N | |
| 102324 123 56824 \N Scoot'Elec t f \N | |
| 102424 123 56824 \N Speedfight t f \N | |
| 102524 123 56824 \N Traveller t f \N | |
| 102624 123 56824 \N Type 1 t f \N | |
| 102724 123 56824 \N Type 10 t f \N | |
| 102824 123 56824 \N Type 105 t f \N | |
| 102924 123 56824 \N Type 108 t f \N | |
| 103024 123 56824 \N Type 118 t f \N | |
| 103124 123 56824 \N Type 125 t f \N | |
| 103224 123 56824 \N Type 126 t f \N | |
| 103324 123 56824 \N Type 14 t f \N | |
| 103424 123 56824 \N Type 15 t f \N | |
| 103524 123 56824 \N Type 1525 t f \N | |
| 103624 123 56824 \N Type 153 t f \N | |
| 103724 123 56824 \N Type 156 t f \N | |
| 103824 123 56824 \N Type 159 t f \N | |
| 103924 123 56824 \N Type 16 t f \N | |
| 104024 123 56824 \N Type 163 t f \N | |
| 104124 123 56824 \N Type 173 t f \N | |
| 104224 123 56824 \N Type 174 t f \N | |
| 104324 123 56824 \N Type 175 t f \N | |
| 104424 123 56824 \N Type 176 t f \N | |
| 104524 123 56824 \N Type 177 t f \N | |
| 104624 123 56824 \N Type 181 t f \N | |
| 104724 123 56824 \N Type 183 t f \N | |
| 104824 123 56824 \N Type 184 t f \N | |
| 104924 123 56824 \N Type 190 t f \N | |
| 105024 123 56824 \N Type 2 t f \N | |
| 105124 123 56824 \N Type 21 t f \N | |
| 105224 123 56824 \N Type 24 t f \N | |
| 105324 123 56824 \N Type 25 t f \N | |
| 105424 123 56824 \N Type 26 t f \N | |
| 105524 123 56824 \N Type 27 t f \N | |
| 105624 123 56824 \N Type 28 t f \N | |
| 105724 123 56824 \N Type 3 t f \N | |
| 105824 123 56824 \N Type 30 t f \N | |
| 105924 123 56824 \N Type 31 t f \N | |
| 106024 123 56824 \N Type 33 t f \N | |
| 106124 123 56824 \N Type 36 t f \N | |
| 106224 123 56824 \N Type 37 t f \N | |
| 106324 123 56824 \N Type 4 t f \N | |
| 106424 123 56824 \N Type 48 t f \N | |
| 106524 123 56824 \N Type 5 t f \N | |
| 106624 123 56824 \N Type 54 t f \N | |
| 106724 123 56824 \N Type 56 t f \N | |
| 106824 123 56824 \N Type 57 t f \N | |
| 106924 123 56824 \N Type 58 t f \N | |
| 107024 123 56824 \N Type 6 t f \N | |
| 107124 123 56824 \N Type 63 t f \N | |
| 107224 123 56824 \N Type 66 t f \N | |
| 107324 123 56824 \N Type 68 t f \N | |
| 107424 123 56824 \N Type 7 t f \N | |
| 107524 123 56824 \N Type 8 t f \N | |
| 107624 123 56824 \N Type 81 t f \N | |
| 107724 123 56824 \N Type 99 t f \N | |
| 107824 123 56824 \N Vivacity t f \N | |
| 107924 123 57624 \N Avantime t f \N | |
| 108024 123 57624 \N Captur t f \N | |
| 108124 123 57624 \N Clio t f \N | |
| 108224 123 57624 \N Duster t f \N | |
| 108324 123 57624 \N Espace t f \N | |
| 108424 123 57624 \N Fluence t f \N | |
| 108524 123 57624 \N Fuego f f \N | |
| 108624 123 57624 \N Kadjar t f \N | |
| 108724 123 57624 \N Koleos t f \N | |
| 108824 123 57624 \N Laguna t f \N | |
| 108924 123 57624 \N Latitude t f \N | |
| 109024 123 57624 \N Logan t f \N | |
| 109124 123 57624 \N Mégane t f \N | |
| 109224 123 57624 \N Medallion t f \N | |
| 109324 123 57624 \N Modus t f \N | |
| 109424 123 57624 \N Pulse t f \N | |
| 109524 123 57624 \N Rodeo t f \N | |
| 109624 123 57624 \N Safrane t f \N | |
| 109724 123 57624 \N Sandero t f \N | |
| 109824 123 57624 \N Scénic t f \N | |
| 109924 123 57624 \N Sport Spider t f \N | |
| 110024 123 57624 \N Talisman t f \N | |
| 110124 123 57624 \N Thalia t f \N | |
| 110224 123 57624 \N Twingo t f \N | |
| 110324 123 57624 \N Twizy t f \N | |
| 110424 123 57624 \N Vel Satis t f \N | |
| 110524 123 57624 \N Wind t f \N | |
| 110624 123 57624 \N Zoe t f \N | |
| 110724 123 57624 \N 3 t f \N | |
| 110824 123 57624 \N 4 t f \N | |
| 110924 123 57624 \N 5 t f \N | |
| 111024 123 57624 \N 6 t f \N | |
| 111124 123 57624 \N 7 t f \N | |
| 111224 123 57624 \N 8 t f \N | |
| 111324 123 57624 \N 9 t f \N | |
| 111424 123 57624 \N 10 t f \N | |
| 111524 123 57624 \N 11 t f \N | |
| 111624 123 57624 \N 12 t f \N | |
| 111724 123 57624 \N 14 t f \N | |
| 111824 123 57624 \N 15 t f \N | |
| 111924 123 57624 \N 16 t f \N | |
| 112024 123 57624 \N 17 t f \N | |
| 112124 123 57624 \N 18 t f \N | |
| 112224 123 57624 \N 19 t f \N | |
| 112324 123 57624 \N 20 t f \N | |
| 112424 123 57624 \N 21 t f \N | |
| 112524 123 57624 \N 25 t f \N | |
| 112624 123 57624 \N 30 t f \N | |
| 112724 123 57624 \N Renault 4 Fourgonette f f \N | |
| 112824 123 57624 \N Renault 50 Series t f \N | |
| 112924 123 57624 \N Renault Estafette t f \N | |
| 113024 123 57624 \N Renault Express t f \N | |
| 113124 123 57624 \N Renault Kangoo t f \N | |
| 113224 123 57624 \N Renault Kerax t f \N | |
| 113324 123 57624 \N Renault Magnum t f \N | |
| 113424 123 57624 \N Renault Mascott t f \N | |
| 113524 123 57624 \N Renault Master t f \N | |
| 113624 123 57624 \N Renault Maxity t f \N | |
| 113724 123 57624 \N Renault Midlum t f \N | |
| 113824 123 57624 \N Renault Trafic t f \N | |
| 113924 123 57624 \N Premium t f \N | |
| 114024 123 57624 \N G Range Manager t f \N | |
| 114124 123 57624 \N R Range Major t f \N | |
| 114224 123 48324 \N AX t f \N | |
| 114324 123 48324 \N BX t f \N | |
| 114424 123 48324 \N C15 t f \N | |
| 114524 123 48324 \N Evasion t f \N | |
| 114624 123 48324 \N Citroën Fukang 988 f f \N | |
| 114724 123 48324 \N Saxo t f \N | |
| 114824 123 48324 \N XM t f \N | |
| 114924 123 48324 \N Xantia t f \N | |
| 115024 123 48324 \N ZX t f \N | |
| 115124 123 48324 \N Synergie t f \N | |
| 115224 123 48324 \N Xsara t f \N | |
| 115324 123 48324 \N Xsara Picasso t f \N | |
| 115424 123 48324 \N C5 t f \N | |
| 115524 123 48324 \N C3 t f \N | |
| 115624 123 48324 \N C2 t f \N | |
| 115724 123 48324 \N C6 t f \N | |
| 115824 123 48324 \N C-Crosser t f \N | |
| 115924 323 \N \N Sky Blue t f \N | |
| 116024 323 \N \N Peacock Blue t f \N | |
| 116124 323 \N \N Oxford Blue t f \N | |
| 116224 323 \N \N Strong Blue t f \N | |
| 116324 323 \N \N Middle Blue t f \N | |
| 116424 323 \N \N Pale Blue t f \N | |
| 116524 323 \N \N Deep Saxe Blue t f \N | |
| 116624 323 \N \N Cobalt Blue t f \N | |
| 116724 323 \N \N Pale Roundel Blue t f \N | |
| 116824 323 \N \N Light French Blue t f \N | |
| 116924 323 \N \N Eau-De-Nil t f \N | |
| 117024 323 \N \N Grass Green t f \N | |
| 117124 323 \N \N Brilliant Green t f \N | |
| 117224 323 \N \N Middle Bronze Green t f \N | |
| 117324 323 \N \N Light Brunswick Green t f \N | |
| 117424 323 \N \N Deep Brunswick Green t f \N | |
| 117524 323 \N \N Dark Green t f \N | |
| 117624 323 \N \N Deep Chrome Green t f \N | |
| 117724 323 \N \N Light Olive Green t f \N | |
| 117824 323 \N \N Forest Green t f \N | |
| 117924 323 \N \N Spruce Green t f \N | |
| 118024 323 \N \N Olive Drab t f \N | |
| 118124 323 \N \N Primrose t f \N | |
| 118224 323 \N \N Light Brown t f \N | |
| 118324 323 \N \N Dark Earth t f \N | |
| 118424 323 \N \N Deep Cream t f \N | |
| 118524 323 \N \N Golden Yellow t f \N | |
| 118624 323 \N \N Middle Buff t f \N | |
| 118724 323 \N \N Bold Yellow t f \N | |
| 118824 323 \N \N Light Beige t f \N | |
| 118924 323 \N \N Biscuit t f \N | |
| 119024 323 \N \N Light Straw t f \N | |
| 119124 323 \N \N Camouflage Beige t f \N | |
| 119224 323 \N \N Dark Brown t f \N | |
| 119324 323 \N \N Dark Camouflage Desert Sand t f \N | |
| 119424 323 \N \N Dark Camouflage Brown t f \N | |
| 119524 323 \N \N Venetian Red t f \N | |
| 119624 323 \N \N Salmon Pink t f \N | |
| 119724 323 \N \N Light Purple Brown t f \N | |
| 119824 323 \N \N Shell Pink t f \N | |
| 119924 323 \N \N Deep Buff t f \N | |
| 120024 323 \N \N Leaf Brown t f \N | |
| 120124 323 \N \N Signal Red t f \N | |
| 120224 323 \N \N Currant Red t f \N | |
| 120324 323 \N \N Maroon t f \N | |
| 120424 323 \N \N Light Orange t f \N | |
| 120524 323 \N \N Apricot t f \N | |
| 120624 323 \N \N Rail Red t f \N | |
| 120724 323 \N \N Light Aircraft Grey t f \N | |
| 120824 323 \N \N French Grey t f \N | |
| 120924 323 \N \N Dark Admiralty Grey t f \N | |
| 121024 323 \N \N Slate t f \N | |
| 121124 323 \N \N PRU Blue t f \N | |
| 121224 323 \N \N Dark Sea Grey t f \N | |
| 121324 323 \N \N Extra Dark Sea Grey t f \N | |
| 121424 323 \N \N Middle Graphite t f \N | |
| 121524 323 \N \N Dark Weatherwork Grey t f \N | |
| 121624 323 \N \N Aircraft Grey t f \N | |
| 121724 323 \N \N Light Admiralty Grey t f \N | |
| 121824 323 \N \N Light Violet t f \N | |
| 121924 323 \N \N Turquoise Blue t f \N | |
| 122024 323 \N \N Azure Blue t f \N | |
| 122124 323 \N \N Royal Blue t f \N | |
| 122224 323 \N \N Aircraft Blue t f \N | |
| 122324 323 \N \N Roundel Blue t f \N | |
| 122424 323 \N \N Arctic Blue t f \N | |
| 122524 323 \N \N Rail Blue t f \N | |
| 122624 323 \N \N French Blue t f \N | |
| 122724 323 \N \N Oriental Blue t f \N | |
| 122824 323 \N \N Sky t f \N | |
| 122924 323 \N \N Sea Green t f \N | |
| 123024 323 \N \N Olive Green t f \N | |
| 123124 323 \N \N Light Bronze Green t f \N | |
| 123224 323 \N \N Deep Bronze Green t f \N | |
| 123324 323 \N \N Middle Brunswick Green t f \N | |
| 123424 323 \N \N Emerald Green t f \N | |
| 123524 323 \N \N Bold Green t f \N | |
| 123624 323 \N \N Opaline Green t f \N | |
| 123724 323 \N \N Verdigris Green t f \N | |
| 123824 323 \N \N Aircraft Grey Green t f \N | |
| 123924 323 \N \N NATO Green t f \N | |
| 124024 323 \N \N Canary Yellow t f \N | |
| 124124 323 \N \N Grapefruit t f \N | |
| 124224 323 \N \N Very Dark Drab t f \N | |
| 124324 323 \N \N Pale Cream t f \N | |
| 124424 323 \N \N Lemon t f \N | |
| 124524 323 \N \N Light Buff t f \N | |
| 124624 323 \N \N Light Stone t f \N | |
| 124724 323 \N \N Vellum t f \N | |
| 124824 323 \N \N Manilla t f \N | |
| 124924 323 \N \N Camouflage Desert Sand t f \N | |
| 125024 323 \N \N Beige t f \N | |
| 125124 323 \N \N Middle Brown t f \N | |
| 125224 323 \N \N Golden Brown t f \N | |
| 125324 323 \N \N Camouflage Red t f \N | |
| 125424 323 \N \N Terracotta t f \N | |
| 125524 323 \N \N Red Oxide t f \N | |
| 125624 323 \N \N Deep Indian Red t f \N | |
| 125724 323 \N \N Dark Crimson t f \N | |
| 125824 323 \N \N Pale Roundel Red t f \N | |
| 125924 323 \N \N Gulf Red t f \N | |
| 126024 323 \N \N Service Brown t f \N | |
| 126124 323 \N \N Post Office Red Cherry t f \N | |
| 126224 323 \N \N Crimson t f \N | |
| 126324 323 \N \N Ruby t f \N | |
| 126424 323 \N \N Bold Red t f \N | |
| 126524 323 \N \N International Orange t f \N | |
| 126624 323 \N \N Camouflage Grey t f \N | |
| 126724 323 \N \N Dark Camouflage Grey t f \N | |
| 126824 323 \N \N Light Grey t f \N | |
| 126924 323 \N \N RAF Blue/Grey t f \N | |
| 127024 323 \N \N Lead t f \N | |
| 127124 323 \N \N Medium Sea Grey t f \N | |
| 127224 323 \N \N Light Slate Grey t f \N | |
| 127324 323 \N \N Night t f \N | |
| 127424 323 \N \N Light Weatherwork Grey t f \N | |
| 127524 323 \N \N Smoke Grey t f \N | |
| 127624 323 \N \N Dove Grey t f \N | |
| 127724 323 \N \N Dark Violet t f \N | |
| 127824 623 \N \N Acer t f \N | |
| 127924 623 \N \N Alcatel t f \N | |
| 128024 623 \N \N Allview t f \N | |
| 128124 623 \N \N Amazon t f \N | |
| 128224 623 \N \N Amoi t f \N | |
| 128324 623 \N \N Apple t f \N | |
| 128424 623 \N \N Archos t f \N | |
| 128524 623 \N \N Asus t f \N | |
| 128624 623 \N \N AT&T t f \N | |
| 128724 623 \N \N Benefon t f \N | |
| 128824 623 \N \N BenQ t f \N | |
| 128924 623 \N \N BenQ-Siemens t f \N | |
| 129024 623 \N \N Bird t f \N | |
| 129124 623 \N \N BlackBerry t f \N | |
| 129224 623 \N \N BLU t f \N | |
| 129324 623 \N \N Bosch t f \N | |
| 129424 623 \N \N BQ t f \N | |
| 129524 623 \N \N Casio t f \N | |
| 129624 623 \N \N Cat t f \N | |
| 129724 623 \N \N Celkon t f \N | |
| 129824 623 \N \N Chea t f \N | |
| 129924 623 \N \N Coolpad t f \N | |
| 130024 623 \N \N Dell t f \N | |
| 130124 623 \N \N Emporia t f \N | |
| 130224 623 \N \N Energizer t f \N | |
| 130324 623 \N \N Ericsson t f \N | |
| 130424 623 \N \N Eten t f \N | |
| 130524 623 \N \N Fujitsu Siemens t f \N | |
| 130624 623 \N \N Garmin-Asus t f \N | |
| 130724 623 \N \N Gigabyte t f \N | |
| 130824 623 \N \N Gionee t f \N | |
| 130924 623 \N \N Google t f \N | |
| 131024 623 \N \N Haier t f \N | |
| 131124 623 \N \N HPHTC t f \N | |
| 131224 623 \N \N Huaweii-mate t f \N | |
| 131324 623 \N \N i-mobile t f \N | |
| 131424 623 \N \N Icemobile t f \N | |
| 131524 623 \N \N InnostreamiNQ t f \N | |
| 131624 623 \N \N IntexJolla t f \N | |
| 131724 623 \N \N Karbonn t f \N | |
| 131824 623 \N \N Kyocera t f \N | |
| 131924 623 \N \N LavaLeEco t f \N | |
| 132024 623 \N \N Lenovo t f \N | |
| 132124 623 \N \N LG t f \N | |
| 132224 623 \N \N Maxon t f \N | |
| 132324 623 \N \N Maxwest t f \N | |
| 132424 623 \N \N Meizu t f \N | |
| 132524 623 \N \N Micromax t f \N | |
| 132624 623 \N \N Microsoft t f \N | |
| 132724 623 \N \N Mitac t f \N | |
| 132824 623 \N \N Mitsubishi t f \N | |
| 132924 623 \N \N Modu t f \N | |
| 133024 623 \N \N Motorola t f \N | |
| 133124 623 \N \N MWg t f \N | |
| 133224 623 \N \N NEC t f \N | |
| 133324 623 \N \N Neonode t f \N | |
| 133424 623 \N \N NIU t f \N | |
| 133524 623 \N \N Nokia t f \N | |
| 133624 623 \N \N Nvidia t f \N | |
| 133724 623 \N \N O2 t f \N | |
| 133824 623 \N \N OnePlus t f \N | |
| 133924 623 \N \N Oppo t f \N | |
| 134024 623 \N \N Orange t f \N | |
| 134124 623 \N \N Palm t f \N | |
| 134224 623 \N \N Panasonic t f \N | |
| 134324 623 \N \N Pantech t f \N | |
| 134424 623 \N \N Parla t f \N | |
| 134524 623 \N \N Philips t f \N | |
| 134624 623 \N \N Plum t f \N | |
| 134724 623 \N \N Posh t f \N | |
| 134824 623 \N \N Prestigio t f \N | |
| 134924 623 \N \N QMobile t f \N | |
| 135024 623 \N \N Qtek t f \N | |
| 135124 623 \N \N Sagem t f \N | |
| 135224 623 \N \N Samsung t f \N | |
| 135324 623 \N \N Sendo t f \N | |
| 135424 623 \N \N Sewon t f \N | |
| 135524 623 \N \N Sharp t f \N | |
| 135624 623 \N \N Siemens t f \N | |
| 135724 623 \N \N Sonim t f \N | |
| 135824 623 \N \N Sony t f \N | |
| 135924 623 \N \N Sony Ericsson t f \N | |
| 136024 623 \N \N SpiceT-Mobile t f \N | |
| 136124 623 \N \N Tel.Me t f \N | |
| 136224 623 \N \N Telit t f \N | |
| 136324 623 \N \N Thuraya t f \N | |
| 136424 623 \N \N Toshiba t f \N | |
| 136524 623 \N \N Unnecto t f \N | |
| 136624 623 \N \N Vertu t f \N | |
| 136724 623 \N \N Verykoolvivo t f \N | |
| 136824 623 \N \N VK Mobile t f \N | |
| 136924 623 \N \N Vodafone t f \N | |
| 137024 623 \N \N Wiko t f \N | |
| 137124 623 \N \N WND t f \N | |
| 137224 623 \N \N XCute t f \N | |
| 137324 623 \N \N Xiaomi t f \N | |
| 137424 623 \N \N XOLO t f \N | |
| 137524 623 \N \N Yezz t f \N | |
| 137624 623 \N \N Yota t f \N | |
| 137724 623 \N \N YU t f \N | |
| 137824 623 \N \N ZTE t f \N | |
| 137924 823 128324 \N Iphone 5s t f \N | |
| 138024 823 128324 \N IPhone 6 plus t f \N | |
| 138124 823 128324 \N IPhone 6 t f \N | |
| 138224 823 128324 \N iPad pro t f \N | |
| 138324 823 128324 \N iPad 2 t f \N | |
| 138424 823 128324 \N iPad mini 4 t f \N | |
| 138524 823 128324 \N IPad 3 t f \N | |
| 138624 823 128324 \N iPad Air 2 t f \N | |
| 138724 823 128324 \N iPhone 5c t f \N | |
| 138824 823 128324 \N iPad mini 2 t f \N | |
| 138924 823 128324 \N iPad mini 3 t f \N | |
| 139024 823 135224 \N Galaxy S7 Edge t f \N | |
| 139124 823 135224 \N Galaxy A3 t f \N | |
| 139224 823 135224 \N Galaxy Express Prime t f \N | |
| 139324 823 135224 \N Galaxy Tab E 8.0 t f \N | |
| 139424 823 135224 \N Galaxy On7 t f \N | |
| 139524 823 135224 \N Galaxy S3 t f \N | |
| 139624 823 135224 \N Galaxy Trend t f \N | |
| 139724 823 135224 \N Galaxy Note 5 t f \N | |
| 139824 823 135224 \N Galaxy J7 t f \N | |
| 139924 823 135224 \N Galaxy A9 pro t f \N | |
| 140024 823 135224 \N Galaxy S7 t f \N | |
| 140124 823 135224 \N Galaxy A5 t f \N | |
| 140224 823 135224 \N Galaxy J3 t f \N | |
| 140324 823 135224 \N Galaxy A7 t f \N | |
| 140424 823 135224 \N Galaxy J1 t f \N | |
| 140524 823 132024 \N A916 t f \N | |
| 140624 823 132024 \N K80M t f \N | |
| 140724 823 132024 \N A6010 Plus t f \N | |
| 140824 823 132024 \N ZUK Z2 Pro t f \N | |
| 140924 823 132024 \N Vibe K5 t f \N | |
| 141024 823 132024 \N Vibe S1 t f \N | |
| 141124 823 132024 \N K3 Note t f \N | |
| 141224 823 132024 \N A7000 t f \N | |
| 141324 823 132024 \N Vibe K4 Note t f \N | |
| 141424 823 132024 \N K5 Note t f \N | |
| 141524 823 132024 \N Tab 3 10 t f \N | |
| 141624 823 135824 \N Xperia Z5 t f \N | |
| 141724 823 135824 \N Xperia C5 t f \N | |
| 141824 823 135824 \N Xperia Z3+ t f \N | |
| 141924 823 135824 \N Xperia X t f \N | |
| 142024 823 135824 \N Xperia M5 t f \N | |
| 142124 823 135824 \N Xperia C4 t f \N | |
| 142224 823 135824 \N Xperia M4 Aqua t f \N | |
| 142324 823 135824 \N Xperia Z4 Tablet t f \N | |
| 142424 823 135824 \N Xperia E3 t f \N | |
| 142524 823 135824 \N Xperia E4 t f \N | |
| 142624 823 135824 \N Xperia Z4v t f \N | |
| 142724 823 135824 \N Xperia Z5 compact t f \N | |
| 142824 823 132124 \N K7 t f \N | |
| 142924 823 132124 \N K10 t f \N | |
| 143024 823 132124 \N G5 t f \N | |
| 143124 823 132124 \N K5 t f \N | |
| 143224 823 132124 \N K4 t f \N | |
| 143324 823 132124 \N Stylo 2 t f \N | |
| 143424 823 132124 \N Ray t f \N | |
| 143524 823 132124 \N X cam t f \N | |
| 143624 823 132124 \N V10 t f \N | |
| 143724 823 133524 \N X+ t f \N | |
| 143824 823 133524 \N Lumia Icon t f \N | |
| 143924 823 133524 \N Lumia 730 t f \N | |
| 144024 823 133524 \N Lumia 950 t f \N | |
| 144124 823 133524 \N Lumia 638 t f \N | |
| 144224 823 133524 \N Lumia 1520 t f \N | |
| 144324 823 133524 \N Lumia 525 t f \N | |
| 144424 823 131124 \N Desire 825 t f \N | |
| 144524 823 131124 \N One E9 t f \N | |
| 144624 823 131124 \N 10 Lifestyle t f \N | |
| 144724 823 131124 \N Desire 830 t f \N | |
| 144824 823 131124 \N One X9 t f \N | |
| 144924 823 131124 \N Desire 626 t f \N | |
| 145024 823 131124 \N One S9 t f \N | |
| 145124 823 131124 \N Butterfly 3 t f \N | |
| 145224 823 129124 \N Z3 t f \N | |
| 145324 823 129124 \N Classic t f \N | |
| 145424 823 129124 \N Z10 t f \N | |
| 145524 823 129124 \N Q5 t f \N | |
| 145624 823 129124 \N Passport t f \N | |
| 145724 823 131224 \N Honor V8 t f \N | |
| 145824 823 131224 \N MediaPad M2 t f \N | |
| 145924 823 131224 \N Honor 5C t f \N | |
| 146024 823 131224 \N P9 lite t f \N | |
| 146124 823 131224 \N P9 plus t f \N | |
| 146224 823 131224 \N Honor Holy 2 plus t f \N | |
| 146324 823 127824 \N Liquid X2 t f \N | |
| 146424 823 127824 \N Liquid Jade 2 t f \N | |
| 146524 823 127824 \N Predator 8 t f \N | |
| 146624 823 127824 \N Iconia Tab 10 t f \N | |
| 146724 823 127824 \N Liquid z330 t f \N | |
| 146824 823 127824 \N Liquid M330 t f \N | |
| 146924 823 128524 \N ZenPad 10 Z300C t f \N | |
| 147024 823 128524 \N Zenfone 2 Deluxe ZE551ML t f \N | |
| 147124 823 128524 \N Zenfone 2 Laser ZE551KL t f \N | |
| 147224 823 128524 \N Zenfone Go T500 t f \N | |
| 147324 823 128524 \N Live G500TG t f \N | |
| 147424 823 128524 \N Zenfone Go ZB551KL t f \N | |
| 147524 823 128524 \N Zenfone Go ZB452KG t f \N | |
| 147624 823 127924 \N POP 7 LTE t f \N | |
| 147724 823 127924 \N POP 4S t f \N | |
| 147824 823 127924 \N Idol 4S t f \N | |
| 147924 823 127924 \N Fierce XL t f \N | |
| 148024 823 127924 \N Flash 2 t f \N | |
| 148124 823 127924 \N Pixi 3 t f \N | |
| 148224 823 127924 \N Go play t f \N | |
| 148324 823 133824 \N X t f \N | |
| 148424 823 133824 \N 2 t f \N | |
| 148524 823 133824 \N One t f \N | |
| 148624 823 136424 \N Excite Go t f \N | |
| 148724 823 136424 \N Excite 7c t f \N | |
| 148824 823 136424 \N Excite pro t f \N | |
| 148924 823 136424 \N Excite Write t f \N | |
| 149024 823 136424 \N Excite 10 t f \N | |
| 149124 823 137324 \N Mi 5 t f \N | |
| 149224 823 137324 \N Redme 3 pro t f \N | |
| 149324 823 137324 \N Mi max t f \N | |
| 149424 823 137324 \N Redmi note 3 t f \N | |
| 149524 823 137324 \N Mi 4 t f \N | |
| 149624 823 137324 \N Lumia 650 t f \N | |
| 149724 823 137324 \N Lumia 640 t f \N | |
| 149824 823 137324 \N Lumia 550 t f \N | |
| 149924 823 137324 \N Lumia 532 t f \N | |
| 150024 823 137324 \N Lumia 435 t f \N | |
| 150124 823 137324 \N Lumia 640 dual sim t f \N | |
| 150224 823 137324 \N Surface 2 t f \N | |
| 150324 823 132524 \N Canvas 6 pro t f \N | |
| 150424 823 132524 \N Canvas 6 t f \N | |
| 150524 823 132524 \N Canvas Pulse 4G t f \N | |
| 150624 823 132524 \N Canvas Mega 4G t f \N | |
| 150724 823 132524 \N Canvas Nitro 3 t f \N | |
| 150824 823 132524 \N Canvas Express 4G t f \N | |
| 150924 823 132524 \N Canvas Amaze 4G t f \N | |
| 151024 823 130824 \N Elife E7 Quad Core t f \N | |
| 151124 823 130824 \N P5 mini t f \N | |
| 151224 823 130824 \N W909 t f \N | |
| 151324 823 130824 \N S8 t f \N | |
| 151424 823 130824 \N Marathon M5 mini t f \N | |
| 151524 823 130824 \N Marathon M5 enjoy t f \N | |
| 151624 823 130824 \N Marathon M5 lite t f \N | |
| 151724 823 131624 \N Aqua Craze t f \N | |
| 151824 823 131624 \N Aqua Ace t f \N | |
| 151924 823 131624 \N Aqua trend t f \N | |
| 152024 823 131624 \N Aqua Power t f \N | |
| 152124 823 131624 \N Aqua Xtreme t f \N | |
| 152224 823 131624 \N Aqua Star L t f \N | |
| 152324 823 131624 \N Aqua Y2 Remote t f \N | |
| 152424 823 131624 \N Aqua Xtreme II t f \N | |
| 152524 823 137424 \N Era X t f \N | |
| 152624 823 137424 \N Era 4K t f \N | |
| 152724 823 137424 \N Era 4G t f \N | |
| 152824 823 137424 \N Black 1X t f \N | |
| 152924 823 137424 \N A1010 t f \N | |
| 153024 823 137424 \N Opus 3 t f \N | |
| 153124 823 133924 \N Find 7 5.5" 32GB 4G UK SIM-Free Smartphone t f \N | |
| 153224 823 133924 \N R7 Lite t f \N | |
| 153324 823 133924 \N Find 7A 5.5" 16GB 4G UK SIM-Free Smartphone t f \N | |
| 153424 823 133924 \N F1 plus t f \N | |
| 153524 823 133924 \N R7 plus t f \N | |
| 153624 1023 \N \N Apple t f \N | |
| 153724 1023 \N \N Acer t f \N | |
| 153824 1023 \N \N Lenovo t f \N | |
| 153924 1023 \N \N Asus t f \N | |
| 154024 1023 \N \N Hewlett Packard t f \N | |
| 154124 1023 \N \N Dell t f \N | |
| 154224 1023 \N \N Samsung t f \N | |
| 154324 1023 \N \N Sony t f \N | |
| 154424 1023 \N \N Toshiba t f \N | |
| 154524 1123 153624 \N Macbook Air 11-inch t f \N | |
| 154624 1123 153624 \N MacBook Air 13-inch t f \N | |
| 154724 1123 153624 \N MacBook Pro 13-inch t f \N | |
| 154824 1123 153624 \N MacBook Pro 13-inch with retina display t f \N | |
| 154924 1123 153624 \N MacBook Pro 15-inch with retina display t f \N | |
| 155024 1123 153624 \N MF839B/A 13-Inch MacBook Pro with Retina Display t f \N | |
| 155124 1123 153624 \N iMac 21.5-Inch t f \N | |
| 155224 1123 153624 \N 20-inch Core 2 Duo, 2.66GHz, 2GB RAM, 320GB HDD, GeForce 9400M/SD t f \N | |
| 155324 1123 153624 \N Mac 27-inch All-in-One Desktop PC with Magic Mouse and Wireless Keyboard t f \N | |
| 155424 1123 153724 \N Aspire E5-551 15.6-Inch Notebook t f \N | |
| 155524 1123 153724 \N Aspire One Cloudbook 11, AO1-131 11.6-inch t f \N | |
| 155624 1123 153724 \N Aspire E5-571 15.6-Inch Notebook t f \N | |
| 155724 1123 153724 \N Aspire XC t f \N | |
| 155824 1123 153724 \N Predator Z35 t f \N | |
| 155924 1123 153724 \N Predator X34 t f \N | |
| 156024 1123 153724 \N Aspire V Nitro t f \N | |
| 156124 1123 153724 \N Aspire S7-392 t f \N | |
| 156224 1123 153724 \N Aspire E5-573 15.6-Inch t f \N | |
| 156324 1123 153724 \N Aspire ES1 14 inch t f \N | |
| 156424 1123 153824 \N Ideapad 700 t f \N | |
| 156524 1123 153824 \N Thinkpad X260 t f \N | |
| 156624 1123 153824 \N X1 Yoga t f \N | |
| 156724 1123 153824 \N X260 t f \N | |
| 156824 1123 153824 \N X1 Carbon t f \N | |
| 156924 1123 153824 \N T460p t f \N | |
| 157024 1123 153824 \N T460s t f \N | |
| 157124 1123 153824 \N T460 t f \N | |
| 157224 1123 153824 \N T560 t f \N | |
| 157324 1123 153824 \N YOGA 260 t f \N | |
| 157424 1123 153824 \N YOGA 460 t f \N | |
| 157524 1123 153824 \N E460 t f \N | |
| 157624 1123 153824 \N E560 t f \N | |
| 157724 1123 153824 \N L460 t f \N | |
| 157824 1123 153824 \N L560 t f \N | |
| 157924 1123 153824 \N P70 t f \N | |
| 158024 1123 153824 \N Ideapad 100-15IBY 15.6 inch Laptop Notebook t f \N | |
| 158124 1123 153924 \N C200 ChromeBook t f \N | |
| 158224 1123 153924 \N VivoBook N series t f \N | |
| 158324 1123 153924 \N N551VW t f \N | |
| 158424 1123 153924 \N VivoBook K series t f \N | |
| 158524 1123 153924 \N X555LA t f \N | |
| 158624 1123 153924 \N X553SA t f \N | |
| 158724 1123 153924 \N X540SA t f \N | |
| 158824 1123 153924 \N Zenbook pro UX501 t f \N | |
| 158924 1123 153924 \N Zenbook UX303 t f \N | |
| 159024 1123 153924 \N ET2230IUK-BC047Q Desktop t f \N | |
| 159124 1123 153924 \N E402MA 14-Inch Laptop Notebook t f \N | |
| 159224 1123 153924 \N X555LA-XX2264T 15.6-Inch Notebook t f \N | |
| 159324 1123 153924 \N K501UB-DM021T 15.6-Inch Notebook t f \N | |
| 159424 1123 153924 \N C201PA-FD0009 11.6 inch Chromebook Laptop t f \N | |
| 159524 1123 154024 \N Elitebook 8560p t f \N | |
| 159624 1123 154024 \N Envy t f \N | |
| 159724 1123 154024 \N ENVY x360 15-w102na Convertible Laptop t f \N | |
| 159824 1123 154024 \N Pavilion x360 11-k101na Laptop t f \N | |
| 159924 1123 154024 \N Pavilion 15-ab231na Laptop (Natural Silver) t f \N | |
| 160024 1123 154024 \N Pavilion x360 13-s108na Convertible Laptop t f \N | |
| 160124 1123 154024 \N EliteBook Folio G1 Laptop t f \N | |
| 160224 1123 154024 \N EliteBook 1040 G3 Touchscreen Laptop t f \N | |
| 160324 1123 154024 \N EliteBook 1040 G3 Laptop t f \N | |
| 160424 1123 154024 \N Elite x2 1012 Detachable PC t f \N | |
| 160524 1123 154024 \N ENVY 13-d008na Full-HD Laptop t f \N | |
| 160624 1123 154024 \N Spectre Pro x360 G2 Touchscreen Convertible PC t f \N | |
| 160724 1123 154024 \N Stream 11-r000na Laptop 32GB t f \N | |
| 160824 1123 154024 \N Star Wars™ Special Edition Laptop 15-an000na t f \N | |
| 160924 1123 154124 \N Inspiron 3000 series t f \N | |
| 161024 1123 154124 \N Inspiron 5000 series t f \N | |
| 161124 1123 154124 \N Inspiron 7000 series t f \N | |
| 161224 1123 154124 \N Gaming Series t f \N | |
| 161324 1123 154124 \N XPS 12 2-in-1 t f \N | |
| 161424 1123 154124 \N XPS 13 t f \N | |
| 161524 1123 154124 \N XPS 15 t f \N | |
| 161624 1123 154124 \N Alienware 13 t f \N | |
| 161724 1123 154124 \N Alienware 15 t f \N | |
| 161824 1123 154124 \N Alienware 17 t f \N | |
| 161924 1123 154124 \N OptiPlex Computer t f \N | |
| 162024 1123 154124 \N OptiPlex 760 t f \N | |
| 162124 1123 154124 \N EliteBook 8470p 14" t f \N | |
| 162224 1123 154124 \N Inspiron 7000 t f \N | |
| 162324 1123 154124 \N Vostro 3558 15.6-Inch HD Laptop t f \N | |
| 162424 1123 154124 \N Inspiron 15-5555 15.6-Inch Laptop t f \N | |
| 162524 1123 154124 \N 15.6 inch Inspiron 15-3000 Series Notebook t f \N | |
| 162624 1123 154224 \N ATIV Book 9 NP940X3G-K04US Model 13.3-inch Touchscreen Laptop t f \N | |
| 162724 1123 154224 \N Chromebook XE303C12-A01UK 11.6-inch t f \N | |
| 162824 1123 154224 \N NP900X3L-K06US 13.3 inch Ultrabook t f \N | |
| 162924 1123 154224 \N Chromebook 2 XE500C12-K01US 11.6-Inch t f \N | |
| 163024 1123 154224 \N 350V5C 15.6-inch t f \N | |
| 163124 1123 154224 \N RV510 15.6 inch t f \N | |
| 163224 1123 154224 \N NP550P7C-S05UK 17.3-inch Notebook t f \N | |
| 163324 1123 154224 \N 540U3C 13.3-inch Touchscreen t f \N | |
| 163424 1123 154224 \N Ativ Book2 NP270E5G-K02UK t f \N | |
| 163524 1123 154224 \N RV515 15.6 inch Laptop t f \N | |
| 163624 1123 154224 \N Notebook 9 pro t f \N | |
| 163724 1123 154224 \N Series 3 300E5A 15.6 inch t f \N | |
| 163824 1123 154224 \N NP905S3G-K03UK 13.3 inch ATIV 9 Lite t f \N | |
| 163924 1123 154224 \N Series 3 XE303 11.6 inch Chromebook-Silver t f \N | |
| 164024 1123 154224 \N NP900X5L-K02US 15.6 inch Ultrabook t f \N | |
| 164124 1123 154324 \N VAIO SVE1511L1EW.CEK 15.5-inch t f \N | |
| 164224 1123 154324 \N Vaio VPCEH1S8E/B.CEK E-Series 15.5 Inch t f \N | |
| 164324 1123 154324 \N VAIO S12 13.3 inch t f \N | |
| 164424 1123 154324 \N SVS1311N9ES.CEK 13.3-inch t f \N | |
| 164524 1123 154324 \N Vaio Fit 15 E 15-inch t f \N | |
| 164624 1123 154324 \N VAIO SVE1511L1EW.CEK 15.5-inch t f \N | |
| 164724 1123 154324 \N Vaio Duo 13 Touchscreen t f \N | |
| 164824 1123 154324 \N VAIO SVE1512B1EW t f \N | |
| 164924 1123 154424 \N PLM02E-00D003EN CB30-B-104 13 inch Chromebook Laptop t f \N | |
| 165024 1123 154424 \N Satellite C55-C-175 15.6 inch Laptop t f \N | |
| 165124 1123 154424 \N CB30-B-103 13.3 inch Chromebook Laptop t f \N | |
| 165224 723 \N \N Canon t f \N | |
| 165324 723 \N \N Panasonic t f \N | |
| 165424 723 \N \N Hewlett Packard t f \N | |
| 165524 723 \N \N Epson t f \N | |
| 165624 723 \N \N Kyocera t f \N | |
| 165724 723 \N \N Xerox t f \N | |
| 165824 723 \N \N Lexmark t f \N | |
| 165924 723 \N \N Toshiba t f \N | |
| 166024 723 \N \N Samsung t f \N | |
| 166124 723 \N \N Dell t f \N | |
| 166224 723 \N \N Ricoh t f \N | |
| 166324 723 \N \N Konica t f \N | |
| 166424 723 \N \N Brother t f \N | |
| 166524 723 \N \N OKI t f \N | |
| 166624 923 165224 \N Océ VarioPrint 120 t f \N | |
| 166724 923 165224 \N Océ VarioPrint 135 t f \N | |
| 166824 923 165224 \N PIXMA MX924 t f \N | |
| 166924 923 165224 \N PIXMA iX6840 t f \N | |
| 167024 923 165224 \N Pixma MG4250 t f \N | |
| 167124 923 165224 \N Pixma MX475 t f \N | |
| 167224 923 165224 \N Pixma MG3650 t f \N | |
| 167324 923 165224 \N MG5750 t f \N | |
| 167424 923 165224 \N Pixma iP7250 t f \N | |
| 167524 923 165324 \N DP-MbB545 t f \N | |
| 167624 923 165324 \N DP-MB331 t f \N | |
| 167724 923 165324 \N DP-MB537 t f \N | |
| 167824 923 165324 \N KX-MC6260 t f \N | |
| 167924 923 165324 \N KX-MC6020 t f \N | |
| 168024 923 165324 \N KX-MB2177 t f \N | |
| 168124 923 165324 \N KX-MB2090 t f \N | |
| 168224 923 165424 \N Deskjet 3630 t f \N | |
| 168324 923 165424 \N E910 t f \N | |
| 168424 923 165424 \N Officejet K5000 t f \N | |
| 168524 923 165424 \N Photosmart B100 t f \N | |
| 168624 923 165424 \N Envy 5642 t f \N | |
| 168724 923 165424 \N OfficeJet pro 6830 t f \N | |
| 168824 923 165424 \N Deskjet 3632 t f \N | |
| 168924 923 165424 \N Officejet 5740 t f \N | |
| 169024 923 165424 \N Officejet pro 8610 t f \N | |
| 169124 923 165524 \N Home XP-235 t f \N | |
| 169224 923 165524 \N WorkForce WF-2630WF t f \N | |
| 169324 923 165524 \N WORKFORCE AL-M8100DN SERIES t f \N | |
| 169424 923 165524 \N WORKFORCE AL-C300N SERIES t f \N | |
| 169524 923 165524 \N L365 t f \N | |
| 169624 923 165524 \N L110 t f \N | |
| 169724 923 165524 \N L-565 t f \N | |
| 169824 923 165524 \N WorkForce WF-2510WF t f \N | |
| 169924 923 165524 \N EcoTank ET-2550 t f \N | |
| 170024 923 165524 \N Home XP-335 t f \N | |
| 170124 923 165624 \N FS-2100DN t f \N | |
| 170224 923 165624 \N FS-1041 t f \N | |
| 170324 923 165624 \N FS-1040 t f \N | |
| 170424 923 165624 \N FS-1120 t f \N | |
| 170524 923 165624 \N ECOSYS P6021cdn t f \N | |
| 170624 923 165624 \N ECOSYS t f \N | |
| 170724 923 165624 \N Ecosys P 2135 t f \N | |
| 170824 923 165624 \N FS-2020D t f \N | |
| 170924 923 165624 \N FS C 5250 DN t f \N | |
| 171024 923 165724 \N Phaser 6500V_N t f \N | |
| 171124 923 165724 \N Phaser 3250dn t f \N | |
| 171224 923 165724 \N Phaser 3260 t f \N | |
| 171324 923 165724 \N WorkCentre 6508 t f \N | |
| 171424 923 165724 \N WorkCentre 5755 t f \N | |
| 171524 923 165724 \N Phaser 6022 t f \N | |
| 171624 923 165724 \N WorkCentre 3225 t f \N | |
| 171724 923 165724 \N WorkCentre 6505vn t f \N | |
| 171824 923 165724 \N WorkCentre 6205vbi t f \N | |
| 171924 923 165724 \N ColorQube 8580 t f \N | |
| 172024 923 165824 \N CS310dn t f \N | |
| 172124 923 165824 \N MX310dn t f \N | |
| 172224 923 165824 \N MS510dn t f \N | |
| 172324 923 165824 \N X264DN t f \N | |
| 172424 923 165824 \N CX310 t f \N | |
| 172524 923 165924 \N e-STUDIO 5560C t f \N | |
| 172624 923 165924 \N e-STUDIO306LP t f \N | |
| 172724 923 165924 \N e-STUDIO305CP t f \N | |
| 172824 923 165924 \N B-EX4T1-TS12-QM-R - B-EX4T t f \N | |
| 172924 923 165924 \N B-SA4TP-GS12-QM-R t f \N | |
| 173024 923 166024 \N SL-M2022/SEE t f \N | |
| 173124 923 166024 \N SL-C467W t f \N | |
| 173224 923 166024 \N M2070 t f \N | |
| 173324 923 166024 \N SL-M2020w t f \N | |
| 173424 923 166024 \N M2026w t f \N | |
| 173524 923 166024 \N M4020 t f \N | |
| 173624 923 166024 \N K2200ND t f \N | |
| 173724 923 166024 \N MI1676 t f \N | |
| 173824 923 166024 \N SCX-4321NS t f \N | |
| 173924 923 166024 \N SCX-3401 t f \N | |
| 174024 923 166024 \N M2070w t f \N | |
| 174124 923 166024 \N C480FW t f \N | |
| 174224 923 166124 \N B1160 t f \N | |
| 174324 923 166124 \N B1160W t f \N | |
| 174424 923 166124 \N 210-ABWL t f \N | |
| 174524 923 166124 \N B2360DN t f \N | |
| 174624 923 166124 \N S2815dn t f \N | |
| 174724 923 166124 \N H815dw t f \N | |
| 174824 923 166124 \N E515dn t f \N | |
| 174924 923 166124 \N C1760nw t f \N | |
| 175024 923 166124 \N 210-AEHH t f \N | |
| 175124 923 166124 \N 210-ABWK t f \N | |
| 175224 923 166224 \N SP201N t f \N | |
| 175324 923 166224 \N SPC-240DN t f \N | |
| 175424 923 166224 \N SP 3600DN t f \N | |
| 175524 923 166224 \N Aficio SG 3100SNw t f \N | |
| 175624 923 166224 \N MP171L t f \N | |
| 175724 923 166224 \N SP 210 t f \N | |
| 175824 923 166224 \N SP111 t f \N | |
| 175924 923 166224 \N SP 210su t f \N | |
| 176024 923 166324 \N Minolta Bizhub 215 t f \N | |
| 176124 923 166324 \N C200 t f \N | |
| 176224 923 166324 \N Bizhub C3100P t f \N | |
| 176324 923 166324 \N Bizhub 3300P t f \N | |
| 176424 923 166324 \N Bizhub 4700P t f \N | |
| 176524 923 166324 \N Bizhub 1590P t f \N | |
| 176624 923 166324 \N bizhub 1500W t f \N | |
| 176724 923 166324 \N Magicolor 1650EN t f \N | |
| 176824 923 166324 \N Magicolor 4650EN t f \N | |
| 176924 923 166324 \N magicolor 1690MF t f \N | |
| 177024 923 166324 \N 4750EN t f \N | |
| 177124 923 166424 \N DCP-J562DW t f \N | |
| 177224 923 166424 \N MFC-J5320DW t f \N | |
| 177324 923 166424 \N DCP-J4120DW t f \N | |
| 177424 923 166424 \N DCP-1510 t f \N | |
| 177524 923 166424 \N MFC-9970CDW t f \N | |
| 177624 923 166424 \N P-Touch DK 22205 t f \N | |
| 177724 923 166424 \N MFC-J4620DW t f \N | |
| 177824 923 166424 \N DCPL2520DWRF1 t f \N | |
| 177924 923 166424 \N MFC-9330CDW t f \N | |
| 178024 923 166424 \N DCP1512A t f \N | |
| 178124 923 166424 \N HL1110 t f \N | |
| 178224 923 166524 \N C321DN t f \N | |
| 178324 923 166524 \N B432DN t f \N | |
| 178424 923 166524 \N C531DN t f \N | |
| 178524 923 166524 \N B412DN t f \N | |
| 178624 923 166524 \N MC562DW t f \N | |
| 178724 923 166524 \N B410D t f \N | |
| 178824 923 166524 \N C711dn t f \N | |
| 178924 923 166524 \N MB451dn t f \N | |
| 179024 923 166524 \N C 511 DN t f \N | |
| \. | |
| -- | |
| -- Name: refvalid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('refvalid', 179024, true); | |
| -- | |
| -- Data for Name: settings; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY settings (name, user_id, data, created) FROM stdin; | |
| dashboard-widgets-statWidget 18604 {"active": {"show": true, "order": 5}, "tcofleet": {"show": true, "order": 8}, "lifecycle": {"show": true, "order": 1}, "car-alerts": {"show": true, "order": 2}, "phone-alerts": {"show": true, "order": 3}, "generic-alerts": {"show": true, "order": 4}, "makedistribution": {"show": true, "order": 6}, "avgfeedistribution": {"show": true, "order": 11}, "carco2distribution": {"show": true, "order": 12}, "contractssuppliers": {"show": true, "order": 17}, "contractdistribution": {"show": true, "order": 9}, "caravgfeedistribution": {"show": true, "order": 15}, "makemodeldistribution": {"show": true, "order": 7}, "avgdurationdistribution": {"show": true, "order": 10}, "carcontractdistribution": {"show": true, "order": 13}, "caravgmileagedistribution": {"show": true, "order": 16}, "caravgdurationdistribution": {"show": true, "order": 14}} 2016-09-26 09:41:48.909026 | |
| dashboard-widgets-kpi 18604 {"damages": {"show": true, "order": 5}, "mileage": {"show": false, "order": 11}, "average-fee": {"show": true, "order": 10}, "tco-by-year": {"show": true, "order": 3}, "users-count": {"show": true, "order": 2}, "assets-count": {"show": true, "order": 1}, "tco-by-quarter": {"show": false, "order": 8}, "average-mileage": {"show": false, "order": 12}, "fuel-consumption": {"show": true, "order": 7}, "average-co2-emission": {"show": false, "order": 9}, "average-fuel-consumption": {"show": false, "order": 4}, "average-contract-duration": {"show": false, "order": 6}} 2016-09-26 09:41:48.910821 | |
| onboarding 18604 {"dashboard": true, "dashboard-2": true} 2016-09-26 09:41:51.749281 | |
| \. | |
| -- | |
| -- Data for Name: store; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY store (id, uid, digest, size, name, path, mime, charset, deleted, uploaded) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: store_mapping; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY store_mapping (store_id, entity_id) FROM stdin; | |
| \. | |
| -- | |
| -- Name: storeitemid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('storeitemid', 12, false); | |
| -- | |
| -- Data for Name: structure_assettype; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY structure_assettype (structure_id, asset_type, is_cost) FROM stdin; | |
| 2101 vehicle.car f | |
| 2201 vehicle.car t | |
| 2301 vehicle.car t | |
| 2401 vehicle.car t | |
| 2501 vehicle.car t | |
| 2601 vehicle.car t | |
| 2701 vehicle.car t | |
| 2801 vehicle.car t | |
| 2901 vehicle.car t | |
| 3001 vehicle.car t | |
| 3101 vehicle.car t | |
| 3201 vehicle.car t | |
| 3301 vehicle.car t | |
| 3401 electronic.phone f | |
| 3501 electronic.phone t | |
| 3601 electronic.phone t | |
| 3701 electronic.phone t | |
| 3801 electronic.phone t | |
| 3901 electronic.phone t | |
| 4001 electronic.phone t | |
| 4101 electronic.phone t | |
| 4201 electronic.phone t | |
| 4301 electronic.phone t | |
| 4401 vehicle.car t | |
| 4501 electronic.printer f | |
| 4601 electronic.printer t | |
| 4701 electronic.printer t | |
| 4801 electronic.printer t | |
| 4901 electronic.printer t | |
| 5001 electronic.printer t | |
| 5101 electronic.printer t | |
| 5201 electronic.printer t | |
| 5301 electronic.printer t | |
| 5401 electronic.computer f | |
| 5501 electronic.computer t | |
| 5601 electronic.computer t | |
| 5701 electronic.computer t | |
| 5801 electronic.computer t | |
| 5901 electronic.computer t | |
| 6001 electronic.phone t | |
| 6101 vehicle.car t | |
| 6201 vehicle.car t | |
| 6301 generic.generic f | |
| 6401 generic.generic t | |
| 6501 generic.generic t | |
| 6601 generic.generic t | |
| 6701 generic.generic t | |
| 6801 generic.generic t | |
| \. | |
| -- | |
| -- Data for Name: structure_country; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY structure_country (structure_id, country_id, is_default) FROM stdin; | |
| 401 31 f | |
| 7401 31 t | |
| \. | |
| -- | |
| -- Data for Name: structure_roles; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY structure_roles (structure_id, roles) FROM stdin; | |
| 1 {france,uk} | |
| 101 {crm,hr} | |
| 201 {} | |
| 301 {} | |
| 401 {} | |
| 501 {manager} | |
| 601 {} | |
| 701 {} | |
| 801 {} | |
| 901 {} | |
| 1001 {} | |
| 1101 {} | |
| 1201 {} | |
| 1301 {} | |
| 1401 {} | |
| 1501 {} | |
| 1601 {} | |
| 1701 {} | |
| 1801 {} | |
| 1901 {structures-manage,exchange-manage,assets-manage,costs-read,costs-write,statistics-query,users-manage,allocations-write,addresses-read,addresses-search,addresses-write,store-manage} | |
| \. | |
| -- | |
| -- Name: structureid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('structureid', 7401, true); | |
| -- | |
| -- Data for Name: structures; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY structures (id, label, description, created, updated, assign, type, system, legalentity, attributes, source) FROM stdin; | |
| 1 Legal Entities Legal entities hierarchy 2016-09-26 09:39:57.144814 2016-09-26 09:39:57.144814 any 1 t f {"isdefault": false} init | |
| 101 HR Human Resources hierarchy 2016-09-26 09:39:57.146278 2016-09-26 09:39:57.146278 any 2 t f {"isdefault": false} init | |
| 201 Businesses Company businesses 2016-09-26 09:39:57.14728 2016-09-26 09:39:57.14728 any 0 t f {"isdefault": false} init | |
| 301 Project Current projects 2016-09-26 09:39:57.148263 2016-09-26 09:39:57.148263 any 0 t f {"isdefault": false} init | |
| 401 Company LTD Company Worldwide Corporation 2016-09-26 09:39:57.14932 2016-09-26 09:39:57.14932 any 1 f t {"isdefault": false} demo | |
| 501 Acme France Acme France 2016-09-26 09:39:57.150366 2016-09-26 09:39:57.150366 any 4 f f {"isdefault": false} demo | |
| 601 Acme IDF Acme Île de France 2016-09-26 09:39:57.151412 2016-09-26 09:39:57.151412 any 4 f f {"isdefault": false} demo | |
| 701 Acme Paris Agence Paris 2016-09-26 09:39:57.152451 2016-09-26 09:39:57.152451 any 4 f f {"isdefault": false} demo | |
| 801 Acme IDF Ouest Agence Versailles 2016-09-26 09:39:57.153459 2016-09-26 09:39:57.153459 any 4 f f {"isdefault": false} demo | |
| 901 Acme Sud-Est Acme PACA et Sud Est 2016-09-26 09:39:57.154504 2016-09-26 09:39:57.154504 any 4 f f {"isdefault": false} demo | |
| 1001 Acme Marseille Agence Marseille 2016-09-26 09:39:57.155502 2016-09-26 09:39:57.155502 any 4 f f {"isdefault": false} demo | |
| 1101 Acme Nice Agence Côte d'Azur 2016-09-26 09:39:57.15652 2016-09-26 09:39:57.15652 any 4 f f {"isdefault": false} demo | |
| 1201 Cost Codes Internal Cost Codes 2016-09-26 09:39:57.157516 2016-09-26 09:39:57.157516 any 4 t f {"isdefault": false} init | |
| 1301 Accounting French Accounting Cost Codes 2016-09-26 09:39:57.158513 2016-09-26 09:39:57.158513 any 3 t f {"isdefault": false} init | |
| 1401 Goods Goods 2016-09-26 09:39:57.15949 2016-09-26 09:39:57.15949 any 0 f f {"isdefault": false} init | |
| 1501 Employees Employees 2016-09-26 09:39:57.160472 2016-09-26 09:39:57.160472 any 0 f f {"isdefault": false} init | |
| 1601 Taxes Taxes 2016-09-26 09:39:57.161443 2016-09-26 09:39:57.161443 any 0 f f {"isdefault": false} init | |
| 1701 Sales Sales 2016-09-26 09:39:57.162392 2016-09-26 09:39:57.162392 any 0 f f {"isdefault": false} init | |
| 1801 Properties Properties 2016-09-26 09:39:57.163388 2016-09-26 09:39:57.163388 any 0 f f {"isdefault": false} init | |
| 1901 Managers Managers 2016-09-26 09:39:57.164532 2016-09-26 09:39:57.164532 any 0 f f {"isdefault": false} init | |
| 2001 Vehicle Costs specifics to automotive (cars & trucks etc...) 2016-09-26 09:39:57.165845 2016-09-26 09:39:57.165845 none 3 f f {"isdefault": false} init | |
| 2101 Car Costs specifics to cars 2016-09-26 09:39:57.167023 2016-09-26 09:39:57.167023 none 3 t f {"isdefault": false} init | |
| 2201 Fuel Fuel specific costs 2016-09-26 09:39:57.168137 2016-09-26 09:39:57.168137 none 3 t f {"isdefault": false} init | |
| 2301 Rent Rent costs (vehicle rents) 2016-09-26 09:39:57.16913 2016-09-26 09:39:57.16913 none 3 t f {"isdefault": false} init | |
| 2401 Insurance Insurance (any cost insurance) 2016-09-26 09:39:57.17009 2016-09-26 09:39:57.17009 none 3 t f {"isdefault": false} init | |
| 2501 Tyres Tyres (winter / summer tyres) 2016-09-26 09:39:57.173758 2016-09-26 09:39:57.173758 none 3 t f {"isdefault": false} init | |
| 2601 Maintenance Maintenance (preventive / curative) 2016-09-26 09:39:57.174705 2016-09-26 09:39:57.174705 none 3 t f {"isdefault": false} init | |
| 2701 Tolls Tolls (Not vehicles specific taxes) 2016-09-26 09:39:57.17565 2016-09-26 09:39:57.17565 none 3 t f {"isdefault": false} init | |
| 2801 Parking Parking 2016-09-26 09:39:57.176587 2016-09-26 09:39:57.176587 none 3 t f {"isdefault": false} init | |
| 2901 Fines Fines (Speed cameras, parking, etc.) 2016-09-26 09:39:57.177544 2016-09-26 09:39:57.177544 none 3 t f {"isdefault": false} init | |
| 3001 Replacement Replacement (parts excluding lobours) 2016-09-26 09:39:57.178502 2016-09-26 09:39:57.178502 none 3 t f {"isdefault": false} init | |
| 3101 Assistance Assistance 2016-09-26 09:39:57.179463 2016-09-26 09:39:57.179463 none 3 t f {"isdefault": false} init | |
| 3201 Repairs Repairs (labours) 2016-09-26 09:39:57.180503 2016-09-26 09:39:57.180503 none 3 t f {"isdefault": false} init | |
| 3301 Cleaning Cleaning 2016-09-26 09:39:57.181534 2016-09-26 09:39:57.181534 none 3 t f {"isdefault": false} init | |
| 3401 Phone Phone Costs 2016-09-26 09:39:57.182536 2016-09-26 09:39:57.182536 none 3 t f {"isdefault": false} init | |
| 3501 Purchase Purchase (Phone) 2016-09-26 09:39:57.18354 2016-09-26 09:39:57.18354 none 3 t f {"isdefault": false} init | |
| 3601 Calls Calls 2016-09-26 09:39:57.184523 2016-09-26 09:39:57.184523 none 3 t f {"isdefault": false} init | |
| 3701 Data Data 2016-09-26 09:39:57.185527 2016-09-26 09:39:57.185527 none 3 t f {"isdefault": false} init | |
| 3801 SMS/MMS SMS/MMS 2016-09-26 09:39:57.186515 2016-09-26 09:39:57.186515 none 3 t f {"isdefault": false} init | |
| 3901 International calls International calls 2016-09-26 09:39:57.187474 2016-09-26 09:39:57.187474 none 3 t f {"isdefault": false} init | |
| 4001 International data International data 2016-09-26 09:39:57.188456 2016-09-26 09:39:57.188456 none 3 t f {"isdefault": false} init | |
| 4101 Plans Plans 2016-09-26 09:39:57.189431 2016-09-26 09:39:57.189431 none 3 t f {"isdefault": false} init | |
| 4201 Maintenance Maintenance (OS Update) 2016-09-26 09:39:57.19041 2016-09-26 09:39:57.19041 none 3 t f {"isdefault": false} init | |
| 4301 Damage Damages (Phone) 2016-09-26 09:39:57.191441 2016-09-26 09:39:57.191441 none 3 t f {"isdefault": false} init | |
| 4401 Damage Damages (Vehicle) 2016-09-26 09:39:57.192334 2016-09-26 09:39:57.192334 none 3 t f {"isdefault": false} init | |
| 4501 Printer Printer costs 2016-09-26 09:39:57.193277 2016-09-26 09:39:57.193277 none 3 t f {"isdefault": false} init | |
| 4601 Purchase Purchase (Printer) 2016-09-26 09:39:57.19426 2016-09-26 09:39:57.19426 none 3 t f {"isdefault": false} init | |
| 4701 Ink Ink 2016-09-26 09:39:57.195235 2016-09-26 09:39:57.195235 none 3 t f {"isdefault": false} init | |
| 4801 Paper Paper 2016-09-26 09:39:57.196219 2016-09-26 09:39:57.196219 none 3 t f {"isdefault": false} init | |
| 4901 Toner Toner 2016-09-26 09:39:57.197201 2016-09-26 09:39:57.197201 none 3 t f {"isdefault": false} init | |
| 5001 Rent Rent costs (printer rents) 2016-09-26 09:39:57.198178 2016-09-26 09:39:57.198178 none 3 t f {"isdefault": false} init | |
| 5101 Assistance Assistance (printers) 2016-09-26 09:39:57.19914 2016-09-26 09:39:57.19914 none 3 t f {"isdefault": false} init | |
| 5201 Maintenance Maintenance (Printer) 2016-09-26 09:39:57.200105 2016-09-26 09:39:57.200105 none 3 t f {"isdefault": false} init | |
| 5301 Damage Damages (Printer) 2016-09-26 09:39:57.201083 2016-09-26 09:39:57.201083 none 3 t f {"isdefault": false} init | |
| 5401 Computer Computer costs 2016-09-26 09:39:57.202057 2016-09-26 09:39:57.202057 none 3 t f {"isdefault": false} init | |
| 5501 Purchase Purchase (Computer) 2016-09-26 09:39:57.203031 2016-09-26 09:39:57.203031 none 3 t f {"isdefault": false} init | |
| 5601 Accessories Accessories (Computer) 2016-09-26 09:39:57.204005 2016-09-26 09:39:57.204005 none 3 t f {"isdefault": false} init | |
| 5701 Rent Rent costs (Computer rents) 2016-09-26 09:39:57.204988 2016-09-26 09:39:57.204988 none 3 t f {"isdefault": false} init | |
| 5801 Maintenance Maintenance (Computer) 2016-09-26 09:39:57.205966 2016-09-26 09:39:57.205966 none 3 t f {"isdefault": false} init | |
| 5901 Damage Damages (Computer) 2016-09-26 09:39:57.206931 2016-09-26 09:39:57.206931 none 3 t f {"isdefault": false} init | |
| 6001 Accessories Accessories (Phone) 2016-09-26 09:39:57.207893 2016-09-26 09:39:57.207893 none 3 t f {"isdefault": false} init | |
| 6101 Accessories Accessories (Car) 2016-09-26 09:39:57.208868 2016-09-26 09:39:57.208868 none 3 t f {"isdefault": false} init | |
| 6201 Options Options (Car) 2016-09-26 09:39:57.209844 2016-09-26 09:39:57.209844 none 3 t f {"isdefault": false} init | |
| 6301 Generic Generic costs 2016-09-26 09:39:57.210835 2016-09-26 09:39:57.210835 none 3 t f {"isdefault": false} init | |
| 6401 Rent Rent costs (Generic asset) 2016-09-26 09:39:57.212258 2016-09-26 09:39:57.212258 none 3 t f {"isdefault": false} init | |
| 6501 Purchase Purchase costs (Generic asset) 2016-09-26 09:39:57.213185 2016-09-26 09:39:57.213185 none 3 t f {"isdefault": false} init | |
| 6601 Assistance Assistance (Generic asset) 2016-09-26 09:39:57.214112 2016-09-26 09:39:57.214112 none 3 t f {"isdefault": false} init | |
| 6701 Accessories Accessories (Generic asset) 2016-09-26 09:39:57.21519 2016-09-26 09:39:57.21519 none 3 t f {"isdefault": false} init | |
| 6801 Damage Damages (Generic asset) 2016-09-26 09:39:57.216138 2016-09-26 09:39:57.216138 none 3 t f {"isdefault": false} init | |
| 6901 Business Unit A Company Business A 2016-09-26 09:39:57.217064 2016-09-26 09:39:57.217064 any 0 f f {"isdefault": false} demo | |
| 7001 Business Unit B Company Business B 2016-09-26 09:39:57.217984 2016-09-26 09:39:57.217984 any 0 f f {"isdefault": false} demo | |
| 7101 Project A Company project A 2016-09-26 09:39:57.218898 2016-09-26 09:39:57.218898 any 0 f f {"isdefault": false} demo | |
| 7201 Project B Company project A 2016-09-26 09:39:57.219825 2016-09-26 09:39:57.219825 any 0 f f {"isdefault": false} demo | |
| 7301 Location Company locations 2016-09-26 09:39:57.220745 2016-09-26 09:39:57.220745 any 0 t f {"isdefault": false} init | |
| 7401 Bulbthings LTD Default Legal entity 2016-09-26 09:41:11.170326 2016-09-26 09:41:11.170326 any 1 f t {"isdefault": true} init | |
| \. | |
| -- | |
| -- Data for Name: structureshistory; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY structureshistory (created, structureid, parentid, stateid, period, description, userid) FROM stdin; | |
| 2016-09-26 09:39:57.279906+01 1 \N Created ["2010-01-01 00:00:00+00","2010-12-31 23:59:00+00"] \N \N | |
| 2016-09-26 09:39:57.281148+01 101 \N Created ["2010-01-01 00:00:00+00","2010-12-31 23:59:00+00"] \N \N | |
| 2016-09-26 09:39:57.282144+01 201 \N Created ["2010-01-01 00:00:00+00","2010-12-31 23:59:00+00"] \N \N | |
| 2016-09-26 09:39:57.283138+01 301 \N Created ["2010-01-01 00:00:00+00","2010-12-31 23:59:00+00"] \N \N | |
| 2016-09-26 09:39:57.284136+01 401 1 Created ["2010-01-01 00:00:00+00","2010-12-31 23:59:00+00"] \N \N | |
| 2016-09-26 09:39:57.285037+01 1201 \N Created ["2010-01-01 00:00:00+00","2010-12-31 23:59:00+00"] \N \N | |
| 2016-09-26 09:39:57.285954+01 1301 \N Created ["2010-01-01 00:00:00+00","2010-12-31 23:59:00+00"] \N \N | |
| 2016-09-26 09:39:57.286847+01 1501 1201 Created ["2010-01-01 00:00:00+00","2010-12-31 23:59:00+00"] \N \N | |
| 2016-09-26 09:39:57.287766+01 1601 1201 Created ["2010-01-01 00:00:00+00","2010-12-31 23:59:00+00"] \N \N | |
| 2016-09-26 09:39:57.288685+01 1701 1201 Created ["2010-01-01 00:00:00+00","2010-12-31 23:59:00+00"] \N \N | |
| 2016-09-26 09:39:57.289588+01 1801 1201 Created ["2010-01-01 00:00:00+00","2010-12-31 23:59:00+00"] \N \N | |
| 2016-09-26 09:39:57.290497+01 1901 101 Created ["2010-01-01 00:00:00+00","2010-12-31 23:59:00+00"] \N \N | |
| 2016-09-26 09:39:57.291403+01 1501 1301 Created ["2011-01-01 00:00:00+00","2011-12-31 23:59:00+00"] \N \N | |
| 2016-09-26 09:39:57.292213+01 1601 1301 Created ["2011-01-01 00:00:00+00","2011-12-31 23:59:00+00"] \N \N | |
| 2016-09-26 09:39:57.293178+01 1701 1301 Created ["2011-01-01 00:00:00+00","2011-12-31 23:59:00+00"] \N \N | |
| 2016-09-26 09:39:57.294131+01 1801 1301 Created ["2011-01-01 00:00:00+00","2011-12-31 23:59:00+00"] \N \N | |
| 2016-09-26 09:39:57.295078+01 1 \N Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.296006+01 101 \N Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.296991+01 201 \N Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.297937+01 301 \N Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.298813+01 401 1 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.299766+01 1201 \N Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.300685+01 1301 \N Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.301609+01 1501 1201 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.302549+01 1601 1201 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.303462+01 1701 1201 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.304394+01 1801 1201 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.305322+01 1901 101 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.306178+01 2101 \N Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.307097+01 2201 2101 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.308029+01 2301 2101 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.308964+01 2401 2101 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.309892+01 2501 2101 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.310816+01 2601 2101 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.311749+01 2701 2101 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.312678+01 2801 2101 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.313539+01 2901 2101 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.314466+01 3001 2101 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.315396+01 3101 2101 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.316334+01 3201 2101 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.317262+01 3301 2101 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.318183+01 3401 \N Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.319098+01 3501 3401 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.320032+01 3601 3401 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.320889+01 3701 3401 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.321815+01 3801 3401 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.322739+01 3901 3401 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.323672+01 4001 3401 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.3246+01 4101 3401 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.325588+01 4201 3401 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.326523+01 4301 3401 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.327381+01 4401 2101 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.328296+01 4501 \N Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.329213+01 4601 4501 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.330137+01 4701 4501 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.331073+01 4801 4501 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.331999+01 4901 4501 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.332926+01 5001 4501 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.333851+01 5101 4501 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.334671+01 5201 4501 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.335597+01 5301 4501 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.336526+01 5401 \N Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.337442+01 5501 5401 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.338375+01 5601 5401 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.339309+01 5701 5401 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.340237+01 5801 5401 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.341147+01 5901 5401 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.342345+01 6001 3401 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.343258+01 6101 2101 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.344185+01 6201 2101 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.345107+01 6301 \N Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.345993+01 6401 6301 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.34691+01 6501 6301 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.347838+01 6601 6301 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.34877+01 6701 6301 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.349688+01 6801 6301 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.350641+01 6901 201 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.351683+01 7001 201 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.352853+01 7101 301 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.354013+01 7201 301 Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:39:57.354985+01 7301 \N Created ["2012-01-01 00:00:00+00",) \N \N | |
| 2016-09-26 09:41:11.172523+01 7401 1 Created [-infinity,infinity] \N \N | |
| \. | |
| -- | |
| -- Data for Name: structuretypes; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY structuretypes (id, name, system, description) FROM stdin; | |
| 0 generic t Generic | |
| 1 legal t Legal | |
| 2 hr t HR | |
| 3 cost t Cost | |
| 4 trash t Trash | |
| \. | |
| -- | |
| -- Data for Name: supplier_structure; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY supplier_structure (supplier_id, structure_id) FROM stdin; | |
| 34 2401 | |
| 134 2401 | |
| 234 2401 | |
| 334 2201 | |
| 434 2201 | |
| 534 2101 | |
| 634 2101 | |
| 734 2101 | |
| 534 3201 | |
| 634 3201 | |
| 734 3201 | |
| 834 2101 | |
| 934 3401 | |
| 1034 2101 | |
| 1134 2101 | |
| 1234 2101 | |
| 1334 2101 | |
| 1434 2101 | |
| 1534 3401 | |
| 1634 2101 | |
| 1734 2101 | |
| 834 3201 | |
| 1434 3401 | |
| 1034 3201 | |
| 1134 3201 | |
| 1234 3201 | |
| 1334 3201 | |
| 1434 3201 | |
| 1634 3201 | |
| 1734 3201 | |
| \. | |
| -- | |
| -- Name: suppliercontactid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('suppliercontactid', 1735, true); | |
| -- | |
| -- Data for Name: suppliercontacts; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY suppliercontacts (id, supplier_id, name, email, phone, created, updated, source) FROM stdin; | |
| 35 34 John Doe [email protected] 2016-09-26 09:40:13.537048 \N demo | |
| 135 134 John Doe [email protected] 2016-09-26 09:40:13.538086 \N demo | |
| 235 234 John Doe [email protected] 2016-09-26 09:40:13.538968 \N demo | |
| 335 334 John Doe [email protected] 2016-09-26 09:40:13.539854 \N demo | |
| 435 434 John Doe [email protected] 2016-09-26 09:40:13.540771 \N demo | |
| 535 534 John Doe [email protected] 2016-09-26 09:40:13.541695 \N demo | |
| 635 634 John Doe [email protected] 2016-09-26 09:40:13.542631 \N demo | |
| 735 734 John Doe [email protected] 2016-09-26 09:40:13.543549 \N demo | |
| 835 834 John Doe [email protected] 2016-09-26 09:40:13.544445 \N demo | |
| 935 934 John Doe [email protected] 2016-09-26 09:40:13.5454 \N demo | |
| 1035 1034 John Doe [email protected] 2016-09-26 09:40:13.546292 \N demo | |
| 1135 1134 John Doe [email protected] 2016-09-26 09:40:13.547167 \N demo | |
| 1235 1234 John Doe [email protected] 2016-09-26 09:40:13.548062 \N demo | |
| 1335 1334 John Doe [email protected] 2016-09-26 09:40:13.548944 \N demo | |
| 1435 1434 John Doe [email protected] 2016-09-26 09:40:13.549834 \N demo | |
| 1535 1534 John Doe [email protected] 2016-09-26 09:40:13.550721 \N demo | |
| 1635 1634 John Doe [email protected] 2016-09-26 09:40:13.551586 \N demo | |
| 1735 1734 John Doe [email protected] 2016-09-26 09:40:13.552462 \N demo | |
| \. | |
| -- | |
| -- Name: supplierid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('supplierid', 1734, true); | |
| -- | |
| -- Data for Name: suppliers; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY suppliers (id, custom_id, notes, name, created, updated, source) FROM stdin; | |
| 34 \N \N AXA 2016-09-26 09:40:13.519168 \N demo | |
| 134 \N \N MMA 2016-09-26 09:40:13.520206 \N demo | |
| 234 \N \N MACSF 2016-09-26 09:40:13.521133 \N demo | |
| 334 \N \N Total 2016-09-26 09:40:13.522041 \N demo | |
| 434 \N \N Shell 2016-09-26 09:40:13.522925 \N demo | |
| 534 \N \N Peugeot 2016-09-26 09:40:13.523801 \N demo | |
| 634 \N \N Citroen 2016-09-26 09:40:13.524657 \N demo | |
| 734 \N \N Renault 2016-09-26 09:40:13.525515 \N demo | |
| 834 \N \N RFP 2016-09-26 09:40:13.526362 \N demo | |
| 934 \N \N KPR 2016-09-26 09:40:13.527207 \N demo | |
| 1034 \N \N ALD 2016-09-26 09:40:13.528061 \N demo | |
| 1134 \N \N RFK 2016-09-26 09:40:13.528888 \N demo | |
| 1234 \N \N RFO 2016-09-26 09:40:13.529725 \N demo | |
| 1334 \N \N RFR 2016-09-26 09:40:13.530569 \N demo | |
| 1434 \N \N RLP 2016-09-26 09:40:13.531397 \N demo | |
| 1534 \N \N STL 2016-09-26 09:40:13.53227 \N demo | |
| 1634 \N \N RPY 2016-09-26 09:40:13.533133 \N demo | |
| 1734 \N \N RTP 2016-09-26 09:40:13.534008 \N demo | |
| \. | |
| -- | |
| -- Data for Name: system; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY system (name, boolean_value, str_value, int_value) FROM stdin; | |
| demo_data t \N \N | |
| MasterPassword \N $2a$10$y6BBdntsG.xDcvBK/WET8.KXMt2fhUKaBjHk5XPmMrUrboa8.ZdvS \N | |
| demo-data-generated t \N \N | |
| \. | |
| -- | |
| -- Data for Name: tags; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY tags (entity_id, tags) FROM stdin; | |
| 202 {Business,MP3,Leather,"Second hand"} | |
| 204 {"Remote worker","Trade union"} | |
| \. | |
| -- | |
| -- Data for Name: thirdparties; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY thirdparties (id, name, address, notes, created, updated, search) FROM stdin; | |
| 9 BulbThings O2 Stadium London Asset management software 2016-09-26 09:40:09.493717 2016-09-26 09:40:09.493717 'asset':5 'bulbth':1 'london':4 'manag':6 'o2':2 'softwar':7 'stadium':3 | |
| 109 EuroTunnel 03 Middle Sea Tunnel that goes from France to UK 2016-09-26 09:40:09.495123 2016-09-26 09:40:09.495123 '03':2 'eurotunnel':1 'franc':9 'goe':7 'middl':3 'sea':4 'tunnel':5 'uk':11 | |
| 209 CarDealer 32 Leicester Square The car dealer 2016-09-26 09:40:09.496051 2016-09-26 09:40:09.496051 '32':2 'car':6 'cardeal':1 'dealer':7 'leicest':3 'squar':4 | |
| \. | |
| -- | |
| -- Name: thirdpartyid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('thirdpartyid', 209, true); | |
| -- | |
| -- Name: timeslotid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('timeslotid', 311, true); | |
| -- | |
| -- Data for Name: timeslots; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY timeslots (id, type, title, description, period, attributes) FROM stdin; | |
| 11 maintenance Vehicle MOT visit Vehicle MOT fixes ["2015-01-04 09:00:00+00","2015-11-30 17:30:00+00"] \N | |
| 111 maintenance Vehicle MOT visit Vehicle MOT fixes ["2015-01-04 09:00:00+00","2015-11-30 17:30:00+00"] \N | |
| 211 maintenance Vehicle repair Vehicle repair ["2015-01-04 09:00:00+00","2015-11-30 17:30:00+00"] \N | |
| 311 holidays Holidays Holidays for this user ["2015-01-04 09:00:00+00","2015-11-30 17:30:00+00"] \N | |
| \. | |
| -- | |
| -- Data for Name: timeslots_mapping; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY timeslots_mapping (timeslot_id, entity_id) FROM stdin; | |
| 11 102 | |
| 111 202 | |
| 211 302 | |
| 311 104 | |
| \. | |
| -- | |
| -- Data for Name: user_policies; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY user_policies (user_id, ip_addresses, countries) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: user_roles; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY user_roles (user_id, roles) FROM stdin; | |
| 4 {admin,global-manager} | |
| 104 {admin} | |
| 204 {structures-manage,assets-read,users-read,tags-view,messages-read} | |
| 304 {structures-manage,france,assets-read,users-read,tags-view} | |
| 404 {users-manage,thirdparties-manage,assets-read,users-read,tags-view} | |
| 504 {store-manage,assets-read,assets-write,france,idf,trucks,assets-read,users-read,tags-view} | |
| 604 {store-manage,assets-read,assets-write,france,idf,trucks,assets-read,users-read,tags-view} | |
| 704 {store-manage,assets-read,assets-write,france,noidf,cars,assets-read,users-read,tags-view} | |
| 804 {store-manage,assets-read,assets-write,france,noidf,cars,assets-read,users-read,tags-view} | |
| 904 {driver,france,trucks,assets-read,users-read,tags-view} | |
| 1004 {driver,france,trucks,assets-read,users-read,tags-view} | |
| 1104 {driver,france,trucks,assets-read,users-read,tags-view} | |
| 1204 {driver,france,trucks,assets-read,users-read,tags-view} | |
| 1304 {driver,france,cars,assets-read,users-read,tags-view} | |
| 1404 {driver,france,cars,assets-read,users-read,tags-view} | |
| 1504 {driver,france,cars,assets-read,users-read,tags-view} | |
| 1604 {driver,france,cars,assets-read,users-read,tags-view} | |
| 1704 {driver,uk,trucks,assets-read,users-read,tags-view} | |
| 1804 {driver,uk,trucks,assets-read,users-read,tags-view} | |
| 1904 {driver,uk,trucks,assets-read,users-read,tags-view} | |
| 2004 {driver,uk,trucks,assets-read,users-read,tags-view} | |
| 2104 {driver,uk,cars,assets-read,users-read,tags-view} | |
| 2204 {driver,uk,cars,assets-read,users-read,tags-view} | |
| 2304 {driver,uk,cars,assets-read,users-read,tags-view} | |
| 2404 {driver,uk,cars,assets-read,users-read,tags-view} | |
| 2504 {addresses-read,addresses-search,addresses-write,allocations-write,assets-manage,assets-read,assets-write,contracts-manage,costs-read,costs-write,driver,eventstype-manage,eventstype-read,exchange-manage,global-manager,maintenance-services-manage,maintenances-manage,purchase-manage,statistics-query,store-manage,structures-manage,tags-view,users-manage} | |
| 2604 {globalManager} | |
| 2704 {globalManager} | |
| 2804 {globalManager} | |
| 2904 {globalManager} | |
| 3004 {globalManager} | |
| 3104 {globalManager} | |
| 3204 {assetManager} | |
| 3304 {assetManager} | |
| 18604 {admin} | |
| \. | |
| -- | |
| -- Name: userid; Type: SEQUENCE SET; Schema: public; Owner: bulbthings | |
| -- | |
| SELECT pg_catalog.setval('userid', 18604, true); | |
| -- | |
| -- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY users (id, title, firstname, lastname, email, password, created, updated, dob, active, connected, deleted, attributes, source) FROM stdin; | |
| 4 M Admin Company [email protected] $2a$10$FmLeq.ahnqrRxCgsotAUV.dGRNSdFdXLHmtEnRep8uIVYcEIW/DhC 2016-09-26 09:39:57.418854 2016-09-26 09:39:57.418854 \N t \N f {"phone": "07054948691", "gender": "m"} demo | |
| 104 \N c c [email protected] $2a$10$rKfBRHUoVkcb782WaMpLduKmFh.KYf0sjsIFmhui5PbN0hoT.0CoS 2016-09-26 09:39:57.47996 2016-09-26 09:39:57.47996 \N t \N f {"phone": "07054948691", "gender": "m"} demo | |
| 204 Mr Demarcus Egner [email protected] $2a$10$nire7DicGlo744bjoPp5ReSn7qtqQSWhStWquO.pIuo81WyvCdzoK 2016-09-26 09:39:57.540347 2016-09-26 09:39:57.540347 1989-07-03 t \N f {"phone": "07056980007", "gender": "m"} demo | |
| 304 Mr Mariano Casa [email protected] $2a$10$F4Ume8sSXkRQnT8qLaSfI.5p/lhpJVp6ZJeGA9y.DwqBjEME2HPx6 2016-09-26 09:39:57.601174 2016-09-26 09:39:57.601174 1969-05-11 t \N f {"phone": "07062233020", "gender": "m"} demo | |
| 404 Mr Gordon Denver [email protected] $2a$10$HNH3QPpWyH4jBsVFePR4Q.p81swL1HjbHvIxpBQMXrhU4XCgom/he 2016-09-26 09:39:57.66274 2016-09-26 09:39:57.66274 1988-06-06 t \N f {"phone": "07868002375", "gender": "m"} demo | |
| 504 Mr Stuart Amarante [email protected] $2a$10$eKBIDZJHleY0BLtW6P6bh.0lwuEsvkvFL5h3K2BmvmfNBhCeD4s16 2016-09-26 09:39:57.722934 2016-09-26 09:39:57.722934 1990-02-04 t \N f {"phone": "07213005421", "gender": "m"} demo | |
| 604 Mr Charley Pauling [email protected] $2a$10$8lm6xaA7b7kYqHHI3j6kYOfYioTexxIkfboNhZWl1lw52KL9Wr45a 2016-09-26 09:39:57.783848 2016-09-26 09:39:57.783848 1972-12-03 t \N f {"phone": "07453008429", "gender": "m"} demo | |
| 704 Mr Wes Perillo [email protected] $2a$10$xKlKd8qbjkPvJl9k1d3VXeKQvSoXV9NnN1j4.ApciwRA865yYN4wm 2016-09-26 09:39:57.843598 2016-09-26 09:39:57.843598 1974-11-10 t \N f {"phone": "07977006571", "gender": "m"} demo | |
| 804 Mr Bruno Lacey [email protected] $2a$10$tcHX41ObypRS9Svurd7q9.fr4utgkIgnPXvUV7IqWx8NJMa/PeiV6 2016-09-26 09:39:57.904317 2016-09-26 09:39:57.904317 1968-06-08 t \N f {"phone": "07071004195", "gender": "m"} demo | |
| 904 Master Rodger Damron [email protected] $2a$10$g4l6x9Ipj0lab85hlgNxY.CtJsd/zKI.5QEUUoRPXThFBUxEzZk5S 2016-09-26 09:39:57.964424 2016-09-26 09:39:57.964424 1988-11-02 t \N f {"phone": "07334001157", "gender": "m"} demo | |
| 1004 Mr Preston Addario [email protected] $2a$10$oB4mtGi0YxMYCvbXaGjAOefJ2fMuXVA03jQcTrFtviDKXc2HsV/L6 2016-09-26 09:39:58.024499 2016-09-26 09:39:58.024499 1956-04-10 t \N f {"phone": "07906004617", "gender": "m"} demo | |
| 1104 Mr Jorge Reddick [email protected] $2a$10$lGHfgChJzYNeYdZ5ut9EVeXdUJdRUdXFbsCUMuVxSR7nNH75bow7y 2016-09-26 09:39:58.084952 2016-09-26 09:39:58.084952 1971-08-09 t \N f {"phone": "07600001905", "gender": "m"} demo | |
| 1204 Doctor Dominique Raber [email protected] $2a$10$SGdWyQBvhOHfGc70/crcBej4SQJsoukORva79qC59YkwKh2x5fJfe 2016-09-26 09:39:58.145143 2016-09-26 09:39:58.145143 1989-02-10 f \N f {"phone": "07710001717", "gender": "m"} demo | |
| 1304 Miss Kate Sykora [email protected] $2a$10$.5VvRQM5VdS3gb2dApnsjO02N6.JpsKW7Wy9PLfN/b.B1BmWgL4rO 2016-09-26 09:39:58.205442 2016-09-26 09:39:58.205442 1958-03-06 t \N f {"phone": "07328005228", "gender": "f"} demo | |
| 1404 Mrs Cleopatra Goers [email protected] $2a$10$9s05HJ7qCZx2XZvUtkz2Nu0NAc1HXsWFsyEmv5nVBupMlbMg6.W.m 2016-09-26 09:39:58.266123 2016-09-26 09:39:58.266123 1957-01-03 t \N f {"phone": "07185001221", "gender": "f"} demo | |
| 1504 Miss Holley Denver [email protected] $2a$10$NeBEC2uOOjZTMB5HeS2N8u064mL5ivvGpz/yj7I43E7ytvSaNpstO 2016-09-26 09:39:58.325768 2016-09-26 09:39:58.325768 1990-05-03 t \N f {"phone": "07392002404", "gender": "f"} demo | |
| 1604 Mrs Becki Saldivar [email protected] $2a$10$eSXWgYrtWdeqx8j9j0rwuORoPLzEzNaE8YyBdzakZ94aaYFxNqe/K 2016-09-26 09:39:58.386341 2016-09-26 09:39:58.386341 1982-05-03 t \N f {"phone": "07010008124", "gender": "f"} demo | |
| 1704 Mrs Inge Marley [email protected] $2a$10$Bk.ehluvEAsWDJpPBUQEAOQoeSNLtM1BH/QWWHLyCmGjjdZ2WUEmi 2016-09-26 09:39:58.446159 2016-09-26 09:39:58.446159 1978-01-08 t \N f {"phone": "07900008334", "gender": "f"} demo | |
| 1804 Mrs Omega Appell [email protected] $2a$10$LB/M06m48gUEsklGYjRfAuWvsmTMZNcst0xGwtnDz/PbD1iVu43x2 2016-09-26 09:39:58.505961 2016-09-26 09:39:58.505961 1976-05-07 t \N f {"phone": "07140007651", "gender": "f"} demo | |
| 1904 Miss Diana Hance [email protected] $2a$10$mFhBwAO/eWwRtQSTuE.9CeYaZ1J6WBVVio2WD2NLBFY20t5GmYLga 2016-09-26 09:39:58.566385 2016-09-26 09:39:58.566385 1971-08-06 t \N f {"phone": "07683004955", "gender": "f"} demo | |
| 2004 Mrs Inga Auerbach [email protected] $2a$10$SUcdGRo61Oifj.QIruxBuu9mLi1QeqbxXtT6K/2o/IBO90DIhG7QW 2016-09-26 09:39:58.627761 2016-09-26 09:39:58.627761 1965-11-04 t \N f {"phone": "07396000579", "gender": "f"} demo | |
| 2104 Miss Kyoko Caraveo [email protected] $2a$10$BXbevJkn0onl3khOW.Hb2uHhH3TgHe56HRHYilPNT2WhjY63rc4WC 2016-09-26 09:39:58.688417 2016-09-26 09:39:58.688417 1975-02-02 t \N f {"phone": "07279009007", "gender": "f"} demo | |
| 2204 Miss Leah Hopper [email protected] $2a$10$EXYXNuec6zGabakuJyCxvOmA0pwoGww.lGPdgEkJee5nlrIIByJ7S 2016-09-26 09:39:58.748165 2016-09-26 09:39:58.748165 1952-05-09 t \N f {"phone": "07011009179", "gender": "f"} demo | |
| 2304 Miss Becki Laura [email protected] $2a$10$eziEpKsgtYIj1p4LuZAuguy2OWtSJ8ytyABc56AiqF270MbR5Ut3. 2016-09-26 09:39:58.810974 2016-09-26 09:39:58.810974 1970-12-11 t \N f {"phone": "07207009765", "gender": "f"} demo | |
| 2404 Miss Jacquiline Armstead [email protected] $2a$10$TAONWXQ3RuZhOd4GEUVsEOfLnl2dqmvC8RgPg9843AcRm3enUjKEC 2016-09-26 09:39:58.871987 2016-09-26 09:39:58.871987 1977-11-03 f \N f {"phone": "07765001756", "gender": "f"} demo | |
| 2504 M Manager Company [email protected] $2a$10$wnYRFOS/xqlpg9k78BveLOfQCFqkaX71EFeaCR5NF65SJqzQSbPf2 2016-09-26 09:39:58.932028 2016-09-26 09:39:58.932028 1977-11-03 t \N f {"phone": "07765001756", "gender": "m"} demo | |
| 2604 M Guest Company [email protected] $2a$10$N8pMhpnfuTFzfgiO9UPuPenP51S44u7tB5veLnKTslj0OVHu9tX7a 2016-09-26 09:39:58.993807 2016-09-26 09:39:58.993807 1977-11-03 t \N f {"gender": "m"} demo | |
| 2704 Mr Aaron Meaux [email protected] $2a$10$tMa/zLbqfsryJ7vaYMI4IewQ2T1RirXbOxOf3639cCUzkPCaNS3gO 2016-09-26 09:39:59.055824 2016-09-26 09:39:59.055824 1960-02-17 t \N f {"phone": "07070663000", "gender": "m"} demo | |
| 2804 Mr Demarcus Mastropietro [email protected] $2a$10$3zZ2oMn/W8/pmkJdEcHl.OWvwiXGKJcfBedl5LEHXdd1VzZMW4iF2 2016-09-26 09:39:59.116221 2016-09-26 09:39:59.116221 1975-11-28 t \N f {"phone": "07043781007", "gender": "m"} demo | |
| 2904 Mr Santiago Pence [email protected] $2a$10$W40ujKbbyhjKlEza/gJhXe6QvDVMLGuPH72LEy6SItKEdorkpHlRO 2016-09-26 09:39:59.176301 2016-09-26 09:39:59.176301 1952-05-16 t \N f {"phone": "07065452007", "gender": "m"} demo | |
| 3004 Mr Haywood Kelling [email protected] $2a$10$TRxIW82zFiM8z0v7l.0YF.hSCtusjp7GwvO1kCOMzSelP9yCvT0PK 2016-09-26 09:39:59.237962 2016-09-26 09:39:59.237962 1965-12-22 t \N f {"phone": "07049400002", "gender": "m"} demo | |
| 3104 Mr Refugio Goers [email protected] $2a$10$ukvqycVEo4AxZX0MHbYyiu5/8.vMCCmKuPYW5n3ueR3ubbYp3g72m 2016-09-26 09:39:59.301612 2016-09-26 09:39:59.301612 1962-10-10 t \N f {"phone": "07071278005", "gender": "m"} demo | |
| 3204 Mr Bruno Brumett [email protected] $2a$10$wY03s6/Fu3uKQSeemTRpjegqMkeCUby5trbJym5mm1zfx71ythWkS 2016-09-26 09:39:59.362376 2016-09-26 09:39:59.362376 1957-07-15 t \N f {"phone": "07090551003", "gender": "m"} demo | |
| 3304 Mr Refugio Guillermo [email protected] $2a$10$hZwFF8GloljtSl9bgChMPeLooKVBOFbCLPF/V.eDqw9yXV0BcRDsi 2016-09-26 09:39:59.42373 2016-09-26 09:39:59.42373 1977-04-26 t \N f {"phone": "07024837002", "gender": "m"} demo | |
| 3404 Mr Ismael Mcginty [email protected] $2a$10$NmHvOq3X7c5RxvlJZ.tn9OznbxhrDcDMoj5cherSBylchY24SDNye 2016-09-26 09:39:59.485406 2016-09-26 09:39:59.485406 1977-07-08 t \N f {"phone": "07089982000", "gender": "m"} demo | |
| 3504 Mr Wes Chen [email protected] $2a$10$V7JFZtVGpdzFqHUxokIFYuYTD.RWspKh9N0ZhDUsf0To/KxOn8qPe 2016-09-26 09:39:59.54705 2016-09-26 09:39:59.54705 1974-04-07 t \N f {"phone": "07055510003", "gender": "m"} demo | |
| 3604 Mr Clayton Bones [email protected] $2a$10$ROU5.0E0PhRK3B5U4vjg4eB/L0zaYQTBQP.mg2v7OeXFrQ/9okPla 2016-09-26 09:39:59.608749 2016-09-26 09:39:59.608749 1990-09-12 t \N f {"phone": "07039608004", "gender": "m"} demo | |
| 3704 Mr Ariel Bellman [email protected] $2a$10$jQknt/ZZ.pVCqP/bU/YOP.Y5cvwa9OJNycaYB5GB.RQx/qU.Lu4/e 2016-09-26 09:39:59.670756 2016-09-26 09:39:59.670756 1955-12-12 t \N f {"phone": "07028788001", "gender": "m"} demo | |
| 3804 Mr Jorge Jenks [email protected] $2a$10$qnNP53/ejvRpYNUjBr4GO.ud3MC4i7vRBFre.ZBvXRj0WPTVWm83K 2016-09-26 09:39:59.733173 2016-09-26 09:39:59.733173 1966-06-29 t \N f {"phone": "07077870004", "gender": "m"} demo | |
| 3904 Mr Samual Baade [email protected] $2a$10$5VZKUlg7N91Q5UTHNT8FreyfSrLPqTLpT1obp.bN7bkUOmaotDbn2 2016-09-26 09:39:59.795791 2016-09-26 09:39:59.795791 1964-09-25 t \N f {"phone": "07075997008", "gender": "m"} demo | |
| 4004 Mr Clair Torrez [email protected] $2a$10$gaRHaS/LDFwVTnQLkhK83.OW0v/J1Nyp2fbGX8peCTTzk4xr/r6iO 2016-09-26 09:39:59.858844 2016-09-26 09:39:59.858844 1963-09-24 t \N f {"phone": "07017206004", "gender": "m"} demo | |
| 4104 Mr Ezequiel Matousek [email protected] $2a$10$Qi/v9FWRQcclo9kQyL1BmOGDeBPFdan2.JELsIzTXbxMFpQQ90hQa 2016-09-26 09:39:59.920172 2016-09-26 09:39:59.920172 1985-02-02 t \N f {"phone": "07034925000", "gender": "m"} demo | |
| 4204 Mr Doug Remillard [email protected] $2a$10$bxC6iXTKnq1P0xm6BQLfgen7zgZ7yhLWjLUrN3hMwCqkr0GU2MzUS 2016-09-26 09:39:59.982499 2016-09-26 09:39:59.982499 1988-04-17 t \N f {"phone": "07056944009", "gender": "m"} demo | |
| 4304 Mr Jimmy Korte [email protected] $2a$10$Lj2Ho6Ce3StulbHlsCK80.Bmb9UlCGwUUY9lnow9boHv5n0lC.6b. 2016-09-26 09:40:00.04519 2016-09-26 09:40:00.04519 1961-02-15 t \N f {"phone": "07030230001", "gender": "m"} demo | |
| 4404 Mr Jacinto Orosz [email protected] $2a$10$CzM/PCOxv9ivhZCmrN9ByupSj4UPQ0NkLa0scuO6ebd/W6EvVGLQq 2016-09-26 09:40:00.107259 2016-09-26 09:40:00.107259 1982-05-05 t \N f {"phone": "07055744006", "gender": "m"} demo | |
| 4504 Mx Kermit Maggart [email protected] $2a$10$AwYfAWgQSZ6HoAnBjHL26OhtS4v3Z1ZU/jVaIM6VQaDJQyDunNogS 2016-09-26 09:40:00.169086 2016-09-26 09:40:00.169086 1954-07-25 t \N f {"phone": "07085006008", "gender": "m"} demo | |
| 4604 Mr Jean Omalley [email protected] $2a$10$nyVbwa7VZeum9J5TJo4KM.K.cQpf5BEqIvO5CgUKe2.D2uggERgcO 2016-09-26 09:40:00.231386 2016-09-26 09:40:00.231386 1984-12-13 t \N f {"phone": "07035640005", "gender": "m"} demo | |
| 4704 Mr Brady Jewett [email protected] $2a$10$m3TKeOoMnEqm1rd7f3W6D.ob4btrWYXWanCymWBB.xLaB9CN8hb/y 2016-09-26 09:40:00.292502 2016-09-26 09:40:00.292502 1982-04-13 t \N f {"phone": "07087788008", "gender": "m"} demo | |
| 4804 Mr Otis Guillermo [email protected] $2a$10$0b8nUjE2Ie3jbwjtxFi7a.UihUD8NGm.RnhqLfW2GpKaJFux26sTG 2016-09-26 09:40:00.354292 2016-09-26 09:40:00.354292 1959-04-17 t \N f {"phone": "07040526000", "gender": "m"} demo | |
| 4904 Mr Jamey Damron [email protected] $2a$10$YO87l2NuuhgSa.4hQcNDNOBNzGSmk./XESKRSeSPES5xNxEIs7Vky 2016-09-26 09:40:00.417259 2016-09-26 09:40:00.417259 1989-01-29 t \N f {"phone": "07014666002", "gender": "m"} demo | |
| 5004 Doctor Raleigh Reames [email protected] $2a$10$eVN8CjbwdZT8rtCkVZROQemFdUaaXfpMOg6eP8V.ID3MWLSuS1Cze 2016-09-26 09:40:00.478533 2016-09-26 09:40:00.478533 1977-10-09 t \N f {"phone": "07017146005", "gender": "m"} demo | |
| 5104 Mr Samual Eslinger [email protected] $2a$10$BbwvfuxG4maq7L8u3xnH0.oOZbyvvwLGWSHpeATegOmXmsiD/D0Tu 2016-09-26 09:40:00.538634 2016-09-26 09:40:00.538634 1981-11-20 t \N f {"phone": "07062138003", "gender": "m"} demo | |
| 5204 Mr Jarrett Dobrowolski [email protected] $2a$10$UjX44Z/R4IQz3OsKVA2E2.bnQv2W11Noy1BRCmu3tyY4vO44RJUuC 2016-09-26 09:40:00.600338 2016-09-26 09:40:00.600338 1952-05-16 t \N f {"phone": "07095863007", "gender": "m"} demo | |
| 5304 Mr Aaron Dehne [email protected] $2a$10$rZIl2UDYV6.T.bkdZy9lI.cnHqv5te0oDC74.jrPBvrcbkm7mSNSK 2016-09-26 09:40:00.662795 2016-09-26 09:40:00.662795 1956-11-14 t \N f {"phone": "07057524007", "gender": "m"} demo | |
| 5404 Mr Clair Wilczynski [email protected] $2a$10$P6e91u7yC.rPB5ZZXyT3leybeh.atQa9dsQWNMDWavfSIWx5kNGFO 2016-09-26 09:40:00.725429 2016-09-26 09:40:00.725429 1970-01-22 t \N f {"phone": "07030265002", "gender": "m"} demo | |
| 5504 Mr Wilfred Roller [email protected] $2a$10$DwiX0LQl0IT416vPDCHbXOGD2Mfsjc0ENWD6xhZcutCZYMNAp2x0a 2016-09-26 09:40:00.788632 2016-09-26 09:40:00.788632 1952-10-16 t \N f {"phone": "07055880002", "gender": "m"} demo | |
| 5604 Mr Ismael Frailey [email protected] $2a$10$dbcK4WVhHlQC5lgcu98w6e6JDlQZVil93.dsoLu4wY6VCoVktfIQS 2016-09-26 09:40:00.849898 2016-09-26 09:40:00.849898 1950-03-20 t \N f {"phone": "07075393007", "gender": "m"} demo | |
| 5704 Mr Will Mastropietro [email protected] $2a$10$olpDGvgUQkV9uPyvUXGo8.juGI9qy9MlAM.v.Q7MzZWygoWTphG3q 2016-09-26 09:40:00.910846 2016-09-26 09:40:00.910846 1964-08-15 t \N f {"phone": "07036464002", "gender": "m"} demo | |
| 5804 Mr Trevor Roeder [email protected] $2a$10$HJzQa4TqSDHFEJ3dRb1hvOhldlb8Z2LCxBRGUs.Kw6jK/FHSXgmo2 2016-09-26 09:40:00.972319 2016-09-26 09:40:00.972319 1974-02-08 t \N f {"phone": "07073794005", "gender": "m"} demo | |
| 5904 Mr Jamey Koontz [email protected] $2a$10$eNcX9VRLJvnUfUBgXa0PDOdZOX1AyJ5wc4GYC6rjYtz7PgtQoWvay 2016-09-26 09:40:01.034561 2016-09-26 09:40:01.034561 1976-01-16 t \N f {"phone": "07042513002", "gender": "m"} demo | |
| 6004 Mr Ariel Kissee [email protected] $2a$10$N4yLmlnG9qTVxuwj2Y8HDOAxTwHkO7OatHtQ0e0XpGoB/reYAJOgi 2016-09-26 09:40:01.097739 2016-09-26 09:40:01.097739 1968-05-14 t \N f {"phone": "07025342001", "gender": "m"} demo | |
| 6104 Mx Deangelo Romine [email protected] $2a$10$o6144GBdyRdNEidN3n9Yj.oky4vsHlYGi2.xEVeLDQ7Qb2R1eyTii 2016-09-26 09:40:01.159637 2016-09-26 09:40:01.159637 1963-12-04 t \N f {"phone": "07014421004", "gender": "m"} demo | |
| 6204 Mr Aaron Freitas [email protected] $2a$10$hV8Kro0IWDgSbFXpowC6wOWPHbHmHeMWDs69rPnl2EGz7/wGBxCpS 2016-09-26 09:40:01.220663 2016-09-26 09:40:01.220663 1979-06-28 t \N f {"phone": "07074280009", "gender": "m"} demo | |
| 6304 Mr Willian Hanke [email protected] $2a$10$vUNE2h3qSiHifNdeFTAO0ucHPq/e6hRE7SWoIqNDnY0GIN8AV9jVK 2016-09-26 09:40:01.280826 2016-09-26 09:40:01.280826 1974-11-30 t \N f {"phone": "07033749000", "gender": "m"} demo | |
| 6404 Mr Johnson Egner [email protected] $2a$10$nAgQnIGEJeEUHxnYR9HvrOsl8IkjXsHJ8uNtKEsT5A7QI1LsroV.. 2016-09-26 09:40:01.344786 2016-09-26 09:40:01.344786 1974-07-03 t \N f {"phone": "07092615003", "gender": "m"} demo | |
| 6504 Mr Ralph Kimura [email protected] $2a$10$jsIiyhfdc6jtp2eNS7uCh.4/B162pe38PGH1.PmkNsyZ1P3h9dkvK 2016-09-26 09:40:01.407953 2016-09-26 09:40:01.407953 1966-01-19 t \N f {"phone": "07034204009", "gender": "m"} demo | |
| 6604 Mr Santiago Sanches [email protected] $2a$10$3eIZEs9O3f8YyRQ0PNazFe9b7V7eo2mGakgAcFRFkOVjJN0nJBJZ2 2016-09-26 09:40:01.469054 2016-09-26 09:40:01.469054 1974-09-21 t \N f {"phone": "07085259008", "gender": "m"} demo | |
| 6704 Master Samual Marshburn [email protected] $2a$10$eg.jict5luYCP6HxbhGxROS.sxEJM4zYYDnXfhZ.aVfvkyO60Z/Pe 2016-09-26 09:40:01.530078 2016-09-26 09:40:01.530078 1958-02-22 t \N f {"phone": "07044294007", "gender": "m"} demo | |
| 6804 Mr Modesto Jamerson [email protected] $2a$10$X741lXHmvkO.ue416veUK.iydHGRVWxKWhCJUT4ICexLn6zdbYvgy 2016-09-26 09:40:01.592214 2016-09-26 09:40:01.592214 1963-05-01 t \N f {"phone": "07065047008", "gender": "m"} demo | |
| 6904 Master Gaylord Quackenbush [email protected] $2a$10$1eFhHvmesO1CVCv2fTEdbOp/lIww9py3JyOFJjrHczcRwXwPbKwd2 2016-09-26 09:40:01.65239 2016-09-26 09:40:01.65239 1965-11-20 t \N f {"phone": "07054857008", "gender": "m"} demo | |
| 7004 Mr Colby Auerbach [email protected] $2a$10$Np5ICgkAbJzoOGou8.umVexqp1yLkWMR/JieqmG14UdzuXFXB6asy 2016-09-26 09:40:01.712493 2016-09-26 09:40:01.712493 1979-04-09 t \N f {"phone": "07024229009", "gender": "m"} demo | |
| 7104 Mr Blake Adame [email protected] $2a$10$njHQqZLU9jMn/nT4Jnl1PuZwwJsfHJcAroY1EP.GzXs/yo9yGx.5. 2016-09-26 09:40:01.775209 2016-09-26 09:40:01.775209 1978-06-23 t \N f {"phone": "07020563008", "gender": "m"} demo | |
| 7204 Mr Dominique Eno [email protected] $2a$10$FlMkMx1UFQz2dBxfFvi9sOcp8JXgGyaRukymccXN7/S5ntDeKfNIa 2016-09-26 09:40:01.838392 2016-09-26 09:40:01.838392 1955-04-01 t \N f {"phone": "07079322003", "gender": "m"} demo | |
| 7304 Mr Kirby Wyant [email protected] $2a$10$gtB3a7X.4LgD.x8vHCgJmObDZ1/qr4UajoSTLqbz7fRURWF55dZl6 2016-09-26 09:40:01.899555 2016-09-26 09:40:01.899555 1951-04-24 t \N f {"phone": "07020849004", "gender": "m"} demo | |
| 7404 Mr Clayton Quackenbush [email protected] $2a$10$GKmUpxX5jxVDbbzfW/zpAeqI/IBPKDqv9Hmog9Iwn4U5CIF3wCw/O 2016-09-26 09:40:01.96085 2016-09-26 09:40:01.96085 1974-05-11 t \N f {"phone": "07090389004", "gender": "m"} demo | |
| 7504 Mr Basil Kallenbach [email protected] $2a$10$4VA70frXBIEZX5dG1NuWmeDI60GM8nrgHk.bTG8xUpQx46BQwAogW 2016-09-26 09:40:02.021768 2016-09-26 09:40:02.021768 1977-12-29 t \N f {"phone": "07071543000", "gender": "m"} demo | |
| 7604 Mr Jean Matousek [email protected] $2a$10$S7h95wkJTirmiDO9FDWcyuBCGksiuBgXypni2fipozUMFPWSOQkAq 2016-09-26 09:40:02.083342 2016-09-26 09:40:02.083342 1964-08-11 t \N f {"phone": "07068660007", "gender": "m"} demo | |
| 7704 Mr Deangelo Iorio [email protected] $2a$10$GGkgjXzFLTS60BNQokBrY.R520EvkY1ktnLHfMjWtrCsxn6PGc8wG 2016-09-26 09:40:02.145095 2016-09-26 09:40:02.145095 1971-04-29 t \N f {"phone": "07054493003", "gender": "m"} demo | |
| 7804 Mr Doug Brumett [email protected] $2a$10$mJQ1vCa1I9oXmeflGg12Euc.F5Kr20UO03wHtWtCu67mrQXnxOgIm 2016-09-26 09:40:02.207275 2016-09-26 09:40:02.207275 1987-04-05 t \N f {"phone": "07065953007", "gender": "m"} demo | |
| 7904 Mr Kirby Ayers [email protected] $2a$10$oPKIoHdcpmpGYim1dIdnN.jHRr1QHtOzq4tXyfDXIlveANjhEBzZW 2016-09-26 09:40:02.268655 2016-09-26 09:40:02.268655 1983-12-15 t \N f {"phone": "07046637005", "gender": "m"} demo | |
| 8004 Mr Cary Town [email protected] $2a$10$9mMSfN/mlhKEW1Gi3pgmYuh0n/SDm/U0L/WUYQ8Ky5kdw1SayX772 2016-09-26 09:40:02.328673 2016-09-26 09:40:02.328673 1955-03-27 t \N f {"phone": "07014436006", "gender": "m"} demo | |
| 8104 Mr Son Rasnake [email protected] $2a$10$prr4EVIaRcGVifqHIEz8..aI.WzdzumnIElydU7DSG3t1xuQPB/76 2016-09-26 09:40:02.388128 2016-09-26 09:40:02.388128 1973-11-19 t \N f {"phone": "07057218008", "gender": "m"} demo | |
| 8204 Mr Freeman Avila [email protected] $2a$10$4oMjgA/sGqLPKtBxSi/Gf.ffQsNloMg2qK6uuVw2SvsL0eR.6d9fS 2016-09-26 09:40:02.447748 2016-09-26 09:40:02.447748 1986-12-09 t \N f {"phone": "07054962008", "gender": "m"} demo | |
| 8304 Mx Stuart Kibble [email protected] $2a$10$YpV1ny1HN9WJXl6Q2npTyeD49IHxxMaDSLdKtlAO6DjHvZAuyF8Ky 2016-09-26 09:40:02.507527 2016-09-26 09:40:02.507527 1955-09-14 t \N f {"phone": "07069709001", "gender": "m"} demo | |
| 8404 Mr Phillip Dake [email protected] $2a$10$9TuQTgMaeF1iFwh6fpvIj.nEe0skhuIhGOfbXoTlrwk.JwVdi/u9q 2016-09-26 09:40:02.568184 2016-09-26 09:40:02.568184 1969-01-15 t \N f {"phone": "07081109001", "gender": "m"} demo | |
| 8504 Mr Johnson Sykora [email protected] $2a$10$d8NEHpYSE9/3eSC4DoxqqeKxGzME0I92IjOdULE50LZLN0ovnwzdK 2016-09-26 09:40:02.629562 2016-09-26 09:40:02.629562 1970-10-11 t \N f {"phone": "07043002009", "gender": "m"} demo | |
| 8604 Mr Wes Edgerly [email protected] $2a$10$riz1tRxT.T/BT4kTjc.vS.17q/MX2ILxTj8qkjN1fUSOOBAHUjdSy 2016-09-26 09:40:02.690551 2016-09-26 09:40:02.690551 1987-01-24 t \N f {"phone": "07087219007", "gender": "m"} demo | |
| 8704 Mr Jude Lodi [email protected] $2a$10$Op8dGqZN0P5xukdfuGxje.gAiamioTCuBfAgAic8REM38TVDrq4Qi 2016-09-26 09:40:02.750142 2016-09-26 09:40:02.750142 1975-09-15 t \N f {"phone": "07093536002", "gender": "m"} demo | |
| 8804 Mr Aaron Appell [email protected] $2a$10$lw.xjOILb9gHkZm9PcFUeO1Vj7wzTNy8pLsmJJOvPocELy0pG45se 2016-09-26 09:40:02.810237 2016-09-26 09:40:02.810237 1967-08-27 t \N f {"phone": "07089138007", "gender": "m"} demo | |
| 8904 Mr Gordon Sykora [email protected] $2a$10$RAjWglDXFkz7xXYEklMpo.UV493QDlAzqxoh0a.3o2lfKAhgfW9ru 2016-09-26 09:40:02.870272 2016-09-26 09:40:02.870272 1962-01-17 t \N f {"phone": "07042535006", "gender": "m"} demo | |
| 9004 Mr Porter Waybright [email protected] $2a$10$1YN5xFfiDnoD5KZOOBVYXOvtGrb0IgUjs.FWb88BTj6W9CNtbHRkS 2016-09-26 09:40:02.930543 2016-09-26 09:40:02.930543 1956-11-09 t \N f {"phone": "07016388003", "gender": "m"} demo | |
| 9104 Mr Modesto Boutwell [email protected] $2a$10$mY4np61V5YVOTSfldqqXSeJVK4tAFuHJbY5yxPw.odZxPVWBB5tqO 2016-09-26 09:40:02.990368 2016-09-26 09:40:02.990368 1989-01-19 t \N f {"phone": "07016672001", "gender": "m"} demo | |
| 9204 Mr Gilberto Bones [email protected] $2a$10$4hnFjAAPKOvkeMcaErUR0eEzOL0ZGQ9lNFjprhfxtdyRv5v93YP2O 2016-09-26 09:40:03.050434 2016-09-26 09:40:03.050434 1979-12-02 t \N f {"phone": "07042439006", "gender": "m"} demo | |
| 9304 Mr Newton Mayhall [email protected] $2a$10$q5dMQFWEbDc9Alod2H3BfOvQXTW9J5payWjcIhNrfAB6pm8zj1h0i 2016-09-26 09:40:03.110549 2016-09-26 09:40:03.110549 1976-09-15 t \N f {"phone": "07051887002", "gender": "m"} demo | |
| 9404 Mr Marlon Wyant [email protected] $2a$10$DDYTETKW5Nh.cefEFIsu5OLeVp1dx2QzpOBslU4U3moiMo.jOw/Zy 2016-09-26 09:40:03.169862 2016-09-26 09:40:03.169862 1985-03-21 t \N f {"phone": "07045957007", "gender": "m"} demo | |
| 9504 Mr Samual Ippolito [email protected] $2a$10$AMZgabEkyYP4hoTzAk98u../UolMfRbjztvD8b/oHV9eg.KMorURW 2016-09-26 09:40:03.232016 2016-09-26 09:40:03.232016 1977-07-15 t \N f {"phone": "07098238002", "gender": "m"} demo | |
| 9604 Master Son Dingler [email protected] $2a$10$vsBPyYXESVZzwth1xB5WAui06rfU0ezKgMeHAumZt0YNemFAwqhPi 2016-09-26 09:40:03.294295 2016-09-26 09:40:03.294295 \N t \N f {"phone": "07030520009", "gender": "m"} demo | |
| 9704 Mr Ralph Spitz [email protected] $2a$10$QALPZ1XksK1CQFbKoZ/HBOVx4wWwlL5F74hc.KNt.WQVKTxDQzjnS 2016-09-26 09:40:03.354119 2016-09-26 09:40:03.354119 1965-10-28 t \N f {"phone": "07036218005", "gender": "m"} demo | |
| 9804 Doctor Will Brasch [email protected] $2a$10$0Y7x.BO/HcSnzx5HCper3.T1z84OHpPVqykk/RM5pKeZ2m.MJC5bq 2016-09-26 09:40:03.415438 2016-09-26 09:40:03.415438 1951-08-16 t \N f {"phone": "07083726003", "gender": "m"} demo | |
| 9904 Mr Cary Tracey [email protected] $2a$10$qjyVvZHA6xNrNF3VzjiMHut1qH5wxCw0OwBUTukQrIgpjH9xHDKLS 2016-09-26 09:40:03.477039 2016-09-26 09:40:03.477039 \N t \N f {"phone": "07056648008", "gender": "m"} demo | |
| 10004 Mr Bobbie Shearin [email protected] $2a$10$pVdB6oW3RzIOxvNq//ja5.XKvgtJkwkW.D20bz8kRetv8nV/l1mt. 2016-09-26 09:40:03.540239 2016-09-26 09:40:03.540239 1990-06-08 t \N f {"phone": "07077706008", "gender": "m"} demo | |
| 10104 Mr Jorge Kinghorn [email protected] $2a$10$sGXRosF2X1L9y3Ikqeudw..UNyu2ArFoLnlsG9LjRJIUuRcOoewOG 2016-09-26 09:40:03.602542 2016-09-26 09:40:03.602542 1952-01-13 t \N f {"phone": "07089305006", "gender": "m"} demo | |
| 10204 Mr Markus Hanke [email protected] $2a$10$/NHfDb9vGG3jU4l7vux3oeq0C/ItGrpFqFTWT00q5OJruvEcQAW72 2016-09-26 09:40:03.662589 2016-09-26 09:40:03.662589 1950-01-12 t \N f {"phone": "07064987008", "gender": "m"} demo | |
| 10304 Mr Ralph Tracey [email protected] $2a$10$6hHX/31qgYMVOGVAajugueEeHFG0YXf77PWXz7zcz2HXj.qFP7iNi 2016-09-26 09:40:03.725331 2016-09-26 09:40:03.725331 1978-07-03 t \N f {"phone": "07089171004", "gender": "m"} demo | |
| 10404 Mr Gordon Quackenbush [email protected] $2a$10$gUeVS1KRPseXMAnu68Xi6uKcpG9estzqQ9HXls4egERi0MS58ZcGC 2016-09-26 09:40:03.785059 2016-09-26 09:40:03.785059 1987-03-23 t \N f {"phone": "07056348002", "gender": "m"} demo | |
| 10504 Doctor Jorge Doherty [email protected] $2a$10$LDg8WkEbxvp.fw/JsPkZjucFW6RgeYXcRQ1pzSa1I/8hEHZUqZvAi 2016-09-26 09:40:03.844738 2016-09-26 09:40:03.844738 1968-08-19 t \N f {"phone": "07024082005", "gender": "m"} demo | |
| 10604 Mr Waylon Rappa [email protected] $2a$10$le3uegIEKi/24Rux/hc7I.s7MNYdXJgpZ9OkbNJ752tVFNd3s3Ply 2016-09-26 09:40:03.904506 2016-09-26 09:40:03.904506 1980-08-09 t \N f {"phone": "07060741002", "gender": "m"} demo | |
| 10704 Mx Rueben Kissee [email protected] $2a$10$x60yg7viVPe0I3K66v13qeJo4W/BuDPB.VyVmvnD.FSsusDJZdzQm 2016-09-26 09:40:03.96448 2016-09-26 09:40:03.96448 1971-07-31 t \N f {"phone": "07075760009", "gender": "m"} demo | |
| 10804 Doctor Erik Kibble [email protected] $2a$10$8ViYCnpxOhXfaerlcw3SPegcvhLvBg3jSAWvAb1.OeSnqSjUe6Cjy 2016-09-26 09:40:04.024439 2016-09-26 09:40:04.024439 1955-01-12 t \N f {"phone": "07084994001", "gender": "m"} demo | |
| 10904 Mr Jude Dickens [email protected] $2a$10$etSIfbhPD7t4IYeoVWwG5.BblYf9J5/n/k4UaN71HwhmS8bDVqDsu 2016-09-26 09:40:04.084427 2016-09-26 09:40:04.084427 1961-12-14 t \N f {"phone": "07028969002", "gender": "m"} demo | |
| 11004 Mr Ezequiel Perillo [email protected] $2a$10$EF8HDJokZ0YsCSiBYGYDTueeWeMPDh4QkzJfB12qPskCk3pTB4zvC 2016-09-26 09:40:04.145007 2016-09-26 09:40:04.145007 1978-03-16 t \N f {"phone": "07096953001", "gender": "m"} demo | |
| 11104 Mr Sonny Roza [email protected] $2a$10$eSq8xDbdq9KompTsztoh7edi.kvyucA4HPXyi.FH7US1Dzd1YsO7O 2016-09-26 09:40:04.205114 2016-09-26 09:40:04.205114 1979-08-16 t \N f {"phone": "07051202001", "gender": "m"} demo | |
| 11204 Mr Margarito Eno [email protected] $2a$10$utoreltMCVubmeqpOWXakuA8adjJX1iq5VCRR9NcRz/zCnWDb5xX6 2016-09-26 09:40:04.265086 2016-09-26 09:40:04.265086 1981-12-18 t \N f {"phone": "07022160007", "gender": "m"} demo | |
| 11304 Mx Jasper Thomsen [email protected] $2a$10$nVgtoF2LPpK6OkdNPlcPne/VCsJDs3AicXHrULr4YloIdMyWGmF6m 2016-09-26 09:40:04.325328 2016-09-26 09:40:04.325328 1962-01-18 t \N f {"phone": "07077869009", "gender": "m"} demo | |
| 11404 Mr Lino Mcginty [email protected] $2a$10$73RWrqbskCB/7uhBtxhhyuDDXwicNhDQKXRdQz5bOaTX/iReD6Y8O 2016-09-26 09:40:04.385076 2016-09-26 09:40:04.385076 1970-10-09 t \N f {"phone": "07019691002", "gender": "m"} demo | |
| 11504 Mr Ismael Raber [email protected] $2a$10$l/n3K66fsuG1BgaovWOE8O1SXXaCScpZfzwkGfI4UXIqozq13JgZe 2016-09-26 09:40:04.445042 2016-09-26 09:40:04.445042 1956-05-06 t \N f {"phone": "07084496008", "gender": "m"} demo | |
| 11604 Mr Fred Convery [email protected] $2a$10$IT.pL1YM4IJ1DULwHsBiC.AL9Ez1yXuiphTuxfzxNqx7kw2TCTKHm 2016-09-26 09:40:04.504603 2016-09-26 09:40:04.504603 1982-09-20 t \N f {"phone": "07023057007", "gender": "m"} demo | |
| 11704 Mr Blair Angulo [email protected] $2a$10$gvjgtjnZDiKvCf8z/7rkE.nI4XZ3LXpC91rcpbqDF3s3FXQZhkOhe 2016-09-26 09:40:04.564805 2016-09-26 09:40:04.564805 1963-09-12 t \N f {"phone": "07051212007", "gender": "m"} demo | |
| 11804 Master Jeremy Lamirande [email protected] $2a$10$WgAJknRb7wqHSedvkah0EOia4HKM4R5OfBl.v3L76ZGk0aBK/QoBq 2016-09-26 09:40:04.627075 2016-09-26 09:40:04.627075 1964-01-28 t \N f {"phone": "07056643003", "gender": "m"} demo | |
| 11904 Mr Newton Lajeunesse [email protected] $2a$10$uGOdSi.pW/.RtHWTwa5O9.T3hBs0d7dxiN6slxZ71D.hE5X8lmyo2 2016-09-26 09:40:04.687969 2016-09-26 09:40:04.687969 1963-06-01 t \N f {"phone": "07031060000", "gender": "m"} demo | |
| 12004 Doctor Modesto Kinghorn [email protected] $2a$10$DwWZ3tTxNv/hV.5fECDojOZvm2UG2Lpo3iq4NyF2nbAxT47Xi1MFG 2016-09-26 09:40:04.747725 2016-09-26 09:40:04.747725 1972-12-10 t \N f {"phone": "07060979003", "gender": "m"} demo | |
| 12104 Mr Bobbie Dickens [email protected] $2a$10$4bgo.LEpWrdS3AdD0eVtUuoT4HzOzqTDV5FyLZRkGBmOwqsks8dw. 2016-09-26 09:40:04.807721 2016-09-26 09:40:04.807721 1956-06-01 t \N f {"phone": "07063507001", "gender": "m"} demo | |
| 12204 Mr Deangelo Jamerson [email protected] $2a$10$iLgdTdSFLSPSPwZ8QDpKke1.ymCAd9Y9IBaRu72fPoru2Q48dUd6K 2016-09-26 09:40:04.870311 2016-09-26 09:40:04.870311 1955-01-23 t \N f {"phone": "07062565003", "gender": "m"} demo | |
| 12304 Mr Randell Kelling [email protected] $2a$10$WW7YKFpPIS3CMvdKlnughe8TLIoyjS7DgBJ34vf91FBLgv2UJcv42 2016-09-26 09:40:04.933111 2016-09-26 09:40:04.933111 1958-08-15 t \N f {"phone": "07013790004", "gender": "m"} demo | |
| 12404 Mx Doug Dickens [email protected] $2a$10$Ac9bAwH9.cPRGPq6GWo9WeoMKBfxf8gXEqQsATz9gJevHFJGWGJuy 2016-09-26 09:40:04.993943 2016-09-26 09:40:04.993943 1950-11-25 t \N f {"phone": "07055805002", "gender": "m"} demo | |
| 12504 Mr Raleigh Spiegel [email protected] $2a$10$59q/Fl53adsitFVEDtJwquwXjVQVMc6yHF3/Spdc62g0ApAswaLMm 2016-09-26 09:40:05.054057 2016-09-26 09:40:05.054057 1967-01-09 t \N f {"phone": "07067400004", "gender": "m"} demo | |
| 12604 Mr Newton Bones [email protected] $2a$10$W3K6BNuEMOZfLJxWNw3BZO/PaipBjK2vcTvaeaopZPcFK8qIJb0A2 2016-09-26 09:40:05.114071 2016-09-26 09:40:05.114071 1955-08-14 t \N f {"phone": "07047747000", "gender": "m"} demo | |
| 12704 Mr Darwin Sutcliffe [email protected] $2a$10$ipgZnByeNqtDFUg/oOLi5OPlw7ulDs81jwvOh4kY1if8lsnOTJ.Oy 2016-09-26 09:40:05.173588 2016-09-26 09:40:05.173588 1983-01-07 t \N f {"phone": "07069122005", "gender": "m"} demo | |
| 12804 Mx Gail Sutcliffe [email protected] $2a$10$DKxSqSJd/sP9OvHozqTLNOnqqKsMS8y0dqnierpgKbTxYH2LQ/qyK 2016-09-26 09:40:05.234722 2016-09-26 09:40:05.234722 1986-12-17 t \N f {"phone": "07083802004", "gender": "m"} demo | |
| 12904 Mr Kip Randell [email protected] $2a$10$gF39tF1D4.EivomYMSiY9.AFzFGKTRfEfjK2q5IIrkcfxNy7UsRDi 2016-09-26 09:40:05.2983 2016-09-26 09:40:05.2983 1965-12-29 t \N f {"phone": "07053572009", "gender": "m"} demo | |
| 13004 Mx Jarrett Denver [email protected] $2a$10$jtOHTvzwaUx2rUH7z66kpOXL/OWoIpuHNU8TIexQ6OCxqvzZniFj2 2016-09-26 09:40:05.359553 2016-09-26 09:40:05.359553 1964-04-08 t \N f {"phone": "07070398003", "gender": "m"} demo | |
| 13104 Mr Benny Lacey [email protected] $2a$10$cDZ9rtNOXTU6wu0x83ex1ubRMcDLpKZqn9FHDrDUV54FpXh13v3dO 2016-09-26 09:40:05.421376 2016-09-26 09:40:05.421376 1984-04-25 t \N f {"phone": "07078670008", "gender": "m"} demo | |
| 13204 Mr Gail Shearin [email protected] $2a$10$3MlBvMcN0pjfLWLGC4SJ0uSx7S5qRGHvexJfaVgGey.u/.yirNqhO 2016-09-26 09:40:05.482327 2016-09-26 09:40:05.482327 1985-12-30 t \N f {"phone": "07011870002", "gender": "m"} demo | |
| 13304 Mr Arron Convery [email protected] $2a$10$E2yqqW5DxRMQaGvM5j02DOWilXRxD8ppwguNhmiu7.g737CX5W0x. 2016-09-26 09:40:05.542904 2016-09-26 09:40:05.542904 1969-06-03 t \N f {"phone": "07059280005", "gender": "m"} demo | |
| 13404 Master Clayton Mayhall [email protected] $2a$10$ViTx0dMmlyQw57QAGVdDl..sxJQtIqr9EWPqnsV3lZOdAhTsxtEO6 2016-09-26 09:40:05.604988 2016-09-26 09:40:05.604988 1963-03-09 t \N f {"phone": "07059154007", "gender": "m"} demo | |
| 13504 Mr Freeman Lovins [email protected] $2a$10$ZPPoQWruM72NMsz2EOy.vett215EnceKS/Mj.wwdVxVTWeye0H4/G 2016-09-26 09:40:05.666999 2016-09-26 09:40:05.666999 1964-07-09 t \N f {"phone": "07059283001", "gender": "m"} demo | |
| 13604 Mr Marlon Jungers [email protected] $2a$10$VxyJd3KFRuduG/SQmOxFRedfBfn6.f0ZRj89Qf6WoWe5GC7X9koLy 2016-09-26 09:40:05.727803 2016-09-26 09:40:05.727803 1964-12-26 t \N f {"phone": "07032959006", "gender": "m"} demo | |
| 13704 Mr Robin Jenney [email protected] $2a$10$5G61TaJ3WZ24qIL1k0eZKu.MGb5ecGAFwqbSi1Gl45UvXl7YmF7Bi 2016-09-26 09:40:05.788631 2016-09-26 09:40:05.788631 1963-06-29 t \N f {"phone": "07032530003", "gender": "m"} demo | |
| 13804 Mr Will Preston [email protected] $2a$10$LVInSwu9Y410qjq/mpT89O8afipCspnZbrnRl9nu7tPSnZTN8l/S2 2016-09-26 09:40:05.85029 2016-09-26 09:40:05.85029 1952-09-02 t \N f {"phone": "07099022003", "gender": "m"} demo | |
| 13904 Mx Glen Jurek [email protected] $2a$10$I8hH61B6NzPcXPaw/pAtb.CdexpTYiMpDasUlNw2FzrG21.NDYrwW 2016-09-26 09:40:05.911419 2016-09-26 09:40:05.911419 1978-05-14 t \N f {"phone": "07058846002", "gender": "m"} demo | |
| 14004 Mr Lenard Goers [email protected] $2a$10$iKyv0hBzR4xr/2BMCZY/D.yBVLR7RkyVnPxnFXTK3r7zIdX2622Vy 2016-09-26 09:40:05.971037 2016-09-26 09:40:05.971037 1951-06-12 t \N f {"phone": "07088538007", "gender": "m"} demo | |
| 14104 Mr Phillip Waybright [email protected] $2a$10$4UyjDnx7Y0UJDEpIaC2B3ukMMvSPpyqiGXocNeByUGrX.dm3n71zW 2016-09-26 09:40:06.031682 2016-09-26 09:40:06.031682 1972-04-04 t \N f {"phone": "07018384004", "gender": "m"} demo | |
| 14204 Mr Fred Bones [email protected] $2a$10$lwC.TiSmngl/syVWjtbZau.auahVlXcGnAAayEtubSRNMK7ZiwBHi 2016-09-26 09:40:06.091726 2016-09-26 09:40:06.091726 1953-02-27 t \N f {"phone": "07065332009", "gender": "m"} demo | |
| 14304 Mr Haywood Roza [email protected] $2a$10$jOUWl7NJAVgiXgoNe7dHiev8pid8Wz1jimrfnXDw/QzyIPo6phLey 2016-09-26 09:40:06.151563 2016-09-26 09:40:06.151563 1977-11-17 t \N f {"phone": "07031537007", "gender": "m"} demo | |
| 14404 Mr Jean Jellison [email protected] $2a$10$2pI50pUU1r/y.dUIXxJiC.qARKYTI5DbDgzPNeSQQDI4lemE6zu3u 2016-09-26 09:40:06.214352 2016-09-26 09:40:06.214352 1987-01-06 t \N f {"phone": "07090324007", "gender": "m"} demo | |
| 14504 Mr Wilfred Jamerson [email protected] $2a$10$D3R5UmNn6tZ7afnixPsoFeMZE..FfwuUKBiuujF34RiX2x0oXRug2 2016-09-26 09:40:06.276283 2016-09-26 09:40:06.276283 1953-09-24 t \N f {"phone": "07082240001", "gender": "m"} demo | |
| 14604 Mr Douglas Bubb [email protected] $2a$10$ujiuMoRu70YHhKd7ZmVvuO1JG0IHGAZQLczty6WJXVn7ZozKK/pUa 2016-09-26 09:40:06.335989 2016-09-26 09:40:06.335989 1966-11-24 t \N f {"phone": "07066707002", "gender": "m"} demo | |
| 14704 Master Rueben Amarante [email protected] $2a$10$CjtdgcGmaw7WeDdfdusw6OBp1c9lWWCEKMqPIFK..3rWqh1VdQDuS 2016-09-26 09:40:06.395479 2016-09-26 09:40:06.395479 1956-05-09 t \N f {"phone": "07055108007", "gender": "m"} demo | |
| 14804 Mr Douglas Maltby [email protected] $2a$10$nU29X4NE5Q5cCMGjIva5Ke.iKbS1BGWv.FDBauzLiJiHtRPtaJAea 2016-09-26 09:40:06.457597 2016-09-26 09:40:06.457597 1974-06-29 t \N f {"phone": "07030260008", "gender": "m"} demo | |
| 14904 Mr Bruno Dingler [email protected] $2a$10$NWRZIKgv5IMZQbE5OSlVauu5wyLWDvPsek3Wk4JPxB0TMzXRUdsfS 2016-09-26 09:40:06.518589 2016-09-26 09:40:06.518589 1963-03-02 t \N f {"phone": "07012824001", "gender": "m"} demo | |
| 15004 Master Haywood Nuzzo [email protected] $2a$10$beFkoJwqbO9I/o5hex6yQu1uVeshW8HA.mauFgXbiYmliJo46h5xG 2016-09-26 09:40:06.582533 2016-09-26 09:40:06.582533 1950-09-25 t \N f {"phone": "07032608008", "gender": "m"} demo | |
| 15104 Mr Deangelo Roan [email protected] $2a$10$Nm56m897u9X/u7X4ByL4u.R7ElnQGLadtMaI1JG58ta54Q2vCCX46 2016-09-26 09:40:06.645277 2016-09-26 09:40:06.645277 1963-06-16 t \N f {"phone": "07021016008", "gender": "m"} demo | |
| 15204 Mr Charley Israel [email protected] $2a$10$rkay4BXIwukePv6OazT4sOfMV8AXiaj3OO4oBQsjTOatD1ih5oYPW 2016-09-26 09:40:06.70436 2016-09-26 09:40:06.70436 1959-09-19 t \N f {"phone": "07019573004", "gender": "m"} demo | |
| 15304 Mr Clair Preston [email protected] $2a$10$3FOXlC9RuvK1bS3MvvQNbu0/8JlcXfQkRd25BWJzebGKX1Rpk16Jm 2016-09-26 09:40:06.764072 2016-09-26 09:40:06.764072 1973-07-14 t \N f {"phone": "07035937005", "gender": "m"} demo | |
| 15404 Master Harry Dobrowolski [email protected] $2a$10$hUgHVrS/sNDY3CqQ.1VjZejsi8J.LfLJ18yVRQSpZS1zIbUyLWp42 2016-09-26 09:40:06.824509 2016-09-26 09:40:06.824509 1968-02-20 t \N f {"phone": "07094599005", "gender": "m"} demo | |
| 15504 Mr Ronald Jasik [email protected] $2a$10$cHuTZTyA0m/vJZgeJdefu.sX3yANFfmuPrsDOcqjfNdhpNIoyydYO 2016-09-26 09:40:06.889079 2016-09-26 09:40:06.889079 1983-04-24 t \N f {"phone": "07067809009", "gender": "m"} demo | |
| 15604 Mr Francesco Nuzzo [email protected] $2a$10$ueDUJ2HLtgv/rrc/k853Y.1dIprCoYsXeTJohtTCvbkrfxzmrwaji 2016-09-26 09:40:06.950995 2016-09-26 09:40:06.950995 1977-09-10 t \N f {"phone": "07015604005", "gender": "m"} demo | |
| 15704 Mr Porter Enriquez [email protected] $2a$10$JmvDsLsThSm0nIEeQVrlauVjbK/pybUdAFFCvkxcPjwTIoSRswC3C 2016-09-26 09:40:07.013412 2016-09-26 09:40:07.013412 1967-12-17 t \N f {"phone": "07022213005", "gender": "m"} demo | |
| 15804 Mr Gordon Guillermo [email protected] $2a$10$gYesvCp1hfkGkfKyv9iZmeVDdegQ6q9Arb61/Ix4XhwC6bBIgBwXy 2016-09-26 09:40:07.075982 2016-09-26 09:40:07.075982 1987-05-25 t \N f {"phone": "07066906004", "gender": "m"} demo | |
| 15904 Mr Ricky Iorio [email protected] $2a$10$f5ZY1oqi.HWwWyA0O0Qm/uFRnYtmjOF2isPcllr3vHqQEn5YPkby2 2016-09-26 09:40:07.138475 2016-09-26 09:40:07.138475 1988-04-05 t \N f {"phone": "07029997002", "gender": "m"} demo | |
| 16004 Mr Refugio Castleman [email protected] $2a$10$kNRuaUk83ymJhDSoQITYoOzavR5erO6QnRJWaB9pWPZSorfE7Pn3u 2016-09-26 09:40:07.199419 2016-09-26 09:40:07.199419 1967-12-02 t \N f {"phone": "07093101009", "gender": "m"} demo | |
| 16104 Mr Margarito Laub [email protected] $2a$10$k/hE0fJTaMtZfjyMhm9bLeMSMzci94GfhPC8GBcmNwY0Cm6uDXlNe 2016-09-26 09:40:07.261699 2016-09-26 09:40:07.261699 1950-04-23 t \N f {"phone": "07024194000", "gender": "m"} demo | |
| 16204 Mr Ariel Muscarella [email protected] $2a$10$KLXU3us2So/ur5J658HvseSBCTI04som59lQTVgkkfy.oxkNcgeCe 2016-09-26 09:40:07.325154 2016-09-26 09:40:07.325154 1961-03-03 t \N f {"phone": "07082739009", "gender": "m"} demo | |
| 16304 Mr Elton Kraus [email protected] $2a$10$Sq2A9DoTScAb6iCWVPY3XOslX/ydv/kfyD9xrhWvu10uzuIxqMpCK 2016-09-26 09:40:07.387702 2016-09-26 09:40:07.387702 1974-05-20 t \N f {"phone": "07048470009", "gender": "m"} demo | |
| 16404 Mr Pedro Vinton [email protected] $2a$10$ppZ5L8CevoSZ1hINTw648OXqkTsPW/ThjHLondnMgMs1m/Ws2zqQO 2016-09-26 09:40:07.450597 2016-09-26 09:40:07.450597 1971-11-17 t \N f {"phone": "07045521003", "gender": "m"} demo | |
| 16504 Mr Kurtis Twiggs [email protected] $2a$10$90WF6S3ochWdu1eEWfWaQOYpG96d1uTMqV7yWRAsOMv22kC5N1cSO 2016-09-26 09:40:07.511543 2016-09-26 09:40:07.511543 1978-09-11 t \N f {"phone": "07044729000", "gender": "m"} demo | |
| 16604 Master Alfred Canty [email protected] $2a$10$DqJsJT4lUSOfT8Q04bgWm.Hk7ttSs18udDmJrRd5HaYtgJU5sGuty 2016-09-26 09:40:07.572029 2016-09-26 09:40:07.572029 1974-04-16 t \N f {"phone": "07043481000", "gender": "m"} demo | |
| 16704 Mr Glen Durocher [email protected] $2a$10$gLty1uhscYn7NALn2ceZc.vphjnaW1uqo46frO/lAb0WTLqsxJDsm 2016-09-26 09:40:07.632819 2016-09-26 09:40:07.632819 1971-07-02 t \N f {"phone": "07080807008", "gender": "m"} demo | |
| 16804 Mr Pedro Cullum [email protected] $2a$10$AwfceHYoBeDy0XLGpU0r8OW40/PlAnfJgTKngILMMrICpUzOzkbGq 2016-09-26 09:40:07.694883 2016-09-26 09:40:07.694883 1958-01-30 t \N f {"phone": "07045221004", "gender": "m"} demo | |
| 16904 Doctor Kirby Orosz [email protected] $2a$10$EregrDM45oHHJk/7Hr0A5uWzAh4tCfaWbF5G2mEdb1k/QuWectzZO 2016-09-26 09:40:07.755504 2016-09-26 09:40:07.755504 1959-06-03 t \N f {"phone": "07063996007", "gender": "m"} demo | |
| 17004 Mr Valentine Angulo [email protected] $2a$10$j6uQMVPBvQUgEv9M4zBaD.U63461TFCWtw7DR5QrusYc7zGIGD6te 2016-09-26 09:40:07.815224 2016-09-26 09:40:07.815224 1957-07-18 t \N f {"phone": "07094219006", "gender": "m"} demo | |
| 17104 Mr Newton Jarmon [email protected] $2a$10$wbeMCIwd/OyGMSjaxkJ7c.YviQzcs1yT4Q1L5B/I8d/J7MdTy2wky 2016-09-26 09:40:07.874863 2016-09-26 09:40:07.874863 1968-03-31 t \N f {"phone": "07050477004", "gender": "m"} demo | |
| 17204 Mr Stuart Rummel [email protected] $2a$10$Vg5ZLKfTwfvkQvVOaPexge4IqshPLcpHVWsoo9RWu70.TajrLSMKa 2016-09-26 09:40:07.937292 2016-09-26 09:40:07.937292 1977-05-01 t \N f {"phone": "07055908009", "gender": "m"} demo | |
| 17304 Mr Blair Trew [email protected] $2a$10$UU.FRo9VCdi9h6SDiEHLLe34lhYzHRqCQ.2Z72a9FrDKsdsr8.CT2 2016-09-26 09:40:07.996789 2016-09-26 09:40:07.996789 1951-12-10 t \N f {"phone": "07041840001", "gender": "m"} demo | |
| 17404 Mr Glen Avila [email protected] $2a$10$VWoIVXtonbIG85gJ/9rF9uISgpUI9rD1bjUinaC1kxlmxFT365.Rm 2016-09-26 09:40:08.058866 2016-09-26 09:40:08.058866 1985-06-28 t \N f {"phone": "07014339001", "gender": "m"} demo | |
| 17504 Mr Jasper Omalley [email protected] $2a$10$TUQ6SbbAhn5iAC69V.LOW.JPmMVOtCbZrI1TnGGSYa3KYk0cY/gFS 2016-09-26 09:40:08.121388 2016-09-26 09:40:08.121388 1973-11-13 t \N f {"phone": "07039073009", "gender": "m"} demo | |
| 17604 Master Johnson Fleener [email protected] $2a$10$3jqiPK/9q2lBUx4eSTHEJO/V3oZudz2tCryqXDH2/kReMsxiNBX3i 2016-09-26 09:40:08.184273 2016-09-26 09:40:08.184273 1985-04-04 t \N f {"phone": "07017177004", "gender": "m"} demo | |
| 17704 Mr Demarcus Artist [email protected] $2a$10$eL8vENLjndyKv/TxSPgzC.L1KUn27g3DaydRa/49jVPz5nC1S78hO 2016-09-26 09:40:08.248009 2016-09-26 09:40:08.248009 1968-05-22 t \N f {"phone": "07098884008", "gender": "m"} demo | |
| 17804 Mr Jerrold Reddick [email protected] $2a$10$pvSPibOI1RuEmAXckNb1e.sAPgk4QO0VqICNgh6EFRNfeuX720w.K 2016-09-26 09:40:08.308831 2016-09-26 09:40:08.308831 1968-04-08 t \N f {"phone": "07044562004", "gender": "m"} demo | |
| 17904 Mr Basil Reames [email protected] $2a$10$PUTH/t2k1jhzFIzYeBbffOwtl1FqrkwNJwtQXtbrAk.Rn7KvwxupO 2016-09-26 09:40:08.368422 2016-09-26 09:40:08.368422 1987-06-14 t \N f {"phone": "07081284007", "gender": "m"} demo | |
| 18004 Mr Erik Corns [email protected] $2a$10$wOFOjrcDHl16/OU5l1ZoRevIiistn.PCVg6Mtix9oGABshOviGtPS 2016-09-26 09:40:08.428864 2016-09-26 09:40:08.428864 1967-12-21 t \N f {"phone": "07075103001", "gender": "m"} demo | |
| 18104 Mr Glen Frailey [email protected] $2a$10$dalxF43MQFfmSkql1lKVme/dcINoYE7NFPElbaeUD6m14kseGr/Li 2016-09-26 09:40:08.49085 2016-09-26 09:40:08.49085 1977-12-26 t \N f {"phone": "07084926000", "gender": "m"} demo | |
| 18204 Mr Preston Roan [email protected] $2a$10$F1SJ8mI.oLgZG7.q9tvVc.Ck/dPVaC71OHGd/1DqSOpSfzaZBpnhm 2016-09-26 09:40:08.551585 2016-09-26 09:40:08.551585 1950-12-10 t \N f {"phone": "07028293006", "gender": "m"} demo | |
| 18304 Mr Colby Doherty [email protected] $2a$10$MdNIm8/XHVo3bdgY.0PdzeHGeduuflbuQsAXL7Kkxjho/u5HNnW56 2016-09-26 09:40:08.611808 2016-09-26 09:40:08.611808 1990-04-30 t \N f {"phone": "07094339005", "gender": "m"} demo | |
| 18404 Mr Jacinto Dingler [email protected] $2a$10$aoP2qKXloX9a9DStVj/jSuKeBhTUnbGy1UtLa6.qhYsMR/0zlAfoO 2016-09-26 09:40:08.673171 2016-09-26 09:40:08.673171 1969-03-31 t \N f {"phone": "07012496005", "gender": "m"} demo | |
| 18504 Mr Morgan Jeppson [email protected] $2a$10$7rTR2jQh2vcavNpOYa9vIOc14G3PjWKvypJImHrwsZZ7tU69uwfZK 2016-09-26 09:40:08.733408 2016-09-26 09:40:08.733408 1962-08-27 t \N f {"phone": "07043150009", "gender": "m"} demo | |
| 18604 \N Administrator Bulbthings [email protected] $2a$10$qwTla.O06m7sHLn50RM./uJjRX/zq1MJeBHZsTLobPhdyRSYc9QEK 2016-09-26 09:41:11.432409 2016-09-26 09:41:38.796293 \N t \N f {} init | |
| \. | |
| -- | |
| -- Data for Name: users_to_structures; Type: TABLE DATA; Schema: public; Owner: bulbthings | |
| -- | |
| COPY users_to_structures (user_id, structure_id, period, created) FROM stdin; | |
| 4 401 (,) 2016-09-26 09:40:08.837289+01 | |
| 104 401 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.838861+01 | |
| 204 401 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.83992+01 | |
| 304 401 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.840898+01 | |
| 404 401 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.841866+01 | |
| 504 401 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.842888+01 | |
| 604 401 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.843954+01 | |
| 704 401 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.844922+01 | |
| 804 401 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.845887+01 | |
| 904 401 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.846829+01 | |
| 1004 401 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.847772+01 | |
| 1104 401 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.848704+01 | |
| 1204 501 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.849644+01 | |
| 1304 501 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.850685+01 | |
| 1404 501 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.851796+01 | |
| 1504 501 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.853013+01 | |
| 1604 501 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.854183+01 | |
| 1704 501 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.858018+01 | |
| 1804 501 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.858898+01 | |
| 1904 501 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.859778+01 | |
| 2004 501 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.86068+01 | |
| 2104 501 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.861566+01 | |
| 2204 501 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.86243+01 | |
| 2304 501 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.863307+01 | |
| 2404 501 ["2010-01-04 09:00:00+00","2010-11-30 17:30:00+00"] 2016-09-26 09:40:08.864169+01 | |
| 104 401 ["2009-01-05 09:00:00+00","2009-12-31 17:00:00+00"] 2016-09-26 09:40:08.865025+01 | |
| 204 401 ["2009-01-05 09:00:00+00","2009-12-31 17:00:00+00"] 2016-09-26 09:40:08.865878+01 | |
| 304 401 ["2009-01-05 09:00:00+00","2009-12-31 17:00:00+00"] 2016-09-26 09:40:08.866776+01 | |
| 404 401 ["2009-01-05 09:00:00+00","2009-12-31 17:00:00+00"] 2016-09-26 09:40:08.867669+01 | |
| 504 401 ["2009-01-05 09:00:00+00","2009-12-31 17:00:00+00"] 2016-09-26 09:40:08.868628+01 | |
| 1704 501 ["2009-01-05 09:00:00+00","2009-12-31 17:00:00+00"] 2016-09-26 09:40:08.869588+01 | |
| 1804 501 ["2009-01-05 09:00:00+00","2009-12-31 17:00:00+00"] 2016-09-26 09:40:08.870521+01 | |
| 1904 501 ["2009-01-05 09:00:00+00","2009-12-31 17:00:00+00"] 2016-09-26 09:40:08.871445+01 | |
| 2004 501 ["2009-01-05 09:00:00+00","2009-12-31 17:00:00+00"] 2016-09-26 09:40:08.872382+01 | |
| 2104 501 ["2009-01-05 09:00:00+00","2009-12-31 17:00:00+00"] 2016-09-26 09:40:08.873334+01 | |
| 2204 501 ["2009-01-05 09:00:00+00","2009-12-31 17:00:00+00"] 2016-09-26 09:40:08.874263+01 | |
| 2304 501 ["2009-01-05 09:00:00+00","2009-12-31 17:00:00+00"] 2016-09-26 09:40:08.875206+01 | |
| 2404 501 ["2009-01-05 09:00:00+00","2009-12-31 17:00:00+00"] 2016-09-26 09:40:08.876333+01 | |
| 2404 401 ["2008-01-01 09:00:00+00","2008-07-31 17:00:00+01"] 2016-09-26 09:40:08.877617+01 | |
| 2404 501 ["2008-08-01 09:00:00+01","2008-12-31 17:00:00+00"] 2016-09-26 09:40:08.878842+01 | |
| 104 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.880068+01 | |
| 204 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.881294+01 | |
| 304 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.882402+01 | |
| 404 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.883352+01 | |
| 504 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.884295+01 | |
| 604 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.885389+01 | |
| 704 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.886621+01 | |
| 804 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.88785+01 | |
| 904 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.889077+01 | |
| 1004 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.890231+01 | |
| 1104 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.891286+01 | |
| 1204 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.892298+01 | |
| 1304 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.893337+01 | |
| 1404 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.894337+01 | |
| 1504 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.895331+01 | |
| 1604 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.896315+01 | |
| 1704 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.897327+01 | |
| 1804 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.898314+01 | |
| 1904 401 ["2016-01-04 09:00:00+00","2020-12-31 17:30:00+00"] 2016-09-26 09:40:08.899317+01 | |
| 2004 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.900256+01 | |
| 2104 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.901197+01 | |
| 2204 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.902139+01 | |
| 2304 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.903078+01 | |
| 2404 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.904017+01 | |
| 2404 401 ["2011-01-01 09:00:00+00","2011-04-30 17:30:00+01"] 2016-09-26 09:40:08.904955+01 | |
| 2404 501 ["2011-05-01 09:00:00+01","2011-12-31 17:30:00+00"] 2016-09-26 09:40:08.905898+01 | |
| 2504 1901 ["2011-05-01 09:00:00+01","2020-12-31 17:30:00+00"] 2016-09-26 09:40:08.906838+01 | |
| 2604 1901 ["2011-05-01 09:00:00+01","2020-12-31 17:30:00+00"] 2016-09-26 09:40:08.907767+01 | |
| 2704 401 ["2011-05-01 09:00:00+01","2020-12-31 17:30:00+00"] 2016-09-26 09:40:08.908702+01 | |
| 2804 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.909642+01 | |
| 2904 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.910582+01 | |
| 3004 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.911519+01 | |
| 3104 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.912457+01 | |
| 3204 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.913399+01 | |
| 3304 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.914319+01 | |
| 3404 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.915287+01 | |
| 3504 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.916231+01 | |
| 3604 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.917171+01 | |
| 3704 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.918106+01 | |
| 3804 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.919102+01 | |
| 3904 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.920046+01 | |
| 4004 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.920955+01 | |
| 4104 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.921881+01 | |
| 4204 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.922824+01 | |
| 4304 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.923773+01 | |
| 4404 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.925182+01 | |
| 4504 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.92618+01 | |
| 4604 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.927126+01 | |
| 4704 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.928091+01 | |
| 4804 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.929049+01 | |
| 4904 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.929989+01 | |
| 5004 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.930929+01 | |
| 5104 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.931877+01 | |
| 5204 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.932819+01 | |
| 5304 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.933759+01 | |
| 5404 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.9347+01 | |
| 5504 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.935606+01 | |
| 5604 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.93655+01 | |
| 5704 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.937465+01 | |
| 5804 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.938392+01 | |
| 5904 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.939391+01 | |
| 6004 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.94033+01 | |
| 6104 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.941268+01 | |
| 6204 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.94217+01 | |
| 6304 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.943102+01 | |
| 6404 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.944003+01 | |
| 6504 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.944912+01 | |
| 6604 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.94585+01 | |
| 6704 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.94689+01 | |
| 6804 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.947855+01 | |
| 6904 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.94882+01 | |
| 7004 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.949782+01 | |
| 7104 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.950686+01 | |
| 7204 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.951567+01 | |
| 7304 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.952449+01 | |
| 7404 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.953339+01 | |
| 7504 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.954286+01 | |
| 7604 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.955204+01 | |
| 7704 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.956157+01 | |
| 7804 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.957093+01 | |
| 7904 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.958027+01 | |
| 8004 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.959025+01 | |
| 8104 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.959972+01 | |
| 8204 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.960916+01 | |
| 8304 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.961856+01 | |
| 8404 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.962761+01 | |
| 8504 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.963697+01 | |
| 8604 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.964634+01 | |
| 8704 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.965574+01 | |
| 8804 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.966539+01 | |
| 8904 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.967472+01 | |
| 9004 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.968427+01 | |
| 9104 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.969465+01 | |
| 9204 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.970485+01 | |
| 9304 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.971495+01 | |
| 9404 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.972488+01 | |
| 9504 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.973462+01 | |
| 9604 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.974415+01 | |
| 9704 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.97541+01 | |
| 9804 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.976418+01 | |
| 9904 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.977412+01 | |
| 10004 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.9784+01 | |
| 10104 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.979461+01 | |
| 10204 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.980477+01 | |
| 10304 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.981485+01 | |
| 10404 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.982486+01 | |
| 10504 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.983462+01 | |
| 10604 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.984441+01 | |
| 10704 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.985433+01 | |
| 10804 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.986425+01 | |
| 10904 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.987413+01 | |
| 11004 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.988505+01 | |
| 11104 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.989619+01 | |
| 11204 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.990731+01 | |
| 11304 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.991856+01 | |
| 11404 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.992972+01 | |
| 11504 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.994055+01 | |
| 11604 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.995132+01 | |
| 11704 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.996399+01 | |
| 11804 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.997467+01 | |
| 11904 401 ["2016-01-04 09:00:00+00","2020-12-31 17:30:00+00"] 2016-09-26 09:40:08.9985+01 | |
| 12004 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:08.999481+01 | |
| 12104 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.000469+01 | |
| 12204 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.001514+01 | |
| 12304 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.002493+01 | |
| 12404 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.00358+01 | |
| 12504 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.004715+01 | |
| 12604 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.005861+01 | |
| 12704 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.006967+01 | |
| 12804 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.008054+01 | |
| 12904 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.009145+01 | |
| 13004 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.010276+01 | |
| 13104 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.011418+01 | |
| 13204 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.012537+01 | |
| 13304 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.013663+01 | |
| 13404 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.01476+01 | |
| 13504 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.01583+01 | |
| 13604 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.016885+01 | |
| 13704 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.017899+01 | |
| 13804 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.018968+01 | |
| 13904 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.019983+01 | |
| 14004 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.020946+01 | |
| 14104 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.024642+01 | |
| 14204 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.025683+01 | |
| 14304 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.026767+01 | |
| 14404 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.02785+01 | |
| 14504 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.028894+01 | |
| 14604 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.029915+01 | |
| 14704 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.030909+01 | |
| 14804 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.031885+01 | |
| 14904 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.032859+01 | |
| 15004 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.033829+01 | |
| 15104 401 ["2016-01-04 09:00:00+00","2020-11-30 17:30:00+00"] 2016-09-26 09:40:09.034803+01 | |
| 15204 401 ["2016-01-04 09:00:00+00","2020-1 | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment